/* ============================================================
   VIRIDIAN PACIFIC CAPITAL PARTNERS — SITE STYLESHEET
   Brand tokens from BRAND.md (single source of truth).
   Shared across: index, about, strategy, contact, thanks.
   ============================================================ */

/* DM Sans — eyebrow font (Rule 1.3, prescriptive pass) */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&display=swap');


/* 01 · FONTS
   ─────────────────────────────────────────── */
@font-face {
  font-family: 'DM Serif Display';
  src: url("../fonts/DMSerifDisplay-Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Serif Display';
  src: url("../fonts/DMSerifDisplay-Italic.ttf") format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url("../fonts/TT Fors Trial Light.ttf") format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url("../fonts/TT Fors Trial Regular.ttf") format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url("../fonts/TT Fors Trial Italic.ttf") format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url("../fonts/TT Fors Trial Medium.ttf") format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url("../fonts/TT Fors Trial DemiBold.ttf") format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url("../fonts/TT Fors Trial Bold.ttf") format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url("../fonts/TT Fors Trial Bold Italic.ttf") format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url("../fonts/TT Fors Trial ExtraBold.ttf") format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url("../fonts/TT Fors Trial Black.ttf") format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Fors';
  src: url("../fonts/TT Fors Trial Thin.ttf") format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}


/* 02 · TOKENS
   ─────────────────────────────────────────── */
:root {
  /* Brand colors — ONE GREEN ONLY (#2D6A4F) */
  --viridian:      #2D6A4F;    /* Primary brand green — the only green on the site */
  --forest:        #2D6A4F;    /* alias — kept for backward compat, identical to --viridian */
  --forest-deep:   #1A1A1A;    /* Dark editorial surface (not green — near-black per "one green only") */
  --charcoal:      #1A1A1A;    /* Text primary on light backgrounds */
  --cream:         #FAF8F4;    /* Page cream */

  /* Warm neutrals — editorial depth */
  --sand:          #B8A683;    /* warm mid-tone accent */
  --sand-pale:     #ECE4D2;    /* warm light neutral — italic emphasis color */
  --ochre:         #9C7A4E;    /* deeper warm accent for micro-details */

  /* Working neutrals (never pure white/black) */
  --cream-warm:    #F4F1EA;
  --cream-deep:    #ECE7DC;
  --gray-rule:     #D8D3C6;
  --gray-muted:    #666666;    /* secondary text, captions */

  /* New palette aliases (match spec) */
  --color-viridian:     #2D6A4F;
  --color-tan:          #ECE4D2;
  --color-text-primary: #1A1A1A;
  --color-text-body:    #333333;
  --color-text-muted:   #666666;
  --color-text-inverse: #FFFFFF;
  --color-bg-primary:   #FFFFFF;
  --color-bg-subtle:    #F7F6F3;
  --color-bg-dark:      #1A1A1A;
  --color-rule:         rgba(45, 106, 79, 0.15);

  /* Type families */
  --font-display:  'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body:     'TT Fors', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-eyebrow:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type scale */
  --text-hero:     clamp(2.2rem, 4.2vw, 4.5rem);
  --text-page-h1:  clamp(2.125rem, 3.4vw, 3.75rem);
  --text-h2:       clamp(1.75rem, 2.6vw, 2.5rem);
  --text-h3:       clamp(1.125rem, 1.4vw, 1.375rem);
  --text-stat:     clamp(1.8rem, 2.8vw, 2.8rem);
  --text-display:  clamp(4rem, 10vw, 7rem);
  --text-body-lg:  clamp(1.0625rem, 1.3vw, 1.25rem);
  --text-body:     1.0625rem;
  --text-body-sm:  0.9375rem;
  --text-eyebrow:  0.8125rem;

  /* Leading */
  --leading-hero:    1.08;
  --leading-heading: 1.15;
  --leading-tight:   1.3;
  --leading-body:    1.65;

  /* Tracking */
  --tracking-eyebrow: 0.12em;
  --tracking-heading: -0.01em;
  --tracking-tight:   -0.02em;

  /* Spacing (vertical system) */
  --section-pad-y:         6rem;    /* 96px */
  --section-pad-y-mobile:  3.5rem;  /* 56px */
  --space-eyebrow-to-h2:   0.75rem;
  --space-h2-to-body:      1.5rem;
  --space-body-to-body:    1rem;
  --space-h2-to-cards:     2.5rem;
  --space-card-to-card:    1.5rem;

  /* Layout */
  --container:     1240px;
  --pad-x:         64px;
  --pad-x-mobile:  24px;

  /* Motion */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-std:      cubic-bezier(0.4, 0, 0.2, 1);
}


/* 03 · RESET
   ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;       /* Section 2.2 — sticky-nav offset (nav height 84px + 12px breathing) */
  -webkit-text-size-adjust: 100%;
  background: var(--viridian); /* fallback behind fixed video layer */
}
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: inherit; }


/* 04 · BASE
   ─────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-body);
  line-height: 1.75;
  color: var(--charcoal);
  background: transparent; /* fixed video shows through transparent sections */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
em { font-style: italic; }


/* Fixed video background — locked, content scrolls past it */
.site-video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--viridian);
}
.site-video-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-video-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(45,106,79,0.18) 0%,
    rgba(45,106,79,0.10) 60%,
    rgba(45,106,79,0.25) 100%);
  pointer-events: none;
}

main { position: relative; z-index: 1; }

.skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  z-index: 10000;
  background: var(--viridian);
  color: var(--cream);
  padding: 12px 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.skip-link:focus { top: 0; }


/* 05 · LAYOUT
   ─────────────────────────────────────────── */
.w {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
@media (max-width: 900px) {
  .w { padding: 0 var(--pad-x-mobile); }
}


/* 06 · TYPOGRAPHY HELPERS
   ─────────────────────────────────────────── */
.h2 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--viridian);          /* LOCKED — viridian base on light backgrounds */
}
.h2 em {
  font-style: italic;
  font-weight: 500;
  color: inherit;                  /* italic inherits viridian on light bg; overridden to sand-pale on dark sections */
}

/* Global adaptive italic rule for H1/H2 emphasis.
   Light-background sections use viridian for italic emphasis (via inherit, since base is viridian).
   Dark-background sections explicitly set italic to sand-pale (tan accent) in their section rules. */

.body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-muted);
}
.body-sm {
  font-family: var(--font-body);
  font-size: var(--text-body-sm);
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-muted);
}

.eyebrow {
  font-family: var(--font-eyebrow); /* DM Sans — locked Rule 1.3 */
  font-size: 0.8125rem;            /* 13px desktop — locked spec */
  font-weight: 500;                /* medium — locked spec */
  letter-spacing: 0.12em;          /* locked spec */
  text-transform: uppercase;
  color: var(--viridian);          /* viridian on ALL backgrounds — locked Rule 1.3 */
  line-height: 1.4;
  margin-bottom: 12px;             /* LOCKED — 12px eyebrow-to-H2 per spec */
}
.eyebrow-light {
  /* Rule 1.3: eyebrows stay viridian on dark panels too.
     Only photographic hero overlays (see .page-hero-eyebrow) use white. */
  color: var(--viridian);
}
@media (max-width: 900px) {
  .eyebrow { font-size: 0.75rem; } /* 12px mobile */
}


/* 07 · BUTTONS
   ─────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 1px solid transparent;
  transition: background 0.25s var(--ease-std),
              color 0.25s var(--ease-std),
              border-color 0.25s var(--ease-std);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; }

.btn-forest { background: var(--forest); color: var(--cream); border-color: var(--forest); }
.btn-forest:hover, .btn-forest:focus-visible { background: var(--forest-deep); border-color: var(--viridian); }

.btn-outline {
  background: transparent;
  color: var(--viridian);
  border-color: var(--viridian);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--viridian);
  color: var(--cream);
}

.btn-cream { background: var(--cream); color: var(--viridian); border-color: var(--cream); }
.btn-cream:hover, .btn-cream:focus-visible { background: var(--sand-pale); border-color: var(--sand-pale); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,248,244,0.55);
}
.btn-outline-cream:hover, .btn-outline-cream:focus-visible {
  background: rgba(250,248,244,0.1);
  border-color: var(--cream);
}


/* 08 · LINKS
   ─────────────────────────────────────────── */
.link-arr {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--viridian);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap 0.25s var(--ease-out), color 0.25s var(--ease-std);
  align-self: flex-start;
}
.link-arr::after { content: '→'; transition: transform 0.25s var(--ease-out); }
.link-arr:hover, .link-arr:focus-visible { gap: 16px; color: var(--forest); }
.link-arr:focus-visible { outline: 2px solid var(--forest); outline-offset: 4px; }


/* 09 · SCROLL PROGRESS BAR
   ─────────────────────────────────────────── */
#scroll-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--forest-deep), var(--forest), var(--sand));
  transition: width 0.08s linear;
  pointer-events: none;
}


/* 10 · SITE NAV
   ─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease-std),
              border-color 0.4s var(--ease-std),
              backdrop-filter 0.4s;
}
.site-nav.scrolled {
  background: transparent;
  border-bottom-color: transparent;
}
.site-nav.scrolled::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(45,106,79,0.88) 0%,
    rgba(45,106,79,0) 100%
  );
  pointer-events: none;
  z-index: -1;
}

.nav-left { display: flex; align-items: center; }
.nav-logo {
  display: block;
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(45,106,79,0.6));
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  position: relative;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.82);
  text-shadow: 0 2px 6px rgba(45,106,79,0.5);
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--sand);
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 6px rgba(45,106,79,0.5);
  padding: 12px 26px;
  border: 1px solid rgba(250,248,244,0.45);
  transition: background 0.25s var(--ease-std), border-color 0.25s var(--ease-std);
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: rgba(250,248,244,0.1);
  border-color: var(--cream);
}
.nav-cta:focus-visible { outline: 2px solid var(--cream); outline-offset: 3px; }

.nav-burger {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.nav-burger span {
  width: 22px;
  height: 1px;
  background: var(--cream);
  box-shadow: 0 1px 2px rgba(45,106,79,0.5);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-burger:focus-visible { outline: 1px solid var(--cream); outline-offset: 4px; }

@media (max-width: 900px) {
  .site-nav { padding: 0 var(--pad-x-mobile); height: 80px; }
  .nav-logo { height: 42px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}


/* 11 · MOBILE NAV
   ─────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--viridian);
  padding: 0 var(--pad-x-mobile);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease-std), transform 0.4s var(--ease-std);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.open { opacity: 1; transform: translateY(0); }
.mobile-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 35%, rgba(184,166,131,0.14), transparent 70%);
  pointer-events: none;
}
.mobile-nav-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,248,244,0.72);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-nav-close:hover, .mobile-nav-close:focus-visible { color: var(--cream); }
.mobile-nav-close:focus-visible { outline: 1px solid rgba(250,248,244,0.5); outline-offset: 4px; }

.mobile-nav-links {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 36px;
}
.mobile-nav-links a {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  padding: 8px 0;
  transition: color 0.25s;
}
.mobile-nav-links a::after {
  content: '→';
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--sand);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s, transform 0.25s var(--ease-out);
}
.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible { color: var(--sand-pale); }
.mobile-nav-links a:hover::after,
.mobile-nav-links a:focus-visible::after { opacity: 1; transform: translateX(0); }

.mobile-nav-divider {
  position: relative;
  width: 40px;
  height: 1px;
  background: rgba(250,248,244,0.2);
  margin-bottom: 28px;
}
.mobile-nav-cta { position: relative; align-self: flex-start; }


/* 12 · HERO (transparent — video shows through)
   Section 2.1: capped at 80vh so the next section reveals without
   scroll, and so the H1 never clips on short laptop viewports.
   Dual-stop overlay guarantees WCAG AA contrast at the top (nav)
   and bottom (headline + CTAs) while leaving the video readable mid.
   ─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 80vh;
  min-height: 80svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: transparent;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Viridian wash, 4-stop: darker at top (nav legibility) and bottom
     (WCAG AA on headline + CTAs), letting the video breathe mid-frame. */
  background: linear-gradient(
    to bottom,
    rgba(45,106,79,0.72) 0%,
    rgba(45,106,79,0.28) 42%,
    rgba(45,106,79,0.42) 72%,
    rgba(45,106,79,0.74) 100%
  );
}
.hero-body {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad-x) 100px;
  max-width: 1060px;
}
.hero-kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-pale);
  text-shadow: 0 2px 14px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.55);
  margin-bottom: 18px;
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--cream);
  text-shadow:
    0 2px 30px rgba(0,0,0,0.75),
    0 2px 8px rgba(0,0,0,0.6),
    0 1px 2px rgba(0,0,0,0.5);
  margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--sand-pale); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(250,248,244,0.96);
  text-shadow: 0 2px 18px rgba(0,0,0,0.7), 0 1px 3px rgba(0,0,0,0.55);
  max-width: 640px;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  right: var(--pad-x);
  bottom: 44px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  pointer-events: none;
}
.hero-scroll-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.55);
  writing-mode: vertical-rl;
  text-shadow: 0 1px 6px rgba(45,106,79,0.55);
}
.hero-scroll-track {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(250,248,244,0.7), transparent);
  animation: hero-pulse 2.6s ease-in-out infinite;
}
@keyframes hero-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.08); }
}

@media (max-width: 900px) {
  .hero-body { padding: 0 var(--pad-x-mobile) 96px; }
  .hero-kicker { font-size: 0.66rem; letter-spacing: 0.24em; margin-bottom: 22px; }
  .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 28px; }
  .hero-h1 br { display: none; }
  .hero-sub { font-size: 0.96rem; margin-bottom: 32px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { text-align: center; }
  .hero-scroll { display: none; }
}


/* 13 · STANDALONE QUOTE (Home — single breathing moment, light bg)
   Per Part 6.1 prescriptive spec: no eyebrow, no body, no buttons.
   DM Serif Display, Viridian green, centered, max-width 900px.
   ─────────────────────────────────────────── */
.quote {
  position: relative;
  background: var(--cream-deep);
  padding: 96px 0;                /* LOCKED — 96px desktop */
}
.quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--viridian);          /* Viridian non-italic */
  text-align: center;
  max-width: 900px;                /* LOCKED — 900px per spec */
  margin: 0 auto;
}
.quote-text em {
  font-style: italic;
  color: var(--viridian);          /* Viridian italic on light bg — Rule 1.2 */
}
@media (max-width: 900px) {
  .quote { padding: 72px 0; }     /* LOCKED — 72px mobile per spec 6.1 */
}


/* 13-legacy · MISSION BAND (retained for any unreferenced usage, quote above supersedes)
   ─────────────────────────────────────────── */
.mission {
  position: relative;
  background: var(--cream-deep);
  padding: 72px 0;
}
.mission-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 80px;
  align-items: start;
}
.mission-label {
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  line-height: 1.6;
  padding-top: 10px;
}
.mission-statement {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--viridian);
  max-width: 900px;
}
.mission-statement em { font-style: italic; color: inherit; }

@media (max-width: 900px) {
  .mission { padding: 88px 0; }
  .mission-grid { grid-template-columns: 1fr; gap: 22px; }
  .mission-label { padding-top: 0; }
}


/* 13b · OUR CONVICTION (Home — deep forest editorial moment)
   ─────────────────────────────────────────── */
.conviction {
  position: relative;
  background: var(--forest-deep);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
  overflow: hidden;
}
.conviction::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 90% at 20% 100%, rgba(45,106,79,0.38), transparent 65%);
}
.conviction-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;                /* LOCKED — centered, contained */
  margin: 0 auto;
  text-align: center;
}
.conviction .eyebrow-light {
  /* Rule 1.3: eyebrows stay viridian on every section type */
  color: var(--viridian);
  margin-bottom: 12px;
}
.conviction-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 auto 28px;
  max-width: 820px;
}
.conviction-h2 em { font-style: italic; color: var(--sand-pale); }
.conviction-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(250,248,244,0.82);
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .conviction { padding: 56px 0; } /* LOCKED — 56px mobile */
  .conviction-body { font-size: 1rem; }
}


/* 14 · CRITERIA BAND (Home — translucent panel on coastal image)
   ─────────────────────────────────────────── */
.criteria {
  position: relative;
  background: var(--viridian);
  padding: 72px 0;
  overflow: hidden;
}
.criteria::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../img/coast-3.jpg") center/cover no-repeat;
  transform: scale(1.04);
  animation: criteria-drift 32s ease-in-out infinite alternate;
  will-change: transform;
}
.criteria::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(45,106,79,0.28) 0%,
    rgba(45,106,79,0.2) 50%,
    rgba(45,106,79,0.42) 100%);
}
.criteria .w { position: relative; z-index: 2; }
@keyframes criteria-drift {
  0%   { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, 1%); }
}

/* Translucent cream panel — image reads through */
.criteria-panel {
  max-width: 1080px;
  margin: 0 auto;
  background: rgba(250,248,244,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 48px 56px 44px;
  box-shadow: 0 30px 80px -20px rgba(45,106,79,0.35);
}

.criteria-head {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.criteria-head .h2 { max-width: 720px; color: var(--viridian); }

/* Hero number — Revenue claims the panel */
.crit-hero {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-rule);
  margin-bottom: 24px;
}
/* Left-anchored Revenue figure — single label + number */
.crit-hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--viridian);
  margin: 0 0 20px;
  line-height: 1.2;
}
.crit-hero-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.6rem);
  font-weight: 400;
  line-height: 0.95;
  color: var(--viridian);
  letter-spacing: -0.025em;
  margin: 0;
}

/* Remaining three criteria */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.crit-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.crit-label {
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--viridian);
  margin-bottom: 10px;
}
.crit-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--viridian);
  letter-spacing: -0.01em;
}
.crit-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}
.crit-list li { line-height: 1.45; }
.crit-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-muted);
  line-height: 1.55;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .criteria { padding: 64px 0; min-height: auto; }
  .criteria-panel { padding: 48px 32px 40px; max-width: calc(100% - 32px); }
  .crit-hero { margin-bottom: 36px; padding-bottom: 36px; }
  .criteria-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  .criteria::before { animation: none; transform: scale(1.04); }
}


/* 15 · COMMITMENTS (Home — editorial numbered list)
   ─────────────────────────────────────────── */
.commitments {
  background: var(--cream-warm);
  padding: 88px 0;
}
.commitments-head {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
.commitments-head-copy { max-width: 720px; }
.commitments-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-rule);
}
.commit {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 60px;
  padding: 42px 0;
  border-bottom: 1px solid var(--gray-rule);
  align-items: start;
  transition: padding-left 0.45s var(--ease-out);
}
.commit:hover { padding-left: 24px; }
.commit-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.commit-title {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--viridian);
  letter-spacing: -0.015em;
}
.commit-body {
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-muted);
  max-width: 480px;
}

@media (max-width: 900px) {
  .commitments { padding: 88px 0; }
  .commitments-head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
  .commit {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 44px 0;
  }
  .commit:hover { padding-left: 0; }
  .commit-num { font-size: 1.8rem; }
}


/* 16 · VALUES (Home — Deep Forest, cream type)
   ─────────────────────────────────────────── */
.values {
  position: relative;
  background: var(--viridian);
  padding: 88px 0;
  overflow: hidden;
}
.values::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(45,106,79,0.35), transparent 65%);
}
.values .w { position: relative; z-index: 1; }
.values-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.values-head .eyebrow { color: var(--viridian); }
.values-head .h2 { color: var(--cream); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px 52px;
}
.value {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--sand);
  letter-spacing: -0.01em;
  line-height: 1;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(250,248,244,0.14);
  width: fit-content;
  min-width: 48px;
}
.value-title {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.22;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.value-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(250,248,244,0.72);
  max-width: 480px;
}

@media (max-width: 900px) {
  .values { padding: 72px 0; }
  .values-grid { grid-template-columns: 1fr; gap: 44px; }
  .value-title { font-size: 1.35rem; }
}


/* 17 · SECTORS (Home — 4 sectors)
   ─────────────────────────────────────────── */
.sectors {
  background: var(--cream);
  padding: 88px 0;
}
.sectors-head {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
.sectors-head .body { max-width: 480px; }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-rule);
  border: 1px solid var(--gray-rule);
}
.sector {
  background: var(--cream);
  padding: 56px 48px 60px;
  transition: background 0.4s var(--ease-out);
}
.sector:hover { background: var(--cream-warm); }
.sector-tag {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 22px;
  display: block;
}
.sector-name {
  font-family: var(--font-body);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.22;
  color: var(--viridian);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.sector-body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--gray-muted);
  max-width: 460px;
}

@media (max-width: 900px) {
  .sectors { padding: 72px 0; }
  .sectors-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sector { padding: 44px 28px 48px; }
  .sector-name { font-size: 1.5rem; }
}


/* 17b · INTERMEDIARIES (Home — for advisors/bankers)
   ─────────────────────────────────────────── */
.intermediaries {
  background: var(--cream-warm);
  padding: 96px 0;                  /* LOCKED — 96px section cap */
}
.intermediaries-head {
  margin-bottom: 48px;
  max-width: 900px;                 /* LOCKED — single centered column */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.intermediaries-head .eyebrow { margin-bottom: 12px; } /* LOCKED — 12px eyebrow-to-H2 */
.intermediaries-head .h2 { margin-bottom: 24px; }   /* LOCKED — 24px H2→body */
.intermediaries-head .body { max-width: 680px; margin: 0 auto; }
.intermediaries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid var(--gray-rule);
  padding-top: 40px;
}
.interm {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.interm-label {
  font-family: var(--font-eyebrow);  /* DM Sans — locked Rule 1.3 */
  font-size: 0.8125rem;            /* 13px — locked eyebrow spec */
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--viridian);
  margin-bottom: 12px;             /* LOCKED — 12px eyebrow-to-H3 */
}
.interm-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--viridian);
  letter-spacing: -0.005em;
}
.interm-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-muted);
}

@media (max-width: 900px) {
  .intermediaries { padding: 56px 0; }
  .intermediaries-head { margin-bottom: 36px; }
  .intermediaries-head .h2 { margin-bottom: 16px; }
  .intermediaries-grid { grid-template-columns: 1fr; gap: 32px; padding-top: 32px; }
}


/* 18 · CTA BAND (solid Forest, video covered)
   ─────────────────────────────────────────── */
.cta-band {
  position: relative;
  background: var(--viridian);
  padding: 96px 0;                 /* LOCKED — 96px desktop */
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 85% 50%, rgba(184,166,131,0.12), transparent 65%);
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;                       /* LOCKED — reduced from 96px */
  align-items: start;              /* LOCKED — contact info aligns to top of H2 */
}
.cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.015em;
}
.cta-h2 em { font-style: italic; color: inherit; }
.cta-body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(250,248,244,0.88);
  margin-bottom: 40px;
  max-width: 480px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 48px;
  border-left: 1px solid rgba(250,248,244,0.18);
}
.cta-detail-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.55);
  margin-bottom: 8px;
}
.cta-detail-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
  word-break: break-word;
  line-height: 1.4;
}
.cta-detail-val a { transition: color 0.2s; }
.cta-detail-val a:hover,
.cta-detail-val a:focus-visible { color: var(--sand-pale); }
.cta-detail-val a:focus-visible { outline: 2px solid var(--sand-pale); outline-offset: 3px; }

@media (max-width: 900px) {
  .cta-band { padding: 56px 0; }   /* LOCKED — 56px mobile */
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .cta-details {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(250,248,244,0.18);
    padding-top: 40px;
  }
  .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-buttons .btn { text-align: center; }
}


/* 19 · FOOTER (compressed)
   ─────────────────────────────────────────── */
.site-footer {
  background: var(--viridian);
  padding: 80px 0 36px;
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(250,248,244,0.12);
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; gap: 24px; }
.footer-logo {
  display: block;
  height: 52px;
  width: auto;
  opacity: 0.95;
}
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: rgba(250,248,244,0.56);
  max-width: 320px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(250,248,244,0.78);
}
.footer-contact a { color: inherit; transition: color 0.2s; border-bottom: 1px solid transparent; }
.footer-contact a:hover,
.footer-contact a:focus-visible { color: var(--cream); border-bottom-color: rgba(250,248,244,0.35); }
.footer-contact-line { display: block; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.6);
  transition: color 0.2s;
}
.footer-nav a:hover,
.footer-nav a:focus-visible { color: var(--cream); }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(250,248,244,0.5);
  transition: color 0.2s;
}
.footer-legal a:hover,
.footer-legal a:focus-visible { color: var(--cream); }
.footer-copy {
  font-family: var(--font-body);
  font-size: 0.66rem;
  line-height: 1.65;
  color: rgba(250,248,244,0.36);
  max-width: 820px;
  margin-top: 20px;
  width: 100%;
}

@media (max-width: 900px) {
  .site-footer { padding: 56px 0 28px; }
  .footer-inner { padding: 0 var(--pad-x-mobile); }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; margin-bottom: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
}


/* 19b · CINEMATIC IMAGE BREAK (Ken Burns)
   ─────────────────────────────────────────── */
.cinematic {
  position: relative;
  width: 100%;
  height: 62vh;
  min-height: 460px;
  max-height: 720px;
  overflow: hidden;
  background: var(--viridian);
}
.cinematic-short {
  height: 44vh;
  min-height: 340px;
  max-height: 520px;
}
.cinematic-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
  animation: ken-burns 26s ease-in-out infinite alternate;
  will-change: transform;
  filter: grayscale(100%);
}
.cinematic-image.pan-right {
  animation-name: ken-burns-pan-right;
  animation-duration: 32s;
}
@keyframes ken-burns {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.14) translate(-2%, 1.5%); }
}
@keyframes ken-burns-pan-right {
  0%   { transform: scale(1.08) translate(-2%, 0); }
  100% { transform: scale(1.18) translate(2%, -1.5%); }
}
.cinematic-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(45,106,79,0.35) 0%,
    rgba(45,106,79,0.08) 40%,
    rgba(45,106,79,0.5) 100%
  );
}
.cinematic-content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: flex-end;
}
.cinematic-caption {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-pale);
  padding-bottom: 40px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

@media (max-width: 900px) {
  .cinematic { height: 52vh; min-height: 360px; }
  .cinematic-short { height: 36vh; min-height: 260px; }
  .cinematic-content { padding: 0 var(--pad-x-mobile); }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-image { animation: none; transform: scale(1.04); }
}


/* 20 · REVEAL MOTION — editorial fade-up
   Re-enabled with a failure-safe observer (see site.js):
   threshold: 0 + rootMargin pre-trigger, and an initial-viewport
   fast-path so above-the-fold content paints visible immediately.
   Distance reduced from 24px → 14px for a quieter editorial feel.
   ─────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.on {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger variants — 90ms between siblings */
.reveal.d1 { transition-delay: 0.09s; }
.reveal.d2 { transition-delay: 0.18s; }
.reveal.d3 { transition-delay: 0.27s; }
.reveal.d4 { transition-delay: 0.36s; }

/* Criteria columns — triggered by the criteria coordinator */
.crit-col {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.crit-col.on {
  opacity: 1;
  transform: translateY(0);
}


/* 21 · REDUCED MOTION
   ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .crit-col { opacity: 1; transform: none; }
  .hero-scroll-track { animation: none; }
}


/* ============================================================
   22 · PAGE HERO (About, Strategy, Contact)
   ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--viridian);
  padding: 200px 0 120px;
  overflow: hidden;
}
.page-hero::before {
  /* Viridian filter over hero imagery.
     mix-blend-mode: multiply keeps image detail visible (no frosted-glass effect)
     while producing a clearly green-washed duotone on the grayscale base image.
     Applies uniformly to About/Strategy/Process/Contact heroes. */
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(45, 106, 79, 0.55) 0%,
      rgba(45, 106, 79, 0.45) 50%,
      rgba(45, 106, 79, 0.70) 100%);
  mix-blend-mode: multiply;
}
.page-hero .w { position: relative; z-index: 2; }
.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1);
  transform-origin: center center;
  animation: heroZoom 20s ease-out forwards;
  will-change: transform;
  /* Brightness boost compensates for mix-blend-mode: multiply on the Viridian
     overlay (which by nature darkens). Grayscale keeps the duotone discipline. */
  filter: grayscale(100%) brightness(1.25) contrast(1.02);
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero-image { animation: none; transform: none; }
}

.page-hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-pale);
  margin-bottom: 28px;
}
.page-hero-h1 {
  font-family: var(--font-display);
  font-size: var(--text-page-h1);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--cream);
  max-width: 960px;
}
.page-hero-h1 em { font-style: italic; color: var(--sand-pale); }

@media (max-width: 900px) {
  .page-hero { padding: 140px 0 80px; }
  .page-hero-eyebrow { font-size: 0.66rem; letter-spacing: 0.24em; margin-bottom: 22px; }
}


/* 22b · IMAGE BAND (full-bleed horizontal image, Viridian filter, no text)
   ─────────────────────────────────────────── */
.image-band {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: var(--viridian);
}
.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1);
  will-change: transform;
  animation: heroZoom 22s ease-out forwards;
}
.image-band::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(26,26,26,0.28) 0%,
      rgba(26,26,26,0.18) 50%,
      rgba(26,26,26,0.48) 100%);
  z-index: 1;
}
@media (max-width: 900px) {
  .image-band { height: 280px; }
}
@media (prefers-reduced-motion: reduce) {
  .image-band img { animation: none; transform: none; }
}


/* 22c · STEWARDSHIP PANEL (two-column image + reinforcement copy)
   ─────────────────────────────────────────── */
.stewardship {
  position: relative;
  background: var(--cream);
  padding: 112px 0;                /* LOCKED — 112px desktop per spec 2.3 */
  overflow: hidden;
}
.stewardship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* LOCKED — 50/50 split */
  gap: 80px;
  align-items: center;             /* LOCKED — vertically center image + text */
}
.stewardship-image {
  position: relative;
  aspect-ratio: 1 / 1;             /* LOCKED — square per spec */
  max-width: 520px;                /* LOCKED — max 520px per spec */
  width: 100%;
  overflow: hidden;
  background: var(--viridian);
}
.stewardship-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
/* Viridian overlay removed per Rule 3.6 — overlay is hero-only.
   Grayscale filter on .stewardship-image img already provides tonal discipline. */
.stewardship-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 520px;                /* LOCKED — balanced with image column */
}
.stewardship-copy .eyebrow { margin-bottom: var(--space-eyebrow-to-h2); }
.stewardship-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--viridian);          /* LOCKED — viridian base on light background */
  max-width: 520px;
}
.stewardship-statement em {
  font-style: italic;
  color: var(--viridian);          /* viridian italic on light background */
}
@media (max-width: 900px) {
  .stewardship { padding: 72px 0; }                           /* LOCKED — 72px mobile per spec 2.3 */
  .stewardship-grid { grid-template-columns: 1fr; gap: 32px; } /* LOCKED — image stacks above text */
  .stewardship-image { aspect-ratio: 1 / 1; max-width: 100%; }
}


/* 22d · OUR HOME (About page — image-forward local grounding)
   ─────────────────────────────────────────── */
.our-home {
  position: relative;
  background: var(--cream);
  padding: var(--section-pad-y) 0;
  overflow: hidden;
}
.our-home-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.our-home-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--forest-deep);
}
.our-home-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.our-home-copy {
  max-width: 480px;
}
.our-home-copy .eyebrow { margin-bottom: var(--space-eyebrow-to-h2); }
.our-home-h2 {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  line-height: var(--leading-heading);
  letter-spacing: var(--tracking-heading);
  color: var(--viridian);          /* LOCKED — viridian base on light background */
  margin-bottom: var(--space-h2-to-body);
}
.our-home-h2 em { font-style: italic; color: var(--viridian); }
.our-home-body {
  font-family: var(--font-body);
  font-size: var(--text-body-lg);
  line-height: var(--leading-body);
  color: var(--charcoal);
}
@media (max-width: 900px) {
  .our-home { padding: var(--section-pad-y-mobile) 0; }
  .our-home-grid { grid-template-columns: 1fr; gap: 32px; }
  .our-home-image { aspect-ratio: 4 / 3; }
}


/* 23 · ABOUT — The Firm section
   ─────────────────────────────────────────── */
.firm {
  background: var(--cream);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
}
/* LOCKED — single centered column, no empty left-eyebrow column */
.firm-grid {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}
.firm-eyebrow-col { display: none; }   /* Left eyebrow column retired site-wide */
.firm-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
}
.firm-body .h2 { margin-bottom: 12px; }
.firm-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}

@media (max-width: 900px) {
  .firm { padding: 56px 0; }       /* LOCKED — 56px mobile */
  .firm-grid { grid-template-columns: 1fr; gap: 32px; }
  .firm-eyebrow-col { position: static; }
}


/* 24 · ABOUT — What We Believe
   ─────────────────────────────────────────── */
.beliefs {
  background: var(--cream-deep);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
}
.beliefs-head {
  margin-bottom: 48px;             /* LOCKED — 48px H2-to-cards, down from 88px */
  max-width: 800px;                /* LOCKED — single column, no empty right col */
}
.beliefs-list {
  display: flex;
  flex-direction: column;
  gap: 48px;                       /* LOCKED — 48px between cards */
  border-top: 1px solid var(--gray-rule);
  padding-top: 48px;
}
.belief {
  display: grid;
  grid-template-columns: 100px 1fr;  /* LOCKED — 100px number, flexible title+body */
  gap: 32px;                       /* LOCKED — 32px between number and text block */
  align-items: start;
}
.belief-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
  color: var(--viridian);          /* LOCKED — viridian */
  letter-spacing: -0.01em;
  grid-row: span 2;                /* spans title + body */
}
.belief-title {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--viridian);
  letter-spacing: -0.01em;
  margin-bottom: 16px;             /* LOCKED — 16px H3-to-body */
}
.belief-body {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--gray-muted);
}

@media (max-width: 900px) {
  .beliefs { padding: 56px 0; }    /* LOCKED — 56px mobile */
  .beliefs-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .belief { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
}


/* 25 · ABOUT — Founder (Porter)
   ─────────────────────────────────────────── */
.founder {
  background: var(--cream);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
}
.founder-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 80px;
  align-items: start;
}
.founder-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
}
.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: founder-breathe 18s ease-in-out infinite alternate;
  will-change: transform;
  filter: none; /* exception — Porter's portrait stays in color */
}
@keyframes founder-breathe {
  0%   { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.10) translate(-1%, -1.5%); }
}
.founder-nameplate {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--viridian);
  letter-spacing: -0.01em;
}
.founder-role {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--forest);
}
.founder-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.founder-text .h2 { margin-bottom: 8px; }
.founder-text p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--charcoal);
}
.founder-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-rule);
}
.founder-contact a {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--viridian);
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.founder-contact a:hover,
.founder-contact a:focus-visible {
  color: var(--forest);
  border-bottom-color: var(--forest);
}

@media (max-width: 900px) {
  .founder { padding: 56px 0; }    /* LOCKED — 56px mobile */
  .founder-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  .founder-portrait img { animation: none; transform: scale(1.04); }
}


/* 26 · STRATEGY — Process
   ─────────────────────────────────────────── */
.process {
  background: var(--cream);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
}
.process-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 96px;
  align-items: start;
}
.process-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.process-sidebar .h2 { margin-bottom: 8px; }
.process-sidebar p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-muted);
  max-width: 340px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--gray-rule);
}
.process-step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--gray-rule);
  align-items: start;
}
.process-step-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.process-step-title {
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--viridian);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process-step-body {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--gray-muted);
  max-width: 540px;
}

@media (max-width: 900px) {
  .process { padding: 56px 0; }    /* LOCKED — 56px mobile */
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-sidebar { position: static; }
  .process-step { grid-template-columns: 1fr; gap: 12px; padding: 40px 0; }
}


/* 27 · STRATEGY — The Ninety-Day Clock
   ─────────────────────────────────────────── */
.ninety {
  position: relative;
  background: var(--viridian);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
  overflow: hidden;
}
.ninety::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 90% at 85% 40%, rgba(45,106,79,0.4), transparent 65%);
}
.ninety .w { position: relative; z-index: 1; }
.ninety-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand-pale);
  margin-bottom: 48px;
}
.ninety-headline {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 64px;
}
.ninety-numeral {
  font-family: var(--font-display);
  font-size: clamp(8rem, 16vw, 17rem);
  font-weight: 400;
  line-height: 0.86;
  color: var(--cream);
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.ninety-numeral .ninety-numeral-num {
  display: block;
  line-height: 0.86;
}
.ninety-numeral em,
.ninety-numeral .ninety-numeral-unit {
  font-style: italic;
  color: var(--sand);
  font-size: 0.28em;
  display: block;
  letter-spacing: 0.04em;
  margin-top: 14px;
  font-weight: 400;
}
.ninety-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--cream);
  letter-spacing: -0.01em;
  max-width: 540px;
}
.ninety-quote em { font-style: italic; color: inherit; }
.ninety-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-top: 56px;
  border-top: 1px solid rgba(250,248,244,0.18);
}
.ninety-body p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250,248,244,0.8);
}

@media (max-width: 900px) {
  .ninety { padding: 56px 0; }     /* LOCKED — 56px mobile */
  .ninety-headline { grid-template-columns: 1fr; gap: 24px; margin-bottom: 44px; }
  .ninety-body { grid-template-columns: 1fr; gap: 22px; padding-top: 36px; }
}


/* 28 · STRATEGY — A Closer Look
   ─────────────────────────────────────────── */
.closer-look {
  background: var(--cream);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
}
.closer-head {
  margin-bottom: 88px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
}
.closer-head-copy { max-width: 720px; }
.closer-head-intro {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-muted);
  max-width: 420px;
}
.closer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 72px;
  border-top: 1px solid var(--gray-rule);
  padding-top: 56px;
}
.closer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.closer-label {
  font-family: var(--font-eyebrow);  /* DM Sans — locked Rule 1.3 */
  font-size: 0.8125rem;            /* 13px — locked eyebrow spec */
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--viridian);
  margin-bottom: 12px;             /* LOCKED — 12px eyebrow-to-H3 */
}
.closer-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--viridian);
  letter-spacing: -0.005em;
}
.closer-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-muted);
}

@media (max-width: 900px) {
  .closer-look { padding: 56px 0; } /* LOCKED — 56px mobile */
  .closer-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .closer-grid { grid-template-columns: 1fr; gap: 44px; padding-top: 40px; }
}


/* Strategy page — section bg overrides for tonal variety */
.strategy-page .sectors { background: var(--cream-warm); padding: 72px 0; }

/* Strategy page — Our Thesis
   ─────────────────────────────────────────── */
.thesis {
  background: var(--cream);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
}
/* LOCKED — single centered column, no empty left-eyebrow column */
.thesis-grid {
  display: block;
  max-width: 800px;
  margin: 0 auto;
}
.thesis-label { display: none; }   /* Left eyebrow column retired site-wide */
.thesis-body {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 800px;
}
.thesis-body .h2 { margin-bottom: 12px; }
.thesis-body p {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--charcoal);
}

@media (max-width: 900px) {
  .thesis { padding: 56px 0; }     /* LOCKED — 56px mobile */
  .thesis-grid { grid-template-columns: 1fr; gap: 24px; }
}


/* Strategy page — The California Edge (dark editorial moment)
   ─────────────────────────────────────────── */
.cal-edge {
  position: relative;
  background: var(--viridian);
  padding: 80px 0;
  overflow: hidden;
}
.cal-edge::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 80% 30%, rgba(45,106,79,0.4), transparent 65%);
}
.cal-edge .w { position: relative; z-index: 1; }
.cal-edge .eyebrow { color: var(--viridian); }
.cal-edge .h2 { color: var(--cream); }
.cal-edge .body { color: rgba(250,248,244,0.82); }
.cal-edge-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
}
.cal-edge-head .body { max-width: 480px; }
.cal-edge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
.cal-edge-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cal-edge-num {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--sand);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.cal-edge-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.cal-edge-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(250,248,244,0.78);
  max-width: 520px;
}

@media (max-width: 900px) {
  .cal-edge { padding: 64px 0; }
  .cal-edge-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .cal-edge-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* Strategy page — What We Look For (prose)
   ─────────────────────────────────────────── */
.fit {
  background: var(--cream-deep);
  padding: 72px 0;
}
.fit-head {
  margin-bottom: 44px;
  max-width: 720px;
}
.fit-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}
.fit-body p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}
.fit-body strong {
  font-weight: 700;
  color: var(--viridian);
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .fit { padding: 72px 0; }
}


/* Strategy page — What This Isn't
   ─────────────────────────────────────────── */
.not-this {
  position: relative;
  background: var(--viridian);
  padding: 72px 0;
  overflow: hidden;
}
.not-this::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 90% at 80% 20%, rgba(45,106,79,0.55), transparent 65%);
}
.not-this-inner {
  position: relative;
  max-width: 820px;
}
.not-this .eyebrow { color: var(--viridian); }
.not-this .h2 { color: var(--cream); }
.not-this-body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(250,248,244,0.88);
  margin-top: 24px;
}

@media (max-width: 900px) {
  .not-this { padding: 72px 0; }
}


/* 29 · STRATEGY — Advisors & Capital Partners
   ─────────────────────────────────────────── */
.advisors {
  background: var(--cream-deep);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
}
.advisors-head {
  margin-bottom: 48px;             /* LOCKED — 48px between head and grid */
  max-width: 900px;                /* LOCKED — single centered column */
  margin-left: auto;
  margin-right: auto;
}
.advisors-head .body { max-width: 640px; }
.advisors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;                       /* LOCKED — 40px columns */
  border-top: 1px solid var(--gray-rule);
  border-bottom: 1px solid var(--gray-rule); /* LOCKED — divider top + bottom */
  padding: 48px 0;                 /* LOCKED — 48px top + bottom */
}
.advisor-col {
  display: flex;
  flex-direction: column;
  gap: 0;                          /* margins handled per-element below */
}
.advisor-label {
  font-family: var(--font-eyebrow);  /* DM Sans — locked Rule 1.3 */
  font-size: 0.8125rem;            /* 13px — locked eyebrow spec */
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--viridian);
  margin-bottom: 12px;             /* LOCKED — 12px eyebrow-to-H3 */
}
.advisor-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.28;
  color: var(--viridian);
  letter-spacing: -0.005em;
  margin-bottom: 16px;             /* LOCKED — 16px H3-to-body */
}
.advisor-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-muted);
}

@media (max-width: 900px) {
  .advisors { padding: 56px 0; }   /* LOCKED — 56px mobile */
  .advisors-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .advisors-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 36px; padding-bottom: 36px; }
}


/* 29b · STRATEGY — Portfolio placeholder (retained for reference)
   ─────────────────────────────────────────── */
.portfolio-placeholder {
  background: var(--cream-deep);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
}
.portfolio-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.portfolio-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 28px;
}
.portfolio-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--viridian);
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.portfolio-statement em { font-style: italic; color: inherit; }
.portfolio-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-muted);
  max-width: 540px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .portfolio-placeholder { padding: 56px 0; } /* LOCKED — 56px mobile */
}


/* 30 · CONTACT — split layout
   ─────────────────────────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 84px);
  padding-top: 84px;
}

.contact-info {
  background: var(--viridian);
  padding: 96px var(--pad-x);      /* LOCKED — max 96px desktop */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 80% 90% at 30% 30%, rgba(45,106,79,0.4), transparent 65%);
}
.contact-info-inner { position: relative; z-index: 1; max-width: 480px; }

/* Porter identity block */
.contact-porter {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(250,248,244,0.15);
}
.contact-porter-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex: none;
  filter: none; /* exception — Porter's portrait stays in color */
}
.contact-porter-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.005em;
}
.contact-porter-title {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sand-pale);
  margin-top: 6px;
}
.contact-porter-line {
  font-family: var(--font-body);
  font-size: 0.85rem;
  line-height: 1.4;
  color: rgba(250,248,244,0.78);
  margin-top: 4px;
}
.contact-porter-line a {
  color: inherit;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.contact-porter-line a:hover,
.contact-porter-line a:focus-visible {
  color: var(--cream);
  border-bottom-color: rgba(250,248,244,0.4);
}

/* What happens next block */
.contact-next {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid rgba(250,248,244,0.15);
}
.contact-next-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.contact-next-step {
  margin-bottom: 18px;
}
.contact-next-step:last-child { margin-bottom: 0; }
.contact-next-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand-pale);
  margin-bottom: 4px;
}
.contact-next-body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(250,248,244,0.8);
}
.contact-info-eyebrow {
  font-family: var(--font-eyebrow);  /* DM Sans — locked Rule 1.3 */
  font-size: 0.8125rem;            /* 13px — locked eyebrow spec */
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--viridian);          /* viridian even on dark — locked Rule 1.3 */
  margin-bottom: 12px;             /* LOCKED — 12px eyebrow-to-H2 */
}
.contact-info-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
}
.contact-info-h2 em { font-style: italic; color: var(--sand-pale); }
.contact-info-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(250,248,244,0.8);
  max-width: 440px;
  margin-bottom: 48px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-detail { display: flex; flex-direction: column; gap: 6px; }
.contact-detail-label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.55);
}
.contact-detail-val {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--cream);
}
.contact-detail-val a {
  color: inherit;
  transition: color 0.2s;
  border-bottom: 1px solid transparent;
}
.contact-detail-val a:hover,
.contact-detail-val a:focus-visible {
  color: var(--sand-pale);
  border-bottom-color: rgba(236,228,210,0.45);
}

.contact-form-panel {
  background: var(--cream);
  padding: 96px var(--pad-x);      /* LOCKED — max 96px desktop */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-inner { max-width: 540px; }
.contact-form-eyebrow {
  font-family: var(--font-eyebrow);  /* DM Sans — locked Rule 1.3 */
  font-size: 0.8125rem;            /* 13px — locked eyebrow spec */
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--viridian);
  margin-bottom: 12px;             /* LOCKED — 12px eyebrow-to-H2 */
}
.contact-form-h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--viridian);
  margin-bottom: 22px;
}
.contact-form-h1 em { font-style: italic; color: inherit; }
.contact-form-sub {
  font-family: var(--font-body);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--gray-muted);
  margin-bottom: 48px;
}

/* What to include block (above form) */
.contact-include {
  margin-bottom: 36px;
  padding: 22px 26px;
  background: var(--cream-deep);
  border-left: 3px solid var(--viridian);
}
.contact-include-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--viridian);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.contact-include-body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--charcoal);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-muted);
}
.form-input,
.form-textarea,
.form-select {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-rule);
  padding: 10px 0;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(44,44,42,0.35);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-bottom-color: var(--forest);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-body);
}
.form-select { cursor: pointer; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--forest) 50%), linear-gradient(135deg, var(--forest) 50%, transparent 50%); background-position: calc(100% - 14px) center, calc(100% - 8px) center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 28px; }

.form-submit {
  align-self: flex-start;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--viridian);
  padding: 18px 40px;
  border: 1px solid var(--forest-deep);
  cursor: pointer;
  transition: background 0.25s var(--ease-std), border-color 0.25s var(--ease-std);
  margin-top: 12px;
}
.form-submit:hover,
.form-submit:focus-visible { background: var(--forest); border-color: var(--forest); }
.form-submit:focus-visible { outline: 2px solid var(--forest); outline-offset: 3px; }

.form-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--gray-muted);
  margin-top: 8px;
  font-style: italic;
}

/* Section 2.3 — Inline form validation state */
.form-error {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.5;
  color: #9C3A2C;                  /* muted brick — reads red without breaking palette */
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }
.form-input--error,
.form-textarea--error,
.form-select--error {
  border-bottom-color: #9C3A2C !important;
}
.form-input--error:focus,
.form-textarea--error:focus,
.form-select--error:focus {
  border-bottom-color: #9C3A2C !important;
}

@media (max-width: 1000px) {
  .contact-split { grid-template-columns: 1fr; min-height: auto; }
  .contact-info { padding: 56px var(--pad-x-mobile); }    /* LOCKED — 56px mobile */
  .contact-form-panel { padding: 56px var(--pad-x-mobile); } /* LOCKED — 56px mobile */
}
@media (max-width: 600px) {
  .contact-form-row { grid-template-columns: 1fr; }
}


/* 31 · PAGE CTA (simpler than Home CTA band)
   ─────────────────────────────────────────── */
.page-cta {
  background: var(--cream-deep);
  padding: 96px 0;                 /* LOCKED — max 96px desktop */
}
.page-cta-inner {
  text-align: center;
  max-width: 800px;                /* LOCKED — 800px per spec */
  margin: 0 auto;
}
.page-cta-eyebrow {
  font-family: var(--font-eyebrow);  /* DM Sans — locked Rule 1.3 */
  font-size: 0.8125rem;            /* 13px — locked spec */
  font-weight: 500;                /* medium — locked spec */
  letter-spacing: 0.12em;          /* locked spec */
  text-transform: uppercase;
  color: var(--viridian);
  margin-bottom: 12px;             /* LOCKED — 12px eyebrow-to-H2 */
}
.page-cta-h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--viridian);
  max-width: 800px;                /* LOCKED — 800px */
  margin: 0 auto 24px;             /* LOCKED — 24px H2-to-body */
}
.page-cta-h2 em { font-style: italic; color: inherit; }
.page-cta-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-muted);
  max-width: 520px;
  margin: 0 auto 40px;             /* LOCKED — 40px body-to-buttons */
}
.page-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .page-cta { padding: 56px 0; }   /* LOCKED — 56px mobile */
  .page-cta-buttons { flex-direction: column; align-items: stretch; }
  .page-cta-buttons .btn { text-align: center; }
}


/* ============================================================
   27b · FIRM FACTS (About — structured at-a-glance block
   for LLMs and scanners; human-readable two-column dl)
   ─────────────────────────────────────────── */
.firm-facts {
  background: var(--cream-deep);
  padding: 88px 0;
  border-top: 1px solid var(--gray-rule);
}
.firm-facts-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.firm-facts-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--viridian);
  margin-bottom: 12px;
}
.firm-facts-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--viridian);
}
.firm-facts-h2 em { font-style: italic; color: var(--viridian); }
.firm-facts-dl {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 18px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}
.firm-facts-dl dt {
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.firm-facts-dl dd {
  color: var(--charcoal);
  margin: 0;
}
.firm-facts-dl dd a {
  color: var(--viridian);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 700px) {
  .firm-facts { padding: 64px 0; }
  .firm-facts-dl {
    grid-template-columns: 1fr;
    gap: 4px 0;
  }
  .firm-facts-dl dt { margin-top: 14px; }
  .firm-facts-dl dt:first-child { margin-top: 0; }
}


/* ============================================================
   28 · LEGAL PAGES (Terms of Use, Privacy Policy)
   Narrow prose column, editorial typography, quiet hierarchy.
   ─────────────────────────────────────────── */
.legal-hero {
  background: var(--viridian);
  padding: 180px 0 72px;
  position: relative;
}
.legal-hero .w { position: relative; z-index: 2; }
.legal-hero-eyebrow {
  font-family: var(--font-eyebrow);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-pale);
  margin-bottom: 14px;
}
.legal-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  max-width: 820px;
}
.legal-hero-h1 em { font-style: italic; color: #ECE4D2; }
.legal-updated {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(250,248,244,0.72);
  margin-top: 20px;
  letter-spacing: 0.04em;
}

.legal {
  background: var(--cream);
  padding: 88px 0 112px;
}
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.78;
  color: var(--charcoal);
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--viridian);
  margin: 48px 0 14px;
  letter-spacing: -0.01em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 28px 0 8px;
  letter-spacing: 0.01em;
}
.legal-body p { margin: 0 0 18px; }
.legal-body ul {
  margin: 0 0 18px;
  padding-left: 22px;
}
.legal-body li { margin-bottom: 6px; }
.legal-body a {
  color: var(--viridian);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover { color: var(--forest-deep); }
.legal-body strong { font-weight: 600; color: var(--charcoal); }

@media (max-width: 900px) {
  .legal-hero { padding: 140px 0 56px; }
  .legal { padding: 64px 0 80px; }
  .legal-body { font-size: 0.98rem; }
}
