/* =========================================================================
   YAI SERVICES — DESIGN SYSTEM  (reskin of donor shell "Commercial Authority")
   =========================================================================
   Shared stylesheet for the whole site. Subpages (services/cities/blog) are
   generated onto this same shell — keep class names semantic & stable.

   Palette: warm cream ground + hot-pink accent (see DESIGN-SPEC.md §2).
   Legacy donor variable NAMES are kept and aliased to the new system so
   every existing rule inherits it automatically — see the alias block
   inside :root below.

   TOKENS ..................... :root custom properties (color/type/space)
   RESET / BASE ................ box-sizing, body, headings, links, img
   LAYOUT UTILITIES ............ .wrap, .grid-*, .flex-*, spacing utils
   BUTTONS ..................... .btn, .btn-primary/outline/ghost/teal
   TOPBAR + HEADER ............. .topbar, .site-header, .main-nav, dropdowns
   HERO ........................ .hero (home, cream+photo card) + .page-hero (subpages)
   HERO MEDIA / CHIP / FLOURISH  .hero-media, .hero-chip, .hero-flourish
   LEAD CARD / FORM ............ .lead-card, .lead-form, Turnstile, states
   TRUST STRIP .................. .trust-strip
   SECTION SCAFFOLD ............ .section, .section-head, .eyebrow, .section-title
   CARDS / GRIDS ................ .services-grid, .service-card, .icon-tile
   COMMERCIAL FEATURE BAND ..... .feature-band (dark, video/photo split)
   GALLERY ...................... .gallery-grid
   REVIEWS ...................... .reviews-strip, .review-card (honesty-gate: unused, kept dormant)
   SERVICE AREA ................. .area-section, .area-grid, .map-frame
   FINANCING STRIP .............. .financing-strip (unused, kept dormant)
   FAQ ........................... .faq-list (native details/summary)
   CTA BAND ...................... .cta-band — the one ink dark band per page
   FOOTER ........................ .site-footer — ink chrome
   BLOG ARTICLE TYPOGRAPHY ....... .article, .article-body
   UTILITIES ..................... .visually-hidden, .disclosure, misc
   ========================================================================= */

:root{
  /* ---- Yai Services spec tokens (DESIGN-SPEC.md §2), added verbatim ---- */
  --cream-50:  #FFFDF9;   /* nav surface, card surface, lightest tint */
  --cream-100: #FBF3EA;   /* default page background */
  --cream-200: #F5E9DA;   /* alternate section band */
  --cream-300: #ECDCC8;   /* deepest cream surface — callouts, stat-chip fill */

  --ink:       #241B22;   /* headings, primary body text */
  --ink-soft:  #6B5A62;   /* secondary text, captions, meta */

  --pink:       #F339ED;  /* brand exact. Decorative/logo/icon (≤24px) only — never text. */
  --pink-deep:  #AD0AA8;  /* text-safe variant. Carries ALL pink text, links, button fills. */
  --pink-deep-hover: #91048C; /* pink-deep darkened ~8% for hover states */
  --pink-tint:  #F9E7F8;  /* light accent background for badges/chips/status */

  --line:      #E7D9CC;   /* default border on cream-100/cream-50 */
  --line-soft: #F0E4D6;   /* subtle divider on cream-50 */

  --shadow-sm: 0 1px 2px rgba(36,27,34,.06), 0 3px 8px rgba(36,27,34,.08);
  --shadow-md: 0 4px 10px rgba(36,27,34,.08), 0 14px 28px rgba(36,27,34,.12);
  --shadow-lg: 0 10px 20px rgba(36,27,34,.10), 0 28px 56px rgba(36,27,34,.16);
  --shadow-pink: 0 10px 24px rgba(173,10,168,.28); /* primary-button hover ONLY */

  /* Closed radius scale (replaces the ad-hoc soup) */
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --radius-pill:   999px;
  --radius-circle: 50%;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Figtree', -apple-system, 'Segoe UI', sans-serif;

  /* ---- Legacy donor names, aliased so every existing rule below inherits
     the system above without being renamed (nothing here may be removed —
     four concurrent copy agents are writing markup against these names). ---- */
  --navy: var(--ink);          /* dark section backgrounds — .hero/.page-hero override this explicitly, see below */
  --navy-2: #241B22;           /* deepened-ink hover shade for dark contexts (was navy blue) */
  --navy-3: #150F13;           /* deepest ink shade (was near-black navy) */
  --charcoal: var(--ink);      /* heading color + dark chrome bg */
  --red: var(--pink-deep);     /* primary clickable accent (buttons/links/icons) */
  --red-dark: var(--pink-deep-hover); /* hover state for the above */
  --red-bright: var(--pink);   /* decorative only — icon strokes/dots/borders, never text (audited below) */
  --teal: var(--pink-deep);    /* secondary accent collapsed into pink-deep (locked palette has one accent) */
  --teal-dark: var(--pink-deep-hover);
  --gold: var(--pink);         /* icon strokes / focus outline / borders only, never text color */

  /* neutrals */
  --white: #ffffff;
  --paper: var(--cream-200);   /* NOTE: body background below reads --cream-100 directly, not this var */
  --paper-2: var(--cream-200);
  --muted: var(--ink-soft);
  --muted-on-dark: #C2BEBD;    /* warm light neutral — 9.08:1 on ink, never cool gray-blue */
  --line-on-dark: rgba(255,253,249,0.14); /* warm cream-50-tinted hairline for ink backgrounds */

  --header-h: 72px;
}

/* ---------- RESET / BASE ---------- */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream-100); /* explicit — do not route through --paper (aliased to cream-200) */
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
a{ color:var(--pink-deep); text-decoration:none; }
p a, .article-body a, li a.text-link{ text-decoration:underline; text-underline-offset:2px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible{
  outline:3px solid rgba(36,27,34,0.4); outline-offset:2px;
}
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--ink); margin:0 0 .5em; line-height:1.15; font-weight:600; }
h1{ font-size:clamp(2.75rem, 2.3rem + 2vw, 3.5rem); line-height:1.08; letter-spacing:-0.01em; }
h2{ font-size:clamp(1.7rem,3vw,2rem); line-height:1.15; letter-spacing:-0.005em; }
h3{ font-size:1.5rem; font-weight:600; }
main{ display:block; }
ul{ margin:0; padding:0; list-style:none; }
.visually-hidden{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ---------- LAYOUT ---------- */
.wrap{ width:100%; max-width:1240px; margin:0 auto; padding:0 24px; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:2.5rem; align-items:stretch; }
@media (max-width:860px){ .grid-2{ grid-template-columns:1fr; } }

/* ---------- BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:.9rem 1.6rem; border-radius:var(--radius-lg); font-weight:600; font-size:.98rem;
  border:2px solid transparent; transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration:none; white-space:nowrap;
}
.btn-primary{ background:var(--red); color:var(--white); border-color:var(--red); box-shadow:var(--shadow-sm); }
.btn-primary:hover{ background:var(--red-dark); border-color:var(--red-dark); transform:translateY(-1px); box-shadow:var(--shadow-pink); }
.btn-teal{ background:var(--teal); color:var(--white); border-color:var(--teal); }
.btn-teal:hover{ background:var(--teal-dark); border-color:var(--teal-dark); transform:translateY(-1px); }
/* Default = secondary-button spec (light background: ink border/text). Most
   .btn-outline usage sits on the now-light hero/page-hero, so this is the
   base case; the one ink band (.cta-band) gets the light-on-dark override
   further down instead of duplicating this class. */
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline:hover{ background:var(--cream-200); }
.btn-outline-dark{ background:transparent; color:var(--charcoal); border-color:var(--charcoal); }
.btn-outline-dark:hover{ background:var(--charcoal); color:var(--white); }
.btn-block{ width:100%; }
.btn-lg{ padding:1.05rem 2rem; font-size:1.05rem; }

/* ---------- TOPBAR ---------- */
.topbar{ background:var(--cream-200); color:var(--ink-soft); font-size:.85rem; border-bottom:1px solid var(--line); }
.topbar .wrap{ display:flex; align-items:center; justify-content:space-between; padding-top:.5rem; padding-bottom:.5rem; gap:1rem; flex-wrap:wrap; }
.topbar strong{ color:var(--ink); }
.topbar a{ color:var(--ink); font-weight:600; }
.topbar .lang-note{ opacity:.9; }

/* ---------- HEADER / NAV ---------- */
.site-header{
  position:sticky; top:0; z-index:200; background:var(--cream-50);
  border-bottom:1px solid var(--line); box-shadow:0 1px 0 rgba(36,27,34,0.04);
}
.nav-row{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; padding:.7rem 24px; min-height:var(--header-h); }
.brand{ display:flex; align-items:center; gap:.7rem; }
.brand img{ height:52px; width:auto; }
/* .brand-text: wraps .name + .tag so they stack under the logo mark
   (undefined in the donor CSS — added for the header markup as built). */
.brand-text{ display:flex; flex-direction:column; }
.brand .name{ display:block; font-family:var(--font-display); font-weight:600; font-size:1.15rem; color:var(--charcoal); }
.brand .tag{ display:block; font-size:.72rem; letter-spacing:.06em; text-transform:uppercase; color:var(--muted); }

.main-nav{ display:flex; align-items:center; gap:1.35rem; flex-wrap:nowrap; }
.main-nav > li{ position:relative; }
.main-nav a{ color:var(--charcoal); font-weight:600; font-size:.95rem; display:flex; align-items:center; gap:.3rem; padding:.5rem 0; white-space:nowrap; text-underline-offset:3px; text-decoration-thickness:2px; }
.main-nav a:hover, .main-nav a:focus-visible{ color:var(--red); text-decoration:underline; text-decoration-color:var(--pink-deep); }
.main-nav .caret{ font-size:.6rem; margin-top:2px; }

.dropdown{ position:absolute; top:100%; left:-1rem; min-width:240px; background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-md); box-shadow:var(--shadow-md); padding:.6rem; opacity:0; visibility:hidden; transform:translateY(6px); transition:opacity .15s ease, transform .15s ease, visibility .15s; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.open .dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.dropdown a{ display:block; padding:.55rem .7rem; border-radius:var(--radius-sm); font-weight:500; font-size:.92rem; }
.dropdown a:hover{ background:var(--cream-200); color:var(--red); }
.dropdown.areas-grid{ column-count:2; column-gap:.5rem; min-width:380px; }

.header-actions{ display:flex; align-items:center; gap:1rem; flex:none; }
.call-btn{ display:flex; align-items:center; gap:.5rem; font-weight:700; color:var(--charcoal); font-size:1rem; white-space:nowrap; flex:none; }
.call-btn svg{ width:19px; height:19px; stroke:var(--red); flex:none; }
.call-btn-text{ white-space:nowrap; }

.menu-toggle{ display:none; background:none; border:0; width:40px; height:34px; padding:0; flex-direction:column; justify-content:center; gap:6px; }
.menu-toggle span{ display:block; width:26px; height:2.5px; background:var(--charcoal); border-radius:2px; }

.mobile-nav{ display:none; background:var(--cream-50); border-top:1px solid var(--line); padding:1rem 24px 1.5rem; }
.mobile-nav a{ display:block; padding:.75rem 0; color:var(--charcoal); font-weight:600; border-bottom:1px solid var(--line); }
.mobile-nav .sub-label{ font-size:.72rem; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); padding-top:1rem; }

@media (max-width:1020px){
  .main-nav, .header-actions .call-btn-text{ display:none; }
  .menu-toggle{ display:flex; }
  .nav-row{ min-height:64px; }
  body.nav-open .mobile-nav{ display:block; }
}
@media (max-width:480px){
  .brand{ gap:.5rem; }
  .brand img{ height:38px; }
  .brand .tag{ display:none; }
  .brand .name{ font-size:.92rem; white-space:nowrap; }
  .nav-row{ padding:.6rem 16px; gap:.6rem; }
  .header-actions{ gap:.6rem; }
}

/* ---------- HERO (home) ----------
   Spec §2.5: light cream ground, contained rounded photo card (NOT
   full-bleed), floating non-numeric chip, faint brand-motif flourish behind
   the headline. The donor's dark video/scrim hero rules are kept defined
   (unused on any current page) below the contract rules, for compatibility. */
.hero{
  position:relative;
  background:var(--cream-100);
  color:var(--ink);
  overflow:hidden;
  padding:2.75rem 0 3rem;
}
.hero-inner{
  position:relative; z-index:1; width:100%;
  display:grid; grid-template-columns:1.1fr .9fr; gap:2.5rem 3rem; align-items:start;
}
.hero-copy{ position:relative; z-index:1; padding-top:.25rem; }
.hero-copy h1{ margin-bottom:1rem; }
.hero-sub{ font-size:1.125rem; line-height:1.6; color:var(--ink-soft); max-width:46ch; margin-bottom:1.6rem; }
.btn-row{ display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:.5rem; }

/* Decorative brand-motif watermark behind the headline — faint inline-SVG
   flourish echoing the logo's bird/flourish loop, pink-deep at low opacity.
   aria-hidden, empty element, never intercepts pointer events. */
.hero-flourish{
  position:absolute; z-index:0; pointer-events:none;
  top:-3rem; left:-4rem; width:26rem; height:26rem;
  opacity:.10;
  background-repeat:no-repeat; background-size:contain; background-position:center;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cg fill='none' stroke='%23AD0AA8' stroke-width='7' stroke-linecap='round'%3E%3Cpath d='M40 230 C 90 130, 180 65, 285 75 C 335 80, 365 115, 352 158 C 340 198, 288 205, 258 182'/%3E%3Ccircle cx='300' cy='118' r='15'/%3E%3Cpath d='M115 345 C 132 302, 185 280, 228 302 C 260 318, 258 350, 232 365 C 206 380, 172 368, 158 347'/%3E%3C/g%3E%3C/svg%3E");
}
@media (max-width:960px){
  .hero-inner{ grid-template-columns:1fr; gap:2rem; }
  .hero-flourish{ width:18rem; height:18rem; top:-2rem; left:-3rem; opacity:.09; }
}
@media (max-width:600px){
  /* Tightened rhythm so .lead-card's top edge lands within the first
     viewport height at 375px (checked against a 667px-tall device — the
     smallest common target). Every rule below only trims vertical gaps
     between hero-copy and the lead card; nothing here affects desktop. */
  .hero{ padding:1.25rem 0 2.25rem; }
  .hero-inner{ gap:1.1rem; }
  .hero-copy h1{ margin-bottom:.7rem; }
  .hero-sub{ margin-bottom:1.1rem; }
  .btn-row{ margin-bottom:0; gap:.7rem; }
  .topbar{ font-size:.76rem; }
  .topbar .wrap{ padding-top:.35rem; padding-bottom:.35rem; gap:.3rem; }
}

/* ---------- HERO MEDIA / CHIP (contained photo card, spec §2.5) ---------- */
.hero-media{
  position:relative; z-index:1;
  max-width:1240px; margin:2.5rem auto 0; padding:0 24px;
}
.hero-media img{
  width:100%; display:block; object-fit:cover;
  height:clamp(220px, 30vw, 440px);
  border-radius:var(--radius-xl);
  box-shadow:var(--shadow-lg);
}
.hero-chip{
  position:absolute; left:48px; bottom:-1.1rem; z-index:2;
  display:inline-flex; align-items:center; gap:.4rem;
  background:var(--cream-50); border:1px solid var(--line);
  box-shadow:var(--shadow-md); border-radius:var(--radius-pill);
  padding:.6rem 1.1rem; font-size:.85rem; font-weight:600; color:var(--ink);
}
@media (max-width:600px){
  .hero-media{ margin-top:1.75rem; padding:0 16px; }
  .hero-media img{ height:200px; }
  .hero-chip{ left:24px; bottom:-.9rem; font-size:.76rem; padding:.5rem .85rem; }
}

/* ---------- page-hero: light cream hero for subpages (services/cities/blog) ---------- */
.page-hero{ position:relative; background:var(--cream-200); color:var(--ink); padding:3.25rem 0 2.75rem; overflow:hidden; }
.page-hero .hero-media{ display:none; } /* the contained-photo pattern is home-only; kept dormant here */
.page-hero-inner{ position:relative; z-index:2; width:100%; }
.breadcrumb{ font-size:.85rem; color:var(--ink-soft); margin-bottom:.9rem; }
.breadcrumb a{ color:var(--pink-deep); text-decoration:underline; }
.page-hero h1{ color:var(--ink); max-width:34ch; }
.page-hero .direct-answer{ max-width:62ch; color:var(--ink-soft); font-size:1.05rem; margin-top:.6rem; }
.hero-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:2.5rem 3rem; align-items:start; }
@media (max-width:960px){ .hero-grid{ grid-template-columns:1fr; } }
/* .hero-actions: subpage (.page-hero) button row — same job as .btn-row on
   the home hero, kept as its own class since page-hero markup uses this name. */
.hero-actions{ display:flex; gap:1rem; flex-wrap:wrap; margin:0 0 .5rem; }

/* ---- Donor dark video/scrim hero rules — kept defined per Rule 1, unused
   on any current page (no markup references .hero-scrim/.hero-badge/
   .hero-points today). If ever reactivated, pointer-events is locked down
   below so a full-bleed scrim can never swallow clicks. ---- */
.hero-media video{ width:100%; height:100%; object-fit:cover; }
.hero-scrim{ position:absolute; inset:0; z-index:1; pointer-events:none; background:linear-gradient(100deg, rgba(36,27,34,0.55) 0%, rgba(36,27,34,0.40) 38%, rgba(36,27,34,0.20) 65%, rgba(36,27,34,0.38) 100%); }
.hero-scrim::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:38%; pointer-events:none; background:linear-gradient(to top, rgba(36,27,34,0.55), rgba(36,27,34,0)); }
.hero-badge{ display:inline-flex; align-items:center; gap:.5rem; background:var(--cream-50); border:1px solid var(--line); color:var(--ink); font-size:.82rem; font-weight:600; padding:.4rem .9rem; border-radius:var(--radius-pill); margin-bottom:1.2rem; }
.hero-badge .dot{ width:7px; height:7px; border-radius:var(--radius-circle); background:var(--red-bright); }
.hero h1 .accent{ color:var(--pink-deep); }
.hero-points{ display:flex; flex-wrap:wrap; gap:1.4rem; }
.hero-points li{ display:flex; align-items:center; gap:.5rem; font-size:.92rem; color:var(--ink-soft); }
.hero-points svg{ width:16px; height:16px; stroke:var(--gold); flex:none; }
.page-hero .hero-scrim{ background:linear-gradient(180deg, rgba(36,27,34,0.12) 0%, rgba(36,27,34,0.28) 100%); }

/* ---------- LEAD CARD / FORM ----------
   Spec §2.3: contained card, cream-50 surface, radius-xl, shadow-lg, a 4px
   solid pink-deep top edge as the ONLY pink surface on the card. Used both
   in the home hero and every subpage's page-hero — light in both contexts. */
.lead-card{ position:relative; background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-xl); padding:1.9rem; box-shadow:var(--shadow-lg); }
/* The 4px pink-deep top edge. Kept as ::before (was a full dark scrim in the
   donor version, no longer needed now the card itself is light) — the
   pointer-events:none declaration is preserved exactly as required. */
.lead-card::before{ content:""; position:absolute; top:0; left:0; right:0; height:4px; background:var(--pink-deep); border-radius:var(--radius-xl) var(--radius-xl) 0 0; pointer-events:none; z-index:1; }
.lead-card > *{ position:relative; z-index:1; }
.lead-card.light{ background:var(--cream-50); border:1px solid var(--line); }
.lead-card-head{ margin-bottom:1.1rem; }
.lead-card-head h2{ color:var(--ink); font-size:1.35rem; margin-bottom:.25rem; }
.lead-card.light .lead-card-head h2{ color:var(--charcoal); }
.lead-card-head p{ color:var(--ink-soft); font-size:.92rem; margin:0; }
.lead-card.light .lead-card-head p{ color:var(--muted); }

.audience-toggle{ display:flex; background:var(--cream-200); border:1px solid var(--line); border-radius:var(--radius-pill); padding:4px; margin-bottom:1.1rem; }
.audience-toggle button{ flex:1; border:0; background:transparent; color:var(--ink-soft); font-weight:600; font-size:.85rem; line-height:1.25; padding:.55rem .5rem; border-radius:var(--radius-pill); transition:background .15s,color .15s; }
@media (max-width:420px){
  .audience-toggle button{ font-size:.76rem; padding:.55rem .4rem; }
}
.audience-toggle button.active{ background:var(--red); color:var(--white); }

.lead-form .form-row{ display:grid; grid-template-columns:1fr 1fr; gap:.8rem; }
.lead-form label{ display:block; font-size:.78rem; font-weight:600; color:var(--ink-soft); margin-bottom:.3rem; text-transform:uppercase; letter-spacing:.03em; }
.lead-card.light .lead-form label{ color:var(--muted); }
.lead-form input, .lead-form select, .lead-form textarea{
  width:100%; padding:.75rem .85rem; border-radius:var(--radius-md); border:1px solid var(--line);
  background:var(--cream-100); color:var(--ink); font-size:.95rem; margin-bottom:.85rem; font-family:inherit;
}
.lead-form input:focus-visible, .lead-form select:focus-visible, .lead-form textarea:focus-visible{
  outline:2px solid var(--pink-deep); outline-offset:1px;
}
.lead-form input::placeholder, .lead-form textarea::placeholder{ color:var(--ink-soft); opacity:.85; }
.lead-card.light .lead-form input, .lead-card.light .lead-form select, .lead-card.light .lead-form textarea{
  background:var(--cream-100); border-color:var(--line); color:var(--ink);
}
.lead-form select option{ color:var(--ink); }
.lead-form .hp-field{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
/* .cf-turnstile: third-party Cloudflare Turnstile widget container
   (undefined in the donor CSS — the widget renders its own iframe, this
   just keeps consistent vertical rhythm around it). */
.cf-turnstile{ margin:.4rem 0 1rem; }
.lead-form .consent{ font-size:.76rem; color:var(--ink-soft); margin:.4rem 0 1rem; }
.lead-card.light .lead-form .consent{ color:var(--muted); }
.lead-form .consent a{ color:inherit; text-decoration:underline; }
.form-status{ margin-top:.9rem; padding:.75rem .9rem; border-radius:var(--radius-sm); font-size:.9rem; display:none; }
.form-status.show{ display:block; }
.form-status.success{ background:var(--pink-tint); border:1px solid var(--pink-deep); color:var(--ink); }
.form-status.error{ background:#FBEAEA; border:1px solid #B3261E; color:#7A1E19; }
.lead-card.light .form-status.success{ color:var(--ink); }
.lead-card.light .form-status.error{ color:#7A1E19; }
@media (max-width:520px){ .lead-form .form-row{ grid-template-columns:1fr; } }

/* ---------- TRUST STRIP ----------
   Light cream band (kept off ink so .cta-band remains the single dark band
   per page). A 3px pink-deep top rule is the one accent moment here. */
.trust-strip{ background:var(--cream-200); border-top:3px solid var(--pink-deep); padding:1.1rem 0; }
.trust-strip ul{ display:flex; flex-wrap:wrap; gap:1.6rem 2.2rem; justify-content:center; }
.trust-strip li{ display:flex; align-items:center; gap:.55rem; color:var(--ink); font-size:.92rem; font-weight:600; }
.trust-strip svg{ width:18px; height:18px; stroke:var(--gold); flex:none; }

/* ---------- SECTION SCAFFOLD ---------- */
.section{ padding:4rem 0; }
.section.tight{ padding:2.75rem 0; }
.section.on-paper-2{ background:var(--paper-2); }
.section.on-dark{ background:var(--navy); color:var(--white); }
.section.on-dark h2{ color:var(--white); }
.section.on-dark .section-head p{ color:var(--muted-on-dark); }
.section-head{ max-width:680px; margin:0 auto 2.6rem; text-align:center; }
.section-head.left{ margin-left:0; text-align:left; }
.eyebrow{ display:inline-block; font-family:var(--font-body); font-size:.75rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase; color:var(--red); margin-bottom:.6rem; }
/* On dark (ink) backgrounds, eyebrow text stays a warm light neutral —
   raw/deep pink both under-perform for small text on ink at this weight. */
.section.on-dark .eyebrow, .feature-band .eyebrow{ color:var(--muted-on-dark); }
.section-head p{ color:var(--muted); font-size:1.05rem; }
@media (max-width:600px){ .section{ padding:2.5rem 0; } }

/* ---------- SERVICES GRID ---------- */
.services-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
@media (max-width:900px){ .services-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .services-grid{ grid-template-columns:1fr; } }
/* 7 service cards in 3 columns: center the orphan instead of stranding it bottom-left */
@media (min-width:901px){ .services-grid > :nth-child(3n+1):last-child{ grid-column:2; } }
/* DESIGN-SPEC 2.4: one pink-filled CTA per viewport. In any hero the form submit is it; the call button reads as outline. */
.hero-copy .btn-primary, .page-hero .hero-actions .btn-primary{ background:transparent; color:var(--ink); border-color:var(--ink); box-shadow:none; }
.hero-copy .btn-primary:hover, .page-hero .hero-actions .btn-primary:hover{ background:var(--pink-tint); color:var(--pink-deep); border-color:var(--pink-deep); }
.service-card{ background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease; display:flex; flex-direction:column; }
.service-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.service-card .thumb{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.service-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.service-card .body{ padding:1.2rem 1.3rem 1.4rem; flex:1; display:flex; flex-direction:column; }
.service-card h3{ font-size:1.08rem; font-family:var(--font-display); margin-bottom:.4rem; }
.service-card p{ color:var(--muted); font-size:.92rem; margin:0 0 1rem; flex:1; }
.service-card .card-link{ font-weight:700; font-size:.88rem; color:var(--red); display:inline-flex; align-items:center; gap:.35rem; }
.card-tag{ position:absolute; top:.7rem; left:.7rem; background:var(--red); color:var(--white); font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em; padding:.28rem .6rem; border-radius:var(--radius-pill); }
.card-idx{ display:block; font-family:var(--font-display); font-weight:600; font-size:.85rem; color:var(--red); letter-spacing:.03em; margin-bottom:.35rem; }
/* Icon chip inside a card (spec §2.3): 48px circle, pink-tint fill, pink-deep
   stroke — the one place pink-deep is allowed inside a repeating grid item. */
.icon-tile{ width:48px; height:48px; border-radius:var(--radius-circle); background:var(--pink-tint); display:flex; align-items:center; justify-content:center; flex:none; margin-bottom:.9rem; }
.icon-tile svg{ width:22px; height:22px; stroke:var(--pink-deep); fill:none; }

/* ---------- BLOG CARDS (blog-grid/blog-card/blog-card-body/post-date) ----
   Undefined in the donor CSS — pages/blog.html uses this pattern for the
   post index. Mirrors .service-card's surface/shadow/hover treatment. */
.blog-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem; }
@media (max-width:700px){ .blog-grid{ grid-template-columns:1fr; } }
.blog-card{ background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .2s ease, box-shadow .2s ease; display:flex; flex-direction:column; }
.blog-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); }
.blog-card .thumb{ position:relative; aspect-ratio:16/10; overflow:hidden; }
.blog-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.blog-card-body{ padding:1.2rem 1.3rem 1.4rem; flex:1; display:flex; flex-direction:column; }
.blog-card-body h3{ font-size:1.15rem; margin-bottom:.5rem; }
.blog-card-body h3 a{ color:var(--charcoal); text-decoration:none; }
.blog-card-body h3 a:hover{ color:var(--red); }
.blog-card-body p{ color:var(--muted); font-size:.92rem; margin:0; }
.post-date{ font-size:.78rem; font-weight:600; text-transform:uppercase; letter-spacing:.05em; color:var(--ink-soft); margin:0 0 .5rem; }

/* ---------- COMMERCIAL FEATURE BAND (donor, currently unused sitewide) ---------- */
.feature-band{ background:var(--navy-2); color:var(--white); padding:5rem 0; position:relative; border-top:1px solid var(--line-on-dark); border-bottom:1px solid var(--line-on-dark); }
.feature-grid{ display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
@media (max-width:900px){ .feature-grid{ grid-template-columns:1fr; } }
.feature-media{ position:relative; border-radius:var(--radius-xl); overflow:hidden; box-shadow:var(--shadow-lg); aspect-ratio:16/10; border:1px solid var(--line); }
.feature-media video, .feature-media img{ width:100%; height:100%; object-fit:cover; }
/* Portrait variant — for the 800x1200 library images so they crop as an
   upright card instead of being squeezed into the default 16/10 landscape
   frame (spec: "a .feature-media.portrait variant applied to the portrait
   images"). */
.feature-media.portrait{ aspect-ratio:3/4; }
.feature-list{ margin-top:1.3rem; display:grid; gap:.9rem; }
.feature-list li{ display:flex; gap:.7rem; align-items:flex-start; color:var(--muted-on-dark); }
.feature-list svg{ width:20px; height:20px; stroke:var(--red-bright); flex:none; margin-top:2px; }
.feature-band h2{ color:var(--white); }
.feature-band p.lead-copy{ color:var(--muted-on-dark); font-size:1.05rem; }

/* ---------- GALLERY (donor, currently unused) ---------- */
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:220px; gap:.8rem; }
.gallery-grid a{ position:relative; overflow:hidden; border-radius:var(--radius-md); display:block; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.gallery-grid a:hover img{ transform:scale(1.06); }
.gallery-grid .tall{ grid-row:span 2; }
.gallery-cap{ position:absolute; left:0; right:0; bottom:0; padding:.6rem .8rem; background:linear-gradient(transparent, rgba(36,27,34,0.85)); color:var(--white); font-size:.8rem; font-weight:600; }
@media (max-width:760px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:170px; } .gallery-grid .tall{ grid-row:span 1; } }

/* ---------- REVIEWS (honesty-gate banned sitewide — no testimonials/ratings.
   Kept defined per Rule 1 and restyled just enough that it can never emit a
   navy/gray-blue surface if some future page reintroduces it; no further
   design investment here.) ---------- */
.reviews-head{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; margin-bottom:2.2rem; }
.rating-summary{ display:flex; align-items:center; gap:1rem; }
.rating-number{ font-family:var(--font-display); font-size:2.6rem; font-weight:600; color:var(--charcoal); }
.rating-stars{ color:var(--ink); font-size:1.1rem; letter-spacing:2px; }
.rating-summary small{ display:block; color:var(--muted); font-size:.85rem; }
.reviews-strip{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
@media (max-width:900px){ .reviews-strip{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .reviews-strip{ grid-template-columns:1fr; } }
.review-card{ background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-md); padding:1.5rem; box-shadow:var(--shadow-sm); }
.review-card .stars{ color:var(--ink); letter-spacing:2px; margin-bottom:.6rem; font-size:.95rem; }
.review-card p{ font-size:.94rem; color:var(--ink); margin:0 0 1rem; }
.review-attribution{ display:flex; align-items:center; gap:.7rem; }
.review-avatar{ width:36px; height:36px; border-radius:var(--radius-circle); background:var(--teal); color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.9rem; flex:none; }
.review-name{ font-weight:700; font-size:.9rem; color:var(--charcoal); display:block; }
.review-source{ font-size:.8rem; color:var(--muted); }
.reviews-cta{ text-align:center; margin-top:2.2rem; display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ---------- SERVICE AREA ---------- */
.area-layout{ display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; }
@media (max-width:900px){ .area-layout{ grid-template-columns:1fr; } }
.area-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:.6rem .5rem; }
.area-grid a{ display:flex; align-items:center; gap:.5rem; padding:.6rem .8rem; background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-sm); color:var(--charcoal); font-weight:600; font-size:.92rem; }
.area-grid a:hover{ border-color:var(--red); color:var(--red); }
.area-grid svg{ width:15px; height:15px; stroke:var(--teal); flex:none; }
.area-section{ background:var(--cream-100); }
.map-frame{ border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow-md); border:1px solid var(--line); aspect-ratio:4/3; }
.map-frame iframe{ width:100%; height:100%; border:0; }

/* .info-list: NAP contact list (undefined in the donor CSS — pages/contact.html
   uses it for the phone/email/address/hours block). Mirrors the icon+text
   line pattern already used in .trust-strip/.area-grid. */
.info-list{ display:grid; gap:1rem; margin-top:1.5rem; }
.info-list li{ display:flex; align-items:center; gap:.7rem; font-size:1rem; color:var(--ink); }
.info-list svg{ stroke:var(--pink-deep); flex:none; }
.info-list a{ color:var(--ink); font-weight:600; }
.info-list a:hover{ color:var(--pink-deep); text-decoration:underline; }

/* ---------- FINANCING STRIP (donor, currently unused — no pricing/financing
   messaging exists per the honesty gate; kept dormant, no gray-blue/navy). ---------- */
.financing-strip{ background:linear-gradient(120deg, var(--teal) 0%, var(--teal-dark) 100%); color:var(--white); padding:2.6rem 0; }
.financing-inner{ display:flex; align-items:center; justify-content:space-between; gap:1.5rem; flex-wrap:wrap; }
.financing-inner h3{ color:var(--white); margin-bottom:.3rem; }
.financing-inner p{ color:var(--muted-on-dark); margin:0; max-width:52ch; }

/* ---------- FAQ ---------- */
.faq-list{ max-width:820px; margin:0 auto; display:grid; gap:.8rem; }
.faq-item{ background:var(--cream-50); border:1px solid var(--line); border-radius:var(--radius-md); padding:.3rem 1.3rem; }
.faq-item summary{ cursor:pointer; list-style:none; padding:1.1rem 2rem 1.1rem 0; font-weight:700; color:var(--charcoal); position:relative; font-size:1.02rem; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; position:absolute; right:0; top:1rem; font-size:1.4rem; color:var(--red); transition:transform .2s ease; }
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-item .faq-answer{ padding:0 0 1.2rem; color:var(--muted); font-size:.96rem; }
.faq-more{ max-width:820px; margin:1.2rem auto 0; text-align:center; }
.faq-more a{ font-weight:700; color:var(--red); text-decoration:underline; text-underline-offset:.2em; }

/* ---------- CTA BAND ----------
   The one ink dark band allowed per page (spec §2.3). Pink at a larger
   decorative scale (the top rule) is allowed here because it sits on ink,
   not cream. */
.cta-band{ background:var(--ink); color:var(--white); padding:4rem 0; text-align:center; position:relative; border-top:3px solid var(--pink-deep); }
.cta-band h2{ color:var(--white); margin-bottom:.6rem; }
.cta-band p{ color:var(--muted-on-dark); max-width:56ch; margin:0 auto 1.8rem; }
.cta-band .cta-actions{ display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
/* Dark-background override for the secondary button — the only place
   .btn-outline sits on ink instead of cream. */
.cta-band .btn-outline, .section.on-dark .btn-outline, .feature-band .btn-outline{ color:var(--cream-50); border-color:rgba(255,253,249,0.55); }
.cta-band .btn-outline:hover, .section.on-dark .btn-outline:hover, .feature-band .btn-outline:hover{ background:rgba(255,253,249,0.12); }
/* Pink-budget guard: the mobile sticky CTA bar (.mobile-cta-form) is already
   the one persistent pink-filled action once a visitor scrolls past the
   hero, and it is on screen for the entire rest of the page including the
   CTA band. Without this override, cta-band's own .btn-primary would add a
   SECOND simultaneous pink fill in the same viewport on mobile — invert it
   to a cream fill with pink-deep text instead (still the visually dominant
   button on the ink band; contrast 6.11:1, verified below). */
.cta-band .btn-primary{ background:var(--cream-50); color:var(--pink-deep); border-color:var(--cream-50); }
.cta-band .btn-primary:hover{ background:var(--white); color:var(--pink-deep-hover); box-shadow:var(--shadow-md); border-color:var(--white); }

/* ---------- MOBILE STICKY CTA BAR ---------- */
.mobile-cta-bar{ display:none; }
@media (max-width:760px){
  .mobile-cta-bar{
    display:flex; position:fixed; left:0; right:0; bottom:0; z-index:250;
    box-shadow:0 -4px 18px rgba(36,27,34,0.18);
    padding-bottom:env(safe-area-inset-bottom,0);
    transition:transform .22s ease, opacity .22s ease;
  }
  /* Hidden while the hero's own lead form is on screen — the bar exists
     to cover the rest of the (long) page, not to sit on top of the form
     it duplicates. Defaults to visible if JS hasn't run yet. */
  .mobile-cta-bar.is-hidden{ transform:translateY(100%); opacity:0; visibility:hidden; pointer-events:none; }
  .mobile-cta-bar a{
    flex:1; display:flex; align-items:center; justify-content:center; gap:.4rem;
    padding:.95rem .5rem; font-weight:700; font-size:.92rem; text-decoration:none;
  }
  .mobile-cta-call{ background:var(--charcoal); color:var(--white); }
  .mobile-cta-call svg{ width:16px; height:16px; }
  .mobile-cta-form{ background:var(--red); color:var(--white); }
  body{ padding-bottom:56px; }
}

/* ---------- CHAT WIDGET GUARD ----------
   The GHL loader hydrates a <chat-widget> custom element with an OPEN
   shadow root — its launcher/greeting bubble lives inside that shadow
   DOM and is unreachable from page CSS. The actual fix (hide it while
   the hero lead form is on screen; offset it above the mobile CTA bar
   the rest of the time) runs in assets/main.js via the open shadowRoot. */

/* ---------- FOOTER ---------- */
.site-footer{ background:var(--charcoal); color:var(--muted-on-dark); padding:3.5rem 0 1.6rem; font-size:.92rem; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:2.4rem; margin-bottom:2.4rem; }
@media (max-width:860px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
.site-footer h3{ color:var(--white); font-family:var(--font-body); font-size:.85rem; text-transform:uppercase; letter-spacing:.06em; margin-bottom:1rem; }
.site-footer .brand-col img{ height:84px; width:auto; margin-bottom:1rem; } /* near-square script mark; width:auto overrides the HTML width attr */
.site-footer .brand-col p{ max-width:32ch; color:var(--muted-on-dark); }
.site-footer ul li{ margin-bottom:.6rem; }
.site-footer a{ color:var(--muted-on-dark); }
.site-footer a:hover{ color:var(--white); }
.footer-bottom{ border-top:1px solid var(--line-on-dark); padding-top:1.4rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:.8rem; font-size:.82rem; color:var(--muted-on-dark); }
.footer-disclosure{ font-size:.78rem; color:var(--muted-on-dark); margin-top:.6rem; max-width:70ch; }
.footer-credit a{ color:var(--muted-on-dark); text-decoration:underline; }

/* ---------- BLOG / ARTICLE TYPOGRAPHY ---------- */
.article{ max-width:760px; margin:0 auto; }
.article .updated{ font-size:.85rem; color:var(--muted); margin-bottom:1.5rem; }
.article-body h2{ margin-top:2.2rem; font-size:1.5rem; }
.article-body h3{ margin-top:1.6rem; }
.article-body p{ margin:0 0 1.2rem; font-size:1.03rem; color:var(--ink); }
.article-body .direct-answer{ background:var(--cream-300); border-left:4px solid var(--red); padding:1rem 1.3rem; border-radius:var(--radius-sm); font-weight:600; margin-bottom:1.6rem; }
.article-body ul, .article-body ol{ margin:0 0 1.2rem 1.4rem; list-style:disc; }
.article-body ol{ list-style:decimal; }
.article-body li{ margin-bottom:.5rem; }
.article-body figure{ margin:0 0 1.6rem; }
/* .article-img: in-article photo (undefined in the donor CSS — blog posts
   embed a <figure><img class="article-img"> mid-article). */
.article-img{ width:100%; border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); margin:0; }
.related-links{ background:var(--cream-300); border-radius:var(--radius-md); padding:1.6rem; margin-top:2.5rem; }
.related-links h4{ margin-bottom:.8rem; }
.related-links ul{ display:grid; gap:.5rem; }

/* ---------- MISC UTILITIES ---------- */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.container-narrow{ max-width:820px; margin:0 auto; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
}
