@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --forest: #0b4d2e;
  --forest-deep: #07351f;
  --leaf: #2e7d4a;
  --orange: #f29a2e;
  --orange-deep: #c96b12;
  --cream: #f7f2e8;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #17241c;
  --muted: #526158;
  --line: #d7e0d9;
  --success: #1f6e42;
  --danger: #a53b2b;
  --shadow-sm: 0 10px 30px rgba(7, 53, 31, 0.08);
  --shadow-md: 0 22px 60px rgba(7, 53, 31, 0.14);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1180px;
  --header-h: 128px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea { font: inherit; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }

.section { padding: 80px 0; }
.section-lg { padding: 100px 0; }
.section-cream { background: var(--cream); }
.section-forest { color: var(--white); background: var(--forest-deep); }
.section-ink { color: var(--white); background: var(--ink); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--orange-deep);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: '';
  background: currentColor;
}

.section-forest .eyebrow,
.section-ink .eyebrow { color: #ffc879; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6vw, 5.7rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.15rem, 4vw, 3.9rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.8rem); letter-spacing: -.02em; }
h4 { font-size: 1.16rem; }

p { margin: 0 0 1rem; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
.section-forest .lead, .section-ink .lead { color: rgba(255, 255, 255, .76); }
.section-heading { display: grid; gap: 18px; margin-bottom: 42px; }
.section-heading.center { justify-items: center; text-align: center; }
.section-heading.center .lead { margin-inline: auto; }
.subtle { color: var(--muted); }
.overline { font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms var(--ease), background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { color: var(--white); background: var(--forest); box-shadow: 0 12px 26px rgba(11, 77, 46, .2); }
.btn-primary:hover { background: var(--forest-deep); box-shadow: 0 16px 34px rgba(11, 77, 46, .26); }
.btn-accent { color: var(--forest-deep); background: var(--orange); }
.btn-accent:hover { background: #ffad49; }
.btn-outline { color: var(--forest); border-color: rgba(11, 77, 46, .3); background: transparent; }
.btn-outline:hover { border-color: var(--forest); background: rgba(11, 77, 46, .06); }
.btn-light { color: var(--forest-deep); background: var(--white); }
.btn-light:hover { background: var(--cream); }
.btn-ghost-light { color: var(--white); border-color: rgba(255, 255, 255, .4); }
.btn-ghost-light:hover { border-color: var(--white); background: rgba(255, 255, 255, .1); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button-row.center { justify-content: center; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--forest); font-weight: 800; }
.text-link::after { content: '→'; transition: transform 180ms var(--ease); }
.text-link:hover::after { transform: translateX(4px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(255, 253, 248, .9);
  backdrop-filter: blur(18px);
  transition: box-shadow 200ms var(--ease), border-color 200ms var(--ease);
}

.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(7, 53, 31, .08); }
.header-inner { width: min(calc(100% - 40px), 1280px); min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; min-height: 96px; flex: 0 0 auto; align-items: center; }
.brand-logo { display: block; width: auto; height: auto; object-fit: contain; }
.brand-logo-header {
  width: 300px;
  max-height: 126px;
  mix-blend-mode: multiply;
}
.brand-logo-footer {
  width: min(100%, 440px);
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
}
.desktop-nav { display: flex; align-items: center; gap: 3px; }
.nav-link { display: inline-flex; min-height: 44px; align-items: center; padding: 10px 11px; border-radius: 999px; color: var(--muted); font-size: .84rem; font-weight: 700; white-space: nowrap; }
.nav-link:hover, .nav-link[aria-current='page'] { color: var(--forest-deep); background: rgba(11, 77, 46, .08); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { min-height: 44px; padding: 10px 16px; font-size: .84rem; white-space: nowrap; }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 0; border-radius: 50%; color: var(--forest-deep); background: rgba(11, 77, 46, .08); cursor: pointer; }
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-panel {
  position: fixed;
  inset: var(--header-h) 0 auto;
  z-index: 990;
  display: grid;
  max-height: calc(100dvh - var(--header-h));
  gap: 8px;
  padding: 18px 20px 26px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-md);
  transform: translateY(-120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 240ms var(--ease), opacity 180ms var(--ease), visibility 240ms;
}
.mobile-panel.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-panel .nav-link { min-height: 50px; padding-inline: 16px; font-size: 1rem; }
.mobile-panel .btn { margin-top: 8px; }

.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}
.hero::before {
  position: absolute;
  inset: 0;
  content: '';
  background: linear-gradient(90deg, rgba(4, 32, 18, .94) 0%, rgba(4, 32, 18, .8) 44%, rgba(4, 32, 18, .2) 78%, rgba(4, 32, 18, .08) 100%);
  z-index: 1;
}
.hero::after {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -170px;
  bottom: -260px;
  content: '';
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(242, 154, 46, .07), 0 0 0 140px rgba(255, 255, 255, .04);
  z-index: 1;
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; opacity: .94; filter: saturate(1.08) contrast(1.03); }
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) 330px; align-items: end; gap: 54px; padding: 92px 0; }
.hero-copy { max-width: 790px; }
.hero .eyebrow { color: #ffd18f; }
.hero h1 { max-width: 820px; }
.hero-lead { max-width: 680px; margin: 24px 0 30px; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.8vw, 1.28rem); }
.hero-proof { padding: 24px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-md); background: rgba(255,255,255,.1); backdrop-filter: blur(14px); }
.hero-proof strong { display: block; margin-bottom: 8px; font-family: 'Fraunces', Georgia, serif; font-size: 1.5rem; line-height: 1.1; }
.hero-proof p { margin: 0; color: rgba(255,255,255,.75); font-size: .92rem; }
.hero-proof .proof-line { display: flex; gap: 12px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.16); }
.hero-proof .proof-line:first-of-type { margin-top: 16px; }
.proof-dot { width: 10px; height: 10px; flex: 0 0 auto; margin-top: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(242,154,46,.15); }

.page-hero {
  position: relative;
  padding: 100px 0 82px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: .58;
  filter: saturate(1.1) contrast(1.04);
}
.page-hero-media.focus-top { object-position: center 25%; }
.page-hero-media.focus-right { object-position: 68% center; }
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: '';
  background: linear-gradient(90deg, rgba(4,32,18,.96) 0%, rgba(4,32,18,.88) 45%, rgba(4,32,18,.54) 72%, rgba(4,32,18,.34) 100%);
}
.page-hero::after { position: absolute; z-index: 1; width: 440px; height: 440px; top: -210px; right: -120px; content: ''; border: 70px solid rgba(242,154,46,.13); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 870px; font-size: clamp(2.7rem, 6vw, 5rem); }
.page-hero .lead { margin-top: 22px; color: rgba(255, 255, 255, .76); }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; color: rgba(255,255,255,.67); font-size: .84rem; font-weight: 700; }
.breadcrumb a:hover { color: var(--white); }

.trust-rail { border-bottom: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; min-height: 92px; align-items: center; gap: 12px; padding: 20px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-icon { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; border-radius: 14px; color: var(--forest); background: var(--cream); }
.trust-icon svg { width: 22px; height: 22px; }
.trust-item strong { display: block; font-size: .92rem; }
.trust-item span { color: var(--muted); font-size: .76rem; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.stat-number { display: flex; align-items: baseline; gap: 4px; color: var(--forest); font-family: 'Fraunces', Georgia, serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; line-height: 1; }
.stat-card p { margin: 12px 0 0; color: var(--muted); font-size: .88rem; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(36px, 6vw, 84px); }
.split.reverse .media-frame { order: 2; }
.media-frame { position: relative; }
.media-frame img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius-lg); background: var(--cream); box-shadow: var(--shadow-md); filter: saturate(1.04) contrast(1.02); }
.media-frame.landscape img { aspect-ratio: 4 / 3; }
.media-note { position: absolute; right: -22px; bottom: 24px; max-width: 230px; padding: 18px; border-radius: var(--radius-sm); color: var(--white); background: var(--forest); box-shadow: var(--shadow-md); }
.media-note strong { display: block; font-family: 'Fraunces', Georgia, serif; font-size: 1.35rem; line-height: 1.1; }
.media-note span { display: block; margin-top: 6px; color: rgba(255,255,255,.74); font-size: .8rem; }
.content-stack { display: grid; gap: 20px; }
.content-stack .lead { margin: 0; }
.check-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: var(--muted); }
.check-list li::before { position: absolute; top: .45em; left: 0; display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; content: '✓'; color: var(--white); background: var(--leaf); font-size: .7rem; font-weight: 800; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.info-card { position: relative; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease); }
.info-card:hover { border-color: rgba(11,77,46,.28); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.info-card .icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 22px; border-radius: 16px; color: var(--forest); background: var(--cream); }
.info-card .icon svg { width: 26px; height: 26px; }
.info-card h3 { margin-bottom: 12px; }
.info-card p { color: var(--muted); }
.info-card .text-link { margin-top: 8px; }
.number-chip { display: inline-flex; min-width: 36px; min-height: 36px; align-items: center; justify-content: center; margin-bottom: 20px; border-radius: 50%; color: var(--forest-deep); background: var(--orange); font-weight: 800; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { position: relative; padding: 30px 26px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.process-step:first-child { border-left: 1px solid var(--line); border-radius: var(--radius-md) 0 0 var(--radius-md); }
.process-step:last-child { border-right: 1px solid var(--line); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.process-step:not(:last-child)::after { position: absolute; top: 42px; right: -10px; z-index: 1; display: grid; width: 20px; height: 20px; place-items: center; border-radius: 50%; content: '›'; color: var(--forest); background: var(--orange); font-weight: 800; }
.process-step h3 { margin-bottom: 10px; font-size: 1.25rem; }
.process-step p { margin: 0; color: var(--muted); font-size: .88rem; }

.feature-band { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border-radius: var(--radius-lg); color: var(--white); background: var(--forest-deep); box-shadow: var(--shadow-md); }
.feature-band-content { display: grid; align-content: center; gap: 18px; padding: clamp(34px, 6vw, 72px); }
.feature-band-media img { width: 100%; height: 100%; min-height: 440px; object-fit: cover; }
.feature-band .lead { margin: 0; }

.timeline { position: relative; display: grid; gap: 0; }
.timeline::before { position: absolute; top: 0; bottom: 0; left: 27px; width: 2px; content: ''; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 56px minmax(0, 1fr); gap: 22px; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-year { position: relative; z-index: 1; display: grid; width: 56px; height: 56px; place-items: center; border: 2px solid var(--paper); border-radius: 50%; color: var(--white); background: var(--forest); box-shadow: 0 0 0 4px var(--cream); font-weight: 800; }
.timeline-copy { padding: 4px 0 0; }
.timeline-copy h3 { margin-bottom: 8px; }
.timeline-copy p { color: var(--muted); }

.document-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.document-card { display: grid; min-height: 218px; align-content: space-between; gap: 24px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease), transform 200ms var(--ease); }
.document-card:hover { border-color: rgba(11,77,46,.35); box-shadow: var(--shadow-sm); }
.document-card-link:hover { transform: translateY(-4px); }
.document-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 14px; color: var(--orange-deep); background: #fff2dc; }
.document-icon svg { width: 24px; height: 24px; }
.document-card h3 { margin: 14px 0 8px; font-size: 1.25rem; }
.document-card p { margin: 0; color: var(--muted); font-size: .86rem; }
.status-pill { display: inline-flex; width: fit-content; min-height: 28px; align-items: center; padding: 5px 10px; border-radius: 999px; color: #775019; background: #fff2d8; font-size: .68rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.status-pill.is-verified { color: var(--forest-deep); background: #dff2e7; }
.document-action { display: inline-flex; min-height: 44px; align-items: center; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); color: var(--forest); font-size: .85rem; font-weight: 800; }

.org-chart-preview { margin: 0; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.org-chart-preview > a { display: block; overflow: hidden; border-radius: calc(var(--radius-lg) - 10px); background: var(--white); }
.org-chart-preview img { width: 100%; aspect-ratio: 1.414 / 1; object-fit: contain; background: var(--white); }
.org-chart-preview figcaption { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 6px 2px; }
.org-chart-preview figcaption p { margin: 8px 0 0; color: var(--muted); font-size: .86rem; }
.org-summary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.org-summary-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.org-summary-card-wide { grid-column: 1 / -1; }
.org-summary-card h3 { margin-top: 8px; font-size: 1.35rem; }
.org-summary-card > p:last-child { margin: 14px 0 0; color: var(--muted); }
.org-label { margin: 0; color: var(--orange-deep); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.org-name-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0; padding: 0; list-style: none; }
.org-name-list li { padding: 7px 11px; border-radius: 999px; color: var(--forest-deep); background: var(--cream); font-size: .82rem; font-weight: 700; }
.org-role-list { display: grid; gap: 0; margin: 14px 0 0; padding: 0; list-style: none; }
.org-role-list li { display: grid; grid-template-columns: minmax(150px, .85fr) 1.15fr; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); }
.org-role-list strong { color: var(--forest-deep); font-size: .8rem; }
.org-role-list span { color: var(--muted); font-size: .82rem; }

.cta-band { position: relative; padding: clamp(42px, 7vw, 76px); overflow: hidden; border-radius: var(--radius-lg); color: var(--white); background: var(--forest); box-shadow: var(--shadow-md); }
.cta-band::after { position: absolute; width: 340px; height: 340px; right: -120px; bottom: -190px; content: ''; border: 58px solid rgba(242,154,46,.16); border-radius: 50%; }
.cta-band-content { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 36px; }
.cta-band h2 { max-width: 760px; }
.cta-band p { max-width: 660px; margin: 18px 0 0; color: rgba(255,255,255,.76); }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 12px; }
.gallery-card { position: relative; min-height: 44px; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius-sm); cursor: zoom-in; background: var(--cream); }
.gallery-card.wide { grid-column: span 2; }
.gallery-card.tall { grid-row: span 2; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms var(--ease); }
.gallery-card::after { position: absolute; inset: auto 12px 12px auto; display: grid; width: 40px; height: 40px; place-items: center; border-radius: 50%; content: '+'; color: var(--forest-deep); background: rgba(255,255,255,.9); font-size: 1.4rem; box-shadow: var(--shadow-sm); }
.gallery-card:hover img { transform: scale(1.045); }

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  grid-template-rows: repeat(2, 250px);
  gap: 14px;
}
.story-card {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--forest-deep);
  box-shadow: var(--shadow-sm);
}
.story-card-main { grid-row: 1 / 3; }
.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  transition: transform 320ms var(--ease), filter 320ms var(--ease);
}
.story-card-main img { object-position: center 44%; }
.story-card figcaption {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 52px 22px 20px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(4,32,18,.9));
}
.story-card figcaption span { color: #ffd18f; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.story-card figcaption strong { font-family: 'Fraunces', Georgia, serif; font-size: 1.3rem; line-height: 1.15; }
.story-card:hover img { transform: scale(1.025); filter: saturate(1.13) contrast(1.04); }
.story-note { margin-top: 16px; color: var(--muted); font-size: .82rem; }
.lightbox { width: min(92vw, 1040px); max-height: 90dvh; padding: 0; overflow: hidden; border: 0; border-radius: var(--radius-md); background: #07130d; box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.lightbox::backdrop { background: rgba(3,16,9,.82); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: 82dvh; object-fit: contain; }
.lightbox-close { position: absolute; top: 14px; right: 14px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: var(--white); background: rgba(0,0,0,.45); cursor: pointer; font-size: 1.4rem; }

.team-groups { display: grid; gap: 58px; }
.team-group { display: grid; gap: 22px; }
.team-group-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.team-group-heading h3 { font-size: clamp(1.65rem, 2.7vw, 2.4rem); }
.team-group-heading p { max-width: 520px; margin: 0; color: var(--muted); text-align: right; }
.people-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.person-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.person-card img { width: 100%; aspect-ratio: 4 / 4.5; object-fit: cover; object-position: top center; }
.person-photo-placeholder { position: relative; isolation: isolate; display: grid; aspect-ratio: 4 / 4.5; place-content: center; gap: 10px; overflow: hidden; color: var(--white); background: linear-gradient(145deg, var(--forest-deep), var(--leaf)); text-align: center; }
.person-photo-placeholder::before,
.person-photo-placeholder::after { position: absolute; z-index: -1; content: ''; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; }
.person-photo-placeholder::before { width: 230px; height: 230px; top: -115px; right: -88px; box-shadow: 0 0 0 42px rgba(242,154,46,.08); }
.person-photo-placeholder::after { width: 150px; height: 150px; bottom: -85px; left: -58px; box-shadow: 0 0 0 32px rgba(255,255,255,.04); }
.person-placeholder-initials { font-family: 'Fraunces', Georgia, serif; font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; letter-spacing: -.04em; line-height: 1; }
.person-placeholder-note { font-size: .7rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.person-copy { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.person-copy h3 { font-size: 1.28rem; }
.person-copy p { margin: 7px 0 0; color: var(--muted); font-size: .8rem; }
.person-copy .person-role { color: var(--forest); font-size: .72rem; font-weight: 800; letter-spacing: .055em; line-height: 1.4; text-transform: uppercase; }
.person-copy .person-summary { margin-top: 12px; line-height: 1.55; }
.person-card-wide { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(260px, .7fr) 1.3fr; }
.person-card-wide .person-photo-placeholder { min-height: 260px; aspect-ratio: auto; }
.person-card-wide .person-copy { justify-content: center; padding: 30px; }

.budget-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.budget-card { min-width: 0; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); }
.budget-card-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.budget-card h3 { font-size: 1.2rem; }
.budget-card p { margin: 12px 0 0; color: var(--muted); font-size: .86rem; }
.budget-line { height: 7px; margin-top: 20px; overflow: hidden; border-radius: 999px; background: var(--cream); }
.budget-line span { display: block; width: 38%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--forest), var(--orange)); }

.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-card { padding: 30px; border-radius: var(--radius-md); color: var(--white); background: var(--forest-deep); }
.contact-card h2 { font-size: 2rem; }
.contact-card > p { margin-top: 14px; color: rgba(255,255,255,.74); }
.contact-list { display: grid; gap: 0; margin-top: 28px; }
.contact-line { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); }
.contact-line span { display: block; color: rgba(255,255,255,.58); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-line strong { display: block; margin-top: 5px; font-size: 1rem; }
.contact-form { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: var(--shadow-sm); }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { color: var(--ink); font-size: .84rem; font-weight: 800; }
.field small { color: var(--muted); font-size: .74rem; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 12px 14px; border: 1px solid #b9c8be; border-radius: 12px; color: var(--ink); background: var(--paper); outline: 0; transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease); }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); box-shadow: 0 0 0 4px rgba(11,77,46,.12); }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--muted); font-size: .83rem; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

.faq-list { display: grid; gap: 12px; }
.faq-list details { padding: 0 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); }
.faq-list summary { display: flex; min-height: 64px; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--forest); font-size: 1.4rem; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list details p { padding: 0 0 20px; color: var(--muted); }

.notice { padding: 18px 20px; border: 1px solid #edc67f; border-radius: var(--radius-sm); color: #6c4a12; background: #fff6e5; }
.notice strong { display: block; margin-bottom: 4px; }

.floating-cta { position: fixed; right: 18px; bottom: 18px; z-index: 900; display: inline-flex; min-height: 50px; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px; color: var(--forest-deep); background: var(--orange); box-shadow: 0 16px 40px rgba(7,53,31,.25); font-size: .86rem; font-weight: 800; transition: transform 180ms var(--ease), box-shadow 180ms var(--ease); }
.floating-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 48px rgba(7,53,31,.31); }

.site-footer { color: rgba(255,255,255,.76); background: #061f13; }
.footer-main { display: grid; grid-template-columns: 1.6fr .7fr .7fr .7fr; gap: 42px; padding: 72px 0 52px; }
.footer-brand p { max-width: 390px; margin-top: 18px; }
.footer-title { margin-bottom: 16px; color: var(--white); font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { min-height: 34px; color: rgba(255,255,255,.72); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }
.footer-bottom a { color: var(--white); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 360ms var(--ease), transform 360ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 50ms; }
.delay-2 { transition-delay: 100ms; }
.delay-3 { transition-delay: 150ms; }

@media (max-width: 1340px) {
  .header-actions .btn-outline { display: none; }
}

@media (max-width: 1240px) {
  .desktop-nav, .header-actions .btn-outline { display: none; }
  .menu-toggle { display: grid; place-items: center; }
}

@media (max-width: 1100px) {
  .desktop-nav, .header-actions .btn-outline { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .hero-content { grid-template-columns: minmax(0, 1fr) 290px; }
  .card-grid.four, .people-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1.3fr .7fr .8fr; }
  .footer-column:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  :root { --header-h: 112px; }
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 68px 0; }
  .section-lg { padding: 80px 0; }
  .brand-logo-header { width: 250px; max-height: 106px; }
  .hero { min-height: 760px; }
  .hero::before { background: linear-gradient(180deg, rgba(4,32,18,.73) 0%, rgba(4,32,18,.92) 58%, rgba(4,32,18,.98) 100%); }
  .hero-content { grid-template-columns: 1fr; align-items: center; gap: 28px; padding: 74px 0 56px; }
  .hero-proof { max-width: 560px; }
  .trust-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .feature-band, .form-layout { grid-template-columns: 1fr; }
  .split.reverse .media-frame { order: initial; }
  .media-frame { max-width: 620px; }
  .media-note { right: 16px; }
  .card-grid, .document-grid, .budget-grid { grid-template-columns: repeat(2, 1fr); }
  .team-group-heading { align-items: start; flex-direction: column; gap: 8px; }
  .team-group-heading p { text-align: left; }
  .person-card-wide { grid-template-columns: 1fr; }
  .person-card-wide .person-photo-placeholder { min-height: 220px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .process-step, .process-step:first-child, .process-step:last-child { border: 1px solid var(--line); border-radius: var(--radius-md); }
  .process-step:not(:last-child)::after { display: none; }
  .feature-band-media { order: -1; }
  .feature-band-media img { min-height: 340px; }
  .cta-band-content { grid-template-columns: 1fr; align-items: start; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, 220px); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column:last-child { grid-column: auto; }
  .org-chart-preview figcaption { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .header-actions .btn-primary { display: none; }
  :root { --header-h: 104px; }
  .brand-logo-header { width: 230px; max-height: 98px; }
  h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  h2 { font-size: clamp(2rem, 9vw, 3rem); }
  .page-hero { padding: 74px 0 64px; }
  .page-hero-media { object-position: 62% center; opacity: .62; }
  .page-hero-media.focus-top { object-position: 58% 24%; }
  .page-hero-media.focus-right { object-position: 72% center; }
  .page-hero::before { background: linear-gradient(180deg, rgba(4,32,18,.48) 0%, rgba(4,32,18,.84) 44%, rgba(4,32,18,.98) 100%); }
  .hero { min-height: 720px; }
  .hero-media { object-position: 58% center; }
  .hero-proof { display: none; }
  .button-row .btn { width: 100%; }
  .trust-grid, .stats-grid, .card-grid, .card-grid.four, .process-grid, .document-grid, .people-grid, .budget-grid, .field-grid { grid-template-columns: 1fr; }
  .team-groups { gap: 44px; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .stat-card { padding: 24px; }
  .media-note { position: relative; right: auto; bottom: auto; width: calc(100% - 24px); max-width: none; margin: -54px 12px 0; }
  .gallery-grid { grid-auto-rows: 190px; }
  .gallery-card.wide { grid-column: span 2; }
  .gallery-card.tall { grid-row: span 1; }
  .story-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .story-card, .story-card-main { grid-row: auto; min-height: 260px; }
  .cta-band { padding: 34px 24px; }
  .contact-form, .contact-card { padding: 24px 20px; }
  .footer-main { grid-template-columns: 1fr; padding-top: 58px; }
  .footer-brand, .footer-column:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
  .floating-cta { right: 12px; bottom: 12px; padding: 12px 15px; }
  .org-chart-preview { padding: 10px; border-radius: var(--radius-md); }
  .org-chart-preview figcaption { padding: 16px 4px 4px; }
  .org-chart-preview figcaption .btn { width: 100%; }
  .org-summary-grid { grid-template-columns: 1fr; }
  .org-summary-card-wide { grid-column: auto; }
  .org-role-list li { grid-template-columns: 1fr; gap: 4px; }
}

@media (max-width: 360px) {
  :root { --header-h: 98px; }
  .brand { min-height: 88px; }
  .brand-logo-header { width: 210px; max-height: 90px; }
  .header-inner { gap: 10px; }
}

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

@media print {
  .site-header, .floating-cta, .site-footer, .button-row, .menu-toggle { display: none !important; }
  body { color: #000; background: #fff; }
  .section, .section-lg { padding: 32px 0; }
}
