/* ============================================================
   FX FOUNDATION — MAIN STYLESHEET
   Palette:
     --cream:       #FAF6EF
     --sand:        #F0E6D3
     --terracotta:  #C1714F
     --amber:       #D4974A
     --sage:        #7A9E7E
     --charcoal:    #2B2B2B
     --dark:        #1A1A1A
     --muted:       #6B6B6B
   ============================================================ */

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

:root {
  --cream:       #FAF6EF;
  --sand:        #F0E6D3;
  --terracotta:  #C1714F;
  --terracotta-dark: #A85A3A;
  --amber:       #D4974A;
  --sage:        #7A9E7E;
  --charcoal:    #2B2B2B;
  --dark:        #1A1A1A;
  --muted:       #6B6B6B;
  --white:       #FFFFFF;
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 96px 0; }
.bg-cream { background: var(--cream); }
.bg-sand  { background: var(--sand); }
.bg-dark  { background: var(--dark); }
.bg-terracotta { background: var(--terracotta); }
.align-center { align-items: center; }
.center-cta { text-align: center; margin-top: 48px; }

.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--muted); line-height: 1.75; }
.light h2, h2.light { color: var(--white); }
.light p, p.light-muted { color: rgba(255,255,255,0.75); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--amber); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(193,113,79,0.35); }
.btn-secondary {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn-secondary:hover { background: var(--terracotta); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-light { @extend .btn-outline; }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
  border-color: transparent;
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); color: var(--white); }
.btn-white {
  background: var(--white);
  color: var(--terracotta);
  border-color: var(--white);
}
.btn-white:hover { background: var(--cream); transform: translateY(-1px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ── NAVIGATION ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-fx { color: var(--terracotta); }
.logo-foundation { color: var(--charcoal); }
.site-header:not(.scrolled) .logo-foundation { color: var(--white); }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 6px;
  transition: all var(--transition);
}
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
.nav-links a:hover { color: var(--terracotta); background: rgba(193,113,79,0.07); }
.site-header:not(.scrolled) .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.12); }

.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .hamburger span { background: var(--charcoal); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #2B1810 0%, #3D2214 40%, #4A2E1A 70%, #2B2B2B 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(212,151,74,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(122,158,126,0.12) 0%, transparent 50%);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: luminosity;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 760px;
  margin-left: max(24px, calc(50vw - 600px));
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--amber);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.3);
  border-bottom: 2px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  animation: scrollBounce 2s ease infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0,0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(3px,3px); opacity: 0.9; }
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--charcoal);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--amber);
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--amber);
}
.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-top: 8px;
}

/* ── MISSION ── */
.mission-text h2 { margin-bottom: 20px; }
.mission-text p { margin-bottom: 16px; }
.mission-text .btn { margin-top: 8px; }
.mission-text strong { color: var(--charcoal); font-weight: 600; }

.image-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--sand);
}
.image-card--tall { aspect-ratio: 4/5; }
.image-card img { width: 100%; height: 100%; object-fit: cover; }
.image-card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-icon { font-size: 1.5rem; }
.image-card-badge strong { display: block; font-size: 0.9rem; color: var(--charcoal); }
.image-card-badge span { font-size: 0.78rem; color: var(--muted); }

.img-placeholder {
  background: linear-gradient(135deg, var(--sand) 0%, var(--amber) 100%);
  opacity: 0.4;
}
.img-placeholder::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

/* ── ORIGIN STRIP ── */
.origin-strip {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3D2214 100%);
  padding: 80px 0;
}
.origin-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.origin-text { max-width: 560px; }
.origin-text h2 { color: var(--white); margin-bottom: 16px; }
.origin-text p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.origin-text em { color: var(--amber); font-style: italic; }
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.film-badge-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(212,151,74,0.12);
  border: 1px solid rgba(212,151,74,0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
}
.film-badge-circle:hover { background: rgba(212,151,74,0.22); transform: scale(1.04); }
.film-badge-circle svg { width: 48px; height: 48px; color: var(--amber); }
.film-badge-circle span { font-size: 0.8rem; font-weight: 600; color: var(--amber); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── PILLARS ── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar-icon {
  width: 52px;
  height: 52px;
  background: var(--sand);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--terracotta);
}
.pillar-icon svg { width: 28px; height: 28px; }
.pillar-card h3 { margin-bottom: 12px; }
.pillar-card p { font-size: 0.92rem; margin-bottom: 20px; }
.pillar-link { font-size: 0.875rem; font-weight: 600; color: var(--terracotta); transition: gap var(--transition); }
.pillar-link:hover { text-decoration: underline; }

/* ── PROBLEM TEASER ── */
.problem-stat-stack { display: flex; flex-direction: column; gap: 24px; }
.big-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.big-stat.accent { border-color: rgba(212,151,74,0.35); background: rgba(212,151,74,0.08); }
.big-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.big-stat.accent .big-num { color: var(--amber); }
.big-stat p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ── SOLUTION PREVIEW ── */
.age-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
.age-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--transition);
}
.age-card:hover, .age-card.featured { box-shadow: var(--shadow); transform: translateY(-2px); }
.age-card.featured { border-color: var(--terracotta); background: linear-gradient(135deg, #FEF7F3, #FFF); }
.age-badge {
  display: inline-block;
  background: var(--sand);
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.age-card.featured .age-badge { background: var(--terracotta); color: var(--white); }
.age-card h4 { margin-bottom: 8px; font-size: 1rem; }
.age-card p { font-size: 0.85rem; }

/* ── IMPACT NUMBERS ── */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.impact-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  box-shadow: var(--shadow);
}
.impact-icon { font-size: 2rem; margin-bottom: 12px; }
.impact-num {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.impact-card p { font-size: 0.875rem; }

/* ── SUSTAINABILITY PREVIEW ── */
.sustain-text h2 { margin-bottom: 16px; }
.sustain-text p { margin-bottom: 28px; }
.sustain-flow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex: 1;
  min-width: 120px;
}
.flow-num {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--terracotta);
  letter-spacing: 0.06em;
  padding-top: 2px;
}
.flow-step div { font-size: 0.875rem; color: var(--muted); }
.flow-step strong { color: var(--charcoal); font-weight: 600; display: block; }
.flow-arrow { color: var(--amber); font-size: 1.2rem; flex-shrink: 0; }

.sustain-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
}
.diagram-circle {
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diagram-circle.outer {
  width: 320px;
  height: 320px;
  background: conic-gradient(var(--terracotta) 0% 25%, var(--amber) 25% 50%, var(--sage) 50% 75%, var(--charcoal) 75% 100%);
  padding: 16px;
}
.diagram-circle.inner {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 50%;
  padding: 24px;
}
.diagram-core {
  text-align: center;
}
.diagram-core span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 4px; }
.diagram-core strong { font-family: var(--font-serif); font-size: 1.3rem; color: var(--charcoal); }
.diagram-label {
  position: absolute;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  white-space: nowrap;
}
.diagram-label.top    { top: -28px; left: 50%; transform: translateX(-50%); }
.diagram-label.right  { right: -52px; top: 50%; transform: translateY(-50%); color: var(--amber); }
.diagram-label.bottom { bottom: -28px; left: 50%; transform: translateX(-50%); color: var(--sage); }
.diagram-label.left   { left: -44px; top: 50%; transform: translateY(-50%); color: var(--muted); }

/* ── GET INVOLVED CTA ── */
.cta-block { text-align: center; }
.cta-block h2 { color: var(--white); margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,0.8); margin-bottom: 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── NEWS ── */
.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 24px;
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all var(--transition);
}
.news-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-img-wrap {
  position: relative;
  background: var(--sand);
  aspect-ratio: 16/9;
  overflow: hidden;
}
.featured-news .news-img-wrap { aspect-ratio: 16/8; }
.news-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-img-wrap img { transform: scale(1.04); }
.news-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.news-body { padding: 20px 22px 24px; }
.news-body time { font-size: 0.78rem; color: var(--muted); display: block; margin-bottom: 8px; }
.news-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.35; }
.featured-news .news-body h3 { font-size: 1.2rem; }
.news-body p { font-size: 0.875rem; margin-bottom: 14px; }
.read-more { font-size: 0.875rem; font-weight: 600; color: var(--terracotta); }
.read-more:hover { text-decoration: underline; }

/* ── FOOTER ── */
.site-footer {
  background: var(--dark);
  padding: 72px 0 32px;
}
.footer-grid {
  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-logo .logo-foundation { color: rgba(255,255,255,0.9); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; margin-top: 16px; line-height: 1.6; }
.footer-links-col h4 { color: var(--white); font-family: var(--font-sans); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color var(--transition); }
.footer-links-col a:hover { color: var(--amber); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 0.8rem; transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, #2B1810 0%, #3D2214 60%, #2B2B2B 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(212,151,74,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  display: block;
}
.page-hero h1 { color: var(--white); max-width: 700px; margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; font-size: 1.1rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb-sep { opacity: 0.4; }

/* ── CONTENT SECTIONS (inner pages) ── */
.content-section { padding: 80px 0; }
.content-section + .content-section { padding-top: 0; }

.text-block { max-width: 720px; }
.text-block h2 { margin-bottom: 20px; }
.text-block h3 { margin: 32px 0 12px; }
.text-block p { margin-bottom: 18px; }

.highlight-box {
  background: var(--sand);
  border-left: 4px solid var(--terracotta);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin: 32px 0;
}
.highlight-box p { margin: 0; color: var(--charcoal); font-size: 1.02rem; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--terracotta), var(--amber), var(--sage));
}
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--terracotta);
}
.timeline-item h4 { color: var(--charcoal); margin-bottom: 6px; }
.timeline-item p { font-size: 0.9rem; }

/* ── TEAM GRID ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), var(--amber));
  margin: 0 auto 16px;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: 4px; }
.team-card .role { font-size: 0.82rem; color: var(--terracotta); font-weight: 600; margin-bottom: 10px; display: block; }
.team-card p { font-size: 0.85rem; }

/* ── PROBLEM PAGE ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0;
}
.stat-box {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
  padding: 28px 24px;
  text-align: center;
}
.stat-box .stat-big {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--terracotta);
  display: block;
  margin-bottom: 8px;
}
.stat-box p { font-size: 0.875rem; }

/* ── PROGRAMS / SOLUTION ── */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.material-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.07);
  transition: all var(--transition);
}
.material-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.material-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.material-body h4 { margin-bottom: 6px; }
.material-body p { font-size: 0.875rem; }

/* ── GET INVOLVED PAGE ── */
.donate-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.tier-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 2px solid rgba(0,0,0,0.08);
  background: var(--white);
  text-align: center;
  transition: all var(--transition);
  position: relative;
}
.tier-card.popular {
  border-color: var(--terracotta);
  transform: scale(1.03);
}
.tier-card.popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.tier-amount {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 4px;
  display: block;
}
.tier-label { font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; display: block; }
.tier-card ul { text-align: left; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.tier-card li { font-size: 0.875rem; color: var(--muted); display: flex; gap: 8px; align-items: flex-start; }
.tier-card li::before { content: '✓'; color: var(--sage); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(0,0,0,0.07);
  max-width: 600px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--charcoal); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terracotta); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── MOBILE NAV OPEN STATE ── */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,26,26,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--white) !important; font-size: 1.2rem; padding: 14px 28px; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .age-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .featured-news { display: grid; grid-template-columns: 1.2fr 1fr; }
  .featured-news .news-img-wrap { aspect-ratio: auto; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .grid-2col { grid-template-columns: 1fr; gap: 40px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .origin-inner { flex-direction: column; text-align: center; }
  .origin-film-badge { display: none; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: 1fr; }
  .donate-tiers { grid-template-columns: 1fr; }
  .tier-card.popular { transform: none; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .stat-row { grid-template-columns: 1fr; }
  .sustain-diagram { display: none; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .diagram-circle.outer { width: 240px; height: 240px; }
  .featured-news { display: block; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .age-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
