/* ════════════════════════════════════════
   GoldenDiaries Design System
   Aesthetic: Warm editorial memoir.
   Think aged paper, pressed flowers, a
   beloved journal on a sunlit table.
   Rich amber golds, warm ivory canvas,
   deep mahogany, soft rose blush accents.
   Playfair Display for all the gravitas
   of a life well-lived. Lato for clarity.
   ════════════════════════════════════════ */

:root {
  /* Canvas */
  --ivory:     #fdf8f0;
  --ivory-2:   #f5ede0;
  --ivory-3:   #ecddd0;
  --cream:     #ffffff;

  /* Ink / Text */
  --mahogany:  #2c1810;
  --mahogany-2:#4a2e1e;
  --mahogany-3:#7a5a48;
  --mahogany-4:#b09080;

  /* Accent: Gold / Amber */
  --gold:      #c8860a;
  --gold-rich: #a86c00;
  --gold-2:    #fff4d6;
  --gold-3:    #f5d888;
  --amber:     #e89c20;

  /* Accent: Rose / Blush */
  --rose:      #b5464e;
  --rose-2:    #fce8ea;
  --rose-3:    #f0b8bc;

  /* Accent: Sage */
  --sage:      #4a7060;
  --sage-2:    #e0ede8;
  --sage-3:    #b0cec4;

  /* Accent: Sky (for podcast/media) */
  --sky:       #2a5c8a;
  --sky-2:     #e4eef8;

  /* Borders & Shadows */
  --border:    rgba(44,24,16,.10);
  --border-md: rgba(44,24,16,.18);
  --shadow-xs: 0 1px 4px rgba(44,24,16,.07);
  --shadow-sm: 0 3px 16px rgba(44,24,16,.10);
  --shadow-md: 0 8px 36px rgba(44,24,16,.14);
  --shadow-lg: 0 20px 64px rgba(44,24,16,.18);

  --r:         8px;
  --r-lg:      16px;
  --r-xl:      24px;
  --r-full:    999px;

  --serif:     'Playfair Display', Georgia, serif;
  --body:      'Lato', system-ui, sans-serif;
  --alt-serif: 'Libre Baskerville', Georgia, serif;
}

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

/* ── Layout ─────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  width: 100%;
}

/* ── Reveal animations ──────────────── */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.rv.on { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }
.rv.d4 { transition-delay: .4s; }
.rv.d5 { transition-delay: .5s; }
.rv.d6 { transition-delay: .6s; }

/* ── Decorative rule ────────────────── */
.ornament {
  display: flex; align-items: center; gap: 1rem;
  color: var(--gold-3); font-size: 1.1rem; margin: .75rem 0;
}
.ornament::before, .ornament::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
}

/* ── Buttons ────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--body); font-size: .9rem; font-weight: 700;
  padding: 13px 28px; border-radius: var(--r-full);
  transition: all .24s; cursor: pointer; border: none;
  letter-spacing: .03em;
}
.btn-gold {
  background: var(--gold); color: var(--cream);
}
.btn-gold:hover { background: var(--gold-rich); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(200,134,10,.35); }
.btn-outline {
  background: transparent; color: var(--mahogany);
  border: 1.5px solid var(--border-md);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-2); }
.btn-rose {
  background: var(--rose); color: var(--cream);
}
.btn-rose:hover { background: #952f37; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(181,70,78,.3); }
.btn-sage {
  background: var(--sage); color: var(--cream);
}
.btn-sage:hover { background: #3a5c50; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(74,112,96,.3); }

/* ── Section commons ────────────────── */
section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; }

.eyebrow {
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .85rem;
  display: flex; align-items: center; gap: .65rem;
}
.eyebrow::before {
  content: '✦'; font-size: .7rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.01em;
  color: var(--mahogany); margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 1.05rem; font-weight: 300;
  line-height: 1.85; color: var(--mahogany-3);
  max-width: 560px;
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 68px; display: flex; align-items: center;
  background: rgba(253,248,240,.93);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1160px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem); width: 100%;
}

.nav-brand { display: flex; align-items: center; gap: .7rem; }
.nav-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: grid; place-items: center; flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(200,134,10,.3);
}
.nav-icon svg { width: 20px; height: 20px; }
.nav-name {
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 700; color: var(--mahogany); letter-spacing: .01em;
}
.nav-name span { color: var(--gold); }
.nav-badge {
  display: inline-block; font-family: var(--body); font-size: .6rem;
  font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  background: var(--gold-2); color: var(--gold-rich);
  border: 1px solid var(--gold-3);
  padding: 2px 7px; border-radius: var(--r-full);
  margin-left: .3rem; vertical-align: middle;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .87rem; font-weight: 700; color: var(--mahogany-3);
  transition: color .2s; letter-spacing: .02em;
}
.nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: .75rem; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px; background: none; border: none;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--mahogany); border-radius: 2px; transition: all .3s;
}

.nav-drawer {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--ivory); z-index: 199; overflow-y: auto;
  padding: 2rem clamp(1.25rem,5vw,3rem) 3rem;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block; padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif); font-size: 1.5rem;
  font-weight: 700; color: var(--mahogany); transition: color .2s;
}
.nav-drawer a:hover { color: var(--gold); }
.nav-drawer .d-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  padding-top: 68px;
  min-height: 100svh;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}

/* Warm paper texture via CSS */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 50% at 75% 25%, rgba(200,134,10,.09) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 15% 80%, rgba(181,70,78,.05) 0%, transparent 60%),
    radial-gradient(ellipse 80% 80% at 50% 50%, rgba(255,244,214,.5) 0%, transparent 70%);
  pointer-events: none;
}

/* Diagonal line grid */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 34px,
    rgba(200,134,10,.04) 34px,
    rgba(200,134,10,.04) 35px
  );
  mask-image: radial-gradient(ellipse 70% 70% at 80% 15%, black 10%, transparent 70%);
  pointer-events: none;
}

.hero-body {
  flex: 1; display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: center;
  padding: 5rem 0 4rem;
  position: relative; z-index: 2;
}

/* Decorative quote mark */
.hero-quote-mark {
  font-family: var(--serif); font-size: 12rem;
  font-weight: 900; color: var(--gold-3);
  line-height: .7; margin-bottom: -1.5rem;
  opacity: .45; display: block;
  user-select: none;
}

h1.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900; line-height: .95; letter-spacing: -.02em;
  color: var(--mahogany); margin-bottom: 1.75rem;
}
h1.hero-h1 em {
  font-style: italic; font-weight: 700;
  color: var(--gold);
}
h1.hero-h1 .light { font-weight: 400; color: var(--mahogany-3); }

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.15rem); font-weight: 300;
  line-height: 1.85; color: var(--mahogany-2); max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-trust {
  display: flex; align-items: center; gap: .75rem;
  font-size: .82rem; color: var(--mahogany-4); font-weight: 400;
}
.trust-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-3); }

/* Hero right — story cards */
.hero-cards { display: flex; flex-direction: column; gap: 1rem; }

.story-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex; gap: 1.2rem; align-items: flex-start;
  transition: box-shadow .28s, transform .28s;
  position: relative; overflow: hidden;
}
.story-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--sc-color, var(--gold));
  border-radius: 0;
}
.story-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.sc-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.3rem;
  font-weight: 700; color: var(--cream);
  background: var(--sc-bg, var(--gold));
}
.sc-age {
  font-family: var(--body); font-size: .65rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--sc-color, var(--gold)); margin-bottom: .2rem;
}
.sc-name {
  font-family: var(--serif); font-size: 1.05rem;
  font-weight: 700; color: var(--mahogany); margin-bottom: .25rem;
}
.sc-snippet {
  font-size: .83rem; font-weight: 300; color: var(--mahogany-3);
  line-height: 1.55; font-style: italic;
}
.sc-tag {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .07em;
  padding: 3px 9px; border-radius: var(--r-full);
  background: var(--sc-tagbg, var(--gold-2));
  color: var(--sc-color, var(--gold));
  border: 1px solid var(--sc-tagborder, var(--gold-3));
  margin-top: .6rem;
}

/* Bottom strip */
.hero-bottom {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
}
.hero-bottom-inner {
  max-width: 1160px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.hb-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mahogany-4);
}
.feature-pills { display: flex; gap: .5rem; flex-wrap: wrap; }
.fpill {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .8rem; font-weight: 700; padding: 6px 14px;
  border-radius: var(--r-full); border: 1px solid var(--border);
  background: var(--cream); color: var(--mahogany-2);
  box-shadow: var(--shadow-xs); transition: all .22s;
}
.fpill:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.marquee-section {
  background: linear-gradient(135deg, var(--mahogany) 0%, var(--mahogany-2) 100%);
  overflow: hidden; padding: .95rem 0; white-space: nowrap;
}
.marquee-track {
  display: inline-flex; gap: 3rem;
  animation: mq 30s linear infinite;
}
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.mq-item {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--body); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(253,248,240,.4);
}
.mq-item .gem { font-size: .85rem; color: var(--gold-3); }

/* ════════════════════════════════════════
   MISSION
════════════════════════════════════════ */
#mission { background: var(--cream); }

.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.mission-quote {
  position: relative;
  padding: 2.5rem 2.5rem 2.5rem 3rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
}
.mission-quote::before {
  content: '\201C';
  position: absolute; top: -1.5rem; left: 1.5rem;
  font-family: var(--serif); font-size: 7rem;
  font-weight: 900; color: var(--gold-3); line-height: 1;
  opacity: .7; pointer-events: none;
}
.mission-quote-text {
  font-family: var(--alt-serif); font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-style: italic; font-weight: 400; line-height: 1.7;
  color: var(--mahogany-2); margin-bottom: 1.5rem;
}
.mission-quote-attr {
  display: flex; align-items: center; gap: .75rem;
  font-size: .82rem; font-weight: 700; color: var(--gold);
  letter-spacing: .03em;
}
.mission-quote-attr::before {
  content: ''; width: 24px; height: 1.5px; background: var(--gold);
}

.mission-pillars { display: flex; flex-direction: column; gap: 1.25rem; }

.pillar {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1.5rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: box-shadow .25s, transform .25s;
}
.pillar:hover { box-shadow: var(--shadow-sm); transform: translateX(5px); }
.pillar-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center; font-size: 1.3rem; flex-shrink: 0;
}
.pillar-title {
  font-family: var(--serif); font-size: 1.05rem; font-weight: 700;
  color: var(--mahogany); margin-bottom: .3rem;
}
.pillar-desc {
  font-size: .875rem; font-weight: 300;
  line-height: 1.65; color: var(--mahogany-3);
}

/* ════════════════════════════════════════
   FEATURES (Programs)
════════════════════════════════════════ */
#programs { background: var(--ivory); }

.programs-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: end; margin-bottom: 4rem;
}

.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.prog-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  transition: box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.prog-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--prog-color, var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.prog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.prog-card:hover::after { transform: scaleX(1); }

.prog-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.prog-tag {
  display: inline-block;
  font-family: var(--body); font-size: .66rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-full); border: 1px solid;
  margin-bottom: .75rem;
}
.prog-card h3 {
  font-family: var(--serif); font-size: 1.25rem;
  font-weight: 700; color: var(--mahogany); margin-bottom: .5rem;
  line-height: 1.2;
}
.prog-card p {
  font-size: .875rem; font-weight: 300;
  line-height: 1.7; color: var(--mahogany-3);
}

/* ════════════════════════════════════════
   STORIES SHOWCASE
════════════════════════════════════════ */
#stories { background: var(--mahogany); color: var(--ivory); }

.stories-header { margin-bottom: 3rem; }
.stories-header .section-title { color: var(--ivory); }
.stories-header .section-title em { color: var(--gold-3); }
.stories-header .eyebrow { color: var(--gold-3); }
.stories-header .section-sub { color: rgba(237,221,208,.7); }

.stories-grid {
  display: grid; grid-template-columns: 2fr 1fr;
  gap: 1.5rem; margin-bottom: 2rem;
}

.story-featured {
  background: rgba(253,248,240,.06);
  border: 1px solid rgba(253,248,240,.1);
  border-radius: var(--r-xl); padding: 2.5rem;
  transition: background .28s;
  cursor: pointer;
}
.story-featured:hover { background: rgba(253,248,240,.1); }

.sf-age {
  font-family: var(--body); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-3); margin-bottom: .75rem;
}
.sf-name {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--ivory); margin-bottom: .5rem;
  line-height: 1.1;
}
.sf-tagline {
  font-family: var(--alt-serif); font-style: italic;
  font-size: 1.05rem; color: rgba(237,221,208,.7);
  margin-bottom: 1.25rem; line-height: 1.6;
}
.sf-excerpt {
  font-size: .9rem; font-weight: 300; line-height: 1.8;
  color: rgba(237,221,208,.6); margin-bottom: 1.75rem;
}
.sf-tags { display: flex; gap: .5rem; flex-wrap: wrap; }
.sf-tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  padding: 4px 11px; border-radius: var(--r-full);
  background: rgba(200,134,10,.2); color: var(--gold-3);
  border: 1px solid rgba(200,134,10,.3);
}

.stories-mini { display: flex; flex-direction: column; gap: 1rem; }

.story-mini {
  background: rgba(253,248,240,.06);
  border: 1px solid rgba(253,248,240,.1);
  border-radius: var(--r-lg); padding: 1.5rem;
  transition: background .25s; cursor: pointer; flex: 1;
}
.story-mini:hover { background: rgba(253,248,240,.1); }

.sm-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
  color: var(--mahogany); margin-bottom: .85rem;
}
.sm-name {
  font-family: var(--serif); font-size: 1rem;
  font-weight: 700; color: var(--ivory); margin-bottom: .2rem;
}
.sm-sub {
  font-size: .78rem; color: rgba(237,221,208,.5);
  margin-bottom: .6rem; line-height: 1.4;
}
.sm-type {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold-3);
}

.stories-cta-row {
  display: flex; justify-content: center; gap: 1rem;
  flex-wrap: wrap; margin-top: 1rem;
}

/* ════════════════════════════════════════
   IMPACT STATS
════════════════════════════════════════ */
#impact { background: linear-gradient(135deg, var(--gold-2) 0%, var(--ivory-2) 100%); }

.impact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}

.stat-tile {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 2rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-xs); transition: box-shadow .28s, transform .28s;
}
.stat-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.stat-num {
  font-family: var(--serif); font-size: 3rem; font-weight: 900;
  letter-spacing: -.04em; line-height: 1; margin-bottom: .3rem;
}
.stat-unit {
  font-size: 1.8rem; font-weight: 400;
}
.stat-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mahogany-4); margin-top: .15rem;
}

/* ════════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
#howitworks { background: var(--cream); }

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; margin-top: 4rem; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 36px; left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 1px; background: linear-gradient(90deg, var(--gold-3), var(--gold-3));
  z-index: 0;
}

.step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--cream); border: 2px solid var(--gold-3);
  display: grid; place-items: center; margin-bottom: 1.25rem;
  font-family: var(--serif); font-size: 1.6rem; font-weight: 900;
  color: var(--gold); box-shadow: var(--shadow-sm);
  transition: background .25s, border-color .25s;
}
.step:hover .step-num { background: var(--gold); color: var(--cream); border-color: var(--gold); }
.step h4 {
  font-family: var(--serif); font-size: 1.05rem;
  font-weight: 700; color: var(--mahogany); margin-bottom: .5rem;
}
.step p {
  font-size: .875rem; font-weight: 300;
  color: var(--mahogany-3); line-height: 1.65;
}

/* ════════════════════════════════════════
   VOLUNTEER / JOIN
════════════════════════════════════════ */
#join { background: var(--ivory); }

.join-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.join-card {
  border-radius: var(--r-xl); padding: 2.5rem;
  border: 1px solid var(--border); position: relative; overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.join-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.jc-volunteer { background: var(--mahogany); color: var(--ivory); }
.jc-share     { background: linear-gradient(135deg, var(--gold-2), #fff9ed); }
.jc-sponsor   { background: var(--sage); color: var(--cream); }
.jc-mentor    { background: linear-gradient(135deg, var(--rose-2), #fff8f9); }

.jc-icon { font-size: 2.8rem; margin-bottom: 1.25rem; display: block; }
.jc-title {
  font-family: var(--serif); font-size: 1.6rem;
  font-weight: 700; margin-bottom: .6rem; line-height: 1.1;
}
.jc-volunteer .jc-title { color: var(--ivory); }
.jc-share .jc-title     { color: var(--mahogany); }
.jc-sponsor .jc-title   { color: var(--cream); }
.jc-mentor .jc-title    { color: var(--mahogany); }

.jc-desc {
  font-size: .9rem; font-weight: 300; line-height: 1.75; margin-bottom: 1.75rem;
}
.jc-volunteer .jc-desc { color: rgba(237,221,208,.75); }
.jc-share .jc-desc     { color: var(--mahogany-3); }
.jc-sponsor .jc-desc   { color: rgba(240,240,230,.8); }
.jc-mentor .jc-desc    { color: var(--mahogany-3); }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
#voices { background: var(--cream); }

.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.testi {
  background: var(--ivory);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 2rem; transition: box-shadow .28s, transform .28s;
}
.testi:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testi-stars {
  color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: .1em;
}
.testi-text {
  font-family: var(--alt-serif); font-style: italic;
  font-size: .97rem; line-height: 1.75;
  color: var(--mahogany-2); margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1rem; font-weight: 700;
  color: var(--cream); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .9rem; color: var(--mahogany); }
.testi-role { font-size: .78rem; color: var(--mahogany-4); margin-top: .1rem; }

/* ════════════════════════════════════════
   NEWSLETTER / CTA
════════════════════════════════════════ */
#newsletter {
  background: linear-gradient(135deg, var(--mahogany) 0%, #3d2218 100%);
  position: relative; overflow: hidden;
}
#newsletter::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg, transparent, transparent 30px,
    rgba(200,134,10,.04) 30px, rgba(200,134,10,.04) 31px
  );
  pointer-events: none;
}
.newsletter-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.nl-headline {
  font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--ivory); line-height: 1.1;
  margin-bottom: 1rem;
}
.nl-headline em { font-style: italic; color: var(--gold-3); }
.nl-sub { font-size: 1rem; font-weight: 300; line-height: 1.8; color: rgba(237,221,208,.65); }

.nl-form { display: flex; flex-direction: column; gap: 1rem; }
.nl-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.nl-group { display: flex; flex-direction: column; gap: .4rem; }
.nl-label {
  font-family: var(--body); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(237,221,208,.45);
}
.nl-group input,
.nl-group select {
  font-family: var(--body); font-size: .9rem;
  color: var(--ivory); background: rgba(253,248,240,.08);
  border: 1.5px solid rgba(253,248,240,.15);
  border-radius: var(--r); padding: 12px 14px;
  outline: none; transition: border-color .2s, background .2s; width: 100%;
  -webkit-appearance: none;
}
.nl-group input::placeholder { color: rgba(237,221,208,.3); }
.nl-group input:focus, .nl-group select:focus {
  border-color: var(--gold-3); background: rgba(253,248,240,.12);
}
.nl-group select option { background: var(--mahogany-2); }
.nl-note {
  font-size: .75rem; color: rgba(237,221,208,.35);
  font-style: italic; text-align: center;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--mahogany);
  color: rgba(237,221,208,.6);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(237,221,208,.06);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.f-brand .f-logo {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 700;
  color: var(--ivory); margin-bottom: .75rem;
}
.f-brand .f-logo span { color: var(--gold-3); }
.f-brand p {
  font-size: .85rem; font-weight: 300; line-height: 1.75;
  color: rgba(237,221,208,.45); margin-bottom: 1.25rem;
}
.f-np-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(200,134,10,.15); border: 1px solid rgba(200,134,10,.3);
  color: var(--gold-3); padding: 5px 12px; border-radius: var(--r-full);
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
}
.f-col h5 {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(237,221,208,.35); margin-bottom: 1rem;
}
.f-col a {
  display: block; font-size: .875rem;
  color: rgba(237,221,208,.5); margin-bottom: .55rem; transition: color .2s;
}
.f-col a:hover { color: var(--ivory); }
.footer-bottom {
  padding-top: 2rem; border-top: 1px solid rgba(237,221,208,.08);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .75rem; color: rgba(237,221,208,.25);
}
.footer-bottom a { color: var(--gold-3); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stories-grid { grid-template-columns: 1fr; }
  .stories-mini { flex-direction: row; }
  .story-mini { flex: 1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-actions .btn-outline { display: none; }
  .nav-burger { display: flex; }

  .hero-body { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-desc { max-width: 100%; }
  .hero-cards { display: grid; grid-template-columns: 1fr 1fr; }

  .mission-grid { grid-template-columns: 1fr; gap: 3rem; }
  .programs-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .join-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 580px) {
  .hero-cards { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .impact-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .stories-mini { flex-direction: column; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nl-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-trust { flex-wrap: wrap; }
}
