/* =========================================================
   JUSTINFIT — Design System v2  ("Concierge")
   Luxury, warm, editorial. Built for adults 55+ (legibility first).
   Display: Fraunces (optical serif) · Body: Hanken Grotesk
   ========================================================= */

:root {
  color-scheme: only light;

  /* ---- Warm luxury palette ---- */
  --brand:       #E97B16;   /* burnished brand orange */
  --brand-lit:   #F78F1E;   /* logo orange — gradient highlight */
  --brand-deep:  #C45E10;   /* copper, for gradient end + hovers */
  --brand-tint:  #FBEEDD;   /* soft wash */
  --brand-ink:   #A1500C;   /* orange that passes WCAG AA (>=4.5:1) on ivory for text */

  --ink:         #211A12;   /* warm near-black — headings + dark sections */
  --ink-2:       #2C2218;   /* dark section variant */
  --body:        #4A4036;   /* warm body text (~9:1 on paper) */
  --muted:       #756A5C;   /* muted but >=4.5:1 on paper */
  --muted-dk:    #B9AE9E;   /* muted on dark sections */

  --paper:       #FCF9F4;   /* warm ivory */
  --paper-2:     #F4ECE0;   /* sand, alternating sections */
  --line:        #E7DDCD;   /* warm hairline — decorative dividers and card edges */
  --line-strong: #8F8271;   /* borders that ARE the control: >=3:1 on paper and sand */
  --line-dk:     #3A2F23;   /* hairline on dark */
  --gold:        #B0863F;   /* sparing bronze accent */

  /* ---- Type ---- */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --body-font: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* ---- Metrics ---- */
  --w: 1200px;
  --w-text: 760px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(80px, 11vw, 156px);
  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;

  /* ---- Shadows (warm, never harsh) ---- */
  --sh-sm: 0 2px 8px rgba(70,45,15,0.06);
  --sh:    0 18px 44px rgba(70,45,15,0.10);
  --sh-lg: 0 32px 80px rgba(50,30,10,0.18);

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 0.72, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--paper);
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--body-font);
  font-size: 18.5px;            /* large base for 55+ */
  line-height: 1.72;
  color: var(--body);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.05;
  font-weight: 540;
  letter-spacing: -0.012em;
  font-optical-sizing: auto;
}

p { text-wrap: pretty; }

a { color: var(--brand-ink); text-decoration: none; }

/* --brand is only 2.7:1 on ivory; --brand-ink clears 3:1 (WCAG 1.4.11). */
:focus-visible {
  outline: 3px solid var(--brand-ink);
  outline-offset: 3px;
  border-radius: 4px;
}
/* On the dark sections an ivory ring is the one that stays visible. */
.proof :focus-visible,
.healthspan :focus-visible,
.contact-info :focus-visible,
.area-card-dark :focus-visible,
footer :focus-visible { outline-color: var(--paper); }

::selection { background: var(--brand); color: #fff; }

.wrap { width: 100%; max-width: var(--w); margin-inline: auto; padding-inline: var(--gutter); }

section { padding-block: var(--section-y); position: relative; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
/* The skip link is the one .sr-only element that must show itself on focus. */
.sr-only:focus {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  width: auto; height: auto; margin: 0;
  overflow: visible; clip: auto; white-space: normal;
  padding: 14px 24px; border-radius: var(--r-sm);
  background: var(--paper); color: var(--ink);
  font-weight: 700; font-size: 16px;
  box-shadow: var(--sh);
}

/* ===== Shared editorial elements ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--body-font);
  font-weight: 600; font-size: 12.5px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-ink);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: ""; width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--gold));
  border-radius: 2px;
}
.eyebrow.center { justify-content: center; }

.section-title {
  font-size: clamp(32px, 4.6vw, 58px);
  font-weight: 500;
  margin-bottom: 22px;
  max-width: 16ch;
}
.section-title.wide { max-width: 22ch; }
.section-title em { font-style: italic; color: var(--brand-ink); font-weight: 500; }

.lede {
  font-size: clamp(18px, 1.4vw, 21px);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.65;
}
.center-head { text-align: center; }
.center-head .lede { margin-inline: auto; }
.center-head .eyebrow { justify-content: center; }

/* ===== Buttons ===== */
.btn {
  --bg: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body-font);
  font-weight: 700; font-size: 16.5px; letter-spacing: 0.005em;
  padding: 16px 30px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background-color .25s ease, color .25s ease, border-color .25s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--brand-lit), var(--brand-deep));
  color: #fff;
  box-shadow: 0 10px 24px rgba(201,94,16,0.28);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(201,94,16,0.40); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(33,26,18,0.55); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-3px); }
.btn-inverse { background: var(--paper); color: var(--ink); }
.btn-inverse:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.btn-lg { padding: 18px 38px; font-size: 17.5px; }

/* =========================================================
   NAV
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(252,249,244,0.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 30px rgba(70,45,15,0.06);
  background: rgba(252,249,244,0.9);
}
.nav {
  display: flex; align-items: center; gap: 24px;
  height: 92px; transition: height .3s var(--ease);
}
.site-header.scrolled .nav { height: 72px; }
.brand-logo { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo img { height: 46px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .brand-logo img { height: 38px; }

.nav-links {
  display: flex; align-items: center; gap: 30px;
  list-style: none; margin-left: auto;
}
.nav-links a:not(.btn) {
  font-weight: 600; font-size: 15.5px; color: var(--ink);
  position: relative; padding-block: 6px;
  transition: color .2s ease;
}
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--brand);
  transition: right .3s var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--brand-ink); }
.nav-links a:not(.btn):hover::after { right: 0; }
.nav-cta { padding: 11px 22px; font-size: 15px; }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 46px; height: 46px; margin-left: auto; color: var(--ink);
}
.menu-toggle svg { width: 28px; height: 28px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding-top: clamp(132px, 17vh, 196px);
  padding-bottom: var(--section-y);
  position: relative; overflow: clip;
}
.hero::before {  /* ambient warm glow */
  content: ""; position: absolute; z-index: 0;
  top: -10%; right: -8%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle at center, rgba(247,143,30,0.16), transparent 62%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px 8px 12px;
  font-weight: 600; font-size: 13px; color: var(--ink);
  box-shadow: var(--sh-sm); margin-bottom: 26px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 0 4px rgba(233,123,22,0.18); }
.hero h1 {
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 500; line-height: 1.02;
  letter-spacing: -0.02em; margin-bottom: 24px;
}
.hero h1 .rotator { display: inline-grid; vertical-align: top; }
.hero h1 .rotate-phrase {
  grid-area: 1 / 1; font-style: italic; color: var(--brand-ink);
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.hero h1 .rotate-phrase.active { opacity: 1; transform: none; }
.hero h1 .rotate-phrase.leaving { opacity: 0; transform: translateY(-18px); }
.hero-sub { font-size: clamp(17px, 1.4vw, 20px); color: var(--muted); max-width: 52ch; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-reassure { margin-top: 22px; font-size: 14.5px; color: var(--muted); display: flex; align-items: center; gap: 9px; }
.hero-reassure svg { width: 18px; height: 18px; stroke: var(--brand); flex-shrink: 0; }

/* Hero portrait — intentional placeholder (swap with real photo) */
.hero-figure { position: relative; }
.hero-photo {
  aspect-ratio: 4 / 5; border-radius: var(--r-lg);
  background:
    radial-gradient(120% 90% at 70% 10%, rgba(247,143,30,0.22), transparent 55%),
    linear-gradient(160deg, #2C2218, #4A3322 60%, #6B4A26);
  border: 1px solid var(--line);
  overflow: hidden; position: relative;
  box-shadow: var(--sh-lg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.photo-ph {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 28px;
}
.photo-ph svg { width: 54px; height: 54px; stroke: rgba(255,255,255,0.55); }
.photo-ph span { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; max-width: 24ch; }

/* The HTML hidden attribute must win over any display rule below. */
[hidden] { display: none !important; }

/* Floating credential card on the photo */
.hero-badge {
  position: absolute; left: -22px; bottom: 34px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 16px 20px;
  box-shadow: var(--sh); display: flex; align-items: center; gap: 14px;
  max-width: 260px;
}
.hero-badge.badge-right { left: auto; right: -22px; }
.hero-badge .ring {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--brand-lit), var(--brand-deep));
}
.hero-badge .ring svg { width: 24px; height: 24px; }
.hero-badge b { font-family: var(--display); font-size: 18px; color: var(--ink); display: block; line-height: 1.1; }
.hero-badge small { font-size: 12.5px; color: var(--muted); }

/* =========================================================
   MARQUEE PROOF STRIP
   ========================================================= */
.proof { background: var(--ink); padding-block: 22px; overflow: clip; }
.marquee { display: flex; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 56px; padding-right: 56px; animation: marquee 38s linear infinite; white-space: nowrap; }
.proof:hover .marquee-track { animation-play-state: paused; }
.proof-item { display: inline-flex; align-items: center; gap: 11px; color: #F3ECE0; font-weight: 600; font-size: 15px; letter-spacing: 0.02em; }
.proof-item svg { width: 18px; height: 18px; stroke: var(--brand-lit); flex-shrink: 0; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--paper-2); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-figure { position: relative; }
.about-photo {
  aspect-ratio: 4 / 5; border-radius: var(--r-lg);
  background: linear-gradient(160deg, #EFE6D7, #E2D3BE);
  border: 1px solid var(--line); overflow: hidden; position: relative; box-shadow: var(--sh);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.about-photo .photo-ph svg { stroke: rgba(74,51,34,0.4); }
.about-photo .photo-ph span { color: rgba(74,51,34,0.55); }
.about-press {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px 22px; box-shadow: var(--sh);
}
.about-press .press-label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); text-align: center; margin-bottom: 18px;
}
.about-press img { width: 100%; height: auto; display: block; }
.about p { margin-bottom: 18px; font-size: 18px; }
.about .lede { color: var(--body); margin-bottom: 24px; }
.sig { font-family: var(--display); font-style: italic; font-size: 26px; color: var(--ink); margin-top: 6px; }
.about-creds { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.cred-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px; font-size: 14px; font-weight: 600; color: var(--ink);
}
.cred-chip svg { width: 15px; height: 15px; stroke: var(--brand); }

/* =========================================================
   AS FEATURED IN
   ========================================================= */
.featured { padding-block: clamp(48px, 7vw, 80px); text-align: center; }
.featured .kicker { font-weight: 600; font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 28px; }
.press-strip { max-width: 460px; margin-inline: auto; }
.press-strip img { width: 100%; height: auto; opacity: 0.62; transition: opacity .35s var(--ease); }
.press-strip:hover img { opacity: 0.82; }

/* =========================================================
   VIDEO
   ========================================================= */
.video { padding-top: 0; }
.video-frame {
  max-width: 880px; margin: 44px auto 0; aspect-ratio: 16/9;
  border-radius: var(--r-lg); overflow: hidden; position: relative;
  background: linear-gradient(160deg, #2C2218, #4A3322); box-shadow: var(--sh-lg);
  border: 1px solid var(--line);
}
.video-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
/* A real <button>, so Enter and Space work and there is a single tab stop. */
.video-ph {
  position: absolute; inset: 0; width: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 18px; padding: 28px; text-align: center;
  background: none; border: 0; font-family: inherit; cursor: pointer;
}
.video-ph .video-cap { color: rgba(255,255,255,0.72); font-size: 15px; max-width: 44ch; }
.play-btn {
  width: 84px; height: 84px; border-radius: 50%; border: none;
  background: linear-gradient(135deg, var(--brand-lit), var(--brand-deep)); color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 34px rgba(201,94,16,0.45);
  position: relative;
}
.play-btn::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(247,143,30,0.4); animation: pulse 2.4s ease-out infinite; }
.play-btn svg { width: 32px; height: 32px; margin-left: 4px; }
@keyframes pulse { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(1.35); opacity: 0; } }

/* =========================================================
   SERVICES
   ========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 60px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 38px 34px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-lit), var(--brand-deep));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh); border-color: rgba(233,123,22,0.4); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px; margin-bottom: 24px;
  background: var(--brand-tint); display: grid; place-items: center;
}
.card-icon svg { width: 28px; height: 28px; stroke: var(--brand-deep); }
.card h3 { font-size: 23px; margin-bottom: 12px; font-weight: 500; }
.card p { font-size: 16.5px; color: var(--muted); margin-bottom: 20px; }
.card-link { font-weight: 700; font-size: 15px; color: var(--brand-ink); display: inline-flex; align-items: center; gap: 7px; transition: gap .25s var(--ease); }
.card-link svg { width: 16px; height: 16px; }
.card:hover .card-link { gap: 12px; }

/* =========================================================
   HEALTHSPAN (signature section)
   ========================================================= */
.healthspan { background: var(--ink); color: var(--paper); overflow: clip; }
.healthspan .eyebrow { color: var(--brand-lit); }
.healthspan .section-title { color: var(--paper); }
.healthspan .lede { color: var(--muted-dk); }
.hs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.hs-copy p { color: var(--muted-dk); margin-bottom: 18px; }
.hs-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
.hs-stat { border: 1px solid var(--line-dk); border-radius: var(--r); padding: 24px 22px; background: rgba(255,255,255,0.02); }
.hs-stat .num { font-family: var(--display); font-weight: 600; font-size: clamp(38px, 4.5vw, 54px); line-height: 1; color: var(--brand-lit); letter-spacing: -0.02em; }
.hs-stat .num .unit { font-size: 0.42em; margin-left: 3px; }
.hs-stat h3 { color: var(--paper); font-size: 16px; margin: 12px 0 4px; font-weight: 500; }
.hs-stat p { color: var(--muted-dk); font-size: 14px; margin: 0; }

/* Animated healthspan curve — the page's signature */
.hs-figure { position: relative; }
.hs-chart { width: 100%; height: auto; }
.hs-chart .grid-line { stroke: var(--line-dk); stroke-width: 1; }
.hs-chart .axis-label { fill: var(--muted-dk); font-family: var(--body-font); font-size: 12px; font-weight: 600; }
.hs-chart .curve { fill: none; stroke-width: 4; stroke-linecap: round; }
.hs-chart .curve-decline { stroke: var(--muted-dk); stroke-dasharray: 6 7; }
.hs-chart .curve-train { stroke: url(#hsGrad); filter: drop-shadow(0 6px 16px rgba(247,143,30,0.4)); }
.hs-chart .area-train { fill: url(#hsArea); opacity: 0; transition: opacity 1s ease .6s; }
.hs-chart.in .area-train { opacity: 1; }
.hs-chart .dot { fill: var(--brand-lit); }
.hs-chart .legend { fill: var(--paper); font-family: var(--body-font); font-size: 13px; font-weight: 600; }
.hs-chart .legend-muted { fill: var(--muted-dk); }

/* =========================================================
   WHO I WORK WITH
   ========================================================= */
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.who-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 34px 32px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
.who-card:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: rgba(233,123,22,0.4); }
.who-card .tag { font-weight: 700; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand-ink); margin-bottom: 12px; display: block; }
.who-card h3 { font-size: 21px; margin-bottom: 10px; font-weight: 500; }
.who-card p { font-size: 16.5px; color: var(--muted); }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.steps { background: var(--paper-2); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; position: relative; }
.step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 38px 32px; position: relative; }
.step-num {
  font-family: var(--display); font-weight: 600; font-size: 18px; color: #fff;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 24px;
  background: linear-gradient(135deg, var(--brand-lit), var(--brand-deep));
  box-shadow: 0 8px 20px rgba(201,94,16,0.3);
}
.step h3 { font-size: 22px; margin-bottom: 12px; font-weight: 500; }
.step p { font-size: 16.5px; color: var(--muted); }

/* =========================================================
   TESTIMONIALS + VIDEO TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--paper); }
.vt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.vt-card {
  position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 3/4;
  background: linear-gradient(165deg, #2C2218, #4A3322); border: 1px solid var(--line);
  cursor: pointer; box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.vt-card:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.vt-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vt-card .vt-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,14,8,0.85)); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.vt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; background: rgba(252,249,244,0.92); display: grid; place-items: center; transition: transform .35s var(--ease), background-color .25s ease; pointer-events: none; }
.vt-card:hover .vt-play { transform: translate(-50%,-50%) scale(1.08); background: var(--brand-lit); }
.vt-play svg { width: 26px; height: 26px; margin-left: 3px; color: var(--ink); }
.vt-card:hover .vt-play svg { color: #fff; }
.vt-card .vt-name { color: #fff; font-family: var(--display); font-size: 19px; font-weight: 500; position: relative; z-index: 1; }
.vt-card .vt-meta { color: rgba(255,255,255,0.75); font-size: 13.5px; position: relative; z-index: 1; }
/* A real <button>, matching the main video control. */
.vt-card .vt-ph { position: absolute; inset: 0; width: 100%; display: grid; place-items: center; background: none; border: 0; padding: 0; cursor: pointer; }
.vt-card .vt-ph svg { width: 46px; height: 46px; stroke: rgba(255,255,255,0.3); }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.testi-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 34px 32px; display: flex; flex-direction: column; transition: border-color .3s ease, box-shadow .3s ease; }
.testi-card:hover { border-color: rgba(233,123,22,0.4); box-shadow: var(--sh-sm); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 18px; height: 18px; fill: var(--brand-lit); }
.testi-card blockquote { font-family: var(--display); font-size: 19px; font-style: italic; line-height: 1.5; color: var(--ink); margin-bottom: 22px; flex-grow: 1; font-weight: 400; }
.testi-card cite { font-style: normal; font-weight: 700; color: var(--ink); font-size: 16px; }
.testi-card .meta { font-size: 13.5px; color: var(--muted); margin-top: 2px; }

/* =========================================================
   SERVICE AREAS (local SEO)
   ========================================================= */
.areas { background: var(--paper-2); }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 56px; }
.area-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 28px; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .3s ease;
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: rgba(233,123,22,0.4); }
.area-card .area-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.area-card .pin { width: 40px; height: 40px; border-radius: 11px; background: var(--brand-tint); display: grid; place-items: center; flex-shrink: 0; }
.area-card .pin svg { width: 21px; height: 21px; stroke: var(--brand-deep); }
.area-card h3 { font-size: 21px; font-weight: 500; }
.area-card .zips { font-size: 13px; color: var(--muted); font-weight: 600; letter-spacing: 0.02em; }
.area-card p { font-size: 15.5px; color: var(--muted); margin-bottom: 18px; flex-grow: 1; }
.area-card .area-link { font-weight: 700; font-size: 14.5px; color: var(--brand-ink); display: inline-flex; align-items: center; gap: 7px; margin-top: auto; transition: gap .25s var(--ease); }
.area-card .area-link svg { width: 15px; height: 15px; }
.area-card:hover .area-link { gap: 11px; }
.areas-note { text-align: center; margin-top: 36px; font-size: 15px; color: var(--muted); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--paper); }
.faq-list { max-width: 820px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 26px 8px;
  font-family: var(--display); font-weight: 500; font-size: clamp(18px, 1.8vw, 22px); color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--brand-ink); }
.faq-item .chev { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-items: center; transition: transform .3s var(--ease), background-color .25s ease, border-color .25s ease; }
.faq-item .chev svg { width: 15px; height: 15px; stroke: var(--brand-deep); transition: stroke .25s ease; }
.faq-item[open] .chev { transform: rotate(180deg); background: var(--brand); border-color: var(--brand); }
.faq-item[open] .chev svg { stroke: #fff; }
.faq-answer { overflow: hidden; }
.faq-answer p { padding: 0 8px 28px; font-size: 17px; color: var(--muted); max-width: 70ch; }

/* =========================================================
   FINAL CTA / CONTACT
   ========================================================= */
.contact { background: var(--ink); color: var(--paper); overflow: clip; position: relative; }
.contact::before { content: ""; position: absolute; top: -20%; left: -10%; width: 50vw; height: 50vw; max-width: 600px; max-height: 600px; background: radial-gradient(circle, rgba(247,143,30,0.16), transparent 60%); pointer-events: none; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 72px); align-items: start; }
.contact .eyebrow { color: var(--brand-lit); }
.contact h2 { color: var(--paper); font-size: clamp(30px, 4vw, 50px); font-weight: 500; line-height: 1.05; margin-bottom: 20px; }
.contact h2 em { font-style: italic; color: var(--brand-lit); }
.contact-info > p { color: var(--muted-dk); margin-bottom: 16px; max-width: 46ch; }
.contact-info .promise { font-family: var(--display); font-style: italic; font-size: 19px; color: var(--paper); margin-top: 6px; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-top: 18px; font-weight: 600; color: var(--paper); }
.contact-line a { color: var(--paper); }
.contact-line a:hover { color: var(--brand-lit); }
.contact-line svg { width: 20px; height: 20px; stroke: var(--brand-lit); flex-shrink: 0; }

.form-card { background: var(--paper); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--sh-lg); }
.form-card h3 { font-size: 25px; margin-bottom: 6px; font-weight: 500; }
.form-card .form-sub { font-size: 15px; color: var(--muted); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; font-family: var(--body-font); font-size: 16px; padding: 14px 16px;
  border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); background: var(--paper-2); color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder { color: var(--muted); }
/* Keep the soft brand treatment, but never suppress the focus ring — this is the
   one form on the site, and its users are the ones least able to hunt for a caret. */
.field input:focus, .field textarea:focus { border-color: var(--brand-ink); box-shadow: 0 0 0 4px rgba(233,123,22,0.14); }
.field .optional { font-weight: 400; color: var(--muted); font-size: 14px; }
.contact-pref { border: none; }
.contact-pref legend { font-weight: 700; font-size: 16px; color: var(--ink); margin-bottom: 9px; }
.pref-options { display: flex; gap: 10px; }
.pref { flex: 1; cursor: pointer; }
.pref input { position: absolute; opacity: 0; pointer-events: none; }
.pref span { display: block; text-align: center; font-weight: 700; font-size: 15px; color: var(--ink); padding: 12px 8px; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); background: var(--paper-2); transition: border-color .2s ease, background-color .2s ease; }
.pref:hover span { border-color: var(--brand-ink); }
.pref input:checked + span { border-color: var(--brand-ink); background: var(--brand-tint); color: var(--brand-deep); }
.pref input:focus-visible + span { outline: 3px solid var(--brand-ink); outline-offset: 2px; }
.form-card .btn { width: 100%; margin-top: 6px; }
.form-note { font-size: 14.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 20px 0; }
.form-success.show { display: block; }
.form-success svg { width: 56px; height: 56px; stroke: var(--brand); margin: 0 auto 16px; }
.form-success h3 { margin-bottom: 8px; }

/* =========================================================
   FOOTER
   ========================================================= */
footer { background: var(--ink-2); color: var(--muted-dk); padding-block: 72px 40px; font-size: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
footer .brand-logo img { height: 58px; }
.footer-about { max-width: 32ch; margin-top: 18px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-dk); display: grid; place-items: center; transition: background-color .25s ease, border-color .25s ease, transform .25s ease; }
.footer-social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; stroke: var(--muted-dk); transition: stroke .25s ease; }
.footer-social a:hover svg { stroke: #fff; }
footer h4 { font-family: var(--body-font); font-weight: 700; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--paper); margin-bottom: 18px; }
footer ul { list-style: none; }
footer li { margin-bottom: 2px; }
/* Inline links gave a 20px-tall target; pad them out to a comfortable 44px. */
footer li a { display: inline-block; padding-block: 9px; }
footer a { color: var(--muted-dk); transition: color .2s ease; }
footer a:hover { color: var(--brand-lit); }
.footer-bottom { border-top: 1px solid var(--line-dk); padding-top: 28px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted-dk); }

/* =========================================================
   MOBILE STICKY ACTION BAR
   ========================================================= */
.action-bar {
  display: none; position: fixed; inset: auto 0 0 0; z-index: 90; gap: 10px;
  background: rgba(252,249,244,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -6px 24px rgba(70,45,15,0.08); transition: transform .35s var(--ease);
}
.action-bar.hidden { transform: translateY(110%); }
.action-bar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; font-size: 15px; padding: 14px 10px; border-radius: 999px; }
.action-call { color: var(--ink); border: 1.5px solid var(--ink); }
.action-call svg { width: 17px; height: 17px; stroke: var(--ink); }
.action-book { background: linear-gradient(135deg, var(--brand-lit), var(--brand-deep)); color: #fff; }

/* =========================================================
   SCROLL REVEAL + LOAD ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }

@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.load > * { opacity: 0; animation: rise .9s var(--ease-out) forwards; animation-delay: var(--ld, 0ms); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .svc-grid, .steps-grid, .vt-grid, .testi-grid, .area-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw); height: 100dvh;
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 26px; padding: 116px 36px 36px; background: var(--paper);
    box-shadow: -20px 0 60px rgba(70,45,15,0.16);
    transform: translateX(100%); visibility: hidden;
    transition: transform .38s var(--ease), visibility 0s linear .38s;
  }
  .nav-links.open { transform: none; visibility: visible; transition: transform .38s var(--ease); }
  .nav-links a:not(.btn) { font-size: 19px; }
  .nav-links .nav-cta { display: inline-flex; }
  .menu-toggle { display: grid; place-items: center; }
  .hero-grid, .about-grid, .hs-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 460px; }
  .about-figure { max-width: 440px; margin-inline: auto; }
  .hs-figure { order: -1; }
  .action-bar { display: flex; }
  body { padding-bottom: 76px; }
  footer { padding-bottom: 104px; }
}

@media (max-width: 600px) {
  body { font-size: 17.5px; }
  .svc-grid, .steps-grid, .vt-grid, .testi-grid, .area-grid, .who-grid, .hs-stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .pref-options { flex-direction: column; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal, .load > * { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .play-btn::after { animation: none; }
}

@media (prefers-color-scheme: dark) {
  html, body { background: var(--paper); color-scheme: only light; }
}

/* =========================================================
   LOCAL AREA PAGES
   ========================================================= */
.loc-hero { padding-top: clamp(120px, 16vh, 168px); }
.loc-hero .hero-copy { max-width: 860px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); font-weight: 600; display: inline-block; padding-block: 9px; }
.breadcrumb a:hover { color: var(--brand-ink); }
.breadcrumb .sep { color: var(--line-strong); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 600; }

.loc-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.loc-body p { margin-bottom: 18px; }
.loc-body h3 { font-size: clamp(22px, 2.4vw, 28px); font-weight: 500; margin: 36px 0 14px; }
.loc-body .lede { color: var(--body); margin-bottom: 22px; }

.coverage-card { position: sticky; top: 108px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 32px 30px; box-shadow: var(--sh); }
.coverage-card h3 { font-size: 20px; font-weight: 500; margin-bottom: 6px; }
.coverage-card .cc-sub { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.coverage-row { display: flex; gap: 13px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.coverage-row:last-of-type { border-bottom: 0; }
.coverage-row svg { width: 20px; height: 20px; stroke: var(--brand-deep); flex-shrink: 0; margin-top: 2px; }
.coverage-row b { display: block; color: var(--ink); font-size: 14.5px; }
.coverage-row span { font-size: 14px; color: var(--muted); }
.coverage-card .btn { width: 100%; margin-top: 22px; }

.hoods { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 8px; }
.hood-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--paper-2); border: 1px solid var(--line); border-radius: 999px; padding: 9px 16px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.hood-chip svg { width: 14px; height: 14px; stroke: var(--brand); flex-shrink: 0; }

.nearby { background: var(--paper-2); }
.nearby-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.nearby-grid a { display: inline-flex; align-items: center; gap: 9px; background: var(--paper); border: 1px solid var(--line-strong); border-radius: 999px; padding: 12px 22px; font-weight: 600; font-size: 15.5px; color: var(--ink); transition: transform .3s var(--ease), border-color .25s ease, box-shadow .25s ease; }
.nearby-grid a:hover { transform: translateY(-3px); border-color: rgba(233,123,22,0.45); box-shadow: var(--sh-sm); }
.nearby-grid a svg { width: 16px; height: 16px; stroke: var(--brand); }

@media (max-width: 820px) {
  .loc-grid { grid-template-columns: 1fr; }
  .coverage-card { position: static; }
}
