/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --primary: #1F3D2C;
  --primary-dark: #122318;
  --primary-mid: #2F5742;
  --accent: #5A9168;
  --accent-bright: #7FB988;
  --gold: #C5A572;
  --rust: #B05A3A;
  --sky: #4A90A4;
  --cream: #F6F4EC;
  --cream-warm: #EDE8DA;
  --bg: #FFFFFF;
  --text: #0E1A12;
  --text-muted: #5C6660;
  --text-soft: #8A9189;
  --border: #E5E3DB;
  --border-dark: #2A3F32;

  --font-display: 'Instrument Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1280px;
  --container-narrow: 1080px;
  --section-pad: clamp(64px, 9vw, 120px);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

section { padding: var(--section-pad) 0; position: relative; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
.h-display { font-size: clamp(48px, 7vw, 96px); font-weight: 600; }
.h-1 { font-size: clamp(36px, 5vw, 64px); font-weight: 600; line-height: 1.08; }
.h-2 { font-size: clamp(28px, 3.4vw, 44px); font-weight: 600; line-height: 1.15; }
.h-3 { font-size: clamp(22px, 2vw, 28px); font-weight: 600; }
.h-4 { font-size: 18px; font-weight: 600; }

.accent-italic {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.accent-italic-light { color: var(--accent-bright); }

p { margin: 0; }
.lead { font-size: clamp(17px, 1.4vw, 19px); color: var(--text-muted); line-height: 1.65; }
.body-text { color: var(--text-muted); font-size: 15.5px; line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  padding: 7px 14px 7px 12px;
  background: rgba(95, 145, 104, 0.10);
  border: 1px solid rgba(95, 145, 104, 0.18);
  border-radius: 999px;
}
.eyebrow::before {
  content: "";
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(95, 145, 104, 0.18);
}
.eyebrow.on-dark {
  color: #E8EDE8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}
.eyebrow.on-dark::before { background: var(--accent-bright); box-shadow: 0 0 0 4px rgba(127, 185, 136, 0.2); }

.section-head {
  max-width: 980px;
  margin-bottom: 56px;
  text-align: left;
}
.section-head .eyebrow { margin-bottom: 22px; }
.section-head h2 { margin-bottom: 16px; }
.section-head .lead { max-width: 820px; }
/* .center modifier kept as no-op for backwards compat */

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--primary); color: #F6F4EC; border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn--accent:hover { background: #4d7d59; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--ghost-light { background: transparent; color: #F6F4EC; border-color: rgba(246, 244, 236, 0.3); }
.btn--ghost-light:hover { background: rgba(246, 244, 236, 0.08); border-color: rgba(246, 244, 236, 0.5); }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }

/* HEADER / NAV */
.header {
  position: fixed;
  top: 18px;
  left: 0; right: 0;
  z-index: 100;
  transition: top 0.3s ease;
}
.header__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid rgba(14, 26, 18, 0.08);
  border-radius: 999px;
  padding: 8px 12px 8px 18px;
  box-shadow: 0 8px 32px rgba(14, 26, 18, 0.10);
  transition: box-shadow 0.3s ease;
}
.header.scrolled .header__bar {
  box-shadow: 0 12px 40px rgba(14, 26, 18, 0.14);
  border-color: rgba(14, 26, 18, 0.12);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--primary);
}
.brand__logo {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-weight: 600; font-size: 17px; }
.brand__text small { font-weight: 400; color: var(--text-muted); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  padding: 8px 11px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}
.nav a:hover { background: rgba(31, 61, 44, 0.07); color: var(--primary); }

.header__cta { display: flex; align-items: center; gap: 8px; }
.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
}
.menu-toggle svg { width: 20px; height: 20px; }

@media (max-width: 1180px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .header__cta .btn { display: none; }
  .header .brand__text small { display: none; }
}
@media (max-width: 540px) {
  .brand__logo { height: 40px; }
  .brand__text strong { font-size: 15px; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  color: #F6F4EC;
  z-index: 200;
  padding: 90px 28px 40px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
.mobile-menu a:hover { color: var(--accent-bright); }
.mobile-menu .close {
  position: absolute;
  top: 22px; right: 22px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 110px;
  overflow: hidden;
  color: #F6F4EC;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(14, 30, 20, 0.45) 0%, rgba(14, 30, 20, 0.35) 40%, rgba(14, 30, 20, 0.82) 100%),
    url("https://images.unsplash.com/photo-1506500072623-b8c2a36a047e?auto=format&fit=crop&w=2400&q=85");
  background-size: cover;
  background-position: center center;
  animation: kenBurns 34s ease-in-out infinite alternate;
  transform-origin: 55% 45%;
}
@keyframes kenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1.5%); }
}
.hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14, 30, 20, 0.32) 100%);
  pointer-events: none;
}
.hero .container { position: relative; width: 100%; }

/* HERO — pathway chips + eyebrow (replaces avatars) */
.hero__chips {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero__chips .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(246, 244, 236, 0.28);
  background: rgba(246, 244, 236, 0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #F6F4EC;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.hero__chips .chip sub { font-size: 10px; margin-left: 1px; vertical-align: sub; }
.hero__chips .chip--h2  { border-color: rgba(240, 221, 178, 0.5); color: #F0DDB2; }
.hero__chips .chip--co2 { border-color: rgba(197, 224, 207, 0.5); color: #DCE9DE; }
.hero__chips .chip--cdr { border-color: rgba(255, 214, 165, 0.45); color: #F0D8B0; font-size: 12px; }

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246, 244, 236, 0.86);
  margin: 0 0 22px;
  line-height: 1.55;
  max-width: 720px;
}
.hero__eyebrow span {
  display: block;
  color: rgba(246, 244, 236, 0.62);
  font-size: 12px;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.hero__title { font-size: clamp(34px, 5.4vw, 68px); font-weight: 600; line-height: 1.05; max-width: 920px; margin: 0 0 20px; letter-spacing: -0.022em; }

.hero__bottom {
  display: block;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid rgba(246, 244, 236, 0.18);
}

.hero__title .accent-italic-light { color: #F0DDB2; }
.hero__title .accent-italic {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent-bright), #C5E0CF, var(--accent-bright));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s ease-in-out infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero__chips { animation: fadeInChip 1.4s ease-out 0.4s both; }
.hero__chips .chip { transition: transform 0.3s ease; }
.hero__chips .chip:hover { transform: translateY(-2px); }
@keyframes fadeInChip {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero__copy { max-width: 780px; }
.hero__copy p { font-size: 16px; color: rgba(246, 244, 236, 0.86); line-height: 1.6; margin-bottom: 28px; }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

.scroll-indicator {
  display: none; /* removed to avoid alignment issues — content tells the story */
}

@media (max-width: 880px) {
  .hero { padding: 130px 0 80px; min-height: auto; }
  .hero__bottom { margin-top: 40px; padding-top: 24px; }
}

/* MARQUEE */
.marquee-strip {
  background: var(--primary);
  color: #F6F4EC;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.marquee-strip__track {
  display: flex;
  gap: 56px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-strip__track span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.marquee-strip__track span::after {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent-bright);
  border-radius: 50%;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ABOUT */
.about { background: var(--bg); }
.about__head { max-width: 880px; margin-bottom: 48px; }
.about__head .eyebrow { margin-bottom: 22px; }
.about__head h2 { font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 24px; }

.about__mission {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 56px;
  font-family: var(--font-body);
  font-weight: 400;
  position: relative;
}
.about__mission::before {
  content: "“";
  position: absolute;
  top: 0px; left: 18px;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
}
.about__mission strong { color: var(--primary); font-weight: 600; }

.about__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.about-card .icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary);
  color: #F6F4EC;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.about-card .icon svg { width: 26px; height: 26px; }
.about-card.alt .icon { background: var(--accent); }
.about-card h3 { margin-bottom: 10px; font-size: 22px; }
.about-card p { color: var(--text-muted); line-height: 1.65; font-size: 15.5px; }
.about-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 145, 104, 0.12), transparent 70%);
}

@media (max-width: 1080px) {
  .about__cards { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 880px) {
  .about__mission { padding: 28px 24px 28px 24px; }
  .about__cards { grid-template-columns: 1fr !important; }
}

/* HERITAGE */
.heritage {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.heritage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 56px;
}
.her-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.her-card .her-card__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}
.her-card h3 { font-size: 26px; margin-bottom: 16px; }
.her-card .body-text { margin-bottom: 16px; }
.her-card .her-card__meta {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.her-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}
.her-card__pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
}
.her-link {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: rgba(31, 61, 44, 0.3);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.2s ease;
}
.her-link:hover { text-decoration-color: var(--primary); }

@media (max-width: 880px) {
  .heritage__grid { grid-template-columns: 1fr !important; }
  .her-card { padding: 28px 24px; }
}

/* STATS */
.stats { background: var(--bg); }
.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.stats__head h2 { font-size: clamp(32px, 4.2vw, 52px); margin-bottom: 16px; }
.stats__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.stat__year {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.stat__year .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.2vw, 64px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__num small { font-size: 0.45em; font-weight: 500; color: var(--text-muted); margin-left: 6px; }
.stat__label { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--text); margin-bottom: 6px; }
.stat__desc { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 880px) {
  .stats__grid { grid-template-columns: 1fr; gap: 36px; }
  .stats__items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .stats__items { grid-template-columns: 1fr; }
}

/* SOLUTIONS */
.solutions { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.solutions__head { text-align: left; margin-bottom: 64px; }
.solutions__head h2 { max-width: 980px; margin: 0 0 16px; font-size: clamp(34px, 4.4vw, 56px); }
.solutions__head .lead { max-width: 820px; }

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.sol-card {
  grid-column: span 6;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sol-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(14, 26, 18, 0.08); }
.sol-card--feature {
  grid-column: span 12;
  background: var(--primary);
  color: #F6F4EC;
  border-color: var(--primary);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding: 48px;
  align-items: center;
}
.sol-card--feature .sol-card__icon { background: var(--accent); }
.sol-card--feature h3 { color: #F6F4EC; }
.sol-card--feature p { color: rgba(246, 244, 236, 0.78); }
.sol-card--feature .sol-card__visual {
  height: 280px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(95, 145, 104, 0.4), rgba(127, 185, 136, 0.25));
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 244, 236, 0.16);
}
.sol-card--feature .sol-card__visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("https://images.unsplash.com/photo-1574943320219-553eb213f72d?auto=format&fit=crop&w=900&q=70");
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: 0.85;
}
.sol-card--triple { grid-column: span 4; }

.sol-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary);
  color: #F6F4EC;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}
.sol-card__icon svg { width: 28px; height: 28px; }
.sol-card h3 { font-size: 22px; margin-bottom: 12px; line-height: 1.2; color: var(--text); }
.sol-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 24px; flex: 1; }
.sol-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-top: auto;
}
.sol-card__tag svg { width: 14px; height: 14px; }
.sol-card--coming { background: linear-gradient(135deg, #fff, var(--cream)); border-style: dashed; }
.sol-card--coming .sol-card__icon { background: var(--accent); }

@media (max-width: 1080px) {
  .sol-card--triple { grid-column: span 6; }
}
@media (max-width: 880px) {
  .sol-card { grid-column: span 12; padding: 30px 26px; }
  .sol-card--feature { grid-template-columns: 1fr; padding: 32px 26px; gap: 24px; }
  .sol-card--feature .sol-card__visual { height: 200px; }
}

/* IMG CARDS (image-driven subsections) */
.sub-head { text-align: left; max-width: 980px; }
.sub-head h3 { color: var(--text); letter-spacing: -0.02em; }
.img-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.img-card__header {
  padding: 16px 22px 14px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #F6F4EC;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 78px;
}
.img-card__header::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(127, 185, 136, 0.25);
  flex-shrink: 0;
  margin-top: 5px;
}
.img-card__header strong { color: var(--accent-bright); font-weight: 600; margin-right: 4px; display: inline; }
@media (max-width: 720px) {
  .img-card__header { font-size: 11.5px; padding: 14px 16px 12px; min-height: 66px; }
}
.img-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(14, 26, 18, 0.08); }
.img-card__wrap {
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  background: #fff;
  position: relative;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.img-card--wide .img-card__wrap {
  aspect-ratio: 16 / 9.4;
  padding: 22px 22px 18px;
}
.img-card--xl .img-card__wrap {
  aspect-ratio: 16 / 8.6;
  padding: 28px 32px 24px;
}
.img-card--xl .img-card__header { padding: 18px 28px 16px; font-size: 13.5px; min-height: 56px; }
.img-card--xl figcaption { padding: 26px 32px 30px; }
.img-card--xl figcaption strong { font-size: 16px; line-height: 1.55; }
@media (max-width: 880px) {
  .img-card--xl .img-card__wrap { aspect-ratio: 16 / 9.6; padding: 18px 18px 14px; }
  .img-card--xl figcaption { padding: 22px 22px 26px; }
}
.img-card__wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 6px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(14, 26, 18, 0.04);
  cursor: zoom-in;
}
.img-card:hover .img-card__wrap img { transform: scale(1.015); }
.img-card__wrap::after { content: none; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  cursor: zoom-out;
  animation: fadeIn 0.25s ease-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 96vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  cursor: default;
  animation: zoomIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lightbox__close {
  position: fixed;
  top: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--accent);
  border: 2px solid #F6F4EC;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-display);
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  z-index: 1001;
}
.lightbox__close:hover {
  background: #e74c3c;
  transform: scale(1.08) rotate(90deg);
  box-shadow: 0 8px 30px rgba(231, 76, 60, 0.55);
}
/* CSS-drawn cross — bulletproof across every browser & mobile OS */
.lightbox__close-x {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
  pointer-events: none;
}
.lightbox__close-x::before,
.lightbox__close-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transform-origin: center center;
}
.lightbox__close-x::before { transform: translate(-50%, -50%) rotate(45deg); }
.lightbox__close-x::after  { transform: translate(-50%, -50%) rotate(-45deg); }
@media (max-width: 720px) {
  .lightbox__close-x { width: 22px; height: 22px; }
  .lightbox__close-x::before, .lightbox__close-x::after { width: 22px; height: 2.8px; }
}
.lightbox__caption {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(246, 244, 236, 0.85);
  text-align: center;
  max-width: 80vw;
  padding: 8px 18px;
  background: rgba(14, 26, 18, 0.7);
  border: 1px solid rgba(246, 244, 236, 0.15);
  border-radius: 999px;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .lightbox__close { top: 16px; right: 16px; width: 50px; height: 50px; font-size: 22px; }
  .lightbox__caption { font-size: 12px; padding: 6px 14px; }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes zoomIn { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.img-card figcaption {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: flex-start;
}
.img-grid { align-items: stretch; }
.img-card__tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(95, 145, 104, 0.10);
  border: 1px solid rgba(95, 145, 104, 0.18);
  padding: 4px 11px;
  border-radius: 999px;
}
.img-card figcaption strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}
/* On tablet/landscape mobile keep 3-up grids as 3-up, drop only the 2-up CCUS grid to 1-up below 720 */
@media (max-width: 720px) {
  .img-grid[style*="repeat(3,"] {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
  }
  .img-grid[style*="repeat(2,"] {
    grid-template-columns: 1fr !important;
  }
  .img-card__wrap { aspect-ratio: 4 / 3; padding: 8px; }
  .img-card__header {
    font-size: 9.5px !important;
    letter-spacing: 0.04em;
    padding: 9px 10px 8px !important;
    min-height: 56px !important;
    gap: 6px;
    line-height: 1.25;
  }
  .img-card__header::before { width: 5px; height: 5px; margin-top: 4px; box-shadow: 0 0 0 2px rgba(127, 185, 136, 0.25); }
  .img-card figcaption { padding: 10px 10px 14px; gap: 6px; }
  .img-card__tag { font-size: 9.5px; padding: 3px 7px; letter-spacing: 0.04em; }
  .img-card figcaption strong { font-size: 11.5px; line-height: 1.4; }
  /* Magnifier badge keeps clickability hint visible but compact */
}
@media (max-width: 420px) {
  /* On very narrow phones, drop to 2-up for the 3-up grids so cards aren't pixel-sized */
  .img-grid[style*="repeat(3,"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* PROCESS (hexagons) */
.process { background: var(--bg); }
.process__visual {
  margin-top: 56px;
  position: relative;
  display: flex;
  justify-content: center;
}
.process__svg { width: 100%; max-width: 1100px; height: auto; }
.process__legend {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.process__legend-item {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 18px 20px;
  text-align: left;
}
.process__legend-item .num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.process__legend-item h4 { font-size: 14.5px; margin-bottom: 6px; line-height: 1.25; }
.process__legend-item p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 880px) {
  .process__legend { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process__legend { grid-template-columns: 1fr; }
}

/* CIRCULAR */
.circular { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.circular__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 32px;
}
.circular__svg-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  justify-content: center;
}
.circular__svg { width: 100%; max-width: 540px; height: auto; }
.circular__copy h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 22px; }
.circular__list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.circular__list-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.circular__list-item .num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
}
.circular__list-item h4 { font-size: 15px; margin-bottom: 4px; }
.circular__list-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 880px) {
  .circular__layout { grid-template-columns: 1fr; gap: 32px; }
}

/* VALUE CHAIN */
.chain { background: var(--bg); }
.chain__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 48px;
}
.chain__steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 8px, transparent 8px 16px);
  opacity: 0.5;
  z-index: 0;
}
.chain-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.chain-step__num {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(14, 26, 18, 0.06);
}
.chain-step__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.chain-step__desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 880px) {
  .chain__steps { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .chain__steps::before { display: none; }
}
@media (max-width: 480px) {
  .chain__steps { grid-template-columns: 1fr; }
}

/* BIO-CNG */
.biocng { background: var(--primary); color: #F6F4EC; }
.biocng .eyebrow { color: #F6F4EC; }
.biocng h2 { color: #F6F4EC; }
.biocng__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin-top: 32px;
}
.biocng__copy h2 { font-size: clamp(32px, 4.2vw, 52px); margin-bottom: 22px; }
.biocng__copy p { color: rgba(246, 244, 236, 0.82); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.biocng__regions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 22px; margin-bottom: 28px;
}
.biocng__regions span {
  padding: 8px 16px;
  background: rgba(246, 244, 236, 0.08);
  border: 1px solid rgba(246, 244, 236, 0.18);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: #F6F4EC;
}
.biocng__resources { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.biocng__svg-wrap {
  background: var(--primary-dark);
  border: 1px solid rgba(246, 244, 236, 0.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  justify-content: center;
}
.biocng__svg { width: 100%; max-width: 600px; height: auto; }

@media (max-width: 960px) {
  .biocng__grid { grid-template-columns: 1fr; gap: 32px; }
  .biocng__svg-wrap { padding: 24px; }
}

/* VISION */
.vision { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.vision__formula {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  margin: 56px 0 40px;
}
.vision-pillar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.vision-pillar .vp-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.vision-pillar .vp-icon svg { width: 30px; height: 30px; }
.vision-pillar h3 {
  font-size: 18px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--primary);
}
.vision-pillar p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.vision__plus {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  font-weight: 600;
}
.vision__equation {
  background: var(--primary);
  color: #F6F4EC;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.01em;
}
.vision__equation strong { color: var(--accent-bright); font-weight: 600; font-style: italic; font-family: var(--font-serif); font-weight: 400; }

@media (max-width: 880px) {
  .vision__formula { grid-template-columns: 1fr; gap: 10px; }
  .vision__plus { padding: 8px 0; font-size: 28px; }
}

/* NATIONAL PRIORITIES */
.priorities { background: var(--bg); }
.priorities__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}
.priorities__intro h2 { font-size: clamp(34px, 4.4vw, 56px); }
.priorities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.priority {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.priority__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 12px;
  background: var(--primary);
  color: #F6F4EC;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}
.priority h4 { font-size: 17px; line-height: 1.25; }
.priority p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.priority__cvc {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed var(--border);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}
.priority__cvc::before { content: "→"; color: var(--accent); font-weight: 600; }

.proof-strip {
  margin-top: 48px;
  background: var(--primary);
  color: #F6F4EC;
  border-radius: var(--radius-lg);
  padding: 36px 44px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.proof-strip__date {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  color: var(--accent-bright);
}
.proof-strip__date small { display: block; font-family: var(--font-display); font-style: normal; font-size: 13px; color: rgba(246,244,236,0.6); margin-top: 6px; letter-spacing: 0.06em; text-transform: uppercase; }
.proof-strip__copy h4 { color: #F6F4EC; font-size: 19px; margin-bottom: 6px; }
.proof-strip__copy p { color: rgba(246, 244, 236, 0.72); font-size: 14.5px; }

@media (max-width: 1080px) {
  .priorities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .priorities__intro { grid-template-columns: 1fr; gap: 16px; }
  .priorities__grid { grid-template-columns: 1fr; }
  .proof-strip { grid-template-columns: 1fr; padding: 28px 24px; gap: 18px; text-align: left; }
}

/* DISTRICT / VILLAGE */
.tier { background: var(--bg); }
.tier--alt { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tier__svg-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: 48px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.tier--alt .tier__svg-wrap { background: #fff; }
.tier__svg { width: 100%; max-width: 1000px; height: auto; }
.tier__points {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tier__point {
  padding: 20px 22px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.tier--alt .tier__point { background: #fff; }
.tier__point .tp-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.tier__point .tp-icon svg { width: 18px; height: 18px; }
.tier__point h4 { font-size: 15.5px; margin-bottom: 6px; }
.tier__point p { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

@media (max-width: 880px) {
  .tier__points { grid-template-columns: 1fr; }
  .tier__svg-wrap { padding: 24px; }
}

/* WHY CVC */
.why { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.why__head h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 20px; }
.diff-list { display: flex; flex-direction: column; gap: 16px; }
.diff {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.diff__num {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary);
  color: #F6F4EC;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}
.diff h4 { font-size: 17px; margin-bottom: 6px; }
.diff p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

@media (max-width: 880px) {
  .why__grid { grid-template-columns: 1fr; }
}

/* LEADERSHIP */
.leadership { background: var(--bg); }
.leadership__card {
  background: var(--primary);
  color: #F6F4EC;
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  position: relative;
}
.leadership__visual {
  background: linear-gradient(135deg, var(--accent), var(--primary-mid));
  position: relative;
  min-height: 480px;
  overflow: hidden;
}
.leadership__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.95) contrast(1.02);
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.leadership__card:hover .leadership__photo { transform: scale(1.04); }
.leadership__visual::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 61, 44, 0) 40%, rgba(18, 35, 24, 0.55) 100%),
    radial-gradient(circle at 30% 30%, rgba(127, 185, 136, 0.18), transparent 60%);
  pointer-events: none;
}
.leadership__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(18, 35, 24, 0.7);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F6F4EC;
  border: 1px solid rgba(246, 244, 236, 0.2);
}
.leadership__body { padding: 56px 56px 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.leadership__role {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 500;
  margin-bottom: 14px;
}
.leadership__name { font-size: clamp(32px, 4vw, 44px); margin-bottom: 24px; }
.leadership__bio { color: rgba(246, 244, 236, 0.78); font-size: 15.5px; line-height: 1.7; margin-bottom: 16px; }
.leadership__creds {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(246, 244, 236, 0.18);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cred__num { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--accent-bright); line-height: 1; }
.cred__lab { font-size: 13px; color: rgba(246, 244, 236, 0.7); margin-top: 6px; }
.leadership__actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .leadership__card { grid-template-columns: 1fr; }
  .leadership__visual { min-height: 280px; }
  .leadership__body { padding: 36px 28px; }
}

/* CTA */
.cta { position: relative; overflow: hidden; background: var(--primary-dark); color: #F6F4EC; }
.cta__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(180deg, rgba(18, 35, 24, 0.8), rgba(18, 35, 24, 0.92)),
    url("https://images.unsplash.com/photo-1473773508845-188df298d2d1?auto=format&fit=crop&w=2000&q=70");
  background-size: cover;
  background-position: center;
}
.cta__inner { position: relative; text-align: center; padding: 24px 0; }
.cta__inner h2 { font-size: clamp(40px, 5.6vw, 72px); max-width: 1000px; margin: 24px auto; color: #F6F4EC; line-height: 1.05; }
.cta__inner p { color: rgba(246, 244, 236, 0.8); max-width: 620px; margin: 0 auto 32px; font-size: 17px; }
.cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
.contact { background: var(--bg); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact__head h2 { font-size: clamp(34px, 4.4vw, 52px); margin-bottom: 20px; }
.contact__info {
  margin-top: 36px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact__info h4 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 600; }
.contact__info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact__info-row:last-child { margin-bottom: 0; }
.contact__info-row svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.contact__info-row p { font-size: 15px; color: var(--text); line-height: 1.55; }
.contact__info-row p span { display: block; color: var(--text-muted); font-size: 13px; margin-top: 2px; }
.contact__info-row a { color: var(--primary); font-weight: 500; }
.contact__info-row a:hover { text-decoration: underline; }
.contact__emails {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact__emails a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.contact__emails a:hover { color: var(--primary); text-decoration: underline; }

.form-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: span 2; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field label { font-family: var(--font-display); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--text); }
.form-field input, .form-field textarea, .form-field select {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(95, 145, 104, 0.12);
}
.form-field textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.form-card .submit-row { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; flex-wrap: wrap; gap: 12px; }
.form-card .submit-row p { font-size: 13px; color: var(--text-muted); }

@media (max-width: 880px) {
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .form-card { padding: 28px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: span 1; }
}

/* FOOTER */
.footer {
  background: var(--primary-dark);
  color: rgba(246, 244, 236, 0.8);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand .brand { color: #F6F4EC; }
.footer__brand .brand__logo { height: 72px; background: #fff; border-radius: 10px; padding: 4px; }
.footer__brand p { color: rgba(246, 244, 236, 0.6); font-size: 14px; margin-top: 18px; line-height: 1.6; max-width: 320px; }
.footer__col h5 { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #F6F4EC; margin: 0 0 18px; font-weight: 600; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a, .footer__col li { color: rgba(246, 244, 236, 0.7); font-size: 14.5px; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--accent-bright); }
.footer__bottom {
  border-top: 1px solid rgba(246, 244, 236, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(246, 244, 236, 0.5);
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(246, 244, 236, 0.08);
  border: 1px solid rgba(246, 244, 236, 0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(246, 244, 236, 0.7);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.footer__social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.footer__social svg { width: 16px; height: 16px; }

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* MOBILE SAFETY (anti-truncation) */
@media (max-width: 720px) {
  .container, .container--narrow { padding: 0 18px; }
  section { padding: clamp(48px, 10vw, 80px) 0; }
  .section-head { margin-bottom: 36px; }
  /* prevent horizontal scroll caused by long words */
  h1, h2, h3, h4, p { overflow-wrap: anywhere; word-break: normal; }
  /* hero text room */
  .hero { padding: 110px 0 60px; }
  .hero__title { font-size: clamp(28px, 8vw, 44px); line-height: 1.1; }
  .hero__chips .chip { width: 38px; height: 38px; font-size: 13px; }
  .hero__eyebrow { font-size: 11px; letter-spacing: 0.06em; }
  .hero__eyebrow span { font-size: 10px; }
  /* stats — already 1 col below 540, but ease label sizing here too */
  .stat__num { font-size: clamp(36px, 10vw, 52px); }
  /* tighten card padding */
  .about-card, .her-card, .priority, .diff, .sol-card, .pc-card, .org-card { padding: 26px 22px; }
  /* leadership card flow */
  .leadership__body { padding: 32px 22px; }
  .leadership__creds { grid-template-columns: 1fr 1fr; gap: 18px; }
  /* footer columns */
  .footer { padding: 56px 0 24px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  /* heritage grid one-col */
  .heritage__grid { grid-template-columns: 1fr !important; }
  /* svg diagrams scale better */
  .process__svg, .circular__svg, .tier__svg { min-width: 0; }
  .tier__svg-wrap { padding: 16px; }
  .process__visual { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* contact form full width */
  .contact__info { padding: 24px 20px; }
  .form-card { padding: 24px 20px; }
  /* organigram image needs to fit */
  .organigram__visual { padding: 14px !important; }
  /* mission blockquote */
  .about__mission { padding: 24px 20px 24px 22px !important; font-size: 16px !important; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 26px; }
  .h-2, h2 { font-size: clamp(24px, 7vw, 32px) !important; }
  .lead { font-size: 15px !important; }
  /* lightbox close button bigger tap target on mobile */
  .lightbox__close { top: 14px; right: 14px; width: 48px; height: 48px; }
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* Hover-lift refinements */
.priority { transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; }
.priority:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(14, 26, 18, 0.07); border-color: var(--accent); }
.diff { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.diff:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(14, 26, 18, 0.06); }
.about-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.about-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(14, 26, 18, 0.07); }
.her-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.her-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(14, 26, 18, 0.07); }
.stat { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.stat:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(14, 26, 18, 0.06); }
.process__legend-item { transition: transform 0.3s ease, border-color 0.3s ease; }
.process__legend-item:hover { transform: translateY(-2px); border-color: var(--accent); }
.tier__point { transition: transform 0.3s ease, border-color 0.3s ease; }
.tier__point:hover { transform: translateY(-2px); border-color: var(--accent); }
.chain-step__num { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease, color 0.3s ease; }
.chain-step:hover .chain-step__num { transform: scale(1.1) rotate(-3deg); background: var(--primary); color: #F6F4EC; }

/* Counter — invisible until counter starts */
.counter { display: inline-block; min-width: 1ch; }

/* Subtle button breath */
.btn--accent { animation: subtleGlow 4s ease-in-out infinite; }
@keyframes subtleGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(95, 145, 104, 0); }
  50%      { box-shadow: 0 0 0 8px rgba(95, 145, 104, 0.18); }
}

/* Reduce motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  .hero__bg, .hero__title .accent-italic, .btn--accent { animation: none !important; }
  .fade-up { opacity: 1; transform: none; transition: none; }
}

</style>
<style>
.ge-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(14, 26, 18, 0.07); }
@media (max-width: 1080px) { .ge-grid { grid-template-columns: 1fr !important; } }
</style>
<style>
.pw-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(14, 26, 18, 0.07); }
@media (max-width: 1080px) { .pw-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 720px) { .pw-grid { grid-template-columns: 1fr !important; } }
</style>
<style>
.organigram .org-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(14, 26, 18, 0.08); }
@media (max-width: 1080px) { .org-grid { grid-template-columns: 1fr !important; } }
@media (max-width: 720px) { .org-promoters { grid-template-columns: 1fr !important; } }
</style>
<style>
.pc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(14, 26, 18, 0.10); }
@media (max-width: 1080px) { .pc-grid { grid-template-columns: 1fr !important; } }

/* ================================================
   MULTI-PAGE NAVIGATION — added for multi-page site
==================================================*/

/* Dropdown parent items */
.nav-item { position: relative; }
.nav-item > a {
  padding: 8px 12px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-item > a:hover, .nav-item > a.active {
  background: rgba(31, 61, 44, 0.08);
  color: var(--primary);
}
.nav-item > a[aria-haspopup]::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(45deg);
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.nav-item:hover > a[aria-haspopup]::after,
.nav-item.open > a[aria-haspopup]::after {
  transform: translateY(1px) rotate(225deg);
}

/* Dropdown menu */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border: 1px solid rgba(14, 26, 18, 0.08);
  border-radius: 16px;
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 12px 40px rgba(14, 26, 18, 0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 10;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown,
.nav-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown a small {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.nav-dropdown a:hover, .nav-dropdown a.active {
  background: rgba(95, 145, 104, 0.10);
  color: var(--primary);
}

/* ================================================
   SUB-PAGE HERO (smaller than home hero, with breadcrumbs)
==================================================*/
.sub-hero {
  position: relative;
  padding: 160px 0 60px;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #F6F4EC;
  overflow: hidden;
}
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top left, rgba(127, 185, 136, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(197, 165, 114, 0.12), transparent 55%);
  pointer-events: none;
}
.sub-hero .container { position: relative; }
.breadcrumbs {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(246, 244, 236, 0.7);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: rgba(246, 244, 236, 0.85);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.breadcrumbs a:hover { color: var(--accent-bright); }
.breadcrumbs .sep { color: rgba(246, 244, 236, 0.4); }
.breadcrumbs .current { color: var(--accent-bright); font-weight: 500; }

.sub-hero__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.6vw, 60px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: #F6F4EC;
  margin: 0 0 18px;
  max-width: 900px;
}
.sub-hero__lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(246, 244, 236, 0.82);
  max-width: 720px;
  margin: 0;
}

/* Data strip */
.data-strip {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.data-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.data-stat {
  text-align: center;
}
.data-stat__num {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.data-stat__num small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--text-muted);
  margin-left: 4px;
}
.data-stat__label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.data-stat__source {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}
@media (max-width: 880px) {
  .data-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
  .data-strip__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Feature callout — image + text pattern for home + parent pages */
.feature-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.feature-callout--reverse { grid-template-columns: 1fr 1fr; }
.feature-callout--reverse > *:first-child { order: 2; }
.feature-callout__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  padding: 12px;
  cursor: zoom-in;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.feature-callout__img:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(14, 26, 18, 0.10);
}
.feature-callout__img img { width: 100%; height: auto; display: block; border-radius: 8px; }
.feature-callout__content h3 {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.feature-callout__content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.feature-callout__content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-callout__content li {
  padding-left: 26px;
  position: relative;
  font-size: 15px;
  color: var(--text);
  line-height: 1.55;
}
.feature-callout__content li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
@media (max-width: 960px) {
  .feature-callout { grid-template-columns: 1fr; gap: 32px; }
  .feature-callout--reverse > *:first-child { order: 0; }
}

/* Page navigation cards (used on parent pages linking to sub-pages) */
.page-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.page-nav-card {
  display: block;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  color: var(--text);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}
.page-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(14, 26, 18, 0.08);
  border-color: var(--accent);
}
.page-nav-card__num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  display: block;
}
.page-nav-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.2;
}
.page-nav-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.page-nav-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s ease;
}
.page-nav-card:hover .page-nav-card__cta { gap: 10px; }
.page-nav-card__cta::after {
  content: "→";
  transition: transform 0.2s ease;
}

/* Slide card — for use on sub-pages where PDF images are shown */
.slide-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.slide-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(14, 26, 18, 0.08);
}
.slide-card__header {
  padding: 16px 22px 14px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #F6F4EC;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 60px;
}
.slide-card__header::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--accent-bright);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(127, 185, 136, 0.25);
  flex-shrink: 0;
  margin-top: 5px;
}
.slide-card__wrap {
  padding: 16px;
  background: #fff;
  cursor: zoom-in;
  position: relative;
}
.slide-card__wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: transform 0.4s ease;
}
.slide-card__wrap:hover img { transform: scale(1.01); }
.slide-card__wrap::after { content: none; }
.slide-card__caption {
  padding: 18px 22px 22px;
  border-top: 1px solid var(--border);
}
.slide-card__caption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.slide-card__caption p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Slide grid — single column, two column, three column variants */
.slide-grid { display: grid; gap: 24px; }
.slide-grid--1 { grid-template-columns: 1fr; max-width: 1100px; margin: 0 auto; }
.slide-grid--2 { grid-template-columns: repeat(2, 1fr); }
.slide-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) {
  .slide-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .slide-grid--2, .slide-grid--3 { grid-template-columns: 1fr; }
}

/* Investor CTA banner */
.investor-cta {
  background: var(--primary);
  color: #F6F4EC;
  border-radius: var(--radius-xl);
  padding: 60px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.investor-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(127, 185, 136, 0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(197, 165, 114, 0.14), transparent 50%);
  pointer-events: none;
}
.investor-cta > * { position: relative; }
.investor-cta h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: #F6F4EC;
  margin-bottom: 18px;
  line-height: 1.15;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.investor-cta p {
  font-size: 16.5px;
  color: rgba(246, 244, 236, 0.82);
  max-width: 620px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.investor-cta .btn-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .investor-cta { padding: 44px 24px; }
}
