/* ==========================================================================
   HALE & ASSOCIATES — Stylesheet
   Mobile-first. Light-mode only. Single source of truth for design tokens.
   Breakpoints: base ≤640px → sm ≥640px → md ≥900px → lg ≥1200px.
   ========================================================================== */

*,
*::before,
*::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand palette — single source of truth */
  --brand-green:        #02733e;        /* CTAs, accents, links, focus */
  --brand-green-deep:   #044024;        /* hover/active */
  --brand-green-logo:   #0cf270;        /* logo SVG only — never UI */
  --brand-green-soft:   rgba(2,115,62,0.06); /* swoosh + decorative tints */
  --brand-green-tint:   rgba(2,115,62,0.10);

  /* Neutral text */
  --text:               #2B2B2B;
  --text-muted:         #6B6B6B;
  --text-light:         #999999;

  /* Surfaces */
  --surface:            #FFFFFF;
  --surface-alt:        #F4F4F4;
  --surface-card:       #FFFFFF;
  --surface-dark:       #2B2B2B;        /* footer only */

  /* Borders / dividers */
  --divider:            #E5E5E5;
  --divider-strong:     #CFCFCF;
  --border-soft:        rgba(0,0,0,0.08);

  /* Type — primary/accent */
  --font-sans:  'Jost', Arial, sans-serif;
  --font-serif: 'Lora', Georgia, serif;

  /* Fluid type — body floor 16px on mobile (retiree readability) */
  --fs-display: clamp(2.4rem, 7vw + 1rem, 4.4rem);
  --fs-h1:      clamp(2.0rem, 5vw + 0.5rem, 3.2rem);
  --fs-h2:      clamp(1.7rem, 3.5vw + 0.5rem, 2.6rem);
  --fs-h3:      clamp(1.2rem, 1.5vw + 0.7rem, 1.5rem);
  --fs-lead:    clamp(1.05rem, 0.6vw + 1rem, 1.3rem);
  --fs-body:    clamp(1rem, 0.3vw + 0.95rem, 1.125rem);
  --fs-small:   0.92rem;
  --fs-eyebrow: 0.78rem;

  /* Spacing scale (~8pt grid, fluid) */
  --space-1: clamp(0.4rem, 0.5vw, 0.5rem);
  --space-2: clamp(0.75rem, 1vw, 1rem);
  --space-3: clamp(1.1rem, 1.5vw, 1.5rem);
  --space-4: clamp(1.5rem, 2.5vw, 2rem);
  --space-5: clamp(2.25rem, 4vw, 3rem);
  --space-6: clamp(3rem, 5.5vw, 4.5rem);
  --space-7: clamp(4rem, 7vw, 6.5rem);
  --space-8: clamp(5.5rem, 10vw, 9rem);

  /* Radii */
  --radius-pill: 999px;
  --radius-card: 16px;
  --radius-image: 14px;
  --radius-sm: 8px;

  /* Shadows */
  --shadow-card:  0 6px 24px rgba(20,20,20,0.06);
  --shadow-hover: 0 14px 36px rgba(20,20,20,0.10);
  --shadow-modal: 0 30px 80px rgba(20,20,20,0.18);

  /* Motion */
  --ease:       cubic-bezier(.22,.61,.36,1);
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
  --dur-fast:   160ms;
  --dur-base:   260ms;
  --dur-slow:   600ms;

  /* Layout */
  --container:        1200px;
  --container-narrow: 880px;
  --gutter:           clamp(1.25rem, 4vw, 2rem);
  --section-pad:      clamp(3rem, 6vw + 1rem, 7rem);
  --nav-height:       64px;

  color-scheme: light;
}

/* ============================================================
   BASE
   ============================================================ */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--surface);
  color: var(--text);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video, iframe { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  color: var(--text);
  line-height: 1.15;
  font-weight: 500;
  text-wrap: balance;
}

p { text-wrap: pretty; }

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

:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.container--narrow { max-width: var(--container-narrow); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Apply grayscale at the source (replaces inline filter attributes) */
.is-grayscale { filter: grayscale(100%); }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: var(--space-3);
}

.section-heading {
  font-family: var(--font-sans);
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-2);
}

.section-lede {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-5);
  line-height: 1.55;
}

.serif { font-family: var(--font-serif); }
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 500; }

/* ============================================================
   BUTTONS — pill, Jost 600, brand green (per brand book)
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;          /* WCAG 2.5.5 + retiree-friendly */
  padding: 14px 28px;
  background: var(--brand-green);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  border-radius: var(--radius-pill);
  border: 2px solid var(--brand-green);
  cursor: pointer;
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              transform var(--dur-fast) var(--ease);
  text-align: center;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  background: var(--brand-green-deep);
  border-color: var(--brand-green-deep);
}

.btn:active { transform: translateY(1px); }

.btn--sm {
  min-height: 40px;
  padding: 10px 22px;
  font-size: 0.92rem;
}

.btn--lg {
  min-height: 56px;
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn--outline {
  background: transparent;
  color: var(--brand-green);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--brand-green);
  color: #fff;
}

.btn--on-dark {
  background: #fff;
  color: var(--brand-green);
  border-color: #fff;
}
.btn--on-dark:hover,
.btn--on-dark:focus-visible {
  background: var(--surface-alt);
  color: var(--brand-green-deep);
  border-color: var(--surface-alt);
}

.btn--hero {
  background: rgba(0,0,0,0.18);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  padding: 16px 36px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--hero:hover,
.btn--hero:focus-visible {
  background: var(--brand-green);
  border-color: var(--brand-green);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  color: var(--brand-green);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: gap var(--dur-fast) var(--ease), color var(--dur-base) var(--ease);
  min-height: 44px;
}
.link-arrow:hover { gap: 0.7em; color: var(--brand-green-deep); }
.link-arrow span { transition: transform var(--dur-fast) var(--ease); }
.link-arrow:hover span { transform: translateX(2px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease);
}
.nav__inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.nav__logo img { height: 26px; width: auto; }
.nav__links {
  display: none;            /* mobile-first: hidden until md */
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.nav__links a:not(.btn) {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  padding: 8px 4px;
  transition: color var(--dur-base) var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--brand-green); }

/* Hero-page: nav transparent at top, white when scrolled */
.nav.scrolled,
.page--inner .nav {
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}
body:not(.page--inner) .nav:not(.scrolled) .nav__links a:not(.btn) {
  color: rgba(255,255,255,0.92);
}
body:not(.page--inner) .nav:not(.scrolled) .nav__links a:not(.btn):hover {
  color: #fff;
}
body:not(.page--inner) .nav:not(.scrolled) .nav__toggle span { background: #fff; }

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  background: none;
  padding: 10px;
  z-index: 110;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__sidebar {
  position: absolute;
  top: 100%;
  inset-inline: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: var(--space-3) var(--gutter) var(--space-4);
  background: #fff;
  border-bottom: 1px solid var(--divider);
  box-shadow: 0 12px 30px rgba(0,0,0,0.10);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--dur-base) var(--ease),
              opacity var(--dur-base) var(--ease);
  z-index: 109;
}
.nav__sidebar.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.nav__sidebar a:not(.btn) {
  display: block;
  padding: 14px 0;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--divider);
}
.nav__sidebar .btn {
  margin-top: var(--space-3);
  width: 100%;
}
.nav__overlay { display: none; }

@media (min-width: 900px) {
  :root { --nav-height: 72px; }
  .nav__inner { height: 72px; }
  .nav__links { display: inline-flex; }
  .nav__toggle { display: none; }
  .nav__sidebar { display: none !important; }
}

/* Hero-page transparent-nav text overrides */
body:not(.page--inner) .nav:not(.scrolled) .nav__toggle span { background: #fff; }

/* ============================================================
   HERO — homepage
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;       /* iOS Safari friendly */
  min-height: 100vh;        /* fallback */
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: calc(var(--nav-height) + var(--space-5));
  padding-bottom: var(--space-7);
  background: var(--surface-dark);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg picture, .hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% center;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(20,20,22,0.45) 0%,
      rgba(20,20,22,0.30) 30%,
      rgba(20,20,22,0.55) 70%,
      rgba(20,20,22,0.85) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.hero__content h1 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  max-width: 18ch;
  margin-bottom: var(--space-4);
  text-wrap: balance;
}
.hero__content h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: #fff;
}
.hero__swoosh {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  height: 22svh;
  opacity: 0.85;
}
.hero__swoosh svg { width: 100%; height: 100%; display: block; }

@media (min-width: 900px) {
  .hero { align-items: center; padding-bottom: var(--space-7); }
  .hero__content h1 { max-width: 16ch; }
}

/* ============================================================
   BRAND SWOOSH (reusable decorative motif)
   ============================================================ */
.swoosh {
  position: absolute;
  inset-inline: -4%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.swoosh.visible,
.swoosh--always { opacity: 1; }
.swoosh svg { width: 100%; height: 100%; display: block; }

.swoosh--top    { top: 0; height: 240px; }
.swoosh--bottom { bottom: 0; height: 240px; }
.swoosh--center { top: 50%; transform: translateY(-50%); height: 320px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--surface-alt);
  border-block: 1px solid var(--divider);
  padding-block: var(--space-5);
}
.trust-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 2rem);
}
.trust-item { text-align: center; min-width: 0; padding-block: 0; }
.trust-item__number {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
}
.trust-item__label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-item__sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}
.trust-divider {
  width: 1px;
  height: 56px;
  background: var(--divider-strong);
  justify-self: center;
}

@media (max-width: 639px) {
  .trust-bar { padding-block: var(--space-2); }
  .trust-bar__inner { grid-template-columns: 1fr; gap: 0; }
  .trust-divider { display: none; }
  .trust-item {
    display: grid;
    grid-template-columns: minmax(4.5rem, auto) 1fr;
    column-gap: clamp(1rem, 4vw, 1.5rem);
    align-items: baseline;
    text-align: left;
    padding-block: var(--space-3);
  }
  .trust-item + .trust-divider + .trust-item {
    border-top: 1px solid var(--divider-strong);
  }
  .trust-item__number {
    font-size: clamp(2.4rem, 9vw, 3rem);
    grid-row: 1 / span 2;
    align-self: center;
    color: var(--brand-green);
    font-variant-numeric: tabular-nums;
  }
  .trust-item__label {
    margin-top: 0;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
  }
  .trust-item__sub {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0.15rem;
    font-size: 0.95rem;
    line-height: 1.4;
    align-self: start;
  }

  /* Pillars lede — tighter on phone */
  .pillars__lede {
    font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    line-height: 1.25;
    margin-bottom: var(--space-5);
  }
}

/* ============================================================
   SECTIONS — generic
   ============================================================ */
.section {
  position: relative;
  padding-block: var(--section-pad);
}
.section--alt { background: var(--surface-alt); }
.section--bordered { border-block: 1px solid var(--divider); }

/* ============================================================
   SERVICES PREVIEW (homepage)
   ============================================================ */
.services {
  position: relative;
  padding-block: var(--section-pad);
  border-bottom: 1px solid var(--divider);
  overflow: hidden;
}
.services__intro {
  max-width: 60ch;
  margin-bottom: var(--space-5);
}
.services__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}
.service-card {
  position: relative;
  display: block;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1.25rem, 4vw, 2rem);
  min-height: 160px;
  background: var(--surface-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
}
.service-card__num {
  position: absolute;
  top: clamp(0.75rem, 2vw, 1.25rem);
  right: clamp(1rem, 2.5vw, 1.5rem);
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(3rem, 11vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.85;
  color: var(--brand-green);
  opacity: 0.20;
  pointer-events: none;
  user-select: none;
  font-variant-numeric: tabular-nums;
}
.service-card h3 {
  position: relative;
  font-family: var(--font-sans);
  font-size: clamp(1.3rem, 2.8vw, 1.8rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}
.service-card__hover-text {
  position: relative;
  margin-top: 0.6rem;
  font-size: var(--fs-body);
  color: var(--text-muted);
  line-height: 1.55;
  display: none;
  text-wrap: pretty;
}
.service-card.tapped .service-card__hover-text { display: block; }
.service-card:hover {
  border-color: var(--brand-green);
  box-shadow: var(--shadow-card);
}
.service-card:hover h3 { color: var(--brand-green-deep); }

.services__cta {
  margin-top: var(--space-5);
  display: flex;
  justify-content: flex-start;
}

@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .service-card { padding: var(--space-5) var(--space-4); min-height: 200px; }
  .service-card__hover-text {
    position: absolute;
    inset: auto var(--space-4) var(--space-4);
    display: block;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--dur-base) var(--ease),
                transform var(--dur-base) var(--ease);
  }
  .service-card:hover .service-card__hover-text { opacity: 1; transform: translateY(0); }
  .service-card:hover h3 { transform: translateY(-8px); }
}

/* ============================================================
   OUR STORY (homepage)
   ============================================================ */
.our-story {
  background: var(--surface-alt);
  border-block: 1px solid var(--divider);
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.our-story__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
  position: relative;
  z-index: 1;
}
.our-story__text { max-width: 36ch; }
.our-story__text h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: var(--fs-h2);
  line-height: 1.1;
  margin-block: var(--space-2) 0;
}
.our-story__quote {
  margin-top: var(--space-3);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: 1.55;
  border-left: 2px solid var(--brand-green);
  padding-left: 1rem;
}
.our-story__video {
  width: 100%;
}
.our-story__video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: var(--surface-dark);
  box-shadow: var(--shadow-card);
}
.our-story__video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.our-story__link {
  margin-top: var(--space-2);
  font-size: 1.05rem;
}

@media (min-width: 900px) {
  .our-story__inner {
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(3rem, 6vw, 6rem);
  }
  .our-story__link { grid-column: 1 / -1; }
}

/* ============================================================
   CTA — green card on white, used on every page
   ============================================================ */
.cta {
  padding-block: var(--section-pad);
  background: var(--surface);
}
.cta--alt { background: var(--surface-alt); }

.cta__inner {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--brand-green);
  color: #fff;
  border-radius: var(--radius-card);
  padding: clamp(3rem, 9vw, 6rem) clamp(1.75rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
  text-align: left;
  isolation: isolate;
}
/* Inset brand swoosh — sweeping curve at the bottom of the card */
.cta__inner::before {
  content: '';
  position: absolute;
  inset: auto -8% -10% -8%;
  height: 70%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'><path d='M-40 220 Q260 80 540 150 Q840 220 1100 110 Q1320 30 1480 140 L1480 320 L-40 320 Z' fill='%23ffffff' fill-opacity='0.08'/><path d='M-40 270 Q260 140 540 200 Q840 260 1100 170 Q1320 100 1480 200 L1480 320 L-40 320 Z' fill='%23ffffff' fill-opacity='0.05'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
/* Soft top-left highlight so the slab isn't flat */
.cta__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% -20%, rgba(255,255,255,0.10) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}
.cta__head,
.cta__body { position: relative; z-index: 1; }
.cta__inner h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.6rem, 9vw, 6rem);
  color: #fff;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 var(--space-3);
  max-width: 14ch;
}
.cta__inner h2 em {
  font-style: italic;
  color: #fff;
}
.cta__kicker {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0.005em;
  color: rgba(255,255,255,0.78);
  max-width: 38ch;
  margin: 0 0 var(--space-5);
}
.cta__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3) var(--space-4);
}
.cta__inner .btn {
  align-self: flex-start;
  min-width: 200px;
}
.cta__alt {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
  margin: 0;
}
.cta__alt a {
  color: #fff;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 1px;
  transition: border-color var(--dur-base) var(--ease);
  white-space: nowrap;
}
.cta__alt a:hover { border-bottom-color: #fff; }

/* Hide the legacy list/strong/span if it ever sneaks back in */
.cta__list { display: none; }

@media (min-width: 720px) {
  .cta__inner h2 { max-width: 12ch; }
  .cta__body { gap: var(--space-3) var(--space-5); }
}

/* ============================================================
   PAGE HERO — inner pages
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-7));
  padding-bottom: var(--space-5);
  position: relative;
  background: var(--surface);
  overflow: hidden;
}
.page-hero__title {
  font-family: var(--font-sans);
  font-size: var(--fs-h1);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: var(--space-3);
  max-width: 22ch;
  text-wrap: balance;
}
.page-hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brand-green-deep);
}
.page-hero__sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 60ch;
  line-height: 1.55;
}

/* ============================================================
   SERVICES DETAIL — accordion
   ============================================================ */
.services-detail {
  padding-block: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.accordion {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.accordion__item {
  border-bottom: 1px solid var(--divider);
  position: relative;
  transition: border-color var(--dur-base) var(--ease);
}
.accordion__item:first-child { border-top: 1px solid var(--divider); }
.accordion__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--brand-green);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--dur-base) var(--ease);
}
.accordion__item:has(.accordion__trigger[aria-expanded="true"])::before {
  transform: scaleY(1);
}
.accordion__trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(0.75rem, 2vw, 1.25rem);
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-sans);
  color: var(--text);
  cursor: pointer;
  transition: color var(--dur-base) var(--ease),
              background var(--dur-base) var(--ease);
  min-height: 64px;
}
.accordion__trigger:hover {
  color: var(--brand-green);
  background: var(--brand-green-soft);
}
.accordion__trigger[aria-expanded="true"] { color: var(--brand-green-deep); }

.accordion__num {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brand-green);
  opacity: 0.4;
  width: clamp(2.4rem, 6vw, 4rem);
  text-align: left;
  transition: opacity var(--dur-base) var(--ease);
}
.accordion__trigger[aria-expanded="true"] .accordion__num,
.accordion__trigger:hover .accordion__num { opacity: 1; }

.accordion__title {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1.25;
}

.accordion__icon {
  width: 22px;
  height: 22px;
  color: var(--text-light);
  transition: transform var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease);
  flex-shrink: 0;
}
.accordion__icon svg { width: 100%; height: 100%; }
.accordion__trigger[aria-expanded="true"] .accordion__icon {
  transform: rotate(180deg);
  color: var(--brand-green);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease);
}
.accordion__content {
  padding: 0 clamp(0.75rem, 2vw, 1.25rem) clamp(1.5rem, 4vw, 2rem)
           clamp(3.5rem, 9vw, 5.5rem);
}
.accordion__content p {
  color: var(--text-muted);
  font-size: var(--fs-body);
  line-height: 1.75;
  max-width: 60ch;
}
.accordion__content p + p { margin-top: 0.75rem; }

@media (max-width: 639px) {
  .accordion__content { padding-left: clamp(0.75rem, 4vw, 1.25rem); }
}

/* ============================================================
   APPROACH SPLIT (services page)
   ============================================================ */
.approach {
  padding-block: var(--section-pad);
}
.approach--alt {
  background: var(--surface-alt);
  border-block: 1px solid var(--divider);
}
.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  align-items: center;
}
.split__text > * + * { margin-top: var(--space-3); }
.split__text h2 {
  font-family: var(--font-sans);
  font-size: var(--fs-h2);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.split__text h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-green-deep);
}
.split__text p {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 50ch;
}
.split__text .btn { margin-top: var(--space-3); }
.split__img img,
.split__img iframe {
  width: 100%;
  border-radius: var(--radius-image);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.split__img--video > div { aspect-ratio: 16/9; }

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); }
  .split__img img { aspect-ratio: 4/5; }
}

/* ============================================================
   STORY (about page)
   ============================================================ */
.story {
  padding-block: var(--section-pad);
  background: var(--surface);
}
.story .split__text h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

/* ============================================================
   TEAM GRID (about page)
   ============================================================ */
.team-grid-section {
  padding-block: var(--section-pad);
  position: relative;
}
.team-grid-section--alt {
  background: var(--surface-alt);
  border-block: 1px solid var(--divider);
}
.team-grid-section .eyebrow { font-size: var(--fs-eyebrow); }
.team-grid-section .section-heading { margin-bottom: var(--space-5); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 3vw, 2rem);
}
.team-grid--leadership { grid-template-columns: repeat(1, 1fr); gap: var(--space-5); }

.team-card {
  position: relative;
  cursor: pointer;
  background: transparent;
  border: 0;
  text-align: left;
  width: 100%;
  padding: 0;
  transition: transform var(--dur-base) var(--ease);
}
.team-card:hover { transform: translateY(-4px); }
.team-card__photo {
  position: relative;
  margin-bottom: var(--space-2);
  border-radius: var(--radius-image);
  overflow: hidden;
  background: var(--surface-alt);
  aspect-ratio: 4/5;
}
.team-card__photo img,
.team-card__photo svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transition: transform var(--dur-slow) var(--ease),
              filter var(--dur-base) var(--ease);
  filter: grayscale(100%) contrast(1.02);
}
.team-card:hover .team-card__photo img { transform: scale(1.03); }
.team-card h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 0.2rem;
}
.team-card__title {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Initial-monogram fallback when photo is missing */
.team-card__monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--surface-alt);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  color: var(--brand-green);
  letter-spacing: -0.04em;
  filter: none;
}
.team-card__monogram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 90%, var(--brand-green-tint) 0%, transparent 60%);
  pointer-events: none;
}

.team-grid--leadership .team-card { display: grid; gap: var(--space-3); }

@media (min-width: 640px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
  .team-grid--leadership { grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 5vw, 4rem); }
}
@media (min-width: 1100px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   BIO MODAL
   ============================================================ */
.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease);
}
.bio-modal.active { opacity: 1; pointer-events: auto; }
.bio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20,20,22,0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.bio-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 92vh;
  background: #fff;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  overflow-y: auto;
  box-shadow: var(--shadow-modal);
  transform: translateY(20px);
  transition: transform var(--dur-base) var(--ease);
}
.bio-modal.active .bio-modal__content { transform: translateY(0); }
.bio-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--divider);
  background: #fff;
  color: var(--text);
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 2;
  transition: background var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease);
}
.bio-modal__close:hover {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}
.bio-modal__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: start;
}
.bio-modal__photo {
  border-radius: var(--radius-image);
  overflow: hidden;
  background: var(--surface-alt);
  aspect-ratio: 4/5;
  max-width: 240px;
}
.bio-modal__photo img,
.bio-modal__photo svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  filter: grayscale(100%);
}
.bio-modal__photo iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.bio-modal__inner--has-video .bio-modal__photo {
  aspect-ratio: 16/9;
  max-width: 100%;
}
.bio-modal__info { min-width: 0; }
.bio-modal__info h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.bio-modal__contact-line {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  padding: 0;
}
.bio-modal__contact-line + .bio-modal__contact-line { margin-top: 0.1rem; }
.bio-modal__contact-line a {
  color: var(--brand-green);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease);
}
.bio-modal__contact-line a:hover { border-bottom-color: var(--brand-green); }
.bio-modal__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-right: 0.3rem;
}
.bio-modal__bio { margin-top: var(--space-3); }
.bio-modal__bio p {
  color: var(--text);
  font-size: var(--fs-body);
  line-height: 1.7;
  max-width: 64ch;
}
.bio-modal__bio p + p { margin-top: 0.75rem; }

@media (min-width: 640px) {
  .bio-modal { align-items: center; }
  .bio-modal__content {
    border-radius: var(--radius-card);
    width: min(92vw, 880px);
    max-height: 88vh;
  }
  .bio-modal__inner {
    grid-template-columns: 220px 1fr;
    gap: var(--space-4);
  }
  .bio-modal__inner--has-video {
    grid-template-columns: 1.2fr 1fr;
  }
}
@media (min-width: 1100px) {
  .bio-modal__content { width: min(90vw, 1080px); }
  .bio-modal__inner { grid-template-columns: 280px 1fr; }
  .bio-modal__inner--has-video { grid-template-columns: 1.4fr 1fr; }
}

body.modal-open { overflow: hidden; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface-dark);
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}
.footer__strip {
  height: 4px;
  background: linear-gradient(90deg,
    var(--brand-green-deep) 0%,
    var(--brand-green) 50%,
    var(--brand-green-deep) 100%);
}
.footer__main {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-6) var(--gutter) var(--space-4);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__brand img {
  height: 26px;
  width: auto;
  align-self: flex-start;
  opacity: 0.95;
}
.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.45;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.4rem;
}
.footer__social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.78);
  transition: background var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              border-color var(--dur-base) var(--ease);
}
.footer__social a:hover {
  background: var(--brand-green);
  color: #fff;
  border-color: var(--brand-green);
}
.footer__social svg { width: 18px; height: 18px; fill: currentColor; }

.footer__heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--space-2);
}
.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__nav a,
.footer__contact-value {
  color: rgba(255,255,255,0.78);
  transition: color var(--dur-base) var(--ease);
  font-size: 1rem;
  display: inline-block;
  min-height: 32px;
  line-height: 1.4;
}
.footer__nav a:hover,
.footer__contact-value:hover { color: var(--brand-green); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bbb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-base) var(--ease);
}
.bbb-badge:hover { border-color: rgba(255,255,255,0.25); }
.bbb-badge__icon { width: 32px; height: 32px; flex-shrink: 0; }
.bbb-badge__text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.3;
  white-space: nowrap;
}
.bbb-badge__text strong {
  display: block;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-3) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__bottom-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
}
.footer__legal a {
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  transition: color var(--dur-base) var(--ease);
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}
.footer__legal a:hover { color: var(--brand-green); }
.footer__copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
}
.footer__copyright a { color: rgba(255,255,255,0.78); border-bottom: 1px solid currentColor; }

.footer__disclosure {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-3) var(--gutter) var(--space-5);
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
}
.footer__disclosure p + p { margin-top: 0.75rem; }

@media (min-width: 640px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: clamp(2rem, 4vw, 3rem); }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer__bottom-stack { flex-direction: row; align-items: center; gap: var(--space-4); }
}

/* ============================================================
   ANIMATIONS — fade in, swoosh reveal
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in, .swoosh { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   GPT-TASTE PASS — modern editorial sections
   ============================================================ */

/* Hero — cinematic center, 2-line display */
.hero { align-items: center; }
.hero__content { text-align: left; max-width: 1100px; }
.hero__content h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 22ch;
  margin-bottom: var(--space-5);
  font-weight: 500;
}
.hero__content h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}
.hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}
.hero__ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 12px 4px;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border-color var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease),
              gap var(--dur-fast) var(--ease);
}
.hero__ghost:hover,
.hero__ghost:focus-visible {
  color: #fff;
  border-color: #fff;
  gap: 0.7rem;
}

/* Pillars strip — three editorial pillars under trust bar */
.pillars {
  background: var(--surface);
  padding-block: var(--section-pad);
  border-bottom: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
}
.pillars__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.pillars__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 32ch;
  margin-bottom: var(--space-6);
  color: var(--text);
}
.pillars__lede em {
  font-style: italic;
  color: var(--brand-green-deep);
}
.pillars__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--divider);
}
.pillar {
  padding: var(--space-5) 0 var(--space-4);
  border-bottom: 1px solid var(--divider);
  position: relative;
}
.pillar__num {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--brand-green);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
  display: block;
}
.pillar__word {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-3);
  color: var(--text);
}
.pillar__word em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brand-green-deep);
}
.pillar__body {
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 38ch;
}

@media (min-width: 900px) {
  .pillars__grid {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--divider);
  }
  .pillar {
    padding: var(--space-6) clamp(1.5rem, 3vw, 2.5rem);
    border-bottom: 0;
    border-right: 1px solid var(--divider);
  }
  .pillar:first-child { padding-left: 0; }
  .pillar:last-child { border-right: 0; padding-right: 0; }
}

/* Service-card upgrade — Lora italic mini-quote, slight scroll stagger */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--text);
  isolation: isolate;
}
.service-card__lede {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 0.6rem;
  max-width: 24ch;
}
@media (min-width: 640px) {
  .service-card { min-height: 240px; }
  .service-card__lede {
    margin-top: 0.8rem;
    opacity: 0.9;
  }
}

/* Card-stack reveal (skill: card_stack adapted to scroll-stagger) */
.stagger-up { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.stagger-up.visible { opacity: 1; transform: translateY(0); }
.stagger-up:nth-child(2) { transition-delay: 90ms; }
.stagger-up:nth-child(3) { transition-delay: 180ms; }
.stagger-up:nth-child(4) { transition-delay: 270ms; }

/* Process steps — How we work */
.process {
  padding-block: var(--section-pad);
  background: var(--surface-alt);
  border-block: 1px solid var(--divider);
  position: relative;
  overflow: hidden;
}
.process__head {
  max-width: var(--container);
  margin: 0 auto var(--space-6);
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  align-items: end;
}
.process__head h2 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 18ch;
}
.process__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-green-deep);
}
.process__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 38ch;
  line-height: 1.5;
}
@media (min-width: 900px) {
  .process__head { grid-template-columns: 1.2fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
}
.process__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
}
.step {
  position: relative;
  padding: clamp(1.75rem, 4vw, 2.5rem) 0 var(--space-4);
  border-top: 1px solid var(--divider);
}
.step:last-child { border-bottom: 1px solid var(--divider); }
.step__num {
  display: block;
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--brand-green);
  opacity: 0.55;
  margin: 0 0 var(--space-3);
  font-variant-numeric: tabular-nums;
  pointer-events: none;
  user-select: none;
}
.step__label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: var(--space-2);
}
.step__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
  max-width: 18ch;
}
.step__title em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--brand-green-deep);
}
.step__body {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 42ch;
}
@media (min-width: 900px) {
  .process__grid { grid-template-columns: repeat(3, 1fr); }
  .step {
    padding: clamp(2rem, 4vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) var(--space-5) 0;
    border-top: 1px solid var(--divider);
    border-bottom: 0;
  }
  .step:not(:last-child) {
    border-right: 1px solid var(--divider);
    margin-right: clamp(0.5rem, 1.5vw, 1.5rem);
  }
  .step:last-child { border-bottom: 0; }
  .step__num {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
  }
}

/* Accordion item lede (services page kicker) */
.accordion__lede {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--brand-green-deep);
  margin-bottom: 0.85rem;
  max-width: 50ch;
}

/* Featured duo (about leadership row) */
.featured-duo {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-5);
}
.duo-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  text-align: left;
  background: transparent;
  border: 0;
  width: 100%;
  padding: 0;
  cursor: pointer;
}
.duo-card__photo {
  position: relative;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: var(--surface-alt);
  aspect-ratio: 4/5;
}
.duo-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  filter: grayscale(100%) contrast(1.04);
  transition: transform var(--dur-slow) var(--ease);
}
.duo-card:hover .duo-card__photo img { transform: scale(1.03); }
.duo-card__role {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-green);
}
.duo-card__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--text);
}
.duo-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--fs-lead);
  line-height: 1.5;
  color: var(--text-muted);
  border-left: 2px solid var(--brand-green);
  padding-left: 1rem;
  max-width: 36ch;
}
.duo-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--brand-green);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-top: 0.4rem;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
  padding-bottom: 2px;
  transition: gap var(--dur-fast) var(--ease);
}
.duo-card:hover .duo-card__cta { gap: 0.6rem; }
@media (min-width: 900px) {
  .featured-duo { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); }
}

/* ============================================================
   LOCATIONS — editorial ledger
   ============================================================ */
.locations {
  padding-block: var(--section-pad);
  background: var(--surface);
}
.locations__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* Stat strip — by-the-numbers row above the directory */
.locations__stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: var(--space-7);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.locations__stat {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: baseline;
  gap: clamp(0.85rem, 1.5vw, 1.25rem);
}
.locations__stat:last-child { border-bottom: 0; }
.locations__stat-num {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brand-green);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.locations__stat-num sup {
  font-size: 0.45em;
  font-weight: 300;
  vertical-align: super;
  margin-left: 0.05em;
  letter-spacing: 0;
}
.locations__stat > div { min-width: 0; }
.locations__stat-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.2rem;
}
.locations__stat-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text);
  line-height: 1.4;
  max-width: 32ch;
}
@media (min-width: 720px) {
  .locations__stats { grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--divider); }
  .locations__stat {
    padding: var(--space-5) clamp(1rem, 2.5vw, 2rem) var(--space-5) 0;
    border-bottom: 0;
    border-right: 1px solid var(--divider);
  }
  .locations__stat:first-child { padding-left: 0; }
  .locations__stat:last-child { border-right: 0; padding-right: 0; }
}

/* Region group */
.region { margin-bottom: var(--space-7); }
.region:last-child { margin-bottom: 0; }
.region__label {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
}
.region__label-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-green);
  white-space: nowrap;
}
.region__label::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--divider);
  width: 100%;
}

/* Office row */
.office-row {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1rem, 3vw, 2.5rem);
  row-gap: var(--space-3);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--divider);
  position: relative;
}
.office-row:last-child { border-bottom: 1px solid var(--divider); }
.office-row--hq {
  background:
    linear-gradient(0deg, rgba(2,115,62,0.04) 0%, rgba(2,115,62,0.04) 100%);
  margin: 0 calc(var(--gutter) * -0.5);
  padding: var(--space-5) calc(var(--gutter) * 0.5);
  border-radius: var(--radius-card);
  border-top: 0;
  position: relative;
  overflow: hidden;
}
.office-row--hq::before {
  content: '';
  position: absolute;
  inset: auto -10% -30% -10%;
  height: 60%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'><path d='M-40 220 Q260 80 540 150 Q840 220 1100 110 Q1320 30 1480 140 L1480 320 L-40 320 Z' fill='%2302733e' fill-opacity='0.05'/></svg>");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}
.office-row--hq > * { position: relative; z-index: 1; }

.office-row__num {
  font-family: var(--font-sans);
  font-weight: 200;
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--brand-green);
  opacity: 0.55;
  align-self: start;
  min-width: 2.6em;
  font-variant-numeric: tabular-nums;
}
.office-row__body { min-width: 0; }
.office-row__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 0.35rem;
}
.office-row__city {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: var(--space-2);
  color: var(--text);
}
.office-row--hq .office-row__city {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  letter-spacing: -0.01em;
}
.office-row__address {
  font-style: normal;
  font-size: var(--fs-body);
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 38ch;
  margin-bottom: var(--space-3);
}
.office-row__address strong { color: var(--text); font-weight: 500; }
.office-row__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 1.5rem;
  margin-bottom: var(--space-3);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.office-row__meta-item {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  line-height: 1.4;
}
.office-row__meta-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  flex-shrink: 0;
  min-width: 4.5ch;
}
.office-row__meta a {
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--divider-strong);
  transition: border-color var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
  padding-bottom: 1px;
}
.office-row__meta a:hover { color: var(--brand-green); border-bottom-color: var(--brand-green); }
.office-row__directions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--brand-green);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  align-self: flex-start;
  transition: gap var(--dur-fast) var(--ease), color var(--dur-base) var(--ease);
  min-height: 44px;
}
.office-row__directions:hover { color: var(--brand-green-deep); gap: 0.65rem; }

@media (min-width: 720px) {
  .office-row {
    grid-template-columns: minmax(7rem, 9rem) 1fr;
    column-gap: clamp(1.5rem, 3vw, 3rem);
    padding: var(--space-5) 0;
  }
  .office-row--hq {
    padding: var(--space-6) clamp(1rem, 2vw, 2rem);
    margin: 0 calc(var(--gutter) * -0.5);
  }
  .office-row__meta { grid-template-columns: auto auto; }
}

/* Larger CTA — make the action card feel cinematic */
.cta__inner {
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(1.75rem, 6vw, 3.5rem);
}
.cta__inner h2 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  letter-spacing: -0.02em;
}
