/* ==========================================================================
   Henderson Water Damage Fix — styles.css
   Mobile-first (base = 360px). Breakpoints: 640 / 768 / 1024 / 1280
   Class map is documented in STATE.md — reuse, don't rename.
   ========================================================================== */

:root {
  /* Primary (navy) scale */
  --p-50: #EEF3FA; --p-100: #D8E3F2; --p-200: #B1C7E5; --p-300: #83A3D2; --p-400: #5379B6;
  --p-500: #325A95; --p-600: #234676; --p-700: #18375F; --p-800: #102D51; --p-900: #0B2545;
  --dark: #061528;
  --off: #F7F6F2;
  --border: #E2E7EE;
  /* Accent (CTA + highlights only) */
  --accent: #F97316; --accent-hover: #FB8A3C; --accent-ink: #C2410C; --accent-50: #FFF4EB; --accent-soft: #FDBA74;
  /* Illustration water */
  --water: #3B82C4; --water-light: #9CC6EC;
  /* Text */
  --ink: #0B2545; --text: #2A3A52; --muted: #5A6B82;
  --on-dark: #C9D6E8; --on-dark-muted: #9FB2CC;
  /* Type */
  --ff-head: "Manrope", sans-serif;
  --ff-body: "Source Sans 3", sans-serif;
  --fs-body: clamp(1.0625rem, 1.02rem + 0.2vw, 1.125rem);
  --fs-h1: clamp(2.5rem, 1.6rem + 3.6vw, 4.5rem);
  --fs-h2: clamp(2rem, 1.6rem + 1.6vw, 3rem);
  --fs-h3: clamp(1.25rem, 1.15rem + 0.4vw, 1.5rem);
  /* Shape + depth */
  --radius: 20px; --radius-sm: 14px;
  --shadow: 0 1px 2px rgba(11,37,69,.05), 0 4px 12px rgba(11,37,69,.06), 0 18px 40px -14px rgba(11,37,69,.16);
  --shadow-lg: 0 2px 4px rgba(11,37,69,.06), 0 14px 28px rgba(11,37,69,.08), 0 34px 70px -18px rgba(11,37,69,.28);
  --glow: 0 6px 22px -6px rgba(249,115,22,.6), 0 2px 6px rgba(249,115,22,.25);
  --ease: cubic-bezier(.2,.7,.2,1);
  /* Layout */
  --header-h: 68px;
  --callbar-h: 76px;
  --sec-pad: 64px;
  --sec-bg: #fff;
}
@media (min-width: 1024px) { :root { --header-h: 80px; --callbar-h: 0px; --sec-pad: 112px; } }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: hidden;
}
@supports (overflow: clip) { html { overflow-x: clip; } }
body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom, 0px));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (min-width: 1024px) { body { padding-bottom: 0; } }
body.nav-open { overflow: hidden; }
img, video { max-width: 100%; height: auto; display: block; }
svg { max-width: 100%; }
h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin: 0 0 .55em;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); line-height: 1.05; }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 700; line-height: 1.25; }
h4 { font-size: 1.0625rem; font-weight: 700; }
p { margin: 0 0 1em; max-width: 68ch; }
ul, ol { max-width: 68ch; }
strong { font-weight: 600; color: var(--ink); }
a { color: var(--p-500); text-decoration-thickness: 1.5px; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--p-700); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -120px; z-index: 100;
  background: var(--accent); color: var(--p-900); font-weight: 700; font-family: var(--ff-head);
  padding: 12px 18px; border-radius: 999px; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* Icons (Lucide-style line icons via <use>) */
.i {
  width: 24px; height: 24px; flex: none; display: inline-block; vertical-align: middle;
  fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.icon-sq {
  width: 52px; height: 52px; flex: none;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--p-50); color: var(--p-700);
  border: 1px solid var(--p-100);
}
.icon-sq .i { width: 26px; height: 26px; }
.icon-sq--sm { width: 42px; height: 42px; border-radius: 12px; }
.icon-sq--sm .i { width: 22px; height: 22px; }
.icon-sq--dark { background: rgba(255,255,255,.08); color: var(--accent-soft); border-color: rgba(255,255,255,.14); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: 20px; }
@media (min-width: 640px) { .container { padding-inline: 28px; } }
@media (min-width: 1024px) { .container { padding-inline: 36px; } }

.section { position: relative; padding-block: var(--sec-pad); background: var(--sec-bg); }
.section--white { --sec-bg: #fff; }
.section--off { --sec-bg: var(--off); }
.section--tint { --sec-bg: var(--p-50); }
.section--dark { --sec-bg: var(--dark); color: var(--on-dark); }
.section--dark h2, .section--dark h3, .section--dark h4, .section--dark strong { color: #fff; }
.section--dark a:not(.btn) { color: var(--p-200); }
.section--dark a:not(.btn):hover { color: #fff; }

/* Angled top edge: paints the previous section's color as a triangle */
.angle-top { padding-top: calc(var(--sec-pad) + clamp(24px, 4vw, 64px)); }
.angle-top::before {
  content: ""; position: absolute; top: -1px; left: 0; right: 0;
  height: clamp(24px, 4vw, 64px);
  background: var(--prev, #fff);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  pointer-events: none;
}
.prev-white { --prev: #fff; } .prev-off { --prev: var(--off); } .prev-tint { --prev: var(--p-50); }

/* Wave divider sitting at the bottom of a section */
.has-wave { padding-bottom: calc(var(--sec-pad) + clamp(28px, 5vw, 78px)); }
.wave {
  position: absolute; left: 0; right: 0; bottom: -1px;
  width: 100%; height: clamp(28px, 5vw, 78px);
  display: block; pointer-events: none;
}
.wave--white { fill: #fff; } .wave--off { fill: var(--off); } .wave--tint { fill: var(--p-50); }

.section-head { max-width: 780px; margin-bottom: 40px; }
@media (min-width: 1024px) { .section-head { margin-bottom: 56px; } }
.section-head--center { text-align: center; margin-inline: auto; }
.section-head--center p { margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-head); font-size: .8125rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent-ink);
  margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: currentColor; }
.section--dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow, .cta-band .eyebrow { color: var(--accent); }
.lead { font-size: clamp(1.125rem, 1.05rem + .35vw, 1.3rem); line-height: 1.6; color: var(--muted); }
.section--dark .lead { color: var(--on-dark-muted); }
.muted { color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 26px;
  border-radius: 999px; border: 2px solid transparent;
  font-family: var(--ff-head); font-weight: 800; font-size: 1rem; letter-spacing: -.01em; line-height: 1.2;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background-color .2s, color .2s, border-color .2s;
}
.btn .i { width: 20px; height: 20px; }
.btn--primary { background: var(--accent); color: var(--p-900); box-shadow: var(--glow); }
.btn--primary:hover { background: var(--accent-hover); color: var(--p-900); transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(249,115,22,.75); }
.btn--outline { border-color: var(--p-900); color: var(--p-900); background: transparent; }
.btn--outline:hover { background: var(--p-900); color: #fff; }
.btn--ghost-light { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.04); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; }
.btn--lg { min-height: 60px; padding: 16px 32px; font-size: 1.0625rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 639px) {
  .btn-row .btn, .btn--block-sm { width: 100%; }
  .btn { white-space: normal; text-align: center; }
}

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
/* Blur lives on a pseudo-element: backdrop-filter on the header itself would trap the fixed mobile menu inside it */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(255,255,255,.9);
  -webkit-backdrop-filter: saturate(1.4) blur(14px); backdrop-filter: saturate(1.4) blur(14px);
}
.site-header.is-scrolled { border-color: var(--border); box-shadow: 0 8px 28px -16px rgba(11,37,69,.35); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: var(--header-h); }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--p-900); min-height: 44px; flex: none; }
.logo:hover { color: var(--p-900); }
.logo__mark { width: 42px; height: 42px; flex: none; }
.logo__word { display: flex; flex-direction: column; font-family: var(--ff-head); line-height: 1.05; }
.logo__word b { font-weight: 800; font-size: 1.125rem; letter-spacing: -.025em; }
.logo__word small { font-size: .6875rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); margin-top: 3px; }
.logo--light { color: #fff; } .logo--light:hover { color: #fff; }
.logo--light .logo__word small { color: var(--accent); }

.header__actions { display: flex; align-items: center; gap: 8px; }
.header__call { min-height: 48px; padding: 10px 20px; }
.header__call-text { display: none; }
@media (min-width: 640px) { .header__call-text { display: inline; } }
@media (max-width: 639px) { .header__call { width: 48px; height: 48px; padding: 0; } }

.nav__toggle {
  width: 48px; height: 48px; display: inline-grid; place-items: center;
  border: 1px solid var(--border); border-radius: 14px; background: #fff; color: var(--p-900); cursor: pointer;
}
.nav__bars, .nav__bars::before, .nav__bars::after {
  display: block; width: 20px; height: 2px; border-radius: 2px; background: currentColor;
  transition: transform .25s var(--ease), background-color .2s;
}
.nav__bars { position: relative; }
.nav__bars::before, .nav__bars::after { content: ""; position: absolute; left: 0; }
.nav__bars::before { top: -6px; } .nav__bars::after { top: 6px; }
.nav__toggle[aria-expanded="true"] .nav__bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__bars::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars::after { transform: translateY(-6px) rotate(-45deg); }
html:not(.js) .nav__toggle { display: none; }

.nav__links { list-style: none; margin: 0; padding: 0; max-width: none; }
.nav__link, .nav__drop > summary {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  min-height: 56px; font-family: var(--ff-head); font-weight: 700; font-size: 1.25rem;
  color: var(--p-900); text-decoration: none; cursor: pointer; list-style: none;
}
.nav__drop > summary::-webkit-details-marker { display: none; }
.nav__drop > summary .i { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.nav__drop[open] > summary .i { transform: rotate(180deg); }
.nav__link[aria-current="page"] { color: var(--accent-ink); }
.nav__menu ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; max-width: none; }
.nav__menu a {
  display: flex; align-items: center; min-height: 44px; padding: 8px 12px; border-radius: 10px;
  color: var(--text); text-decoration: none; font-weight: 500; line-height: 1.3;
}
.nav__menu a:hover { background: var(--p-50); color: var(--p-900); }
.nav__menu-foot { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.nav__menu-foot a { font-family: var(--ff-head); font-weight: 800; color: var(--p-900); gap: 8px; }
.nav__cta { margin-top: 24px; width: 100%; }

@media (max-width: 1023px) {
  .nav__panel { display: none; }
  .js .nav__panel {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; top: var(--header-h); z-index: 49;
    background: #fff; overflow-y: auto; overscroll-behavior: contain;
    padding: 12px 20px calc(var(--callbar-h) + 32px + env(safe-area-inset-bottom, 0px));
    visibility: hidden; opacity: 0; transform: translateY(-10px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
  }
  .js .nav__panel.is-open { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
  .nav__links > li { border-bottom: 1px solid var(--border); }
  .nav__menu { padding: 0 0 14px; }
  .nav__menu ul { grid-template-columns: 1fr; }
}
@media (min-width: 640px) and (max-width: 1023px) { .nav__menu ul { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .nav { flex: 1; display: flex; justify-content: center; }
  .nav__toggle, .nav__cta { display: none; }
  .nav__links { display: flex; align-items: center; gap: 2px; }
  .nav__link, .nav__drop > summary {
    min-height: 44px; padding: 8px 14px; border-radius: 999px; font-size: .98rem; justify-content: flex-start;
  }
  .nav__link:hover, .nav__drop > summary:hover, .nav__drop[open] > summary { background: var(--p-50); }
  .nav__drop { position: relative; }
  .nav__menu {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%);
    width: min(640px, 92vw); padding: 14px;
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  }
  .nav__menu ul { grid-template-columns: 1fr 1fr; }
  .nav__menu--areas { width: min(600px, 92vw); }
  .nav__menu--areas ul { grid-template-columns: repeat(3, 1fr); }
  .nav__menu a { font-size: .95rem; }
}

/* ---------- Grain + mesh (hero, page hero, CTA) ---------- */
.mesh { position: relative; isolation: isolate; background-color: var(--p-900); }
.mesh::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(55% 60% at 82% 18%, rgba(50,90,149,.75) 0%, transparent 62%),
    radial-gradient(45% 50% at 12% 8%, rgba(83,121,182,.45) 0%, transparent 60%),
    radial-gradient(40% 45% at 8% 95%, rgba(249,115,22,.20) 0%, transparent 65%),
    radial-gradient(60% 60% at 70% 110%, rgba(16,45,81,1) 0%, transparent 70%),
    linear-gradient(160deg, #0B2545 0%, #0A2140 45%, #061528 100%);
}
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .16; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- Hero ---------- */
.hero { color: var(--on-dark); overflow: hidden; padding-block: 40px calc(64px + clamp(28px, 5vw, 78px)); }
@media (min-width: 1024px) { .hero { padding-block: 72px calc(96px + clamp(28px, 5vw, 78px)); } }
.hero__grid { display: grid; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .hero__grid { grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr); gap: 56px; } }
.hero h1 { color: #fff; margin-bottom: .4em; }
.hero .lead { color: #BCCBE0; max-width: 58ch; margin-bottom: 28px; }
.h-highlight {
  color: var(--accent-soft);
  background: linear-gradient(90deg, var(--accent), var(--accent-soft)) left 96% / 100% .12em no-repeat;
  padding-bottom: .06em;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
}
.trust-chips { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; max-width: none; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: #E3EBF5; font-size: .9375rem; font-weight: 600; line-height: 1.3;
}
.chip .i { width: 16px; height: 16px; color: var(--accent); }
.hero__fine { font-size: .875rem; line-height: 1.55; color: var(--on-dark-muted); margin: 22px 0 0; max-width: 62ch; }
.hero__scene { position: relative; width: 100%; max-width: 440px; margin-inline: auto; }
@media (min-width: 1024px) { .hero__scene { max-width: none; } }
.scene { display: block; width: 100%; height: auto; }
.glass-card {
  position: absolute; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px 12px 12px; border-radius: 16px;
  background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.22);
  -webkit-backdrop-filter: blur(14px) saturate(1.3); backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 18px 40px -16px rgba(0,0,0,.55);
  color: #fff; font-size: .875rem; line-height: 1.3; max-width: 230px;
}
.glass-card strong { display: block; font-family: var(--ff-head); font-weight: 800; font-size: .95rem; color: #fff; }
.glass-card span { color: #D2DDEB; }
.glass-card .icon-sq { width: 40px; height: 40px; border-radius: 12px; background: rgba(249,115,22,.18); border-color: rgba(249,115,22,.35); color: var(--accent-soft); }
.glass-card .icon-sq .i { width: 20px; height: 20px; }
.glass-card--1 { top: 0; left: -2%; }
.glass-card--2 { top: 9%; right: -3%; }
.glass-card--3 { bottom: -3%; right: 4%; }
@media (max-width: 639px) { .glass-card--2, .glass-card--3 { display: none; } .glass-card--1 { position: relative; top: auto; left: auto; margin: 16px auto 0; max-width: 100%; } }
@media (min-width: 640px) and (max-width: 1023px) { .glass-card { font-size: .8125rem; max-width: 200px; } }
@media (prefers-reduced-motion: no-preference) {
  .glass-card--1 { animation: float 7s ease-in-out infinite; }
  .glass-card--2 { animation: float 8s ease-in-out -2s infinite; }
  .glass-card--3 { animation: float 9s ease-in-out -4s infinite; }
  .scene .ripple { animation: ripple 5s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
  .scene .drip { animation: drip 2.4s ease-in infinite; }
  .scene .drip--2 { animation-delay: .8s; } .scene .drip--3 { animation-delay: 1.6s; }
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes ripple { 0%, 100% { transform: scaleX(1); } 50% { transform: scaleX(1.03); } }
@keyframes drip { 0% { transform: translateY(0); opacity: 0; } 15% { opacity: 1; } 100% { transform: translateY(26px); opacity: 0; } }

/* ---------- Inner page hero ---------- */
.page-hero { color: var(--on-dark); overflow: hidden; padding-block: 28px calc(56px + clamp(28px, 5vw, 78px)); }
@media (min-width: 1024px) { .page-hero { padding-block: 40px calc(80px + clamp(28px, 5vw, 78px)); } }
.page-hero h1 { color: #fff; font-size: clamp(2.5rem, 1.8rem + 2.8vw, 4rem); max-width: 20ch; }
.page-hero .lead { color: #BCCBE0; max-width: 62ch; }
.page-hero__grid { display: grid; gap: 32px; align-items: end; }
@media (min-width: 1024px) { .page-hero__grid { grid-template-columns: minmax(0, 1.4fr) minmax(0, .6fr); } }
.breadcrumbs { margin-bottom: 28px; }
.breadcrumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 4px 0; font-size: .9375rem; max-width: none; }
.breadcrumbs li { display: inline-flex; align-items: center; color: var(--on-dark-muted); }
.breadcrumbs li + li::before {
  content: ""; width: 7px; height: 7px; margin: 0 12px 0 10px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(-45deg); opacity: .7;
}
.breadcrumbs a { color: #E3EBF5; text-decoration: none; display: inline-flex; min-height: 44px; align-items: center; }
.breadcrumbs a:hover { color: var(--accent-soft); text-decoration: underline; }

/* ---------- Cards ---------- */
.card {
  position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 26px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
@media (min-width: 1024px) { .card { padding: 32px; } }
.card--hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--p-200); }
.card h3 { margin-bottom: .4em; }
.card p:last-child { margin-bottom: 0; }
.card__link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: auto; min-height: 44px;
  font-family: var(--ff-head); font-weight: 800; font-size: .98rem; color: var(--p-900); text-decoration: none;
}
.card__link .i { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.card--hover:hover .card__link .i, .card__link:hover .i { transform: translateX(4px); }
.card__link--stretch::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }

/* Bento grid */
.bento { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .bento { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 20px; } }
.bento__item { display: flex; flex-direction: column; gap: 14px; }
.bento__item p { font-size: 1rem; line-height: 1.6; color: var(--muted); margin: 0; }
.bento__item h3 { margin: 0; font-size: 1.25rem; }
@media (min-width: 640px) { .bento__item--lg, .bento__item--wide, .bento__item--cta { grid-column: span 2; } }
@media (min-width: 1024px) {
  .bento__item { grid-column: span 2; }
  .bento__item--lg { grid-column: span 3; grid-row: span 2; }
  .bento__item--half { grid-column: span 3; }
  .bento__item--cta { grid-column: span 2; }
  .bento__item--wide { grid-column: 1 / -1; }
}
.bento__item--lg { background: linear-gradient(155deg, var(--p-800), var(--p-900) 55%, var(--dark)); border-color: var(--p-800); color: var(--on-dark); overflow: hidden; }
.bento__item--lg h3 { color: #fff; font-size: clamp(1.5rem, 1.3rem + .8vw, 2rem); }
.bento__item--lg p { color: var(--on-dark); font-size: 1.0625rem; max-width: 46ch; }
.bento__item--lg .card__link { color: var(--accent-soft); margin-top: 4px; }
.bento__wide-art { display: none; }
@media (min-width: 768px) { .bento__wide-art { display: block; flex: none; width: 240px; height: auto; margin-left: auto; align-self: center; } }
.bento__item--lg .icon-sq { background: rgba(255,255,255,.08); color: var(--accent-soft); border-color: rgba(255,255,255,.14); }
.bento__art { display: block; margin: auto -8px -8px auto; width: min(100%, 380px); height: auto; }
.bento__item--wide { background: linear-gradient(120deg, #fff 55%, var(--p-50)); }
@media (min-width: 768px) { .bento__item--wide { flex-direction: row; align-items: flex-start; gap: 22px; } .bento__item--wide .bento__body { display: flex; flex-direction: column; gap: 12px; } .bento__item--wide p { max-width: 80ch; } }
.bento__item--cta { background: var(--accent-50); border: 1px solid #FED7AA; justify-content: center; }
.bento__item--cta h3 { font-size: 1.375rem; }
.tag {
  display: inline-flex; align-items: center; gap: 6px; align-self: flex-start;
  font-family: var(--ff-head); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; background: var(--p-50); color: var(--p-700);
}
.bento__item--lg .tag { background: rgba(249,115,22,.16); color: var(--accent-soft); }

/* Compact service list */
.svc-list-title { font-family: var(--ff-head); font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; color: var(--ink); margin: 48px 0 18px; }
.svc-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; grid-template-columns: 1fr; max-width: none; }
@media (min-width: 640px) { .svc-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .svc-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.svc-row {
  position: relative; display: flex; gap: 14px; align-items: flex-start; height: 100%;
  padding: 18px; border-radius: 16px; background: #fff; border: 1px solid var(--border);
  transition: border-color .25s, box-shadow .25s, transform .25s var(--ease);
}
.svc-row:hover { border-color: var(--p-200); box-shadow: var(--shadow); transform: translateY(-2px); }
.svc-row h3 { font-size: 1.0625rem; margin: 0 0 4px; }
.svc-row h3 a { color: var(--p-900); text-decoration: none; }
.svc-row h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.svc-row p { font-size: .98rem; line-height: 1.55; color: var(--muted); margin: 0; }

/* ---------- Symptom checker ---------- */
.filter { display: none; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.js .filter { display: flex; }
.filter__btn {
  min-height: 44px; padding: 9px 18px; border-radius: 999px; cursor: pointer;
  border: 1px solid var(--p-200); background: #fff; color: var(--p-900);
  font-family: var(--ff-head); font-weight: 700; font-size: .95rem;
  transition: background-color .2s, color .2s, border-color .2s;
}
.filter__btn:hover { border-color: var(--p-500); }
.filter__btn[aria-pressed="true"] { background: var(--p-900); border-color: var(--p-900); color: #fff; }
.symptoms { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .symptoms { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1280px) { .symptoms { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.symptom-card { display: flex; flex-direction: column; gap: 10px; padding: 24px; }
.symptom-card[hidden] { display: none; }
.symptom-card h3 { font-size: 1.125rem; margin: 0; }
.symptom-card p { font-size: 1rem; line-height: 1.6; margin: 0; }
.symptom-card__top { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.urgency { display: inline-flex; align-items: center; gap: 6px; font-size: .8125rem; font-weight: 700; color: var(--muted); }
.urgency__dots { display: inline-flex; gap: 3px; }
.urgency__dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--p-100); }
.urgency--3 .urgency__dots i { background: var(--accent); }
.urgency--2 .urgency__dots i:nth-child(-n+2) { background: var(--accent); }
.urgency--1 .urgency__dots i:first-child { background: var(--accent); }
.symptom-card__fix { margin-top: auto; padding-top: 12px; border-top: 1px dashed var(--border); font-size: .95rem; }
.symptom-card__fix a { font-weight: 700; }

/* ---------- Split sections ---------- */
.split { display: grid; gap: 36px; align-items: center; }
.split + .split { margin-top: 72px; }
@media (min-width: 1024px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; align-items: start; }
  .split__media { position: sticky; top: calc(var(--header-h) + 32px); }
  .trust-grid > .sticky-lg { position: sticky; top: calc(var(--header-h) + 32px); }
  .split + .split { margin-top: 112px; }
  .split--rev .split__media { order: -1; }
}
.split__media {
  position: relative; border-radius: 28px; padding: clamp(20px, 3vw, 40px);
  background: var(--p-50); border: 1px solid var(--p-100); overflow: hidden;
}
.split__media svg { display: block; width: 100%; height: auto; }
.split__text h3 { font-size: clamp(1.5rem, 1.3rem + .8vw, 2rem); letter-spacing: -.02em; }

/* ---------- Callouts ---------- */
.callout {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; margin: 24px 0; border-radius: 14px;
  border: 1px solid var(--border); border-left: 4px solid var(--p-500);
  background: #fff; max-width: 68ch;
}
.callout .i { width: 22px; height: 22px; margin-top: 3px; }
.callout p { margin: 0; font-size: 1rem; line-height: 1.6; }
.callout strong { display: block; font-family: var(--ff-head); font-weight: 800; margin-bottom: 2px; }
.callout--tip { border-left-color: var(--p-500); background: var(--p-50); border-color: var(--p-100); }
.callout--tip .i { color: var(--p-500); }
.callout--warn { border-left-color: var(--accent); background: var(--accent-50); border-color: #FED7AA; }
.callout--warn .i { color: var(--accent-ink); }

/* ---------- Process ---------- */
.process { --num: 3.25rem; list-style: none; margin: 0; padding: 0; display: grid; gap: 28px; position: relative; max-width: none; }
.process::before {
  content: ""; position: absolute; top: 8px; bottom: 8px; left: calc(var(--num) * .62); width: 2px;
  background: repeating-linear-gradient(to bottom, var(--p-300) 0 6px, transparent 6px 12px);
}
.process__step { position: relative; display: grid; grid-template-columns: calc(var(--num) * 1.25) 1fr; gap: 16px; align-items: start; }
.process__num {
  display: block; position: relative; z-index: 1; background: var(--sec-bg);
  font-family: var(--ff-head); font-weight: 800; font-size: var(--num); line-height: 1; letter-spacing: -.04em; text-align: center;
  color: transparent; -webkit-text-stroke: 2px var(--p-400); padding-block: 4px;
}
@supports not (-webkit-text-stroke: 1px) { .process__num { color: var(--p-300); } }
.process__step h3 { margin-bottom: .35em; }
.process__step p { font-size: 1rem; line-height: 1.6; margin: 0; }
@media (min-width: 1024px) {
  .process { --num: 5.5rem; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
  .process::before { top: calc(var(--num) / 2); bottom: auto; left: 2%; right: 2%; width: auto; height: 2px;
    background: repeating-linear-gradient(to right, var(--p-300) 0 8px, transparent 8px 16px); }
  .process__step { display: block; }
  .process__num { display: inline-block; text-align: left; padding: 0 16px 0 0; margin-bottom: 22px; }
}

/* ---------- Timeline (costs of waiting) ---------- */
.timeline { list-style: none; margin: 0; padding: 0; max-width: 980px; }
.timeline__item { display: grid; gap: 10px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); }
.timeline__item:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
@media (min-width: 768px) { .timeline__item { grid-template-columns: 220px 1fr; gap: 32px; align-items: start; } }
.timeline__time {
  display: inline-flex; align-items: center; gap: 10px; align-self: start;
  font-family: var(--ff-head); font-weight: 800; color: #fff; font-size: 1.0625rem;
}
.timeline__time::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--heat, var(--p-300)); box-shadow: 0 0 0 5px rgba(255,255,255,.06); flex: none; }
.timeline__item p { margin: 0; }
.heat-1 { --heat: #83A3D2; } .heat-2 { --heat: #FDBA74; } .heat-3 { --heat: #FB923C; } .heat-4 { --heat: #F97316; } .heat-5 { --heat: #EA580C; }
.after-note { margin-top: 32px; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow); -webkit-overflow-scrolling: touch; }
.data-table { width: 100%; border-collapse: collapse; font-size: 1rem; line-height: 1.55; }
.data-table caption { text-align: left; padding: 18px 20px 0; font-family: var(--ff-head); font-weight: 800; color: var(--ink); }
.data-table th { background: var(--p-900); color: #fff; text-align: left; font-family: var(--ff-head); font-weight: 700; font-size: .95rem; padding: 16px 20px; }
.data-table td { padding: 16px 20px; border-top: 1px solid var(--border); vertical-align: top; }
.data-table tbody tr:nth-child(even) td { background: #FAFBFD; }
.data-table td:first-child { font-weight: 700; color: var(--ink); font-family: var(--ff-head); }
.data-table td em { color: var(--muted); }
@media (max-width: 639px) {
  .table-wrap--stack { border: 0; box-shadow: none; background: transparent; overflow: visible; }
  .data-table--stack thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .data-table--stack, .data-table--stack tbody, .data-table--stack tr, .data-table--stack td { display: block; width: 100%; }
  .data-table--stack tr { background: #fff; border: 1px solid var(--border); border-radius: 16px; margin-bottom: 12px; box-shadow: var(--shadow); overflow: hidden; }
  .data-table--stack td { border-top: 1px solid var(--border); padding: 12px 16px; }
  .data-table--stack td:first-child { border-top: 0; background: var(--p-50) !important; }
  .data-table--stack td::before { content: attr(data-label); display: block; font-family: var(--ff-head); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
  .data-table--stack tbody tr:nth-child(even) td { background: #fff; }
}

/* ---------- Areas ---------- */
.areas { display: grid; gap: 40px; }
@media (min-width: 1024px) { .areas { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 64px; align-items: start; } .areas__aside { position: sticky; top: calc(var(--header-h) + 24px); } }
.areas__aside .split__media { background: #fff; }
.area-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0 32px; max-width: none; }
@media (min-width: 768px) { .area-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.area-item { padding: 20px 0; border-top: 1px solid var(--p-100); }
.area-item h3 { display: flex; align-items: center; gap: 10px; font-size: 1.125rem; margin: 0 0 6px; }
.area-item h3 .i { width: 20px; height: 20px; color: var(--accent-ink); }
.area-item p { font-size: 1rem; line-height: 1.6; margin: 0; }

/* ---------- Trust / referral ---------- */
.trust-grid { display: grid; gap: 32px; }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: start; } }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.checklist li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; align-items: start; line-height: 1.55; }
.checklist .i { width: 22px; height: 22px; color: var(--accent-ink); margin-top: 2px; }
.ready-card { margin-top: 24px; background: var(--p-900); color: var(--on-dark); border-color: var(--p-900); }
.ready-card h3 { color: #fff; }
.ready-card .checklist .i { color: var(--accent); }
.ready-card strong { color: #fff; }

/* ---------- Prose (inner pages) ---------- */
.prose h2 { margin-top: 1.9em; scroll-margin-top: calc(var(--header-h) + 20px); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5em; }
.prose ul, .prose ol { padding-left: 1.25em; }
.prose li { margin-bottom: .45em; }
.prose li::marker { color: var(--accent-ink); }

/* ---------- Service layout (TOC + sticky call card) ---------- */
.svc-layout { display: grid; gap: 32px; }
.svc-aside { display: grid; gap: 16px; align-content: start; }
@media (min-width: 1024px) {
  .svc-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 64px; align-items: start; }
  .svc-aside { position: sticky; top: calc(var(--header-h) + 24px); order: 2; }
}
.toc { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.toc > summary {
  display: flex; align-items: center; justify-content: space-between; min-height: 52px; padding: 12px 20px;
  cursor: pointer; list-style: none; font-family: var(--ff-head); font-weight: 800; color: var(--p-900);
}
.toc > summary::-webkit-details-marker { display: none; }
.toc > summary .i { width: 18px; height: 18px; transition: transform .25s; }
.toc[open] > summary .i { transform: rotate(180deg); }
.toc ol { list-style: none; margin: 0; padding: 0 12px 14px; max-width: none; counter-reset: toc; }
.toc a { display: flex; gap: 10px; align-items: center; min-height: 40px; padding: 6px 8px; border-radius: 10px; color: var(--text); text-decoration: none; font-size: .95rem; line-height: 1.35; }
.toc a::before { counter-increment: toc; content: counter(toc, decimal-leading-zero); font-family: var(--ff-head); font-weight: 800; font-size: .75rem; color: var(--p-400); }
.toc a:hover, .toc a.is-active { background: var(--p-50); color: var(--p-900); }
.sidebar-call { background: var(--p-900); color: var(--on-dark); border-color: var(--p-900); padding: 24px; }
.sidebar-call h2, .sidebar-call h3 { color: #fff; font-size: 1.25rem; margin-bottom: .3em; }
.sidebar-call p { font-size: .98rem; line-height: 1.55; }
.sidebar-call .btn { width: 100%; }
@media (max-width: 1023px) { .sidebar-call { display: none; } }

/* ---------- FAQ ---------- */
.faq { max-width: 900px; margin-inline: auto; }
.faq__item { border: 1px solid var(--border); border-radius: 16px; background: #fff; margin-bottom: 12px; transition: box-shadow .25s, border-color .25s; }
.faq__item[open] { box-shadow: var(--shadow); border-color: var(--p-200); }
.faq__item > summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; padding: 16px 20px; cursor: pointer; list-style: none; }
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__q { font-size: 1.0625rem; font-weight: 700; margin: 0; line-height: 1.4; letter-spacing: -.01em; }
.faq__icon { width: 36px; height: 36px; border-radius: 50%; flex: none; display: grid; place-items: center; background: var(--p-50); color: var(--p-900); transition: transform .3s var(--ease), background-color .3s; }
.faq__icon .i { width: 18px; height: 18px; }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: var(--accent); }
.faq__body { padding: 0 20px 20px; }
.faq__body p { margin: 0; font-size: 1rem; line-height: 1.65; }
@media (min-width: 768px) { .faq__item > summary { padding: 18px 24px; } .faq__body { padding: 0 24px 22px; } }

/* ---------- CTA band ---------- */
.cta-band { color: var(--on-dark); overflow: hidden; text-align: center; }
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band p { margin-inline: auto; color: var(--on-dark-muted); }
.cta-band__glow { position: absolute; left: 50%; top: 55%; width: min(900px, 120vw); aspect-ratio: 1; transform: translate(-50%, -50%); z-index: -1;
  background: radial-gradient(circle, rgba(249,115,22,.32) 0%, rgba(249,115,22,.08) 35%, transparent 62%); pointer-events: none; }
.cta-band__rings { position: absolute; inset: 0; z-index: -1; width: 100%; height: 100%; opacity: .5; pointer-events: none; }
.cta-band__phone {
  display: inline-flex; align-items: center; gap: .25em; margin: 12px 0 20px;
  font-family: var(--ff-head); font-weight: 800; letter-spacing: -.035em; line-height: 1;
  font-size: clamp(2.25rem, 1.1rem + 5.4vw, 5.5rem); color: #fff; text-decoration: none;
  text-shadow: 0 0 40px rgba(249,115,22,.45);
}
.cta-band__phone:hover { color: var(--accent-soft); }
.cta-band__phone .i { width: .8em; height: .8em; color: var(--accent); stroke-width: 2.2; }
@media (max-width: 639px) { .cta-band__phone .i { display: none; } }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: var(--on-dark-muted); padding-block: 72px 32px; font-size: 1rem; }
.footer__grid { display: grid; gap: 40px; }
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.25fr 1.2fr 1fr .75fr; gap: 48px; } }
.footer__title { font-family: var(--ff-head); font-size: .8125rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.footer__list { list-style: none; margin: 0; padding: 0; max-width: none; }
.footer__list a { display: flex; align-items: center; min-height: 40px; color: #D5E0EE; text-decoration: none; line-height: 1.35; }
.footer__list a:hover { color: var(--accent-soft); }
.footer__brand p { font-size: .98rem; line-height: 1.6; }
.footer__contact { display: grid; gap: 10px; margin: 18px 0 22px; font-style: normal; }
.footer__contact a, .footer__contact span { display: inline-flex; gap: 10px; align-items: flex-start; color: #D5E0EE; text-decoration: none; min-height: 32px; }
.footer__contact .i { width: 20px; height: 20px; color: var(--accent); margin-top: 3px; }
.footer__phone { font-family: var(--ff-head); font-weight: 800; font-size: 1.25rem; color: #fff !important; }
.footer__disclaimer { margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: .9rem; line-height: 1.6; }
.footer__disclaimer p { max-width: none; }
.site-footer strong { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 20px; font-size: .9rem; }
.footer__bottom a { color: #D5E0EE; }

/* ---------- Mobile call bar ---------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(6,21,40,.96);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -10px 30px -12px rgba(0,0,0,.45);
}
.callbar__btn { flex: 1; min-height: 56px; font-size: 1.0625rem; }
.callbar__label { display: none; color: var(--on-dark-muted); font-size: .8125rem; line-height: 1.25; font-weight: 600; }
.callbar__label b { display: block; color: #fff; font-family: var(--ff-head); font-size: .9375rem; }
@media (min-width: 480px) { .callbar__label { display: block; } }
@media (min-width: 1024px) { .callbar { display: none; } }

/* ---------- 404 ---------- */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; }

/* ---------- Reveal on scroll (content visible without JS) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------- Print ---------- */
@media print { .site-header, .callbar, .cta-band, .site-footer, .svc-aside { display: none !important; } body { padding: 0; } }
