/* ============================================================
   Summit Senior Services — Interior pages (2026)
   Builds on summit-redesign.css (nav, footer, buttons, bands,
   eyebrow, headings, steps, who-grid, mobile menu, mcta).
   Adds: interior hero, breadcrumbs, scroll slide-ins, animated
   stat counters, alternating split features, service-page
   components, contact form, FAQ, service-area, city links.
   ============================================================ */

/* ─────────── SCROLL SLIDE-INS (AmeritFleet-style) ─────────── */
/* Hidden state applies ONLY when JS runs AND motion is allowed, so
   print / no-JS / reduced-motion always show content. */
@media (prefers-reduced-motion: no-preference) {
  html.js [data-sl] {
    opacity: 0;
    transition:
      opacity 0.9s var(--ease),
      transform 0.9s var(--ease);
    transition-delay: var(--sl-d, 0ms);
    will-change: opacity, transform;
  }
  html.js [data-sl="left"]   { transform: translateX(-56px); }
  html.js [data-sl="right"]  { transform: translateX(56px); }
  html.js [data-sl="up"]     { transform: translateY(40px); }
  html.js [data-sl="down"]   { transform: translateY(-32px); }
  html.js [data-sl="scale"]  { transform: scale(0.93); }
  html.js [data-sl].in {
    opacity: 1;
    transform: none;
  }
}

/* ─────────── INTERIOR HERO (navy full-bleed) ─────────── */
.page-hero {
  position: relative;
  background: var(--navy-900);
  color: var(--cream);
  overflow: hidden;
  padding-block: clamp(8.5rem, 16vh, 12rem) clamp(3.5rem, 7vw, 6rem);
  isolation: isolate;
}
.page-hero::before {
  /* soft directional wash + faint topographic gold lines */
  content: '';
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(201,168,76,0.20) 0%, rgba(201,168,76,0) 48%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 64%, #0a141f 100%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 64px);
  -webkit-mask-image: linear-gradient(105deg, transparent 0%, #000 55%);
  mask-image: linear-gradient(105deg, transparent 0%, #000 55%);
  opacity: 0.7;
}
.page-hero .container { position: relative; }
.page-hero-inner { max-width: 56ch; }

/* Interior hero with full-bleed background photo (matches landing hero) */
.page-hero--photo {
  min-height: 64vh;
  display: flex;
  align-items: center;
  padding-block: clamp(9rem, 17vh, 12.5rem) clamp(3.5rem, 7vw, 6rem);
}
.page-hero--photo::before,
.page-hero--photo::after { display: none; }
.page-hero--photo .hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--navy-900); overflow: hidden; }
.page-hero--photo .hero-bg > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
/* image-slot used as a full-bleed background layer */
.page-hero--photo .hero-bg > image-slot {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  display: block;
}
/* Neutralize the landing hero's --hero-ov-dependent shade; our shade div owns the overlay */
.page-hero--photo .hero-bg::before,
.page-hero--photo .hero-bg::after { display: none; }
/* Legibility overlay — a real element so it renders everywhere (directional, keeps left text crisp) */
.page-hero--photo .hero-shade {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(15,29,43,0.90) 0%, rgba(15,29,43,0.74) 38%, rgba(15,29,43,0.46) 72%, rgba(15,29,43,0.34) 100%),
    linear-gradient(to top, rgba(15,29,43,0.78) 0%, rgba(15,29,43,0.12) 55%);
}
.page-hero--photo .container { position: relative; z-index: 2; width: 100%; }
.page-hero--photo h1,
.page-hero--photo .page-hero-sub { text-shadow: 0 1px 24px rgba(15,29,43,0.45); }
.hero-crumbs {
  display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap;
  font-size: 0.82rem; color: rgba(248,245,239,0.55);
  margin-bottom: 1.4rem;
}
.hero-crumbs a { color: rgba(248,245,239,0.7); transition: color 0.2s; }
.hero-crumbs a:hover { color: var(--gold); }
.hero-crumbs .sep { color: rgba(248,245,239,0.32); }
.hero-crumbs strong { color: var(--gold); font-weight: 600; }
.page-hero .eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.page-hero h1 {
  font-family: var(--headline-font);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  line-height: 1.03;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
  text-wrap: balance;
}
html[data-headline="sans"] .page-hero h1 { font-weight: 700; letter-spacing: -0.035em; }
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 400;
}
html[data-headline="sans"] .page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero-sub {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.62;
  color: rgba(248,245,239,0.78);
  max-width: 52ch;
  margin: 1.6rem 0 0;
}
.page-hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center;
  margin-top: 2.2rem;
}
.page-hero .btn--primary { background: var(--gold); color: var(--navy); box-shadow: 0 14px 34px -16px rgba(201,168,76,0.6); }
.page-hero .btn--primary:hover { background: var(--gold-700); }
.page-hero .btn--ghost { color: var(--cream); border-color: rgba(248,245,239,0.36); }
.page-hero .btn--ghost:hover { border-color: var(--cream); background: rgba(255,255,255,0.07); }
.page-hero-call { font-size: 1rem; color: rgba(248,245,239,0.66); }
.page-hero-call a { font-weight: 700; color: var(--cream); border-bottom: 2px solid var(--gold); padding-bottom: 1px; }
.page-hero-call a:hover { color: var(--gold); }

/* Service hero with figure (image at right) */
.page-hero--figure .page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.page-hero--figure .page-hero-inner { max-width: none; }
.page-hero-figure {
  margin: 0;
  border-radius: var(--radius-img);
  overflow: hidden;
  box-shadow: 0 36px 70px -30px rgba(0,0,0,0.7);
  aspect-ratio: 4/4.4;
  background: var(--navy-600);
}
.page-hero-figure img,
.page-hero-figure image-slot { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.page-hero-badge .glyph {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  border: 1px solid rgba(201,168,76,0.55);
  border-radius: 12px;
  background: rgba(201,168,76,0.10);
}
.page-hero-badge .glyph svg { width: 22px; height: 22px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.page-hero-badge .lbl { font-family: var(--sans); font-weight: 600; font-size: 1rem; color: var(--cream); line-height: 1.2; }
.page-hero-badge .lbl small { display: block; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }
@media (max-width: 860px) {
  .page-hero--figure .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-figure { aspect-ratio: 16/10; max-height: 320px; }
}

/* ─────────── BREADCRUMBS ─────────── */
.crumbs {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.crumbs-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.85rem var(--gutter);
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; color: rgba(248,245,239,0.55);
  flex-wrap: wrap;
}
.crumbs-inner a { color: rgba(248,245,239,0.7); transition: color 0.2s; }
.crumbs-inner a:hover { color: var(--gold); }
.crumbs-inner .sep { color: rgba(248,245,239,0.3); }
.crumbs-inner strong { color: var(--gold); font-weight: 600; }

/* ─────────── ANIMATED STAT LINE ─────────── */
.statline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--light);
  overflow: hidden;
}
.band-navy .statline { background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.12); }
.statline-item { padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem); text-align: center; }
.statline-item + .statline-item { border-left: 1px solid var(--border); }
.band-navy .statline-item + .statline-item { border-left-color: rgba(255,255,255,0.12); }
.statline-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 4.4vw, 3.4rem);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; justify-content: center; gap: 0.05em;
}
.band-navy .statline-num { color: var(--gold); }
.statline-num .suf, .statline-num .pre { color: var(--gold); font-style: italic; font-size: 0.6em; }
.band-navy .statline-num .suf, .band-navy .statline-num .pre { color: var(--gold-300); }
.statline-lbl {
  margin-top: 0.7rem;
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0; text-transform: none;
  color: var(--warm-gray);
}
.band-navy .statline-lbl { color: rgba(248,245,239,0.62); }
@media (max-width: 720px) {
  .statline { grid-template-columns: repeat(2, 1fr); }
  .statline-item:nth-child(3) { border-left: 0; }
  .statline-item:nth-child(3), .statline-item:nth-child(4) { border-top: 1px solid var(--border); }
  .band-navy .statline-item:nth-child(3), .band-navy .statline-item:nth-child(4) { border-top-color: rgba(255,255,255,0.12); }
}

/* ─────────── ALTERNATING SPLIT FEATURE (AmeritFleet signature) ─────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split + .split { margin-top: clamp(3.5rem, 7vw, 6rem); }
.split--flip .split-media { order: 2; }
.split-media {
  border-radius: var(--radius-img);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream-deep);
  box-shadow: 0 30px 60px -34px rgba(26,46,68,0.5);
}
.split-media img, .split-media image-slot { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-body .eyebrow { margin-bottom: 1.1rem; }
.split-body h2 {
  font-family: var(--headline-font);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.1vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 1.1rem;
  text-wrap: balance;
}
.band-navy .split-body h2 { color: var(--cream); }
html[data-headline="sans"] .split-body h2 { font-weight: 700; }
.split-body h2 em { font-style: italic; color: var(--gold-700); font-weight: 400; }
.band-navy .split-body h2 em { color: var(--gold); }
.split-body p { margin: 0 0 1.05rem; font-size: 1.04rem; line-height: 1.72; color: var(--warm-gray); }
.band-navy .split-body p { color: rgba(248,245,239,0.74); }
.split-body p strong { color: var(--navy); font-weight: 600; }
.band-navy .split-body p strong { color: var(--cream); }
.split-list { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.split-list li { position: relative; padding-left: 1.9rem; font-size: 1rem; color: var(--navy); line-height: 1.5; }
.band-navy .split-list li { color: var(--cream); }
.split-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.45em;
  width: 18px; height: 9px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.split-cta { margin-top: 1.8rem; }
@media (max-width: 800px) {
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--flip .split-media { order: 0; }
}

/* ─────────── SERVICE OVERVIEW + ASIDE ─────────── */
.overview {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.overview-text h2 {
  font-family: var(--headline-font);
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 1.3rem;
  text-wrap: balance;
}
html[data-headline="sans"] .overview-text h2 { font-weight: 700; }
.overview-text p { margin: 0 0 1.15rem; font-size: 1.06rem; line-height: 1.78; color: var(--warm-gray); }
.overview-text p strong { color: var(--navy); font-weight: 600; }
.aside {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.9rem 1.85rem 1.75rem;
  position: sticky; top: 92px;
}
.band-cream .aside, .band-light .aside { background: var(--cream); }
.band-light .aside { background: var(--cream-deep); }
.aside h3 {
  font-family: var(--sans);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-700); margin: 0 0 1.1rem;
}
.aside-list { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0; }
.aside-list li {
  position: relative; padding: 0.7rem 0 0.7rem 1.7rem;
  font-size: 0.97rem; color: var(--navy); line-height: 1.45;
  border-top: 1px solid var(--border);
}
.aside-list li:first-child { border-top: 0; }
.aside-list li::before {
  content: '';
  position: absolute; left: 0; top: 1.05em;
  width: 14px; height: 7px;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.aside-foot .btn { width: 100%; justify-content: center; }
.aside-foot .ph { margin-top: 0.85rem; text-align: center; font-size: 0.9rem; color: var(--warm-gray); }
.aside-foot .ph a { font-weight: 700; color: var(--navy); border-bottom: 2px solid var(--gold); }
@media (max-width: 860px) {
  .overview { grid-template-columns: 1fr; }
  .aside { position: static; }
}

/* ─────────── INCLUDES GRID ─────────── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.include-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.85rem 1.75rem 1.9rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.band-light .include-card { background: var(--cream); }
.include-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 24px 46px -28px rgba(26,46,68,0.4); }
.include-num {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.7rem; color: var(--gold); line-height: 1; margin-bottom: 0.9rem;
}
.include-card h3 { font-family: var(--headline-font); font-weight: 500; font-size: 1.22rem; color: var(--navy); margin: 0 0 0.55rem; letter-spacing: -0.01em; }
html[data-headline="sans"] .include-card h3 { font-weight: 700; }
.include-card p { margin: 0; font-size: 0.96rem; line-height: 1.62; color: var(--warm-gray); }
@media (max-width: 880px) { .includes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .includes-grid { grid-template-columns: 1fr; } }

/* ─────────── VALUES (about) ─────────── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 1.95rem 1.6rem;
}
.band-cream .value-card { background: var(--light); }
.value-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; margin-bottom: 1.1rem; }
.value-icon svg { width: 19px; height: 19px; stroke: var(--gold-700); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { font-family: var(--headline-font); font-weight: 500; font-size: 1.18rem; color: var(--navy); margin: 0 0 0.5rem; }
html[data-headline="sans"] .value-card h3 { font-weight: 700; }
.value-card p { margin: 0; font-size: 0.93rem; line-height: 1.6; color: var(--warm-gray); }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .values-grid { grid-template-columns: 1fr; } }

/* ─────────── VALUES — FEATURE (2-col + hand-drawn star) ─────────── */
.values-feature { position: relative; overflow: hidden; }
.vfeature-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.25rem, 5vw, 5rem);
  align-items: center;
}
.vfeature-text { max-width: 40rem; }
.vfeature-text .eyebrow { margin-bottom: 1.1rem; }
.vfeature-text .h-section { margin: 0 0 1.1rem; }
.vfeature-text .lead { margin: 0 0 1.5rem; max-width: 38ch; }
.vfeature-lead-2 {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-700); margin: 0 0 1.4rem;
}
.offer-list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1.5rem; }
.offer-item { display: grid; grid-template-columns: auto 1fr; gap: 1.15rem; align-items: start; }
.offer-ico {
  width: 46px; height: 46px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: var(--radius-sm, 10px);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
}
.offer-ico svg { width: 22px; height: 22px; stroke: var(--gold-700); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.offer-item h3 { font-family: var(--headline-font); font-weight: 500; font-size: 1.14rem; color: var(--navy); margin: 0.1rem 0 0.35rem; }
html[data-headline="sans"] .offer-item h3 { font-weight: 700; }
.offer-item p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: var(--warm-gray); }
.vfeature-media {
  position: relative;
  border-radius: var(--radius-img);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--navy-600);
  box-shadow: 0 40px 80px -40px rgba(15,29,43,0.5);
}
.vfeature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Hand-drawn star scribble, top-right corner (AmeritFleet motif) */
.hand-star {
  position: absolute;
  top: clamp(0.5rem, 2vw, 1.75rem);
  right: clamp(0.75rem, 3vw, 3rem);
  width: clamp(72px, 9vw, 132px);
  height: auto;
  z-index: 3;
  overflow: visible;
  pointer-events: none;
}
.hand-star path {
  fill: none;
  stroke: var(--navy-700, #25415c);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--len, 620);
  stroke-dashoffset: var(--len, 620);
}
.is-in .hand-star path,
.hand-star.in path { animation: starDraw 1.15s cubic-bezier(0.65,0,0.35,1) 0.25s forwards; }
@keyframes starDraw { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) { .hand-star path { stroke-dashoffset: 0; animation: none; } }
@media (max-width: 860px) {
  .vfeature-grid { grid-template-columns: 1fr; }
  .vfeature-media { aspect-ratio: 16 / 11; max-height: 380px; order: -1; }
}

/* ─────────── APPROACH LIST (about) ─────────── */
.approach-list { display: flex; flex-direction: column; gap: 0; max-width: 880px; }
.approach-item {
  display: grid; grid-template-columns: 90px 1fr; gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--border);
}
.approach-item:first-child { border-top: 0; padding-top: 0; }
.approach-num { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--gold); line-height: 1; }
.approach-item h3 { font-family: var(--headline-font); font-weight: 500; font-size: clamp(1.25rem, 2.2vw, 1.55rem); color: var(--navy); margin: 0 0 0.6rem; line-height: 1.22; letter-spacing: -0.01em; }
html[data-headline="sans"] .approach-item h3 { font-weight: 700; }
.approach-item p { margin: 0; font-size: 1.04rem; line-height: 1.74; color: var(--warm-gray); }
@media (max-width: 600px) { .approach-item { grid-template-columns: 1fr; gap: 0.5rem; } }

/* ─────────── BIO (about) ─────────── */
.bio { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.bio-media { position: relative; }
.bio-media img { width: 100%; aspect-ratio: 3/3.7; object-fit: cover; object-position: center 12%; border-radius: var(--radius-img); }
.bio-media::before { content: ''; position: absolute; top: -14px; left: -14px; width: 72px; height: 72px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); border-top-left-radius: 6px; }
.bio-media::after  { content: ''; position: absolute; bottom: -14px; right: -14px; width: 72px; height: 72px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); border-bottom-right-radius: 6px; }
.bio-text h2 { font-family: var(--headline-font); font-weight: 500; font-size: clamp(1.8rem, 3.2vw, 2.5rem); color: var(--navy); margin: 0 0 1.4rem; letter-spacing: -0.015em; line-height: 1.1; }
html[data-headline="sans"] .bio-text h2 { font-weight: 700; }
.bio-text p { font-size: 1.07rem; line-height: 1.82; color: var(--warm-gray); margin: 0 0 1.15rem; }
.bio-text p strong { color: var(--navy); font-weight: 600; }
.bio-sign { margin-top: 1.9rem; padding-top: 1.6rem; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 1.1rem; }
.bio-sign .mark { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--gold-700); line-height: 1; }
.bio-sign .who { font-size: 0.82rem; letter-spacing: 0.06em; color: var(--warm-gray); line-height: 1.5; }
.bio-sign .who strong { display: block; color: var(--navy); font-weight: 700; letter-spacing: 0; font-size: 0.95rem; font-family: var(--serif); }
@media (max-width: 860px) { .bio { grid-template-columns: 1fr; } .bio-media { max-width: 340px; margin: 0 auto 1rem; } }

/* ─────────── RELATED SERVICES ─────────── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.related-card {
  display: flex; flex-direction: column;
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 1.75rem 1.7rem 1.6rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.band-light .related-card { background: var(--cream); }
.related-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 24px 46px -28px rgba(26,46,68,0.4); }
.related-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--border-strong); border-radius: 11px; margin-bottom: 1rem; }
.related-icon svg { width: 20px; height: 20px; stroke: var(--gold-700); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.related-card h3 { font-family: var(--headline-font); font-weight: 500; font-size: 1.18rem; color: var(--navy); margin: 0 0 0.4rem; }
html[data-headline="sans"] .related-card h3 { font-weight: 700; }
.related-card p { margin: 0 0 1.1rem; font-size: 0.93rem; line-height: 1.55; color: var(--warm-gray); }
.related-arrow { margin-top: auto; display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.92rem; color: var(--gold-800); }
.related-card:hover .related-arrow { gap: 0.7rem; }
@media (max-width: 880px) { .related-grid { grid-template-columns: 1fr; } }

/* ─────────── MID CTA ─────────── */
.midcta {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
  background: var(--navy); color: var(--cream);
  border-radius: var(--radius-card);
  padding: clamp(1.85rem, 4vw, 2.75rem) clamp(1.85rem, 4vw, 3rem);
}
.midcta h3 { font-family: var(--headline-font); font-weight: 500; font-size: clamp(1.35rem, 2.4vw, 1.85rem); color: var(--cream); margin: 0 0 0.5rem; letter-spacing: -0.01em; }
html[data-headline="sans"] .midcta h3 { font-weight: 700; }
.midcta p { margin: 0; font-size: 1rem; color: rgba(248,245,239,0.74); max-width: 52ch; }
.midcta .btn--gold { flex-shrink: 0; }

/* ─────────── SERVICE MENU GRID (services overview) ─────────── */
.menu-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.menu-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column;
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 2.1rem 2.1rem 1.85rem;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
/* Gold accent that wipes across the top edge on hover */
.menu-card::before {
  content: ''; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-300));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--ease);
  z-index: 2;
}
/* Editorial ghost index numeral — a design element, not a label */
.menu-num {
  position: absolute; top: 0.5rem; right: 1.3rem; z-index: 0;
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: 4.6rem; line-height: 1; letter-spacing: -0.03em;
  color: var(--cream-deep); pointer-events: none; user-select: none;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
}
.menu-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 30px 56px -28px rgba(26,46,68,0.45); }
.menu-card:hover::before { transform: scaleX(1); }
.menu-card:hover .menu-num { color: var(--gold-300); transform: translateY(-3px) scale(1.04); }
/* Keep content above the ghost numeral */
.menu-card-head, .menu-card h3, .menu-card > p, .menu-tags, .menu-more { position: relative; z-index: 1; }
.menu-card-head { display: flex; align-items: center; margin-bottom: 1.1rem; }
.menu-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border: 1px solid var(--gold); border-radius: 14px; background: rgba(201,168,76,0.10);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.menu-icon svg { width: 23px; height: 23px; stroke: var(--gold-700); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.35s var(--ease); }
.menu-card:hover .menu-icon { background: var(--navy); border-color: var(--navy); box-shadow: 0 12px 22px -12px rgba(26,46,68,0.55); }
.menu-card:hover .menu-icon svg { stroke: var(--gold-300); }
.menu-card h3 { font-family: var(--headline-font); font-weight: 500; font-size: 1.4rem; color: var(--navy); margin: 0 0 0.55rem; letter-spacing: -0.01em; }
html[data-headline="sans"] .menu-card h3 { font-weight: 700; }
.menu-card > p { margin: 0; font-size: 0.97rem; line-height: 1.6; color: var(--warm-gray); }
.menu-card > p strong { color: var(--navy); font-weight: 600; }
.menu-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.2rem 0 1.35rem; }
.menu-tags span { font-size: 0.76rem; font-weight: 500; color: var(--navy-500); background: var(--cream-deep); border: 1px solid var(--border); padding: 0.28rem 0.65rem; border-radius: 999px; transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease); }
.menu-card:hover .menu-tags span { border-color: var(--gold-300); color: var(--navy); }
/* "View details" gains a quiet gold underline + arrow slide on hover */
.menu-more {
  margin-top: auto; padding-top: 0.15rem;
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-weight: 600; font-size: 0.92rem; color: var(--gold-800);
  align-self: flex-start;
  box-shadow: inset 0 -1px 0 transparent;
  transition: box-shadow 0.3s var(--ease), gap 0.3s var(--ease);
}
.menu-more svg { transition: transform 0.3s var(--ease); }
.menu-card:hover .menu-more { gap: 0.7rem; box-shadow: inset 0 -1px 0 var(--gold); }
.menu-card:hover .menu-more svg { transform: translateX(2px); }
@media (max-width: 720px) { .menu-grid { grid-template-columns: 1fr; } .menu-num { font-size: 4rem; } }

/* ─────────── FAQ ACCORDION ─────────── */
.faq-narrow { max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--border-strong); }
.faq-item:last-child { border-bottom: 1px solid var(--border-strong); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0; text-align: left;
  font-family: var(--headline-font); font-weight: 500; font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  color: var(--navy); letter-spacing: -0.01em; line-height: 1.35;
}
.band-navy .faq-q { color: var(--cream); }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--gold); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq-icon::before { top: 50%; left: 3px; right: 3px; height: 2px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 3px; bottom: 3px; width: 2px; transform: translateX(-50%); }
.faq-q.open .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 0 1.5rem; font-size: 1rem; line-height: 1.72; color: var(--warm-gray); max-width: 64ch; }
.band-navy .faq-a-inner { color: rgba(248,245,239,0.72); }

/* ─────────── CONTACT FORM ─────────── */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.form-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-card); padding: clamp(1.9rem, 3.5vw, 2.6rem); }
.form-card h2 { font-family: var(--headline-font); font-weight: 500; font-size: 1.6rem; color: var(--navy); margin: 0 0 0.45rem; letter-spacing: -0.01em; }
html[data-headline="sans"] .form-card h2 { font-weight: 700; }
.form-sub { font-size: 0.96rem; color: var(--warm-gray); line-height: 1.6; margin: 0 0 1.75rem; }
.field { margin-bottom: 1.15rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; color: var(--navy); margin-bottom: 0.45rem; }
.field label .opt { font-weight: 400; color: var(--warm-gray-2); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--navy);
  background: var(--cream); border: 1.5px solid var(--border-strong); border-radius: var(--radius-btn);
  padding: 0.85rem 0.95rem; transition: border-color 0.2s, box-shadow 0.2s;
}
.field textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: var(--warm-gray-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.18); background: var(--light); }
.submit-btn { width: 100%; justify-content: center; background: var(--gold); color: var(--navy); border: 0; cursor: pointer; font-family: var(--sans); font-weight: 700; font-size: 1rem; padding: 1.05rem; border-radius: var(--radius-btn); transition: background 0.2s, transform 0.2s; }
.submit-btn:hover { background: var(--gold-700); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-note { margin-top: 1rem; text-align: center; font-size: 0.84rem; color: var(--warm-gray); font-style: italic; }
.success-msg { display: none; text-align: center; padding: 2.5rem 1rem; }
.success-msg .check { width: 64px; height: 64px; margin: 0 auto 1.3rem; background: var(--gold); color: var(--navy); border-radius: 50%; display: grid; place-items: center; font-size: 2rem; }
.success-msg h3 { font-family: var(--headline-font); font-weight: 500; font-size: 1.5rem; color: var(--navy); margin: 0 0 0.8rem; }
.success-msg p { font-size: 0.98rem; color: var(--warm-gray); line-height: 1.7; }

.sidebar { display: flex; flex-direction: column; gap: 1rem; }
.side-card { background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 1.75rem 1.65rem; }
.side-card.dark { background: var(--navy); border-color: rgba(255,255,255,0.1); }
.side-card h3 { font-family: var(--headline-font); font-weight: 500; font-size: 1.15rem; color: var(--navy); margin: 0 0 1rem; display: flex; align-items: center; gap: 0.55rem; }
.side-card.dark h3 { color: var(--gold); }
.side-card h3 svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-row { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0; border-top: 1px solid var(--border); font-size: 0.96rem; }
.contact-row:first-of-type { border-top: 0; }
.contact-row svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.contact-row a { color: var(--navy); font-weight: 600; }
.contact-row a:hover { color: var(--gold-800); }
.side-card p { margin: 0; font-size: 0.92rem; line-height: 1.7; color: var(--warm-gray); }
.side-card.dark p { color: rgba(248,245,239,0.66); }
.expect { list-style: none; margin: 0; padding: 0; }
.expect li { display: flex; gap: 0.85rem; align-items: flex-start; padding: 0.7rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; line-height: 1.55; color: rgba(248,245,239,0.72); }
.expect li:first-child { border-top: 0; padding-top: 0; }
.expect .n { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.05rem; flex-shrink: 0; min-width: 1.2rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ─────────── SERVICE AREA — COUNTIES ─────────── */
.counties { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.county {
  background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 1.85rem 1.75rem 1.9rem;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.band-cream .county { background: var(--light); }
.county:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 24px 46px -28px rgba(26,46,68,0.4); }
.county-head { display: flex; align-items: baseline; justify-content: space-between; gap: 0.5rem; }
.county-name { font-family: var(--headline-font); font-weight: 500; font-size: 1.5rem; color: var(--navy); letter-spacing: -0.01em; }
html[data-headline="sans"] .county-name { font-weight: 700; }
.county-count { font-size: 0.78rem; color: var(--warm-gray); font-weight: 500; }
.county-tag { display: inline-block; margin: 0.7rem 0 0.85rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-800); background: var(--gold-100); border: 1px solid var(--gold-300); padding: 0.25rem 0.6rem; border-radius: 999px; }
.county-blurb { margin: 0 0 1.1rem; font-size: 0.93rem; line-height: 1.6; color: var(--warm-gray); }
.county ul { list-style: none; margin: 0; padding: 1.1rem 0 0; border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
.county ul li { position: relative; padding-left: 0.9rem; font-size: 0.9rem; color: var(--navy); }
.county ul li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
@media (max-width: 880px) { .counties { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .counties { grid-template-columns: 1fr; } }

/* ─────────── CITY LINKS ─────────── */
.city-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.city-link {
  display: block; background: var(--light); border: 1px solid var(--border); border-radius: var(--radius-card);
  padding: 1.85rem 1.8rem; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.city-link:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 24px 46px -28px rgba(26,46,68,0.4); }
.city-eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-700); margin-bottom: 0.6rem; }
.city-link h3 { font-family: var(--headline-font); font-weight: 500; font-size: 1.45rem; color: var(--navy); margin: 0 0 0.55rem; letter-spacing: -0.01em; }
html[data-headline="sans"] .city-link h3 { font-weight: 700; }
.city-link p { margin: 0; font-size: 0.93rem; line-height: 1.6; color: var(--warm-gray); }
@media (max-width: 880px) { .city-links { grid-template-columns: 1fr; } }

/* ─────────── PRICING NOTE ─────────── */
.pricing-note {
  max-width: 860px; margin: 0 auto; text-align: center;
  border: 1px dashed var(--border-strong); border-radius: var(--radius-card);
  padding: clamp(2rem, 4vw, 2.75rem);
  background: rgba(255,255,255,0.4);
}
.pricing-note h4 { font-family: var(--headline-font); font-weight: 500; font-size: 1.4rem; color: var(--navy); margin: 0 0 0.75rem; }
.pricing-note p { margin: 0; font-size: 1.02rem; line-height: 1.7; color: var(--warm-gray); max-width: 60ch; margin-inline: auto; }
.pricing-note p strong { color: var(--navy); font-weight: 600; }

/* ─────────── PROSE (privacy policy, long-form text) ─────────── */
.prose {
  max-width: 72ch; margin: 0 auto;
  font-size: 1rem; line-height: 1.75; color: var(--warm-gray);
}
.prose h2 {
  font-family: var(--headline-font); font-weight: 500; font-size: 1.45rem;
  color: var(--navy); margin: 2.5rem 0 0.6rem; letter-spacing: -0.01em;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--headline-font); font-weight: 500; font-size: 1.1rem;
  color: var(--navy); margin: 1.75rem 0 0.4rem;
}
.prose p { margin: 0 0 1rem; }
.prose ul { margin: 0 0 1rem; padding-left: 1.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold-700); }
.prose strong { color: var(--navy); font-weight: 600; }

/* ─────────── NARROW CENTERED HEADER ─────────── */
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

/* ─────────── CONTACT CALLOUT BTN (outline on cream) ─────────── */
.btn--outline { background: transparent; color: var(--navy); border-color: var(--border-strong); }
.btn--outline:hover { border-color: var(--navy); background: rgba(26,46,68,0.03); }

/* ─────────── CHECKLIST PHASE TAG ─────────── */
.chk-phase {
  display: inline-block; margin-bottom: 0.5rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-800); background: var(--gold-100); border: 1px solid var(--gold-300);
  padding: 0.22rem 0.6rem; border-radius: 999px;
}
.band-cream .chk-phase { background: var(--light); }

/* ─────────── CHECKLIST DOWNLOAD CTA ─────────── */
.guide-download {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap;
  background: var(--light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-card);
  padding: clamp(1.85rem, 4vw, 2.75rem) clamp(1.85rem, 4vw, 3rem);
  box-shadow: 0 24px 50px -34px rgba(26,46,68,0.35);
}
.guide-download-text { flex: 1 1 340px; }
.guide-download-text .eyebrow { margin-bottom: 0.6rem; }
.guide-download-text h3 {
  font-family: var(--headline-font); font-weight: 500;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem); color: var(--navy);
  margin: 0 0 0.55rem; letter-spacing: -0.01em;
}
html[data-headline="sans"] .guide-download-text h3 { font-weight: 700; }
.guide-download-text p { margin: 0; font-size: 1rem; line-height: 1.65; color: var(--warm-gray); max-width: 56ch; }
.guide-download-actions {
  flex: none; display: flex; flex-direction: column; align-items: flex-start; gap: 0.7rem;
}
.guide-download-actions .guide-note {
  font-size: 0.82rem; letter-spacing: 0.02em; color: var(--warm-gray-2);
}
@media (max-width: 640px) {
  .guide-download-actions { align-items: stretch; width: 100%; }
  .guide-download-actions .btn { justify-content: center; }
}

