/* ================================================================
   FOOD FREEDOM AMERICA — v2
   Design: Institutional Authority + Human Urgency
   Fonts: Libre Baskerville (display) + Libre Franklin (body)
   Palette: Deep Navy / White / Amber accent
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Libre+Franklin:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  --navy:        #0c2340;
  --navy-mid:    #163d6e;
  --navy-light:  #e8edf4;
  --amber:       #c85f0a;
  --amber-light: #f5e6d8;
  --white:       #ffffff;
  --off-white:   #f4f6f9;
  --text:        #1c1c1c;
  --muted:       #5c6878;
  --border:      #d8dee8;
  --shadow-sm:   0 1px 3px rgba(12,35,64,0.08);
  --shadow-md:   0 4px 16px rgba(12,35,64,0.10);
  --shadow-lg:   0 12px 40px rgba(12,35,64,0.14);
  --radius:      3px;
  --ff-display:  'Libre Baskerville', Georgia, serif;
  --ff-body:     'Libre Franklin', system-ui, sans-serif;
  --max-w:       1160px;
  --pad:         clamp(1.5rem, 5vw, 5rem);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy-mid); }
ul { list-style: none; }

/* ── LAYOUT ── */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }
.section--cream { background: var(--off-white); }
.section--navy  { background: var(--navy); }

/* ── TYPOGRAPHY SCALE ── */
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 0.75rem;
}
.section--navy .eyebrow { color: rgba(255,255,255,0.5); }

h1, .h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
h2, .h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.015em;
}
h3, .h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}
h4, .h4 {
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: var(--muted);
  max-width: 52ch;
}
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--white); }
.section--navy .lead { color: rgba(255,255,255,0.7); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.18s ease;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: var(--white);
  padding: 0.875rem 2rem;
}
.btn--primary:hover {
  background: #b05208;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(200,95,10,0.35);
}
.btn--outline {
  border-color: var(--white);
  color: var(--white);
  padding: 0.875rem 2rem;
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--ghost {
  border-color: var(--navy);
  color: var(--navy);
  padding: 0.75rem 1.5rem;
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--lg { padding: 1.125rem 2.5rem; font-size: 1rem; }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  height: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-nav .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
}
.nav-logo__main {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.nav-logo__sub {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-links .nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  margin-left: 0.5rem;
  padding: 0.45rem 1.25rem;
  font-weight: 700;
}
.nav-links .nav-cta:hover { background: #b05208; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--white);
}
.nav-toggle svg { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://static.wixstatic.com/media/15ca23_e95178b18bcd4d688f5b06597b943c11~mv2.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12,35,64,0.93) 0%,
    rgba(12,35,64,0.85) 45%,
    rgba(12,35,64,0.55) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  max-width: 680px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.7s ease both;
}
.hero h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.hero .lead {
  color: rgba(255,255,255,0.78);
  max-width: 50ch;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}

/* ── ZIP FINDER — the hero element ── */
.zip-finder {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2rem 1.75rem;
  max-width: 540px;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.7s 0.2s ease both;
}
.zip-finder__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: block;
}
.zip-finder__row {
  display: flex;
  gap: 0.5rem;
}
.zip-finder__input {
  flex: 1;
  height: 52px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1rem;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.zip-finder__input:focus { border-color: var(--navy-mid); }
.zip-finder__input::placeholder { color: #a0aab5; font-weight: 400; }
.zip-finder__btn {
  height: 52px;
  padding: 0 1.75rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}
.zip-finder__btn:hover { background: var(--navy-mid); }
.zip-finder__note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.6rem;
}
.zip-finder__note a { color: var(--amber); text-decoration: none; font-weight: 600; }

/* ── THREE PILLARS — top of page, below hero ── */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--amber);
}
.pillar {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.18s;
  position: relative;
}
.pillar:last-child { border-right: none; }
.pillar:hover { background: var(--off-white); }
.pillar__num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  font-family: var(--ff-display);
  line-height: 1;
  margin-bottom: 0.75rem;
  display: block;
}
.pillar h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-family: var(--ff-body);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.pillar p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.pillar__arrow {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border);
  transition: color 0.18s, transform 0.18s;
}
.pillar:hover .pillar__arrow {
  color: var(--amber);
  transform: translateY(-50%) translateX(3px);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 64px 0;
  border-top: 4px solid var(--amber);
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide: horizontal;
}
.stat-item {
  padding: 0 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-item__num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-item__num sup {
  font-size: 0.5em;
  vertical-align: super;
  color: var(--amber);
}
.stat-item__label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.stat-item__source {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.3);
  margin-top: 0.25rem;
  display: block;
}

/* ── PHOTO + TEXT SPLIT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split__photo {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.split__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.split:hover .split__photo img { transform: scale(1.02); }
.split__body {
  padding: clamp(2.5rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
}
.split__body h2 { margin-bottom: 1rem; }
.split__body .lead { margin-bottom: 2rem; }

/* ── RESOURCE CARDS ── */
.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.resource-card {
  background: var(--white);
  padding: 2rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.15s;
  position: relative;
}
.resource-card:hover { background: var(--off-white); }
.resource-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--amber);
  opacity: 0;
  transition: opacity 0.18s;
}
.resource-card:hover::after { opacity: 1; }
.resource-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
  display: block;
}
.resource-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.resource-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.resource-card__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--navy-mid);
  text-decoration: none;
}

/* ── DATA TABLES ── */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.data-table thead th {
  background: var(--navy);
  color: var(--white);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.data-table tbody td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover td { background: var(--off-white); }
.table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.badge {
  display: inline-block;
  background: var(--navy-light);
  color: var(--navy-mid);
  padding: 0.2rem 0.65rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── PATHWAY STRIP ── */
.pathway-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pathway-item {
  background: var(--white);
  padding: 2rem 1.5rem;
  position: relative;
}
.pathway-item__num {
  font-family: var(--ff-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.5rem;
  display: block;
}
.pathway-item h4 {
  font-size: 0.9375rem;
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
}
.pathway-item ul { list-style: none; }
.pathway-item ul li {
  font-size: 0.8125rem;
  color: var(--muted);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--off-white);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.pathway-item ul li::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  position: relative;
  top: -1px;
}
.pathway-item ul li a {
  color: var(--navy-mid);
  text-decoration: none;
}
.pathway-item ul li a:hover { text-decoration: underline; }

/* ── INITIATIVE GRID ── */
.initiative-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.initiative-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
}
.initiative-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.initiative-card:hover .initiative-card__img { transform: scale(1.04); }
.initiative-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,35,64,0.88) 0%, rgba(12,35,64,0.1) 60%);
}
.initiative-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: var(--white);
}
.initiative-card__num {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 700;
  display: block;
  margin-bottom: 0.3rem;
}
.initiative-card h4 {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 0.9375rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}
.initiative-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ── PERSON CARD ── */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.person-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.person-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 1.125rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.person-card__name {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.1rem;
}
.person-card__role {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
  display: block;
}
.person-card p {
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── PARTNER CARD ── */
.partner-card {
  max-width: 480px;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
.partner-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.partner-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.partner-card a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  text-decoration: none;
}
.partner-card a:hover { text-decoration: underline; }

/* ── INLINE LIST LINKS ── */
.link-list { list-style: none; }
.link-list li {
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  font-size: 0.875rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.link-list li::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--amber);
  flex-shrink: 0;
  position: relative; top: -1px;
}
.link-list a { color: var(--navy-mid); text-decoration: none; }
.link-list a:hover { text-decoration: underline; color: var(--navy); }

/* ── INFO BOX ── */
.info-box {
  border-left: 3px solid var(--amber);
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1rem;
}
.info-box h4 { margin-bottom: 0.6rem; font-size: 0.8125rem; }

/* ── DONATE SECTION ── */
.donate-band {
  background: var(--navy);
  padding: 80px 0;
  border-top: 4px solid var(--amber);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.donate-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(200,95,10,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.donate-band > * { position: relative; }
.donate-band h2 { color: var(--white); margin-bottom: 1rem; }
.donate-band .lead { color: rgba(255,255,255,0.65); margin: 0 auto 2.5rem; }
.donate-address {
  margin-top: 2.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.9;
}

/* ── NEWSLETTER ── */
.newsletter {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}
.newsletter__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.newsletter h3 { margin-bottom: 0.4rem; font-size: 1.125rem; }
.newsletter p { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.25rem; }
.newsletter__form {
  display: flex;
  gap: 0.5rem;
}
.newsletter__form input {
  flex: 1;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 1rem;
  font-family: var(--ff-body);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.15s;
}
.newsletter__form input:focus { border-color: var(--navy-mid); }
.newsletter__form button {
  height: 48px;
  padding: 0 1.5rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.18s;
}
.newsletter__form button:hover { background: var(--navy-mid); }

/* ── FOOTER ── */
.site-footer {
  background: #07182e;
  color: rgba(255,255,255,0.4);
  padding: 40px 0;
  font-size: 0.8125rem;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer__links { display: flex; gap: 0; flex-wrap: wrap; }
.site-footer__links a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  padding: 0.25rem 0.875rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color 0.15s;
}
.site-footer__links a:first-child { padding-left: 0; }
.site-footer__links a:hover { color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 128px 0 72px;
  border-bottom: 3px solid var(--amber);
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero .lead { color: rgba(255,255,255,0.65); }

/* ── TAB SYSTEM ── */
.tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 2.5rem;
}
.tabs__btn {
  background: none;
  border: none;
  padding: 0.875rem 1.5rem;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.15s, border-color 0.15s;
  letter-spacing: 0.01em;
}
.tabs__btn.active, .tabs__btn:hover {
  color: var(--navy);
  border-bottom-color: var(--amber);
}
.tabs__panel { display: none; }
.tabs__panel.active { display: block; }

/* ── COLUMN LAYOUTS ── */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── CHIP LIST ── */
.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  font-size: 0.8125rem;
  color: var(--navy-mid);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.15s;
}
.chip:hover { border-color: var(--navy); color: var(--navy); background: var(--off-white); }

/* ── NUTRITION SPECIFIC ── */
.nutrient-block { padding: 1.5rem; border: 1px solid var(--border); border-radius: var(--radius); }
.nutrient-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--amber);
  margin-bottom: 1rem;
}
.nutrient-block ul { list-style: none; }
.nutrient-block li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--off-white);
  color: var(--text);
}
.nutrient-block li:last-child { border-bottom: none; }
.nutrient-block li span { color: var(--muted); font-weight: 500; }

.highlight-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}
.highlight-box__stat {
  text-align: center;
  flex-shrink: 0;
  min-width: 110px;
}
.highlight-box__num {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.highlight-box__unit {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.3rem;
}
.highlight-box h3 { color: var(--white); margin-bottom: 0.75rem; font-size: 1.25rem; }
.highlight-box p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 3rem 0; }

/* ── SCROLL ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .cols-3, .cols-4, .initiative-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat-item { border-right: none; padding: 0; }
  .pillars { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split__photo { min-height: 280px; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cols-2, .cols-3, .cols-4, .initiative-grid,
  .pathway-strip, .resource-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: fixed;
    top: 64px; left: 0; right: 0; background: var(--navy); padding: 1.5rem;
    gap: 0.25rem; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .zip-finder__row { flex-direction: column; }
  .highlight-box { flex-direction: column; text-align: center; }
  .newsletter__form { flex-direction: column; }
  .site-footer__inner { flex-direction: column; text-align: center; }
  .pillar__arrow { display: none; }
}
