:root {
  --olive: #747f32;
  --olive-dark: #5c6725;
  --olive-light: #eef0df;
  --graphite: #252628;
  --graphite-soft: #4e5053;
  --warm-white: #fafaf7;
  --white: #ffffff;
  --line: #dfe1d8;
  --surface: #f2f3ed;
  --shadow: 0 24px 70px rgba(33, 35, 28, .10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;

  /* Type scale rebuilt around the smaller 2.2vw hero heading. */
  --fs-h1: 2.2vw;
  --fs-h2: clamp(1.65rem, 1.65vw, 2.15rem);
  --fs-h3: clamp(1.1rem, 1.08vw, 1.38rem);
  --fs-h4: clamp(1rem, .95vw, 1.18rem);
  --fs-body-lg: clamp(1rem, .92vw, 1.14rem);
  --fs-body: clamp(.94rem, .82vw, 1.02rem);
  --fs-small: clamp(.78rem, .68vw, .86rem);
  --fs-button: clamp(.84rem, .72vw, .92rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--graphite);
  background: var(--warm-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: var(--fs-body);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4, h5, h6, p { margin-top: 0; }
h1, h2, h3, h4, h5, h6 { line-height: 1.15; letter-spacing: -.025em; }
h1 { margin-bottom: 1.25rem; font-size: var(--fs-h1); font-weight: 500; }
h2 { margin-bottom: 0; font-size: var(--fs-h2); font-weight: 570; }
h3 { margin-bottom: .7rem; font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: var(--fs-h4); font-weight: 600; }
h5 { font-size: .98rem; font-weight: 600; }
h6 { font-size: .88rem; font-weight: 650; text-transform: uppercase; letter-spacing: .06em; }
p { margin-bottom: 1rem; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 94px 0; }
.section-dark { color: var(--white); background: var(--graphite); }

.skip-link { position: fixed; left: 18px; top: -80px; z-index: 1000; padding: 11px 16px; background: var(--white); border: 1px solid var(--graphite); }
.skip-link:focus { top: 18px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(250,250,247,.92); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(37,38,40,.08); }
.header-inner { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand picture { width: 40px; height: 48px; display: grid; place-items: center; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 1.25rem; letter-spacing: .015em; }
.brand-copy strong span { color: var(--olive); }
.brand-copy small { margin-top: 5px; color: var(--graphite-soft); font-size: .67rem; letter-spacing: .11em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: clamp(16px, 1.6vw, 28px); font-size: .88rem; font-weight: 560; }
.primary-nav > a:not(.button) { position: relative; padding: 8px 0; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 2px; height: 1px; background: var(--olive); transition: right .2s ease; }
.primary-nav > a:not(.button):hover::after, .primary-nav > a:not(.button):focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.sr-only) { display: block; width: 100%; height: 2px; margin: 5px 0; background: var(--graphite); transition: transform .2s ease, opacity .2s ease; }

.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 12px 20px; color: var(--white); background: var(--olive); border: 1px solid var(--olive); border-radius: 999px; font-size: var(--fs-button); font-weight: 650; line-height: 1.1; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { background: var(--olive-dark); border-color: var(--olive-dark); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-secondary { color: var(--graphite); background: transparent; border-color: rgba(37,38,40,.28); }
.button-secondary:hover, .button-secondary:focus-visible { color: var(--white); background: var(--graphite); border-color: var(--graphite); }
.button-small { min-height: 40px; padding: 10px 17px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--olive-dark); font-weight: 650; transition: color .2s ease; }
.text-link:hover, .text-link:focus-visible { color: var(--graphite); }

.eyebrow { margin-bottom: 13px; color: var(--olive); font-size: var(--fs-small); font-weight: 720; letter-spacing: .13em; text-transform: uppercase; }
.section-dark .eyebrow { color: #c6ce86; }
.section-intro { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); gap: 70px; align-items: end; margin-bottom: 46px; }
.section-intro > p { max-width: 490px; margin: 0; color: var(--graphite-soft); font-size: var(--fs-body-lg); }
.section-intro-light > p { color: rgba(255,255,255,.68); }
.section-intro-single { grid-template-columns: minmax(0, 1fr); }
.section-intro-single > div { max-width: 900px; }

.hero { min-height: calc(100vh - 76px); display: flex; align-items: center; overflow: hidden; padding: 86px 0 82px; background-color: var(--warm-white); background-image: linear-gradient(rgba(116,127,50,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(116,127,50,.055) 1px, transparent 1px); background-size: 24px 24px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(360px, .77fr); gap: 6.5vw; align-items: center; }
.hero-copy { position: relative; z-index: 2; max-width: 710px; }
.hero h1 em { color: var(--olive); font-style: normal; }
.hero-lead { max-width: 630px; margin-bottom: 28px; color: var(--graphite-soft); font-size: var(--fs-body-lg); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-visual { position: relative; min-height: 520px; display: flex; align-items: center; justify-content: center; }
.hero-visual::before { content: none; }
.hero-visual picture { position: relative; z-index: 1; width: min(100%, 510px); }
.hero-visual img { width: 100%; height: auto; filter: drop-shadow(0 28px 35px rgba(27,29,22,.13)); }

.about { background: var(--white); }
.about-panel { display: grid; grid-template-columns: .82fr 1.7fr; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-statement { display: flex; flex-direction: column; justify-content: space-between; min-height: 300px; padding: 34px; color: var(--white); background: var(--olive); }
.statement-number { font-size: var(--fs-small); font-weight: 700; letter-spacing: .1em; opacity: .75; }
.about-statement p { margin: 0; font-size: var(--fs-body-lg); line-height: 1.5; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); }
.about-values article { padding: 34px 28px; border-right: 1px solid var(--line); transition: color .22s ease, background .22s ease, border-color .22s ease; }
.about-values article:last-child { border-right: 0; }
.about-values article > span { display: block; margin-bottom: 54px; color: var(--olive); font-size: var(--fs-small); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; transition: color .22s ease; }
.about-values h3, .about-values p { transition: color .22s ease; }
.about-values p { margin: 0; color: var(--graphite-soft); }
.about-values article:hover { color: var(--white); background: var(--olive); border-color: var(--olive); }
.about-values article:hover > span,
.about-values article:hover h3,
.about-values article:hover p { color: var(--white); }

.direction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.direction-card { min-height: 440px; display: flex; flex-direction: column; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); }
.direction-card-featured { color: var(--white); background: var(--graphite); border-color: var(--graphite); }
.direction-topline { display: flex; align-items: center; justify-content: space-between; margin-bottom: 56px; }
.direction-number { font-size: var(--fs-small); font-weight: 730; letter-spacing: .1em; }
.direction-tag { padding: 6px 10px; color: var(--olive-dark); background: var(--olive-light); border-radius: 999px; font-size: .72rem; font-weight: 650; }
.direction-card-featured .direction-tag { color: var(--white); background: rgba(255,255,255,.1); }
.direction-card > p { color: var(--graphite-soft); }
.direction-card-featured > p { color: rgba(255,255,255,.68); }
.direction-card ul { margin: auto 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); list-style: none; }
.direction-card-featured ul { border-color: rgba(255,255,255,.15); }
.direction-card li { position: relative; margin-top: 9px; padding-left: 17px; font-size: var(--fs-small); }
.direction-card li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 1px; background: var(--olive); }
.support-note { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; margin-top: 18px; padding: 22px 26px; background: var(--olive-light); border-radius: var(--radius-md); }
.support-note-mark { width: 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--olive); border-radius: 50%; font-size: 1.35rem; }
.support-note strong { font-size: var(--fs-h4); }
.support-note p { margin: 3px 0 0; color: var(--graphite-soft); }
.support-note a { color: var(--olive-dark); font-weight: 680; white-space: nowrap; }

.process-list { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.14); }
.process-list li { position: relative; min-height: 250px; padding: 24px; border-right: 1px solid rgba(255,255,255,.14); }
.process-list li:last-child { border-right: 0; }
.process-list li > span { display: block; margin-bottom: 60px; color: #c6ce86; font-size: var(--fs-small); font-weight: 700; letter-spacing: .1em; }
.process-list h3 { color: var(--white); }
.process-list p { margin: 0; color: rgba(255,255,255,.61); font-size: var(--fs-small); }

.audiences-grid { display: grid; grid-template-columns: .83fr 1.4fr; gap: 85px; align-items: center; }
.audiences-copy > p:not(.eyebrow) { color: var(--graphite-soft); font-size: var(--fs-body-lg); }
.audience-cards { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.audience-cards article { min-height: 210px; padding: 26px; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .22s ease, background .22s ease, border-color .22s ease; }
.audience-cards article > span { display: block; margin-bottom: 42px; color: var(--olive); font-size: var(--fs-small); font-weight: 700; letter-spacing: .1em; transition: color .22s ease; }
.audience-cards h3, .audience-cards p { transition: color .22s ease; }
.audience-cards p { margin: 0; color: var(--graphite-soft); }
.audience-cards article:hover { color: var(--white); background: var(--olive); border-color: var(--olive); }
.audience-cards article:hover > span,
.audience-cards article:hover h3,
.audience-cards article:hover p { color: var(--white); }

.competencies { background: var(--surface); }
.competency-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.competency-grid span { padding: 13px 18px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: var(--fs-body); font-weight: 600; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.competency-grid span:hover { color: var(--white); background: var(--olive); border-color: var(--olive); }

.goals-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.goals-grid article { min-height: 220px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; background: var(--white); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .22s ease, background .22s ease, border-color .22s ease; }
.goals-grid strong { color: var(--olive); font-size: clamp(2.25rem, 3vw, 3.7rem); font-weight: 500; letter-spacing: -.05em; transition: color .22s ease; }
.goals-grid p { margin: 0; color: var(--graphite-soft); transition: color .22s ease; }
.goals-grid article:hover { color: var(--white); background: var(--olive); border-color: var(--olive); }
.goals-grid article:hover strong,
.goals-grid article:hover p { color: var(--white); }

.partners { background: var(--olive-light); }
.partners-layout { display: grid; grid-template-columns: .78fr 1.45fr; gap: 80px; align-items: start; }
.partners-copy { position: sticky; top: 116px; }
.partners-copy > p:not(.eyebrow) { color: var(--graphite-soft); font-size: var(--fs-body-lg); }
.partner-types { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.partner-types article { min-height: 220px; padding: 28px; background: rgba(255,255,255,.72); border: 1px solid rgba(116,127,50,.18); border-radius: var(--radius-md); transition: color .22s ease, background .22s ease, border-color .22s ease; }
.partner-types article > span { display: block; margin-bottom: 42px; color: var(--olive); font-size: var(--fs-small); font-weight: 720; letter-spacing: .1em; transition: color .22s ease; }
.partner-types h3, .partner-types p { transition: color .22s ease; }
.partner-types p { margin: 0; color: var(--graphite-soft); }
.partner-types article:hover { color: var(--white); background: var(--olive); border-color: var(--olive); }
.partner-types article:hover > span,
.partner-types article:hover h3,
.partner-types article:hover p { color: var(--white); }

.founder { background: var(--white); }
.founder-card { display: grid; grid-template-columns: minmax(260px, 360px) 1fr; gap: 65px; align-items: center; padding: 50px; background: var(--warm-white); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.founder-mark { min-height: 320px; overflow: hidden; background: var(--olive-light); border-radius: var(--radius-md); }
.founder-mark picture { display: block; width: 100%; height: 100%; }
.founder-mark img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; object-position: center; }
.founder-copy { max-width: 720px; }
.founder-copy > p:not(.eyebrow) { color: var(--graphite-soft); font-size: var(--fs-body-lg); }
.founder-note { padding-top: 18px; border-top: 1px solid var(--line); font-size: var(--fs-body) !important; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.35fr; gap: 90px; align-items: start; }
.contact-copy > p:not(.eyebrow) { color: rgba(255,255,255,.67); font-size: var(--fs-body-lg); }
.contact-list { border-top: 1px solid rgba(255,255,255,.18); }
.contact-list > a, .contact-list > div { display: grid; grid-template-columns: 150px 1fr; gap: 25px; padding: 21px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-list span { color: rgba(255,255,255,.5); font-size: var(--fs-small); text-transform: uppercase; letter-spacing: .08em; }
.contact-list strong { font-size: var(--fs-h4); font-weight: 520; overflow-wrap: anywhere; }
.contact-list a strong { transition: color .2s ease; }
.contact-list a:hover strong { color: #c6ce86; }

.site-footer { padding: 32px 0 20px; background: #1d1e20; color: var(--white); }
.footer-main { display: grid; grid-template-columns: auto 1fr auto; gap: 38px; align-items: center; padding-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-brand .brand-copy small { color: rgba(255,255,255,.5); }
.footer-main > p { max-width: 620px; margin: 0; color: rgba(255,255,255,.55); font-size: var(--fs-small); }
.to-top { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 18px; color: rgba(255,255,255,.42); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

@media (max-width: 1020px) {
  :root { --fs-h1: 2rem; }
  .primary-nav { gap: 15px; }
  .primary-nav > a:nth-child(3), .primary-nav > a:nth-child(4) { display: none; }
  .hero-grid { grid-template-columns: 1fr .72fr; gap: 30px; }
  .hero-visual { min-height: 430px; }
  .about-panel { grid-template-columns: 1fr; }
  .about-statement { min-height: 220px; }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .process-list li:nth-child(3) { border-right: 0; }
  .process-list li:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,.14); }
  .audiences-grid, .partners-layout, .contact-layout { gap: 48px; }
  .goals-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 780px) {
  :root { --fs-h1: clamp(1.9rem, 8vw, 2.5rem); }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 72px 0; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .primary-nav {
    position: fixed;
    inset: 76px 0 0 0;
    z-index: 101;
    min-height: calc(100dvh - 76px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 28px max(24px, calc((100vw - var(--container)) / 2)) 36px;
    overflow-y: auto;
    background: var(--warm-white);
    border-top: 1px solid var(--line);
    transform: translateY(-105%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility .25s;
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .primary-nav > a,
  .primary-nav > a:nth-child(3),
  .primary-nav > a:nth-child(4) {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: clamp(1.1rem, 4.8vw, 1.3rem);
    font-weight: 620;
    line-height: 1.25;
    text-align: left;
  }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .button {
    width: 100%;
    min-height: 50px;
    margin-top: 16px;
    padding-inline: 20px;
    font-size: 1rem;
    text-align: center;
  }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 68px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; order: -1; }
  .hero-visual picture { width: min(78vw, 390px); }
  .section-intro { grid-template-columns: 1fr; gap: 22px; margin-bottom: 34px; }
  .about-values { grid-template-columns: 1fr; }
  .about-values article { border-right: 0; border-bottom: 1px solid var(--line); }
  .about-values article:last-child { border-bottom: 0; }
  .about-values article > span { margin-bottom: 24px; }
  .direction-grid { grid-template-columns: 1fr; }
  .direction-card { min-height: auto; }
  .direction-topline { margin-bottom: 36px; }
  .support-note { grid-template-columns: auto 1fr; }
  .support-note a { grid-column: 2; }
  .process-list { grid-template-columns: 1fr; }
  .process-list li, .process-list li:nth-child(3), .process-list li:nth-child(n+4) { min-height: auto; padding: 22px 0; border-right: 0; border-top: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .process-list li > span { margin-bottom: 18px; }
  .audiences-grid, .partners-layout, .contact-layout { grid-template-columns: 1fr; }
  .audience-cards, .partner-types { grid-template-columns: 1fr; }
  .partners-copy { position: static; }
  .founder-card { grid-template-columns: 1fr; gap: 30px; padding: 28px; }
  .founder-mark { min-height: 210px; }
  .contact-list > a, .contact-list > div { grid-template-columns: 1fr; gap: 6px; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-main > p { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .header-inner { min-height: 68px; }
  .brand picture { width: 34px; height: 42px; }
  .brand-copy strong { font-size: 1.08rem; }
  .brand-copy small { font-size: .59rem; }
  .primary-nav { inset-block-start: 68px; min-height: calc(100dvh - 68px); }
  .hero { padding-top: 42px; }
  .hero-visual { min-height: 300px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .about-statement, .direction-card, .audience-cards article, .partner-types article, .goals-grid article { padding: 24px; }
  .goals-grid { grid-template-columns: 1fr; }
  .support-note { padding: 20px; }
}
