
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body, h1, h2, h3, h4, h5, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
table { border-collapse: collapse; width: 100%; }

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

:root {
  --ink: #0E1612;
  --ink-soft: #2A3830;
  --ink-mute: #5C6B62;
  --paper: #F3F6F2;
  --paper-2: #E6EDE6;
  --paper-3: #D5E0D6;
  --white: #FFFFFF;
  --field-950: #061A14;
  --field-900: #0B2E22;
  --field-800: #134032;
  --field-700: #1A5442;
  --leaf: #3F8F66;
  --leaf-soft: #B8D4C4;
  --harvest: #E8B84A;
  --harvest-deep: #C99228;
  --harvest-soft: #F5E4B8;
  --alert: #C45A32;

  --fs-brand: clamp(3.2rem, 8vw + 1rem, 7.5rem);
  --fs-hero: clamp(1.85rem, 2.4vw + 1rem, 3rem);
  --fs-h1: clamp(2rem, 1.8vw + 1.2rem, 3rem);
  --fs-h2: clamp(1.45rem, 1vw + 1rem, 2rem);
  --fs-h3: clamp(1.15rem, .4vw + 1rem, 1.4rem);
  --fs-lead: clamp(1.05rem, .25vw + .95rem, 1.2rem);
  --fs-body: 1.0625rem;
  --fs-small: .875rem;
  --fs-label: .72rem;

  --font-display: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", Tahoma, sans-serif;
  --font-body: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode", Tahoma, sans-serif;

  --sp-1: .5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-6: 3rem;
  --sp-8: 4.5rem;
  --sp-10: 6.5rem;
  --container: 1140px;
  --radius: 4px;
  --radius-md: 10px;
  --scroll-pct: 0;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.03em;
}

::selection { background: var(--harvest); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--harvest);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--field-900);
  color: var(--paper);
  padding: .8rem 1.4rem;
  z-index: 999;
  font-size: var(--fs-small);
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.container {
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
}
@media (max-width: 640px) {
  .container { width: min(100% - 2rem, var(--container)); }
}

.label {
  font-size: var(--fs-label);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--harvest-deep);
  display: block;
  margin-bottom: var(--sp-2);
}
.section--dark .label { color: var(--harvest); }

.section-head { max-width: 640px; margin-bottom: var(--sp-6); }
.section-head .lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  margin-top: var(--sp-2);
  max-width: 52ch;
}
.section--dark .section-head .lead { color: rgba(243, 246, 242, .78); }

section { padding-block: var(--sp-10); position: relative; }
.section--tight { padding-block: var(--sp-8); }
.section--dark {
  background: var(--field-900);
  color: var(--paper);
}
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--muted { background: var(--paper-2); }

.icon {
  width: 1em; height: 1em;
  stroke: currentColor; fill: none;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.icon--filled { fill: currentColor; stroke: none; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: .95rem 1.55rem;
  border-radius: var(--radius);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn .icon { width: 1.05em; height: 1.05em; }
.btn--gold {
  background: var(--harvest);
  color: var(--ink);
}
.btn--gold:hover { background: var(--harvest-deep); color: var(--white); transform: translateY(-1px); }
.btn--ghost {
  border: 1.5px solid rgba(243,246,242,.4);
  color: var(--paper);
}
.btn--ghost:hover { border-color: var(--harvest); color: var(--harvest); }
.btn--outline {
  border: 1.5px solid var(--field-900);
  color: var(--field-900);
}
.btn--outline:hover { background: var(--field-900); color: var(--white); }
.btn--sm { padding: .65rem 1.1rem; font-size: .8rem; }

/* progress */
.progress-top {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 60;
  background: transparent;
}
.progress-top::after {
  content: "";
  display: block;
  height: 100%;
  width: calc(var(--scroll-pct) * 1%);
  background: var(--harvest);
  transition: width .1s linear;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 246, 242, .9);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid rgba(14, 22, 18, .08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: .85rem;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  color: var(--field-900);
}
.brand-mark {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--field-900);
  display: grid;
  place-items: center;
  color: var(--harvest);
  flex-shrink: 0;
}
.brand-mark svg { width: 28px; height: 28px; }
.brand-mark.has-logo {
  background: transparent;
  padding: 0;
  overflow: hidden;
}
.brand-mark.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-brand .brand-mark.has-logo {
  background: transparent;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--harvest);
  font-weight: 500;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.6rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--field-900);
}
@media (min-width: 980px) { .nav-links { display: flex; } }
.nav-links a {
  position: relative;
  padding-block: .25rem;
  color: var(--field-900);
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  height: 2px; width: 0;
  background: var(--harvest);
  transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--leaf); }
.nav-links a:hover::after, .nav-links a.is-active::after { width: 100%; }

.nav-cta { display: none; }
@media (min-width: 980px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border: 1px solid rgba(14,22,18,.15);
  border-radius: var(--radius);
}
@media (min-width: 980px) { .nav-toggle { display: none; } }
.nav-toggle .icon { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: .15rem;
  padding: .5rem 0 1.4rem;
  border-top: 1px solid rgba(14,22,18,.08);
}
.mobile-panel.is-open { display: flex; }
.mobile-panel a {
  padding: .85rem .2rem;
  font-weight: 500;
  font-size: .95rem;
}
.mobile-panel .btn { margin-top: .5rem; justify-content: center; }

/* ===== HERO — full-bleed image slider ===== */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--field-950);
  color: var(--paper);
  padding: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06);
  transition: transform 7s ease;
}
.hero-slide.is-active img {
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide img,
  .hero-slide.is-active img { transform: none; transition: none; }
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(6,26,20,.88) 0%, rgba(6,26,20,.55) 48%, rgba(6,26,20,.35) 100%),
    linear-gradient(to top, rgba(6,26,20,.92) 0%, transparent 45%);
  pointer-events: none;
}

.hero-controls {
  position: absolute;
  right: max(1.5rem, calc((100% - var(--container)) / 2));
  bottom: clamp(1.5rem, 4vh, 2.5rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .85rem;
}
.hero-dots {
  display: flex;
  gap: .45rem;
  align-items: center;
}
.hero-dot {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(243,246,242,.35);
  transition: background .25s ease, width .25s ease;
  padding: 0;
}
.hero-dot.is-active {
  width: 40px;
  background: var(--harvest);
}
.hero-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(243,246,242,.35);
  color: var(--paper);
  display: grid;
  place-items: center;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.hero-nav-btn:hover {
  border-color: var(--harvest);
  color: var(--harvest);
  background: rgba(6,26,20,.35);
}
.hero-nav-btn .icon { width: 1.15em; height: 1.15em; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 3rem, var(--container));
  margin-inline: auto;
  padding-block: clamp(5rem, 12vh, 8rem) clamp(5.5rem, 10vh, 7rem);
}
.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-brand);
  line-height: .9;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: var(--sp-4);
  animation: heroIn .9s cubic-bezier(.2,.8,.2,1) both;
}
.hero-brand span {
  display: block;
  color: var(--harvest);
}
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: rgba(243,246,242,.92);
  max-width: 18ch;
  margin-bottom: var(--sp-3);
  animation: heroIn .9s cubic-bezier(.2,.8,.2,1) .12s both;
}
.hero .lead {
  font-size: var(--fs-lead);
  color: rgba(243,246,242,.72);
  max-width: 42ch;
  margin-bottom: var(--sp-4);
  animation: heroIn .9s cubic-bezier(.2,.8,.2,1) .22s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  animation: heroIn .9s cubic-bezier(.2,.8,.2,1) .32s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: none; }
}

html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
html.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .65s ease, transform .65s ease;
  transition-delay: calc(var(--i, 0) * 70ms);
}
html.js .reveal.is-visible,
html.js .reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

/* about split — problem / solution */
.split {
  display: grid;
  gap: var(--sp-8);
  padding-top: var(--sp-2);
}
@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 4.5rem);
  }
}
.panel {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 2px solid var(--ink);
}
.panel--problem { border-top-color: var(--alert); }
.panel--solution { border-top-color: var(--field-900); }
.panel-kicker {
  font-size: var(--fs-label);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}
.panel--problem .panel-kicker { color: var(--alert); }
.panel--solution .panel-kicker { color: var(--field-900); }
.panel h3 {
  font-size: clamp(1.35rem, 1.2vw + 1rem, 1.75rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  max-width: 16ch;
}
.panel > p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 38ch;
}
.panel ul {
  display: grid;
  gap: 0;
  margin-top: var(--sp-1);
  border-top: 1px solid rgba(14,22,18,.12);
}
.panel li {
  padding: .85rem 0;
  border-bottom: 1px solid rgba(14,22,18,.12);
  font-size: .95rem;
  line-height: 1.45;
  color: var(--ink-soft);
  padding-left: 1.1rem;
  position: relative;
}
.panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 5px;
  height: 5px;
  background: var(--ink-mute);
}
.panel--problem li::before { background: var(--alert); }
.panel--solution li::before { background: var(--leaf); }

.mv-row {
  display: grid;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(14,22,18,.1);
}
@media (min-width: 760px) { .mv-row { grid-template-columns: 1fr 1fr; gap: var(--sp-8); } }
.mv-item .label { margin-bottom: .75rem; }
.mv-item p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, .6vw + 1rem, 1.4rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--field-900);
  font-weight: 600;
}

.values-list {
  display: grid;
  gap: 0;
  margin-top: var(--sp-4);
  border-top: 1px solid rgba(14,22,18,.1);
}
.value-row {
  display: grid;
  gap: .5rem 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(14,22,18,.1);
  align-items: baseline;
}
@media (min-width: 700px) {
  .value-row { grid-template-columns: 40px 180px 1fr; }
}
.value-row .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--harvest-deep);
}
.value-row h4 { font-size: 1.05rem; }
.value-row p { color: var(--ink-mute); font-size: .95rem; }

/* activities */
.activities {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(14,22,18,.12);
}
.activity {
  display: grid;
  gap: var(--sp-2);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(14,22,18,.12);
  transition: padding-left .25s ease;
}
@media (min-width: 720px) {
  .activity {
    grid-template-columns: 64px 1fr;
    align-items: start;
    gap: var(--sp-4);
  }
}
.activity:hover { padding-left: .5rem; }
.activity-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  color: var(--field-900);
  opacity: .25;
}
.activity h4 { font-size: 1.2rem; margin-bottom: .35rem; }
.activity p { color: var(--ink-soft); max-width: 54ch; }

.strengths-wrap {
  margin-top: var(--sp-8);
  display: grid;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-4);
  background: var(--field-900);
  color: var(--paper);
  border-radius: var(--radius-md);
}
@media (min-width: 760px) {
  .strengths-wrap { grid-template-columns: .75fr 1.25fr; align-items: start; padding: var(--sp-6); }
}
.strengths-wrap .label { color: var(--harvest); }
.strengths-wrap h3 { color: var(--white); font-size: var(--fs-h3); }
.strengths-list { display: grid; gap: 1rem; }
@media (min-width: 560px) { .strengths-list { grid-template-columns: 1fr 1fr; } }
.strengths-list li { display: flex; gap: .7rem; align-items: flex-start; }
.strengths-list .icon { color: var(--harvest); width: 1.15em; height: 1.15em; margin-top: .15rem; }
.strengths-list strong { display: block; font-size: .95rem; color: var(--white); }
.strengths-list span { font-size: .85rem; color: rgba(243,246,242,.65); }

/* leadership */
.leader-grid {
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 900px) {
  .leader-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
}
.leader-card {
  display: grid;
  background: var(--white);
  border: 1px solid rgba(14,22,18,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.leader-card:hover {
  transform: translateY(-4px);
  border-color: rgba(14,22,18,.16);
}
.leader-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 70% 30%, rgba(232,184,74,.18), transparent 55%),
    linear-gradient(145deg, var(--field-800) 0%, var(--field-950) 100%);
}
.leader-card--alt .leader-media {
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(63,143,102,.28), transparent 55%),
    linear-gradient(145deg, var(--field-700) 0%, var(--field-950) 100%);
}
.leader-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
}
.leader-card:hover .leader-media img { transform: scale(1.04); }
.leader-media .monogram {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 8vw, 5rem);
  letter-spacing: -0.04em;
  color: rgba(243,246,242,.12);
  pointer-events: none;
  z-index: 1;
}
.leader-media.has-photo .monogram { display: none; }
.leader-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,26,20,.55) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}
.leader-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
  background: var(--harvest);
  padding: .4rem .7rem;
  border-radius: var(--radius);
}
.leader-card--alt .leader-badge {
  background: var(--field-800);
  color: var(--harvest);
}
.leader-body {
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.leader-body h3 {
  font-size: clamp(1.35rem, 1vw + 1rem, 1.65rem);
  letter-spacing: -0.03em;
}
.leader-body .role {
  font-size: .78rem;
  color: var(--harvest-deep);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  margin-top: .35rem;
}
.leader-card p.bio {
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.6;
}
.leader-edu {
  border-top: 1px solid rgba(14,22,18,.1);
  padding-top: var(--sp-3);
  display: grid;
  gap: .55rem;
  font-size: .86rem;
  color: var(--ink-soft);
}
.leader-edu li { display: flex; gap: .55rem; align-items: flex-start; }
.leader-edu .icon { color: var(--leaf); width: 1em; height: 1em; margin-top: .2rem; flex-shrink: 0; }
.leader-contact {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: auto;
  padding-top: var(--sp-1);
}
.leader-contact a {
  display: inline-flex;
  gap: .4rem;
  align-items: center;
  font-size: .8rem;
  font-weight: 600;
  color: var(--field-900);
  padding: .55rem .85rem;
  background: var(--paper-2);
  border-radius: var(--radius);
  transition: background .2s ease, color .2s ease;
}
.leader-contact a:hover {
  background: var(--field-900);
  color: var(--paper);
}
.leader-contact .icon { width: 1em; height: 1em; color: var(--leaf); }
.leader-contact a:hover .icon { color: var(--harvest); }

.avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  flex-shrink: 0;
  background: var(--field-900);
}
.avatar--gold { background: var(--harvest); color: var(--ink); }

.team-grid {
  margin-top: var(--sp-6);
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
.team-card { text-align: center; }
.team-card .avatar { margin-inline: auto; width: 60px; height: 60px; font-size: 1rem; }
.team-card h4 { font-size: .95rem; margin-top: .7rem; }
.team-card span {
  font-size: .72rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 500;
}

.org-chart {
  margin-top: var(--sp-8);
  padding: var(--sp-4);
  background: var(--paper-2);
  border-radius: var(--radius-md);
}
.org-level { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.org-level + .org-level { margin-top: var(--sp-3); padding-top: var(--sp-3); position: relative; }
.org-level + .org-level::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 50%;
  transform: translateX(-50%);
  border-top: 1px dashed var(--leaf-soft);
}
.org-node {
  background: var(--field-900);
  color: var(--paper);
  padding: .65rem 1.1rem;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  text-align: center;
  min-width: 140px;
}
.org-node--sub { background: var(--leaf); color: var(--white); }
.org-node--leaf { background: var(--white); color: var(--ink-soft); border: 1px solid rgba(14,22,18,.1); }

/* impact / stats — editorial report style */
#impact {
  background: var(--paper);
  color: var(--ink);
  border-top: 1px solid rgba(14,22,18,.08);
  border-bottom: 1px solid rgba(14,22,18,.08);
}
#impact .label { color: var(--harvest-deep); }
#impact .section-head .lead { color: var(--ink-soft); }
#impact h2, #impact h3 { color: var(--ink); }

.stats-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(14,22,18,.14);
  border-bottom: 1px solid rgba(14,22,18,.14);
}
@media (min-width: 800px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  padding: var(--sp-4) var(--sp-3) var(--sp-4) 0;
  border-right: 1px solid rgba(14,22,18,.1);
}
.stat-card:nth-child(2n) { padding-left: var(--sp-3); }
@media (min-width: 800px) {
  .stat-card { padding: var(--sp-5) var(--sp-4) var(--sp-5) 0; }
  .stat-card:not(:first-child) { padding-left: var(--sp-4); }
  .stat-card:last-child { border-right: none; }
}
@media (max-width: 799px) {
  .stat-card:nth-child(2n) { border-right: none; }
  .stat-card:nth-child(-n+2) { border-bottom: 1px solid rgba(14,22,18,.1); }
}
.stat-card strong {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw + 1rem, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--field-900);
  display: block;
  line-height: .95;
}
.stat-card span {
  display: block;
  margin-top: .75rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-mute);
  max-width: 12ch;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.chart-wrap {
  margin-top: var(--sp-8);
}
.chart-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
  align-items: baseline;
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(14,22,18,.12);
}
.chart-head h3 { color: var(--ink); font-size: var(--fs-h3); }
.chart-head .unit {
  font-size: .8rem;
  color: var(--ink-mute);
  font-weight: 500;
}
.bars {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: end;
  gap: .4rem;
  height: 200px;
}
.bar-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.bar {
  width: 100%;
  max-width: 28px;
  background: var(--field-900);
  height: 0%;
  transition: height 1.1s cubic-bezier(.2,.8,.2,1);
}
.bar-col:last-child .bar { background: var(--harvest-deep); }
.bar-col.is-visible .bar { height: var(--h); }
.bar-value {
  font-size: .65rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: .35rem;
  opacity: 0;
  transition: opacity .5s ease .7s;
  white-space: nowrap;
}
.bar-col.is-visible .bar-value { opacity: 1; }
.bar-year {
  margin-top: .5rem;
  font-size: .7rem;
  color: var(--ink-mute);
  font-weight: 500;
}

.two-col {
  display: grid;
  gap: var(--sp-8);
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(14,22,18,.12);
}
@media (min-width: 860px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); }
}
.info-block h3 {
  font-size: var(--fs-h3);
  color: var(--ink);
  margin-bottom: var(--sp-3);
}
.kv-list { display: grid; gap: 0; }
.kv-list li {
  display: grid;
  gap: .35rem;
  padding-block: .9rem;
  border-bottom: 1px solid rgba(14,22,18,.1);
}
.kv-list li:last-child { border-bottom: none; }
@media (min-width: 480px) {
  .kv-list li {
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    align-items: baseline;
  }
}
.kv-list .k {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
}
.kv-list .v {
  font-size: .95rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.market-list,
.adv-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(14,22,18,.12);
}
.market-list li,
.adv-list li {
  padding: .8rem 0 .8rem 1.1rem;
  border-bottom: 1px solid rgba(14,22,18,.12);
  font-size: .95rem;
  color: var(--ink-soft);
  position: relative;
  line-height: 1.45;
}
.market-list li::before,
.adv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 5px;
  height: 5px;
  background: var(--field-900);
}
.info-block + .info-block h3:not(:first-child),
.info-block .subhead {
  margin-top: var(--sp-5);
}

/* financials */
#financials.section--muted {
  background: var(--paper-2);
}
.fin-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: var(--sp-5);
  max-width: 420px;
  border: 1px solid rgba(14,22,18,.16);
}
.fin-tab {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .15rem;
  padding: .9rem 1.15rem;
  text-align: left;
  background: transparent;
  color: var(--ink-mute);
  border-right: 1px solid rgba(14,22,18,.16);
  transition: background .2s ease, color .2s ease;
}
.fin-tab:last-child { border-right: none; }
.fin-tab-label {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: inherit;
  line-height: 1.2;
}
.fin-tab-range {
  font-size: .75rem;
  font-weight: 500;
  color: inherit;
  opacity: .75;
}
.fin-tab.is-active {
  background: var(--field-900);
  color: var(--paper);
}
.fin-tab:not(.is-active):hover {
  background: rgba(14,22,18,.04);
  color: var(--field-900);
}
.fin-tab:focus-visible {
  outline: 2px solid var(--harvest);
  outline-offset: 2px;
  z-index: 1;
}

.fin-panel { display: none; }
.fin-panel.is-active { display: block; }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 2px solid var(--field-900);
  background: transparent;
}
table.fin-table {
  min-width: 640px;
  width: 100%;
  border-collapse: collapse;
}
.fin-table caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 1rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.fin-table th,
.fin-table td {
  padding: 1.05rem 1rem;
  text-align: right;
  font-size: .95rem;
  border-bottom: 1px solid rgba(14,22,18,.1);
  vertical-align: baseline;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.fin-table th:first-child,
.fin-table td:first-child {
  text-align: left;
  padding-left: 0;
  white-space: normal;
  font-weight: 500;
  color: var(--ink-soft);
}
.fin-table th:last-child,
.fin-table td:last-child { padding-right: 0; }
.fin-table thead th {
  padding-top: .35rem;
  padding-bottom: .85rem;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid rgba(14,22,18,.22);
}
.fin-table thead th:first-child {
  font-weight: 600;
  color: var(--ink-mute);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.fin-table tbody tr:last-child td { border-bottom: 1px solid rgba(14,22,18,.22); }
.fin-table tr.emph td {
  font-weight: 700;
  color: var(--field-900);
  background: transparent;
  border-top: 1px solid rgba(14,22,18,.14);
}
.fin-table tr.emph td:first-child { color: var(--field-900); }
.fin-table tr.is-pct td {
  font-size: .88rem;
  color: var(--ink-mute);
  font-style: italic;
}
.fin-table tr.is-pct td:first-child {
  font-style: normal;
  font-weight: 500;
}
.fin-table tbody tr:hover td {
  background: rgba(14,22,18,.025);
}
.fin-note {
  font-size: .84rem;
  line-height: 1.55;
  color: var(--ink-mute);
  margin-top: var(--sp-3);
  max-width: 62ch;
  padding-top: var(--sp-2);
}

/* network */
.region-strip {
  display: grid;
  gap: 0;
  margin-bottom: var(--sp-6);
  border-top: 1px solid rgba(14,22,18,.14);
  border-bottom: 1px solid rgba(14,22,18,.14);
}
@media (min-width: 700px) {
  .region-strip { grid-template-columns: repeat(3, 1fr); }
}
.region-chip {
  display: grid;
  gap: .35rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(14,22,18,.1);
}
@media (min-width: 700px) {
  .region-chip {
    padding: 1.35rem 1.5rem 1.35rem 0;
    border-bottom: none;
    border-right: 1px solid rgba(14,22,18,.1);
  }
  .region-chip:not(:first-child) { padding-left: 1.5rem; }
  .region-chip:last-child { border-right: none; padding-right: 0; }
}
.region-chip .region-num {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--harvest-deep);
}
.region-chip .region-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--field-900);
  line-height: 1.2;
}
.region-chip .region-note {
  font-size: .85rem;
  color: var(--ink-mute);
  line-height: 1.4;
}

.agents-table-wrap {
  background: var(--white);
  border: 1px solid rgba(14,22,18,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.agents-table th, .agents-table td {
  padding: 1rem var(--sp-3);
  font-size: .9rem;
  text-align: left;
  border-bottom: 1px solid rgba(14,22,18,.07);
}
.agents-table thead th {
  background: var(--field-900);
  color: var(--paper);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
}
.agents-table tbody tr:hover { background: var(--paper-2); }
.agents-table tbody tr:last-child td { border-bottom: none; }
.agents-table .district-tag {
  display: inline-block;
  padding: .2rem .55rem;
  background: var(--paper-2);
  color: var(--field-900);
  font-size: .78rem;
  font-weight: 600;
  border-radius: var(--radius);
}

/* certs */
.cert-grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(14,22,18,.1);
}
.cert-row {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(14,22,18,.1);
}
.cert-row .icon-badge {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: var(--radius);
  background: var(--field-900);
  color: var(--harvest);
  display: grid; place-items: center;
}
.cert-row h4 { font-size: 1rem; margin-bottom: .3rem; }
.cert-row p { font-size: .9rem; color: var(--ink-mute); }

/* partners */
.client-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  margin-bottom: var(--sp-8);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(14,22,18,.1);
}
.client-chip {
  font-size: .92rem;
  font-weight: 600;
  color: var(--field-900);
  position: relative;
  padding-left: .9rem;
}
.client-chip::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--harvest);
  border-radius: 1px;
  transform: translateY(-50%);
}

.testi-grid {
  display: grid;
  gap: var(--sp-4);
}
@media (min-width: 800px) { .testi-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); } }
.testi-block {
  padding-top: var(--sp-3);
  border-top: 2px solid var(--harvest);
}
.testi-block .quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--field-900);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}
.testi-block footer { font-size: .84rem; color: var(--ink-mute); }
.testi-block footer strong { display: block; color: var(--ink); font-size: .9rem; margin-bottom: .15rem; }

.opps-list {
  margin-top: var(--sp-4);
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(14,22,18,.1);
}
.opps-list li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(14,22,18,.1);
  font-size: .95rem;
  font-weight: 500;
}
.opps-list .icon { color: var(--leaf); width: 1.15em; height: 1.15em; margin-top: .15rem; }

/* contact */
.contact-grid { display: grid; gap: var(--sp-6); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .85fr 1.15fr; gap: var(--sp-8); } }
.contact-info { display: grid; gap: var(--sp-3); align-content: start; }
.contact-row { display: flex; gap: var(--sp-2); align-items: flex-start; }
.contact-row .icon-badge {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: rgba(243,246,242,.08);
  color: var(--harvest);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-row strong { display: block; font-size: .92rem; color: var(--white); margin-bottom: .15rem; }
.contact-row span, .contact-row a { font-size: .9rem; color: rgba(243,246,242,.75); }
.contact-row a:hover { color: var(--harvest); }

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(243,246,242,.12);
  margin-top: var(--sp-2);
}
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; filter: grayscale(.2) contrast(1.05); }

.contact-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-md);
  padding: var(--sp-4);
}
.form-row { display: grid; gap: var(--sp-2); margin-bottom: var(--sp-3); }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
label {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .4rem;
  color: var(--ink-mute);
  font-weight: 600;
}
input, textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(14,22,18,.15);
  background: var(--paper);
  font-size: .95rem;
  transition: border-color .2s ease;
}
input:focus, textarea:focus { border-color: var(--leaf); outline: none; }
textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: .8rem; color: var(--ink-mute); margin-top: var(--sp-2); }
.form-status { font-size: .88rem; margin-top: var(--sp-2); font-weight: 600; }
.form-status[data-state="ok"] { color: var(--leaf); }

/* footer */
.site-footer {
  background: var(--ink);
  color: rgba(243,246,242,.7);
  padding-block: var(--sp-8) var(--sp-4);
}
.footer-grid {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1.4fr 1fr 1fr;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; gap: .65rem; align-items: center; margin-bottom: var(--sp-2); }
.footer-brand .brand-mark { background: var(--harvest); color: var(--ink); }
.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--white);
}
.site-footer h5 {
  font-family: var(--font-display);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--harvest);
  margin-bottom: var(--sp-2);
  font-weight: 700;
}
.footer-links { display: grid; gap: .55rem; font-size: .9rem; }
.footer-links a:hover { color: var(--harvest); }
.footer-bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(243,246,242,.1);
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-2);
  font-size: .82rem;
}
.footer-socials { display: flex; gap: .55rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: var(--radius);
  display: grid; place-items: center;
  background: rgba(243,246,242,.08);
  transition: background .2s ease, color .2s ease;
}
.footer-socials a:hover { background: var(--harvest); color: var(--ink); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
