/* ============================================================
   TOIVO — Family & Community Initiative
   style.css — shared across all pages
   ============================================================ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:      #054C5A;
  --teal-deep: #022f39;
  --teal-mid:  #0a6b7e;
  --teal-light:#e6f4f7;
  --forest:    #3a5e0a;
  --orange:    #C05B14;
  --amber:     #E8940A;
  --sand:      #F2E8D0;
  --sand-deep: #e4d4b0;
  --cream:     #FAF6EE;
  --white:     #FFFFFF;
  --ink:       #16130d;
  --ink-mid:   #3d3828;
  --ink-soft:  #7a7060;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'DM Sans', sans-serif;
  --radius:    4px;
  --shadow:    0 4px 24px rgba(2,47,57,0.12);
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.2; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ── Utility ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1.5px;
  background: var(--orange);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 500; color: var(--teal);
  line-height: 1.15; margin-bottom: 18px;
}

.section-lead {
  font-size: 16px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.8;
  max-width: 620px;
}

.color-strip {
  height: 3px;
  background: linear-gradient(90deg, var(--teal) 0%, var(--forest) 35%, var(--orange) 75%, var(--amber) 100%);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  cursor: pointer; border: none;
  transition: all 0.22s;
  text-decoration: none;
}
.btn-primary { background: var(--orange); color: white; }
.btn-primary:hover { background: #9f4c10; transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn-sand { background: var(--sand); color: var(--teal); }
.btn-sand:hover { background: var(--sand-deep); }
.btn-donate {
  background: var(--amber); color: white;
  padding: 15px 36px;
  font-size: 14px;
}
.btn-donate:hover { background: #c97a00; transform: translateY(-2px); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: 72px;
  background: var(--teal-deep);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.28); }

.nav-inner {
  max-width: 1160px; margin: 0 auto; height: 100%;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-img {
  height: 48px; width: auto; object-fit: contain;
}
.nav-logo-divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.2);
}
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-family: var(--serif);
  font-size: 17px; font-weight: 600;
  color: white; letter-spacing: 3px;
  text-transform: uppercase; line-height: 1;
}
.nav-logo-sub {
  font-size: 9px; font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px; text-transform: uppercase;
}

.nav-links {
  display: flex; align-items: center;
  gap: 28px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--amber); }
.nav-links a.active { color: white; }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--amber);
}
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #9f4c10 !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 22px;
  height: 1.5px; background: white;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0;
  background: var(--teal-deep);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 5%;
  z-index: 999;
  flex-direction: column; gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.78);
  font-size: 14px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--amber); }
.mobile-nav a.active { color: white; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--teal-deep);
  padding: 64px 5% 0;
}

.footer-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-logo {
  display: flex; align-items: center;
  gap: 12px; margin-bottom: 16px;
}
.footer-logo-img { height: 44px; width: auto; }
.footer-logo-text { display: flex; flex-direction: column; gap: 2px; }
.footer-logo-name {
  font-family: var(--serif);
  font-size: 15px; font-weight: 600;
  color: white; letter-spacing: 3px;
  text-transform: uppercase; line-height: 1;
}
.footer-logo-sub {
  font-size: 9px; color: rgba(255,255,255,0.4);
  letter-spacing: 1.5px; text-transform: uppercase;
}
.footer-brand p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.48);
  line-height: 1.75; max-width: 280px;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.52);
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }

.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap;
  gap: 10px; padding: 24px 0;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-tagline {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.18);
}

/* ============================================================
   PAGE HERO (shared across inner pages)
   ============================================================ */
.page-hero {
  background: var(--teal-deep);
  padding: 140px 5% 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 80% 30%, rgba(63,106,8,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(198,100,23,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400; color: white;
  line-height: 1.1; margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--amber); }
.page-hero p {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8; max-width: 580px;
}

/* ============================================================
   HOME — HERO
   ============================================================ */
#home-hero {
  min-height: 100vh;
  background: var(--teal-deep);
  padding-top: 72px;
  display: flex; align-items: stretch;
  position: relative; overflow: hidden;
}
#home-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 20%, rgba(63,106,8,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 500px 500px at 10% 80%, rgba(198,100,23,0.10) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  padding: 100px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px; align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(232,148,10,0.3);
  background: rgba(232,148,10,0.08);
}
.hero-eyebrow::before {
  content: ''; width: 5px; height: 5px;
  background: var(--amber); border-radius: 50%;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 68px);
  color: white; line-height: 1.08;
  font-weight: 400; margin-bottom: 26px;
}
.hero-h1 em { font-style: italic; color: var(--amber); }

.hero-sub {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.82; max-width: 500px;
  margin-bottom: 44px;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero stats card */
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  padding: 36px 28px;
  position: relative;
  animation: slideInRight 0.8s ease 0.2s both;
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}
.hero-card-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.hero-stat { margin-bottom: 20px; }
.hero-stat:last-of-type { margin-bottom: 0; }
.hero-stat-num {
  font-family: var(--serif);
  font-size: 38px; font-weight: 500;
  color: white; line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
  font-size: 12px; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.5;
}
.hero-card-note {
  font-size: 10px; font-style: italic;
  color: rgba(255,255,255,0.28);
  margin-top: 22px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  line-height: 1.5;
}

/* ============================================================
   HOME — SECTIONS
   ============================================================ */

/* Pillars */
.pillars-section { background: var(--cream); padding: 96px 5%; }
.pillars-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 56px;
}
.pillars-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(5,76,90,0.12);
}
.pillar-card {
  background: var(--cream); padding: 44px 32px;
  position: relative; transition: background 0.3s; overflow: hidden;
}
.pillar-card::after {
  content: ''; position: absolute;
  left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--teal);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.3s;
}
.pillar-card:hover { background: var(--sand); }
.pillar-card:hover::after { transform: scaleY(1); }
.pillar-bg-num {
  font-family: var(--serif); font-size: 80px;
  font-weight: 600; color: rgba(5,76,90,0.05);
  line-height: 1; margin-bottom: -20px;
}
.pillar-icon {
  width: 44px; height: 44px; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; margin-bottom: 16px;
}
.pillar-card h3 {
  font-family: var(--serif); font-size: 19px;
  font-weight: 500; color: var(--teal); margin-bottom: 10px;
}
.pillar-card p { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.75; }
.pillar-tag {
  display: inline-block; margin-top: 18px;
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--forest); border-bottom: 1.5px solid var(--forest);
  padding-bottom: 2px;
}

/* Impact band */
.impact-band { background: var(--teal); padding: 96px 5%; }
.impact-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.impact-text .eyebrow { color: var(--amber); }
.impact-text .eyebrow::before { background: var(--amber); }
.impact-text .section-title { color: white; }
.impact-text .section-lead { color: rgba(255,255,255,0.65); max-width: 100%; }

.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(255,255,255,0.1);
}
.stat-cell {
  background: rgba(255,255,255,0.04); padding: 32px 24px;
  transition: background 0.2s;
}
.stat-cell:hover { background: rgba(255,255,255,0.08); }
.stat-cell-num {
  font-family: var(--serif); font-size: 44px;
  font-weight: 500; color: var(--amber);
  line-height: 1; margin-bottom: 8px;
}
.stat-cell-label { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.stat-cell-note { font-size: 10px; color: rgba(255,255,255,0.28); margin-top: 5px; font-style: italic; }

/* CTA band */
.cta-band { background: var(--sand); padding: 80px 5%; }
.cta-band-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 40px; flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--serif); font-size: clamp(24px,3vw,38px);
  font-weight: 500; color: var(--teal); max-width: 560px;
}
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-section { background: white; padding: 96px 5%; }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start; margin-top: 56px;
}

.mission-block {
  padding: 32px; background: var(--sand);
  border-left: 4px solid var(--teal);
  position: relative; margin-bottom: 20px;
}
.mission-block::before {
  content: '"'; font-family: var(--serif);
  font-size: 90px; font-weight: 300;
  color: rgba(5,76,90,0.10);
  position: absolute; top: -8px; left: 16px; line-height: 1;
}
.mission-block .lbl {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px; display: block;
}
.mission-block p {
  font-family: var(--serif); font-size: 17px;
  font-weight: 400; color: var(--teal);
  line-height: 1.65; font-style: italic;
  position: relative; z-index: 1;
}

.about-body { font-size: 15px; font-weight: 300; color: var(--ink-mid); line-height: 1.85; margin-bottom: 28px; }

.diff-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.diff-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(5,76,90,0.10);
  transition: border-color 0.2s, background 0.2s;
}
.diff-item:hover { border-color: var(--teal); background: rgba(5,76,90,0.02); }
.diff-check {
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 11px; margin-top: 1px;
}
.diff-item p { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

/* Theory of Change */
.toc-section { background: var(--teal-deep); padding: 80px 5%; }
.toc-section .eyebrow { color: var(--amber); }
.toc-section .eyebrow::before { background: var(--amber); }
.toc-section .section-title { color: white; margin-bottom: 48px; }
.toc-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  border: 1px solid rgba(255,255,255,0.08);
}
.toc-step {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.toc-step:last-child { border-right: none; }
.toc-step-n {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 10px;
}
.toc-step h4 {
  font-family: var(--serif); font-size: 15px;
  font-weight: 500; color: white; margin-bottom: 8px;
}
.toc-step p { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.6; }
.toc-arrow {
  position: absolute; right: -11px; top: 50%;
  transform: translateY(-50%);
  width: 22px; height: 22px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 10px; z-index: 2;
}
.toc-step:last-child .toc-arrow { display: none; }

/* Team / values */
.values-section { background: var(--cream); padding: 96px 5%; }
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(5,76,90,0.12);
  margin-top: 56px;
}
.value-card {
  background: var(--cream); padding: 40px 28px;
  transition: background 0.3s;
}
.value-card:hover { background: var(--sand); }
.value-icon {
  width: 48px; height: 48px; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px; margin-bottom: 18px;
}
.value-card h3 { font-family: var(--serif); font-size: 20px; color: var(--teal); margin-bottom: 10px; }
.value-card p { font-size: 14px; font-weight: 300; color: var(--ink-soft); line-height: 1.75; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: white; padding: 96px 5%; }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 72px; margin-top: 56px; align-items: start;
}
.contact-info-block p {
  font-size: 15px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.8; margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-row { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); font-size: 15px;
}
.contact-text { font-size: 14px; color: var(--ink-mid); }
.contact-text strong {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 2px;
}
.contact-text a { color: var(--ink-mid); transition: color 0.2s; }
.contact-text a:hover { color: var(--teal); }

/* Form */
.form-card {
  background: var(--cream);
  border: 1px solid rgba(5,76,90,0.12);
  padding: 40px;
}
.form-card h3 {
  font-family: var(--serif); font-size: 22px;
  color: var(--teal); margin-bottom: 24px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal);
}
.form-control {
  width: 100%; padding: 11px 14px;
  font-family: var(--sans); font-size: 14px;
  font-weight: 300; color: var(--ink);
  background: white;
  border: 1.5px solid rgba(5,76,90,0.18);
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
}
.form-control:focus { border-color: var(--teal); }
.form-control::placeholder { color: var(--ink-soft); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* Form states */
.form-success {
  display: none; padding: 24px;
  background: rgba(58,94,10,0.08);
  border: 1.5px solid var(--forest);
  text-align: center;
  color: var(--forest); font-size: 15px; line-height: 1.6;
}
.form-success.show { display: block; }
.form-error {
  display: none; padding: 14px;
  background: rgba(192,91,20,0.08);
  border: 1.5px solid var(--orange);
  color: var(--orange); font-size: 13px;
}
.form-error.show { display: block; }

/* Volunteer section on contact page */
.volunteer-section { background: var(--sand); padding: 80px 5%; }
.volunteer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 72px; align-items: start;
}
.volunteer-inner h2 { font-family: var(--serif); font-size: clamp(26px,3vw,40px); color: var(--teal); margin-bottom: 16px; }
.volunteer-inner > div > p { font-size: 15px; font-weight: 300; color: var(--ink-mid); line-height: 1.8; margin-bottom: 24px; }

/* ============================================================
   DONATE PAGE
   ============================================================ */
.donate-section { background: white; padding: 96px 5%; }
.donate-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; margin-top: 56px; align-items: start;
}
.donate-text h3 { font-family: var(--serif); font-size: 24px; color: var(--teal); margin-bottom: 14px; }
.donate-text p { font-size: 15px; font-weight: 300; color: var(--ink-mid); line-height: 1.8; margin-bottom: 20px; }

.impact-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.impact-item { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--cream); border-left: 3px solid var(--amber); }
.impact-item-icon { font-size: 22px; flex-shrink: 0; }
.impact-item-text strong { display: block; font-size: 14px; color: var(--teal); margin-bottom: 2px; }
.impact-item-text span { font-size: 13px; color: var(--ink-soft); }

.donate-card {
  background: var(--cream); border: 1px solid rgba(5,76,90,0.12);
  padding: 40px;
}
.donate-card h3 { font-family: var(--serif); font-size: 22px; color: var(--teal); margin-bottom: 8px; }
.donate-card > p { font-size: 14px; font-weight: 300; color: var(--ink-mid); line-height: 1.7; margin-bottom: 28px; }

.donate-amounts { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 20px; }
.amount-btn {
  padding: 14px 8px;
  border: 2px solid rgba(5,76,90,0.18);
  background: white; cursor: pointer;
  font-family: var(--serif); font-size: 18px;
  font-weight: 500; color: var(--teal);
  text-align: center; transition: all 0.2s;
}
.amount-btn:hover, .amount-btn.selected {
  border-color: var(--teal); background: var(--teal); color: white;
}

.donate-cta-wrap { display: flex; flex-direction: column; gap: 12px; }
.donate-cta-wrap .btn-donate {
  display: block; text-align: center;
  font-size: 14px; padding: 16px;
}
.donate-note { font-size: 11px; color: var(--ink-soft); text-align: center; line-height: 1.5; }

/* Why section on donate page */
.why-donate { background: var(--teal); padding: 80px 5%; }
.why-donate-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,0.1);
}
.why-cell {
  background: rgba(255,255,255,0.04);
  padding: 36px 28px; text-align: center;
}
.why-cell-num {
  font-family: var(--serif); font-size: 48px;
  font-weight: 500; color: var(--amber); line-height: 1;
  margin-bottom: 10px;
}
.why-cell h4 { font-family: var(--serif); font-size: 16px; color: white; margin-bottom: 8px; }
.why-cell p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.65; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }

  .pillars-header { grid-template-columns: 1fr; gap: 16px; }
  .pillars-grid { grid-template-columns: 1fr; }

  .impact-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .cta-band-inner { flex-direction: column; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .toc-grid { grid-template-columns: 1fr 1fr; }
  .toc-step:nth-child(2) { border-right: none; }
  .toc-step:nth-child(2) .toc-arrow { display: none; }
  .values-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .volunteer-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-row-2 { grid-template-columns: 1fr; }

  .donate-layout { grid-template-columns: 1fr; gap: 40px; }
  .why-donate-inner { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .page-hero { padding: 120px 5% 60px; }
  .pillars-section, .impact-band, .cta-band,
  .about-section, .toc-section, .values-section,
  .contact-section, .volunteer-section,
  .donate-section, .why-donate { padding: 64px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .donate-amounts { grid-template-columns: repeat(2,1fr); }
}

/* ============================================================
   POLICY SECTION — policy.html, commentary pages
   ============================================================ */

/* ── Policy landing page ── */
.policy-section { background: white; padding: 96px 5%; }

.policy-intro {
  max-width: 720px;
  margin-bottom: 64px;
}

.policy-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(5,76,90,0.12);
}

.policy-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: start;
  padding: 36px 40px;
  background: var(--cream);
  border-bottom: 1px solid rgba(5,76,90,0.10);
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}
.policy-card:last-child { border-bottom: none; }
.policy-card:hover { background: var(--teal-light); }

.policy-card-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 10px;
}
.policy-type-badge {
  font-family: var(--sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 3px 10px;
}
.policy-date {
  font-size: 12px; font-weight: 300;
  color: var(--ink-soft);
}
.policy-card h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500; color: var(--teal);
  line-height: 1.25; margin-bottom: 10px;
}
.policy-card-excerpt {
  font-size: 14px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.75;
  max-width: 680px;
}
.policy-card-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px;
}
.policy-tag {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 9px;
  background: rgba(5,76,90,0.07);
  color: var(--teal);
  border: 1px solid rgba(5,76,90,0.15);
}
.policy-card-arrow {
  font-size: 20px; color: var(--teal);
  opacity: 0.4; transition: opacity 0.2s, transform 0.2s;
  padding-top: 4px; flex-shrink: 0;
}
.policy-card:hover .policy-card-arrow {
  opacity: 1; transform: translateX(4px);
}

/* Coming soon placeholder */
.policy-coming-soon {
  padding: 40px;
  text-align: center;
  border-top: 1px dashed rgba(5,76,90,0.2);
  margin-top: 0;
}
.policy-coming-soon p {
  font-size: 13px; color: var(--ink-soft);
  font-style: italic;
}

/* ── Homepage policy teaser ── */
.policy-teaser {
  background: var(--teal-deep);
  padding: 72px 5%;
}
.policy-teaser-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.policy-teaser-text .eyebrow { color: var(--amber); }
.policy-teaser-text .eyebrow::before { background: var(--amber); }
.policy-teaser-text h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500; color: white;
  line-height: 1.2; margin-bottom: 16px;
}
.policy-teaser-text p {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8; margin-bottom: 28px;
}
.policy-teaser-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 32px;
  position: relative;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.policy-teaser-card:hover { background: rgba(255,255,255,0.09); }
.policy-teaser-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}
.policy-teaser-card-label {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--amber); margin-bottom: 14px;
}
.policy-teaser-card h4 {
  font-family: var(--serif);
  font-size: 18px; font-weight: 500;
  color: white; line-height: 1.3;
  margin-bottom: 10px;
}
.policy-teaser-card p {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.65; margin-bottom: 18px;
}
.policy-teaser-card-link {
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--amber);
  display: inline-flex; align-items: center; gap: 6px;
  border-bottom: 1px solid rgba(232,148,10,0.35);
  padding-bottom: 2px;
}

/* ── Commentary article page ── */
.commentary-page {
  background: var(--cream);
  padding-top: 72px; /* nav height */
}

.commentary-wrapper {
  max-width: 740px;
  margin: 0 auto;
  padding: 64px 5% 96px;
}

.commentary-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 36px;
}
.commentary-breadcrumb a { color: var(--teal); transition: color 0.2s; }
.commentary-breadcrumb a:hover { color: var(--orange); }
.commentary-breadcrumb span { color: var(--ink-soft); }

.commentary-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.commentary-type-badge {
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 3px 10px;
}
.commentary-date {
  font-size: 12px; font-weight: 300;
  color: var(--ink-soft);
}

.commentary-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.12; margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.commentary-subtitle {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 400;
  font-style: italic; color: var(--ink-soft);
  margin-bottom: 40px; line-height: 1.5;
}

/* Score callout */
.score-callout {
  display: flex; align-items: flex-end; gap: 24px;
  background: var(--teal);
  padding: 40px; margin: 0 0 48px;
  position: relative; overflow: hidden;
}
.score-callout::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
}
.score-number {
  font-family: var(--serif);
  font-size: 6rem; font-weight: 700;
  line-height: 1; color: var(--amber);
  flex-shrink: 0;
}
.score-label-text p {
  font-size: 10.5px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); margin-bottom: 6px;
}
.score-label-text strong {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 400;
  font-style: italic; color: white;
  display: block; line-height: 1.45;
}

/* Article body */
.commentary-body { line-height: 1.85; }

.commentary-body p {
  font-size: 16px; font-weight: 300;
  color: var(--ink-mid);
  margin-bottom: 24px; line-height: 1.85;
}
.commentary-body p.lead {
  font-family: var(--serif);
  font-size: 1.18rem; font-weight: 400;
  color: var(--teal); line-height: 1.75;
  margin-bottom: 28px;
}
.commentary-body h2 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 700;
  color: var(--teal);
  margin: 44px 0 14px;
  padding-top: 6px;
  border-top: 2px solid var(--forest);
  display: inline-block;
}
.commentary-body em { font-style: italic; }

/* Pull quote */
.pull-quote {
  border-left: 4px solid var(--amber);
  padding: 6px 0 6px 28px;
  margin: 36px 0;
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 1.12rem !important;
  font-style: italic;
  color: var(--teal) !important;
  line-height: 1.65;
  margin: 0 !important;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(5,76,90,0.12);
  border: 1px solid rgba(5,76,90,0.12);
  margin: 36px 0; overflow: hidden;
}
.stat-strip-cell {
  background: var(--sand);
  padding: 20px 24px; text-align: center;
}
.stat-strip-num {
  font-family: var(--serif);
  font-size: 2.1rem; font-weight: 700;
  color: var(--teal); display: block;
  line-height: 1.1;
}
.stat-strip-num.danger { color: #b02a0a; }
.stat-strip-lbl {
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 6px;
  display: block; line-height: 1.4;
}

/* Commentary rule */
.commentary-rule {
  border: none;
  border-top: 1px solid rgba(5,76,90,0.15);
  margin: 44px 0;
}

/* Byline */
.commentary-byline {
  display: flex; align-items: center; gap: 16px;
  padding-top: 32px; margin-top: 0;
}
.byline-avatar {
  width: 44px; height: 44px;
  border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.byline-avatar span {
  font-family: var(--serif);
  font-size: 16px; font-weight: 700;
  color: var(--amber);
}
.byline-copy p {
  font-size: 13px !important;
  color: var(--ink-soft) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}
.byline-copy strong { color: var(--teal); font-weight: 600; }

/* Back / nav links on commentary */
.commentary-nav-bottom {
  margin-top: 64px; padding-top: 32px;
  border-top: 1px solid rgba(5,76,90,0.12);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.back-link {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}
.back-link:hover { color: var(--orange); }

/* ── Policy responsive ── */
@media (max-width: 960px) {
  .policy-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .policy-card { grid-template-columns: 1fr; }
  .policy-card-arrow { display: none; }
}
@media (max-width: 600px) {
  .score-callout { flex-direction: column; gap: 12px; }
  .score-number { font-size: 4.5rem; }
  .stat-strip { grid-template-columns: 1fr; }
  .commentary-wrapper { padding: 48px 5% 72px; }
  .policy-section { padding: 64px 5%; }
  .policy-teaser { padding: 64px 5%; }
  .policy-card { padding: 28px 24px; }
}
