/* ===========================================
   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 70% 60% at 50% 48%, rgba(5, 12, 6, 0.72) 0%, transparent 100%),
    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;
}
/* Photo sits ABOVE the opaque gradient so it's actually visible */
.hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.16;
  -webkit-mask-image: linear-gradient(to bottom, black 20%, black 55%, transparent 88%);
  mask-image: linear-gradient(to bottom, black 20%, black 55%, transparent 88%);
}
#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 3;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 4;
  max-width: 860px;
  padding: 0 2rem;
}
/* hero-logo-wrap removed — logo now renders as hero background */
.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;
  text-shadow: 0 2px 24px rgba(0,0,0,0.9), 0 0 48px rgba(5,12,6,0.95);
}
.hero-subtheme {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.85);
}
.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;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}
.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: 4;
  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 — inner pages (mirrors #hero homepage pattern)
=========================================== */
.page-hero {
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
  overflow: hidden;
  background-color: #071209;
  border-bottom: 1px solid rgba(240,160,48,0.06);
}
/* Layer 1 — radial glow base (same as .hero-bg-layer on homepage) */
.page-hero-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 48%, rgba(5,12,6,0.72) 0%, transparent 100%),
    radial-gradient(ellipse at 25% 65%, rgba(42,122,53,0.20) 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;
}
/* Layer 2 — photo (mirrors .hero-photo-bg: sits above bg-layer) */
.page-hero-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.page-hero-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.35;
  -webkit-mask-image: linear-gradient(to bottom, black 20%, black 55%, transparent 88%);
  mask-image: linear-gradient(to bottom, black 20%, black 55%, transparent 88%);
}
/* Layer 3 — all content (eyebrow, title, cta, etc.) */
.page-hero > *:not(.page-hero-photo-bg):not(.page-hero-bg-layer) {
  position: relative;
  z-index: 3;
}
.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; }

/* ===========================================
   SECTION PHOTO BACKGROUND (reusable)
   e.g. Come Prepared on 2026.html
=========================================== */
.section-photo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
/* #offerings — radial glow background matching homepage section treatment */
#offerings {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(42,122,53,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.06) 0%, transparent 55%),
    var(--forest-night);
}

.section-photo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: saturate(0.80);
}
/* Standard overlay gradient — same values as page-cta-section::before */
.section-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(3,10,4,0.72) 0%,
    rgba(3,10,4,0.52) 50%,
    rgba(3,10,4,0.78) 100%);
  z-index: 1;
}
#prepare {
  position: relative;
  overflow: hidden;
}
#prepare::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(3,10,4,0.72) 0%,
    rgba(3,10,4,0.52) 50%,
    rgba(3,10,4,0.78) 100%);
  z-index: 1;
}
#prepare > *:not(.section-photo-bg) { position: relative; z-index: 2; }

/* ===========================================
   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; }
}

/* ===========================================
   SCHEDULE — 2026.html
=========================================== */

/* Advisory callout — "not bound to linear time" */
.schedule-callout {
  background: rgba(139, 92, 246, 0.07);
  border-left: 3px solid var(--electric-violet);
  border-radius: 0 10px 10px 0;
  padding: 1.5rem 2rem;
  margin: 2.5rem 0 3.5rem;
  max-width: 780px;
}
.schedule-callout p {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(242, 237, 228, 0.72);
}

/* Day block */
.schedule-days { display: flex; flex-direction: column; gap: 3rem; }

.schedule-day {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(42, 122, 53, 0.18);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
/* Gradient top border — matches .gathering-card::before */
.schedule-day::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));
  z-index: 1;
}
.schedule-day-header {
  padding: 1.75rem 2rem 1.5rem;
  background: rgba(42, 122, 53, 0.07);
  border-bottom: 1px solid rgba(42, 122, 53, 0.18);
}
.schedule-day-header .day-number {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sacred-flame);
  display: block;
  margin-bottom: 0.35rem;
}
.schedule-day-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.schedule-day-header .day-theme {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Schedule items list */
.schedule-list {
  list-style: none;
  padding: 0.5rem 0;
}
.schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.schedule-item:last-child { border-bottom: none; }
.schedule-item:hover {
  background: rgba(255,255,255,0.03);
  box-shadow: inset 3px 0 0 var(--harvest-gold);
}

/* Sacred number times — Harvest Gold, slightly larger, Cinzel */
.sacred-time {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--harvest-gold);
  letter-spacing: 0.06em;
  white-space: nowrap;
  min-width: 6rem;
  padding-top: 0.15rem;
  flex-shrink: 0;
}
.schedule-item-body { flex: 1; }
.schedule-item-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.2rem;
}
.schedule-item-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}
.schedule-item-desc strong { color: var(--cream); }

/* No-time items (no sacred time stamp) */
.schedule-item.no-time .sacred-time {
  color: rgba(160, 144, 128, 0.35);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

/* ===========================================
   WHAT TO BRING & AGREEMENTS — 2026.html
=========================================== */
.bring-agreements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}
.list-card {
  background: rgba(13, 26, 15, 0.65);
  border: 1px solid rgba(42, 122, 53, 0.22);
  border-radius: 14px;
  padding: 2rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.list-card:hover {
  border-color: rgba(42, 122, 53, 0.45);
  box-shadow: 0 0 28px rgba(42, 122, 53, 0.08);
}
/* Gradient top border — matches .gathering-card::before */
.list-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));
}
.list-card-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--harvest-gold);
  margin-bottom: 1.25rem;
}
.list-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.list-card ul li {
  font-size: 0.9rem;
  color: rgba(242, 237, 228, 0.75);
  line-height: 1.55;
  padding-left: 1.1rem;
  position: relative;
}
.list-card ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--living-green);
  font-weight: 700;
}
.list-card ul li em { color: var(--muted); font-style: italic; }
.list-card ul li strong { color: var(--cream); }

/* Agreements have slightly different treatment */
.list-card.agreements ul li::before { color: var(--sacred-flame); }

/* ===========================================
   CARPOOL — 2026.html
=========================================== */
.carpool-block {
  background: rgba(13, 26, 15, 0.55);
  border: 1px solid rgba(42, 122, 53, 0.22);
  border-left: 3px solid var(--living-green);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 780px;
  margin: 0 auto;
}
.carpool-icon {
  font-size: 2rem;
  flex-shrink: 0;
  color: var(--harvest-gold);
  filter: sepia(1) saturate(2) hue-rotate(10deg);
}
.carpool-body { flex: 1; min-width: 220px; }
.carpool-body p {
  font-size: 0.95rem;
  color: rgba(242, 237, 228, 0.78);
  line-height: 1.7;
}
.carpool-body a { color: var(--powder-sky); text-decoration: underline; text-underline-offset: 3px; }
.carpool-body a:hover { color: var(--cream); }

/* ===========================================
   PAGE CTA SECTION — shared across inner pages
=========================================== */
.page-cta-section {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2rem;
  overflow: hidden;
  background-color: #060d07;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-top: 1px solid rgba(240, 160, 48, 0.07);
}
/* Dark overlay — rgba(5,12,6,0.72) solid, text always legible */
.page-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 6, 0.72);
  z-index: 0;
}
.page-cta-section > * { position: relative; z-index: 1; }
.page-cta-section .section-title { margin-bottom: 0.75rem; }
.page-cta-section .section-body { max-width: 520px; margin: 0 auto 2rem; }
.page-cta-phone {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.page-cta-phone a { color: var(--harvest-gold); }

/* ===========================================
   CONTACT FORM — 2026.html / contact.html
=========================================== */
.contact-form-wrap {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form-intro {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.975rem;
  color: rgba(242, 237, 228, 0.65);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { border-color: rgba(255, 107, 26, 0.4); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(160,144,128,0.5); }
.form-field textarea { min-height: 140px; }
.form-submit { align-self: flex-start; margin-top: 0.5rem; }

/* ===========================================
   RESPONSIVE — inner page additions
=========================================== */
@media (max-width: 960px) {
  .bring-agreements-grid { grid-template-columns: 1fr; }
  .carpool-block { padding: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .schedule-item { gap: 1rem; padding: 0.875rem 1.25rem; }
  .sacred-time { min-width: 5rem; font-size: 0.85rem; }
  .schedule-day-header { padding: 1.25rem; }
}

/* ===========================================
   PHOTO PLACEHOLDER (DESIGN_PRINCIPLES standard)
   Build-time placeholder — swap for real img when ready.
=========================================== */
.photo-placeholder {
  background: rgba(42, 122, 53, 0.08);
  border: 2px dashed rgba(42, 122, 53, 0.30);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(42, 122, 53, 0.65);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 2rem;
}
.photo-placeholder .ph-icon { font-size: 1.75rem; opacity: 0.5; margin-bottom: 0.25rem; }
.photo-placeholder .ph-label { font-weight: 700; font-size: 0.82rem; color: rgba(42,122,53,0.85); }
.photo-placeholder .ph-dims  { font-size: 0.72rem; opacity: 0.65; }
/* Hero context — absolute-fills the page-hero-photo-bg wrapper */
.photo-placeholder--hero {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border-width: 0;
  background: rgba(42, 122, 53, 0.04);
}
/* Photo-break context — fills the .photo-break band */
.photo-placeholder--break {
  height: 420px;
  border-radius: 0;
  border-left: none;
  border-right: none;
}
/* CTA background context — absolute, behind content */
.photo-placeholder--bg {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
  background: rgba(42, 122, 53, 0.04);
  z-index: 0;
}
/* Fix: prevent page-cta-section > * rule from promoting .section-photo-bg */
.page-cta-section > *:not(.section-photo-bg):not(.photo-placeholder--bg) {
  position: relative;
  z-index: 1;
}

/* ===========================================
   GATHERING PAGE — gathering.html
=========================================== */
#what-it-is {
  background:
    radial-gradient(ellipse at 15% 60%, rgba(42,122,53,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(139,92,246,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--forest-night) 0%, #091608 100%);
}
.what-it-is-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

/* Expanded WO·MAN·I section */
#womi-section {
  background: linear-gradient(180deg, #091608 0%, var(--forest-night) 100%);
  text-align: center;
}
.womi-intro {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(242, 237, 228, 0.52);
  margin: 1.5rem auto 3.5rem;
  max-width: 480px;
  line-height: 1.7;
}
.womi-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.womi-full-card {
  background: rgba(13, 26, 15, 0.60);
  border: 1px solid rgba(42, 122, 53, 0.18);
  border-radius: 16px;
  padding: 2.5rem 2rem 2.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.womi-full-card:hover { box-shadow: 0 0 36px rgba(42, 122, 53, 0.09); }
.womi-full-card.wo::before  { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--electric-violet), rgba(139,92,246,0.35)); }
.womi-full-card.man::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sacred-flame), var(--harvest-gold)); }
.womi-full-card.i::before   { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--harvest-gold), var(--living-green)); }
.womi-full-glyph {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
  display: block;
}
.womi-full-glyph.wo  { color: var(--electric-violet); }
.womi-full-glyph.man { color: var(--sacred-flame); }
.womi-full-glyph.i   { color: var(--harvest-gold); }
.womi-full-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
  display: block;
}
.womi-full-desc {
  font-size: 0.9rem;
  color: rgba(242, 237, 228, 0.70);
  line-height: 1.75;
  text-align: left;
}
.womi-mandala-wrap {
  max-width: 300px;
  margin: 0 auto 3rem;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(240, 160, 48, 0.22);
  box-shadow: 0 0 60px rgba(240, 160, 48, 0.09);
}
.womi-mandala-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-bloom);
}
.womi-mandala-wrap:hover img { transform: scale(1.05) rotate(3deg); }
/* Placeholder inside circular mandala frame */
.womi-mandala-wrap .photo-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  background: rgba(42, 122, 53, 0.06);
}
.womi-closing {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(242, 237, 228, 0.5);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.85;
}

/* Who Comes */
#who-comes {
  background:
    radial-gradient(ellipse at 80% 35%, rgba(42,122,53,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 70%, rgba(139,92,246,0.05) 0%, transparent 50%),
    var(--forest-night);
  text-align: center;
}
#who-comes .section-body { max-width: 680px; margin: 0 auto 1.5rem; }
.agreements-quote--who-comes {
  margin-top: 3rem;
  display: inline-block;
}

/* What Happens */
#what-happens {
  background: linear-gradient(180deg, #091608 0%, var(--forest-night) 100%);
}
#what-happens .section-title { margin-bottom: 0.75rem; }
#what-happens .section-body { max-width: 620px; margin: 0 auto 3.5rem; }

/* Evolution / Lineage */
#gathering-evolution {
  background: linear-gradient(180deg, var(--forest-night) 0%, #060d07 100%);
  text-align: center;
}
.evo-copy {
  max-width: 680px;
  margin: 0 auto 4rem;
  text-align: left;
}
.evo-copy .section-body { margin-bottom: 1.25rem; }
.evo-quote {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(242, 237, 228, 0.45);
  margin-top: 1.5rem;
}

/* ===========================================
   RESPONSIVE — gathering.html additions
=========================================== */
@media (max-width: 960px) {
  .what-it-is-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .womi-full-grid   { grid-template-columns: 1fr; gap: 1.5rem; }
  .womi-mandala-wrap { max-width: 220px; }
}
@media (max-width: 600px) {
  .photo-placeholder--break { height: 280px; }
}

/* ===========================================
   PRESENTER GALLERY — presenters.html
=========================================== */

/* Lead-in section */
#presenters-leadin {
  padding: 7rem 2rem 4rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(42,122,53,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(139,92,246,0.05) 0%, transparent 50%),
    var(--forest-night);
}
#presenters-leadin .section-body {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

/* Modality tags ribbon */
.modality-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.modality-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--sacred-flame);
  background: rgba(255, 107, 26, 0.08);
  border: 1px solid rgba(255, 107, 26, 0.28);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  white-space: nowrap;
}

/* Gallery section */
#presenter-gallery {
  padding: 3rem 2rem 7rem;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(42,122,53,0.06) 0%, transparent 58%),
    radial-gradient(ellipse at 85% 70%, rgba(139,92,246,0.04) 0%, transparent 52%),
    var(--forest-night);
}

/* 5-col grid — spec: >1200 / 960-1200 / 600-960 / <600 */
.presenter-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 1rem;
}
@media (max-width: 1200px) {
  .presenter-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 960px) {
  .presenter-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .presenter-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
}

/* Card */
.presenter-card {
  background: rgba(13, 26, 15, 0.75);
  border: 1px solid rgba(42, 122, 53, 0.20);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s var(--ease-bloom), box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  outline: none;
}
.presenter-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));
  z-index: 2;
}
.presenter-card:hover,
.presenter-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(42,122,53,0.20), 0 0 0 1px rgba(42,122,53,0.35);
  border-color: rgba(42, 122, 53, 0.40);
}

/* Portrait + hover overlay */
.presenter-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: rgba(42, 122, 53, 0.10);
  position: relative;
  flex-shrink: 0;
}
.presenter-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s var(--ease-bloom), filter 0.3s;
}
.presenter-card:hover .presenter-portrait img {
  transform: scale(1.04);
  filter: brightness(0.55);
}

/* "View Profile" overlay text */
.presenter-hover-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  pointer-events: none;
  z-index: 1;
}
.presenter-hover-overlay span {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(242, 237, 228, 0.5);
  border-radius: 999px;
  padding: 0.4rem 1rem;
}
.presenter-card:hover .presenter-hover-overlay,
.presenter-card:focus-visible .presenter-hover-overlay {
  opacity: 1;
}

/* Card label area */
.presenter-card-info {
  padding: 0.75rem 0.85rem 1rem;
}
.presenter-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}
.presenter-topic {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ── PROFILE MODAL ── */
body.modal-open { overflow: hidden; }

#profile-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
#profile-modal.is-open {
  display: block;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 6, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: modalFadeIn 0.22s ease forwards;
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-card {
  position: relative;
  background: var(--forest-night);
  border: 1px solid rgba(42, 122, 53, 0.25);
  border-radius: 16px;
  overflow: hidden;
  max-width: 780px;
  width: 100%;
  display: grid;
  grid-template-columns: 300px 1fr;
  animation: modalSlideIn 0.22s ease forwards;
  max-height: 90vh;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-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));
  z-index: 1;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.modal-close:hover { color: var(--cream); background: rgba(255,255,255,0.06); }

/* Portrait column */
.modal-portrait-col {
  overflow: hidden;
  border-radius: 16px 0 0 16px;
  background: rgba(42, 122, 53, 0.10);
  flex-shrink: 0;
}
.modal-portrait-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Content column */
.modal-content-col {
  padding: 2.5rem 2rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.modal-eyebrow {
  font-size: 0.68rem !important;
  margin-bottom: 0.25rem;
}
.modal-name {
  font-size: clamp(1.1rem, 2vw, 1.5rem) !important;
  margin-bottom: 0.5rem;
}
.modal-bio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(242, 237, 228, 0.78);
  line-height: 1.75;
}
.modal-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--living-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 0.5rem;
  transition: color 0.2s;
  word-break: break-all;
}
.modal-link:hover { color: var(--harvest-gold); }

/* Modal responsive */
@media (max-width: 680px) {
  .modal-card {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 1fr;
  }
  .modal-portrait-col {
    border-radius: 16px 16px 0 0;
    height: 260px;
  }
  .modal-portrait-col img { height: 100%; }
}

/* Apply section */
#apply-to-present {
  padding: 7rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(42,122,53,0.06) 0%, transparent 60%),
    var(--forest-night);
}
#apply-to-present .section-body {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
