/* ===========================================
   WO-MAN-I-FEST — Global Stylesheet
   Brand Guide: April 2026
=========================================== */

/* ===========================================
   DESIGN TOKENS
=========================================== */
:root {
  --forest-night:    #0D1A0F;
  --powder-sky:      #B8D8E8;
  --sacred-flame:    #FF6B1A;
  --living-green:    #2A7A35;
  --electric-violet: #8B5CF6;
  --harvest-gold:    #F0A030;
  --deep-teal:       #0A7A8A;
  --terracotta:      #C4693A;
  --cream:           #F2EDE4;
  --deep-earth:      #1A0D05;
  --muted:           #A09080;

  --font-display: 'Cinzel', serif;
  --font-body:    'Lato', sans-serif;
  --font-accent:  'Lora', serif;

  --ease-bloom: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===========================================
   RESET
=========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--forest-night);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===========================================
   NAVIGATION
=========================================== */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: 72px;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 26, 15, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(240, 160, 48, 0.08);
  transition: background 0.4s ease;
}
#main-nav.scrolled { background: rgba(6, 14, 7, 0.93); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(240, 160, 48, 0.25);
}
.nav-wordmark {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--cream);
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.78);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--sacred-flame);
  transition: width 0.3s var(--ease-bloom);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta-btn {
  background: var(--sacred-flame) !important;
  color: var(--cream) !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  opacity: 1 !important;
  transition: box-shadow 0.3s, transform 0.2s !important;
}
.nav-cta-btn:hover {
  box-shadow: 0 0 22px rgba(255, 107, 26, 0.5) !important;
  transform: translateY(-1px) !important;
}
.nav-cta-btn::after { display: none !important; }

/* Active state — JS adds .active to current page link */
.nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* Mobile menu */
#mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 7, 0.97);
  z-index: 950;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: rgba(242, 237, 228, 0.82);
  transition: color 0.2s;
}
#mobile-menu a:hover { color: var(--sacred-flame); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--cream);
  opacity: 0.6;
  cursor: pointer;
  font-family: var(--font-body);
  line-height: 1;
}

/* ===========================================
   BUTTONS
=========================================== */
.btn-primary {
  display: inline-block;
  background: var(--sacred-flame);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 2.1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  animation: glowPulse 3.5s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 107, 26, 0.55);
  animation: none;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.875rem 2.1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 26, 0.5);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--sacred-flame);
  background: rgba(255, 107, 26, 0.07);
  transform: translateY(-2px);
}
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(255, 107, 26, 0.25); }
  50%       { box-shadow: 0 0 28px rgba(255, 107, 26, 0.55); }
}

/* ===========================================
   SCROLL REVEAL
=========================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-bloom), transform 0.9s var(--ease-bloom);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.42s; }

/* ===========================================
   SECTION FOUNDATIONS
=========================================== */
section { padding: 7rem 2rem; }
.container { max-width: 1120px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }
.text-center { text-align: center; }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sacred-flame);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.4rem;
}
.section-body {
  font-size: 1.05rem;
  line-height: 1.82;
  color: rgba(242, 237, 228, 0.78);
}

/* Organic wave dividers */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { width: 100%; display: block; }

/* ===========================================
   HERO
=========================================== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg-layer {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 65%, rgba(42, 122, 53, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(139, 92, 246, 0.13) 0%, transparent 48%),
    radial-gradient(ellipse at 50% 80%, rgba(255, 107, 26, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #071209 0%, var(--forest-night) 100%);
  z-index: 1;
}
.hero-photo-bg { position: absolute; inset: 0; z-index: 0; }
.hero-photo-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.15;
  filter: saturate(0.6);
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 0 2rem;
}
.hero-logo-wrap {
  width: 200px; height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 2.5rem;
  border: 2px solid rgba(240, 160, 48, 0.4);
  box-shadow: 0 0 60px rgba(240, 160, 48, 0.18), 0 0 0 8px rgba(240,160,48,0.05);
}
.hero-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-theme {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.07;
  margin-bottom: 0.9rem;
}
.hero-subtheme {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 1.8rem;
}
.hero-question {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--powder-sky);
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
}
.hero-date {
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--harvest-gold);
  margin-bottom: 2.6rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeInScroll 1s 2.5s forwards, scrollBounce 2.2s 3.5s ease-in-out infinite;
}
.hero-scroll-hint span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero-scroll-hint svg { width: 14px; opacity: 0.5; }
@keyframes fadeInScroll { to { opacity: 0.6; } }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ===========================================
   SECTION: ESSENCE
=========================================== */
#essence { background: var(--forest-night); padding-top: 9rem; }
.essence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.essence-text .section-body { margin-bottom: 1.25rem; }
.womi-arch { margin-top: 2.75rem; display: flex; flex-direction: column; gap: 1.1rem; }
.arch-row { display: flex; align-items: flex-start; gap: 1.25rem; }
.arch-glyph {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  min-width: 2.75rem;
  padding-top: 0.1rem;
  flex-shrink: 0;
}
.arch-glyph.wo  { color: var(--electric-violet); }
.arch-glyph.man { color: var(--sacred-flame); }
.arch-glyph.i   { color: var(--harvest-gold); }
.arch-text { font-size: 0.95rem; color: rgba(242, 237, 228, 0.72); line-height: 1.55; }
.arch-text strong { color: var(--cream); font-weight: 600; }

.essence-photo {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 72px rgba(0,0,0,0.55);
}
.essence-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-bloom);
}
.essence-photo:hover img { transform: scale(1.04); }
.essence-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(13, 26, 15, 0.65));
  pointer-events: none;
}

/* ===========================================
   SECTION: 2026 GATHERING
=========================================== */
#gathering { background: linear-gradient(180deg, var(--forest-night) 0%, #091608 100%); }
.gathering-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(42, 122, 53, 0.28);
  border-radius: 18px;
  padding: 3.25rem 3.75rem;
  position: relative;
  overflow: hidden;
}
.gathering-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--living-green), var(--harvest-gold), var(--sacred-flame));
}
.gathering-card::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42,122,53,0.08), transparent 70%);
  pointer-events: none;
}
.gathering-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.gathering-dates {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.gathering-location-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--harvest-gold);
}
.gathering-notes { font-size: 0.85rem; color: var(--muted); margin-top: 0.3rem; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.offering-tile {
  background: rgba(13, 26, 15, 0.65);
  border: 1px solid rgba(42, 122, 53, 0.22);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.offering-tile:hover {
  border-color: rgba(42, 122, 53, 0.55);
  box-shadow: 0 0 32px rgba(42, 122, 53, 0.09);
}
.offering-icon { font-size: 1.9rem; margin-bottom: 1rem; }
.offering-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.offering-detail { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.gathering-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.agreements-quote {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
  padding: 0.55rem 1.4rem;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(242, 237, 228, 0.65);
}

/* ===========================================
   SECTION: VOICES
=========================================== */
#voices {
  background: linear-gradient(180deg, #091608 0%, var(--forest-night) 100%);
  text-align: center;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.75rem;
  text-align: left;
}
.voice-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(240, 160, 48, 0.1);
  border-radius: 14px;
  padding: 2.25rem 2rem;
  transition: border-color 0.3s;
}
.voice-card:hover { border-color: rgba(240, 160, 48, 0.28); }
.voice-mark {
  font-family: var(--font-accent);
  font-size: 3.5rem;
  line-height: 0.4;
  color: var(--harvest-gold);
  opacity: 0.38;
  display: block;
  margin-bottom: 1.1rem;
}
.voice-text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(242, 237, 228, 0.82);
  margin-bottom: 1.25rem;
}
.voice-source {
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ===========================================
   FULL-BLEED PHOTO BREAK
=========================================== */
.photo-break { position: relative; height: 420px; overflow: hidden; }
.photo-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
.photo-break::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(13,26,15,0.6) 0%,
    rgba(13,26,15,0.15) 50%,
    rgba(13,26,15,0.6) 100%);
  z-index: 1;
}
.photo-break-text {
  position: absolute; inset: 0; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.photo-break-text p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--cream);
  max-width: 700px;
  line-height: 1.55;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* ===========================================
   SECTION: THE PEOPLE
=========================================== */
#people { background: var(--forest-night); }
.people-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.co-creator-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; list-style: none; }
.chip {
  display: inline-block;
  background: rgba(42, 122, 53, 0.12);
  border: 1px solid rgba(42, 122, 53, 0.28);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: background 0.3s, border-color 0.3s;
}
.chip:hover { background: rgba(42, 122, 53, 0.25); border-color: var(--living-green); }
.people-photo { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.people-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-bloom);
}
.people-photo:hover img { transform: scale(1.03); }

.presenters-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-align: center;
}
.presenter-cloud { display: flex; flex-wrap: wrap; gap: 0.55rem; justify-content: center; }
.presenter-tag {
  display: inline-block;
  padding: 0.38rem 0.95rem;
  border-radius: 100px;
  font-size: 0.83rem;
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  color: rgba(242, 237, 228, 0.65);
  transition: all 0.3s;
  cursor: default;
}
.presenter-tag:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.28);
  color: var(--cream);
}
.presenter-more-link { display: block; text-align: center; margin-top: 2rem; }

/* ===========================================
   SECTION: LINEAGE
=========================================== */
#lineage { background: linear-gradient(180deg, var(--forest-night) 0%, #060d07 100%); text-align: center; }
.lineage-track {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 4rem;
  position: relative;
}
.lineage-track::before {
  content: '';
  position: absolute;
  top: 22px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(240,160,48,0.25) 20%,
    rgba(240,160,48,0.25) 80%,
    transparent 100%);
}
.lineage-stop {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}
.stop-node {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest-night);
  border: 1.5px solid var(--harvest-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--harvest-gold);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}
.lineage-stop:hover .stop-node {
  background: rgba(240, 160, 48, 0.12);
  transform: scale(1.12);
  box-shadow: 0 0 18px rgba(240, 160, 48, 0.2);
}
.lineage-stop.current .stop-node {
  border-color: var(--sacred-flame);
  color: var(--sacred-flame);
  background: rgba(255, 107, 26, 0.07);
}
.stop-year { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--cream); }
.lineage-stop.current .stop-year { color: var(--sacred-flame); }
.stop-place { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.lineage-motto { margin-top: 4.5rem; font-family: var(--font-accent); font-style: italic; font-size: 1.15rem; color: rgba(242, 237, 228, 0.45); }

/* ===========================================
   SECTION: GET INVOLVED
=========================================== */
#get-involved {
  background: linear-gradient(180deg, #060d07 0%, rgba(13,26,15,0.97) 100%);
  text-align: center;
}
.involved-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.75rem;
}
.involved-tile {
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 3rem 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.3s, transform 0.35s var(--ease-bloom), box-shadow 0.35s;
}
.involved-tile:hover {
  border-color: rgba(255, 107, 26, 0.18);
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(0,0,0,0.3);
}
.involved-tile .icon { font-size: 2.6rem; margin-bottom: 1.2rem; }
.involved-tile-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.85rem;
}
.involved-tile-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.75rem; flex: 1; }

/* ===========================================
   FOOTER
=========================================== */
#site-footer {
  background: #050c06;
  padding: 5.5rem 2rem 3rem;
  border-top: 1px solid rgba(240, 160, 48, 0.07);
}
.footer-wrap { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}
.footer-logo-img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(240, 160, 48, 0.2);
  margin-bottom: 1rem;
}
.footer-tagline {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 270px;
  margin-bottom: 1rem;
}
.footer-contact { font-size: 0.82rem; color: rgba(160, 144, 128, 0.7); }
.footer-contact a { color: var(--harvest-gold); }
.newsletter-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.25rem 0 0.6rem;
}
.newsletter-row { display: flex; gap: 0.4rem; }
.newsletter-row input {
  flex: 1;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-row input:focus { border-color: rgba(255,107,26,0.38); }
.newsletter-row input::placeholder { color: rgba(160,144,128,0.6); }
.newsletter-row button {
  background: var(--sacred-flame);
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cream);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}
.newsletter-row button:hover { box-shadow: 0 0 14px rgba(255,107,26,0.4); transform: translateY(-1px); }
.footer-col-heading {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--harvest-gold);
  margin-bottom: 1.2rem;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-links a { font-size: 0.865rem; color: var(--muted); transition: color 0.2s; }
.footer-col-links a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-legal { font-size: 0.72rem; color: rgba(160,144,128,0.5); }
.footer-fsc { font-size: 0.72rem; color: rgba(160,144,128,0.45); }
.footer-fsc a { color: rgba(42,122,53,0.7); transition: color 0.2s; }
.footer-fsc a:hover { color: var(--living-green); }

/* ===========================================
   INNER PAGE HERO (non-homepage)
=========================================== */
.page-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  background: linear-gradient(180deg, #071209 0%, var(--forest-night) 100%);
  border-bottom: 1px solid rgba(240,160,48,0.06);
}
.page-hero .eyebrow { margin-bottom: 0.75rem; }
.page-hero .section-title { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.page-hero .section-body { max-width: 600px; margin: 0 auto; }

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

  .essence-grid,
  .people-split { grid-template-columns: 1fr; gap: 3rem; }
  .essence-photo { aspect-ratio: 16/9; }

  .offerings-grid { grid-template-columns: 1fr; }
  .voices-grid    { grid-template-columns: 1fr; }
  .involved-grid  { grid-template-columns: 1fr; }

  .lineage-track::before { display: none; }
  .lineage-track { flex-direction: column; align-items: flex-start; gap: 1.75rem; padding: 0 1rem; }
  .lineage-stop { flex-direction: row; gap: 1.2rem; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .gathering-card { padding: 2rem 1.5rem; }
  .gathering-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  section { padding: 5rem 1.25rem; }
  #main-nav { padding: 0 1.25rem; }
  .photo-break { height: 280px; }
}
