:root {
  --green-950: #112b1d;
  --green-900: #173820;
  --green-800: #234b29;
  --green-700: #4f7130;
  --green-600: #7e9543;
  --green-400: #b8ca73;
  --yellow: #f8ba32;
  --yellow-soft: #fce9bc;
  --cream: #f5f1e7;
  --paper: #fffdf8;
  --ink: #17200e;
  --muted: #667061;
  --line: rgba(23, 32, 14, .12);
  --shadow: 0 30px 70px -36px rgba(13, 37, 22, .34);
  --ease: cubic-bezier(.2, .75, .2, 1);
  --shell: min(1240px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  text-rendering: optimizeLegibility;
}
body.is-modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--yellow); color: var(--ink); }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 9999;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--yellow);
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding-top: env(safe-area-inset-top);
  transition: background .35s ease, box-shadow .35s ease, color .35s ease;
  color: white;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(17, 43, 29, .78);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  backdrop-filter: blur(14px) saturate(130%);
  transition: background .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled::after,
.site-header.is-menu-open::after {
  background: rgba(17, 43, 29, .96);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
  backdrop-filter: blur(20px) saturate(145%);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(8, 25, 15, .12); }
.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand__logo { width: 48px; height: 48px; object-fit: contain; flex: 0 0 auto; }
.brand__copy { display: grid; gap: 1px; min-width: 0; }
.brand__copy strong {
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -.04em;
}
.brand__copy small {
  color: rgba(255,255,255,.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header-3d {
  display: inline-flex;
  height: 46px;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  padding: 3px 10px 3px 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.header-3d canvas { width: 40px; height: 40px; display: block; pointer-events: none; }
.header-3d span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,.72);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.header-3d i { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(248,186,50,.1); }
.desktop-nav { display: flex; align-items: center; gap: 28px; }
.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 700;
  transition: color .2s ease;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: var(--yellow);
  transition: right .25s ease;
}
.desktop-nav a:hover { color: white; }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav a.is-active { color: white; }
.desktop-nav a.is-active::after { right: 0; }
.site-header__actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: white;
  transition: transform .25s ease;
}
.site-header.is-menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
.site-header.is-menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { overflow: hidden; border-top: 1px solid rgba(255,255,255,.1); }
.mobile-menu__inner { display: grid; gap: 4px; padding-block: 14px 22px; }
.mobile-menu__inner > a:not(.button) { padding: 13px 4px; color: rgba(255,255,255,.84); font-size: 15px; font-weight: 700; }
.scroll-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 2px; overflow: hidden; pointer-events: none; }
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--yellow), #d9ed82);
  box-shadow: 0 0 16px rgba(248,186,50,.62);
  will-change: transform;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.button:hover { transform: translateY(-2px); }
.button--small { min-height: 44px; padding: 11px 18px; font-size: 12px; }
.button--light { background: rgba(255,255,255,.94); color: var(--green-950); box-shadow: 0 14px 30px -18px rgba(0,0,0,.5); }
.button--light:hover { background: white; }
.button--accent { background: var(--yellow); color: var(--ink); box-shadow: 0 20px 36px -22px rgba(248,186,50,.75); }
.button--accent:hover { background: #ffc54a; box-shadow: 0 24px 44px -22px rgba(248,186,50,.85); }
.button--ghost { border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: white; }
.button--ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.32); }
.button--dark { background: var(--ink); color: white; }
.button--dark:hover { background: #273219; }
.button--plain { border-color: var(--line); background: transparent; color: var(--ink); }
.button--plain:hover { background: rgba(23,32,14,.05); }

.hero {
  --hero-progress: 0;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 70% 25%, rgba(126,149,67,.24), transparent 34%),
    linear-gradient(130deg, #102a1d 0%, #173820 55%, #0e2b20 100%);
  color: white;
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.hero__glow { position: absolute; z-index: -1; border-radius: 999px; filter: blur(4px); will-change: transform; }
.hero__glow--one { width: 540px; height: 540px; right: -220px; top: 8%; background: rgba(248,186,50,.08); }
.hero__glow--two { width: 390px; height: 390px; left: -210px; bottom: -80px; background: rgba(126,149,67,.16); }
.hero__layout {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(430px, 1.04fr);
  align-items: center;
  gap: clamp(30px, 5vw, 78px);
  padding-top: 120px;
  padding-bottom: 110px;
}
.hero__copy { position: relative; z-index: 3; padding-block: 36px; }
.hero__title {
  margin: 0;
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
  font-size: clamp(52px, 7.1vw, 104px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.075em;
  text-wrap: balance;
}
.hero__line { display: block; overflow: hidden; padding: .02em .08em .08em 0; }
.hero__line > span { display: block; transform: translateY(120%); animation: title-enter 1s var(--ease) forwards; }
.hero__line:nth-child(2) > span { animation-delay: .1s; }
.hero__line:nth-child(3) > span { animation-delay: .2s; }
.hero__line--accent { color: var(--yellow); }
@keyframes title-enter { to { transform: translateY(0); } }
.hero__lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.63);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.8;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__metrics { display: flex; flex-wrap: wrap; gap: 0; margin-top: 34px; }
.hero__metrics div { min-width: 112px; padding: 0 22px; border-left: 1px solid rgba(255,255,255,.14); }
.hero__metrics div:first-child { padding-left: 0; border-left: 0; }
.hero__metrics strong { display: block; font-family: "Bricolage Grotesque", sans-serif; font-size: 28px; line-height: 1; }
.hero__metrics span { display: block; margin-top: 7px; color: rgba(255,255,255,.45); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hero__visual {
  position: relative;
  min-height: clamp(480px, 62vw, 720px);
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,186,50,.11), rgba(126,149,67,.05) 45%, transparent 72%);
  filter: blur(8px);
}
.hero__visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.visual-chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: rgba(14,42,29,.48);
  padding: 12px 14px;
  box-shadow: 0 24px 55px -34px rgba(0,0,0,.8);
  backdrop-filter: blur(16px) saturate(145%);
  will-change: transform;
}
.visual-chip--top { top: 18%; right: 1%; }
.visual-chip--bottom { left: 0; bottom: 19%; }
.visual-chip small { display: block; color: rgba(255,255,255,.5); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.visual-chip strong { display: block; margin-top: 3px; font-size: 12px; }
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 8px rgba(248,186,50,.11); animation: pulse 2.5s ease-in-out infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 13px rgba(248,186,50,0); } }
.visual-chip__number { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 14px; background: var(--yellow); color: var(--ink); font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; font-weight: 800; }
.visual-badge {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  color: var(--green-950);
  font-size: 27px;
  box-shadow: 0 24px 46px -28px rgba(0,0,0,.8);
  backdrop-filter: blur(14px);
}
.visual-badge--recycle { right: 11%; bottom: 10%; }
.visual-badge--leaf { left: 12%; top: 13%; background: var(--yellow); }
.hero__bottom {
  position: absolute;
  left: 50%;
  bottom: max(22px, env(safe-area-inset-bottom));
  z-index: 4;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero__bottom p { margin: 0; }
.hero__hint { display: flex; align-items: center; gap: 10px; }
.hero__hint span { position: relative; width: 38px; height: 1px; overflow: hidden; background: rgba(255,255,255,.2); }
.hero__hint span::after { content: ""; position: absolute; inset: 0; background: var(--yellow); animation: scroll-line 2s ease-in-out infinite; }
@keyframes scroll-line { from { transform: translateX(-100%); } to { transform: translateX(100%); } }

.ticker { overflow: hidden; border-block: 1px solid rgba(23,32,14,.08); background: var(--yellow); }
.ticker__track { display: flex; width: max-content; animation: ticker 34s linear infinite; }
.ticker__track span { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; white-space: nowrap; font-size: 11px; font-weight: 700; }
.ticker__track b { font-weight: 800; letter-spacing: .08em; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (hover: hover) { .ticker:hover .ticker__track { animation-play-state: paused; } }

.kinetic {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 15%, rgba(184,202,115,.17), transparent 28%),
    linear-gradient(145deg, #15351f, #0e281b);
  padding: clamp(78px, 9vw, 128px) 0 34px;
  color: white;
}
.kinetic::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: -250px;
  border: 1px solid rgba(248,186,50,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(248,186,50,.025), 0 0 0 140px rgba(248,186,50,.018);
}
.kinetic__line {
  display: flex;
  width: max-content;
  align-items: center;
  gap: .3em;
  padding-inline: 3vw;
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
  font-size: clamp(58px, 9vw, 138px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.07em;
  white-space: nowrap;
  transform: translate3d(var(--kinetic-x, 0px), 0, 0);
  will-change: transform;
}
.kinetic__line + .kinetic__line { margin-top: .23em; }
.kinetic__line i { color: var(--yellow); font-size: .34em; font-style: normal; }
.kinetic__line--light span { color: #f6f2e8; }
.kinetic__line--outline span {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(248,186,50,.72);
}
.kinetic__caption {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(58px, 8vw, 100px);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 20px;
}
.kinetic__caption p { margin: 0; color: rgba(255,255,255,.64); font-size: 14px; }
.kinetic__caption strong { color: white; }
.kinetic__caption > span { color: rgba(255,255,255,.36); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }

.section { position: relative; padding: clamp(84px, 10vw, 150px) 0; overflow: hidden; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--ink { background: var(--green-950); color: white; }
.section-orb { position: absolute; width: 720px; height: 720px; right: -300px; top: -260px; border-radius: 50%; background: radial-gradient(circle, rgba(126,149,67,.2), transparent 70%); pointer-events: none; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr); gap: 50px; align-items: end; margin-bottom: 54px; }
.eyebrow { margin: 0 0 14px; color: var(--green-700); font-size: 10px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--light { color: var(--yellow); }
.section-heading h2, .closing h2 {
  margin: 0;
  max-width: 760px;
  font-family: "Bricolage Grotesque", Manrope, sans-serif;
  font-size: clamp(45px, 6.2vw, 86px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.section-heading h2 em, .closing h2 em { color: var(--green-600); font-style: normal; }
.section-heading--light h2 em, .closing h2 em { color: var(--yellow); }
.section-intro { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.section-heading--light .section-intro { color: rgba(255,255,255,.52); }
[data-scroll-section] .section-heading {
  transform: translate3d(var(--section-drift, 0px), 0, 0);
  will-change: transform;
}
[data-scroll-section].closing .closing__inner {
  transform: translate3d(0, var(--section-rise, 0px), 0) scale(var(--section-scale, 1));
  will-change: transform;
}

.notice-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(24px, 4vw, 46px);
  transform-style: preserve-3d;
}
.notice-card::after { content: ""; position: absolute; width: 300px; height: 300px; right: -90px; bottom: -130px; border-radius: 50%; background: rgba(126,149,67,.08); }
.notice-card__top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #8b9386; font-size: 10px; font-weight: 700; }
.status-pill { display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; background: rgba(126,149,67,.12); padding: 9px 12px; color: var(--green-800); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.status-pill i { width: 8px; height: 8px; border-radius: 50%; background: var(--green-600); box-shadow: 0 0 0 6px rgba(126,149,67,.12); }
.notice-card__body { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 30px; margin-top: 30px; }
.notice-card__label { margin: 0 0 12px; color: var(--green-700); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.notice-card h3 { margin: 0; max-width: 780px; font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(32px, 4.4vw, 62px); font-weight: 600; line-height: 1; letter-spacing: -.055em; }
.notice-card__body p:last-child { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.notice-card__regions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.notice-card__regions span, .announcement__chips span { border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; font-size: 10px; font-weight: 800; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 22px; }
.info-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255,255,255,.68);
  padding: 28px;
  transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease;
  transform-style: preserve-3d;
}
.info-card:hover { transform: translateY(-7px); background: white; box-shadow: var(--shadow); }
.info-card__number { position: absolute; top: 24px; right: 24px; color: rgba(23,32,14,.18); font-family: "Bricolage Grotesque", sans-serif; font-size: 34px; font-weight: 700; }
.icon-orb { display: grid; width: 62px; height: 62px; place-items: center; margin-bottom: 70px; border-radius: 22px; font-size: 25px; box-shadow: 0 18px 34px -24px rgba(0,0,0,.5); }
.icon-orb--green { background: var(--green-600); color: white; }
.icon-orb--yellow { background: var(--yellow); }
.icon-orb--dark { background: var(--ink); color: white; }
.info-card h3 { margin: 0; font-family: "Bricolage Grotesque", sans-serif; font-size: 29px; line-height: 1.05; letter-spacing: -.04em; }
.info-card > p:not(.eyebrow) { margin: 14px 0 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.info-card > a { position: absolute; left: 28px; right: 28px; bottom: 25px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 16px; color: var(--green-800); font-size: 12px; font-weight: 800; }

.service-list { display: grid; gap: 12px; }
.service-row {
  display: grid;
  grid-template-columns: 58px 72px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.035);
  padding: 22px 24px;
  transition: background .3s ease, transform .3s var(--ease), border-color .3s ease;
  transform-style: preserve-3d;
}
.service-row:hover { transform: translateX(8px); border-color: rgba(248,186,50,.35); background: rgba(255,255,255,.07); }
.service-row__index { color: rgba(255,255,255,.28); font-family: "Bricolage Grotesque", sans-serif; font-size: 27px; font-weight: 700; }
.service-row__icon { display: grid; width: 64px; height: 64px; place-items: center; border-radius: 22px; background: var(--yellow); color: var(--ink); font-size: 24px; }
.service-row p { margin: 0 0 6px; color: var(--yellow); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.service-row h3 { margin: 0; font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(24px, 3vw, 38px); font-weight: 500; letter-spacing: -.04em; }
.service-row div > span { display: block; margin-top: 8px; color: rgba(255,255,255,.48); font-size: 12px; line-height: 1.65; }
.service-row > a { display: grid; width: 50px; height: 50px; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); font-size: 19px; transition: background .2s ease, color .2s ease, transform .2s ease; }
.service-row:hover > a { background: var(--yellow); color: var(--ink); transform: rotate(45deg); }
.service-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 26px; border-radius: 30px; background: var(--yellow); padding: 24px 28px; color: var(--ink); }
.service-cta__brand { display: flex; align-items: center; gap: 15px; }
.service-cta__brand img { width: 54px; height: 54px; object-fit: contain; }
.service-cta__brand p { margin: 0; font-size: 13px; line-height: 1.65; }
.service-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.service-cta .button--accent { background: var(--ink); color: white; box-shadow: none; }
.service-cta .button--ghost { border-color: rgba(23,32,14,.16); background: rgba(255,255,255,.25); color: var(--ink); }

.leader-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.leader-card { display: flex; align-items: flex-start; gap: 18px; min-height: 220px; border: 1px solid var(--line); border-radius: 28px; background: white; padding: 24px; transition: transform .3s var(--ease), box-shadow .3s ease; transform-style: preserve-3d; }
.leader-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.leader-card--featured { grid-column: span 2; background: var(--green-950); color: white; }
.leader-avatar { display: grid; width: 64px; height: 76px; flex: 0 0 auto; place-items: center; border-radius: 22px; background: var(--green-600); color: white; font-family: "Bricolage Grotesque", sans-serif; font-size: 20px; font-weight: 800; box-shadow: inset 0 0 0 1px rgba(255,255,255,.15); }
.leader-card--featured .leader-avatar { background: var(--yellow); color: var(--ink); }
.leader-card span { color: var(--green-700); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.leader-card--featured span { color: var(--yellow); }
.leader-card h3 { margin: 7px 0 0; font-family: "Bricolage Grotesque", sans-serif; font-size: 26px; letter-spacing: -.04em; }
.leader-card p { margin: 10px 0 18px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.leader-card--featured p { color: rgba(255,255,255,.52); }
.leader-card small { display: inline-block; border-radius: 999px; background: rgba(126,149,67,.12); padding: 8px 10px; color: var(--green-800); font-size: 9px; font-weight: 800; }
.leader-card--featured small { background: rgba(255,255,255,.08); color: rgba(255,255,255,.62); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 360px; gap: 16px; }
.gallery-card { position: relative; overflow: hidden; border-radius: 30px; background: var(--green-800); isolation: isolate; transform-style: preserve-3d; }
.gallery-card--wide { grid-column: span 2; }
.gallery-card::before { content: ""; position: absolute; inset: 0; z-index: -2; transition: transform .6s var(--ease), filter .6s ease; }
.gallery-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 25%, rgba(10,28,18,.82) 100%); }
.gallery-card:hover::before { transform: scale(1.06); filter: saturate(1.1); }
.gallery-card--clean::before { background: radial-gradient(circle at 70% 25%, rgba(248,186,50,.65), transparent 22%), linear-gradient(140deg, #4d7436, #183b29 72%); }
.gallery-card--waste::before { background: radial-gradient(circle at 50% 35%, rgba(255,255,255,.45), transparent 18%), linear-gradient(145deg, #f8ba32, #7e9543); }
.gallery-card--learn::before { background: radial-gradient(circle at 65% 28%, rgba(248,186,50,.55), transparent 20%), linear-gradient(145deg, #aabd65, #244c2b); }
.gallery-card--meeting::before { background: radial-gradient(circle at 30% 35%, rgba(255,255,255,.18), transparent 20%), linear-gradient(145deg, #173820, #6e8a3b); }
.gallery-card > div { position: absolute; left: 26px; right: 26px; bottom: 26px; color: white; }
.gallery-card span { color: var(--yellow); font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.gallery-card h3 { margin: 8px 0 0; font-family: "Bricolage Grotesque", sans-serif; font-size: 32px; letter-spacing: -.04em; }
.gallery-card p { max-width: 540px; margin: 8px 0 0; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.6; }

.closing { position: relative; overflow: hidden; background: var(--green-950); color: white; padding: clamp(90px, 11vw, 170px) 0; }
.closing__glow { position: absolute; width: 680px; height: 680px; left: 50%; top: 50%; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(126,149,67,.18), transparent 70%); }
.closing__inner { position: relative; z-index: 1; text-align: center; }
.closing__inner > img { width: 76px; height: 76px; object-fit: contain; margin: 0 auto 26px; }
.closing h2 { max-width: 880px; margin-inline: auto; font-size: clamp(54px, 8vw, 108px); }
.closing > .shell p, .closing__inner > p:not(.eyebrow) { max-width: 650px; margin: 24px auto 0; color: rgba(255,255,255,.56); font-size: 15px; line-height: 1.8; }
.closing__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 32px; }

.footer { background: #0d2519; color: white; padding: 58px 0 24px; }
.footer__top { display: grid; grid-template-columns: 1fr 1.35fr; gap: 60px; align-items: start; }
.brand--footer .brand__copy small { color: rgba(255,255,255,.38); }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__links > div { display: grid; align-content: start; gap: 10px; }
.footer__links span { color: var(--yellow); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer__links a, .footer__links p { margin: 0; color: rgba(255,255,255,.54); font-size: 12px; line-height: 1.8; }
.footer__links a:hover { color: white; }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 22px; color: rgba(255,255,255,.35); font-size: 10px; }

.announcement { position: fixed; inset: 0; z-index: 500; display: grid; place-items: center; padding: 20px; }
.announcement[hidden] { display: none; }
.announcement__backdrop { position: absolute; inset: 0; background: rgba(5,18,11,.72); backdrop-filter: blur(14px); opacity: 0; animation: fade-in .35s ease forwards; }
.announcement__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(760px, calc(100svh - 40px));
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 40px 100px -34px rgba(0,0,0,.7);
  transform: translateY(22px) scale(.97);
  opacity: 0;
  animation: modal-in .55s var(--ease) .05s forwards;
}
@keyframes fade-in { to { opacity: 1; } }
@keyframes modal-in { to { transform: none; opacity: 1; } }
.announcement__close { position: absolute; right: 14px; top: 14px; z-index: 5; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(23,32,14,.08); font-size: 24px; cursor: pointer; }
.announcement__visual { position: relative; min-height: 430px; overflow: hidden; background: linear-gradient(150deg, #173820, #102a1d); }
.announcement__visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.announcement__visual img { position: absolute; left: 24px; top: 24px; width: 66px; height: 66px; object-fit: contain; }
.announcement__content { padding: clamp(34px, 6vw, 64px); align-self: center; }
.announcement__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.announcement__edition { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.announcement__content h2 { margin: 22px 0 0; font-family: "Bricolage Grotesque", sans-serif; font-size: clamp(38px, 5vw, 58px); font-weight: 600; line-height: .98; letter-spacing: -.055em; }
.announcement__content > p { margin: 18px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.announcement__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.announcement__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
[data-float-card] { will-change: transform; }
.noscript { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1000; border-radius: 16px; background: #fff3c4; padding: 14px 16px; color: #493800; font-size: 13px; font-weight: 700; box-shadow: var(--shadow); }

@media (max-width: 1020px) {
  :root { --shell: min(100% - 32px, 900px); }
  .desktop-nav { display: none; }
  .header-3d { margin-left: auto; padding-right: 3px; }
  .header-3d span { display: none; }
  .menu-toggle { display: block; }
  .site-header__actions .button { display: none; }
  .hero__layout { grid-template-columns: 1fr; align-content: center; gap: 10px; padding-top: 120px; padding-bottom: 90px; }
  .hero__copy { padding-bottom: 0; }
  .hero__title { max-width: 860px; font-size: clamp(54px, 10vw, 92px); }
  .hero__visual { min-height: 500px; margin-top: -30px; }
  .visual-chip--top { right: 6%; }
  .visual-chip--bottom { left: 6%; }
  .hero__bottom p { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-card:last-child { grid-column: span 2; }
  .leader-grid { grid-template-columns: 1fr 1fr; }
  .leader-card--featured { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 28px); }
  .site-header__inner { min-height: 72px; }
  .brand__logo { width: 42px; height: 42px; }
  .brand__copy strong { font-size: 18px; }
  .brand__copy small { max-width: 190px; overflow: hidden; text-overflow: ellipsis; font-size: 8px; }
  .header-3d { width: 42px; height: 42px; border-radius: 14px; padding: 2px; }
  .header-3d canvas { width: 36px; height: 36px; }
  .hero__layout { min-height: auto; padding-top: 112px; padding-bottom: 76px; }
  .hero__copy { padding-top: 14px; }
  .hero__title { font-size: clamp(48px, 15vw, 72px); line-height: .9; }
  .hero__lead { margin-top: 20px; font-size: 14px; line-height: 1.7; }
  .hero__actions { display: grid; grid-template-columns: 1fr; }
  .hero__actions .button { width: 100%; }
  .hero__metrics { margin-top: 28px; }
  .hero__metrics div { min-width: 0; flex: 1; padding: 0 12px; }
  .hero__metrics strong { font-size: 23px; }
  .hero__metrics span { font-size: 8px; }
  .hero__visual { min-height: 390px; margin: 6px -10px 0; }
  .visual-chip { min-width: 150px; padding: 10px 11px; border-radius: 16px; }
  .visual-chip--top { top: 10%; right: 0; }
  .visual-chip--bottom { left: 0; bottom: 8%; }
  .visual-chip small { font-size: 7px; }
  .visual-chip strong { font-size: 10px; }
  .visual-chip__number { width: 34px; height: 34px; border-radius: 11px; font-size: 15px; }
  .visual-badge { width: 48px; height: 48px; border-radius: 17px; font-size: 21px; }
  .visual-badge--leaf { left: 5%; top: 6%; }
  .visual-badge--recycle { right: 4%; bottom: 3%; }
  .hero__bottom { display: none; }
  .ticker__track span { padding: 13px 20px; font-size: 10px; }
  .kinetic { padding-top: 70px; }
  .kinetic__line { font-size: clamp(54px, 18vw, 84px); }
  .kinetic__caption { align-items: flex-start; flex-direction: column; margin-top: 56px; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .closing h2 { font-size: clamp(42px, 12vw, 62px); }
  .section-intro { font-size: 13px; line-height: 1.75; }
  .notice-card { border-radius: 26px; padding: 22px; }
  .notice-card__top { align-items: flex-start; flex-direction: column; gap: 10px; }
  .notice-card__body { grid-template-columns: 1fr; gap: 22px; margin-top: 24px; }
  .notice-card h3 { font-size: 38px; }
  .notice-card__body .button { width: 100%; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card, .info-card:last-child { grid-column: auto; min-height: 340px; }
  .service-row { grid-template-columns: 48px minmax(0, 1fr) 44px; gap: 14px; padding: 18px; }
  .service-row__icon { display: none; }
  .service-row__index { font-size: 22px; }
  .service-row h3 { font-size: 26px; }
  .service-row div > span { font-size: 11px; }
  .service-row > a { width: 42px; height: 42px; }
  .service-cta { align-items: stretch; flex-direction: column; border-radius: 25px; padding: 22px; }
  .service-cta__actions { display: grid; grid-template-columns: 1fr; }
  .service-cta__actions .button { width: 100%; }
  .leader-grid { grid-template-columns: 1fr; }
  .leader-card, .leader-card--featured { grid-column: auto; min-height: auto; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 330px; }
  .gallery-card--wide { grid-column: auto; }
  .footer__links { grid-template-columns: 1fr 1fr; }
  .footer__links > div:last-child { grid-column: span 2; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .announcement { padding: 12px; align-items: end; }
  .announcement__dialog { max-height: calc(100svh - 24px); grid-template-columns: 1fr; border-radius: 28px; }
  .announcement__visual { min-height: 230px; }
  .announcement__visual img { width: 52px; height: 52px; left: 18px; top: 18px; }
  .announcement__content { padding: 28px 22px 24px; }
  .announcement__meta { align-items: flex-start; flex-direction: column; gap: 8px; }
  .announcement__content h2 { font-size: 40px; }
  .announcement__actions { display: grid; grid-template-columns: 1fr; }
  .announcement__actions .button { width: 100%; }
}

@media (max-width: 420px) {
  .brand__copy small { display: none; }
  .brand { gap: 8px; }
  .brand__logo { width: 38px; height: 38px; }
  .header-3d { width: 38px; height: 38px; margin-left: 0; }
  .header-3d canvas { width: 34px; height: 34px; }
  .site-header__actions { gap: 6px; }
  .menu-toggle { width: 42px; height: 42px; }
  .hero__title { font-size: 46px; }
  .hero__visual { min-height: 350px; }
  .visual-chip { min-width: 136px; }
  .visual-chip--top { top: 7%; }
  .visual-chip--bottom { bottom: 4%; }
  .info-card { padding: 24px; }
  .info-card > a { left: 24px; right: 24px; }
  .leader-card { flex-direction: column; }
  .footer__links { grid-template-columns: 1fr; }
  .footer__links > div:last-child { grid-column: auto; }
}

@media (pointer: coarse) {
  [data-float-card] { animation: mobile-float 5.4s ease-in-out infinite; }
  [data-float-card]:nth-child(even) { animation-delay: -2.7s; }
  @keyframes mobile-float { 50% { transform: translateY(-8px) rotate(1.5deg); } }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .kinetic__line, [data-scroll-section] .section-heading, [data-scroll-section].closing .closing__inner { transform: none !important; }
}
