/* ============================================================
   KABONI YETU — Shared Stylesheet
   Blue Carbon Credit Origination Platform
   ============================================================ */

/* === UTILITY CLASSES === */
.section-label-accent { color: var(--accent); }
.detail-value-status { color: var(--accent); font-size: 0.95rem; }
.footer-h5-spaced { margin-top: 1.5rem; }
.flagship-detail-label-accent { color: var(--accent); }
.anchor-only { display: none; }
.page-sub-spaced { margin-top: 1.5rem; }
.btn-spaced { margin-top: 1.5rem; }

/* === DESIGN TOKENS === */
:root {
  --mangrove:  #1B3A2D;
  --tide:      #2E6B52;
  --seafoam:   #4E9E7A;
  --sand:      #F5EFE0;
  --estuary:   #A8C5B5;
  --charcoal:  #1A1A1A;
  --mist:      #EEF4F1;
  --accent:    #C8A96E;
  --white:     #FFFFFF;
  --text-mid:  #444444;
  --text-soft: #666666;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', sans-serif;
  background: var(--sand);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
}

/* === SKIP NAVIGATION (accessibility) === */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--mangrove);
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  z-index: 9999;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0.75rem; }

/* === NAVIGATION === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(27, 58, 45, 0.97);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.nav-logo {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sand);
  letter-spacing: 0.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--estuary);
  text-decoration: none;
  transition: color 0.2s;
  padding: 0.25rem 0;
}
.nav-links a:hover,
.nav-links a.active { color: var(--sand); }
.nav-links a.active {
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 0.1rem;
}

/* Glossary link — subtle distinction */
.nav-links .nav-glossary a { color: rgba(168, 197, 181, 0.65); }
.nav-links .nav-glossary a:hover { color: var(--estuary); }

/* === HAMBURGER TOGGLE === */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 101;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--estuary);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: var(--sand);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: var(--sand);
}

/* Nav overlay (mobile) */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 98;
}
.nav-overlay.open { display: block; }

/* === SCROLL TO TOP === */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 44px;
  height: 44px;
  background: var(--mangrove);
  color: var(--sand);
  border: 1px solid rgba(168, 197, 181, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s, background 0.2s;
}
.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
.scroll-top:hover {
  background: var(--tide);
  transform: translateY(-2px);
}

/* === COOKIE NOTICE === */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: #111;
  color: #aaa;
  padding: 1rem 4rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  font-size: 0.8rem;
  line-height: 1.5;
  border-top: 1px solid #333;
}
.cookie-notice.visible { display: flex; }
.cookie-notice a { color: var(--estuary); }
.cookie-btn {
  background: var(--accent);
  color: var(--mangrove);
  border: none;
  padding: 0.5rem 1.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.cookie-btn:hover { background: #d9bc85; }

/* === PROJECT STATUS BADGE === */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid rgba(200, 169, 110, 0.45);
  padding: 0.35rem 1rem 0.35rem 0.7rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

/* === COMMON SECTION COMPONENTS === */
section { padding: 5rem 4rem; }
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--mangrove);
}
.section-title.light { color: var(--sand); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--accent);
  color: var(--mangrove);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover { background: #d9bc85; transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--estuary);
  color: var(--estuary);
  margin-left: 1rem;
}
.btn-outline:hover { border-color: var(--sand); color: var(--sand); background: transparent; transform: translateY(-1px); }
.btn-dark {
  background: var(--mangrove);
  color: var(--sand);
  white-space: nowrap;
}
.btn-dark:hover { background: var(--tide); }

/* === INNER PAGE HERO === */
.page-hero {
  background: var(--mangrove);
  background-size: cover;
  background-position: center;
  padding: 9rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(27, 58, 45, 0.97) 0%,
    rgba(27, 58, 45, 0.86) 50%,
    rgba(27, 58, 45, 0.68) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.page-hero > * { position: relative; z-index: 1; }
.page-hero-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.page-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.page-title {
  font-family: 'Lora', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.1;
  max-width: 700px;
}
.page-title em { color: var(--seafoam); font-style: normal; }
.page-sub {
  color: var(--estuary);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 580px;
}

/* === FOOTER === */
footer {
  background: var(--charcoal);
  color: var(--estuary);
  padding: 3.5rem 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--sand);
  margin-bottom: 0.75rem;
  text-decoration: none;
  display: block;
}
.footer-brand span { color: var(--accent); }
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 290px;
  color: #888;
}
footer h5 {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 1rem;
}
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul a {
  color: #888;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
footer ul a:hover { color: var(--estuary); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.2rem; }
.social-link {
  width: 34px;
  height: 34px;
  border: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  text-decoration: none;
  font-size: 0.78rem;
  font-family: 'DM Mono', monospace;
  letter-spacing: 0;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--estuary); color: var(--estuary); }
.footer-bottom {
  background: #111;
  border-top: 1px solid #222;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: #555; }
.footer-disclaimer {
  font-size: 0.75rem;
  color: #444;
  line-height: 1.5;
  padding: 1.2rem 4rem;
  background: #111;
  border-top: 1px solid #1a1a1a;
}


/* ============================================================
   PAGE: HOME (index.html)
   ============================================================ */

/* Hero */
.hero {
  min-height: 100vh;
  background: var(--mangrove);
  background-size: cover;
  background-position: center;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 4rem 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(27, 58, 45, 0.97) 0%,
    rgba(27, 58, 45, 0.89) 42%,
    rgba(27, 58, 45, 0.62) 100%
  );
  pointer-events: none;
  z-index: 0;
}
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Lora', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--sand);
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--seafoam); font-style: normal; }
.hero-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--estuary);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 197, 181, 0.2);
  padding: 1.8rem 2rem;
  position: relative;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 11px; height: 11px;
  border-top: 1.5px solid rgba(200, 169, 110, 0.42);
  border-left: 1.5px solid rgba(200, 169, 110, 0.42);
  pointer-events: none;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 8px; right: 8px;
  width: 11px; height: 11px;
  border-bottom: 1.5px solid rgba(200, 169, 110, 0.42);
  border-right: 1.5px solid rgba(200, 169, 110, 0.42);
  pointer-events: none;
}
.stat-num {
  font-family: 'Lora', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--seafoam);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--estuary);
  margin-top: 0.4rem;
  letter-spacing: 0.03em;
  line-height: 1.45;
}
.stat-qualifier {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  margin-top: 0.3rem;
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* What We Do */
.what { background: var(--mist); }
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.what-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 3px solid var(--seafoam);
}
.what-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1.5rem;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--seafoam);
}
.what-icon svg,
.eco-icon svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  flex-shrink: 0;
}
.what-icon svg { width: 22px; height: 22px; }
.eco-icon svg { width: 1.8rem; height: 1.8rem; }
.what-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--mangrove);
  margin-bottom: 1rem;
}
.what-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-mid); }

/* Flagship Block (Home) */
.flagship-block {
  background: var(--mangrove);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 6rem 4rem;
}
.flagship-body {
  color: var(--estuary);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 2rem;
}
.flagship-body p { margin-bottom: 1rem; }
.flagship-detail {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(168, 197, 181, 0.2);
  padding: 2rem;
  position: relative;
}
.flagship-detail::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 11px; height: 11px;
  border-top: 1.5px solid rgba(200, 169, 110, 0.42);
  border-left: 1.5px solid rgba(200, 169, 110, 0.42);
  pointer-events: none;
}
.flagship-detail::after {
  content: '';
  position: absolute;
  bottom: 8px; right: 8px;
  width: 11px; height: 11px;
  border-bottom: 1.5px solid rgba(200, 169, 110, 0.42);
  border-right: 1.5px solid rgba(200, 169, 110, 0.42);
  pointer-events: none;
}
.flagship-detail h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(168, 197, 181, 0.12);
  gap: 1rem;
}
.detail-row:last-child { border-bottom: none; }
.detail-label { font-size: 0.82rem; color: var(--estuary); flex-shrink: 0; }
.detail-value {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--sand);
  text-align: right;
}

/* Impact Strip */
.impact-strip {
  background: var(--tide);
  padding: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.impact-num {
  font-family: 'Lora', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
}
.impact-desc {
  font-size: 0.83rem;
  color: var(--estuary);
  margin-top: 0.5rem;
  line-height: 1.45;
}

/* Certification */
.cert { background: var(--sand); }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.cert-card {
  border: 1px solid var(--estuary);
  padding: 2rem;
  background: var(--white);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.cert-badge {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  background: var(--mangrove);
  color: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1.3;
}
.cert-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--mangrove);
  margin-bottom: 0.5rem;
}
.cert-card p { font-size: 0.88rem; color: #555; line-height: 1.6; }

/* CTA Banner */
.cta-banner {
  background: var(--accent);
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-banner h2 {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--mangrove);
  max-width: 600px;
  line-height: 1.25;
}
.cta-banner-centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 6rem 4rem;
  gap: 0;
}
.cta-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(27, 58, 45, 0.6);
  margin-bottom: 1rem;
}
.cta-banner-centered h2 {
  max-width: 540px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 auto;
}
.cta-sub {
  font-size: 0.95rem;
  color: rgba(27, 58, 45, 0.65);
  max-width: 460px;
  margin: 1.25rem auto 0;
  line-height: 1.72;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-outline-light {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid rgba(27, 58, 45, 0.45);
  color: var(--mangrove);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-light:hover {
  border-color: var(--mangrove);
  background: rgba(27, 58, 45, 0.08);
}


/* ============================================================
   PAGE: ABOUT
   ============================================================ */

/* Origin */
.origin { background: var(--mist); }
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.origin-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.origin-pull {
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--mangrove);
  font-style: italic;
}

/* Model */
.model { background: var(--sand); }
.model-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.model-card {
  background: var(--white);
  border-top: 3px solid var(--mangrove);
  padding: 2.5rem;
}
.model-card.accent-card { border-top-color: var(--accent); }
.model-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 0.75rem;
}
.model-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  color: var(--mangrove);
  margin-bottom: 1rem;
}
.model-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-mid); }
.model-note { font-size: 0.88rem; color: var(--text-soft); margin-top: 2rem; line-height: 1.7; }

/* Team */
.team { background: var(--mangrove); }
.team .section-title { color: var(--sand); }
.team .section-label { color: var(--accent); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  border: 1px solid rgba(168, 197, 181, 0.2);
  padding: 2rem;
}
.team-name {
  font-family: 'Lora', serif;
  font-size: 1.15rem;
  color: var(--sand);
  margin-bottom: 0.3rem;
}
.team-role {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.team-bio { font-size: 0.87rem; color: var(--estuary); line-height: 1.65; }

/* Partners */
.partners { background: var(--mist); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.partner-card {
  background: var(--white);
  padding: 1.8rem 2rem;
  border-left: 3px solid var(--estuary);
}
.partner-card h4 { font-weight: 700; color: var(--mangrove); margin-bottom: 0.4rem; }
.partner-card p { font-size: 0.85rem; color: #666; line-height: 1.5; }
.partner-region {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  color: var(--seafoam);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}


/* ============================================================
   PAGE: OUR WORK
   ============================================================ */

/* Workstreams */
.workstreams { background: var(--mist); }
.ws-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.ws-card {
  background: var(--white);
  padding: 2.5rem;
  border-top: 4px solid var(--seafoam);
}
.ws-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.ws-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  color: var(--mangrove);
  margin-bottom: 1rem;
}
.ws-card p { font-size: 0.95rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 1.2rem; }
.ws-deliverable {
  font-size: 0.8rem;
  font-family: 'DM Mono', monospace;
  color: var(--tide);
  border-left: 2px solid var(--estuary);
  padding-left: 0.75rem;
  line-height: 1.65;
}

/* Flagship Detail (Our Work page) */
.flagship-section { background: var(--sand); }
.flagship-lead {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.flagship-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.data-block {
  background: var(--mangrove);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.data-block::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 11px; height: 11px;
  border-top: 1.5px solid rgba(200, 169, 110, 0.42);
  border-left: 1.5px solid rgba(200, 169, 110, 0.42);
  pointer-events: none;
}
.data-block::after {
  content: '';
  position: absolute;
  bottom: 8px; right: 8px;
  width: 11px; height: 11px;
  border-bottom: 1.5px solid rgba(200, 169, 110, 0.42);
  border-right: 1.5px solid rgba(200, 169, 110, 0.42);
  pointer-events: none;
}
.data-block h4 {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.data-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(168, 197, 181, 0.15);
  gap: 1rem;
}
.data-row:last-child { border-bottom: none; }
.data-label { font-size: 0.8rem; color: var(--estuary); flex-shrink: 0; }
.data-val {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--sand);
  text-align: right;
}

/* Timeline */
.timeline { background: var(--mangrove); }
.timeline .section-title { color: var(--sand); }
.timeline .section-label { color: var(--accent); }
.tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 3rem;
  position: relative;
}
.tl-grid::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 6%;
  right: 6%;
  height: 1px;
  background: rgba(168, 197, 181, 0.2);
}
.tl-item { padding: 1.5rem 1rem; }
.tl-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 1rem;
}
.tl-period {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.tl-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--sand);
  margin-bottom: 0.4rem;
}
.tl-body { font-size: 0.82rem; color: var(--estuary); line-height: 1.55; }

/* Kunduchi */
.kunduchi { background: var(--mist); }
.kunduchi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: center;
}
.kunduchi-text p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.badge-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.badge {
  background: var(--mangrove);
  color: var(--sand);
  font-size: 0.72rem;
  font-family: 'DM Mono', monospace;
  padding: 0.35rem 0.85rem;
  letter-spacing: 0.06em;
}
.kunduchi-card {
  background: var(--white);
  border: 1px solid var(--estuary);
  padding: 2rem;
}
.kunduchi-card h4 {
  font-family: 'Lora', serif;
  font-size: 1.2rem;
  color: var(--mangrove);
  margin-bottom: 1rem;
}
.kunduchi-card p { font-size: 0.88rem; color: #555; line-height: 1.65; }
.btn-card-mt { display: inline-block; margin-top: 1.25rem; }

/* Regulatory */
.regulation { background: var(--sand); }
.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.reg-card {
  border: 1px solid var(--estuary);
  padding: 2rem;
  background: var(--white);
}
.reg-card h4 {
  font-weight: 700;
  color: var(--mangrove);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.reg-card p { font-size: 0.85rem; color: #555; line-height: 1.6; }
.reg-ref {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--seafoam);
  margin-top: 0.75rem;
}


/* ============================================================
   PAGE: IMPACT
   ============================================================ */

/* Impact hero — teal variant */
.page-hero-teal { background-color: var(--tide); }
.page-hero-teal::before {
  background: linear-gradient(
    160deg,
    rgba(19, 58, 42, 0.97) 0%,
    rgba(19, 58, 42, 0.84) 50%,
    rgba(19, 58, 42, 0.65) 100%
  );
}

/* Headline numbers */
.numbers {
  background: var(--mangrove);
  padding: 4rem;
}
.num-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.num-cell {
  background: rgba(255, 255, 255, 0.04);
  padding: 3rem 2.5rem;
  text-align: center;
}
.num-big {
  font-family: 'Lora', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
}
.num-unit {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}
.num-desc { font-size: 0.83rem; color: var(--estuary); margin-top: 0.4rem; line-height: 1.5; }
.num-qualifier {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(200, 169, 110, 0.7);
  margin-top: 0.4rem;
}

/* Bento num-grid — featured first stat */
.num-cell:nth-child(1) {
  grid-column: span 3;
  grid-row: span 2;
  text-align: left;
  padding: 3.5rem 3rem;
  border-right: 1px solid rgba(200, 169, 110, 0.14);
}
.num-cell:nth-child(1) .num-big {
  font-size: 6rem;
  background: linear-gradient(135deg, var(--sand) 20%, var(--seafoam) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.num-cell:nth-child(1) .num-unit { color: var(--accent); font-size: 0.78rem; }
.num-cell:nth-child(2),
.num-cell:nth-child(3) { grid-column: span 3; }
.num-cell:nth-child(4),
.num-cell:nth-child(5),
.num-cell:nth-child(6) { grid-column: span 2; }

/* Community */
.community { background: var(--mist); }
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}
.community-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.community-pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar {
  background: var(--white);
  border-left: 4px solid var(--seafoam);
  padding: 1.5rem 2rem;
}
.pillar.accent { border-left-color: var(--accent); }
.pillar-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  margin-bottom: 0.75rem;
  color: var(--seafoam);
}
.pillar.accent .pillar-icon {
  color: var(--accent);
  background: rgba(200, 169, 110, 0.1);
}
.pillar-icon svg {
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar h4 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--mangrove);
  margin-bottom: 0.5rem;
}
.pillar p { font-size: 0.87rem; color: #555; line-height: 1.6; }

/* Indicators Table */
.indicators { background: var(--sand); }
.ind-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3rem;
  font-size: 0.88rem;
}
.ind-table th {
  background: var(--mangrove);
  color: var(--sand);
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
.ind-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #E0D9CA;
  vertical-align: top;
  line-height: 1.5;
}
.ind-table tr:nth-child(even) td { background: var(--mist); }
.ind-code {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  color: var(--seafoam);
}
.ind-target { font-weight: 600; color: var(--mangrove); }

/* Ecosystem */
.ecosystem { background: var(--tide); }
.ecosystem .section-title { color: var(--sand); }
.ecosystem .section-label { color: var(--accent); }
/* Horizontal eco cards with shadow */
.eco-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-top: 3rem;
}
.eco-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(245, 239, 224, 0.1);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.16);
  position: relative;
}
.eco-row::before {
  content: '';
  position: absolute;
  top: 7px; left: 7px;
  width: 11px; height: 11px;
  border-top: 1.5px solid rgba(200, 169, 110, 0.45);
  border-left: 1.5px solid rgba(200, 169, 110, 0.45);
  pointer-events: none;
}
.eco-row::after {
  content: '';
  position: absolute;
  bottom: 7px; right: 7px;
  width: 11px; height: 11px;
  border-bottom: 1.5px solid rgba(200, 169, 110, 0.45);
  border-right: 1.5px solid rgba(200, 169, 110, 0.45);
  pointer-events: none;
}
.eco-row-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 5px;
  background: rgba(245, 239, 224, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.eco-row-icon svg {
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.eco-row h4 {
  font-family: 'Figtree', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sand);
  margin: 0 0 0.4rem;
  letter-spacing: 0.01em;
}
.eco-row p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(245, 239, 224, 0.82);
  margin: 0;
}

/* SDG */
.sdg { background: var(--sand); }
.sdg-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}
.sdg-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
}
.sdg-icon {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.sdg-icon:hover { transform: scale(1.08); opacity: 0.88; }
.sdg-caption {
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
  line-height: 1.25;
}
@media (max-width: 600px) { .sdg-icon { width: 56px; height: 56px; } }
.sdg-note {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.75;
  margin-top: 2rem;
  max-width: 800px;
}


/* ============================================================
   PAGE: CONTACT
   ============================================================ */

.contact-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  padding: 5rem 4rem;
  align-items: start;
}
.audience-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 1.5rem;
}
.audience-cards { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.aud-card {
  background: var(--white);
  border-left: 4px solid var(--mangrove);
  padding: 2rem;
}
.aud-card.inv  { border-left-color: var(--accent); }
.aud-card.buyer { border-left-color: var(--seafoam); }
.aud-card.partner { border-left-color: var(--tide); }
.aud-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--mangrove);
  margin-bottom: 0.5rem;
}
.aud-card p { font-size: 0.88rem; color: #555; line-height: 1.65; }

.contact-card {
  background: var(--mangrove);
  padding: 2.5rem;
  position: sticky;
  top: 100px;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 11px; height: 11px;
  border-top: 1.5px solid rgba(200, 169, 110, 0.42);
  border-left: 1.5px solid rgba(200, 169, 110, 0.42);
  pointer-events: none;
}
.contact-card::after {
  content: '';
  position: absolute;
  bottom: 8px; right: 8px;
  width: 11px; height: 11px;
  border-bottom: 1.5px solid rgba(200, 169, 110, 0.42);
  border-right: 1.5px solid rgba(200, 169, 110, 0.42);
  pointer-events: none;
}
.contact-card h3 {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--sand);
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(168, 197, 181, 0.15);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  flex-shrink: 0;
  margin-top: 3px;
  width: 16px;
  display: flex;
  align-items: flex-start;
  color: var(--estuary);
}
.contact-icon svg { display: block; stroke: currentColor; }
.contact-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.contact-val { font-size: 0.93rem; color: var(--sand); line-height: 1.5; }
.contact-val a { color: var(--estuary); text-decoration: none; }
.contact-val a:hover { color: var(--sand); }

.investors {
  background: var(--accent);
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}
.investors h2 {
  font-family: 'Lora', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--mangrove);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.investors p { font-size: 0.95rem; color: #3a2a12; line-height: 1.75; }
.inv-facts { display: flex; flex-direction: column; gap: 1rem; }
.inv-fact {
  background: rgba(27, 58, 45, 0.12);
  padding: 1.2rem 1.5rem;
}
.inv-fact-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mangrove);
  opacity: 0.7;
  margin-bottom: 0.3rem;
}
.inv-fact-val { font-size: 0.93rem; font-weight: 600; color: var(--mangrove); }
.fls-disclaimer {
  font-size: 0.78rem;
  color: rgba(58, 42, 18, 0.65);
  margin-top: 1.5rem;
  line-height: 1.55;
  font-style: italic;
}

.knowledge { background: var(--mist); padding: 5rem 4rem; }
.know-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.know-card {
  background: var(--white);
  padding: 2rem;
  border-top: 3px solid var(--estuary);
}
.know-tag {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--seafoam);
  margin-bottom: 0.75rem;
}
.know-card h4 {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: var(--mangrove);
  margin-bottom: 0.75rem;
}
.know-card p { font-size: 0.85rem; color: #555; line-height: 1.6; }
.know-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--tide);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.know-link:hover { color: var(--mangrove); }


/* ============================================================
   PAGE: GLOSSARY
   ============================================================ */

.glossary-intro {
  background: var(--mist);
  padding: 5rem 4rem;
}
.glossary-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 700px;
  margin-top: 1.5rem;
}
.glossary-main { background: var(--sand); padding: 4rem; }
.glossary-list { max-width: 860px; }
.glossary-item {
  border-bottom: 1px solid #D8D0C0;
  padding: 2.5rem 0;
}
.glossary-item:first-child { padding-top: 0; }
.glossary-item:last-child { border-bottom: none; }
.glossary-term {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  color: var(--mangrove);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.glossary-abbr {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--seafoam);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.glossary-def {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-mid);
}
.glossary-def-list {
  margin-top: 0.75rem;
  padding-left: 1.5rem;
  line-height: 2;
  font-size: 0.95rem;
  color: #444;
}
.glossary-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-style: italic;
  margin-top: 0.5rem;
  line-height: 1.6;
}
.glossary-cta {
  background: var(--mangrove);
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.glossary-cta h3 {
  font-family: 'Lora', serif;
  font-size: 1.6rem;
  color: var(--sand);
  max-width: 480px;
  line-height: 1.3;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  /* Nav */
  nav { padding: 1rem 1.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    flex-direction: column;
    background: var(--mangrove);
    width: 280px;
    padding: 5rem 2rem 2rem;
    gap: 0;
    list-style: none;
    transition: right 0.3s ease;
    z-index: 99;
    border-left: 1px solid rgba(168, 197, 181, 0.15);
  }
  .nav-links.open { right: 0; }
  .nav-links li { border-bottom: 1px solid rgba(168, 197, 181, 0.12); }
  .nav-links a {
    display: block;
    padding: 1rem 0;
    font-size: 0.95rem;
  }
  .nav-links a.active { border-bottom: none; padding-bottom: 1rem; }

  /* Hero */
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; }
  .hero-visual { display: none; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  /* Flagship block */
  .flagship-block { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2.5rem; }

  /* Impact strip */
  .impact-strip { grid-template-columns: 1fr 1fr; padding: 3rem 1.5rem; }

  /* Cert */
  .cert-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-banner { flex-direction: column; padding: 3rem 1.5rem; }

  /* Sections */
  section { padding: 3.5rem 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .page-hero-2col { grid-template-columns: 1fr; }

  /* What */
  .what-grid { grid-template-columns: 1fr; }

  /* About */
  .origin-grid, .model-cards, .team-grid, .partners-grid { grid-template-columns: 1fr; }

  /* Our Work */
  .ws-grid, .flagship-lead, .kunduchi-inner, .reg-grid { grid-template-columns: 1fr; }
  .tl-grid { grid-template-columns: 1fr 1fr; }
  .tl-grid::before { display: none; }

  /* Impact */
  .num-grid { grid-template-columns: 1fr 1fr; }
  .num-cell:nth-child(1) { grid-column: span 2; grid-row: span 1; text-align: center; padding: 2.5rem 1.5rem; border-right: none; }
  .num-cell:nth-child(1) .num-big { font-size: 4rem; }
  .num-cell:nth-child(2), .num-cell:nth-child(3) { grid-column: span 1; }
  .num-cell:nth-child(4), .num-cell:nth-child(5), .num-cell:nth-child(6) { grid-column: span 1; }
  .numbers { padding: 2.5rem 1.5rem; }
  .community-grid, .eco-rows { grid-template-columns: 1fr; }
  .ind-table th, .ind-table td { padding: 0.75rem 1rem; }

  /* Contact */
  .contact-main { grid-template-columns: 1fr; padding: 3rem 1.5rem; gap: 2.5rem; }
  .contact-card { position: static; }
  .investors { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .knowledge { padding: 3.5rem 1.5rem; }
  .know-grid { grid-template-columns: 1fr; }

  /* Footer */
  footer { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; gap: 0.5rem; align-items: flex-start; }
  .footer-disclaimer { padding: 1rem 1.5rem; }

  /* Cookie */
  .cookie-notice { flex-direction: column; padding: 1rem 1.5rem; align-items: flex-start; }

  /* Scroll top */
  .scroll-top { bottom: 1rem; right: 1rem; }

  /* Glossary */
  .glossary-intro, .glossary-main { padding: 3rem 1.5rem; }
  .glossary-cta { flex-direction: column; padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .impact-strip { grid-template-columns: 1fr; }
  .num-grid { grid-template-columns: 1fr; }
  .num-cell:nth-child(1) { grid-column: span 1; }
  .stat-row { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .tl-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   IMAGERY
   ============================================================ */

/* Full-bleed landscape band — sits directly under the hero on each page */
.landscape-band {
  height: 440px;
  overflow: hidden;
  position: relative;
  display: block;
  line-height: 0;
}
.landscape-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
}
.landscape-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 58, 45, 1) 0%,
    rgba(27, 58, 45, 0.82) 14%,
    rgba(27, 58, 45, 0.18) 36%,
    transparent 52%,
    rgba(245, 239, 224, 0.55) 76%,
    rgba(245, 239, 224, 1) 100%
  );
  pointer-events: none;
  z-index: 1;
}
.landscape-caption {
  position: absolute;
  bottom: 1.4rem;
  right: 1.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.1em;
  z-index: 2;
}

/* Origin section image (right column) */
.origin-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
}
.origin-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Full-width standalone pull-quote */
.origin-pull-wide {
  background: var(--sand);
  padding: 3rem 4rem;
  border-left: 4px solid var(--accent);
  font-family: 'Lora', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--mangrove);
  max-width: 800px;
  margin: 0 auto;
}

/* Inline community image (inside section) */
.section-img {
  width: 100%;
  height: 340px;
  overflow: hidden;
  margin-top: 2.5rem;
}
.section-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
}

/* Per-page hero background images */
.hero-bg-home {
  background-image: url('https://images.unsplash.com/photo-1520333764090-778d6dc95ec3?auto=format&fit=crop&w=1920&q=80');
}
.hero-bg-about {
  background-image: url('https://images.unsplash.com/photo-1612103183244-7598b792bb05?auto=format&fit=crop&w=1920&q=80');
}
.hero-bg-work {
  background-image: url('https://images.unsplash.com/photo-1672153920077-8bea4b38b077?auto=format&fit=crop&w=1920&q=80');
}
.hero-bg-impact {
  background-image: url('https://images.unsplash.com/photo-1591290689629-8ad3a992b3b9?auto=format&fit=crop&w=1920&q=80');
}

.pull-section {
  padding: 3.5rem clamp(1.5rem, 6vw, 5rem);
  background: var(--sand);
}

@media (max-width: 900px) {
  .landscape-band { height: 300px; }
  .origin-img { min-height: 240px; }
  .section-img { height: 220px; }
  .origin-pull-wide { padding: 2rem 1.5rem; }
  .pull-section { padding: 2.5rem 1.5rem; }
}


/* ============================================================
   21st.dev — MODERN DESIGN ENHANCEMENTS
   ============================================================ */

/* --- Nav scroll state --- */
nav { transition: background 0.35s ease, box-shadow 0.35s ease; }
nav.scrolled {
  background: rgba(10, 24, 17, 0.99);
  box-shadow: 0 1px 0 rgba(168, 197, 181, 0.08), 0 4px 24px rgba(0, 0, 0, 0.2);
}

/* --- Hero animated background orbs --- */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}
.hero-orb-1 {
  width: 620px;
  height: 620px;
  top: -160px;
  right: -100px;
  background: radial-gradient(circle, rgba(78, 158, 122, 0.15) 0%, transparent 65%);
  filter: blur(64px);
  animation: orb-drift 22s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  bottom: -40px;
  left: 4%;
  background: radial-gradient(circle, rgba(200, 169, 110, 0.11) 0%, transparent 70%);
  filter: blur(72px);
  animation: orb-drift 30s ease-in-out infinite reverse;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(28px, -20px) scale(1.04); }
  66%       { transform: translate(-18px, 14px) scale(0.97); }
}

/* --- Hero entry animations --- */
.hero-animate {
  opacity: 0;
  transform: translateY(22px);
  will-change: opacity, transform;
  animation: hero-fade-up 0.75s cubic-bezier(0.25, 0.4, 0.25, 1) forwards;
}
.hero-animate-1 { animation-delay: 0.08s; }
.hero-animate-2 { animation-delay: 0.22s; }
.hero-animate-3 { animation-delay: 0.38s; }
.hero-animate-4 { animation-delay: 0.54s; }
.hero-animate-5 { animation-delay: 0.68s; }
@keyframes hero-fade-up {
  to { opacity: 1; transform: none; }
}

/* --- Inner page hero entrance --- */
.page-eyebrow {
  animation: hero-fade-up 0.65s cubic-bezier(0.25, 0.4, 0.25, 1) 0.05s both;
}
.page-title {
  animation: hero-fade-up 0.75s cubic-bezier(0.25, 0.4, 0.25, 1) 0.18s both;
}
.page-sub {
  animation: hero-fade-up 0.75s cubic-bezier(0.25, 0.4, 0.25, 1) 0.32s both;
}

/* --- Status dot live pulse --- */
.status-dot { position: relative; }
.status-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  will-change: transform, opacity;
  animation: dot-pulse 2.8s ease-in-out infinite;
}
@keyframes dot-pulse {
  0%   { transform: scale(0.8); opacity: 0.5; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* --- Section label accent rule --- */
.section-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.55rem;
  margin-bottom: 1px;
  opacity: 0.55;
}

/* --- Card hover lifts (light bg cards) --- */
.what-card,
.cert-card,
.model-card,
.partner-card,
.know-card,
.reg-card,
.kunduchi-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.what-card:hover,
.cert-card:hover,
.model-card:hover,
.partner-card:hover,
.know-card:hover,
.reg-card:hover,
.kunduchi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(27, 58, 45, 0.13);
}

/* Workstream cards — also shift border accent on hover */
.ws-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-top-color 0.28s ease;
}
.ws-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 34px rgba(27, 58, 45, 0.12);
  border-top-color: var(--tide);
}

/* Glass cards on dark backgrounds */
.eco-card {
  transition: background 0.28s ease, border-color 0.28s ease, transform 0.28s ease;
}
.eco-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(168, 197, 181, 0.45);
  transform: translateY(-4px);
}

/* Stat cards (hero) */
.stat-card {
  transition: background 0.28s ease, border-color 0.28s ease;
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(168, 197, 181, 0.38);
}

/* Team cards */
.team-card {
  transition: border-color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}
.team-card:hover {
  border-color: rgba(168, 197, 181, 0.45);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

/* Audience cards (contact page) — slide right */
.aud-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.aud-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 22px rgba(27, 58, 45, 0.08);
}

/* Pillar hover */
.pillar { transition: background 0.2s ease, border-left-color 0.2s ease; }
.pillar:hover { background: var(--mist); }

/* Impact strip items */
.impact-item { transition: transform 0.25s ease; }
.impact-item:hover { transform: translateY(-3px); }

/* SDG tags */
.sdg-tag { transition: background 0.2s ease, transform 0.2s ease; cursor: default; }
.sdg-tag:hover { background: var(--tide); transform: translateY(-2px); }

/* --- Button shimmer sweep --- */
.btn { position: relative; overflow: hidden; }
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn:hover::after { transform: translateX(120%); }

/* --- Timeline dot glow --- */
.tl-dot {
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.18);
  transition: box-shadow 0.3s ease;
}
.tl-item:hover .tl-dot {
  box-shadow: 0 0 0 5px rgba(200, 169, 110, 0.22), 0 0 18px rgba(200, 169, 110, 0.28);
}

/* --- Glossary item hover: left inset bar --- */
.glossary-item { transition: box-shadow 0.2s ease; }
.glossary-item:hover { box-shadow: -3px 0 0 var(--accent); }

/* --- Indicators table row hover --- */
.ind-table tbody tr { transition: background 0.15s; }
.ind-table tbody tr:hover td { background: rgba(78, 158, 122, 0.06) !important; }

/* --- Tabular numerics for stable count-up width --- */
.num-big, .impact-num, .stat-num { font-variant-numeric: tabular-nums; }

/* --- Reduced motion: disable all decorative motion --- */
@media (prefers-reduced-motion: reduce) {
  .hero-orb-1, .hero-orb-2 { animation: none; }
  .hero-animate { animation: none; opacity: 1; transform: none; }
  .page-eyebrow, .page-title, .page-sub { animation: none; }
  .status-dot::after { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
