/* ===================================================
   VITAGRI — Design System  ·  Updated April 2026
   =================================================== */

/* 01 · Tokens
   ================================================= */
:root {
  /* Brand colours */
  --forest:       #1c1510;   /* soil — hero, nav, dark section backgrounds */
  --forest-mid:   #1f7268;   /* teal-dark — stat card backgrounds */
  --forest-light: #251e18;   /* lighter soil */
  --cream:        #faf7f2;
  --cream-dark:   #f5f0e8;
  --gold:         #e9a84c;   /* amber accent */
  --gold-light:   #f0bc6a;
  --gold-muted:   rgba(233,168,76,0.15);
  --teal:         #2a9d8f;   /* primary teal */
  --teal-light:   #35b5a8;
  --teal-muted:   rgba(42,157,143,0.15);
  --berry:        #8B2783;   /* CTA magenta */
  --lime:         #9FB04F;   /* secondary accent / logo green */
  --navy:         #1c1510;   /* soil — footer, partners, other dark sections */
  --grey:         #6B7A90;
  --grey-light:   #a0aec0;
  --white:        #ffffff;

  /* Text */
  --text:         #1a1510;
  --text-mid:     #4a3f35;
  --text-muted:   #7a6e64;

  /* Typography */
  --font-serif: 'Lato', sans-serif;
  --font-sans:  'Lato', sans-serif;

  /* Layout */
  --max-w:        1160px;
  --section-pad:  96px;
  --radius:       12px;
  --radius-sm:    8px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.18);
}

/* 02 · Reset & Base
   ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

ul, ol { list-style: none; }

/* Anchor scroll offset for fixed nav */
section[id], div[id] { scroll-margin-top: 80px; }

/* Accessibility */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* 03 · Typography
   ================================================= */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--forest);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { font-size: 1rem; line-height: 1.7; color: var(--text-mid); }
p + p { margin-top: 12px; }

em { font-style: italic; color: var(--teal); }
strong { font-weight: 700; color: var(--text); }

.section__label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--forest);
}

.section__title em { color: var(--teal); }

.section__lead {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-top: 10px;
  line-height: 1.65;
}

/* 04 · Buttons
   ================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn--primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  box-shadow: 0 4px 16px rgba(42,157,143,0.35);
}

.btn--gold {
  background: var(--berry);
  color: var(--white);
  border-color: var(--berry);
  font-weight: 700;
}
.btn--gold:hover {
  background: #7a1f73;
  border-color: #7a1f73;
  box-shadow: 0 4px 16px rgba(139,39,131,0.4);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn--outline:hover { background: var(--teal-muted); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--ghost:hover { background: var(--gold-muted); }

/* 05 · Navigation
   ================================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, backdrop-filter 0.3s, box-shadow 0.3s;
  background: transparent;
}

.site-nav.visible {
  background: rgba(28,21,16,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Inner pages — always solid */
.site-nav--solid {
  background: rgba(28,21,16,0.97) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.site-nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__brand {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.site-nav__brand img {
  height: 38px;
  width: auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.site-nav__links > li > a,
.site-nav__dropdown-toggle {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.site-nav__links > li > a:hover,
.site-nav__dropdown-toggle:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  text-decoration: none;
}

/* Dropdown */
.site-nav__dropdown { position: relative; }

.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 6px;
  min-width: 230px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  list-style: none;
}

.site-nav__dropdown:hover .site-nav__dropdown-menu,
.site-nav__dropdown.open .site-nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav__dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  color: rgba(255,255,255,0.75);
  font-size: 0.87rem;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.site-nav__dropdown-menu li a:hover {
  background: rgba(42,157,143,0.12);
  color: var(--teal-light);
  text-decoration: none;
}

.site-nav__cta {
  margin-left: auto;
  background: var(--berry);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.site-nav__cta:hover {
  background: #7a1f73;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(139,39,131,0.4);
  transform: translateY(-1px);
}

/* Hamburger */
.site-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--white);
  margin-left: auto;
}

/* 06 · Footer
   ================================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 64px 24px 32px;
}

.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 220px 1fr 200px;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.site-footer__brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.site-footer__col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.site-footer__col a {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  padding: 4px 0;
  transition: color 0.15s;
}
.site-footer__col a:hover { color: var(--white); text-decoration: none; }

.site-footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 0.86rem;
  padding: 6px 0;
  transition: color 0.15s;
}
.site-footer__social-link:hover { color: var(--gold-light); text-decoration: none; }

.site-footer__bottom {
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.3);
}
.site-footer__bottom a { color: rgba(255,255,255,0.4); }
.site-footer__bottom a:hover { color: rgba(255,255,255,0.75); text-decoration: none; }

/* 07 · Reveal Animation
   ================================================= */
html.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.reveal-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 08 · Cookie Consent
   ================================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 16px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  z-index: 9000;
  max-width: 700px;
  width: calc(100% - 40px);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.87rem;
}
.cookie-banner.hidden { display: none; }
.cookie-banner__text { flex: 1; line-height: 1.5; min-width: 200px; }
.cookie-banner__text a { color: var(--gold-light); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__accept {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-banner__accept:hover { background: var(--teal-light); }
.cookie-banner__decline {
  background: transparent;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 9px 18px;
  border-radius: 6px;
  font-size: 0.84rem;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.cookie-banner__decline:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }

/* 09 · Back to Top
   ================================================= */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal); }

/* 10 · Page Hero (inner pages)
   ================================================= */
.page-hero {
  background: var(--forest);
  padding: 120px 24px 72px;
  text-align: center;
}

.page-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.5); }
.page-hero__breadcrumb a:hover { color: var(--gold-light); text-decoration: none; }

.page-hero__label {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
}
.page-hero__title em { color: var(--gold-light); font-style: italic; }

.page-hero__sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.65);
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.page-hero__byline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: -16px auto 0;
  max-width: 620px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.page-hero__byline a { color: var(--gold); text-decoration: none; }
.page-hero__byline a:hover { text-decoration: underline; }
.page-hero__byline-sep { opacity: 0.35; }

/* 11 · Stats Band
   ================================================= */
.stats-band {
  background: #0c1917;
  padding: 64px 24px 72px;
}

.stats-band__intro {
  max-width: var(--max-w);
  margin: 0 auto 48px;
  text-align: center;
}

.stats-band__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}

.stats-band__headline {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  margin: 0;
}

.stats-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}

.stats-band__inner--ten {
  grid-template-columns: repeat(5, 1fr);
}

.stats-band__inner--eighteen {
  grid-template-columns: repeat(6, 1fr);
}
.stats-band__inner--eighteen .stats-band__item:nth-child(6n) { border-right: none; }
.stats-band__inner--eighteen .stats-band__item:nth-child(n+13) { border-bottom: none; }

.stats-band__item {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
/* Remove right border on last in each row (every 5th) */
.stats-band__inner--ten .stats-band__item:nth-child(5n) { border-right: none; }
/* Remove bottom border on last row (items 6-10) */
.stats-band__inner--ten .stats-band__item:nth-child(n+6) { border-bottom: none; }

/* Category label */
.stats-band__cat {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.9;
}

/* Category accent borders + backgrounds */
.stats-band__item--cost     { background: #261608; border-top: 3px solid var(--gold); }
.stats-band__item--cost .stats-band__cat { color: var(--gold-light); }
.stats-band__item--evidence { background: #0d3b35; border-top: 3px solid var(--teal-light); }
.stats-band__item--evidence .stats-band__cat { color: var(--teal-light); }
.stats-band__item--zero     { background: #1c1428; border-top: 3px solid #a99fd4; }
.stats-band__item--zero .stats-band__cat { color: #c4bae8; }
.stats-band__item--research { background: #132212; border-top: 3px solid #7cc840; }
.stats-band__item--research .stats-band__cat { color: #9fd455; }

.stats-band__num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  flex-wrap: wrap;
}

.stats-band__item--zero .stats-band__num {
  color: #c4bae8;
}

.stats-band__suffix {
  font-size: 1.5rem;
  font-weight: 700;
}

.stats-band__prefix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stats-band__label {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
  margin-bottom: 6px;
}

.stats-band__source {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.4;
  display: block;
}

/* Full stats grid */
.stats-grid {
  background: var(--navy);
  padding: 80px 24px;
}

.stats-grid__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat-cell {
  padding: 40px 28px;
  text-align: center;
  background: var(--navy);
  transition: background 0.2s;
}
.stat-cell:hover { background: rgba(233,168,76,0.05); }

.stat-cell__num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-cell__label {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto 6px;
}

.stat-cell__source {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.32);
}

/* 12 · Section helpers
   ================================================= */
.section {
  padding: var(--section-pad) 24px;
}

.section--cream  { background: var(--cream); }
.section--white  { background: var(--white); }
.section--forest { background: var(--forest); }
.section--navy   { background: var(--navy); }

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__header { margin-bottom: 52px; }
.section__header--center { text-align: center; }
.section__header--center .section__lead { margin-left: auto; margin-right: auto; }

/* 13 · Cards
   ================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

.topic-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.topic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); text-decoration: none; }

.topic-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.topic-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.topic-card__tag {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}

.topic-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.3;
}

.topic-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
}

.topic-card__cta {
  margin-top: 18px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Insight cards */
.insight-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  color: inherit;
}
.insight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }

.insight-card__img { width: 100%; height: 180px; object-fit: cover; }

.insight-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }

.insight-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.insight-card__tag {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-muted);
  padding: 3px 8px;
  border-radius: 4px;
}

.insight-card__date { font-size: 0.77rem; color: var(--text-muted); }

.insight-card__title {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1.3;
  margin-bottom: 8px;
  flex: 1;
}

.insight-card__excerpt { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; }

/* 14 · Newsletter
   ================================================= */
.newsletter {
  background: var(--forest);
  padding: 80px 24px;
}

.newsletter__inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.newsletter__label {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.newsletter__title {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.newsletter__sub {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.newsletter__note {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
}

/* 15 · Partners
   ================================================= */
.partners {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
}

.partners__inner { max-width: var(--max-w); margin: 0 auto; }

.partners__label {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 36px;
  display: block;
}

.partners__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.partner-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 36px;
  min-width: 190px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.partner-card:hover { border-color: rgba(233,168,76,0.35); background: rgba(233,168,76,0.07); }

.partner-card__name {
  font-family: var(--font-serif);
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  margin-bottom: 5px;
  line-height: 1.3;
}

.partner-card__role { font-size: 0.76rem; color: rgba(255,255,255,0.38); }

/* 16 · Homepage Hero (Three.js)
   ================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  background: var(--forest);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
}

.hero__fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 25% 65%, var(--forest-light) 0%, var(--forest) 45%, var(--navy) 100%);
  display: none;
}

/* Dark gradient overlay: sits above canvas, below text — ensures readability */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(28,21,16,0.85) 0%, rgba(28,21,16,0.70) 50%, rgba(28,21,16,0.90) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  width: 100%;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__logo { margin-bottom: 24px; }
.hero__logo img { height: 48px; width: auto; margin: 0 auto; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(233,168,76,0.12);
  border: 1px solid rgba(233,168,76,0.25);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.hero__eyebrow {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.85), 0 0 50px rgba(0,0,0,0.5);
}
.hero__title em { color: var(--gold-light); font-style: italic; }

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 12px;
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.9);
}

.hero__tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: scrollBounce 2.5s ease infinite;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.35; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 0.65; }
}

/* 17 · Homepage Sections
   ================================================= */
.home-intro {
  padding: 96px 24px;
  background: var(--cream);
}

.home-intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.home-intro__body {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.home-intro__creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.home-intro__cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-mid);
  font-weight: 500;
}
.home-intro__cred svg { color: var(--teal); flex-shrink: 0; }

.home-intro__image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Research section */
.home-research {
  padding: 96px 24px;
  background: var(--white);
}

.home-research__inner { max-width: var(--max-w); margin: 0 auto; }

.home-research__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Framework teaser */
.home-framework {
  background: var(--forest);
  padding: 96px 24px;
}

.home-framework__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.home-framework__text .section__label { color: var(--gold); }
.home-framework__text .section__title { color: var(--white); margin-bottom: 16px; }
.home-framework__text .section__lead { color: rgba(255,255,255,0.62); margin-bottom: 32px; }

.framework-steps-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.framework-step-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s;
}
.framework-step-preview:hover { background: rgba(233,168,76,0.1); border-color: rgba(233,168,76,0.2); }

.framework-step-preview__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.framework-step-preview__label {
  font-size: 0.91rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* Insights section */
.home-insights {
  padding: 96px 24px;
  background: var(--cream);
}

.home-insights__inner { max-width: var(--max-w); margin: 0 auto; }

.home-insights__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

/* Quote band */
.quote-band {
  background: var(--navy);
  padding: 72px 24px;
  text-align: center;
}

.quote-band__inner { max-width: 800px; margin: 0 auto; }

.quote-band__text {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 16px;
}
.quote-band__text strong { color: var(--gold-light); font-style: normal; }

.quote-band__attr { font-size: 0.83rem; color: rgba(255,255,255,0.38); }

/* CTA band */
.cta-band {
  padding: 88px 24px;
  background: var(--teal);
  text-align: center;
}
.cta-band--forest { background: var(--forest); }

.cta-band__inner { max-width: 640px; margin: 0 auto; }

.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
}

.cta-band__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 18 · Research Hub
   ================================================= */
.research-topics {
  padding: 80px 24px;
  background: var(--cream);
}

.research-topics__inner { max-width: var(--max-w); margin: 0 auto; }

/* 19 · Report Page
   ================================================= */
.report-hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--navy) 100%);
  padding: 120px 24px 80px;
}

.report-hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.report-cover {
  position: relative;
  flex-shrink: 0;
}

.report-cover img {
  width: 100%;
  border-radius: 6px;
  box-shadow: -8px 8px 32px rgba(0,0,0,0.5), 8px -4px 0 rgba(233,168,76,0.25);
}

.report-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.report-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 0 28px;
}

.report-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}
.report-meta__item svg { color: var(--gold); }

.report-body-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 580px;
}

.report-toc {
  padding: 72px 24px;
  background: var(--white);
}

.report-toc__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.toc-list { list-style: none; }

.toc-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-dark);
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 0.93rem;
  color: var(--text-mid);
}

.toc-list li strong {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  min-width: 56px;
}

.download-gate {
  background: var(--forest);
  padding: 80px 24px;
  text-align: center;
}

.download-gate__inner {
  max-width: 560px;
  margin: 0 auto;
}

.download-gate__title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.download-gate__sub { color: rgba(255,255,255,0.6); margin-bottom: 32px; }

.download-gate__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Pulse CTA */
.pulse-cta {
  background: linear-gradient(135deg, var(--navy), var(--forest));
  padding: 72px 24px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.pulse-cta__inner { max-width: 580px; margin: 0 auto; }
.pulse-cta__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-light);
  background: var(--teal-muted);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.pulse-cta__title { font-family: var(--font-serif); font-size: 2rem; color: var(--white); margin-bottom: 12px; }
.pulse-cta__body { font-size: 0.95rem; color: rgba(255,255,255,0.62); margin-bottom: 28px; }

/* 20 · Framework Page
   ================================================= */
.framework-intro {
  padding: 80px 24px;
  background: var(--cream);
}

.framework-intro__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.framework-steps {
  padding: 80px 24px;
  background: var(--white);
}

.framework-steps__inner {
  max-width: 860px;
  margin: 0 auto;
}

.framework-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.framework-step:last-child { border-bottom: none; }

.framework-step__num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
}

.framework-step__num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 800;
  font-family: var(--font-serif);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(233,168,76,0.35);
}

.framework-step__connector {
  width: 2px;
  flex: 1;
  background: var(--cream-dark);
  min-height: 24px;
  margin: 0 auto;
}

.framework-step__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}

.framework-step__body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.framework-step__milestone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-muted);
  padding: 4px 10px;
  border-radius: 4px;
}

/* 21 · Insights
   ================================================= */
.insights-section {
  padding: 80px 24px;
  background: var(--cream);
}

.insights-section__inner { max-width: var(--max-w); margin: 0 auto; }

.insights-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.coming-soon-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 40px;
  border: 2px dashed var(--cream-dark);
  text-align: center;
}

.coming-soon-box__icon { color: var(--gold); margin: 0 auto 20px; }
.coming-soon-box__title { font-family: var(--font-serif); font-size: 1.6rem; color: var(--forest); margin-bottom: 12px; }
.coming-soon-box__body { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 24px; }

/* 22 · About
   ================================================= */
.about-mission {
  padding: 96px 24px;
  background: var(--cream);
}

.about-mission__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-mission__statement {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.55;
  border-left: 4px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
}

.about-values {
  padding: 80px 24px;
  background: var(--white);
}

.about-values__inner { max-width: var(--max-w); margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px 28px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
}

.value-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--teal);
}

.value-card__title { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.value-card__body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

/* 23 · Team
   ================================================= */
.team-section {
  padding: 80px 24px;
  background: var(--cream);
}

.team-section__inner { max-width: var(--max-w); margin: 0 auto; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-card--lead { border: 2px solid var(--gold); }

.team-card__initial {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--forest), var(--forest-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
}

.team-card__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: top;
}

.team-card__body { padding: 20px; }

.team-card__name { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.team-card__role { font-size: 0.8rem; color: var(--teal); font-weight: 600; margin-bottom: 10px; line-height: 1.35; }
.team-card__bio { font-size: 0.84rem; color: var(--text-mid); line-height: 1.6; }

.team-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.71rem;
  color: var(--gold);
  background: var(--gold-muted);
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 10px;
  font-weight: 600;
}

/* 24 · Contact
   ================================================= */
.contact-section {
  padding: 96px 24px;
  background: var(--cream);
}

.contact-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.contact-card__label {
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 500;
  font-size: 0.92rem;
}
.contact-card a + a { margin-top: 8px; }
.contact-card a:hover { color: var(--forest); text-decoration: none; }
.contact-card__note { font-size: 0.8rem; color: var(--text-muted); margin-top: 6px; }

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.contact-form-box__title { font-family: var(--font-serif); font-size: 1.5rem; color: var(--forest); margin-bottom: 8px; }
.contact-form-box__sub { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 24px; }

/* 25 · FAQ
   ================================================= */
.faq-section {
  padding: 96px 24px;
  background: var(--cream);
}

.faq-section__inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-header { margin-bottom: 56px; text-align: center; }

.faq-item { border-bottom: 1px solid var(--cream-dark); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--forest);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }

.faq-question svg { flex-shrink: 0; transition: transform 0.3s; color: var(--teal); }
.faq-question[aria-expanded="true"] svg { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 1000px; }

.faq-answer__inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}
.faq-answer__inner ul { margin: 12px 0 0 18px; list-style: disc; }
.faq-answer__inner li { margin-bottom: 5px; }

/* 26 · Privacy
   ================================================= */
.privacy-section { padding: 80px 24px; background: var(--white); }
.privacy-section__inner { max-width: 760px; margin: 0 auto; }
.privacy-section h3 { font-size: 1.1rem; color: var(--forest); margin: 28px 0 10px; }
.privacy-section p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }
.privacy-section ul { margin-left: 18px; list-style: disc; }
.privacy-section li { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 6px; }

/* 27 · Media Queries
   ================================================= */
@media (max-width: 1024px) {
  .site-nav__links > li > a,
  .site-nav__dropdown-toggle { padding: 8px 9px; font-size: 0.84rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  /* Article cover grid — stack on mobile */
  .news-cover-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .news-cover-grid img { max-width: 220px; margin: 0 auto; }

  /* Nav mobile */
  .site-nav__toggle { display: flex; }
  .site-nav__cta { display: none; }

  .site-nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 12px 16px 20px;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .site-nav__links.open { display: flex; }
  .site-nav__links > li { width: 100%; }
  .site-nav__links > li > a,
  .site-nav__dropdown-toggle {
    width: 100%;
    padding: 12px 14px;
    justify-content: space-between;
    font-size: 0.95rem;
  }
  .site-nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(255,255,255,0.04);
    padding: 4px 0 4px 16px;
    display: none;
    min-width: 0;
  }
  .site-nav__dropdown.open .site-nav__dropdown-menu { display: block; }

  /* Hide Three.js canvas on small mobile only — shown at 768px+ */
  .hero__fallback { display: block; }

  /* Two-col grids → single col */
  .home-intro__inner,
  .home-framework__inner,
  .framework-intro__inner,
  .about-mission__inner,
  .report-hero__inner,
  .contact-section__inner,
  .report-toc__inner { grid-template-columns: 1fr; gap: 40px; }

  .site-footer__top { grid-template-columns: 1fr; gap: 36px; }
  .site-footer__nav { grid-template-columns: 1fr 1fr; }

  .stats-band__inner,
  .stats-band__inner--ten,
  .stats-band__inner--eighteen { grid-template-columns: repeat(2, 1fr); }
  .stats-band__inner--ten .stats-band__item:nth-child(5n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stats-band__inner--ten .stats-band__item:nth-child(2n) { border-right: none; }
  .stats-band__inner--ten .stats-band__item:nth-child(n+6) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-band__inner--ten .stats-band__item:nth-last-child(-n+2) { border-bottom: none; }
  .stats-band__inner--eighteen .stats-band__item:nth-child(6n) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stats-band__inner--eighteen .stats-band__item:nth-child(2n) { border-right: none; }
  .stats-band__inner--eighteen .stats-band__item:nth-child(n+13) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stats-band__inner--eighteen .stats-band__item:nth-last-child(-n+2) { border-bottom: none; }
  .stats-band__item { border-right: 1px solid rgba(255,255,255,0.1); }
  .stats-band__num { font-size: 2rem; }
  .stats-band__suffix, .stats-band__prefix { font-size: 1.1rem; }

  .stats-grid__inner { grid-template-columns: 1fr 1fr; }

  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }

  .report-cover { display: none; }
  .report-hero__inner { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  #hero-canvas { display: none; }
  .hero__title { font-size: 2.6rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
  .stats-grid__inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .site-footer__nav { grid-template-columns: 1fr; }
  .home-research__header { flex-direction: column; align-items: flex-start; }
  .home-insights__header { flex-direction: column; align-items: flex-start; }
}
