/* ============================================================
   PURE CARPET CLEANERS — styles.css
   Design: clean, bright, trustworthy blue + one warm citrus accent.
   Signature motif: the logo's halftone dot-grid, carried through.
   ============================================================ */

/* ─── FONTS (self-hosted, variable) ─────────────────────── */
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:       #003D7A;
  --navy-deep:  #002A56;
  --blue:       #0078C8;
  --blue-600:   #0067AD;
  --cyan:       #00AEEF;
  --sky:        #E0F4FD;
  --sky-50:     #F1FAFE;
  --paper:      #F6FBFE;
  --white:      #FFFFFF;
  --ink:        #14212E;
  --ink-soft:   #46596C;
  --line:       #D6E7F4;
  --citrus:     #F5B63F;
  --citrus-deep:#E19A16;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 10px rgba(0,61,122,.06);
  --shadow:    0 8px 30px rgba(0,61,122,.10);
  --shadow-lg: 0 18px 50px rgba(0,61,122,.16);
  --ring:      0 0 0 3px rgba(0,174,239,.45);
  --ease:      .24s cubic-bezier(.4,0,.2,1);

  --dot-grid: radial-gradient(currentColor 1.4px, transparent 1.5px);
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
svg[hidden] { display: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 120;
  color: var(--ink);
}
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 999;
  background: var(--white); color: var(--blue); font-weight: 600;
  padding: 10px 18px; border-radius: 10px; box-shadow: var(--shadow);
  transition: top var(--ease);
}
.skip-link:focus { top: 12px; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }

.section-head { max-width: 640px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-title { font-size: clamp(1.75rem, 3.4vw, 2.7rem); }
.section-sub { margin-top: 14px; color: var(--ink-soft); font-size: 1.06rem; }
.section-head .eyebrow { justify-content: center; }

/* Eyebrow with dot-grid motif */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .74rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow-dots {
  width: 26px; height: 12px; color: var(--cyan);
  background-image: var(--dot-grid);
  background-size: 6px 6px;
  opacity: .9;
}
.eyebrow-light { color: #BFE7FA; }
.eyebrow-light .eyebrow-dots { color: rgba(255,255,255,.7); }

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: .95rem;
  letter-spacing: .005em; line-height: 1;
  padding: 14px 26px; border: 2px solid transparent; border-radius: var(--radius-pill);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 10px 18px; font-size: .86rem; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-primary { background: var(--blue); color: var(--white); box-shadow: 0 6px 18px rgba(0,120,200,.28); }
.btn-primary:hover { background: var(--blue-600); box-shadow: 0 12px 28px rgba(0,120,200,.36); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-ghost { background: var(--white); color: var(--blue); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--cyan); background: var(--sky-50); }

.text-link { color: var(--blue); font-weight: 600; font-size: .9rem; transition: color var(--ease); }
.text-link:hover { color: var(--cyan); }
.text-link--light { color: #BFE7FA; }
.text-link--light:hover { color: var(--white); }

/* ─── TOP BAR ────────────────────────────────────────────── */
.topbar { background: var(--navy); color: rgba(255,255,255,.9); font-size: .82rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-top: 9px; padding-bottom: 9px; }
.topbar-msg { display: flex; align-items: center; gap: 9px; }
.topbar-dot {
  width: 22px; height: 8px; color: var(--cyan); flex-shrink: 0;
  background-image: var(--dot-grid); background-size: 5px 5px;
}
.topbar-phone { font-weight: 700; color: var(--white); white-space: nowrap; }
.topbar-phone:hover { color: var(--cyan); }

/* ─── HEADER / NAV ───────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,251,254,.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 20px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 46px; width: auto; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .92rem; font-weight: 500; color: var(--ink-soft); transition: color var(--ease); }
.nav-links a:hover { color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-weight: 700; color: var(--navy); font-size: .96rem; white-space: nowrap; }
.nav-phone:hover { color: var(--blue); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; background: transparent; border: none; padding: 10px;
}
.nav-toggle span { display: block; height: 2.5px; width: 100%; background: var(--navy); border-radius: 2px; transition: transform var(--ease), opacity var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu { display: none; border-top: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.mobile-menu nav { display: flex; flex-direction: column; padding: 8px 22px; }
.mobile-menu nav a { padding: 14px 4px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--sky); }
.mobile-menu nav a:last-child { border-bottom: none; }
.mobile-menu-cta { display: grid; gap: 10px; padding: 16px 22px 22px; }

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(120% 120% at 85% 0%, #00AEEF 0%, rgba(0,174,239,0) 45%),
    linear-gradient(158deg, #004E96 0%, #003D7A 55%, #00294F 100%);
  color: var(--white);
  padding: clamp(48px, 7vw, 88px) 0 clamp(64px, 9vw, 108px);
}
.hero-dots {
  position: absolute; inset: 0; color: #ffffff;
  background-image: var(--dot-grid); background-size: 22px 22px;
  opacity: .10;
  -webkit-mask-image: radial-gradient(120% 90% at 80% 10%, #000 0%, transparent 70%);
          mask-image: radial-gradient(120% 90% at 80% 10%, #000 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr 420px; gap: 52px; align-items: center;
}
.hero-title {
  font-size: clamp(2.3rem, 5.2vw, 3.9rem); color: var(--white);
  font-variation-settings: 'opsz' 144; font-weight: 600; letter-spacing: -.02em;
}
.hero-title em { font-style: italic; color: #8FDCFB; font-variation-settings: 'opsz' 144; }
.hero-sub { margin: 20px 0 30px; font-size: 1.12rem; color: rgba(255,255,255,.86); max-width: 480px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 22px; }
.hero-proof li { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: rgba(255,255,255,.82); }
.proof-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.14);
  font-size: .8rem; color: var(--citrus); flex-shrink: 0;
}

/* Quote card */
.quote-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-lg); color: var(--ink); }
.quote-card-head h2 { font-size: 1.4rem; color: var(--navy); }
.quote-card-head p { font-size: .9rem; color: var(--ink-soft); margin-top: 4px; margin-bottom: 20px; }
.qform, .cform { display: flex; flex-direction: column; gap: 13px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .8rem; font-weight: 600; color: var(--navy); }
.field .opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .94rem; color: var(--ink);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px;
  background: var(--sky-50); width: 100%; transition: border-color var(--ease), background var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cyan); background: var(--white); box-shadow: var(--ring);
}
.form-note { font-size: .76rem; color: var(--ink-soft); text-align: center; margin-top: 2px; }
.hp { position: absolute; left: -9999px; }

/* Inline success state after a form submits */
.form-success { text-align: center; padding: 20px 8px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.form-success-mark { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(150deg, var(--cyan), var(--blue)); color: #fff; font-size: 1.7rem; font-weight: 700; }
.form-success h3 { font-size: 1.35rem; color: var(--navy); }
.form-success p { font-size: .95rem; color: var(--ink-soft); max-width: 320px; }
.form-success .btn { margin-top: 6px; }

/* ─── TRUST RIBBON ───────────────────────────────────────── */
.ribbon { background: var(--white); border-bottom: 1px solid var(--line); }
.ribbon-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; padding: 18px 22px; }
.ribbon-item { display: flex; align-items: center; gap: 9px; font-size: .88rem; font-weight: 600; color: var(--ink-soft); }
.ribbon-item span { font-size: 1.05rem; }

/* ─── SERVICES ───────────────────────────────────────────── */
.services { background: var(--paper); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--sky); }
.service-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 16px;
  background: linear-gradient(150deg, var(--sky), var(--sky-50)); font-size: 1.55rem;
}
.service-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: .93rem; color: var(--ink-soft); margin-bottom: 16px; }
.service-card--accent { background: linear-gradient(160deg, var(--navy) 0%, var(--blue) 130%); border-color: transparent; }
.service-card--accent h3 { color: var(--white); }
.service-card--accent p { color: rgba(255,255,255,.85); }
.service-card--accent .service-ic { background: rgba(255,255,255,.14); }

/* ─── WHY CHOOSE US ──────────────────────────────────────── */
.why { background: linear-gradient(180deg, var(--sky-50), var(--paper)); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 68px); align-items: center; }
.why-intro .section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.why-stats { display: flex; gap: 30px; margin: 28px 0 30px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--blue); line-height: 1; font-variation-settings: 'opsz' 144; }
.stat-unit { color: var(--cyan); font-size: 1.4rem; }
.stat-label { font-size: .82rem; color: var(--ink-soft); margin-top: 6px; }
.why-points { display: flex; flex-direction: column; gap: 18px; }
.why-point { display: flex; gap: 16px; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow-sm); }
.wp-ic {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 46px; height: 46px; border-radius: 13px; font-size: 1.3rem;
  background: linear-gradient(150deg, var(--sky), #D3EEFB);
}
.why-point h3 { font-size: 1.04rem; color: var(--navy); margin-bottom: 3px; }
.why-point p { font-size: .9rem; color: var(--ink-soft); }

/* ─── SAFE FOR FAMILY ────────────────────────────────────── */
.family { background: var(--white); }
.family-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.family-card {
  background: var(--paper); border-radius: var(--radius-lg); padding: 30px 28px;
  border-top: 3px solid var(--sky); transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.family-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-top-color: var(--cyan); }
.family-ic { font-size: 2.1rem; display: block; margin-bottom: 12px; }
.family-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.family-card p { font-size: .92rem; color: var(--ink-soft); }

/* ─── PROCESS + TRANSFORM ────────────────────────────────── */
.process { background: linear-gradient(180deg, var(--paper), var(--sky-50)); }
.transform {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: stretch; gap: 14px;
  max-width: 820px; margin: 0 auto clamp(40px, 6vw, 60px);
}
.transform-panel {
  border-radius: var(--radius-lg); padding: 34px 26px; min-height: 150px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; position: relative; overflow: hidden;
}
.transform-panel::before {
  content: ''; position: absolute; inset: 0; background-image: var(--dot-grid);
}
.transform-before { background: #7C8A99; color: #EEF2F5; }
.transform-before::before { color: #5E6B79; background-size: 15px 15px; opacity: .55; }
.transform-after { background: linear-gradient(150deg, var(--blue), var(--cyan)); color: var(--white); }
.transform-after::before { color: #ffffff; background-size: 9px 9px; opacity: .28; }
.transform-tag {
  position: relative; z-index: 1; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
}
.transform-desc { position: relative; z-index: 1; font-size: .86rem; opacity: .92; }
.transform-arrow {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: var(--blue); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 16px;
  background: var(--white); border: 2px solid var(--sky); color: var(--blue);
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.06rem; color: var(--navy); margin-bottom: 7px; }
.step p { font-size: .9rem; color: var(--ink-soft); }

/* ─── GALLERY ────────────────────────────────────────────── */
.gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tile { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--white); position: relative; }
.tile-art { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.tile img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.tile-art::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--dot-grid); background-size: 13px 13px; color: #ffffff; opacity: .22;
}
.tile-art::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(90% 90% at 30% 20%, rgba(255,255,255,.22), transparent 60%);
}
.tile[data-variant="0"] .tile-art { background: linear-gradient(150deg, var(--navy), var(--blue)); }
.tile[data-variant="1"] .tile-art { background: linear-gradient(150deg, var(--blue), var(--cyan)); }
.tile[data-variant="2"] .tile-art { background: linear-gradient(150deg, #0090D6, #5CC8F5); }
.tile[data-variant="3"] .tile-art { background: linear-gradient(150deg, var(--navy-deep), #0090D6); }
.tile[data-variant="4"] .tile-art { background: linear-gradient(150deg, var(--cyan), #7ED4F7); }
.tile[data-variant="5"] .tile-art { background: linear-gradient(150deg, var(--blue-600), var(--navy)); }
.tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 26px 18px 14px; font-size: .84rem; font-weight: 600; color: var(--white);
  background: linear-gradient(to top, rgba(0,42,86,.82), transparent);
}
.gallery-note { text-align: center; margin-top: 28px; color: var(--ink-soft); font-size: .92rem; }

/* Before/after showcase (real photos with baked-in labels — no cropping) */
.ba-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.ba { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.ba img { width: 100%; height: auto; display: block; }
.ba figcaption { display: flex; align-items: center; gap: 11px; padding: 14px 18px; font-size: .95rem; font-weight: 600; color: var(--navy); }
.ba-tag { flex-shrink: 0; font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; background: var(--blue); border-radius: 50px; padding: 4px 11px; }

/* ─── REVIEWS ────────────────────────────────────────────── */
.reviews { background: radial-gradient(120% 100% at 50% 0%, #004E96, #002A56); color: var(--white); position: relative; overflow: hidden; }
.reviews::before {
  content: ''; position: absolute; inset: 0; color: #fff;
  background-image: var(--dot-grid); background-size: 24px 24px; opacity: .06; pointer-events: none;
}
.reviews .container { position: relative; z-index: 1; }
.reviews .section-title { color: var(--white); }
.reviews-summary { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; margin-bottom: 42px; }
.rs-score { display: flex; align-items: center; gap: 12px; }
.rs-num { font-family: var(--font-display); font-size: 3rem; font-weight: 600; line-height: 1; font-variation-settings: 'opsz' 144; }
.rs-stars { color: var(--citrus); font-size: 1.3rem; letter-spacing: 2px; }
.rs-count { display: block; font-size: .8rem; color: rgba(255,255,255,.7); margin-top: 3px; }
.rs-badge { display: flex; align-items: center; gap: 10px; font-size: .84rem; color: rgba(255,255,255,.75); padding-left: 26px; border-left: 1px solid rgba(255,255,255,.18); }
.rs-badge-g { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: #fff; color: #4285F4; font-family: var(--font-display); font-weight: 700; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-lg); padding: 28px 26px; transition: background var(--ease), transform var(--ease); }
.review-card:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.rc-stars { color: var(--citrus); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.rc-text { font-family: var(--font-display); font-style: italic; font-size: 1rem; line-height: 1.6; color: rgba(255,255,255,.94); margin-bottom: 20px; }
.rc-author { display: flex; align-items: center; gap: 12px; }
.rc-avatar { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(150deg, var(--cyan), var(--blue)); color: #fff; font-weight: 700; flex-shrink: 0; }
.rc-name { display: block; font-weight: 700; font-size: .9rem; }
.rc-src { display: block; font-size: .76rem; color: rgba(255,255,255,.55); }
.reviews-cta { text-align: center; margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.reviews-cta p { color: rgba(255,255,255,.8); font-size: 1rem; }

/* ─── BOOK ONLINE ────────────────────────────────────────── */
.book {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(120% 120% at 12% 0%, #00AEEF 0%, rgba(0,174,239,0) 42%),
    linear-gradient(155deg, #004E96 0%, #003D7A 55%, #00294F 100%);
}
.book-dots {
  position: absolute; inset: 0; color: #fff;
  background-image: var(--dot-grid); background-size: 22px 22px; opacity: .09;
  -webkit-mask-image: radial-gradient(120% 90% at 15% 15%, #000 0%, transparent 70%);
          mask-image: radial-gradient(120% 90% at 15% 15%, #000 0%, transparent 70%);
  pointer-events: none;
}
.book-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 460px; gap: clamp(36px, 5vw, 64px); align-items: center;
}
.book-copy .section-title { color: var(--white); }
.book-copy .section-sub { color: rgba(255,255,255,.85); }
.book-points { display: flex; flex-direction: column; gap: 11px; margin: 26px 0; }
.book-points li { display: flex; align-items: center; gap: 11px; font-size: .98rem; color: rgba(255,255,255,.92); }
.book-points li span {
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,.16);
  color: var(--citrus); font-size: .74rem; font-weight: 700;
}
.book-callalt { font-size: .95rem; color: rgba(255,255,255,.8); }
.book-callalt a { color: #8FDCFB; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.book-callalt a:hover { color: var(--white); }

.book-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(24px, 3.2vw, 34px); box-shadow: var(--shadow-lg); color: var(--ink); }
.book-card-title { font-size: 1.35rem; color: var(--navy); margin-bottom: 18px; }
.bform { display: flex; flex-direction: column; gap: 13px; }

.form-note--error { color: #C2410C; font-weight: 600; }

/* Optional backup-time rows on the booking form */
.backup-add {
  align-self: flex-start; background: none; border: none; padding: 2px 0;
  font-family: var(--font-body); font-size: .86rem; font-weight: 600;
  color: var(--blue); cursor: pointer; transition: color var(--ease);
}
.backup-add:hover { color: var(--cyan); }
.backup-add .opt { font-weight: 400; color: var(--ink-soft); }
.backup-slot { border-left: 3px solid var(--sky); padding-left: 12px; }

/* ─── SERVICE AREAS ──────────────────────────────────────── */
.areas { background: var(--white); }
.areas-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.area-chip {
  background: var(--sky-50); border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  padding: 11px 14px; text-align: center; font-size: .86rem; font-weight: 600; color: var(--navy);
  transition: all var(--ease); cursor: default;
}
.area-chip:hover { background: var(--blue); border-color: var(--blue); color: var(--white); transform: translateY(-2px); }
.areas-note { text-align: center; margin-top: 22px; color: var(--ink-soft); font-size: .92rem; }

/* ─── PROMISE / GUARANTEE ────────────────────────────────── */
.promise { background: linear-gradient(160deg, var(--sky) 0%, var(--sky-50) 60%); }
.promise-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 5vw, 66px); align-items: center; }
.promise-badge {
  display: inline-flex; align-items: center; justify-content: center; text-align: center;
  width: 116px; height: 116px; border-radius: 50%; margin-bottom: 22px;
  background: radial-gradient(circle at 35% 30%, var(--cyan), var(--navy));
  color: #fff; box-shadow: var(--shadow-lg);
}
.promise-badge span { font-family: var(--font-display); font-weight: 700; font-size: .72rem; letter-spacing: .1em; line-height: 1.3; }
.promise-list { display: flex; flex-direction: column; gap: 13px; margin: 26px 0 30px; }
.promise-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink); }
.pl-check { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; width: 24px; height: 24px; margin-top: 1px; border-radius: 50%; background: var(--blue); color: #fff; font-size: .72rem; font-weight: 700; }
.promise-card { background: var(--white); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px); box-shadow: var(--shadow); }
.promise-card h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 20px; }
.promise-includes { display: flex; flex-direction: column; }
.promise-includes > div { padding: 15px 0; border-bottom: 1px solid var(--sky); }
.promise-includes > div:last-child { border-bottom: none; padding-bottom: 0; }
.promise-includes dt { font-weight: 700; font-size: .98rem; color: var(--ink); margin-bottom: 2px; }
.promise-includes dd { font-size: .88rem; color: var(--ink-soft); }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.contact-details li { display: flex; gap: 14px; align-items: flex-start; }
.cd-ic { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(150deg, var(--sky), #D3EEFB); font-size: 1.15rem; flex-shrink: 0; }
.cd-label { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }
.cd-value { display: inline-block; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-top: 2px; }
a.cd-value:hover { color: var(--blue); }
.contact-card { background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 36px); }
.contact-card h3 { font-size: 1.35rem; color: var(--navy); }
.contact-card-sub { font-size: .9rem; color: var(--ink-soft); margin: 4px 0 20px; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: clamp(48px, 6vw, 72px) 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { height: 52px; width: auto; border-radius: 7px; margin-bottom: 16px; }
.footer-tagline { font-size: .9rem; line-height: 1.65; margin-bottom: 20px; max-width: 320px; }
.footer-col h2 { font-family: var(--font-body); font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-bottom: 15px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-contact li { font-size: .9rem; color: rgba(255,255,255,.72); transition: color var(--ease); }
.footer-col a:hover { color: var(--cyan); }
.footer-contact li { display: flex; align-items: center; gap: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.5); }
.footer-certs { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-certs span { font-size: .8rem; color: rgba(191,231,250,.75); }

/* ─── STICKY MOBILE CTA ──────────────────────────────────── */
.mobile-cta { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; gap: 1px; background: var(--line); box-shadow: 0 -6px 24px rgba(0,42,86,.18); }
.mcta { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 8px; font-weight: 700; font-size: .96rem; }
.mcta-call { background: var(--white); color: var(--blue); }
.mcta-quote { background: var(--blue); color: var(--white); }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .book-inner { grid-template-columns: 1fr; gap: 34px; }
  .quote-card { max-width: 480px; }
  .book-card { max-width: 520px; }
  .services-grid, .family-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .promise-inner, .contact-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .reviews-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .areas-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .mobile-menu[hidden] { display: none; }
  .topbar-msg { font-size: .78rem; }
  .services-grid, .family-grid { grid-template-columns: 1fr; }
  .ba-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .mobile-cta { display: flex; }
  main { /* room so sticky bar doesn't cover content */ }
  body { padding-bottom: 0; }
  .hero-ctas .btn { flex: 1; }
  .reviews-summary { flex-direction: column; gap: 14px; }
  .rs-badge { border-left: none; padding-left: 0; }
  .transform { grid-template-columns: 1fr; }
  .transform-arrow { flex-direction: row; padding: 4px 0; }
  .transform-arrow svg { transform: rotate(90deg); }
}
@media (max-width: 480px) {
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Add bottom breathing room for the fixed mobile CTA bar */
@media (max-width: 720px) {
  .site-footer { padding-bottom: 84px; }
}

/* ─── ICON SYSTEM (inline SVG sprite, one 24px grid) ─────── */
.ic {
  display: inline-block; width: 1.1em; height: 1.1em; flex-shrink: 0;
  stroke: currentColor; fill: none; stroke-width: 1.75;
  stroke-linecap: round; stroke-linejoin: round;
  vertical-align: -0.18em;
}
.ic-fill { fill: currentColor; stroke: none; }

.topbar-phone .ic { width: 15px; height: 15px; }
.nav-phone .ic { width: 16px; height: 16px; }
.btn .ic { width: 1.05em; height: 1.05em; vertical-align: -0.14em; }
.proof-ic .ic { width: 13px; height: 13px; vertical-align: 0; }
.ribbon-item .ic { width: 19px; height: 19px; color: var(--blue); }
.service-ic .ic { width: 26px; height: 26px; color: var(--blue-600); vertical-align: 0; }
.service-card--accent .service-ic .ic { color: var(--white); }
.wp-ic .ic { width: 22px; height: 22px; color: var(--blue-600); vertical-align: 0; }
.family-ic { line-height: 0; }
.family-ic .ic { width: 34px; height: 34px; color: var(--blue); vertical-align: 0; }
.cd-ic .ic { width: 21px; height: 21px; color: var(--blue-600); vertical-align: 0; }
.pl-check .ic, .book-points li span .ic { width: 11px; height: 11px; stroke-width: 3.2; vertical-align: 0; }
.book-points li span .ic { color: var(--citrus); }
.form-note .ic { width: 12px; height: 12px; vertical-align: -0.1em; }
.footer-certs .ic { width: 15px; height: 15px; vertical-align: -0.22em; }
.footer-contact .ic { width: 15px; height: 15px; opacity: .75; }
.mcta .ic { width: 18px; height: 18px; }
.form-success .ic { width: 1em; height: 1em; }

/* Icon boxes lay out better as flex centers */
.proof-ic, .wp-ic, .cd-ic, .pl-check, .service-ic { line-height: 0; }
.book-points li span { line-height: 0; }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--paper); border: 1.5px solid var(--line); border-radius: var(--radius);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.faq-item[open] { background: var(--white); border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  list-style: none; cursor: pointer; padding: 17px 22px;
  font-weight: 600; font-size: 1rem; color: var(--navy);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--blue); }
.faq-chev {
  width: 9px; height: 9px; flex-shrink: 0; margin-top: -4px;
  border-right: 2.2px solid var(--blue); border-bottom: 2.2px solid var(--blue);
  transform: rotate(45deg); transition: transform var(--ease);
}
.faq-item[open] .faq-chev { transform: rotate(225deg); margin-top: 4px; }
.faq-body { padding: 0 22px 19px; }
.faq-body p { font-size: .94rem; color: var(--ink-soft); max-width: 640px; }

/* ─── ANCHOR OFFSET (sticky header) ──────────────────────── */
html { scroll-padding-top: 92px; }

/* ─── MOTION (all gated on JS + no reduced-motion) ───────── */
/* Static citrus underline under the hero's italic word — always present;
   the sweep animation below only plays when motion is allowed. */
.hero-title em { position: relative; white-space: nowrap; }
.hero-title em::after {
  content: ''; position: absolute; left: 0.02em; right: 0.06em; bottom: 0;
  height: 0.12em; border-radius: 4px;
  background: linear-gradient(90deg, var(--citrus), var(--cyan));
  opacity: .9;
}

/* screen-only: the hidden reveal state must never apply to print/PDF */
@media screen and (prefers-reduced-motion: no-preference) {
  /* Scroll reveals — hidden state only exists once JS confirms it will reveal */
  html.js-motion .reveal {
    opacity: 0; transform: translateY(18px);
    transition: opacity .55s ease var(--rd, 0ms), transform .55s cubic-bezier(.22, 1, .36, 1) var(--rd, 0ms);
  }
  html.js-motion .reveal.is-in { opacity: 1; transform: none; }

  /* Hero load sequence */
  .hero-copy > * { animation: rise .6s cubic-bezier(.22, 1, .36, 1) backwards; }
  .hero-copy > *:nth-child(1) { animation-delay: .05s; }
  .hero-copy > *:nth-child(2) { animation-delay: .13s; }
  .hero-copy > *:nth-child(3) { animation-delay: .21s; }
  .hero-copy > *:nth-child(4) { animation-delay: .29s; }
  .hero-copy > *:nth-child(5) { animation-delay: .37s; }
  .quote-card { animation: rise .65s .3s cubic-bezier(.22, 1, .36, 1) backwards; }

  /* The one flourish: a clean sweep under "safer" */
  .hero-title em::after {
    transform: scaleX(0); transform-origin: left;
    animation: sweep .7s .95s cubic-bezier(.22, 1, .36, 1) forwards;
  }

  /* Gallery tiles get a slow, quiet zoom on hover */
  .tile img { transition: transform .5s cubic-bezier(.22, 1, .36, 1); }
  .tile:hover img { transform: scale(1.04); }
}

@keyframes rise { from { opacity: 0; transform: translateY(16px); } }
@keyframes sweep { to { transform: scaleX(1); } }

/* ─── MOTION / A11Y ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   SUBPAGES (services + service areas) & NAV DROPDOWN
   ============================================================ */

/* ─── NAV: services dropdown (pure CSS — hover, touch-nav, focus) ─ */
.nav-links a[aria-current="page"], .nav-drop-link[aria-current="page"] { color: var(--blue); }
.nav-item--drop { position: relative; display: inline-flex; }
.nav-drop-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .92rem; font-weight: 500; color: var(--ink-soft);
  transition: color var(--ease);
}
.nav-drop-link:hover { color: var(--blue); }
.drop-chev {
  width: 7px; height: 7px; margin-top: -3px; flex-shrink: 0;
  border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg); transition: transform var(--ease), margin var(--ease);
}
.nav-item--drop:hover .drop-chev, .nav-item--drop:focus-within .drop-chev { transform: rotate(225deg); margin-top: 3px; }
.nav-item--drop::after { /* invisible hover bridge across the gap */
  content: ''; position: absolute; left: -14px; right: -14px; top: 100%; height: 22px;
}
.nav-drop {
  position: absolute; top: calc(100% + 16px); left: 50%; z-index: 120;
  min-width: 254px; padding: 10px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.nav-item--drop:hover .nav-drop, .nav-item--drop:focus-within .nav-drop {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav-drop a {
  display: block; padding: 10px 13px; border-radius: 9px;
  font-size: .9rem; font-weight: 500; color: var(--ink-soft);
  transition: background var(--ease), color var(--ease);
}
.nav-drop a:hover { background: var(--sky-50); color: var(--blue); }
.nav-drop-sep { height: 1px; background: var(--line); margin: 8px 5px; }
.nav-drop-all { font-weight: 600; color: var(--blue); }
.mm-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); padding: 14px 4px 3px;
}

/* ─── BREADCRUMBS ────────────────────────────────────────── */
.crumbs { background: var(--sky-50); border-bottom: 1px solid var(--line); }
.crumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; padding: 11px 0; font-size: .82rem; color: var(--ink-soft); }
.crumbs li { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.crumbs li + li::before { content: '›'; opacity: .55; }
.crumbs a { color: var(--blue); font-weight: 600; transition: color var(--ease); }
.crumbs a:hover { color: var(--cyan); }
.crumbs [aria-current="page"] { font-weight: 600; color: var(--ink); }

/* ─── SUBPAGE HERO (compact variant of the homepage hero) ── */
.hero--page { padding: clamp(44px, 6vw, 78px) 0; }
.hero-copy--page { position: relative; z-index: 1; max-width: 800px; }
.hero-copy--page .hero-title { font-size: clamp(2rem, 4.4vw, 3.2rem); }
.hero-copy--page .hero-sub { max-width: 660px; }

/* ─── SPLIT LAYOUT + PROSE (subpage content blocks) ──────── */
.split { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.split--flip > :first-child { order: 2; }
.split .ba img { aspect-ratio: auto; }
.prose h2 { font-size: clamp(1.5rem, 2.7vw, 2.15rem); margin-bottom: 14px; }
.prose p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 14px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); }

.info-card {
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(24px, 3.4vw, 34px); box-shadow: var(--shadow-sm);
}
.section--paper .info-card, .section--sky .info-card { background: var(--white); }
.section--white .info-card { background: var(--paper); }
.info-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 14px; }
.spec-list { display: flex; flex-direction: column; }
.spec-list > div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--sky); font-size: .92rem; }
.spec-list > div:last-child { border-bottom: none; padding-bottom: 0; }
.spec-list dt { color: var(--ink-soft); font-weight: 500; }
.spec-list dd { color: var(--navy); font-weight: 700; text-align: right; }

.check-list { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .96rem; color: var(--ink); }

/* Neighborhood chips (static, informational) */
.chip-row-label { font-weight: 700; color: var(--navy) !important; margin-bottom: 8px !important; font-size: .9rem !important; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--sky-50); border: 1px solid var(--line); border-radius: var(--radius-pill);
  padding: 7px 14px; font-size: .82rem; font-weight: 600; color: var(--navy);
}

/* ─── SECTION BACKGROUND VARIANTS ────────────────────────── */
.section--white { background: var(--white); }
.section--paper { background: var(--paper); }
.section--sky { background: linear-gradient(180deg, var(--sky-50), var(--paper)); }

/* ─── SERVICE LINK TILES (location pages + hubs) ─────────── */
.svc-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
.svc-link {
  display: flex; align-items: center; gap: 13px;
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: 17px 18px; font-weight: 600; font-size: .95rem; color: var(--navy);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), color var(--ease);
}
.svc-link:hover { transform: translateY(-2px); border-color: var(--cyan); box-shadow: var(--shadow-sm); color: var(--blue); }
.svc-link .ic { width: 21px; height: 21px; color: var(--blue-600); }
.svc-link .arr { margin-left: auto; color: var(--cyan); font-weight: 700; }

/* Hub page service cards use h2 for semantics — style like h3 */
.service-card h2 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; }
.service-card--accent h2 { color: var(--white); }
a.service-card { display: block; }
a.area-card .text-link { display: inline-block; }

/* Area chips can be links now (homepage + subpage city strips) */
a.area-chip { display: block; cursor: pointer; }
.area-chip--more { background: var(--blue); border-color: var(--blue); color: var(--white); }
.area-chip--more:hover { background: var(--blue-600); border-color: var(--blue-600); }
.areas-grid--chips { max-width: 900px; margin: 0 auto; }
.areas-grid--center { display: flex; flex-wrap: wrap; justify-content: center; }
.areas-grid--center .area-chip { min-width: 130px; }

/* ─── PULL QUOTE (light-background single review) ────────── */
.pull-quote { max-width: 680px; margin: 0 auto; text-align: center; }
.pull-quote .rc-stars { color: var(--citrus); font-size: 1.15rem; letter-spacing: 3px; margin-bottom: 16px; }
.pull-quote blockquote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem, 2vw, 1.4rem); color: var(--navy); line-height: 1.55; }
.pull-quote cite { display: block; margin-top: 16px; font-style: normal; font-size: .88rem; font-weight: 600; color: var(--ink-soft); }

/* ─── CTA BAND + QUOTE FORM (subpage closer) ─────────────── */
.cta-band {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(120% 120% at 12% 0%, #00AEEF 0%, rgba(0,174,239,0) 42%),
    linear-gradient(155deg, #004E96 0%, #003D7A 55%, #00294F 100%);
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 440px; gap: clamp(36px, 5vw, 64px); align-items: center;
}
.cta-band .section-title { color: var(--white); }
.cta-band .section-sub { color: rgba(255,255,255,.85); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.cta-small { margin-top: 16px; font-size: .88rem; color: rgba(255,255,255,.75); }
.cta-small a { color: #8FDCFB; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.cta-small a:hover { color: var(--white); }

/* ─── SERVICE-AREA RADIUS MAP (inline SVG) ───────────────── */
.radius-map-wrap { max-width: 620px; margin: 0 auto; }
.radius-map { width: 100%; height: auto; font-family: var(--font-body); }
.radius-map circle { transition: r .18s ease; }
.rm-city circle { fill: var(--blue); stroke: var(--white); stroke-width: 2.5; }
.rm-city text, .rm-hq text {
  font-size: 15.5px; font-weight: 600; fill: var(--ink);
  stroke: var(--paper); stroke-width: 4px; paint-order: stroke;
}
.rm-hq text { font-weight: 700; fill: var(--navy); }
.rm-hq circle { fill: var(--citrus-deep); stroke: var(--white); stroke-width: 2.5; }
.rm-hq .rm-hq-ring { fill: none; stroke: var(--citrus); stroke-width: 2; opacity: .8; }
.radius-map a { cursor: pointer; }
.radius-map a:hover circle:not(.rm-hq-ring), .radius-map a:focus circle:not(.rm-hq-ring) { r: 9; }
.radius-map a:hover text, .radius-map a:focus text { fill: var(--blue); }
.radius-map a:focus { outline: none; }
.radius-map-note { text-align: center; margin-top: 14px; font-size: .84rem; color: var(--ink-soft); }

/* ─── FOOTER: serving strip ──────────────────────────────── */
.footer-areas {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px;
  border-top: 1px solid rgba(255,255,255,.12); padding: 20px 0;
}
.footer-areas-label { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.footer-areas a { font-size: .86rem; color: rgba(255,255,255,.72); transition: color var(--ease); }
.footer-areas a:hover { color: var(--cyan); }

/* ─── SUBPAGE RESPONSIVE ─────────────────────────────────── */
@media (max-width: 980px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip > :first-child { order: 0; }
  .split .info-card { max-width: 520px; }
  .svc-links { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { grid-template-columns: 1fr; gap: 34px; }
  .cta-band .quote-card { max-width: 480px; }
}
@media (max-width: 720px) {
  .rm-city text, .rm-hq text { font-size: 19px; }
}
@media (max-width: 480px) {
  .svc-links { grid-template-columns: 1fr; }
}
