*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --sage:        #B8CDB8;
  --sage-deep:   #4A7C59;
  --sage-pale:   #E6EFE6;
  --sage-soft:   #D1E2D1;
  --blush:       #F2C4CE;
  --blush-deep:  #B8526A;
  --blush-pale:  #FAF0F2;
  --peach:       #F5C9A8;
  --peach-deep:  #C0623A;
  --peach-pale:  #FDF3EC;
  --lilac:       #C9BFE0;
  --lilac-deep:  #6B58A0;
  --lilac-pale:  #F0EDF8;
  --sky:         #B8D4E8;
  --sky-deep:    #3A7EA8;
  --sky-pale:    #EBF4FA;
  --butter:      #F0E2A0;
  --butter-deep: #9E7A1A;
  --butter-pale: #FDFAE8;
  --cream:       #FBF7F0;
  --warm-white:  #FEFCF8;
  --parchment:   #F5F0E8;
  --text-dark:   #1A2B1A;
  --text-mid:    #2E4A2E;
  --text-soft:   #4A6040;
  --text-muted:  #7A9070;
  --border:      rgba(80,120,80,0.18);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

/* Prevent any wrapper from breaking position:fixed on nav */
html,
body,
#app-root,
#root,
#__next,
.app-root,
.wrapper,
main {
  transform: none !important;
  filter: none !important;
  will-change: auto !important;
  isolation: auto !important;
  perspective: none !important;
}

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  /* Do NOT set overflow:hidden or overflow:scroll here — keep body as the scroll container */
}


/* ── NAV ── */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  /* Force GPU compositing layer — fixes iOS Safari & Android fixed positioning bugs */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

  background: rgba(251,247,240,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);

  height: 62px;
  padding: 0 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--sage-deep);
  font-weight: 600;
  white-space: nowrap;
}

.nav-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blush-deep);
  display: inline-block;
  margin: 0 0.5rem;
  vertical-align: middle;
}

/* Desktop Menu */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--sage-deep);
}

.nav-item {
  position: relative;
}

.nav-item > a::after {
  content: ' ▾';
  font-size: 0.55rem;
  opacity: 0.6;
}

/* Desktop Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);

  background: rgba(251,247,240,0.98);
  border: 1px solid var(--border);
  border-radius: 10px;

  min-width: 150px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  z-index: 1001;
}

.nav-item.open .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.8rem 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
}

.nav-dropdown a::after {
  display: none !important;
  content: none !important;
}

.nav-dropdown a:hover {
  background: var(--sage-pale);
  color: var(--sage-deep);
}

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 1001;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-mid);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ── MOBILE NAV ── */

@media (max-width: 800px) {

  nav {
    padding: 0 1rem;
  }

  /* Show hamburger */
  .nav-hamburger {
    display: flex;
  }

  /* Hide desktop links by default on mobile */
  .nav-links {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;

    /* GPU layer fix for mobile drawer too */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);

    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    background: rgba(251,247,240,0.99);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.2rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 999;

    max-height: calc(100vh - 62px);
    overflow-y: auto;
  }

  /* Show when toggled */
  .nav-links.mobile-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item > a {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
  }

  /* Mobile dropdown becomes inline */
  .nav-dropdown {
    position: static;
    transform: none;
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    padding-left: 1rem;
    z-index: auto;
  }

  .nav-item.open .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding: 0.7rem 0;
    font-size: 0.65rem;
    border-bottom: 1px solid rgba(80,120,80,0.08);
  }

  .nav-dropdown a:last-child {
    border-bottom: none;
  }
}


/* ── SECTIONS ── */

section { min-height: 100vh; padding: 120px 7vw 80px; position: relative; }

.sec-cream   { background: var(--cream); }
.sec-sage    { background: var(--sage-pale); }
.sec-blush   { background: var(--blush-pale); }
.sec-lilac   { background: var(--lilac-pale); }
.sec-peach   { background: var(--peach-pale); }
.sec-sky     { background: var(--sky-pale); }
.sec-butter  { background: var(--butter-pale); }
.sec-parch   { background: var(--parchment); }


/* ── TYPOGRAPHY ── */

.overline {
  font-size: 0.65rem; letter-spacing: 0.28em; text-transform: uppercase;
  font-weight: 600;
}
.ov-sage   { color: var(--sage-deep); }
.ov-blush  { color: var(--blush-deep); }
.ov-lilac  { color: var(--lilac-deep); }
.ov-peach  { color: var(--peach-deep); }
.ov-sky    { color: var(--sky-deep); }
.ov-butter { color: var(--butter-deep); }

.rule {
  width: 48px; height: 2px; margin: 1rem 0 2rem;
  border-radius: 2px;
}
.rule-sage   { background: var(--sage-deep); }
.rule-blush  { background: var(--blush-deep); }
.rule-lilac  { background: var(--lilac-deep); }
.rule-peach  { background: var(--peach-deep); }
.rule-sky    { background: var(--sky-deep); }
.rule-butter { background: var(--butter-deep); }
.rule-center { margin-left: auto; margin-right: auto; }

h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300; line-height: 1.0;
  color: var(--text-dark);
}
h1 em { font-style: italic; color: var(--sage-deep); display: block; }
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300; line-height: 1.15;
  color: var(--text-dark);
}
h2 em { font-style: italic; }
h3 { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--text-dark); }

.body-text { font-size: 0.9rem; color: var(--text-mid); line-height: 1.9; max-width: 580px; margin: 1.5rem 0 0; }


/* ── HERO ── */

#hero {
  background: var(--sage-pale) !important;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; opacity: 0.45; }
.blob1 { width: 520px; height: 520px; right: -80px; top: -60px; background: var(--blush); }
.blob2 { width: 360px; height: 360px; right: 160px; bottom: 40px; background: var(--lilac); opacity: 0.3; }
.blob3 { width: 200px; height: 200px; left: 10%; bottom: 10%; background: var(--peach); opacity: 0.35; }

.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: white; border: 1px solid var(--border);
  border-radius: 100px; padding: 0.45rem 1.2rem; margin-bottom: 2.5rem;
}
.hero-pill span { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); font-weight: 500; }
.pill-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--sage-deep); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 3rem; }
.hbadge {
  font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.5rem 1.1rem; border-radius: 100px; font-weight: 600;
}
.hbadge-sage   { background: var(--sage-soft);  color: var(--sage-deep); border: 1px solid rgba(74,124,89,0.25); }
.hbadge-blush  { background: var(--blush);       color: var(--blush-deep); border: 1px solid rgba(184,82,106,0.25); }
.hbadge-lilac  { background: var(--lilac);        color: var(--lilac-deep); border: 1px solid rgba(107,88,160,0.25); }
.hbadge-peach  { background: var(--peach);        color: var(--peach-deep); border: 1px solid rgba(192,98,58,0.25); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--sage-deep), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }


/* ── STAT GRID ── */

.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.5rem 0; }
.stat-card {
  background: white; border-radius: 16px; padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,124,89,0.14);
}
.stat-num { font-family: var(--serif); font-size: 4rem; font-weight: 300; line-height: 1; display: block; }
.stat-card:nth-child(1) .stat-num { color: var(--sage-deep); }
.stat-card:nth-child(2) .stat-num { color: var(--blush-deep); }
.stat-card:nth-child(3) .stat-num { color: var(--lilac-deep); }
.stat-card:nth-child(4) .stat-num { color: var(--peach-deep); }
.stat-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mid); margin: 0.4rem 0 0.8rem; display: block; font-weight: 600; }
.stat-desc { font-size: 0.8rem; color: var(--text-soft); line-height: 1.65; }


/* INSIGHT */

.insight {
  border-left: 3px solid var(--sage-deep); padding: 1.4rem 1.8rem;
  background: white; border-radius: 0 12px 12px 0;
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  color: var(--text-mid); line-height: 1.9; margin: 2.5rem 0;
}


/* ── PROCESS ── */

.process-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.5rem 0; }
.process-step {
  background: white; border-radius: 14px; padding: 1.8rem 1.3rem;
  border: 1px solid var(--border); text-align: center; position: relative;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(74,124,89,0.12);
}
.process-step.clickable:hover { border-color: var(--sage-deep); }
.process-step:nth-child(odd)  { border-top: 3px solid var(--sage-deep); }
.process-step:nth-child(even) { border-top: 3px solid var(--blush-deep); }
.step-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--text-muted); line-height: 1; display: block; }
.step-name { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin: 0.7rem 0 0.5rem; display: block; }
.process-step:nth-child(odd)  .step-name { color: var(--sage-deep); }
.process-step:nth-child(even) .step-name { color: var(--blush-deep); }
.step-desc { font-size: 0.76rem; color: var(--text-soft); line-height: 1.55; }
.step-click-hint {
  display: inline-block; margin-top: 0.8rem; font-size: 0.58rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--sage-deep); font-weight: 600;
  background: var(--sage-soft); padding: 0.25rem 0.7rem; border-radius: 100px;
}

.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.product-card { border-radius: 16px; padding: 2.5rem; border: 1px solid var(--border); }
.product-card.fine    { background: var(--sage-soft); }
.product-card.coarse  { background: var(--peach-pale); border-color: rgba(192,98,58,0.2); }
.product-tag {
  display: inline-block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; padding: 0.3rem 0.9rem; border-radius: 100px; margin-bottom: 1.2rem;
}
.fine .product-tag   { background: var(--sage); color: var(--sage-deep); }
.coarse .product-tag { background: var(--peach); color: var(--peach-deep); }
.product-title { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; color: var(--text-dark); margin-bottom: 0.9rem; line-height: 1.2; }
.product-desc { font-size: 0.83rem; color: var(--text-soft); line-height: 1.85; }


/* ── SDG ── */

.sdg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
.sdg-card {
  background: white; border-radius: 16px; padding: 2rem; border: 1px solid var(--border);
  transition: transform 0.25s;
}
.sdg-card:hover { transform: translateY(-3px); }
.sdg-card:nth-child(1) { border-top: 3px solid var(--blush-deep); }
.sdg-card:nth-child(2) { border-top: 3px solid var(--sage-deep); }
.sdg-card:nth-child(3) { border-top: 3px solid var(--lilac-deep); }
.sdg-card:nth-child(4) { border-top: 3px solid var(--butter-deep); }
.sdg-card:nth-child(5) { border-top: 3px solid var(--peach-deep); }
.sdg-card:nth-child(6) { border-top: 3px solid var(--sky-deep); }
.sdg-num { font-family: var(--serif); font-size: 3rem; font-weight: 300; line-height: 1; margin-bottom: 0.3rem; }
.sdg-card:nth-child(1) .sdg-num { color: var(--blush-deep); }
.sdg-card:nth-child(2) .sdg-num { color: var(--sage-deep); }
.sdg-card:nth-child(3) .sdg-num { color: var(--lilac-deep); }
.sdg-card:nth-child(4) .sdg-num { color: var(--butter-deep); }
.sdg-card:nth-child(5) .sdg-num { color: var(--peach-deep); }
.sdg-card:nth-child(6) .sdg-num { color: var(--sky-deep); }
.sdg-over { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 0.3rem; display: block; }
.sdg-card:nth-child(1) .sdg-over { color: var(--blush-deep); }
.sdg-card:nth-child(2) .sdg-over { color: var(--sage-deep); }
.sdg-card:nth-child(3) .sdg-over { color: var(--lilac-deep); }
.sdg-card:nth-child(4) .sdg-over { color: var(--butter-deep); }
.sdg-card:nth-child(5) .sdg-over { color: var(--peach-deep); }
.sdg-card:nth-child(6) .sdg-over { color: var(--sky-deep); }
.sdg-heading { font-family: var(--serif); font-size: 1.2rem; color: var(--text-dark); margin-bottom: 0.7rem; }
.sdg-desc { font-size: 0.79rem; color: var(--text-soft); line-height: 1.7; }


/* ── SUSTAINABILITY IMAGE BANNER ── */

.sustain-app-row {
  display: flex; align-items: stretch; justify-content: space-between; gap: 3rem; margin: 2rem 0 1rem;
}
.sustain-app-row .body-text { flex: 1; margin: 0; }
.app-card {
  display: flex; flex-direction: row; align-items: stretch; gap: 1.2rem;
  background: white; border-radius: 18px; padding: 1.4rem 1.6rem;
  border: 1px solid var(--border); flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(45,106,79,0.08);
  width: 400px; text-align: left; margin-left: auto;
}
.app-card-icon { flex-shrink: 0; display: flex; align-items: flex-start; }
.app-card-text { display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 0.4rem; flex: 1; }
.app-card-name {
  font-family: var(--sans); font-size: 1rem; font-weight: 700;
  color: var(--sage-deep); letter-spacing: 0.03em;
}
.app-card-desc {
  font-family: var(--sans); font-size: 0.82rem; color: var(--text-soft); line-height: 1.75; text-align: left;
}
.app-playstore-badge {
  display: inline-block; margin-top: 0.4rem; text-decoration: none;
  border-radius: 6px; overflow: hidden; transition: opacity 0.2s;
}
.app-playstore-badge:hover { opacity: 0.85; }

.sustainability-img-banner {
  width: 100%; border-radius: 18px; overflow: hidden; margin: 2rem 0 2.5rem;
  height: 320px; position: relative;
}
.sustainability-img-banner img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.sustainability-img-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(26,43,26,0.75), transparent);
  padding: 1.5rem 1.8rem 1.2rem;
  color: white; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
}


/* ── RECOGNITION ── */

.rec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.5rem 0; }
.rec-card {
  background: white; border-radius: 16px; padding: 2.8rem 2.5rem;
  border: 1px solid var(--border); transition: transform 0.25s;
}
.rec-card:hover { transform: translateY(-3px); }
.rec-card.wgsn  { background: var(--lilac-pale); border-color: rgba(107,88,160,0.2); }
.rec-card.expo  { background: var(--sky-pale);   border-color: rgba(58,126,168,0.2); }
.rec-icon-text {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  letter-spacing: 0.1em; margin-bottom: 1.2rem; display: block;
}
.wgsn .rec-icon-text  { color: var(--lilac-deep); }
.expo .rec-icon-text  { color: var(--sky-deep); }
.rec-label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; display: block; margin-bottom: 0.6rem; }
.wgsn .rec-label { color: var(--lilac-deep); }
.expo .rec-label { color: var(--sky-deep); }
.rec-title { font-family: var(--serif); font-size: 1.6rem; font-weight: 300; color: var(--text-dark); line-height: 1.25; margin-bottom: 1rem; }
.rec-desc { font-size: 0.82rem; color: var(--text-soft); line-height: 1.85; }

.wgsn-img-wrap {
  width: 100%; border-radius: 12px; overflow: hidden; margin-top: 1.5rem;
  height: 220px;
}
.wgsn-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.market-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 1rem; }
.market-item {
  background: white; border-radius: 12px; padding: 1.4rem 1.2rem;
  text-align: center; border: 1px solid var(--border);
}
.market-val { font-family: var(--serif); font-size: 1.7rem; font-weight: 300; display: block; line-height: 1; }
.market-item:nth-child(1) .market-val { color: var(--sage-deep); }
.market-item:nth-child(2) .market-val { color: var(--blush-deep); }
.market-item:nth-child(3) .market-val { color: var(--lilac-deep); }
.market-item:nth-child(4) .market-val { color: var(--peach-deep); }
.market-lbl { font-size: 0.67rem; color: var(--text-mid); margin-top: 0.4rem; line-height: 1.4; font-weight: 500; }


/* ── FINANCIALS ── */

.status-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin: 2.5rem 0; }
.status-item {
  background: white; border-radius: 14px; padding: 1.8rem 1.5rem; text-align: center;
  border: 1px solid var(--border);
}
.status-item:nth-child(1) { background: var(--sage-soft); }
.status-item:nth-child(2) { background: var(--blush-pale); }
.status-item:nth-child(3) { background: var(--lilac-pale); }
.status-item:nth-child(4) { background: var(--peach-pale); }
.status-val { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; display: block; line-height: 1; }
.status-item:nth-child(1) .status-val { color: var(--sage-deep); }
.status-item:nth-child(2) .status-val { color: var(--blush-deep); }
.status-item:nth-child(3) .status-val { color: var(--lilac-deep); }
.status-item:nth-child(4) .status-val { color: var(--peach-deep); }
.status-lbl { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin: 0.5rem 0 0.2rem; display: block; }
.status-item:nth-child(1) .status-lbl { color: var(--sage-deep); }
.status-item:nth-child(2) .status-lbl { color: var(--blush-deep); }
.status-item:nth-child(3) .status-lbl { color: var(--lilac-deep); }
.status-item:nth-child(4) .status-lbl { color: var(--peach-deep); }
.status-sub { font-size: 0.72rem; color: var(--text-soft); font-weight: 500; }

.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.compare-col { background: white; border-radius: 16px; padding: 2.5rem; border: 1px solid var(--border); }
.compare-col.funded { background: var(--sage-soft); border-color: rgba(74,124,89,0.3); }
.compare-head {
  font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
  margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--border); color: var(--text-mid);
}
.compare-col.funded .compare-head { color: var(--sage-deep); }
.compare-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.55rem 0; border-bottom: 1px solid rgba(74,124,89,0.1);
  font-size: 0.81rem; color: var(--text-soft); line-height: 1.5;
}
.chk {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.6rem;
}
.chk-no  { background: var(--parchment); color: var(--text-muted); border: 1px solid var(--border); }
.chk-yes { background: var(--sage-deep); color: white; }


/* ── BUDGET TABLE ── */

.budget-table { width: 100%; border-collapse: collapse; margin: 2.5rem 0; }
.budget-table thead tr { background: var(--sage-soft); }
.budget-table thead th {
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sage-deep); padding: 1rem 1.2rem; text-align: left; font-weight: 700;
}
.budget-table tbody tr { border-bottom: 1px solid rgba(74,124,89,0.1); transition: background 0.2s; }
.budget-table tbody tr:hover { background: rgba(184,205,184,0.12); }
.budget-table tbody td { padding: 1rem 1.2rem; font-size: 0.81rem; color: var(--text-soft); vertical-align: top; }
.budget-table td:first-child { color: var(--text-dark); font-weight: 600; }
.budget-table td:last-child { font-family: var(--serif); font-size: 1rem; color: var(--sage-deep); white-space: nowrap; }
.budget-total { background: var(--sage-soft) !important; }
.budget-total td { padding: 1.3rem 1.2rem !important; border-top: 2px solid var(--sage-deep) !important; }
.budget-total td:first-child { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--text-dark) !important; }
.budget-total td:last-child { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--sage-deep) !important; }


/* ── IMPACT ── */

.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2.5rem 0; }
.impact-card { border-radius: 16px; padding: 2rem 1.8rem; border: 1px solid var(--border); transition: transform 0.25s; }
.impact-card:hover { transform: translateY(-3px); }
.impact-card:nth-child(1) { background: var(--sage-soft); }
.impact-card:nth-child(2) { background: var(--blush-pale); }
.impact-card:nth-child(3) { background: var(--butter-pale); }
.impact-card:nth-child(4) { background: var(--sky-pale); }
.impact-card:nth-child(5) { background: var(--peach-pale); }
.impact-card:nth-child(6) { background: var(--lilac-pale); }
.impact-val { font-family: var(--serif); font-size: 3.2rem; font-weight: 300; display: block; line-height: 1; }
.impact-card:nth-child(1) .impact-val { color: var(--sage-deep); }
.impact-card:nth-child(2) .impact-val { color: var(--blush-deep); }
.impact-card:nth-child(3) .impact-val { color: var(--butter-deep); }
.impact-card:nth-child(4) .impact-val { color: var(--sky-deep); }
.impact-card:nth-child(5) .impact-val { color: var(--peach-deep); }
.impact-card:nth-child(6) .impact-val { color: var(--lilac-deep); }
.impact-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; margin: 0.5rem 0 0.3rem; display: block; }
.impact-card:nth-child(1) .impact-label { color: var(--sage-deep); }
.impact-card:nth-child(2) .impact-label { color: var(--blush-deep); }
.impact-card:nth-child(3) .impact-label { color: var(--butter-deep); }
.impact-card:nth-child(4) .impact-label { color: var(--sky-deep); }
.impact-card:nth-child(5) .impact-label { color: var(--peach-deep); }
.impact-card:nth-child(6) .impact-label { color: var(--lilac-deep); }
.impact-desc { font-size: 0.79rem; color: var(--text-soft); line-height: 1.65; }


/* ── TEAM ── */

.team-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3.5rem; margin: 2.5rem 0; align-items: start; }
.team-copy-lead { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--text-mid); line-height: 1.9; margin-bottom: 1.2rem; }
.team-copy { font-size: 0.86rem; color: var(--text-soft); line-height: 1.9; }
.strength-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.strength-card {
  background: white; border-radius: 14px; padding: 1.8rem;
  border: 1px solid var(--border); transition: transform 0.2s;
}
.strength-card:hover { transform: translateY(-2px); }
.strength-card:nth-child(1) { border-top: 3px solid var(--sage-deep); }
.strength-card:nth-child(2) { border-top: 3px solid var(--blush-deep); }
.strength-card:nth-child(3) { border-top: 3px solid var(--lilac-deep); }
.strength-card:nth-child(4) { border-top: 3px solid var(--peach-deep); }
.s-num { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; display: block; margin-bottom: 0.5rem; }
.strength-card:nth-child(1) .s-num { color: var(--sage-deep); }
.strength-card:nth-child(2) .s-num { color: var(--blush-deep); }
.strength-card:nth-child(3) .s-num { color: var(--lilac-deep); }
.strength-card:nth-child(4) .s-num { color: var(--peach-deep); }
.s-title { font-family: var(--serif); font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.s-desc { font-size: 0.76rem; color: var(--text-soft); line-height: 1.7; }


/* ── CLOSE ── */

#close { background: var(--sage-pale) !important; text-align: center; display: flex; flex-direction: column; justify-content: center; }
.close-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cblob { position: absolute; border-radius: 50%; opacity: 0.35; }
.cblob1 { width: 400px; height: 400px; left: -100px; bottom: -80px; background: var(--blush); }
.cblob2 { width: 300px; height: 300px; right: -60px; top: 60px; background: var(--lilac); }
.cblob3 { width: 200px; height: 200px; right: 200px; bottom: 60px; background: var(--peach); opacity: 0.3; }
.close-content { position: relative; z-index: 1; }
.close-heading {
  font-family: var(--serif); font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  font-weight: 300; line-height: 1.1; max-width: 800px; margin: 0 auto 1.8rem; color: var(--text-dark);
}
.close-heading em { font-style: italic; color: var(--sage-deep); }
.close-sub {
  font-family: var(--serif); font-size: 1.1rem; font-style: italic;
  color: var(--text-soft); max-width: 560px; margin: 0 auto 3rem; line-height: 1.85;
}

.enables-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; max-width: 960px; margin: 0 auto 3.5rem; }
.enable-item {
  background: white; border-radius: 14px; padding: 1.8rem 1.4rem;
  border: 1px solid var(--border); font-size: 0.8rem; color: var(--text-soft); line-height: 1.7; text-align: left;
}
.enable-item:nth-child(1) { border-top: 3px solid var(--sage-deep); }
.enable-item:nth-child(2) { border-top: 3px solid var(--blush-deep); }
.enable-item:nth-child(3) { border-top: 3px solid var(--lilac-deep); }
.enable-item:nth-child(4) { border-top: 3px solid var(--peach-deep); }
.enable-label { display: block; font-family: var(--serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.5rem; }
.enable-item:nth-child(1) .enable-label { color: var(--sage-deep); }
.enable-item:nth-child(2) .enable-label { color: var(--blush-deep); }
.enable-item:nth-child(3) .enable-label { color: var(--lilac-deep); }
.enable-item:nth-child(4) .enable-label { color: var(--peach-deep); }

.contact-box {
  border: 1.5px solid var(--border); border-radius: 14px;
  padding: 2rem 3rem; max-width: 560px; margin: 0 auto;
  background: white; font-size: 0.77rem; letter-spacing: 0.05em; color: var(--text-soft); line-height: 2;
}
.contact-box strong { color: var(--sage-deep); font-weight: 600; font-size: 0.9rem; }
.contact-box .small-over { display: block; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-deep); margin-top: 0.8rem; }


/* ── IMAGE LIGHTBOX OVERLAY ── */

.img-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(20, 35, 20, 0.92);
  display: none; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  backdrop-filter: blur(8px);
}
.img-overlay.active { display: flex; }
.img-overlay img {
  max-width: 85vw; max-height: 72vh;
  border-radius: 14px; object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.overlay-title {
  font-family: var(--serif); font-size: 1.4rem; font-style: italic;
  color: white; text-align: center; letter-spacing: 0.05em;
}
.overlay-sub {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-align: center;
}
.overlay-back {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: white; color: var(--sage-deep);
  border: none; cursor: pointer; border-radius: 100px;
  padding: 0.7rem 1.8rem; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700; font-family: var(--sans);
  transition: background 0.2s, transform 0.15s;
}
.overlay-back:hover { background: var(--sage-soft); transform: translateY(-1px); }
.overlay-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); font-size: 1.8rem; line-height: 1;
  transition: color 0.2s;
}
.overlay-close:hover { color: white; }


/* ── PROBLEM & SOLUTION ── */

.problem-split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin: 2.5rem 0; }
.problem-panel { border-radius: 18px; padding: 2.5rem; border: 1px solid var(--border); }
.problem-panel.left { background: #FDF0F0; border-left: 4px solid #C0523A; }
.problem-panel.right { background: var(--sage-soft); border-left: 4px solid var(--sage-deep); }
.problem-label { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 700; display: block; margin-bottom: 0.8rem; }
.problem-panel.left .problem-label { color: #C0523A; }
.problem-panel.right .problem-label { color: var(--sage-deep); }
.problem-stat { font-family: var(--serif); font-size: 4rem; font-weight: 300; line-height: 1; display: block; margin-bottom: 0.5rem; }
.problem-panel.left .problem-stat { color: #C0523A; }
.problem-panel.right .problem-stat { color: var(--sage-deep); }
.problem-text { font-size: 0.85rem; line-height: 1.85; }
.problem-panel.left .problem-text { color: #6B2E1A; }
.problem-panel.right .problem-text { color: var(--text-mid); }
.headline-quote { background: var(--cream); border-left: 4px solid var(--sage-deep); border-radius: 0 16px 16px 0; padding: 1.6rem 2rem; font-family: var(--serif); font-size: 1.35rem; font-style: italic; color: var(--text-dark); line-height: 1.65; margin: 2rem 0; }
.headline-quote strong { color: var(--sage-deep); font-style: normal; font-weight: 600; }


/* ── DIRECTORS ── */

.directors-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin: 2.5rem 0; }
.director-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(74,124,89,0.09); transition: transform 0.25s, box-shadow 0.25s; display: flex; align-items: flex-start; gap: 1.5rem; }
.director-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(74,124,89,0.14);
}
.director-photo-wrap { flex: 0 0 20%; min-width: 120px; aspect-ratio: 3/4; overflow: hidden; background: var(--sage-pale); }
.director-photo-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; display: block; }
.director-body { padding: 1.8rem 1.6rem; }
.director-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--text-dark); margin-bottom: 0.2rem; }
.director-title { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--sage-deep); margin-bottom: 1.2rem; display: block; }
.director-bio-points { list-style: none; padding: 0; margin: 0; }
.director-bio-points li { font-size: 0.81rem; color: var(--text-soft); line-height: 1.7; padding: 0.45rem 0 0.45rem 1.2rem; border-bottom: 1px solid rgba(74,124,89,0.08); position: relative; }
.director-bio-points li:last-child { border-bottom: none; }
.director-bio-points li::before { content: "✦"; position: absolute; left: 0; color: var(--sage-deep); font-size: 0.55rem; top: 0.65rem; }


/* ── CONTACT SECTION ── */

.contact-section-wrap { background: var(--sage-deep); border-radius: 20px; padding: 2.8rem 3rem; margin: 2.5rem 0; color: white; position: relative; overflow: hidden; }
.contact-section-wrap::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.05); top: -80px; right: -80px; pointer-events: none; }
.contact-section-label { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.65); display: block; margin-bottom: 0.6rem; position: relative; z-index: 1; }
.contact-section-heading { font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: white; margin-bottom: 2rem; line-height: 1.2; position: relative; z-index: 1; }
.contact-section-heading em { font-style: italic; color: #A8D4A8; }
.contact-rows { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; position: relative; z-index: 1; }
.contact-row { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 1rem 1.2rem; text-decoration: none; color: white; }
.contact-row.full { grid-column: 1 / -1; }
.cr-icon { font-size: 1.3rem; flex-shrink: 0; }
.cr-label { font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 700; display: block; margin-bottom: 0.1rem; }
.cr-val { font-size: 0.88rem; color: rgba(255,255,255,0.92); font-weight: 500; }


/* ── RESPONSIVE: TABLET ── */

@media (max-width: 900px) {
  .stat-grid, .sdg-grid, .impact-grid, .process-flow { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; gap: 2rem; }
  .enables-grid { grid-template-columns: 1fr 1fr; }
  .sustain-app-row { flex-direction: column; gap: 1.5rem; }
  .app-card { width: 100%; margin-left: 0; }
  .problem-split, .directors-grid, .contact-rows { grid-template-columns: 1fr; }
  .director-photo-wrap { aspect-ratio: 4/3; }
}


/* ── RESPONSIVE: MOBILE ── */

@media (max-width: 800px) {

  nav {
    padding: 0 1rem;
  }

  /* Show hamburger on mobile */
  .nav-hamburger {
    display: flex;
  }

  /* Hide desktop nav links, show as mobile drawer */
  .nav-links {
    display: none;
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;

    -webkit-transform: translateZ(0);
    transform: translateZ(0);

    flex-direction: column;
    align-items: flex-start;
    gap: 0;

    background: rgba(251,247,240,0.99);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.2rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 999;

    max-height: calc(100vh - 62px);
    overflow-y: auto;
  }

  .nav-links.mobile-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item > a {
    display: block;
    width: 100%;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
  }

  /* Mobile dropdown becomes inline */
  .nav-dropdown {
    position: static;
    transform: none;
    display: none;
    background: transparent;
    border: none;
    box-shadow: none;
    width: 100%;
    padding-left: 1rem;
    z-index: auto;
  }

  .nav-item.open .nav-dropdown {
    display: block;
  }

  .nav-dropdown a {
    padding: 0.7rem 0;
    font-size: 0.65rem;
    border-bottom: 1px solid rgba(80,120,80,0.08);
  }

  .nav-dropdown a:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {

  section { padding: 100px 5vw 60px; }

  .stat-grid, .sdg-grid, .impact-grid, .rec-grid, .product-grid,
  .compare-grid, .strength-grid, .enables-grid, .process-flow,
  .market-strip, .status-strip { grid-template-columns: 1fr; }

  h1 { font-size: 2.8rem; }

  .blob1 { width: 260px; height: 260px; right: -60px; top: -30px; }
  .blob2 { width: 200px; height: 200px; right: 40px; }

  .budget-table { display: block; overflow-x: auto; }

  .contact-box { padding: 1.5rem; }

  .hero-scroll { display: none; }

  .director-card {
    flex-direction: column;
    gap: 0;
  }

  .director-photo-wrap {
    width: 100%;
    min-width: unset;
    flex: none;
    aspect-ratio: 4/5;
  }

  .director-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #f8f8f8;
  }

  .director-body {
    padding: 1.2rem;
  }

  .contact-section-wrap {
    padding: 1.8rem 1.5rem;
  }
}