@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --green-900: #0b3d26;
  --green-800: #115b32;
  --green-700: #16733c;
  --green-600: #18864a;
  --green-100: #e6f2e9;
  --green-50: #f3f8f3;
  --charcoal: #17211c;
  --grey-700: #46514b;
  --grey-500: #6d7771;
  --grey-200: #dce2de;
  --grey-100: #edf0ee;
  --white: #fff;
  --heading: "Roca One", "DM Sans", Arial, sans-serif;
  --sans: "DM Sans", Arial, sans-serif;
  --serif: "Times New Roman", Times, serif;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(11, 61, 38, .09);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--charcoal); background: var(--white); font-family: var(--serif); font-size: 18px; line-height: 1.68; -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--heading); line-height: 1.06; letter-spacing: -.04em; }
h1 { font-size: clamp(3.4rem, 7vw, 6.8rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.3rem, 4.5vw, 4.4rem); margin-bottom: 24px; }
h3 { font-size: 1.55rem; margin-bottom: 14px; }
p { color: var(--grey-700); }
strong { color: var(--charcoal); }
.container { width: calc(100% - 48px); max-width: var(--container); margin-inline: auto; }
.narrow { max-width: 850px; }
.section { padding: 120px 0; }
.section-tint { background: var(--green-50); }
.section-dark { background: var(--charcoal); color: var(--white); }
.section-dark p { color: #c7d1cb; }
.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; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -80px; padding: 10px 16px; color: white; background: var(--green-800); font-family: var(--sans); transition: top .2s; }
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid #24b865; outline-offset: 4px; }

.site-header { height: 92px; border-bottom: 1px solid var(--grey-100); background: rgba(255,255,255,.96); position: sticky; top: 0; z-index: 50; backdrop-filter: blur(12px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--green-900); font: 700 .92rem/1.08 var(--sans); letter-spacing: -.02em; text-decoration: none; text-transform: uppercase; }
.brand img { width: 62px; height: 62px; object-fit: contain; flex: none; }
.site-nav { display: flex; align-items: center; gap: 30px; font: 600 .85rem/1 var(--sans); }
.site-nav a { position: relative; text-decoration: none; padding: 15px 0; }
.site-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 7px; height: 2px; background: var(--green-700); transition: right .2s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav .nav-cta { color: white; background: var(--green-800); padding: 14px 22px; border-radius: 999px; transition: background .2s, transform .2s; }
.site-nav .nav-cta:hover { background: var(--green-600); transform: translateY(-2px); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--green-50); align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-toggle > span:not(.sr-only) { width: 20px; height: 2px; background: var(--green-900); transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding: 80px 0 100px; background: linear-gradient(112deg, #f7faf7 0 62%, #e7f2e9 62%); }
.hero::before { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(22,115,60,.13); border-radius: 50%; right: -160px; top: -190px; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; }
.hero-grid > *, .page-hero-grid > *, .lab-hero-grid > *, .split-heading > *, .impact-grid > *, .story-grid > *, .contact-grid > * { min-width: 0; }
.hero-copy { padding: 30px 0; }
.hero h1 { color: var(--green-900); max-width: 720px; }
.master-hero { padding-block: 70px 90px; }
.master-hero h1 { font-size: clamp(3.2rem, 5.7vw, 5.7rem); }
.master-hero .hero-copy > p:not(.eyebrow):not(.lead) { max-width: 720px; }
.eyebrow { margin-bottom: 22px; color: var(--green-700); font: 700 .74rem/1.2 var(--sans); letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 30px; height: 2px; vertical-align: middle; margin: 0 12px 3px 0; background: currentColor; }
.eyebrow.light { color: #83d5a3; }
.lead { max-width: 710px; font-size: 1.28rem; line-height: 1.6; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 12px; min-height: 54px; padding: 13px 24px; border: 2px solid transparent; border-radius: 999px; font: 700 .86rem/1 var(--sans); text-decoration: none; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: white; background: var(--green-700); }
.button-primary:hover { background: var(--green-900); }
.button-secondary { color: var(--green-800); border-color: var(--green-700); background: white; }
.button-secondary:hover { color: white; background: var(--green-700); }
.button-light { color: var(--green-900); background: white; }
.image-placeholder { position: relative; min-height: 520px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; overflow: hidden; border-radius: 140px 18px 140px 18px; color: var(--green-700); background: repeating-linear-gradient(135deg, #e1ede3, #e1ede3 14px, #e8f1e9 14px, #e8f1e9 28px); font: 600 .73rem/1 var(--sans); letter-spacing: .08em; text-transform: uppercase; box-shadow: var(--shadow); }
.image-placeholder::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(22,115,60,.22); border-radius: inherit; }
.placeholder-mark { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: white; }
.placeholder-mark svg { width: 27px; fill: var(--green-700); }
.documentary-image { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--green-900); box-shadow: var(--shadow); }
.documentary-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.documentary-image figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; width: fit-content; max-width: calc(100% - 28px); padding: 10px 14px; border-radius: 8px; color: white; background: rgba(8,35,22,.88); backdrop-filter: blur(8px); font: 600 .72rem/1.4 var(--sans); }
.documentary-image.hero-image { min-height: 520px; border-radius: 140px 18px 140px 18px; }
.documentary-image.hero-image img { position: absolute; inset: 0; }
.hero-line { position: absolute; left: 0; bottom: 0; height: 7px; width: 31%; background: var(--green-700); }
.intro-section { text-align: center; }
.large-copy { font-size: clamp(1.35rem, 2.4vw, 1.85rem); line-height: 1.55; color: var(--charcoal); }
.news-section { border-top: 1px solid var(--grey-100); background: white; }
.news-feature { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 520px; overflow: hidden; border: 1px solid var(--grey-200); border-radius: 24px; background: var(--green-50); box-shadow: var(--shadow); }
.news-placeholder { min-height: 520px; border-radius: 0; box-shadow: none; }
.news-placeholder::after { border-radius: 0; }
.news-video-wrap { position: relative; min-width: 0; margin: 0; display: flex; flex-direction: column; justify-content: center; background: #08170f; }
.news-video-wrap video { display: block; width: 100%; max-height: 520px; aspect-ratio: 16 / 9; object-fit: contain; background: #08170f; }
.news-video-wrap figcaption { padding: 13px 18px; color: #d4e2d8; background: var(--green-900); font: 500 .78rem/1.45 var(--sans); }
.news-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 72px); }
.news-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 28px; color: var(--green-700); font: 700 .72rem/1 var(--sans); letter-spacing: .13em; text-transform: uppercase; }
.news-meta span::after { content: ""; display: inline-block; width: 28px; height: 1px; margin: 0 0 3px 12px; background: #9ab4a2; }
.news-copy h3 { max-width: 650px; color: var(--green-900); font-size: clamp(2rem, 3.8vw, 3.4rem); }
.news-copy p { max-width: 690px; }
.news-highlight { display: block; margin-top: 16px; padding: 18px 20px; border-left: 3px solid var(--green-600); color: var(--green-800); background: white; font: 600 .9rem/1.5 var(--sans); }
.statement-stack { margin: 38px 0; padding: 25px 30px; border-left: 4px solid var(--green-600); background: var(--green-50); }
.statement-stack p { margin: 0; color: var(--green-900); font-family: var(--sans); font-weight: 600; }
.statement-stack p + p { margin-top: 7px; }
.origin-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: start; }
.year-mark { display: block; margin-bottom: 25px; color: var(--green-700); font: 700 clamp(4rem, 8vw, 7rem)/1 var(--sans); letter-spacing: -.07em; }
.origin-copy blockquote { margin: 35px 0; padding: 25px 30px; border-left: 4px solid var(--green-600); color: var(--green-900); background: white; font: italic 1.35rem/1.5 var(--serif); }
.origin-list { padding: 38px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.origin-list h3 { color: var(--green-800); }
.philosophy-strip { display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 70px; padding: 35px 42px; border-radius: var(--radius); color: white; background: var(--green-800); }
.philosophy-strip span { font: 700 .72rem var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.philosophy-strip strong { color: white; font: 600 clamp(1.35rem, 2.6vw, 2.2rem)/1.3 var(--heading); }
.gap-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.gap-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 35px 0; }
.gap-cards article { padding: 25px; border: 1px solid var(--grey-200); border-radius: 14px; background: var(--green-50); }
.gap-cards span, .activity-card > span, .value-card > span, .pillar-card > span { color: var(--green-600); font: 700 .7rem var(--sans); letter-spacing: .12em; }
.gap-cards h3 { margin: 30px 0 0; font-size: 1.4rem; }
.activity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.activity-card { min-height: 285px; padding: 32px; border: 1px solid #35443c; border-radius: var(--radius); background: #202a24; }
.activity-card:nth-child(7) { grid-column: 2 / 3; }
.activity-card h3 { margin-top: 55px; color: white; font-size: 1.35rem; }
.activity-card p { margin-bottom: 0; color: #b7c4bc; font-size: .98rem; }
.impact-master { background: white; }
.impact-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--grey-200); }
.impact-list div { display: grid; grid-template-columns: 55px 1fr; gap: 15px; padding: 25px 20px; border-bottom: 1px solid var(--grey-200); }
.impact-list div:nth-child(odd) { border-right: 1px solid var(--grey-200); }
.impact-list span { color: var(--green-600); font: 700 .7rem var(--sans); }
.impact-list p { margin: 0; color: var(--charcoal); font-family: var(--sans); font-weight: 600; }
.direction-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.direction-card { padding: 40px 34px; border-radius: var(--radius); background: white; box-shadow: 0 10px 30px rgba(11,61,38,.05); }
.direction-card > span { color: var(--green-600); font: 700 .72rem var(--sans); letter-spacing: .15em; text-transform: uppercase; }
.direction-card h2 { margin-top: 42px; font-size: clamp(1.8rem, 2.8vw, 2.5rem); }
.direction-card p { margin-bottom: 0; font-size: .98rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value-card { min-height: 245px; padding: 28px; border-top: 3px solid var(--green-600); background: var(--green-50); }
.value-card h3 { margin-top: 48px; }
.value-card p { margin-bottom: 0; font-size: .97rem; }
.value-card:last-child { grid-column: 2 / 4; min-height: 210px; }
.tagline-section h2 { max-width: 950px; margin-inline: auto; }
.section-heading { margin-bottom: 56px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: end; }
.split-heading h2, .split-heading p:last-child { margin-bottom: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { position: relative; min-height: 360px; padding: 36px; border: 1px solid #dde6df; border-radius: var(--radius); background: white; box-shadow: 0 8px 25px rgba(11,61,38,.04); transition: transform .25s, box-shadow .25s; }
.feature-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card-number { position: absolute; right: 28px; top: 25px; color: #a4b5a9; font: 600 .72rem var(--sans); }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 14px; color: var(--green-700); background: var(--green-100); }
.icon-box svg { width: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.feature-card p { font-size: 1rem; }
.text-link { display: inline-block; color: var(--green-700); font: 700 .82rem var(--sans); text-decoration: none; }
.text-link:hover { text-decoration: underline; }
.impact-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: center; }
.tall-placeholder { min-height: 600px; border-radius: 18px 150px 18px 150px; }
.impact-copy p { max-width: 610px; }
.impact-copy blockquote { margin: 42px 0; padding-left: 24px; border-left: 4px solid var(--green-600); color: var(--green-900); font: italic 1.55rem/1.4 var(--serif); }
.cta-section { padding: 110px 0; color: white; text-align: center; background: var(--green-800); }
.cta-inner { max-width: 820px; }
.cta-section h2 { margin-bottom: 18px; }
.cta-section p:not(.eyebrow) { color: #dbe9df; max-width: 680px; margin: 0 auto 32px; }

.page-hero { padding: 105px 0; overflow: hidden; background: var(--green-50); }
.page-hero-grid { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.page-hero h1 { max-width: 950px; font-size: clamp(3.4rem, 6.6vw, 6.4rem); color: var(--green-900); }
.page-index { color: transparent; font: 700 clamp(8rem, 19vw, 15rem)/1 var(--sans); -webkit-text-stroke: 1px #bfd2c4; opacity: .75; }
.project-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 70px; align-items: start; }
.project-layout.reverse { grid-template-columns: 1fr 1fr; align-items: center; }
.project-main > h3 { margin-top: 38px; color: var(--green-800); }
.project-main p { max-width: 760px; }
.project-placeholder { min-height: 420px; border-radius: var(--radius); box-shadow: none; }
.project-placeholder img { min-height: 420px; }
.detail-card { padding: 35px; border: 1px solid var(--grey-200); border-radius: var(--radius); background: white; box-shadow: 0 10px 35px rgba(11,61,38,.05); }
.detail-card h3 { color: var(--green-800); }
.detail-card ul { padding-left: 20px; margin: 20px 0 0; color: var(--grey-700); }
.detail-card li { margin-bottom: 12px; padding-left: 5px; }
.check-list { list-style: none; padding: 0 !important; }
.check-list li { position: relative; padding-left: 27px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-700); font: 700 1rem var(--sans); }
.project-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 70px; }
.project-details-grid.three { grid-template-columns: repeat(3, 1fr); }
.green-card { color: white; border-color: var(--green-800); background: var(--green-800); }
.green-card h3, .green-card li { color: white; }
.mini-label { display: inline-block; margin-bottom: 16px; color: var(--green-600); font: 700 .7rem var(--sans); letter-spacing: .15em; text-transform: uppercase; }
.motion-card { display: grid; grid-template-columns: 170px 1fr; gap: 30px; align-items: center; margin-bottom: 70px; padding: 35px 40px; border-radius: var(--radius); color: white; background: var(--green-800); }
.motion-card span { font: 700 .73rem var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.motion-card blockquote { margin: 0; padding-left: 30px; border-left: 1px solid rgba(255,255,255,.35); font: italic 1.7rem/1.4 var(--serif); }
.quote-section { padding: 130px 0; color: white; text-align: center; background: var(--green-900); }
.quote-section blockquote { margin: 20px 0 30px; font: 600 clamp(2.8rem, 6vw, 5.6rem)/1.1 var(--heading); letter-spacing: -.04em; }
.quote-section blockquote em { color: #74cf96; }
.quote-section p:last-child { color: #d5e2d9; }
.media-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 70px; }
.gallery-card { position: relative; min-width: 0; min-height: 320px; margin: 0; overflow: hidden; border-radius: 16px; background: #dfe9e2; box-shadow: 0 10px 28px rgba(11,61,38,.07); }
.gallery-card img { display: block; width: 100%; height: 100%; min-height: 320px; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.025); }
.gallery-card figcaption { position: absolute; left: 12px; right: 12px; bottom: 12px; width: fit-content; max-width: calc(100% - 24px); padding: 9px 12px; border-radius: 7px; color: white; background: rgba(8,35,22,.88); font: 600 .7rem/1.4 var(--sans); }
.gallery-card.gallery-wide { grid-column: 1 / -1; min-height: 450px; }
.gallery-card.gallery-wide img { min-height: 450px; }
.gallery-card.portrait img { object-position: center 28%; }
.site-visit-feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; }
.site-visit-main { min-height: 540px; }
.site-visit-copy { padding-right: 30px; }
.site-visit-copy h3 { color: var(--green-800); font-size: clamp(2rem, 3.8vw, 3.3rem); }
.ciob-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.ciob-gallery .gallery-card { min-height: 360px; }
.ciob-gallery .gallery-card img { min-height: 360px; }
.international-grid { display: grid; gap: 28px; }
.international-story { display: grid; grid-template-columns: .7fr 1.3fr; gap: 45px; align-items: center; padding: 35px; border: 1px solid var(--grey-200); border-radius: 22px; background: white; }
.international-copy h3 { color: var(--green-800); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.paired-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.paired-photos .gallery-card { min-height: 430px; }
.paired-photos .gallery-card img { min-height: 430px; }
.school-photo { min-height: 420px; }
.school-photo img { min-height: 420px; }

.lab-hero { min-height: 670px; display: grid; align-items: center; overflow: hidden; color: white; background: radial-gradient(circle at 80% 30%, #1d7b48 0, var(--green-900) 36%, #082b1c 72%); }
.lab-hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 60px; align-items: center; }
.lab-hero h1 { max-width: 800px; }
.lab-hero .lead { color: #d7e7dc; }
.orbital-mark { position: relative; width: min(38vw, 430px); aspect-ratio: 1; display: grid; place-items: center; margin-inline: auto; }
.orbital-mark span { font: 500 clamp(7rem, 14vw, 12rem)/1 var(--serif); color: #9ce0b5; }
.orbit { position: absolute; inset: 8%; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.orbit::before { content: ""; position: absolute; width: 13px; height: 13px; border-radius: 50%; background: #68cc8d; top: 11%; left: 17%; }
.orbit.two { inset: 24%; border-color: rgba(255,255,255,.12); }
.orbit.two::before { width: 8px; height: 8px; top: 72%; left: 91%; background: white; }
.story-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 100px; }
.sticky-heading { align-self: start; position: sticky; top: 140px; }
.story-copy p:not(.large-copy) { max-width: 720px; font-size: 1.14rem; }
.status-pill { display: inline-flex; align-items: center; gap: 9px; padding: 10px 16px; border: 1px solid #476055; border-radius: 999px; color: #cae1d2; font: 600 .75rem var(--sans); }
.status-pill i { width: 8px; height: 8px; border-radius: 50%; background: #69d191; box-shadow: 0 0 0 5px rgba(105,209,145,.12); }
.product-card { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; border: 1px solid #3b4a42; border-radius: 26px; overflow: hidden; background: #202c25; }
.product-copy { padding: clamp(40px, 6vw, 72px); }
.product-kicker { margin-bottom: 22px; color: #76d69b !important; font: 700 .78rem var(--sans); letter-spacing: .17em; text-transform: uppercase; }
.product-copy h3 { font-size: clamp(2.7rem, 5vw, 4.8rem); }
.product-lead { color: white !important; font-size: 1.35rem; font-style: italic; }
.product-copy strong { display: block; margin-top: 35px; color: white; font-family: var(--sans); }
.product-visual { display: grid; place-items: center; min-height: 500px; padding: 45px; background: linear-gradient(145deg, #176b3d, #0b4027); }
.dashboard-shell { width: 100%; aspect-ratio: 1.25; padding: 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 17px; background: rgba(255,255,255,.12); box-shadow: 0 25px 70px rgba(0,0,0,.3); transform: perspective(900px) rotateY(-8deg) rotateX(4deg); }
.dash-top { display: flex; gap: 5px; height: 25px; }
.dash-top i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.6); }
.dash-body { display: grid; grid-template-columns: 22% 1fr; gap: 12px; height: calc(100% - 25px); }
.dash-side { border-radius: 8px; background: rgba(255,255,255,.11); }
.dash-main { padding: 10px; border-radius: 8px; background: rgba(255,255,255,.92); }
.dash-main > span { display: block; width: 38%; height: 9px; margin-bottom: 18px; border-radius: 5px; background: #b6c9bc; }
.dash-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.dash-cards i { aspect-ratio: 1.2; border-radius: 7px; background: #dfebe2; border-top: 4px solid var(--green-600); }
.dash-main b { display: block; width: 90%; height: 8px; margin-top: 17px; border-radius: 5px; background: #dce5df; }
.dash-main b:nth-of-type(2) { width: 75%; }.dash-main b:nth-of-type(3) { width: 82%; }
.centered { max-width: 760px; margin-inline: auto; text-align: center; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-card { padding: 30px; border-top: 3px solid var(--green-600); background: var(--green-50); }
.process-card > span { color: var(--green-600); font: 700 .72rem var(--sans); }
.process-card h3 { margin-top: 55px; }
.process-card p { font-size: 1rem; margin-bottom: 0; }

.contact-hero { background: linear-gradient(100deg, var(--green-50), #e1efe4); }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: start; }
.contact-topics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 44px; }
.contact-topics div { padding: 18px 0; border-top: 1px solid var(--grey-200); }
.contact-topics span { color: var(--green-600); font: 700 .7rem var(--sans); }
.contact-topics p { margin: 5px 0 0; color: var(--charcoal); font-family: var(--sans); font-weight: 600; }
.contact-card { padding: 48px; border-radius: 24px; background: var(--green-900); color: white; box-shadow: var(--shadow); }
.contact-card h2 { font-size: 2.5rem; }
.contact-card > p:not(.mini-label) { color: #cddbd2; }
.pending-detail { display: flex; align-items: center; gap: 17px; padding: 23px 0; border-top: 1px solid rgba(255,255,255,.17); }
.pending-detail .icon-box { flex: none; margin: 0; background: rgba(255,255,255,.1); color: #85dda5; }
.pending-detail strong, .pending-detail span { display: block; font-family: var(--sans); }
.pending-detail span { color: #b8c9be; font-size: .85rem; }
.contact-note { margin: 22px 0 0 !important; padding: 16px; border-radius: 10px; background: rgba(255,255,255,.07); font-size: .88rem; }
.audience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.audience-card { padding: 32px; border-radius: var(--radius); background: white; }
.audience-card > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 45px; border-radius: 50%; color: white; background: var(--green-700); font: 700 .8rem var(--sans); }
.audience-card p { margin: 0; font-size: 1rem; }

.about-hero { background: linear-gradient(105deg, #f3f8f3, #e0eee3); }
.about-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }
.founder-placeholder { min-height: 590px; border-radius: 18px 140px 18px 140px; }
.about-intro-copy p { max-width: 720px; }
.journey-question { max-width: 980px; margin: 0 auto 70px; padding: 40px; border-radius: var(--radius); color: white; background: var(--green-800); }
.journey-question blockquote { margin: 0; font: italic clamp(1.7rem, 3.5vw, 2.8rem)/1.35 var(--serif); }
.journey-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: start; }
.finding-card { padding: 38px; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.journey-close { display: flex; align-items: baseline; justify-content: center; gap: 18px; margin-top: 75px; font-family: var(--heading); font-size: clamp(1.5rem, 3vw, 2.5rem); }
.journey-close span { color: var(--grey-500); }
.journey-close strong { color: var(--green-800); }
.philosophy-section { text-align: center; }
.education-equation { display: grid; grid-template-columns: 1fr 1fr; margin-top: 50px; border: 1px solid var(--grey-200); border-radius: var(--radius); overflow: hidden; font: 600 1rem/1.5 var(--sans); }
.education-equation span, .education-equation strong { padding: 28px; }
.education-equation strong { color: white; background: var(--green-700); }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar-card { min-height: 330px; padding: 32px; border: 1px solid #3a4b41; border-radius: var(--radius); background: #202a24; }
.pillar-card h3 { margin-top: 75px; color: white; text-transform: uppercase; }
.pillar-card p { color: #b8c5bd; font-size: .98rem; }
.looking-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: start; }
.future-card { padding: 40px; border-radius: var(--radius); color: white; background: var(--green-800); }
.future-card h3 { color: white; }
.future-card ul { margin: 25px 0 0; padding-left: 22px; color: #e0ece4; }
.future-card li { margin-bottom: 13px; }

.site-footer { padding: 75px 0 25px; color: white; background: #101914; }
.footer-grid { display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 80px; padding-bottom: 60px; }
.footer-brand { color: white; margin-bottom: 22px; }
.footer-brand img { border-radius: 50%; background: white; }
.footer-grid p { color: #98a69e; max-width: 420px; font-size: .98rem; }
.footer-grid h2 { margin: 0 0 20px; color: #8bd5a5; font: 700 .72rem var(--sans); letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { display: block; width: max-content; margin-bottom: 10px; color: #cbd4cf; font: 500 .86rem var(--sans); text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid #2b352f; color: #7c8b82; font: .75rem var(--sans); }

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

@media (max-width: 900px) {
  .section { padding: 85px 0; }
  .menu-toggle { display: flex; }
  .site-nav { position: absolute; left: 0; right: 0; top: 92px; display: none; padding: 20px 24px 28px; flex-direction: column; align-items: stretch; gap: 5px; border-bottom: 1px solid var(--grey-200); background: white; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 16px; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { margin-top: 8px; text-align: center; }
  .hero { background: linear-gradient(160deg, #f7faf7 0 70%, #e7f2e9 70%); }
  .hero-grid, .impact-grid, .lab-hero-grid, .story-grid, .contact-grid, .news-feature, .origin-grid, .gap-grid, .about-intro-grid, .journey-grid, .looking-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-grid { gap: 30px; }
  .hero-image { min-height: 430px; }
  .news-placeholder { min-height: 380px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card:last-child { grid-column: 1 / -1; }
  .impact-grid, .story-grid, .contact-grid { gap: 55px; }
  .sticky-heading { position: static; }
  .page-index { display: none; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .project-layout, .project-layout.reverse { grid-template-columns: 1fr; gap: 45px; }
  .site-visit-feature, .international-story { grid-template-columns: 1fr; }
  .ciob-gallery { grid-template-columns: 1fr 1fr; }
  .project-details-grid.three, .process-grid, .audience-grid { grid-template-columns: 1fr 1fr; }
  .activity-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .activity-card:nth-child(7), .value-card:last-child { grid-column: auto; }
  .direction-grid { grid-template-columns: 1fr; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .orbital-mark { width: min(70vw, 380px); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 620px) {
  body { font-size: 17px; }
  .container { width: calc(100% - 32px); max-width: calc(100% - 32px); }
  .site-header { height: 78px; }
  .site-nav { top: 78px; }
  .brand img { width: 52px; height: 52px; }
  .brand { font-size: .75rem; }
  .hero, .page-hero { padding: 65px 0; }
  .nav-wrap { width: calc(100% - 32px); max-width: calc(100% - 32px); }
  .menu-toggle { flex: 0 0 48px; }
  .hero-grid, .hero-copy, .page-hero-grid, .page-hero-grid > div, .lab-hero-grid, .lab-hero-grid > div { width: 100%; max-width: 100%; }
  h1 { max-width: 100%; font-size: clamp(2.65rem, 11vw, 3.1rem); overflow-wrap: anywhere; }
  .page-hero h1 { font-size: clamp(2.75rem, 11.5vw, 3.25rem); }
  .lead { font-size: 1.12rem; }
  .button-row, .button { width: 100%; max-width: 100%; }
  .hero-image, .tall-placeholder, .project-placeholder { min-height: 330px; border-radius: 18px 70px 18px 70px; }
  .documentary-image.hero-image { min-height: 360px; border-radius: 18px 70px 18px 70px; }
  .split-heading { grid-template-columns: 1fr; gap: 8px; }
  .feature-grid, .project-details-grid, .project-details-grid.three, .process-grid, .audience-grid, .contact-topics, .activity-grid, .values-grid, .pillar-grid, .impact-list, .gap-cards, .education-equation { grid-template-columns: 1fr; }
  .media-gallery, .ciob-gallery, .paired-photos { grid-template-columns: 1fr; }
  .gallery-card.gallery-wide { grid-column: auto; }
  .gallery-card, .gallery-card img, .gallery-card.gallery-wide, .gallery-card.gallery-wide img, .ciob-gallery .gallery-card, .ciob-gallery .gallery-card img, .paired-photos .gallery-card, .paired-photos .gallery-card img { min-height: 300px; }
  .international-story { padding: 22px; }
  .feature-card:last-child { grid-column: auto; }
  .motion-card { grid-template-columns: 1fr; padding: 28px; }
  .philosophy-strip, .journey-close { flex-direction: column; align-items: flex-start; }
  .impact-list div:nth-child(odd) { border-right: 0; }
  .motion-card blockquote { padding: 22px 0 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.35); font-size: 1.35rem; }
  .lab-hero { min-height: 730px; padding: 70px 0; }
  .lab-hero-grid { gap: 10px; }
  .product-copy, .contact-card { padding: 32px 24px; }
  .product-visual { min-height: 370px; padding: 25px; }
  .dashboard-shell { transform: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}
