/* ═══════════════════════════════════════════
   Crusch Home Services — Global Stylesheet
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600&family=Barlow+Condensed:wght@600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:      #1F3864;
  --navy-dk:   #162b4d;
  --blue:      #2E75B6;
  --blue-lt:   #E8F1FA;
  --slate:     #4A5568;
  --border:    #D1D5DB;
  --bg:        #F7F9FC;
  --white:     #ffffff;
  --text:      #1A202C;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --nav-h: 68px;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(31,56,100,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  padding-top: var(--nav-h);
}

img { max-width: 100%; display: block; }
a   { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 56px; height: 56px;
  border-radius: 6px;
  display: block;
  flex-shrink: 0;
}

.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
  line-height: 1.1;
}
.nav-wordmark span {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  white-space: nowrap;
}
.nav-brand .nav-wordmark {
  text-align: center;
}

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  padding: 6px 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: background .15s, color .15s;
  letter-spacing: .02em;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(255,255,255,.12); color: #fff; }

.nav-cta {
  background: var(--blue) !important;
  color: #fff !important;
  padding: 8px 18px !important;
}
.nav-cta:hover { background: #2563a8 !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* Mobile nav */
@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--navy-dk);
    flex-direction: column;
    padding: 12px 5% 20px;
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; font-size: 1rem; }
}

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 80px 5% 72px;
  position: relative;
  overflow: hidden;
}

/* Diagonal texture stripe — the signature element */
.hero::before {
  content: '';
  position: absolute;
  right: -60px; top: -40px;
  width: 420px; height: 140%;
  background: var(--blue);
  opacity: .08;
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  right: 40px; top: -40px;
  width: 180px; height: 140%;
  background: var(--blue);
  opacity: .06;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s, box-shadow .15s;
  border: 2px solid transparent;
  letter-spacing: .02em;
}
.btn:active { transform: scale(.97); }
.btn:hover  { text-decoration: none; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.btn-primary:hover { background: #2563a8; border-color: #2563a8; }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-dk); }

/* ── Trust bar ── */
.trust-bar {
  background: var(--blue);
  padding: 14px 5%;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
}
.trust-item svg { width: 14px; height: 14px; fill: rgba(255,255,255,.7); flex-shrink: 0; }

/* ── Sections ── */
.section {
  padding: 72px 5%;
}
.section-white { background: var(--white); }
.section-bg    { background: var(--bg); }
.section-navy  { background: var(--navy); }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.section-navy .section-title { color: #fff; }

.section-lead {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.section-navy .section-lead { color: rgba(255,255,255,.7); }

/* ── Service cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  border-color: var(--blue);
}

.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-lt);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: .01em;
}
.service-card p {
  font-size: .9rem;
  color: var(--slate);
  line-height: 1.6;
}

/* ── About strip ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.about-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.about-strip p {
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 12px;
}
.about-list {
  list-style: none;
  margin: 20px 0 28px;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .92rem;
  color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
  content: '';
  width: 18px; height: 18px;
  background: var(--blue-lt);
  border-radius: 50%;
  border: 2px solid var(--blue);
  flex-shrink: 0;
}

.about-stat-block {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.stat {
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 28px;
}
.stat:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}

@media (max-width: 700px) {
  .about-strip { grid-template-columns: 1fr; gap: 36px; }
  .about-stat-block { flex-direction: row; flex-wrap: wrap; gap: 20px; padding: 28px 24px; }
  .stat { border-bottom: none; padding-bottom: 0; flex: 1 1 120px; }
}

/* ── CTA band ── */
.cta-band {
  background: var(--navy);
  padding: 64px 5%;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.cta-band p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band .cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #111827;
  padding: 48px 5% 28px;
  color: rgba(255,255,255,.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto 40px;
}
.footer-brand .nav-wordmark { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: .88rem; line-height: 1.65; max-width: 220px; }
.footer h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: .9rem; color: rgba(255,255,255,.6); text-decoration: none; }
.footer ul a:hover { color: #fff; }
.footer-contact li {
  font-size: .9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact li svg { width: 14px; height: 14px; fill: var(--blue); margin-top: 4px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  font-size: .8rem;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 52px 5% 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  right: -40px; top: -30px;
  width: 300px; height: 200%;
  background: var(--blue);
  opacity: .06;
  transform: rotate(-8deg);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 10px;
}
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  max-width: 520px;
}

/* ── Service detail blocks (services page) ── */
.service-detail {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail-icon {
  width: 56px; height: 56px;
  background: var(--blue-lt);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.service-detail-icon svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-detail h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.service-detail p { color: var(--slate); font-size: .95rem; line-height: 1.65; margin-bottom: 12px; }
.service-bullets {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.service-bullets li {
  background: var(--blue-lt);
  color: var(--navy);
  font-size: .8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .02em;
}

@media (max-width: 500px) {
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-icon { width: 44px; height: 44px; }
}

/* ── Area page ── */
.county-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.county-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
}
.county-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
}
.county-card ul { list-style: none; }
.county-card li {
  font-size: .9rem;
  color: var(--slate);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.county-card li::before {
  content: '→';
  color: var(--blue);
  font-size: .75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.contact-card svg {
  width: 32px; height: 32px;
  fill: var(--blue);
  margin: 0 auto 12px;
}
.contact-card h4 {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 6px;
}
.contact-card a, .contact-card p {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 1.4;
}
.contact-card a:hover { color: var(--blue); }

/* ── Map embed ── */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 48px;
}
.map-wrap iframe { display: block; width: 100%; height: 380px; border: none; }

/* ── Sign page ── */
.sign-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 5%;
}

/* ── 3x3 Services Grid ── */
.services-grid-3x3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .services-grid-3x3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid-3x3 { grid-template-columns: 1fr; }
}
