/* ═══════════════════════════════════════════════════════════
   Greenberg Advisory — site.css  ·  v2 (alignment build)
   Coastal Editorial design system, realigned to the proposal
   + brochure register: white ground, large light section
   numbers, hairline gold rules, restrained motion.
   Loads after brand.css (v4.5.3 SSOT) — site.css wins.
   dxa-overlay.css folded in 2026-05-21; no longer a separate file.
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }

/* ─── TOKENS ─────────────────────────────────────────────
   brand.css owns the Coastal Emerald palette + type stacks.
   site.css keeps only layout, motion, and site-specific shades. */
:root {
  --display: var(--ga-display);
  --body:    var(--ga-body);

  --ga-charcoal-deep: #1F1F1F;   /* site-only: footer / nav darkest */
  --ga-ivory-shadow:  #ECE5DA;   /* site-only: warm shade (legacy)  */
  --ga-gold-light:    #D9B05A;   /* site-only: gold hover           */
  --ga-emerald-mid:   #244F3F;   /* site-only                       */

  --max-w: 1200px;
  --gutter: 32px;
  --section-pad-y: 120px;

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

@media (max-width: 900px) { :root { --section-pad-y: 88px; --gutter: 22px; } }
@media (max-width: 600px) { :root { --section-pad-y: 68px; --gutter: 18px; } }

/* ─── BASE ──────────────────────────────────────────────── */
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ga-charcoal);
  background: var(--ga-ivory);            /* ivory — the digital ground */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ga-emerald);
  letter-spacing: -0.02em;
  line-height: 1.06;
  font-weight: 400;
}

a { color: var(--ga-emerald); text-decoration: none; }
a:hover { color: var(--ga-gold); }

/* Editorial italic emphasis — emerald on light ground (proposal device) */
em { font-style: italic; color: var(--ga-emerald); font-weight: 400; }

::selection { background: var(--ga-gold); color: var(--ga-charcoal); }

/* ─── HELPERS ───────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* Eyebrow — tracked caps, emerald (gold is decorative-only on white) */
.eyebrow {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ga-emerald);
  display: inline-block;
}

/* Gold hairline rule, fades at both ends */
.hairline-gold {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,157,59,0.55), transparent);
  border: 0;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
nav#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15, 51, 41, 0.92);          /* emerald-deep, near-solid */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(204,157,59,0.22);
  transition: background 0.3s, border-color 0.3s;
}
nav#nav.scrolled {
  background: #0F3329;                         /* solid on scroll */
  border-bottom-color: rgba(204,157,59,0.38);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 96px; width: auto; }
.nav-menu {
  display: flex;
  list-style: none;
  gap: 38px;
  align-items: center;
}
.nav-menu a {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--ga-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s var(--ease-out);
}
.nav-menu a:hover { color: var(--ga-gold); }
.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after { transform: scaleX(1); }
.nav-menu a[aria-current="page"] { color: var(--ga-gold); }

.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-cta {
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ga-gold);
  padding: 12px 22px;
  border: 1px solid rgba(204,157,59,0.55);
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--ga-gold);
  color: var(--ga-emerald-deep);
  border-color: var(--ga-gold);
}
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 8px;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--ga-white);
  margin: 6px auto;
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.nav-hamburger[aria-expanded="true"] span { background: var(--ga-charcoal); }
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 51, 41, 0.45);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-drawer-overlay.open { opacity: 1; pointer-events: auto; }
.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 88vw);
  background: var(--ga-ivory);
  box-shadow: -16px 0 48px rgba(0,0,0,0.18);
  padding: 104px 36px 36px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: 1000;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer ul { list-style: none; padding: 0; margin: 0 0 32px; }
.nav-drawer li { border-bottom: 1px solid rgba(44,44,44,0.10); }
.nav-drawer a {
  display: block;
  padding: 20px 0;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ga-emerald);
  letter-spacing: -0.015em;
  transition: color 0.2s;
}
.nav-drawer a[aria-current="page"],
.nav-drawer a:hover { color: var(--ga-gold); }
.nav-drawer .nav-cta {
  display: block; width: 100%; text-align: center;
  margin-top: 28px;
  color: var(--ga-emerald);
  border-color: var(--ga-emerald);
}
.nav-drawer .nav-cta:hover {
  background: var(--ga-emerald);
  color: var(--ga-white);
}

@media (max-width: 900px) {
  .nav-menu, .nav-right > .nav-cta { display: none; }
  .nav-hamburger { display: block; }
}

body.nav-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS — squared (drafting register)
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ga-gold);
  color: var(--ga-emerald-deep);
  border-color: var(--ga-gold);
}
.btn-primary:hover {
  background: var(--ga-gold-light);
  border-color: var(--ga-gold-light);
  color: var(--ga-emerald-deep);
}
.btn-ghost-dark {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-dark:hover {
  border-color: var(--ga-gold);
  color: var(--ga-gold);
}
.btn-ghost-light {
  background: transparent;
  color: var(--ga-emerald);
  border-color: var(--ga-emerald);
}
.btn-ghost-light:hover {
  background: var(--ga-emerald);
  color: var(--ga-white);
}
.btn .arrow { display: inline-block; transition: transform 0.25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* Inline editorial link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ga-emerald);
  transition: color 0.2s;
}
.link-arrow .arrow { transition: transform 0.25s; }
.link-arrow:hover { color: var(--ga-gold); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════
   HERO (home)
   ═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ga-emerald-deep);
  color: var(--ga-white);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  padding: 132px 0 84px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../images/hero-bg.jpg') center 35% / cover no-repeat;
  z-index: -2;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,51,41,0.52) 0%, rgba(15,51,41,0.66) 60%, rgba(15,51,41,0.82) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(27,77,62,0.30) 0%, rgba(15,51,41,0.55) 100%);
  z-index: -1;
}
/* Drafting frame — thin inset rule (proposal register) */
#hero::after {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(245,240,232,0.16);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ga-gold);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.15s forwards;
}
.hero-badge::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--ga-gold);
}
/* v2.7.2 (per Ben MW271-001): hide the &-to-Owner's break on desktop where
   the badge fits one line; let it kick in on mobile so "OWNER'S
   REPRESENTATION" never splits across two lines mid-word. */
.hero-badge-break { display: none; }

.hero-mark {
  width: clamp(80px, 8.4vw, 110px);
  height: auto;
  margin-bottom: 26px;
  filter: brightness(0) invert(1);   /* line-art mark → white on the dark hero */
  opacity: 0;
  transform-origin: 50% 50%;
  will-change: transform;
  animation: markFade 0.95s var(--ease-out) 0.15s forwards,
             markSpin 18s linear 0.15s 1 forwards;
}
/* mark: one quiet rotation on first paint, then rests. Opacity owned by markFade, transform by markSpin. */
@keyframes markFade { from { opacity: 0; } to { opacity: 0.9; } }
@keyframes markSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-headline {
  font-family: var(--display);
  font-size: clamp(48px, 7.4vw, 108px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.018em; /* v2.6 polish: optical tightening at large display sizes */
  color: var(--ga-white);
  margin: 0 0 32px;
  max-width: 15ch;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease-out) 0.35s forwards;
}
.hero-headline em {
  display: inline-block;
  font-style: italic;
  font-weight: 300;
  color: var(--ga-gold);
}

.hero-subhead {
  font-family: var(--body);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.90);
  max-width: 560px;
  margin: 0 0 44px;
  opacity: 0;
  animation: fadeUp 1.0s var(--ease-out) 0.6s forwards;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 1.0s var(--ease-out) 0.85s forwards;
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1.0s var(--ease-out) 1.2s forwards;
}
.hero-scroll-label {
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  writing-mode: vertical-rl;
}
.hero-scroll-rule {
  width: 1px;
  height: 56px;
  background: linear-gradient(180deg, var(--ga-gold), transparent);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 700px) {
  #hero { padding: 116px 0 96px; }
  #hero::after { inset: 14px; }
  .hero-bg { background-image: url('../images/hero-bg-mobile.jpg'); background-position: center center; }
  .hero-badge { margin-bottom: 32px; font-size: 10px; line-height: 1.6; }
  .hero-badge-break { display: inline; }
  .hero-headline { margin-bottom: 26px; }
  .hero-subhead { margin-bottom: 34px; }
  .hero-scroll { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER — section-number device
   ═══════════════════════════════════════════════════════════ */
.section-head {
  text-align: center;
  padding: var(--section-pad-y) var(--gutter) 0;
  max-width: 800px;
  margin: 0 auto;
}
.section-head .eyebrow { display: block; }
.section-head .eyebrow::after {
  content: '';
  display: block;
  width: 54px;
  height: 1px;
  background: var(--ga-gold);
  margin: 16px auto 0;
}
.section-head h2 {
  font-size: clamp(32px, 4.3vw, 52px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #1A1A1A;
  margin: 22px 0 0;
}
.section-head .dek {
  font-family: var(--body);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ga-charcoal-70, rgba(44,44,44,0.72));
  margin-top: 18px;
}

/* Heading accent (light ground) — emerald italic phrase, no rule.
   Color-by-ground rule: emerald on light, gold on dark. Gold reserved as accent. */
.section-head h2 em {
  font-style: italic;
  color: var(--ga-emerald);
  font-weight: 400;
}

/* Legacy Carambola mark divider (retained for non-home pages) */
.mark-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 88px var(--gutter) 0;
  max-width: var(--max-w);
  margin: 0 auto;
}
.mark-divider-rule {
  flex: 1;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(204,157,59,0.5), transparent);
}
.mark-divider-icon { width: 48px; height: 48px; flex-shrink: 0; opacity: 0.9; }
.mark-divider-icon img { width: 100%; height: 100%; object-fit: contain; }

/* ═══════════════════════════════════════════════════════════
   SERVICES (home) — 2×3 grid, 5 cards + CTA tile
   ═══════════════════════════════════════════════════════════ */
.services { padding: 0 var(--gutter) var(--section-pad-y); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: var(--max-w);
  margin: 56px auto 0;
  background: rgba(44,44,44,0.12);          /* hairline grid divider */
}
.service-card {
  position: relative;
  background: var(--ga-white);
  padding: 52px 42px 40px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  display: block;
  color: inherit;
  isolation: isolate;
}
.service-card::before {
  content: attr(data-num);
  position: absolute;
  right: -6px;
  bottom: -46px;
  font-family: var(--display);
  font-size: clamp(150px, 18vw, 230px);
  font-weight: 300;
  line-height: 1;
  color: var(--ga-emerald-tint);
  z-index: -1;
  letter-spacing: -0.04em;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
  opacity: 0.8;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--ga-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px -28px rgba(15,51,41,0.22);
  z-index: 2;
}
.service-card:hover::before { transform: translate(-4px, -4px); }
.service-card:hover::after { transform: scaleX(1); }

.service-num-label {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ga-emerald);
  margin-bottom: 22px;
  display: block;
}
.service-card h3 {
  font-family: var(--display);
  font-size: clamp(23px, 2.5vw, 30px);
  font-weight: 400;
  line-height: 1.14;
  color: var(--ga-emerald);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.service-card p {
  font-size: 15px;
  line-height: 1.66;
  color: #585858;                 /* solid — sits above the watermark numeral */
  margin: 0 0 30px;
}

/* CTA tile — fills the 6th grid cell */
.service-cta {
  background: var(--ga-emerald);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-cta::before { content: none; }
.service-cta .service-num-label { color: var(--ga-gold); }
.service-cta h3 { color: var(--ga-white); }
.service-cta p { color: rgba(255,255,255,0.82); }
.service-cta .link-arrow { color: var(--ga-gold); }
.service-cta:hover { transform: translateY(-5px); }

@media (max-width: 800px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 42px 28px 34px; }
}

/* ═══════════════════════════════════════════════════════════
   SERVICES CTA BAND — routing prompt, full-width below the 2×3 grid
   ═══════════════════════════════════════════════════════════ */
.services-cta-band {
  background: var(--ga-emerald);
  color: var(--ga-white);
  padding: 60px var(--gutter);
}
.services-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.services-cta-text { max-width: 660px; }
.services-cta-text .eyebrow { color: var(--ga-gold); margin-bottom: 14px; }
.services-cta-text h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ga-white);
  margin: 0 0 10px;
}
.services-cta-text p {
  font-size: 15px;
  line-height: 1.62;
  color: rgba(255,255,255,0.82);
  margin: 0;
}
.services-cta-band .btn { flex-shrink: 0; }
@media (max-width: 800px) {
  .services-cta-band { padding: 46px var(--gutter); }
  .services-cta-inner { flex-direction: column; align-items: flex-start; gap: 26px; }
}

/* ═══════════════════════════════════════════════════════════
   HOW WE ENGAGE — engagement-model band
   ═══════════════════════════════════════════════════════════ */
.engage-band { background: var(--ga-ivory); }
.engage-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter) var(--section-pad-y);
}
.engage-lanes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(44,44,44,0.12);          /* hairline grid divider */
}
.engage-lane {
  background: var(--ga-white);
  padding: 40px 34px 38px;
  position: relative;
}
.engage-lane::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 54px; height: 2px;
  background: var(--ga-gold);
}
.lane-no {
  font-family: var(--display);
  font-weight: 300;
  font-size: 40px;
  line-height: 1;
  color: var(--ga-emerald-tint);
  display: block;
  margin-bottom: 16px;
}
.engage-lane h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.018em;
  color: #1A1A1A;
  margin: 0 0 6px;
}
.engage-lane .lane-tag {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ga-gold);
  display: block;
  margin-bottom: 14px;
}
.engage-lane p {
  font-size: 14.5px;
  line-height: 1.66;
  color: var(--ga-charcoal-70, rgba(44,44,44,0.72));
  margin: 0;
}
@media (max-width: 800px) {
  .engage-lanes { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   STAT BAND — white ground, large light emerald numerals
   ═══════════════════════════════════════════════════════════ */
.stat-band {
  background: var(--ga-ivory);
  padding: var(--section-pad-y) var(--gutter);
  border-top: 1px solid rgba(44,44,44,0.12);
}
.stat-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat {
  text-align: left;
  position: relative;
  padding-left: 24px;
  border-left: 1px solid rgba(204,157,59,0.55);
}
.stat-number {
  font-family: var(--display);
  font-size: clamp(58px, 8vw, 116px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ga-emerald);
  display: block;
  font-variant-numeric: tabular-nums;
}
.stat-rule {
  width: 44px;
  height: 2px;
  background: var(--ga-gold);
  margin: 18px 0 16px;
}
.stat-label {
  font-family: var(--body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ga-charcoal-70, rgba(44,44,44,0.72));
  line-height: 1.5;
}

@media (max-width: 900px) {
  .stat-band-inner { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; }
}
@media (max-width: 480px) {
  .stat-band-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ═══════════════════════════════════════════════════════════
   GEOGRAPHY BAND — faint emerald-tint band
   ═══════════════════════════════════════════════════════════ */
.geo-band {
  background: var(--ga-emerald-tint);
  padding: var(--section-pad-y) var(--gutter);
}
.geo-inner { max-width: var(--max-w); margin: 0 auto; }
.geo-header { text-align: center; margin-bottom: 56px; }
.geo-header .eyebrow { display: block; }
.geo-header h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--ga-emerald);
  margin-top: 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.geo-counties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(44,44,44,0.14);
}
.geo-county {
  text-align: center;
  padding: 40px 24px 8px;
  border-right: 1px solid rgba(44,44,44,0.14);
}
.geo-county:last-child { border-right: none; }
.geo-county-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ga-emerald);
  margin-bottom: 20px;
}
.geo-cities {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 2;
  color: var(--ga-charcoal-70, rgba(44,44,44,0.72));
}
.geo-cities span { white-space: nowrap; }
.geo-cities .dot { display: inline-block; color: var(--ga-gold); margin: 0 6px; }
@media (max-width: 800px) {
  .geo-counties { grid-template-columns: 1fr; }
  .geo-county { border-right: none; border-bottom: 1px solid rgba(44,44,44,0.14); padding-bottom: 32px; }
  .geo-county:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════
   WHY GREENBERG — dark emerald anchor section
   ═══════════════════════════════════════════════════════════ */
.why {
  background: var(--ga-emerald);
  color: var(--ga-white);
  padding: var(--section-pad-y) var(--gutter);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-left .eyebrow { color: var(--ga-gold); display: block; margin-bottom: 22px; }
.why-left h2 {
  font-family: var(--display);
  font-size: clamp(30px, 3.9vw, 48px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ga-white);
  margin: 0 0 30px;
}
.why-left h2 em { font-style: italic; color: var(--ga-gold); font-weight: 300; }
.why-left .lead {
  font-size: 16.5px;
  line-height: 1.72;
  color: rgba(255,255,255,0.86);
  margin-bottom: 32px;
  max-width: 540px;
}
.why-left .link-arrow { color: var(--ga-gold); }

/* Anchor pull-quote — proposal device: hairline gold rule, italic, no box */
.pull-quote {
  border-left: 1.5px solid var(--ga-gold);
  padding: 6px 0 6px 28px;
}
.pull-quote blockquote {
  font-family: var(--display);
  font-size: clamp(20px, 2.1vw, 27px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.34;
  color: var(--ga-white);
  letter-spacing: -0.012em;
  margin: 0;
}

@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 44px; }
}

/* ═══════════════════════════════════════════════════════════
   PROCESS STRIP (home) — white ground
   ═══════════════════════════════════════════════════════════ */
.process { background: var(--ga-ivory); }
.process-inner { max-width: var(--max-w); margin: 0 auto; padding-bottom: var(--section-pad-y); }
.process-plates {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}
.process-plates::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 1px;
  background: var(--ga-gold);
  opacity: 0.5;
}
.process-plate { text-align: center; padding: 0 28px; position: relative; }
.process-plate-num {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--ga-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(204,157,59,0.45);
}
.process-plate-num span {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 300;
  color: var(--ga-gold);
  letter-spacing: -0.02em;
}
.process-plate .phase-label {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ga-emerald);
  display: block;
  margin-bottom: 12px;
}
.process-plate h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 400;
  color: #1A1A1A;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.process-plate .tags {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  font-style: italic;
  color: var(--ga-charcoal-60, rgba(44,44,44,0.62));
  line-height: 1.55;
}
.process-link-wrap { text-align: center; margin-top: 60px; }

@media (max-width: 800px) {
  .process-plates { grid-template-columns: 1fr; gap: 48px; }
  .process-plates::before { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   CTA BLOCK — dark charcoal anchor
   ═══════════════════════════════════════════════════════════ */
.cta-block {
  background: var(--ga-emerald-deep);
  color: var(--ga-white);
  padding: 100px var(--gutter);
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(245,240,232,0.12);
  pointer-events: none;
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.cta-left h2 {
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ga-white);
  margin: 0 0 18px;
}
.cta-left h2 em { color: var(--ga-gold); font-weight: 300; }
.cta-left p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
}
.cta-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
@media (max-width: 800px) {
  .cta-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
  background: var(--ga-charcoal-deep);
  color: rgba(255,255,255,0.55);
  padding: 76px var(--gutter) 36px;
  border-top: 1px solid rgba(204,157,59,0.30);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
}
.footer-brand { text-align: center; }
.footer-brand img { height: 128px; width: auto; margin: 0 auto 16px; display: block; }
.footer-brand .footer-logo-horizontal { display: none; }
.footer-brand .tagline {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  line-height: 1.7;
  max-width: 240px;
  margin: 0 auto;
}
.footer-col-title {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ga-gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--ga-gold); }
.footer-contact-line {
  font-family: var(--body);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.footer-contact-line a { color: var(--ga-gold); }
.footer-geo {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
.footer-colophon {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.footer-colophon .gold-dot {
  display: inline-block;
  width: 5px; height: 5px;
  background: var(--ga-gold);
  border-radius: 50%;
  margin: 0 8px;
  vertical-align: middle;
}
.footer-bottom {
  max-width: var(--max-w);
  margin: 52px auto 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: var(--ga-gold); }

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: left; }
}

/* ═══════════════════════════════════════════════════════════
   SUB-PAGE HERO  (Phase 2 — token alignment only)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--ga-emerald-deep);
  color: var(--ga-white);
  padding: 172px var(--gutter) 96px;
  min-height: 576px; /* v2.7.3: uniform hero-band height across main pages (was 477) */
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* v2.5: 6 service detail pages pinned uniform at 547 (CI's natural height
   with 2-line h1). Other tier 2 photo pages stay at the 477 floor and flex
   past per content. */
body.page-service-detail .page-hero { min-height: 547px; }
.page-hero.is-utility {
  min-height: 480px;
  padding: 132px var(--gutter) 88px;
}
/* v2.5: privacy is lighter than other utility pages — drop to 400 */
body.page-privacy .page-hero.is-utility { min-height: 400px; }
.page-hero.is-utility::before { display: none; }
/* Hero image layer — per-page photo set via --hero-* custom properties in <head>.
   Dark-emerald overlay keeps white headline text at WCAG AA over any photo.
   No --hero-* set (e.g. Insights) → emerald-clean, base background shows through. */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--ga-emerald-deep);
  background-image:
    linear-gradient(176deg, rgba(15,51,41,0.72) 0%, rgba(15,51,41,0.81) 52%, rgba(15,51,41,0.93) 100%),
    var(--hero-jpg, none);
  background-image:
    linear-gradient(176deg, rgba(15,51,41,0.72) 0%, rgba(15,51,41,0.81) 52%, rgba(15,51,41,0.93) 100%),
    image-set(var(--hero-webp, none) type('image/webp'), var(--hero-jpg, none) type('image/jpeg'));
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
}
@media (max-width: 760px) {
  .page-hero::before {
    background-image:
      linear-gradient(176deg, rgba(15,51,41,0.78) 0%, rgba(15,51,41,0.90) 100%),
      var(--hero-jpg, none);
    background-image:
      linear-gradient(176deg, rgba(15,51,41,0.78) 0%, rgba(15,51,41,0.90) 100%),
      image-set(var(--hero-mwebp, none) type('image/webp'), var(--hero-jpg, none) type('image/jpeg'));
  }
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ga-gold), transparent);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ga-gold);
  margin-bottom: 32px;
}
.page-hero-badge::before { content: ''; width: 32px; height: 1px; background: var(--ga-gold); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.018em; /* v2.6 polish: optical tightening at large display sizes */
  color: var(--ga-white);
  margin: 0 0 22px;
  max-width: 820px;
}
.page-hero h1 em { font-style: italic; color: var(--ga-gold); font-weight: 300; letter-spacing: -0.01em; }
.page-hero .dek {
  font-family: var(--body);
  font-size: clamp(16px, 1.6vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255,255,255,0.86);
  max-width: 720px;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PAGE SECTION + EDITORIAL ARTICLE  (Phase 2 — token alignment)
   ═══════════════════════════════════════════════════════════ */
.page-section { padding: var(--section-pad-y) var(--gutter); }
.page-section.alt { background: var(--ga-emerald-tint); }
.article { max-width: 760px; margin: 0 auto; }
.article h2 {
  font-family: var(--display);
  font-size: clamp(27px, 3.2vw, 38px);
  font-weight: 300;
  letter-spacing: -0.022em;
  color: var(--ga-emerald);
  margin: 60px 0 22px;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ga-emerald);
  margin: 38px 0 14px;
}
.article p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ga-charcoal);
  margin-bottom: 18px;
}
.article ul { list-style: none; padding: 0; margin: 18px 0 24px; }
.article ul li {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ga-charcoal);
  padding: 8px 0 8px 24px;
  position: relative;
}
.article ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--ga-gold);
  font-weight: 600;
}

/* Gold left-rule callout cards */
.callout-card {
  background: var(--ga-white);
  border-left: 2px solid var(--ga-emerald);
  padding: 26px 30px;
  margin: 24px 0;
  box-shadow: 0 2px 14px rgba(15,51,41,0.05);
}
.callout-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ga-emerald);
}
.callout-card ul { margin: 0; }

/* Anchor pull-quote (When to Engage) */
.engage-quote {
  padding: 6px 0 6px 28px;
  margin: 40px 0;
  border-left: 1.5px solid var(--ga-gold);
}
.engage-quote .label {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ga-emerald);
  display: block;
  margin-bottom: 14px;
}
.engage-quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(20px, 2.1vw, 26px);
  font-weight: 300;
  line-height: 1.36;
  color: var(--ga-emerald);
  margin: 0;
  letter-spacing: -0.012em;
}

/* ═══════════════════════════════════════════════════════════
   ABOUT — editorial two-column narrative (label rail + prose)
   ═══════════════════════════════════════════════════════════ */
.about-body { max-width: 952px; margin: 0 auto; }
.about-section {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
.about-section-head .eyebrow { display: block; margin-bottom: 16px; }
.about-section-head .label { font-family: var(--body); font-weight: 600; font-size: 11px; letter-spacing: 0.26em; color: var(--ga-emerald); text-transform: uppercase; display: block; margin-bottom: 16px; }
.about-section-head h2 {
  font-family: var(--display);
  font-size: clamp(26px, 2.9vw, 34px);
  font-weight: 300;
  letter-spacing: -0.022em;
  line-height: 1.12;
  color: #1A1A1A;
  margin: 0;
}
.about-section-body p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--ga-charcoal);
  margin: 0 0 18px;
  max-width: 62ch;
}
.about-section-body p:last-child { margin-bottom: 0; }
.about-section-body .engage-quote { margin: 0; max-width: none; }
.about-section-body > .principle-card:first-child { margin-top: 0; }
.about-section-body > .principle-card:last-child { margin-bottom: 0; }
.about-section-body p.about-coda {
  font-family: var(--display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ga-emerald);
  margin-top: 30px;
}
hr.hairline-gold { margin: 56px 0; }
@media (max-width: 860px) {
  .about-section { grid-template-columns: 1fr; gap: 18px; }
  hr.hairline-gold { margin: 44px 0; }
}

/* Back link — service detail page foot (eyebrow weight, gold arrow) */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ga-emerald);
  margin-top: 12px;
  transition: color 0.2s;
}
.back-link .arrow { color: var(--ga-gold); transition: transform 0.25s; }
.back-link:hover { color: var(--ga-gold); }
.back-link:hover .arrow { transform: translateX(-4px); }

/* Footer disclaimer — one-line "not legal advice" note, sits above the © row */
.footer-disclaimer {
  flex-basis: 100%;
  margin-bottom: 14px;
  font-family: var(--body);
  font-size: 10.5px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.34);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT — numbered editorial blocks  (Phase 2 — token alignment)
   ═══════════════════════════════════════════════════════════ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 32px 0;
  border-top: 1px solid rgba(44,44,44,0.14);
}
.diff-block {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(44,44,44,0.14);
  align-items: start;
}
.diff-num {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--ga-emerald);
  letter-spacing: -0.03em;
}
.diff-body h3 {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ga-emerald);
  margin: 6px 0 12px;
}
.diff-body p { margin: 0; font-size: 16px; line-height: 1.7; }
@media (max-width: 600px) {
  .diff-block { grid-template-columns: 1fr; gap: 12px; padding: 28px 0; }
  .diff-num { font-size: 46px; }
}

/* Credentials grid */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin: 24px 0;
  border-top: 1px solid rgba(44,44,44,0.14);
}
.credentials-grid li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(44,44,44,0.14);
  font-size: 16px;
  font-weight: 500;
  color: var(--ga-charcoal);
  list-style: none;
  position: relative;
  padding-left: 30px;
}
.credentials-grid li::before {
  content: '';
  position: absolute;
  left: 0; top: 27px;
  width: 12px; height: 1.5px;
  background: var(--ga-gold);
}

/* ═══════════════════════════════════════════════════════════
   PROCESS PAGE — phase sections  (Phase 2 — token alignment)
   ═══════════════════════════════════════════════════════════ */
.phase-section { padding: 64px var(--gutter); position: relative; overflow: hidden; }
.phase-section.alt { background: var(--ga-emerald-tint); }
.phase-section::before {
  content: attr(data-phase);
  position: absolute;
  font-family: var(--display);
  font-size: clamp(110px, 14vw, 200px);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: rgba(27,77,62,0.06);
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}
.phase-inner { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }
.phase-label {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ga-emerald);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.phase-label::before { content: ''; width: 28px; height: 1px; background: var(--ga-gold); }
.phase-section h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.3vw, 52px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #1A1A1A;
  margin: 0 0 26px;
}
.phase-section h2 em { font-style: italic; color: var(--ga-emerald); }
.phase-section p { font-size: 17px; line-height: 1.75; color: var(--ga-charcoal); margin-bottom: 18px; }
.phase-section .timeline {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: var(--ga-charcoal-60, rgba(44,44,44,0.62));
  margin-top: 24px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM  (Phase 2 — token alignment)
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-side {
  background: var(--ga-emerald);
  color: var(--ga-white);
  padding: 48px 40px;
  position: relative;
}
.contact-side::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 64px;
  background: var(--ga-gold);
}
.contact-side .label {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ga-gold);
  margin-bottom: 14px;
  display: block;
}
.contact-side h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ga-white);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.contact-side p { font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.85); }
.contact-side a.contact-email {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 400;
  color: var(--ga-gold);
  border-bottom: 1px solid rgba(204,157,59,0.4);
  padding-bottom: 4px;
  letter-spacing: -0.01em;
}
.contact-side a.contact-email:hover { color: var(--ga-gold-light); border-color: var(--ga-gold-light); }

.contact-form {
  background: var(--ga-white);
  padding: 48px 44px;
  border: 1px solid rgba(44,44,44,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ga-emerald);
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ga-charcoal);
  background: var(--ga-grey, #EFEEEA);
  border: none;
  border-bottom: 1.5px solid #D9D2C2;
  padding: 12px 4px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B4D3E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  cursor: pointer;
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--ga-gold);
  background: var(--ga-white);
}
.form-submit-row { margin-top: 28px; }
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--ga-gold);
  color: var(--ga-emerald-deep);
  border: none;
  padding: 18px 32px;
  cursor: pointer;
  transition: all 0.25s;
  border-radius: 0;
}
.btn-submit .arrow { transition: transform 0.25s; }
.btn-submit:hover { background: var(--ga-emerald); color: var(--ga-white); }
.btn-submit:hover .arrow { transform: translateX(6px); }
.form-note {
  margin-top: 16px;
  text-align: center;
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(44,44,44,0.55);
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .contact-form { padding: 32px 24px; }
  .contact-side { padding: 36px 28px; }
}

/* ═══════════════════════════════════════════════════════════
   404 / SUCCESS PAGES
   ═══════════════════════════════════════════════════════════ */
.message-hero {
  background: var(--ga-emerald-deep);
  color: var(--ga-white);
  padding: 132px var(--gutter) 88px;
  text-align: center;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
@media (max-width: 700px) {
  /* v2.4: Variant B (bottom-anchored) preserved exactly from v2.3 — same
     padding (96 / 36), same internal rhythm. Only change: min-height
     480 → 600. The extra +120px becomes photo region ABOVE the bottom-
     anchored text, addressing Ben's "text overflows in certain situations"
     by giving the banner unconditional headroom so dek-wrapping never
     pushes content past the visible area. Text proportions match v2.3
     aesthetic. */
  .page-hero {
    padding: 96px var(--gutter) 36px;
    min-height: 536px;
    justify-content: flex-end;
  }
  .page-hero-badge { margin-bottom: 18px; }
  .page-hero h1 { margin-bottom: 14px; }
  /* v2.7.2 mobile (per Ben MW271-003): cap header dead-space on service
     detail pages where shorter H1s left too much breathing room above
     the badge. Bottom-alignment rule preserved (flex-end), but the floor
     drops from 536 → 420 so short content doesn't stretch the hero. */
  body.page-service-detail .page-hero { min-height: 420px; }
  .page-hero.is-utility { padding: 108px var(--gutter) 64px; min-height: 320px; justify-content: center; }
  .message-hero { padding: 108px var(--gutter) 64px; min-height: 320px; }
  /* v2.5 mobile: services pinned to photo_m floor 536 (same as non-service tier 2);
     privacy stays at its desktop override 400 desktop but uses 320 mobile group default. */
}
.message-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ga-gold), transparent);
}
.message-hero-inner { max-width: 760px; margin: 0 auto; }
.message-hero .eyebrow { color: var(--ga-gold); margin-bottom: 24px; }
.message-hero h1 {
  font-family: var(--display);
  font-size: clamp(40px, 5.4vw, 62px);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--ga-white);
  margin-bottom: 18px;
}
.message-hero p {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin: 0 auto 36px;
  max-width: 580px;
}
.message-hero .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   FADE-UP UTILITY
   ═══════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.07s; }
.fade-up.delay-2 { transition-delay: 0.14s; }
.fade-up.delay-3 { transition-delay: 0.21s; }
.fade-up.delay-4 { transition-delay: 0.28s; }

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION — not optional
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hero-mark, .hero-badge, .hero-headline, .hero-subhead, .hero-cta-row, .hero-scroll {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .service-card:hover, .service-cta:hover { transform: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   INSIGHTS — index grid + cards (section scaffolded, not nav-linked
   or in sitemap.xml until the first real article ships)
   ═══════════════════════════════════════════════════════════ */
.insight-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.66;
  color: #585858;
}
.insight-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.insight-card {
  background: var(--ga-white);
  border: 1px solid rgba(44,44,44,0.12);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
a.insight-card {
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
a.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 56px -28px rgba(15,51,41,0.22);
}
.insight-cat {
  font-family: var(--body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ga-emerald);
  margin-bottom: 18px;
}
.insight-card h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin: 0 0 12px;
}
.insight-card p {
  font-size: 14.5px;
  line-height: 1.62;
  color: #585858;
  margin: 0 0 24px;
}
.insight-meta {
  margin-top: auto;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ga-gold);
}
@media (max-width: 900px) {
  .insight-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   CREDENTIALS STRIP — replaces the stat-band on home (v2.2)
   No oversized numerals, no count-up — eyebrow-weight credentials
   ═══════════════════════════════════════════════════════════ */
.credentials-strip {
  background: var(--ga-ivory);
  padding: 56px var(--gutter);
  border-top: 1px solid rgba(44,44,44,0.12);
  border-bottom: 1px solid rgba(44,44,44,0.12);
}
.credentials-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ga-emerald);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.credentials-strip-inner > span { display: inline-block; padding: 0 14px; }
.credentials-strip-inner .dot { color: var(--ga-gold); padding: 0; }
@media (max-width: 700px) {
  .credentials-strip { padding: 40px var(--gutter); }
  .credentials-strip-inner { flex-direction: column; gap: 16px; }
  .credentials-strip-inner .dot { display: none; }
  .credentials-strip-inner > span { padding: 0; }
}

/* ═══════════════════════════════════════════════════════════════
   v2.6 polish additions — a11y + typography refinement
   ═══════════════════════════════════════════════════════════════ */

/* Skip-link — added to every page header via Pass 2 HTML.
   Hidden off-canvas; reveals on keyboard focus. */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--ga-emerald);
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.18s ease;
}
.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--ga-gold);
  outline-offset: 2px;
}

/* WCAG 2.4.7 — keyboard focus indicator. Mouse clicks don't trigger. */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
.btn:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-ghost:focus-visible,
.btn-submit:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--ga-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Privacy: long-form legal reading column. */
body.page-privacy .article p,
body.page-privacy .article li {
  max-width: 68ch;
  line-height: 1.7;
}
body.page-privacy .article h2 {
  margin-top: 56px;
  margin-bottom: 12px;
}
body.page-privacy .article h2:first-of-type {
  margin-top: 40px;
}

/* ═══════════════════════════════════════════════════════════
   v2.6 Pass 3 (design-normalizer) — additive only
   ═══════════════════════════════════════════════════════════ */

/* Pass 3 fix: home — hero <br/> orphan guard at narrow viewports.
   The hardcoded <br> in .hero-headline can strand "represented." awkwardly
   between 360–480px. Suppress the forced break below 420px so the line
   wraps naturally to max-width: 15ch. */
@media (max-width: 420px) {
  .hero-headline br { display: none; }
  .hero-headline em { display: inline; }
}

/* Pass 3 fix: process — h2<em> wrapping the entire heading produces a
   pure-italic h2 at clamp(30+) px which reads as decorative italic without
   semantic emphasis. Anchor weight so it reads as a display heading,
   not a quoted phrase. (Italic preserved — system-consistent w/ page-hero h1 em.) */
.phase-section h2 em {
  font-weight: 400;
}

/* Pass 3 fix: contact — focus-visible ring on form fields. Generic
   :focus-visible only covers links/buttons; inputs/selects/textarea fall back
   to the existing :focus border-color change, which is too subtle for AA. */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--ga-gold);
  outline-offset: 2px;
}

/* Pass 3 fix: contact — submit button has no observable hover beyond color
   swap. Add the same -2px lift used on service-card hover for consistency,
   reduced-motion safe (the global @media block already neutralizes :hover transforms). */
.btn-submit { transition: background 0.25s, color 0.25s, transform 0.25s var(--ease-out); }
.btn-submit:hover { transform: translateY(-2px); }

/* Pass 3 fix: insights — non-link insight-card has fade-up transition baseline
   from .fade-up, but the static (non-anchor) variant gets a 3px gold top accent
   on hover-of-grid for parity with the gold-rule device used elsewhere
   (page-hero::after, engage-lane::before, contact-side::before). Strictly visual,
   no interactivity claim — cards remain non-interactive until articles ship. */
.insight-card:not(a) {
  position: relative;
}
.insight-card:not(a)::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--ga-gold);
}

/* Pass 3 fix: about — engage-quote sits inside about-section-body but inherits
   the global engage-quote styling which uses gold-on-dark; on the ivory about
   page the gold-on-white label could fail AA at 10.5px. Bump label weight + size
   slightly within the about scope, additive only. */
.about-section-body .engage-quote .label {
  font-size: 11px;
  font-weight: 700;
}

/* Pass 3 fix: privacy — <time> in dek inherits dek color (avoid default link/em blue if browser styles it) */
.page-hero .dek time { color: inherit; font-variant-numeric: tabular-nums; }

/* Pass 3 fix: 404/success — gold bottom rule mirrors top, completes message-hero framing */
.message-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ga-gold), transparent);
}

/* Pass 3 fix: 404/success — live region inner block should not steal block-level layout from inner */
.message-hero-inner[role="status"] { display: block; }

/* Pass 3 fix: services-index — replace inline padding/margin with token-driven rhythm */
.services.services--index { padding-top: 80px; }
.services.services--index .services-grid { margin-top: 0; }

/* Pass 3 fix: service detail pages — section rhythm without inline styles.
   Targets the second (and any subsequent) h2 inside .article, which on detail
   pages is "What's Included" after Overview. Moves prior inline margin-top:64px
   into the stylesheet so rhythm is enforceable across all 6 detail pages. */
body.page-service-detail .article > h2 ~ h2 { margin-top: 64px; }

/* Pass 3 fix: service detail pages — keep the gold italic <em> in the H1 from
   breaking onto its own line as a single italic word at mid-tablet widths.
   The em phrase is the headline payoff; keep it whole until the viewport
   genuinely forces a wrap. */
body.page-service-detail .page-hero h1 em { white-space: nowrap; }
@media (max-width: 520px) {
  body.page-service-detail .page-hero h1 em { white-space: normal; }
}

/* Pass 3 fix: service detail pages — engage-quote breathing room.
   Separates the "When to Engage" pull-quote from the last callout-card so it
   reads as an editorial moment, not a fourth card in the series. */
body.page-service-detail .article .engage-quote { margin-top: 56px; }

/* Pass 3 fix: service detail pages — back-link rhythm.
   Pushes "Back to Services" away from the pull-quote above so it reads as a
   distinct tertiary action. */
body.page-service-detail .article .back-link { margin-top: 48px; }

/* About page — principle cards (v2.7 rewrite). Larger statement-style h3,
   gold "what it asks" tail line. */
.principle-card {
  background: var(--ga-white);
  border-left: 3px solid var(--ga-emerald);
  padding: 28px 32px;
  margin: 22px 0;
  box-shadow: 0 2px 14px rgba(15,51,41,0.05);
}
.principle-card h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: #1A1A1A;
  margin: 0 0 14px;
  line-height: 1.25;
  text-transform: none;
}
.principle-card p { margin-bottom: 14px; }
.principle-card .ask {
  font-size: 15px;
  color: var(--ga-charcoal);
  margin-top: 18px;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(204,157,59,0.25);
}
.principle-card .ask em {
  font-style: italic;
  color: var(--ga-emerald);
  font-weight: 500;
}

/* About page — signature line under the Principal's Note */
.about-section-body .signature {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: rgba(44,44,44,0.62);
  margin-top: 28px;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE TUNING PASS (v2.7 round-2, 2026-05-27)
   - Header chrome too tall on small screens (128px nav-inner with
     96px logo = 15% of a 844px phone viewport).
   - Footer cropped logo too dominant on small screens (128px tall
     reads as the biggest element in the footer).
   - CTA H2s with em-italic phrases wrap to 4+ lines because the
     long emphasized phrase can't break.
   - Hero headline em "represented." overflows at <420px because
     the @<420px override hides <br> without inserting whitespace,
     so the text becomes "Your capital project,represented." with
     no breakable whitespace. Fix: lower the font-size floor on
     mobile so the original two-line layout (br active) fits.
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .nav-inner { height: 92px; }
  .nav-logo img { height: 60px; }

  /* v2.7.2 mobile footer: single-axis centered stack.
     Stacked logo (not horizontal) — its geometric center IS its optical
     center, so the HTML .tagline below it AND every column underneath
     center cleanly on the same vertical axis. */
  .footer-brand .footer-logo-stacked { display: block; height: 92px; margin: 0 auto; }
  .footer-brand .footer-logo-horizontal { display: none; }
  .footer-brand .tagline {
    display: block;
    font-family: var(--body);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 240px;
    margin: 6px auto 0;
    text-align: center;
  }
  .footer-brand { margin-bottom: 36px; text-align: center; }

  /* Center each column + space them */
  .footer-col { text-align: center; }
  .footer-col + .footer-col { margin-top: 28px; }
  .footer-col-title { text-align: center; }
  .footer-col ul.footer-links { list-style: none; padding: 0; margin: 0; }
  .footer-col ul.footer-links li { padding: 6px 0; }
  .footer-contact-line { text-align: center; }

  /* Brighten the locations chip on mobile (was 0.45) */
  .footer-geo { color: rgba(255,255,255,0.65); text-align: center; }

  /* Bottom block: center everything; overrides text-align:left from the
     500px rule above. Disclaimer capped so lines don't run too wide.
     Adds a second subtle divider above the Privacy + site link span
     so the bottom reads in three sections: identity / legal / utility. */
  .footer-bottom { text-align: center; align-items: center; }
  .footer-disclaimer { max-width: 320px; margin-left: auto; margin-right: auto; }
  .footer-bottom > span:nth-last-of-type(2) {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.10);
    padding-top: 18px;
    margin-top: 12px;
  }

  .cta-left h2 { font-size: clamp(22px, 6vw, 28px); }
  .hero-headline { font-size: clamp(36px, 9vw, 48px); }
  /* Restore the original two-line layout: keep <br> active and em
     as inline-block. Cancels the buggy @<420px override above. */
  .hero-headline br { display: inline; }
  .hero-headline em { display: inline-block; }
}

/* ═══════════════════════════════════════════════════════════
   v2.7.1 — SERVICES DROPDOWN NAV (2026-05-27)
   Desktop: hover-open panel beneath Services in .nav-menu.
   Mobile : click-to-expand inline sub-list inside .nav-drawer.
   Uses existing brand tokens — no new globals.
   ═══════════════════════════════════════════════════════════ */

/* — DESKTOP — */
.nav-menu .nav-has-dropdown { position: relative; }

/* Trigger row: Services link + chevron button sit side-by-side */
.nav-menu .nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-menu .nav-dropdown-toggle {
  background: none;
  border: none;
  padding: 6px 2px;
  margin: 0;
  cursor: pointer;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
/* v2.7.2: SVG chevron — geometrically symmetric, no position drift on
   rotation (the old unicode ▾ shifted visually when flipped 180° because
   its bbox mass is bottom-loaded). */
.nav-menu .nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  color: rgba(255,255,255,0.70);
  transition: transform 0.25s var(--ease-out), color 0.2s;
  transform-origin: 50% 50%;
}
.nav-menu .nav-chevron svg { display: block; width: 10px; height: 6px; }
.nav-menu .nav-has-dropdown:hover .nav-chevron,
.nav-menu .nav-has-dropdown.open .nav-chevron {
  color: var(--ga-gold);
  transform: rotate(180deg);
}

/* The dropdown panel itself */
.nav-menu .nav-dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 0;
  padding: 18px 0;
  min-width: 280px;
  background: var(--ga-ivory);
  border-top: 2px solid var(--ga-gold);
  box-shadow: 0 18px 40px rgba(15,51,41,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0s linear 0.2s;
  z-index: 1100;
  list-style: none;
}
.nav-menu .nav-has-dropdown:hover .nav-dropdown,
.nav-menu .nav-has-dropdown.open .nav-dropdown,
.nav-menu .nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), visibility 0s linear 0s;
}

.nav-menu .nav-dropdown a {
  display: block;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ga-emerald);
  padding: 10px 22px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  position: static;     /* override .nav-menu a positioning */
}
.nav-menu .nav-dropdown a::after { display: none; }  /* kill underline rule from generic .nav-menu a */
.nav-menu .nav-dropdown a:hover,
.nav-menu .nav-dropdown a:focus {
  color: var(--ga-gold);
  background: rgba(204,157,59,0.06);
  outline: none;
}

/* Hide dropdown entirely on mobile — the drawer owns it instead. */
@media (max-width: 900px) {
  .nav-menu .nav-dropdown,
  .nav-menu .nav-chevron,
  .nav-menu .nav-dropdown-toggle { display: none; }
}

/* — MOBILE DRAWER SUBMENU — */
.nav-drawer .drawer-has-sub > .drawer-parent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.nav-drawer .drawer-has-sub > .drawer-parent-row > a {
  flex: 1 1 auto;
  /* inherits .nav-drawer a base styling */
}
.nav-drawer .drawer-sub-toggle {
  flex: 0 0 auto;
  background: none;
  border: none;
  padding: 12px 4px;
  margin: 0 -4px 0 0;
  cursor: pointer;
  /* color follows the sibling Services link's state — see rules below */
  color: var(--ga-emerald);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-width: 36px;
  transition: color 0.2s;
}
/* v2.7.2: SVG chevron — geometrically symmetric. The 16x16 button wraps
   a 10x6 SVG; rotation pivots around the button's center, which is
   exactly the SVG's visual center — zero drift between ▾ and ▴ states. */
.nav-drawer .drawer-sub-toggle .drawer-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease-out);
  transform-origin: 50% 50%;
}
.nav-drawer .drawer-sub-toggle .drawer-chevron svg {
  display: block; width: 10px; height: 6px;
}
.nav-drawer .drawer-has-sub.open .drawer-sub-toggle .drawer-chevron {
  transform: rotate(180deg);
}
/* Chevron color follows the Services link color states. Default emerald;
   gold when (a) link is hovered/focused, (b) link is current page, (c)
   the sub-list is open, OR (d) the toggle itself is hovered/focused. */
.nav-drawer .drawer-parent-row:hover .drawer-sub-toggle,
.nav-drawer .drawer-parent-row:has(a:hover) .drawer-sub-toggle,
.nav-drawer .drawer-parent-row:has(a:focus) .drawer-sub-toggle,
.nav-drawer .drawer-parent-row:has(a[aria-current="page"]) .drawer-sub-toggle,
.nav-drawer .drawer-has-sub.open .drawer-sub-toggle,
.nav-drawer .drawer-sub-toggle:hover,
.nav-drawer .drawer-sub-toggle:focus {
  color: var(--ga-gold);
}

.nav-drawer .drawer-sub {
  list-style: none;
  padding: 0 0 0 18px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out);
  border-bottom: 0;
}
.nav-drawer .drawer-has-sub.open .drawer-sub {
  max-height: 600px;   /* generous ceiling; sub-list is short */
}
.nav-drawer .drawer-sub li {
  border-bottom: 1px solid rgba(44,44,44,0.06);
}
.nav-drawer .drawer-sub li:last-child { border-bottom: none; }
.nav-drawer .drawer-sub a {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 14px 0;
  color: var(--ga-emerald);
}
.nav-drawer .drawer-sub a:hover,
.nav-drawer .drawer-sub a:focus { color: var(--ga-gold); }



/* ═════════════════════════════════════════
   FAQ — collapsible "Common Questions" (native <details>/<summary>)
   Content stays in the DOM while collapsed → crawlable / AI-readable.
   No JS. Keyboard- and screen-reader-accessible by default.
   ═════════════════════════════════════════ */
.faq { margin: 22px 0 8px; border-top: 1px solid rgba(15,51,41,0.12); }
.faq-item { border-bottom: 1px solid rgba(15,51,41,0.12); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.32;
  color: var(--ga-emerald);
  transition: color 0.2s ease;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ""; }
.faq-item > summary:hover { color: var(--ga-gold); }
.faq-item > summary:focus-visible { outline: 2px solid var(--ga-gold); outline-offset: 4px; }
/* chevron */
.faq-item > summary::after {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-right: 2px solid var(--ga-gold);
  border-bottom: 2px solid var(--ga-gold);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] > summary::after { transform: rotate(-135deg); }
.faq-answer { padding: 0 40px 22px 0; }
.faq-answer p { font-size: 17px; line-height: 1.75; color: var(--ga-charcoal); margin: 0; }
.faq-answer a { color: var(--ga-emerald); text-decoration: underline; text-underline-offset: 2px; }
.faq-answer a:hover { color: var(--ga-gold); }
@media (max-width: 640px) {
  .faq-item > summary { font-size: 18px; gap: 16px; }
}


/* ════════════════════════════════════════════════════════════════
   HOME — section-rhythm restyle (2026-06-02)
   Distinct grounds + treatments so adjacent home sections stop blending:
   green(why) -> cream(teaser) -> sage(process) -> tan(engage) -> mint(geo) -> green(cta).
   Lifted verbatim from the approved prototype.
   ════════════════════════════════════════════════════════════════ */
.process     { background: #D7E4DC; }   /* sage — separates Process from cream Teaser + tan Engage */
.engage-band { background: #ECE5D8; }   /* warm tan — makes the white engagement cards read */
.geo-band    { background: #E6EFE9; }   /* light mint */

/* Case Studies teaser breathing room — !important so a future index.html regen
   (inline padding) cannot revert it. */
.selected-work-teaser { padding: 96px var(--gutter) 92px !important; }

/* Engagement reads distinctly from the centered Process above it */
.engage-band .section-head { text-align: left; max-width: var(--max-w); padding-left: var(--gutter); padding-right: var(--gutter); }
.engage-band .section-head .eyebrow::after { margin-left: 0; margin-right: auto; }
.engage-lanes { gap: 22px; background: transparent; margin-top: 44px; }
.engage-lane  { box-shadow: 0 6px 28px rgba(20,57,46,.10); border-radius: 3px; }

/* Geo heading: markup uses <h2> but only .geo-header h3 was styled, so it fell
   back to tiny default — bring it to the section-head scale. */
.geo-header h2 { font-size: clamp(32px, 4.3vw, 52px); font-weight: 300; letter-spacing: -.025em; line-height: 1.08; color: #1A1A1A; margin: 18px 0 0; }
.geo-header h2 em { font-style: italic; color: var(--ga-emerald); font-weight: 400; }

/* Service-page boundary note — fine-print role disclaimer above the back-link */
.article p.boundary-note {
  margin: 44px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--ga-charcoal-20);
  font-family: var(--body);
  font-size: 12.5px;
  line-height: 1.62;
  letter-spacing: 0.01em;
  color: var(--ga-charcoal-60);
  max-width: 70ch;
}
body.page-service-detail .article .boundary-note + .back-link { margin-top: 28px; }
