/* ==========================================================================
   ADMK Bio — organic agricultural theme
   White base · Nigeria Green primary · cashew & palm accents
   ========================================================================== */

:root {
  --white: #FFFFFF;
  --ink: #10281C;
  --muted: #4A5D52;
  --green: #008751;          /* Nigeria Green — primary */
  --green-600: #006E42;
  --forest: #073B26;
  --forest-2: #0B4A30;
  --leaf: #EDF7F1;
  --leaf-2: #D5ECDF;
  --sprout: #7CC49A;
  --cashew: #F2B53A;
  --palm: #D9581E;
  --soy: #F8F4E8;
  --line: #E1E9E4;
  --on-dark: #FFFFFF;
  --on-dark-muted: #C6E2D2;

  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Plus Jakarta Sans', 'Segoe UI', Helvetica, Arial, sans-serif;

  --gutter: clamp(20px, 5vw, 72px);
  --section: clamp(80px, 10vw, 136px);
  --header-h: 80px;
  --r-sm: 14px;
  --r: 22px;
  --r-lg: 32px;
  --ease: cubic-bezier(.22, .8, .26, 1);
  --shadow: 0 18px 50px -24px rgba(7, 59, 38, 0.28);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--green-600); }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 500; letter-spacing: -0.02em; color: var(--ink); }
ul, ol { margin: 0; padding: 0; list-style: none; }
input, textarea, select, button { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--cashew); outline-offset: 3px; border-radius: 6px; }
.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: absolute; left: 16px; top: -80px; z-index: 200; background: var(--forest); color: #fff; padding: 12px 18px; border-radius: 10px; text-decoration: none; }
.skip-link:focus { top: 16px; color: #fff; }
.wrap { max-width: 1320px; margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- Type ---------- */
.kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--green); }
.kicker svg { width: 18px; height: 18px; flex-shrink: 0; }
.kicker--light { color: var(--sprout); }
.h2 { font-size: clamp(30px, 3.2vw, 44px); line-height: 1.1; }
.h3 { font-size: clamp(26px, 2.4vw, 34px); line-height: 1.12; }
.lead { font-size: clamp(16.5px, 1.35vw, 19px); line-height: 1.7; color: var(--muted); }
.on-dark, .on-dark h2, .on-dark h3 { color: var(--on-dark); }
.on-dark .lead, .on-dark .muted { color: var(--on-dark-muted); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 28px; border-radius: 999px; border: 1.5px solid transparent; font-size: 16px; font-weight: 600; text-decoration: none; cursor: pointer; transition: background-color .25s var(--ease), color .25s, border-color .25s, transform .25s var(--ease), box-shadow .25s; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 10px 24px -12px rgba(0, 135, 81, .7); }
.btn--primary:hover { background: var(--green-600); color: #fff; box-shadow: 0 14px 30px -12px rgba(0, 135, 81, .8); }
.btn--ghost { border-color: var(--leaf-2); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--cashew { background: var(--cashew); color: var(--forest); }
.btn--cashew:hover { background: #F6C45E; color: var(--forest); }
.btn--sm { min-height: 44px; padding: 0 20px; font-size: 15px; }
.btn[disabled] { opacity: .65; cursor: progress; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .86); backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -22px rgba(7, 59, 38, .35); }
.site-header .wrap { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 40px; height: 40px; flex-shrink: 0; }
.brand__word { font-family: var(--display); font-size: 26px; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.brand__word span { color: var(--green); font-style: italic; font-weight: 500; }

.nav { display: flex; align-items: center; gap: 30px; font-size: 15px; font-weight: 500; }
.nav a { color: var(--ink); text-decoration: none; position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a:not(.btn):hover { color: var(--green); }
.nav .btn { color: #fff; }
.nav-toggle { display: none; position: relative; width: 48px; height: 48px; border-radius: 999px; border: 1.5px solid var(--leaf-2); background: #fff; cursor: pointer; }
.nav-toggle span { position: absolute; left: 14px; right: 14px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 23px; }
.nav-toggle span:nth-child(3) { top: 29px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1120px) { .nav { gap: 22px; font-size: 14.5px; } }
@media (max-width: 1024px) {
  .nav-toggle { display: inline-block; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; height: calc(100vh - var(--header-h)); height: calc(100dvh - var(--header-h)); flex-direction: column; align-items: stretch; gap: 0; padding: 12px var(--gutter) 40px; background: #fff; font-family: var(--display); font-size: 28px; font-weight: 500; overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .3s var(--ease), transform .35s var(--ease), visibility 0s linear .35s; }
  .nav.is-open { visibility: visible; opacity: 1; transform: none; transition: opacity .3s var(--ease), transform .35s var(--ease); }
  .nav a:not(.btn) { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 28px; font-family: var(--sans); font-size: 16px; min-height: 56px; }
  body.nav-open { overflow: hidden; }
}

/* ---------- Reveal on scroll ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(28px, 4vw, 56px); overflow: hidden; }
.hero::before { content: ""; position: absolute; right: -12%; top: -20%; width: 70vw; max-width: 980px; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, var(--leaf), rgba(237, 247, 241, 0)); z-index: -1; }
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__copy { display: flex; flex-direction: column; gap: 22px; padding-block: 24px; }
.badge { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 999px; background: var(--leaf); color: var(--forest); font-size: 14px; font-weight: 600; }
.badge__dot { width: 26px; height: 26px; border-radius: 50%; background: var(--green); display: inline-flex; align-items: center; justify-content: center; }
.badge__dot svg { width: 14px; height: 14px; }
.hero__title { font-size: clamp(38px, 4.5vw, 64px); line-height: 1.04; letter-spacing: -0.03em; font-weight: 500; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .line > span { display: inline-block; }
.hero__title em { font-style: italic; color: var(--green); font-weight: 400; }
.hero__sub { font-family: var(--display); font-style: italic; font-size: clamp(20px, 1.8vw, 25px); line-height: 1.25; color: var(--forest-2); font-weight: 400; }
.hero__text { max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; }
.hero__note { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.hero__note svg { width: 18px; height: 18px; color: var(--green); }

.js .hero__title .line > span { transform: translateY(105%); animation: rise 1s var(--ease) forwards; }
.js .hero__title .line:nth-child(2) > span { animation-delay: .1s; }
.js .hero__title .line:nth-child(3) > span { animation-delay: .2s; }
.js .hero [data-hero] { opacity: 0; animation: fadeUp .9s var(--ease) forwards; animation-delay: var(--d, .35s); }
@keyframes rise { to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* Hero scene */
.scene { position: relative; width: 100%; max-width: 520px; justify-self: end; }
.scene__frame { position: relative; border-radius: 280px 280px var(--r-lg) var(--r-lg); overflow: hidden; background: var(--leaf); aspect-ratio: 5 / 5.6; box-shadow: var(--shadow); }
.scene__img { width: 100%; height: 100%; object-fit: cover; object-position: 78% center; transform-origin: 66% 45%; }
.js .scene__img { animation: heroZoom 18s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.chip { position: absolute; display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px 10px 10px; border-radius: 999px; background: #fff; box-shadow: 0 14px 34px -16px rgba(7, 59, 38, .45); font-size: 14px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.chip small { display: block; font-size: 12px; font-weight: 500; color: var(--muted); line-height: 1.2; }
.chip__ico { width: 34px; height: 34px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chip__ico svg { width: 18px; height: 18px; }
.chip--1 { top: 18%; left: -8%; }
.chip--2 { top: 48%; right: -6%; }
.chip--3 { bottom: 9%; left: 2%; }
.js .chip { opacity: 0; animation: fadeUp .8s var(--ease) forwards, bob 6s ease-in-out infinite; }
.js .chip--1 { animation-delay: .9s, 1.7s; }
.js .chip--2 { animation-delay: 1.1s, 2.4s; }
.js .chip--3 { animation-delay: 1.3s, 3.1s; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* SVG scene animation */
.sc-sun { transform-box: fill-box; transform-origin: center; animation: sunRise 1.6s var(--ease) .2s both; }
.sc-halo { transform-box: fill-box; transform-origin: center; animation: halo 5s ease-in-out infinite; }
.sc-hill { animation: hillUp 1.4s var(--ease) both; }
.sc-hill--1 { animation-delay: .15s; } .sc-hill--2 { animation-delay: .28s; } .sc-hill--3 { animation-delay: .4s; } .sc-hill--4 { animation-delay: .52s; }
.sc-palm { transform-box: fill-box; transform-origin: 50% 100%; animation: sway 5.5s ease-in-out infinite; }
.sc-palm--2 { animation-duration: 6.5s; animation-delay: -2s; }
.sc-cloud { animation: drift 28s linear infinite; }
.sc-cloud--2 { animation-duration: 40s; animation-delay: -18s; }
.sc-flow { stroke-dasharray: 2 14; animation: flow 1.6s linear infinite; }
.sc-bird { animation: fly 18s linear infinite; }
@keyframes sunRise { from { transform: translateY(60px); opacity: 0; } to { transform: none; opacity: 1; } }
@keyframes halo { 0%, 100% { transform: scale(1); opacity: .45; } 50% { transform: scale(1.12); opacity: .2; } }
@keyframes hillUp { from { transform: translateY(80px); } to { transform: none; } }
@keyframes sway { 0%, 100% { transform: rotate(-2.5deg); } 50% { transform: rotate(2.5deg); } }
@keyframes drift { from { transform: translateX(-160px); } to { transform: translateX(620px); } }
@keyframes flow { to { stroke-dashoffset: -32; } }
@keyframes fly { from { transform: translate(-60px, 40px); } to { transform: translate(620px, -20px); } }

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .scene { max-width: 560px; width: 100%; margin-inline: auto; }
  .chip--1 { left: -2%; } .chip--2 { right: -2%; }
}
@media (max-width: 560px) {
  .scene__frame { border-radius: 200px 200px var(--r) var(--r); }
  .chip { font-size: 13px; padding: 8px 12px 8px 8px; }
  .chip small { display: none; }
  .chip__ico { width: 28px; height: 28px; }
  .chip--1 { top: 14%; left: 0; } .chip--2 { top: 52%; right: 0; } .chip--3 { bottom: 6%; left: 6%; }
}

/* ---------- Marquee ---------- */
.marquee { margin-top: clamp(56px, 7vw, 88px); background: var(--green); color: #fff; overflow: hidden; padding-block: 18px; transform: rotate(-1.2deg); margin-inline: -2%; }
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; gap: 36px; padding-right: 36px; }
.marquee__item { display: inline-flex; align-items: center; gap: 36px; font-family: var(--display); font-size: clamp(22px, 2.4vw, 32px); font-style: italic; white-space: nowrap; }
.marquee__item svg { width: 22px; height: 22px; color: var(--cashew); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats { padding-top: clamp(64px, 8vw, 104px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.stat { display: flex; flex-direction: column; gap: 6px; padding: 28px; border-radius: var(--r); background: var(--leaf); }
.stat__num { font-family: var(--display); font-size: clamp(38px, 3.8vw, 52px); line-height: 1; color: var(--green); font-weight: 500; letter-spacing: -0.03em; }
.stat__label { font-size: 15px; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; } .stat { padding: 22px; } }

/* ---------- Sections ---------- */
.section { padding-top: var(--section); }
.head { display: flex; flex-direction: column; gap: 18px; max-width: 820px; }
.head--center { align-items: center; text-align: center; margin-inline: auto; }
.head .lead { max-width: 680px; }

/* Who we are */
.who { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 88px); align-items: center; }
.who__text { display: flex; flex-direction: column; gap: 22px; }
.who__text p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.blob { position: relative; aspect-ratio: 1 / 1.05; border-radius: 58% 42% 46% 54% / 52% 44% 56% 48%; overflow: hidden; background: repeating-linear-gradient(135deg, var(--leaf) 0 16px, #E3F1E9 16px 32px); display: flex; align-items: flex-start; justify-content: center; padding: 16% 28px 28px; animation: morph 14s ease-in-out infinite; }
.blob img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ph-label { position: relative; font-size: 12.5px; font-weight: 600; color: var(--forest); background: #fff; padding: 8px 14px; border-radius: 999px; }
@keyframes morph { 0%, 100% { border-radius: 58% 42% 46% 54% / 52% 44% 56% 48%; } 50% { border-radius: 46% 54% 58% 42% / 44% 58% 42% 56%; } }
.who__media { position: relative; width: 100%; max-width: 500px; justify-self: end; }
.float-card { position: absolute; left: -6%; bottom: 8%; display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: var(--r); background: #fff; box-shadow: var(--shadow); }
.float-card__ico { width: 46px; height: 46px; border-radius: 14px; background: var(--leaf); display: inline-flex; align-items: center; justify-content: center; color: var(--green); }
.float-card__ico svg { width: 24px; height: 24px; }
.float-card strong { display: block; font-size: 16px; }
.float-card span { font-size: 13.5px; color: var(--muted); }
@media (max-width: 900px) {
  .who { grid-template-columns: 1fr; }
  .who__media { max-width: 480px; margin-inline: auto; width: 100%; }
  .float-card { left: 0; }
}

.vm { margin-top: clamp(56px, 7vw, 88px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.vm__card { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: clamp(30px, 4vw, 52px); display: flex; flex-direction: column; gap: 20px; }
.vm__card--vision { background: var(--forest); color: #fff; }
.vm__card--mission { background: var(--soy); }
.vm__card h3 { font-family: var(--sans); font-size: 14px; font-weight: 700; letter-spacing: 0.02em; display: inline-flex; align-items: center; gap: 10px; }
.vm__card--vision h3 { color: var(--cashew); }
.vm__card--mission h3 { color: var(--palm); }
.vm__card h3 svg { width: 22px; height: 22px; }
.vm__statement { font-family: var(--display); font-size: clamp(21px, 1.9vw, 26px); line-height: 1.32; }
.vm__note { font-size: 16px; line-height: 1.7; }
.vm__card--vision .vm__note { color: var(--on-dark-muted); }
.vm__card--mission .vm__note { color: var(--muted); }
.vm__art { position: absolute; right: -40px; top: -40px; width: 200px; height: 200px; opacity: .14; pointer-events: none; }
@media (max-width: 900px) { .vm { grid-template-columns: 1fr; } }

/* ---------- Feedstock explorer ---------- */
.feed { margin-top: clamp(44px, 5vw, 64px); display: grid; grid-template-columns: 340px minmax(0, 1fr); gap: 28px; align-items: start; }
.feed__list { display: flex; flex-direction: column; gap: 6px; }
.feed__group { font-size: 13px; font-weight: 700; color: var(--muted); padding: 14px 16px 6px; }
.feed__group:first-child { padding-top: 0; }
.feed__tab { display: flex; align-items: center; gap: 14px; width: 100%; padding: 12px 16px; border: 1.5px solid transparent; border-radius: var(--r-sm); background: transparent; text-align: left; cursor: pointer; transition: background-color .25s, border-color .25s, color .25s; }
.feed__tab:hover { background: var(--leaf); }
.feed__tab[aria-selected="true"] { background: #fff; border-color: var(--green); box-shadow: 0 12px 30px -20px rgba(0, 135, 81, .6); }
.feed__tab-ico { width: 40px; height: 40px; border-radius: 12px; background: var(--leaf); display: inline-flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; transition: background-color .25s, color .25s; }
.feed__tab[aria-selected="true"] .feed__tab-ico { background: var(--green); color: #fff; }
.feed__tab-ico svg { width: 22px; height: 22px; }
.feed__tab-name { display: block; font-weight: 600; font-size: 15.5px; line-height: 1.3; }
.feed__tab-meta { display: block; font-size: 13px; color: var(--muted); }

.feed__panel { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--leaf); padding: clamp(28px, 4vw, 56px); min-height: 520px; display: flex; flex-direction: column; gap: 22px; }
.feed__panel[hidden] { display: none; }
.js .feed__panel { animation: panelIn .6s var(--ease); }
@keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.feed__panel-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.tag-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: #fff; color: var(--forest); font-size: 13.5px; font-weight: 600; }
.tag-pill--primary { background: var(--green); color: #fff; }
.feed__code { font-family: var(--display); font-style: italic; font-size: 20px; color: var(--green); }
.feed__panel h3 { font-size: clamp(28px, 2.8vw, 40px); line-height: 1.08; max-width: 620px; }
.feed__panel p { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 620px; }
.uses { display: flex; flex-wrap: wrap; gap: 10px; }
.uses li { padding: 8px 16px; border-radius: 999px; background: #fff; font-size: 14px; font-weight: 500; border: 1px solid var(--leaf-2); }
.uses__label { font-size: 13px; font-weight: 700; color: var(--forest); }
.origins { display: flex; flex-wrap: wrap; gap: 10px; }
.origins li { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: var(--forest); color: #fff; font-size: 14px; font-weight: 500; }
.origins li svg { width: 15px; height: 15px; color: var(--cashew); }
.feed__art { position: absolute; right: clamp(-60px, -3vw, -20px); bottom: clamp(-60px, -3vw, -20px); width: clamp(200px, 26vw, 320px); height: auto; color: var(--green); opacity: .12; pointer-events: none; }
.feed__panel-body { position: relative; display: flex; flex-direction: column; gap: 22px; margin-top: auto; }
.feed__panel-body > div { display: flex; flex-direction: column; gap: 12px; }

.future { margin-top: 24px; display: flex; align-items: center; gap: 22px; padding: 24px 28px; border: 2px dashed var(--leaf-2); border-radius: var(--r); }
.future__ico { width: 54px; height: 54px; border-radius: 50%; background: var(--soy); display: inline-flex; align-items: center; justify-content: center; color: var(--palm); flex-shrink: 0; }
.future__ico svg { width: 28px; height: 28px; }
.future h3 { font-size: 24px; }
.future p { color: var(--muted); font-size: 15.5px; margin-top: 4px; }
.future .tag-pill { background: var(--soy); color: var(--palm); margin-left: auto; flex-shrink: 0; }

@media (max-width: 1024px) {
  .feed { grid-template-columns: 1fr; }
  .feed__list { flex-direction: row; overflow-x: auto; gap: 10px; padding-bottom: 8px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scroll-snap-type: x mandatory; scrollbar-width: none; }
  .feed__list::-webkit-scrollbar { display: none; }
  .feed__group { display: none; }
  .feed__tab { flex: 0 0 auto; width: auto; scroll-snap-align: start; background: var(--leaf); padding: 10px 16px 10px 10px; border-radius: 999px; }
  .feed__tab-meta { display: none; }
  .feed__tab-ico { width: 34px; height: 34px; border-radius: 50%; }
  .feed__panel { min-height: 0; }
}
@media (max-width: 640px) {
  .future { flex-direction: column; align-items: flex-start; }
  .future .tag-pill { margin-left: 0; }
}

/* ---------- Journey ---------- */
.journey { position: relative; margin-top: clamp(48px, 6vw, 72px); }
.journey__path { position: absolute; left: 0; right: 0; top: 0; width: 100%; height: 72px; pointer-events: none; overflow: visible; }
.journey__path path { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-dasharray: 1400; stroke-dashoffset: 1400; transition: stroke-dashoffset 2.2s var(--ease); }
.journey.is-in .journey__path path { stroke-dashoffset: 0; }
.journey__steps { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.step { display: flex; flex-direction: column; gap: 16px; }
.step__node { width: 72px; height: 72px; border-radius: 50%; background: #fff; border: 2.5px solid var(--green); display: inline-flex; align-items: center; justify-content: center; color: var(--green); position: relative; z-index: 1; transition: transform .4s var(--ease); }
.step__node svg { width: 30px; height: 30px; }
.step--now .step__node { background: var(--green); color: #fff; box-shadow: 0 0 0 10px rgba(0, 135, 81, .14); animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 8px rgba(0, 135, 81, .16); } 50% { box-shadow: 0 0 0 18px rgba(0, 135, 81, 0); } }
.step__card { padding: 28px; border-radius: var(--r); background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; flex: 1; transition: transform .35s var(--ease), box-shadow .35s; }
.step__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step--now .step__card { background: var(--leaf); border-color: var(--leaf-2); }
.step__phase { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 13.5px; font-weight: 700; color: var(--green); }
.step__status { font-size: 12.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--soy); color: var(--palm); }
.step--now .step__status { background: var(--green); color: #fff; }
.step h3 { font-size: clamp(28px, 2.6vw, 36px); line-height: 1.05; }
.step p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
@media (max-width: 900px) {
  .journey__path { display: none; }
  .journey__steps { grid-template-columns: 1fr; gap: 0; }
  .step { flex-direction: row; gap: 18px; padding-bottom: 22px; position: relative; }
  .step::before { content: ""; position: absolute; left: 35px; top: 72px; bottom: 0; width: 2.5px; background: var(--leaf-2); }
  .step:last-child::before { display: none; }
  .step__node { flex-shrink: 0; }
}
@media (max-width: 480px) {
  .step__node { width: 56px; height: 56px; } .step__node svg { width: 24px; height: 24px; }
  .step::before { left: 27px; top: 56px; }
  .step__card { padding: 22px; }
}

/* ---------- How we work ---------- */
.work { background: var(--soy); border-radius: var(--r-lg); padding: clamp(40px, 6vw, 88px) clamp(24px, 5vw, 72px); margin-top: var(--section); }
.pillars { margin-top: clamp(40px, 5vw, 56px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.pillar { background: #fff; border-radius: var(--r); padding: 32px; display: flex; flex-direction: column; gap: 16px; transition: transform .35s var(--ease), box-shadow .35s; }
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pillar__ico { width: 60px; height: 60px; border-radius: 18px; display: inline-flex; align-items: center; justify-content: center; }
.pillar__ico svg { width: 30px; height: 30px; }
.pillar:nth-child(1) .pillar__ico { background: var(--leaf); color: var(--green); }
.pillar:nth-child(2) .pillar__ico { background: #FDF1D8; color: #9A6A0C; }
.pillar:nth-child(3) .pillar__ico { background: #FBE6DB; color: var(--palm); }
.pillar h3 { font-size: clamp(22px, 2vw, 26px); line-height: 1.15; }
.pillar p { color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.quote { margin: clamp(48px, 6vw, 72px) 0 0; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.quote svg { width: 44px; height: 44px; color: var(--green); }
.quote p { font-family: var(--display); font-size: clamp(22px, 2.4vw, 34px); line-height: 1.22; max-width: 960px; color: var(--forest); }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; } }

/* ---------- Leadership ---------- */
.leader { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
.leader__intro { display: flex; flex-direction: column; gap: 18px; position: sticky; top: calc(var(--header-h) + 32px); }
.arch { position: relative; width: 100%; max-width: 440px; justify-self: start; aspect-ratio: 4 / 5; border-radius: 240px 240px var(--r-lg) var(--r-lg); overflow: hidden; background: repeating-linear-gradient(135deg, var(--leaf) 0 16px, #E3F1E9 16px 32px); display: flex; align-items: flex-end; justify-content: center; padding: 24px; }
.arch img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.leader__body { display: flex; flex-direction: column; gap: 20px; }
.leader__person { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.leader__role { font-size: 15px; font-weight: 700; color: var(--palm); }
.leader__name { font-size: clamp(28px, 2.6vw, 36px); line-height: 1.1; }
.leader__bio { font-size: 17.5px; line-height: 1.75; color: var(--muted); max-width: 620px; }
.creds { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 8px; }
.cred { padding: 20px; border-radius: var(--r-sm); background: var(--leaf); display: flex; flex-direction: column; gap: 6px; }
.cred strong { font-family: var(--display); font-size: 22px; font-weight: 500; color: var(--green); line-height: 1.1; }
.cred span { font-size: 14px; color: var(--muted); line-height: 1.5; }
@media (max-width: 900px) {
  .leader { grid-template-columns: 1fr; }
  .leader__intro { position: static; }
  .creds { grid-template-columns: 1fr; }
}

/* ---------- Contact ---------- */
.contact-wrap { margin-top: var(--section); background: var(--forest); color: #fff; border-radius: var(--r-lg) var(--r-lg) 0 0; position: relative; overflow: hidden; }
.contact-wrap::before { content: ""; position: absolute; left: -10%; bottom: -30%; width: 60%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(closest-side, rgba(0, 135, 81, .45), rgba(0, 135, 81, 0)); pointer-events: none; }
.contact { position: relative; padding-block: clamp(72px, 9vw, 120px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: clamp(40px, 6vw, 88px); }
.contact__info { display: flex; flex-direction: column; gap: 28px; }
.contact__info .h2 { color: #fff; }
.contact__list { display: flex; flex-direction: column; gap: 14px; }
.contact__item { display: flex; align-items: center; gap: 16px; padding: 16px 18px; border-radius: var(--r-sm); background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); }
.contact__item-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(124, 196, 154, .18); color: var(--sprout); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact__item-ico svg { width: 22px; height: 22px; }
.contact__item small { display: block; font-size: 13px; color: var(--on-dark-muted); }
.contact__item span, .contact__item a { font-size: 16.5px; font-weight: 500; color: #fff; }
.contact__item a:hover { color: var(--cashew); }
.who-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.who-chips li { padding: 8px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .22); font-size: 14px; color: var(--on-dark-muted); }

.form { background: #fff; color: var(--ink); border-radius: var(--r-lg); padding: clamp(24px, 3.4vw, 44px); display: flex; flex-direction: column; gap: 20px; box-shadow: 0 30px 70px -30px rgba(0, 0, 0, .5); align-self: start; }
.form__title { font-size: 26px; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; font-weight: 600; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; border: 1.5px solid var(--line); border-radius: 12px; padding: 0 16px; background: #FAFCFB; font-size: 16px; transition: border-color .2s, box-shadow .2s, background-color .2s; }
.field textarea { padding: 14px 16px; resize: vertical; min-height: 130px; }
.field select { appearance: none; -webkit-appearance: none; padding-right: 40px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23008751' stroke-width='1.8'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green); background-color: #fff; box-shadow: 0 0 0 4px rgba(0, 135, 81, .14); }
.field [aria-invalid="true"] { border-color: #B42318; }
.field__error { font-size: 13px; color: #B42318; }
.consent { display: flex; gap: 12px; align-items: flex-start; }
.consent input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--green); flex-shrink: 0; }
.consent label { font-size: 14px; line-height: 1.55; color: var(--muted); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { font-size: 15px; line-height: 1.5; padding: 14px 16px; border-radius: 12px; display: none; }
.form__status.is-success { display: block; background: var(--leaf); color: var(--forest); }
.form__status.is-error { display: block; background: #FDECEA; color: #8A1C12; }
@media (max-width: 1024px) { .contact { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: #052E1D; color: #fff; padding-block: clamp(56px, 7vw, 88px) 32px; }
.site-footer a { color: #fff; text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: var(--cashew); }
.footer__head { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 20px 40px; padding-bottom: clamp(32px, 4vw, 48px); border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer__brand { display: inline-flex; align-items: center; gap: 12px; }
.footer__brand .brand__word { font-size: 30px; color: #fff; }
.footer__brand .brand__word span { color: var(--sprout); }
.footer__tagline { font-family: var(--display); font-size: clamp(18px, 1.6vw, 22px); line-height: 1.35; color: var(--on-dark-muted); max-width: 520px; }
.footer__top-btn { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, .22); display: inline-flex; align-items: center; justify-content: center; transition: background-color .25s, border-color .25s, transform .3s var(--ease); }
.footer__top-btn svg { width: 20px; height: 20px; }
.footer__top-btn:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-3px); }
.footer__grid { padding-block: clamp(36px, 5vw, 56px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 36px; }
.footer__col h4 { font-family: var(--sans); font-size: 13.5px; font-weight: 700; color: var(--sprout); margin-bottom: 18px; letter-spacing: 0.02em; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; font-size: 15px; color: var(--on-dark-muted); }
.footer__col ul a { color: var(--on-dark-muted); }
.footer__col ul a:hover { color: #fff; }
.footer__contact li { display: flex; align-items: center; gap: 10px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--sprout); flex-shrink: 0; }
.footer__cta { margin-top: 22px; }
.site-footer .footer__cta, .site-footer .footer__cta:hover { color: var(--forest); }
.footer__chips { flex-direction: row !important; flex-wrap: wrap; gap: 8px !important; }
.footer__chips li { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14); font-size: 14px; color: #fff; }
.dot-live { width: 8px; height: 8px; border-radius: 50%; background: var(--cashew); box-shadow: 0 0 0 0 rgba(242, 181, 58, .6); animation: live 2.4s ease-out infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(242, 181, 58, .6); } 80%, 100% { box-shadow: 0 0 0 8px rgba(242, 181, 58, 0); } }
.footer__legal { padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); display: flex; justify-content: space-between; gap: 12px 24px; flex-wrap: wrap; font-size: 13.5px; color: var(--on-dark-muted); }
.footer__legal a { color: var(--on-dark-muted); }
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .footer__head { grid-template-columns: minmax(0, 1fr) auto; }
  .footer__tagline { grid-column: 1 / -1; grid-row: 2; }
}
@media (max-width: 480px) {
  .footer__grid { gap: 32px 20px; }
  .footer__grid .footer__col:nth-child(n+3) { grid-column: 1 / -1; }
}

/* ---------- Inner pages ---------- */
.page-hero { position: relative; overflow: hidden; margin-top: 12px; border-radius: var(--r-lg); background: var(--leaf); padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 72px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 40px; align-items: center; }
.crumb { font-size: 14px; color: var(--muted); display: flex; gap: 8px; align-items: center; }
.crumb a { color: var(--green); font-weight: 600; text-decoration: none; }
.page-hero h1 { font-size: clamp(42px, 5.4vw, 76px); line-height: 1; letter-spacing: -0.04em; margin-top: 18px; }
.page-hero__lead { font-family: var(--display); font-size: clamp(20px, 1.8vw, 25px); line-height: 1.25; color: var(--forest-2); margin-top: 18px; }
.page-hero__text { display: flex; flex-direction: column; gap: 16px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.page-hero__art { position: absolute; right: -30px; bottom: -40px; width: 260px; color: var(--green); opacity: .12; pointer-events: none; }
@media (max-width: 900px) { .page-hero { grid-template-columns: 1fr; } }

.strip { margin-top: 28px; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 20px; }
.strip .ph { min-height: 300px; border-radius: var(--r); background: repeating-linear-gradient(135deg, var(--leaf) 0 16px, #E3F1E9 16px 32px); display: flex; align-items: flex-end; padding: 20px; position: relative; overflow: hidden; }
.strip .ph:nth-child(2) { border-radius: 160px 160px var(--r) var(--r); }
.strip .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .strip { grid-template-columns: 1fr 1fr; } .strip .ph:first-child { grid-column: 1 / -1; } .strip .ph { min-height: 220px; } }

.roles { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.role { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 16px 24px; align-items: center; padding: 26px 28px; border-radius: var(--r); border: 1px solid var(--line); background: #fff; transition: border-color .25s, box-shadow .25s, transform .3s var(--ease); }
.role:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-2px); }
.role h3 { font-size: 28px; line-height: 1.1; }
.role__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.role__meta span { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: var(--leaf); font-size: 13.5px; font-weight: 500; }
.role__meta svg { width: 14px; height: 14px; color: var(--green); }
@media (max-width: 640px) { .role { grid-template-columns: 1fr; } .role .btn { justify-self: start; } }
.roles-empty { margin-top: 36px; padding: clamp(32px, 4vw, 48px); border-radius: var(--r-lg); border: 2px dashed var(--leaf-2); display: flex; align-items: center; gap: 24px; }
.roles-empty__ico { width: 72px; height: 72px; border-radius: 50%; background: var(--leaf); color: var(--green); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.roles-empty__ico svg { width: 36px; height: 36px; }
.roles-empty h3 { font-size: clamp(24px, 2.2vw, 28px); }
.roles-empty p { margin-top: 6px; color: var(--muted); font-size: 16.5px; max-width: 620px; }
@media (max-width: 640px) { .roles-empty { flex-direction: column; align-items: flex-start; } }

.cta { margin-block: var(--section); position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--green); color: #fff; padding: clamp(36px, 5vw, 64px); display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(28px, 2.8vw, 38px); line-height: 1.08; }
.cta p { margin-top: 10px; color: #E3F4EA; font-size: 17px; max-width: 520px; }
.cta__art { position: absolute; right: 30%; top: -60px; width: 220px; color: #fff; opacity: .08; pointer-events: none; }

/* ---------- Legal ---------- */
.legal { max-width: 780px; padding-block: clamp(40px, 5vw, 64px) var(--section); }
.legal h1 { font-size: clamp(40px, 4.8vw, 64px); line-height: 1; margin: 14px 0 18px; }
.legal h2 { font-size: 28px; line-height: 1.15; margin: 44px 0 12px; }
.legal p, .legal li { font-size: 17px; line-height: 1.8; color: var(--muted); }
.legal p + p { margin-top: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-top: 10px; }
.legal li + li { margin-top: 6px; }
.legal__date { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--leaf); color: var(--forest); font-size: 13.5px; font-weight: 600; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; animation-delay: 0s !important; transition-duration: .001ms !important; transition-delay: 0s !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
  .journey__path path { stroke-dashoffset: 0; }
}

/* ---------- Hero: full photo background ---------- */
.hero { padding-top: 0; }
.hero::before { display: none; }
.hero__banner { position: relative; overflow: hidden; margin-inline: 0; border-radius: 0; min-height: clamp(560px, calc(100vh - var(--header-h)), 860px); display: flex; align-items: center; background: var(--forest); isolation: isolate; }
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 70% 40%; z-index: -2; transform-origin: 66% 45%; }
.js .hero__bg { animation: heroZoom 20s ease-in-out infinite alternate; }
.hero__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5, 46, 29, .92) 0%, rgba(5, 46, 29, .78) 32%, rgba(5, 46, 29, .35) 58%, rgba(5, 46, 29, 0) 78%), linear-gradient(0deg, rgba(5, 46, 29, .45) 0%, rgba(5, 46, 29, 0) 35%); }
.hero__banner .hero__grid { width: 100%; grid-template-columns: minmax(0, 1fr); padding-block: clamp(56px, 8vw, 96px); }
.hero__banner .hero__copy { max-width: 660px; padding-block: 0; }
.hero__banner .badge { background: rgba(255, 255, 255, .14); color: #fff; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); border: 1px solid rgba(255, 255, 255, .22); }
.hero__banner .hero__title { color: #fff; }
.hero__banner .hero__title em { color: var(--cashew); }
.hero__banner .hero__sub { color: #E4F2E9; }
.hero__banner .hero__text { color: #D3E6DA; }
.hero__banner .hero__note { color: #E4F2E9; }
.hero__banner .hero__note svg { color: var(--cashew); }
.hero__banner .btn--primary { box-shadow: 0 12px 28px -12px rgba(0, 0, 0, .6); }

.hero__chips { position: absolute; right: max(var(--gutter), calc((100% - 1320px) / 2 + var(--gutter))); bottom: clamp(24px, 4vw, 56px); display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.hero__chips .chip { position: static; }
.js .hero__chips .chip--1 { animation-delay: .9s, 1.7s; }

@media (max-width: 1024px) {
  .hero__chips { flex-direction: row; flex-wrap: wrap; justify-content: flex-end; left: max(var(--gutter), calc((100% - 1320px) / 2 + var(--gutter))); }
  .hero__shade { background: linear-gradient(90deg, rgba(5, 46, 29, .92) 0%, rgba(5, 46, 29, .82) 50%, rgba(5, 46, 29, .5) 80%, rgba(5, 46, 29, .3) 100%), linear-gradient(0deg, rgba(5, 46, 29, .5) 0%, rgba(5, 46, 29, 0) 35%); }
}
@media (max-width: 760px) {
  .hero__banner { min-height: 0; flex-direction: column; align-items: stretch; justify-content: flex-end; }
  .hero__banner { background: #052E1D; }
  .hero__bg { bottom: auto; height: clamp(340px, 95vw, 460px); object-position: 64% center; }
  .hero__shade { background: linear-gradient(180deg, rgba(5, 46, 29, 0) 0, rgba(5, 46, 29, .15) clamp(160px, 45vw, 220px), #052E1D clamp(340px, 95vw, 460px)); }
  .hero__banner .hero__grid { padding-block: clamp(270px, 76vw, 370px) 24px; }
  .hero__chips { position: static; justify-content: flex-start; gap: 8px; padding: 0 var(--gutter) 32px; }
}
