/* ============================================
   VEG UP! — Brand stylesheet v4
   Turf Green #147C3F | Willow Green #8EC677
   Floral White #FFF9EF | Black #111111
   Fonts: Montserrat · Open Sauce SemiBold · Roboto
   ============================================ */

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

:root {
  --turf:         #147C3F;
  --turf-dark:    #0d5429;
  --willow:       #8EC677;
  --willow-light: #b8dda3;
  --willow-pale:  #d8eecc;
  --white:        #FFF9EF;
  --black:        #111111;
  --gray:         #555555;
  --gray-light:   #f2ede3;
  --radius:       14px;
  --radius-sm:    8px;
  --max-w:        1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.2; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary  { background: var(--turf); color: var(--white); box-shadow: 0 6px 20px rgba(20,124,63,.28); }
.btn-primary:hover { background: var(--turf-dark); }

.btn-willow   { background: var(--willow); color: var(--turf); box-shadow: 0 6px 20px rgba(142,198,119,.4); }
.btn-willow:hover { background: var(--willow-light); }

.btn-ghost    { background: transparent; border-color: rgba(255,249,239,.45); color: var(--white); }
.btn-ghost:hover { background: rgba(255,249,239,.1); border-color: rgba(255,249,239,.8); }

.btn-white    { background: var(--white); color: var(--turf); box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.btn-white:hover { background: var(--willow-pale); }

/* ─── LABELS ─── */
.section-label {
  display: inline-block;
  font-family: 'Open Sauce Sans', 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* turf green on light backgrounds — high contrast */
  color: var(--turf);
  margin-bottom: 12px;
}
.section-label.light { color: var(--willow-light); }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); margin-bottom: 14px; }
.section-intro { font-size: 1.05rem; color: var(--gray); max-width: 580px; line-height: 1.75; }
.section-header.center .section-intro { margin: 0 auto; }
.light-sub { color: rgba(255,249,239,.65) !important; }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .3s, box-shadow .3s, padding .3s;
}
#navbar.scrolled {
  background: rgba(255,249,239,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(20,124,63,.1);
  padding: 12px 0;
}
.nav-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; }

/* Default (dark hero): show white logo, hide colored */
.nav-logo .logo-light { display: block; }
.nav-logo .logo-dark  { display: none; }

/* Scrolled (light bg): hide white, show colored */
#navbar.scrolled .nav-logo .logo-light { display: none; }
#navbar.scrolled .nav-logo .logo-dark  { display: block; }

.nav-links {
  display: flex; list-style: none;
  gap: 28px; align-items: center;
}
.nav-links a {
  font-family: 'Open Sauce Sans', 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.83rem;
  color: rgba(255,249,239,.9);
  transition: color .2s;
}
#navbar.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover { color: var(--willow-light); }
#navbar.scrolled .nav-links a:hover { color: var(--turf); }

.nav-links .nav-cta {
  background: var(--willow); color: var(--turf) !important;
  padding: 9px 20px; border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.05em;
  transition: background .2s, transform .2s;
}
.nav-links .nav-cta:hover { background: var(--willow-light); transform: translateY(-1px); }
#navbar.scrolled .nav-links .nav-cta { background: var(--turf); color: var(--white) !important; }
#navbar.scrolled .nav-links .nav-cta:hover { background: var(--turf-dark); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
#navbar.scrolled .nav-toggle span { background: var(--black); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  position: relative;
  background: var(--turf);
  background-image:
    radial-gradient(ellipse 65% 75% at 105% 55%, rgba(142,198,119,.2) 0%, transparent 65%),
    radial-gradient(ellipse 50% 55% at -5% 45%, rgba(13,84,41,.6) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,249,239,.055) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.hero-img-wrap {
  position: absolute; top: 0; right: 0;
  width: 45%; height: 100%;
  overflow: hidden; pointer-events: none;
}
.hero-food-img { width: 100%; height: 100%; object-fit: cover; opacity: .2; filter: saturate(1.3); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--turf) 0%, transparent 50%),
              linear-gradient(to top, var(--turf) 0%, transparent 25%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
  padding: 140px 24px 100px; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,249,239,.1); border: 1px solid rgba(255,249,239,.2);
  border-radius: 50px; padding: 7px 18px; margin-bottom: 32px;
  backdrop-filter: blur(4px);
  flex-wrap: wrap;
}
.badge-org {
  font-family: 'Open Sauce Sans', 'Montserrat', sans-serif;
  font-weight: 600; font-size: 0.75rem;
  color: rgba(255,249,239,.85); letter-spacing: .04em;
}
.badge-x { color: var(--willow); font-weight: 700; font-size: .9rem; }

/* Hero brand tag */
.hero-brand-tag {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.hero-brand-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; font-weight: 900;
  color: var(--willow); letter-spacing: .04em;
}
.hero-brand-sep { color: rgba(255,249,239,.3); font-size: 1rem; }
.hero-brand-desc {
  font-family: 'Open Sauce Sans','Montserrat',sans-serif;
  font-size: .75rem; font-weight: 600;
  color: rgba(255,249,239,.6); letter-spacing: .08em; text-transform: uppercase;
}

.hero-headline {
  font-size: clamp(3.5rem, 8.5vw, 7rem);
  font-weight: 900; line-height: 1.0;
  color: var(--white); margin-bottom: 24px;
  display: flex; flex-direction: column;
}
.headline-bottom { color: var(--willow); }
.headline-bottom em { font-style: italic; }

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,249,239,.72); max-width: 520px;
  margin-bottom: 40px; line-height: 1.8; font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-stats {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 0; row-gap: 0;
  background: rgba(255,249,239,.07); border: 1px solid rgba(255,249,239,.12);
  border-radius: var(--radius); padding: 22px 28px;
  backdrop-filter: blur(6px); width: fit-content; max-width: 100%;
}
.hstat { display: flex; flex-direction: column; padding: 0 24px; }
.hstat:first-child { padding-left: 0; }
.hstat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem; font-weight: 900;
  color: var(--willow); line-height: 1;
}
.hstat-static {
  opacity: 0;
  animation: statFadeIn 0.8s ease 2.8s forwards;
}
@keyframes statFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.hstat-label {
  font-family: 'Open Sauce Sans', 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 600;
  color: rgba(255,249,239,.5); letter-spacing: .06em;
  margin-top: 3px; text-transform: uppercase;
}
.hstat-divider { width: 1px; height: 38px; background: rgba(255,249,239,.15); flex-shrink: 0; }

.hero-scroll {
  position: absolute; bottom: 110px; right: 28px;
}
.scroll-track { width: 2px; height: 52px; background: rgba(255,249,239,.12); border-radius: 2px; overflow: hidden; }
.scroll-thumb { width: 100%; height: 30%; background: var(--willow); border-radius: 2px; animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown {
  0%   { transform: translateY(0);    opacity: 1; }
  80%  { transform: translateY(230%); opacity: .3; }
  100% { transform: translateY(0);    opacity: 1; }
}
/* Wave dividers — sit at the bottom of their parent section, no gap */
.wave-bottom {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  pointer-events: none;
}
.wave-bottom svg { display: block; width: 100%; }

/* ─── HERO PARTICLES ─── */
.hero-particles {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute;
  bottom: -60px;
  width: 10px; height: 14px;
  background: var(--willow);
  border-radius: 50% 0 50% 0;
  opacity: 0;
  animation: floatUp linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0)   rotate(0deg)   scale(1);   opacity: 0; }
  10%  { opacity: 0.18; }
  85%  { opacity: 0.12; }
  100% { transform: translateY(-105vh) rotate(360deg) scale(0.6); opacity: 0; }
}

/* ─── ABOUT ─── */
#about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.about-right { display: flex; }
.about-viz { flex: 1; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 18px; }
.about-text p { color: var(--gray); margin-bottom: 14px; font-size: 1rem; }
.about-text strong { color: var(--turf); }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip {
  font-family: 'Open Sauce Sans', 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .04em;
  color: var(--turf); background: rgba(142,198,119,.14);
  border: 1px solid rgba(142,198,119,.3);
  padding: 6px 14px; border-radius: 50px;
}
/* ─── ABOUT INTERACTIVE TABS ─── */
.about-tabs { margin-top: 28px; }

.atab-buttons {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 0;
}
.atab-btn {
  font-family: 'Open Sauce Sans', 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 50px 50px 0 0;
  border: 1.5px solid rgba(20,124,63,.2);
  border-bottom: none;
  background: transparent; color: var(--gray);
  cursor: pointer; transition: background .2s, color .2s, border-color .2s;
  position: relative; bottom: -1px;
}
.atab-btn:hover { background: rgba(142,198,119,.12); color: var(--turf); }
.atab-btn.active {
  background: var(--white); color: var(--turf);
  border-color: var(--willow);
  border-bottom-color: var(--white);
  z-index: 1;
}

.atab-panels {
  background: var(--white);
  border: 1.5px solid var(--willow);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  padding: 28px 28px 24px;
  position: relative; min-height: 180px;
}
.atab-panel {
  display: none;
  animation: tabFadeIn .3s ease;
}
.atab-panel.active { display: block; }
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.atab-stat {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem; font-weight: 900;
  color: var(--turf); line-height: 1; margin-bottom: 10px;
}
.atab-lead {
  font-size: .97rem; color: var(--black);
  font-weight: 500; margin-bottom: 14px; line-height: 1.6;
}
.atab-list {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
}
.atab-list li {
  font-size: .86rem; color: var(--gray); padding-left: 18px;
  position: relative; line-height: 1.5;
}
.atab-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--willow); font-size: .8rem;
}
.atab-list li em { color: var(--turf); font-style: normal; font-weight: 600; }

/* ─── ABOUT VISUALIZATION ─── */
.about-viz {
  background: var(--white);
  border: 1.5px solid rgba(20,124,63,.12);
  border-radius: var(--radius);
  padding: 28px 28px 20px;
}
.viz-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--black); margin-bottom: 4px;
}
.viz-subtitle {
  font-family: 'Open Sauce Sans','Montserrat',sans-serif;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--willow); margin-bottom: 24px;
}
.viz-row {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  cursor: pointer; transition: background .2s, transform .15s;
  margin-bottom: 6px; position: relative;
  text-decoration: none; color: inherit;
}
.viz-row:hover { background: rgba(142,198,119,.1); transform: translateX(4px); }
.viz-row.accent-row:hover { background: rgba(20,124,63,.07); }
.viz-row.danger-row:hover { background: rgba(220,80,60,.06); }

.viz-meta { width: 90px; flex-shrink: 0; }
.viz-num {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--turf); line-height: 1.1;
}
.accent-row .viz-num { color: var(--turf); }
.danger-row .viz-num { color: #c0392b; }
.viz-label {
  display: block;
  font-size: .7rem; color: var(--gray);
  font-family: 'Open Sauce Sans','Montserrat',sans-serif;
  font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
}

.viz-bar-wrap {
  flex: 1; display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,.05); border-radius: 50px;
  height: 10px; position: relative; overflow: visible;
}
.viz-bar {
  height: 100%; border-radius: 50px;
  width: 0; transition: width 1.2s cubic-bezier(.22,1,.36,1);
}
.viz-bar.willow      { background: var(--willow); }
.viz-bar.willow-dark { background: #6aad4f; }
.viz-bar.turf        { background: var(--turf); }
.viz-bar.danger      { background: #e05c3a; }

.viz-pct {
  position: absolute; right: -32px;
  font-family: 'Montserrat',sans-serif;
  font-size: .68rem; font-weight: 700;
  color: var(--gray); width: 30px; text-align: right;
}

/* Tooltip */
.viz-tooltip {
  display: none;
  position: absolute; bottom: calc(100% + 8px); left: 0; right: 0;
  background: var(--black); color: rgba(255,249,239,.9);
  font-size: .8rem; line-height: 1.55;
  padding: 10px 14px; border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
  z-index: 10; pointer-events: none;
}
.viz-tooltip.show { display: block; animation: tipFade .2s ease; }
@keyframes tipFade { from { opacity:0; transform:translateY(4px); } to { opacity:1; transform:none; } }

.about-food-img {
  border-radius: var(--radius); overflow: hidden; margin-bottom: 14px;
}
.about-food-img img {
  width: 100%; height: 200px; object-fit: cover;
  display: block; transition: transform .5s;
}
.about-food-img:hover img { transform: scale(1.03); }
.about-stats { display: flex; flex-direction: column; gap: 12px; }
.big-stat {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 22px 28px; border-left: 3px solid var(--willow-pale);
  transition: transform .25s;
}
.big-stat:hover { transform: translateX(7px); }
.big-stat.accent { background: rgba(142,198,119,.18); border-left-color: var(--willow); }
.big-stat.dark    { background: var(--turf); border-left-color: var(--willow); }
.big-num {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem; font-weight: 900; color: var(--turf); line-height: 1;
}
.big-stat.dark .big-num  { color: var(--willow); }
.big-stat.accent .big-num{ color: var(--turf); }
.big-label { display: block; font-size: .87rem; color: var(--gray); margin-top: 5px; }
.big-stat.dark .big-label { color: rgba(255,249,239,.7); }

/* ─── PROBLEM ─── */
#problem { background: var(--turf); padding: 80px 0 120px; color: var(--white); position: relative; }
.problem-wave-top, .problem-wave-bottom { line-height: 0; }
.problem-wave-top  { margin-bottom: -1px; }
.problem-wave-top  svg, .problem-wave-bottom svg { display: block; width: 100%; }
.problem-wave-bottom { margin-top: -1px; }
#problem .section-header h2 { color: var(--white); }
#problem .section-intro { color: rgba(255,249,239,.68); }
.problem-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-bottom: 56px; }
.problem-card {
  background: rgba(255,249,239,.05); border: 1px solid rgba(255,249,239,.1);
  border-radius: var(--radius); padding: 32px 24px;
  transition: background .2s, transform .2s;
}
.problem-card:hover { background: rgba(255,249,239,.09); transform: translateY(-4px); }
.problem-icon { font-size: 2rem; margin-bottom: 16px; }
.problem-card h3 { font-family: 'Montserrat', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.problem-card p  { color: rgba(255,249,239,.68); font-size: .92rem; line-height: 1.7; }
.pull-quote {
  font-family: 'Montserrat', sans-serif; font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 700;
  color: var(--willow-light); text-align: center;
  max-width: 720px; margin: 0 auto; padding: 0 16px;
}
.pull-quote::before {
  content: '\201C'; display: block; font-size: 4.5rem; line-height: .6;
  color: rgba(142,198,119,.22); font-style: normal; margin-bottom: 14px;
}

/* ─── SHIFT ─── */
#shift { padding: 100px 0; background: var(--white); }
.shift-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.shift-visual-col { display: flex; flex-direction: column; gap: 28px; }
.shift-img-wrap { border-radius: var(--radius); overflow: hidden; }
.shift-img-wrap img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s; }
.shift-img-wrap:hover img { transform: scale(1.03); }

.shift-donut-row { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.donut-wrap { position: relative; width: 180px; height: 180px; flex-shrink: 0; }
.donut { width: 180px; height: 180px; }
.donut-fill { stroke-dasharray: 201 503; }
.donut-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.donut-num { font-family: 'Montserrat', sans-serif; font-size: 2.6rem; font-weight: 900; color: var(--turf); line-height: 1; }
.donut-num sup { font-size: 1.3rem; vertical-align: super; }
.donut-lbl {
  font-family: 'Open Sauce Sans', 'Montserrat', sans-serif;
  font-size: .65rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--turf); margin-top: 4px;
}
.shift-legend { display: flex; flex-direction: column; gap: 10px; }
.leg-item {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Open Sauce Sans', 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 600; color: var(--gray);
}
.leg-dot { width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0; }
.leg-dot.green { background: var(--willow); }
.leg-dot.gray  { background: #ddd; border: 1px solid #ccc; }

.shift-text h2 { font-size: clamp(1.8rem,3vw,2.4rem); margin-bottom: 16px; }
.shift-intro { color: var(--gray); margin-bottom: 14px; font-size: 1rem; }
.shift-text p { color: var(--gray); margin-bottom: 14px; font-size: 1rem; }
.shift-text strong { color: var(--turf); }
.shift-text em { color: var(--turf); font-style: italic; }

.food-plates { display: flex; gap: 12px; align-items: stretch; margin-top: 28px; }
.plate-card { flex: 1; background: var(--gray-light); border-radius: var(--radius); padding: 18px; border: 1.5px solid transparent; }
.plate-card.featured { background: rgba(142,198,119,.12); border-color: var(--willow); }
.plate-tag { font-family: 'Open Sauce Sans','Montserrat',sans-serif; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--turf); margin-bottom: 12px; }
.plate-rows { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.pr { font-size: .76rem; padding: 5px 9px; border-radius: 5px; font-weight: 500; color: var(--turf); }
.pr.glow  { background: rgba(142,198,119,.3); }
.pr.grow  { background: rgba(20,124,63,.1); }
.pr.go    { background: rgba(200,170,50,.15); color: #6b5500; }
.plate-note { font-size: .7rem; color: var(--gray); line-height: 1.5; }
.plate-plus { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 900; color: var(--willow); display: flex; align-items: center; flex-shrink: 0; }

/* ─── SCHOOLS ─── */
#schools { padding: 100px 0; background: var(--black); }
#schools .section-label { color: var(--willow); }
#schools h2 { color: var(--white); }
#schools .section-intro { color: rgba(255,249,239,.6); }
.schools-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.school-card {
  display: flex; gap: 22px; align-items: flex-start;
  background: rgba(255,249,239,.04); border: 1px solid rgba(255,249,239,.08);
  border-radius: var(--radius); padding: 32px 28px;
  transition: background .2s, transform .2s, border-color .2s;
}
.school-card:hover { background: rgba(255,249,239,.07); transform: translateY(-4px); border-color: rgba(142,198,119,.3); }
.school-logo-wrap {
  width: 76px; height: 76px; flex-shrink: 0;
  background: rgba(255,249,239,.95); border-radius: 50%;
  padding: 8px; display: flex; align-items: center; justify-content: center;
}
.school-logo { width: 58px; height: 58px; object-fit: contain; }
.school-body h3 { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.school-type { font-family: 'Open Sauce Sans','Montserrat',sans-serif; font-size: .7rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--willow); margin-bottom: 10px; display: block; }
.school-body p { color: rgba(255,249,239,.6); font-size: .9rem; }

/* ─── PLATE ICON (balanced both cards) ─── */
.plate-icon-wrap {
  display: flex; align-items: center; justify-content: center;
  height: 110px; margin: 10px 0 14px;
}
.plate-icon-wrap img { max-height: 100px; width: auto; }

/* ProVeg visual circle */
.plate-icon-wrap.proveg { flex-direction: column; gap: 6px; }
.proveg-circle {
  width: 90px; height: 90px; border-radius: 50%;
  background: conic-gradient(rgba(142,198,119,.55) 0 50%, rgba(20,124,63,.25) 50% 75%, rgba(200,170,50,.25) 75% 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(142,198,119,.3);
}
.proveg-half {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: .62rem;
  color: var(--turf); text-align: center; line-height: 1.2;
}

/* ─── EAT THE RAINBOW ─── */
.rainbow-section {
  margin-bottom: 52px;
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 36px 32px 32px;
}
.rainbow-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; font-weight: 900;
  color: var(--black); margin-bottom: 6px;
}
.rainbow-sub { font-size: .93rem; color: var(--gray); margin-bottom: 28px; max-width: 560px; }
.rainbow-row { display: grid; grid-template-columns: repeat(6,1fr); gap: 14px; }
.rainbow-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  background: var(--white); border-radius: var(--radius);
  padding: 18px 10px 14px; border-top: 4px solid var(--rc);
  transition: transform .2s, box-shadow .2s;
}
.rainbow-item:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.rainbow-img { height: 64px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.rainbow-img img { max-height: 64px; max-width: 64px; object-fit: contain; }
.rainbow-color {
  font-family: 'Montserrat', sans-serif; font-size: .75rem; font-weight: 800;
  color: var(--rc); margin-bottom: 5px; letter-spacing: .04em; text-transform: uppercase;
}
.rainbow-eg { font-size: .7rem; color: var(--gray); line-height: 1.4; margin-bottom: 7px; }
.rainbow-benefit {
  font-family: 'Open Sauce Sans','Montserrat',sans-serif;
  font-size: .66rem; font-weight: 600; color: var(--turf);
  letter-spacing: .04em; text-transform: uppercase;
}

/* ─── REFERENCES ─── */
#references { padding: 80px 0; background: var(--white); border-top: 1px solid rgba(20,124,63,.08); }
.ref-inner h2 { font-size: clamp(1.6rem,2.5vw,2.2rem); margin-bottom: 32px; }
.ref-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.ref-item {
  display: flex; gap: 14px; background: var(--gray-light);
  border-radius: var(--radius); padding: 20px; transition: transform .2s;
}
.ref-item:hover { transform: translateY(-3px); }
.ref-num {
  font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 900;
  color: var(--willow); flex-shrink: 0; line-height: 1; margin-top: 2px;
}
.ref-claim { font-size: .85rem; color: var(--black); font-weight: 500; margin-bottom: 8px; line-height: 1.5; }
.ref-link {
  font-family: 'Open Sauce Sans','Montserrat',sans-serif;
  font-size: .75rem; font-weight: 600; color: var(--turf);
  text-decoration: underline; text-decoration-color: var(--willow);
  text-underline-offset: 3px; transition: color .2s;
}
.ref-link:hover { color: var(--turf-dark); }

/* ─── TIPS ─── */
#tips {
  padding: 100px 0;
  background: var(--white);
  border-top: 2px solid rgba(142,198,119,0.25);
}
.tips-img-banner { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 44px; border-radius: var(--radius); overflow: hidden; }
.tips-img-banner img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .5s; }
.tips-img-banner img:hover { transform: scale(1.04); }
.tips-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.tip-card {
  background: var(--gray-light); border-radius: var(--radius);
  padding: 32px 22px; border-top: 3px solid var(--willow);
  transition: transform .2s, box-shadow .2s;
}
.tip-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(20,124,63,.1); }
.tip-num { font-family: 'Montserrat', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--willow); opacity: .32; line-height: 1; margin-bottom: 18px; }
.tip-card h3 { font-family: 'Montserrat', sans-serif; font-size: .98rem; font-weight: 800; color: var(--turf); margin-bottom: 10px; }
.tip-card p { font-size: .87rem; color: var(--gray); line-height: 1.7; }

/* ─── PHASES ─── */
#phases { padding: 100px 0 140px; background: var(--turf); color: var(--white); position: relative; }
#phases h2 { color: var(--white); }
.phases-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 48px; }
.phase-card {
  background: rgba(255,249,239,.06); border: 1px solid rgba(255,249,239,.1);
  border-radius: var(--radius); overflow: hidden;
  transition: background .2s, transform .2s;
}
.phase-card:hover { background: rgba(255,249,239,.1); transform: translateY(-4px); }
.phase-img { width: 100%; height: 150px; overflow: hidden; }
.phase-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(.9); transition: transform .5s; }
.phase-card:hover .phase-img img { transform: scale(1.05); }
.phase-body { padding: 22px 20px; }
.phase-n { font-family: 'Montserrat', sans-serif; font-size: 2rem; font-weight: 900; color: var(--willow); opacity: .35; line-height: 1; margin-bottom: 10px; }
.phase-body h3 { font-family: 'Montserrat', sans-serif; font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.phase-body p { font-size: .83rem; color: rgba(255,249,239,.62); line-height: 1.65; }

/* ─── FAQ ─── */
#faq { padding: 100px 0; background: var(--gray-light); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 72px; align-items: start; }
.faq-left h2 { font-size: clamp(1.8rem,2.8vw,2.4rem); margin-bottom: 14px; }
.faq-left p { color: var(--gray); font-size: .97rem; line-height: 1.75; }
.faq-right { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; border: 1.5px solid transparent; transition: border-color .2s;
}
.faq-item.open { border-color: var(--willow); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 19px 22px; font-family: 'Montserrat', sans-serif;
  font-size: .9rem; font-weight: 700; color: var(--black);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--turf); flex-shrink: 0; line-height: 1; transition: transform .3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 18px; }
.faq-a p { font-size: .91rem; color: var(--gray); line-height: 1.75; }

/* ─── GET INVOLVED ─── */
#involved { padding: 100px 0; background: linear-gradient(160deg, #0e5c2e 0%, var(--turf) 40%, #1b9a52 100%); text-align: center; }
.involved-inner { max-width: 860px; margin: 0 auto; }
.involved-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,249,239,.1); border: 1px solid rgba(255,249,239,.18);
  border-radius: 50px; padding: 7px 18px; margin-bottom: 28px;
  font-family: 'Open Sauce Sans','Montserrat',sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  color: rgba(255,249,239,.75); flex-wrap: wrap; justify-content: center;
}
.ibadge-x { color: var(--willow); font-size: .9rem; }
#involved h2 { font-size: clamp(2rem,4.5vw,3.2rem); color: var(--white); margin-bottom: 16px; }
.involved-inner > p { color: rgba(255,249,239,.72); font-size: 1.04rem; max-width: 600px; margin: 0 auto 44px; line-height: 1.8; }
.involved-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 44px; text-align: left; }
.inv-card {
  background: rgba(255,249,239,.07); border: 1px solid rgba(255,249,239,.12);
  border-radius: var(--radius); padding: 26px 22px; transition: background .2s, transform .2s;
}
.inv-card:hover { background: rgba(255,249,239,.12); transform: translateY(-4px); }
.inv-icon { font-size: 1.7rem; margin-bottom: 12px; }
.inv-card h4 { font-family: 'Montserrat', sans-serif; font-size: .92rem; font-weight: 800; color: var(--white); margin-bottom: 7px; }
.inv-card p { font-size: .84rem; color: rgba(255,249,239,.62); line-height: 1.65; }

/* ─── FOOTER ─── */
#footer { background: #0a0a0a; color: rgba(255,249,239,.5); padding: 60px 0 28px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; margin-bottom: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,249,239,.07); flex-wrap: wrap; }
.footer-logo { height: 32px; margin-bottom: 12px; filter: brightness(0) invert(.85); }
.footer-brand p { font-size: .84rem; line-height: 1.7; }
.footer-brand strong { color: rgba(255,249,239,.75); font-weight: 600; }
.footer-nav { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-family: 'Open Sauce Sans','Montserrat',sans-serif; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,249,239,.3); margin-bottom: 4px; }
.footer-col a { font-size: .84rem; color: rgba(255,249,239,.48); transition: color .2s; }
.footer-col a:hover { color: var(--willow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .76rem; color: rgba(255,249,239,.22); }
.footer-tagline { font-family: 'Montserrat', sans-serif; font-style: italic; font-weight: 700; color: rgba(142,198,119,.35) !important; }

/* ─── SIDE NAV ─── */
.side-nav {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
  /* smooth context switch handled by child transitions */
}
.sn-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: right;
  font-family: 'Open Sauce Sans', 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  /* readable on light backgrounds by default */
  color: rgba(20,20,20,0.35);
  text-decoration: none;
  padding: 5px 0;
  /* JS lerps color on every scroll frame — no CSS transition */
  transition: none;
  white-space: nowrap;
}
.sn-item::after {
  content: '';
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
  transition: width 0.45s cubic-bezier(.22,1,.36,1), background 0.6s ease, color 0.6s ease;
}
.sn-item:hover {
  color: rgba(20,124,63,0.75);
}
.sn-item.active {
  color: var(--turf);
}
.sn-item.active::after {
  width: 36px;
  background: var(--willow);
}

/* Colors fully JS-driven — only line width transitions via CSS */

/* Desktop CTA in navbar */
.nav-desktop-cta {
  display: inline-block;
  font-size: 0.78rem;
  padding: 9px 20px;
}

/* ─── SCROLL REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── DESKTOP: hide top nav links, show side nav ─── */
@media (min-width: 961px) {
  .nav-links { display: none !important; }
  .nav-toggle { display: none !important; }
}
@media (max-width: 960px) {
  .side-nav { display: none; }
  .nav-desktop-cta { display: none; }
}

/* ─── RESPONSIVE: TABLET ─── */
@media (max-width: 960px) {
  .hero-img-wrap { width: 50%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .shift-grid { grid-template-columns: 1fr; gap: 40px; }
  .shift-visual-col { order: 0; }
  .shift-donut-row { justify-content: center; }
  .schools-row { grid-template-columns: 1fr; }
  .rainbow-row { grid-template-columns: repeat(3,1fr); }
  .ref-grid { grid-template-columns: 1fr 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  .tips-img-banner { grid-template-columns: 1fr 1fr; }
  .tips-img-banner img:last-child { display: none; }
  .phases-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .involved-cards { grid-template-columns: 1fr 1fr; }
}

/* ─── RESPONSIVE: MOBILE ─── */
@media (max-width: 640px) {
  /* Navbar */
  #navbar { background: rgba(20,124,63,.97); backdrop-filter: blur(12px); padding: 14px 0; }
  .nav-toggle { display: flex; }
  .nav-logo img { filter: none; }
  .nav-links {
    display: none; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255,249,239,.98);
    padding: 8px 0 16px; box-shadow: 0 8px 24px rgba(0,0,0,.15);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--black) !important; display: block; padding: 12px 24px; font-size: .9rem; }
  .nav-links .nav-cta { margin: 8px 20px 0; border-radius: 50px; text-align: center; }

  /* Hero */
  .hero-img-wrap { display: none; }
  .hero-inner { padding: 120px 20px 80px; }
  .hero-badge { font-size: .7rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; padding: 18px 20px; gap: 14px; }
  .hstat { padding: 0; }
  .hstat-divider { width: 40px; height: 1px; }
  .hero-scroll { display: none; }

  /* Sections */
  .problem-grid { grid-template-columns: 1fr; }
  .shift-donut-row { flex-direction: column; align-items: center; }
  .food-plates { flex-direction: column; }
  .plate-plus { align-self: center; transform: rotate(90deg); }
  .rainbow-row { grid-template-columns: repeat(2,1fr); }
  .ref-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .tips-img-banner { grid-template-columns: 1fr; }
  .tips-img-banner img:not(:first-child) { display: none; }
  .phases-grid { grid-template-columns: 1fr; }
  .involved-cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { flex-direction: column; }
  .footer-nav { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }

  /* General */
  .section-header { margin-bottom: 40px; }
  #about, #shift, #tips, #faq, #involved { padding: 72px 0; }
  #schools, #phases { padding: 72px 0; }
}
