/* ==========================================================================
   Ancient Future Gathering — site.css (Revision 2)
   Mobile-first. min-width media queries only.
   ========================================================================== */

/* Google Fonts loaded via <link> in HTML head — NOT here — to avoid the
   render-blocking @import chain (CSS download → @import discovery → font download) */

:root {
  /* palette — sampled from the official poster (Main poster fonts and logo.png) */
  --af-navy-950: #0B1F27;
  --af-navy-900: #123642;
  --af-navy-800: #1B4652;
  --af-teal-700: #2F6B78;
  --af-teal-400: #7FAAB4;
  --af-cream-50: #F7F1E4;
  --af-cream-100: #EEE4D0;
  --af-cream-200: #E4D6B8;
  --af-ink-900: #241F19;
  --af-ink-600: #4A4335;
  --af-gold-300: #E9D2A4;
  --af-gold-500: #C9A15C;
  --af-gold-600: #B3894A;
  --af-gold-700: #9C7A3F;

  --af-font-display: 'Cinzel', 'Times New Roman', serif;
  --af-font-body: 'Cinzel', 'Times New Roman', serif;

  --af-container: 78rem;
  --af-radius: 0.375rem;
  --af-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------------------
   Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; width: 100%; }
body {
  margin: 0;
  background: var(--af-cream-50);
  color: var(--af-ink-900);
  font-family: var(--af-font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, li { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p { margin: 0; }
.container {
  width: 100%;
  max-width: var(--af-container);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { position: relative; }

.eyebrow {
  display: block;
  font-family: var(--af-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--af-gold-600);
  margin-bottom: 0.9rem;
}
.section-title {
  font-family: var(--af-font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  line-height: 1.25;
}
.lede {
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  line-height: 1.85;
  color: var(--af-ink-600);
  max-width: 42rem;
}
.on-dark .lede { color: var(--af-cream-200); }
.on-dark .section-title { color: var(--af-cream-50); }
/* .lede hardcodes a dark ink color that wins over any inherited section
   color, so every dark-background section that uses it needs an explicit
   override here — listed once, so it can't be forgotten per-section again. */
.village .lede, .vision .lede, .site-footer .lede { color: var(--af-cream-200); }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  font-family: var(--af-font-display);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.35s var(--af-ease), background-color 0.35s var(--af-ease), border-color 0.35s var(--af-ease), color 0.35s var(--af-ease);
}
.btn-gold {
  background: linear-gradient(180deg, var(--af-gold-500), var(--af-gold-600));
  color: var(--af-navy-950);
}
.btn-gold:hover { transform: translateY(-2px); background: var(--af-gold-500); }
.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}
.btn-outline:hover { transform: translateY(-2px); background: rgba(255,255,255,0.08); }
.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: none;
  border: none;
  padding: 0.4rem 0;
  color: var(--af-cream-50);
  font-family: var(--af-font-display);
  font-weight: 600;
  letter-spacing: 0.03em;
  min-height: 44px;
}
.btn-watch .ring {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--af-gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.35s var(--af-ease);
}
.btn-watch .ring::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid var(--af-gold-500);
  margin-left: 3px;
}
.btn-watch:hover .ring { background: var(--af-gold-500); }
.btn-watch:hover .ring::before { border-left-color: var(--af-navy-950); }

.cta-row { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  /* a soft permanent scrim, not full transparency — the hero underneath
     isn't always dark (the FAQ hero is deliberately light-toned), so the
     nav needs to stay readable regardless of what's behind it */
  background: linear-gradient(180deg, rgba(11,31,39,0.55), rgba(11,31,39,0));
  transition: background-color 0.4s var(--af-ease), padding 0.4s var(--af-ease), box-shadow 0.4s var(--af-ease);
}
.site-header.is-scrolled {
  background: rgba(11, 31, 39, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.65rem 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; }
.brand {
  font-family: var(--af-font-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
  color: var(--af-cream-50);
  text-transform: uppercase;
  line-height: 1.2;
}
.brand small { display: block; font-family: var(--af-font-display); font-size: 0.6rem; letter-spacing: 0.3em; color: var(--af-gold-500); margin-top: 0.15rem; }
.brand-logo { height: 44px; width: auto; display: block; }

.nav-toggle {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  background: none; border: none;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--af-cream-50); transition: transform 0.3s var(--af-ease), opacity 0.3s var(--af-ease); }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(80vw, 320px);
  background: var(--af-navy-950);
  transform: translateX(100%);
  transition: transform 0.5s var(--af-ease);
  padding: 6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  z-index: 99;
}
.main-nav.is-open { transform: translateX(0); }
.main-nav a { font-family: var(--af-font-display); font-size: 1.1rem; letter-spacing: 0.06em; color: var(--af-cream-100); }
.main-nav a.is-active { color: var(--af-gold-500); }
.main-nav .btn-gold { margin-top: 0.5rem; }
.nav-scrim {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transition: opacity 0.4s var(--af-ease); z-index: 98;
}
.nav-scrim.is-open { opacity: 1; pointer-events: auto; }

/* --------------------------------------------------------------------------
   Hero (countdown now lives inside it)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--af-navy-950);
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 2.5rem;
}
.hero-layers { position: absolute; inset: -15% -15%; }
.hero-layer { position: absolute; inset: 0; background-size: cover; background-position: center; will-change: transform; }
.hero-layer-geo { display: flex; align-items: center; justify-content: center; opacity: 0.65; }
.hero-layer-geo svg { width: 140vw; max-width: 1000px; }
.hero-vignette { position: absolute; inset: -15% -15%; background: radial-gradient(ellipse at 50% 100%, rgba(11,31,39,0) 0%, rgba(11,31,39,0.92) 78%); pointer-events: none; }
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1.5rem;
  text-align: center;
}
.hero-content .eyebrow { color: var(--af-gold-300); }
.hero-title {
  font-family: var(--af-font-display);
  color: var(--af-cream-50);
  font-size: clamp(3rem, 12vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-bottom: 0.6rem;
}
.hero-title em { font-style: normal; color: var(--af-gold-500); }
.hero-tagline {
  font-family: var(--af-font-display);
  font-size: clamp(0.85rem, 2.2vw, 1.05rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--af-gold-300);
  margin-bottom: 1.25rem;
}
.hero-meta {
  color: var(--af-cream-200);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}
.hero-meta strong { color: var(--af-cream-50); font-weight: 600; }

/* countdown straddling seam */
.hero-countdown-block {
  margin: 0;
  padding: 1.1rem 2.5rem 1.3rem;
  border: 1px solid rgba(233,210,164,0.32);
  border-radius: var(--af-radius);
  background: rgba(11,31,40,0.72);
  backdrop-filter: blur(10px);
  display: inline-block;
  min-width: min(540px, 90vw);
  text-align: center;
}
.hero-countdown-block .countdown-caption {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--af-gold-300);
  margin-bottom: 0.7rem;
  display: block;
}
#defaultCountdown.countdown-elegant { display: flex; gap: 2.5rem; justify-content: center; }
.countdown-elegant .countdown-section { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; min-width: 3rem; }
.countdown-elegant .countdown-amount { font-family: var(--af-font-display); font-weight: 600; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--af-gold-500); line-height: 1; }
.countdown-elegant .countdown-period { font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--af-cream-200); }

.hero-ctas { display: flex; flex-direction: column; gap: 1.25rem; align-items: center; justify-content: center; }

/* absolutely positioned inside .proof-strip so it takes up no flow space —
   sits at top:-60px which pulls it 60px up into the hero. No stripe. */
.hero-countdown-straddle {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.hero-countdown-straddle .hero-countdown-block { pointer-events: auto; box-shadow: 0 24px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,167,104,0.18); }

/* --------------------------------------------------------------------------
   Sacred geometry line-draw — thicker, placed at every section seam
   -------------------------------------------------------------------------- */
.geo-draw circle, .geo-draw path {
  fill: none;
  stroke: var(--af-gold-500);
  stroke-width: 1.4;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.8s var(--af-ease);
}
.geo-draw.is-drawn circle, .geo-draw.is-drawn path { stroke-dashoffset: 0; }

/* once drawn, the hero's interlocking circles keep turning slowly forever
   rather than freezing after the reveal */
.hero-layer-geo svg {
  transform-origin: 50% 50%;
}
.hero-layer-geo svg.is-drawn {
  animation: geo-spin 90s linear infinite;
  animation-delay: 1.8s;
}
@keyframes geo-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.seam {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0;
  height: 90px;
  overflow: hidden;
}
.seam svg { width: 220px; height: 90px; }
.seam.seam-dark { background: var(--af-navy-950); }
.seam.seam-light { background: var(--af-cream-50); }
.seam.seam-mid { background: var(--af-cream-100); }
.seam-line { fill: none; stroke: var(--af-gold-500); stroke-width: 2; stroke-dasharray: 500; stroke-dashoffset: 500; transition: stroke-dashoffset 1.8s var(--af-ease); }
.seam.is-drawn .seam-line { stroke-dashoffset: 0; }

/* --------------------------------------------------------------------------
   Mirror-photo — real reflection, only used where an actual photo exists
   -------------------------------------------------------------------------- */
.mirror-photo {
  position: relative;
  overflow: visible;
  border-radius: var(--af-radius);
}
.mirror-photo .mp-frame { position: relative; overflow: hidden; border-radius: var(--af-radius); }
.mp-face {
  background-size: cover;
  background-position: center;
  width: 100%;
  aspect-ratio: var(--mp-ratio, 4/5);
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.2s var(--af-ease);
}
.mp-reflection {
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 65%;
  background-size: cover;
  background-position: center;
  transform: scaleY(-1);
  filter: blur(9px) saturate(0.8);
  opacity: 0;
  mask-image: linear-gradient(to top, transparent, black 65%);
  -webkit-mask-image: linear-gradient(to top, transparent, black 65%);
  pointer-events: none;
}
.mirror-photo.is-revealed .mp-face { clip-path: inset(0 0 0% 0); }
.mirror-photo.is-revealed .mp-reflection { animation: reflection-settle 2.2s var(--af-ease) forwards; }
@keyframes reflection-settle {
  0% { opacity: 0; }
  35% { opacity: 0.5; }
  100% { opacity: 0.14; }
}

/* --------------------------------------------------------------------------
   Horizon-wipe — text-only reveal, a distinct signature from mirror-photo
   -------------------------------------------------------------------------- */
.horizon-wipe {
  position: relative;
  clip-path: inset(0 0 100% 0);
}
.horizon-wipe::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--af-gold-500), transparent);
  opacity: 0;
}
.horizon-wipe.is-revealed { animation: wipe-down 1.3s var(--af-ease) forwards; }
.horizon-wipe.is-revealed::after { animation: line-sweep 1.3s var(--af-ease) forwards; }
@keyframes wipe-down {
  0% { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0 0 0% 0); }
}
@keyframes line-sweep {
  0% { top: 0%; opacity: 1; }
  85% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--af-ease), transform 0.6s var(--af-ease);
}
[data-stagger] > *.is-revealed { opacity: 1; transform: translateY(0); }

/* Voice cards fly in from above and land */
.voices-grid[data-stagger] > * {
  transform: translateY(-55px);
}

.lineup-intro { padding: 2.5rem 0 0.5rem; border-bottom: 1px solid rgba(201,167,104,0.15); margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Proof / credibility strip
   -------------------------------------------------------------------------- */
.proof-strip { background: var(--af-navy-950); padding: 80px 0 1.25rem; position: relative; overflow: visible; }
.ticket-band { padding: 2.25rem 0; text-align: center; }
.proof-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.5rem; text-align: center; }
.proof-item .num { font-family: var(--af-font-display); font-size: clamp(1rem, 3vw, 1.4rem); color: var(--af-gold-500); display: block; }
.proof-item .label { font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--af-cream-200); margin-top: 0.2rem; display: block; }

/* --------------------------------------------------------------------------
   Numbered steps — image card on top, text below, dark card background
   -------------------------------------------------------------------------- */
.steps { background: var(--af-cream-50); padding: 2.25rem 0; }
.steps-intro-row { display: grid; gap: 2rem; align-items: center; }
.steps-intro-row .home-collage { position: relative; height: 340px; max-width: none; margin: 0; }
.steps-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.step-card {
  background: var(--af-navy-900);
  border-radius: var(--af-radius);
  overflow: hidden;
  border-top: 2px solid var(--af-gold-500);
  box-shadow: 0 10px 50px rgba(14,36,48,0.52), 0 3px 12px rgba(14,36,48,0.30);
  transition: transform 0.35s var(--af-ease), box-shadow 0.35s var(--af-ease);
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 64px rgba(14,36,48,0.60), 0 6px 18px rgba(14,36,48,0.36);
}
.step-card-img { aspect-ratio: 16/9; overflow: hidden; }
.step-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.8s var(--af-ease); }
.step-card:hover .step-card-img img { transform: scale(1.04); }
.step-card-body { padding: 1.5rem 1.4rem 1.75rem; }
.step-card .step-num {
  display: block;
  font-family: var(--af-font-display);
  color: var(--af-gold-500);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  margin-bottom: 0.65rem;
}
.step-card h3 { font-family: var(--af-font-display); font-size: 1.1rem; color: var(--af-cream-50); margin-bottom: 0.5rem; line-height: 1.3; }
.step-card p { color: var(--af-cream-200); font-size: 0.875rem; line-height: 1.8; }
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.9rem;
  font-family: var(--af-font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--af-gold-500);
  text-decoration: none;
  transition: gap 0.22s var(--af-ease);
}
.read-more-link::after { content: "→"; }
.read-more-link:hover { gap: 0.6rem; }

/* --------------------------------------------------------------------------
   Pillars: Remember / Envision / Embody — photo-backed, mirror-photo
   -------------------------------------------------------------------------- */
.pillars { background: var(--af-cream-100); padding: 2.25rem 0; }
.pillars-intro { margin-bottom: 3rem; }
.pillar-grid { display: grid; gap: 2.5rem; }
.pillar {
  position: relative;
  border-radius: var(--af-radius);
  overflow: hidden;
  background: var(--af-navy-950);
}
.pillar .mp-frame { border-radius: 0; }
.pillar-geo-accent {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  padding: 18%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.8;
}
.pillar-body { padding: 1.75rem 1.5rem 2rem; position: relative; }
.pillar-index { font-family: var(--af-font-display); color: var(--af-gold-500); font-size: 0.8rem; letter-spacing: 0.2em; }
.pillar h3 { font-family: var(--af-font-display); font-size: 1.5rem; margin: 0.6rem 0 0.85rem; color: var(--af-cream-50); }
.pillar p { color: var(--af-cream-200); font-size: 0.875rem; line-height: 1.8; }

/* --------------------------------------------------------------------------
   Chips / rings (replaces bullet lists)
   -------------------------------------------------------------------------- */
.chip-field { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--af-teal-700);
  color: var(--af-cream-100);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.on-light .chip { border-color: var(--af-gold-500); color: var(--af-ink-900); background: var(--af-cream-50); }

/* --------------------------------------------------------------------------
   Homepage 3-photo collage — overlapping, no shadows
   -------------------------------------------------------------------------- */
.home-collage {
  position: relative;
  height: 320px;
  max-width: 62rem;
  margin: 3rem auto 0;
}
.home-collage .hc-main {
  position: absolute;
  left: 0; top: 0;
  width: 54%; height: 100%;
  border-radius: var(--af-radius);
  overflow: hidden;
}
.home-collage .hc-b {
  position: absolute;
  right: 0; top: 0;
  width: 43%; height: 62%;
  border-radius: var(--af-radius);
  overflow: hidden;
}
.home-collage .hc-c {
  position: absolute;
  right: 10%; bottom: 0;
  width: 30%; height: 48%;
  border-radius: var(--af-radius);
  overflow: hidden;
  transform: rotate(-2.5deg);
  z-index: 2;
}
.home-collage img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* --------------------------------------------------------------------------
   Village deep-dive two-column panel
   -------------------------------------------------------------------------- */
.village {
  background: var(--af-navy-950);
  padding: 2.25rem 0;
  color: var(--af-cream-100);
}
.village-topics { margin: 2rem 0 2.5rem; }
.village-speakers { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
.speaker-mini {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(233,210,164,0.2);
  border-radius: var(--af-radius);
}
.speaker-mini img, .speaker-mini .monogram-sm { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.speaker-mini .monogram-sm { display: flex; align-items: center; justify-content: center; border: 1px solid var(--af-gold-500); font-family: var(--af-font-display); color: var(--af-gold-500); }
.speaker-mini .name { font-family: var(--af-font-display); font-size: 0.95rem; color: var(--af-cream-50); }
.speaker-mini .topic { font-size: 0.78rem; color: var(--af-gold-300); }

/* --------------------------------------------------------------------------
   Manifesto banner — full-width, two CTAs
   -------------------------------------------------------------------------- */
.manifesto {
  background: linear-gradient(160deg, var(--af-gold-600), var(--af-gold-500) 55%, var(--af-gold-600));
  padding: 2.25rem 0;
  text-align: center;
  color: var(--af-navy-950);
}
.manifesto .section-title { color: var(--af-navy-950); }
.manifesto .lede { color: rgba(11,31,39,0.78); margin: 0 auto; }
.manifesto .cta-row { justify-content: center; margin-top: 2rem; }
.manifesto .btn-outline { border-color: var(--af-navy-950); }

.manifesto-grid {
  display: grid;
  grid-template-columns: 215px 1fr 215px;
  align-items: center;
  gap: 0 1rem;
}
.manifesto-portraits {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
/* top photo: outward edge; bottom photo: inward toward text */
.manifesto-portraits--left  { align-items: flex-start; }
.manifesto-portraits--right { align-items: flex-end; }
.manifesto-portraits--left  .org-portrait:last-child  { align-self: flex-end;   margin-right: -28px; }
.manifesto-portraits--right .org-portrait:last-child  { align-self: flex-start; margin-left:  -28px; }
.org-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}
.org-circle {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(11,31,39,0.22);
  display: block;
}
.org-name {
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--af-navy-950);
  font-family: var(--font-sans, sans-serif);
  font-weight: 600;
  line-height: 1.4;
  max-width: 140px;
}
@media (max-width: 679px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem 0;
  }
  .manifesto-portraits {
    display: grid;
    grid-template-columns: 115px 115px;
    justify-content: center;
    gap: 1rem;
  }
  .manifesto-portraits--left  { order: -2; }
  .manifesto-portraits--right { order: -1; }
  .manifesto-portraits--left .org-portrait,
  .manifesto-portraits--right .org-portrait { margin: 0; align-self: start; }
  .manifesto-portraits--left .org-portrait:last-child,
  .manifesto-portraits--right .org-portrait:last-child { margin: 0; align-self: start; }
  .org-portrait { width: auto; }
  .org-name { max-width: 115px; }
  .org-circle { width: 100px; height: 100px; }
}

/* --------------------------------------------------------------------------
   Location — vertical layout: facts row → slider → map
   -------------------------------------------------------------------------- */
.location { padding: 2.25rem 0; background: var(--af-cream-100); }
.location-facts-row { display: grid; gap: 1.1rem; margin-top: 2rem; }
.location-media-row { display: grid; gap: 1.5rem; margin-top: 1.5rem; }
.location-slider { position: relative; border-radius: var(--af-radius); overflow: hidden; aspect-ratio: 4/3; }
.location-slider .ls-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.1s var(--af-ease);
}
.location-slider .ls-slide.is-active { opacity: 1; }
.location-slider .ls-dots { position: absolute; bottom: 0.9rem; left: 0; right: 0; display: flex; justify-content: center; gap: 0.5rem; z-index: 2; }
.location-slider .ls-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(247,241,228,0.5); border: none; padding: 0; }
.location-slider .ls-dot.is-active { background: var(--af-gold-500); }
.location-fact { display: flex; gap: 0.85rem; align-items: flex-start; }
.location-fact .mark { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; border: 1px solid var(--af-gold-600); display: flex; align-items: center; justify-content: center; color: var(--af-gold-600); font-family: var(--af-font-display); font-size: 0.85rem; }
.location-fact p { color: var(--af-ink-600); font-size: 0.875rem; line-height: 1.7; margin-top: 0.4rem; }
.location-map {
  aspect-ratio: 4/3;
  border-radius: var(--af-radius);
  overflow: hidden;
  border: 1px solid var(--af-cream-200);
  filter: grayscale(0.25) sepia(0.12) saturate(1.1);
}
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }
@media (min-width: 560px) { .location-facts-row { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .location-media-row { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------------------
   Lineup preview — single right-to-left ticker (replaces voices + marquees)
   -------------------------------------------------------------------------- */
.lineup-preview { padding: 2.25rem 0; background: var(--af-cream-50); }
.lineup-preview .lede a { color: var(--af-gold-700); }
.lineup-ticker-wrap {
  overflow: hidden;
  padding: 1.75rem 0;
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.lineup-ticker {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
  animation: marquee-left 45s linear infinite;
  will-change: transform;
}
.lineup-ticker .lt-item {
  width: 280px;
  flex-shrink: 0;
  border-radius: var(--af-radius);
  overflow: hidden;
  aspect-ratio: 1/1;
  border: 1px solid rgba(201,161,92,0.3);
}
.lineup-ticker .lt-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Voice/monogram items kept for about/lineup pages if needed */
.voice-card { width: 148px; text-align: center; }
.voice-card .vc-portrait {
  position: relative; width: 148px; aspect-ratio: 4/5;
  border-radius: var(--af-radius); overflow: hidden; margin: 0 auto;
  border: 1px solid rgba(201,161,92,0.25);
  transition: border-color 0.4s var(--af-ease);
}
.voice-card .vc-portrait img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--af-ease); }
.voice-card .vc-portrait::after {
  content: ""; position: absolute; inset: -1px;
  border-radius: var(--af-radius); border: 1px solid var(--af-gold-500);
  opacity: 0; transition: opacity 0.4s var(--af-ease);
}
.voice-card:hover .vc-portrait::after { opacity: 1; }
.voice-card:hover .vc-portrait img { transform: scale(1.05); }
.voice-card.is-monogram .vc-portrait {
  background: linear-gradient(160deg, var(--af-navy-900), var(--af-navy-950));
  border: 1px solid var(--af-gold-500);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--af-font-display); color: var(--af-gold-500); font-size: 1.4rem;
}
.voice-caption { margin-top: 0.7rem; }
.voice-caption .name { font-family: var(--af-font-display); font-size: 0.85rem; color: var(--af-ink-900); }
.voice-caption .role { font-size: 0.72rem; color: var(--af-ink-600); margin-top: 0.15rem; }
.voices-grid { display: flex; gap: 1.5rem 1.1rem; flex-wrap: wrap; margin-top: 2rem; }

@keyframes marquee-left { to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* --------------------------------------------------------------------------
   Lineup page — dual marquee (.marquees section)
   -------------------------------------------------------------------------- */
.marquees { background: var(--af-navy-950); padding: 1.25rem 0; overflow: hidden; }
.marquee-track { display: flex; overflow: hidden; gap: 0.65rem; margin-bottom: 0.65rem; }
.marquee-track:last-child { margin-bottom: 0; }
.marquee-list {
  display: flex;
  gap: 0.65rem;
  flex-shrink: 0;
  animation: marquee-left 44s linear infinite;
}
.marquee-track.reverse .marquee-list { animation: marquee-right 56s linear infinite; }
.m-item {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: var(--af-radius);
  overflow: hidden;
  background: var(--af-navy-900);
  border: 1px solid rgba(201,167,104,0.18);
}
.m-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.m-item.is-monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--af-font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--af-gold-500);
  border-color: rgba(201,167,104,0.4);
}

/* --------------------------------------------------------------------------
   Pricing cards
   -------------------------------------------------------------------------- */
.programme { background: var(--af-navy-950); padding: 2.75rem 0; }
.programme .section-title, .programme .eyebrow { color: var(--af-cream-50); }
.programme .lede { color: var(--af-cream-200); max-width: 36rem; }
.programme-grid { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
.prog-card {
  padding: 1.6rem 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,167,104,0.18);
  border-left: 3px solid var(--af-gold-500);
  border-radius: var(--af-radius);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.prog-card:hover { background: rgba(201,167,104,0.07); border-color: rgba(201,167,104,0.35); }
.prog-card h3 { font-family: var(--af-font-display); font-size: 1rem; color: var(--af-cream-50); margin-bottom: 0.4rem; letter-spacing: 0.06em; }
.prog-card p { font-size: 0.9rem; color: var(--af-cream-200); line-height: 1.75; margin: 0; }

/* --------------------------------------------------------------------------
   Trust rotator
   -------------------------------------------------------------------------- */
.trust-rotator { padding: 2.25rem 0; text-align: center; background: var(--af-cream-50); }
.text-rotate-wrap { position: relative; min-height: 2.6rem; max-width: 40rem; margin: 0 auto; }
.text-rotate-wrap .text-item {
  position: absolute; inset: 0;
  display: none;
  font-family: var(--af-font-display);
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: var(--af-ink-900);
}

/* --------------------------------------------------------------------------
   Past-gatherings accordion
   -------------------------------------------------------------------------- */
.accordion-past { padding: 2.25rem 0; background: var(--af-cream-100); }
.accordion-track {
  display: flex;
  gap: 0.5rem;
  margin-top: 2.5rem;
  height: 420px;
}
.accordion-panel {
  position: relative;
  flex: 1 1 80px;
  min-width: 80px;
  border-radius: var(--af-radius);
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center 20%;
  transition: flex-grow 0.65s var(--af-ease);
}
.accordion-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,31,39,0.85), rgba(11,31,39,0.15) 55%); }
.accordion-panel.is-open { flex-grow: 6; }
/* opens on hover for pointer devices; click (wired in site.js) is the
   fallback on touch, where :hover doesn't fire reliably */
@media (hover: hover) {
  .accordion-track:hover .accordion-panel { flex-grow: 1; }
  .accordion-track .accordion-panel:hover { flex-grow: 6; }
}
.accordion-label {
  position: absolute; left: 0.9rem; top: 1rem; bottom: 1rem;
  display: flex; align-items: flex-end;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--af-font-display);
  color: var(--af-cream-50);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  gap: 0.6rem;
  z-index: 2;
  transition: opacity 0.4s var(--af-ease);
}
.accordion-label .year { color: var(--af-gold-500); font-size: 0.75rem; }
.accordion-panel.is-open .accordion-label,
.accordion-track .accordion-panel:hover .accordion-label { writing-mode: horizontal-tb; transform: none; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; top: auto; align-items: flex-start; flex-direction: column; }
.accordion-panel:not(.is-open) .accordion-label { opacity: 0.9; }

@media (max-width: 679px) {
  .accordion-track {
    flex-direction: column;
    height: auto;
    gap: 0.375rem;
  }
  .accordion-panel {
    flex: none !important;
    height: 145px;
    min-width: unset;
    border-radius: 10px;
  }
  .accordion-panel.is-open { flex-grow: unset !important; }
  .accordion-label,
  .accordion-panel.is-open .accordion-label,
  .accordion-track .accordion-panel:hover .accordion-label {
    writing-mode: horizontal-tb !important;
    transform: none !important;
    left: 1.25rem !important;
    right: 1.25rem !important;
    bottom: 1rem !important;
    top: auto !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    opacity: 1 !important;
  }
}

/* --------------------------------------------------------------------------
   Organizer community links (accordion-past section footer)
   -------------------------------------------------------------------------- */
.org-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(201,167,104,0.25);
}
.org-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--af-font-display);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: var(--af-ink-700);
  text-decoration: none;
  transition: color 0.25s var(--af-ease), transform 0.2s var(--af-ease);
}
.org-link .ig-icon { width: 24px; height: 24px; flex-shrink: 0; transition: transform 0.2s var(--af-ease); }
.org-link:hover { color: var(--af-navy-950); transform: scale(1.07); }
.org-link:hover .ig-icon { transform: scale(1.12); }

/* --------------------------------------------------------------------------
   Deeper work soft line
   -------------------------------------------------------------------------- */
.soft-note { padding: 2.25rem 0; text-align: center; }
.soft-note p { font-family: var(--af-font-display); font-size: clamp(1.05rem, 3vw, 1.35rem); color: var(--af-ink-600); max-width: 38rem; margin: 0 auto; line-height: 1.75; }

/* --------------------------------------------------------------------------
   Vision-Arc — "The longer arc" + "Save your place" combined left/right
   -------------------------------------------------------------------------- */
.vision-arc {
  background: var(--af-navy-950);
  padding: 2.25rem 0;
  color: var(--af-cream-100);
}
.vision-arc-grid { display: grid; gap: 1.5rem; }
.vision-arc-left {
  position: relative;
  overflow: hidden;
  border-radius: var(--af-radius);
  padding: 3rem 2rem 3rem;
  min-height: 280px;
}
.vision-bg-image {
  position: absolute; inset: -20% -10%;
  background-image: var(--vision-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  will-change: transform;
}
.bg-loop {
  position: absolute; inset: -10% -10%;
  background-image: radial-gradient(1.5px 1.5px at 10% 20%, rgba(233,210,164,0.8) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 30% 70%, rgba(233,210,164,0.7) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 60% 30%, rgba(233,210,164,0.7) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 80% 80%, rgba(233,210,164,0.6) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 45% 50%, rgba(233,210,164,0.6) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 90% 15%, rgba(233,210,164,0.7) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 15% 85%, rgba(233,210,164,0.5) 0, transparent 60%),
    radial-gradient(1.5px 1.5px at 70% 55%, rgba(233,210,164,0.5) 0, transparent 60%);
  background-repeat: repeat;
  background-size: 260px 260px;
  opacity: 0.8;
  will-change: background-position;
}
.vision-arc-left .arc-content { position: relative; z-index: 2; }
.vision-arc-right {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,161,92,0.25);
  border-radius: var(--af-radius);
  background: rgba(18,54,66,0.4);
}
.vision-arc-right .eyebrow { color: var(--af-gold-300); }
.vision-arc-right .section-title { color: var(--af-cream-50); margin-top: 0.5rem; }
.vision-arc-right p { color: var(--af-cream-200); font-size: 0.82rem; margin-top: 1rem; }

/* --------------------------------------------------------------------------
   Founding Communities — about page
   -------------------------------------------------------------------------- */
.communities { background: var(--af-navy-950); padding: 3rem 0 4rem; }
.communities .section-title, .communities .eyebrow { color: var(--af-cream-50); }
.communities .lede { color: var(--af-cream-200); max-width: 34rem; }
/* Top row: text left, collage right */
.communities-intro { display: grid; gap: 2.5rem; align-items: center; margin-bottom: 4.5rem; }
.communities-intro-text .eyebrow { color: var(--af-gold-500); }
.communities-intro-text h2 { color: var(--af-cream-50); margin: 0.5rem 0 1rem; }
.communities-intro-text p { color: var(--af-cream-200); line-height: 1.8; }
/* Small collage right side */
.communities-collage { position: relative; height: 320px; }
.communities-collage .cc-img-main {
  position: absolute; right: 0; top: 0;
  width: 72%; height: 100%;
  border-radius: var(--af-radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}
.communities-collage .cc-img-accent {
  position: absolute; left: 0; bottom: -1.5rem;
  width: 48%; height: 62%;
  border-radius: var(--af-radius);
  overflow: hidden;
  border: 3px solid var(--af-navy-950);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.communities-collage img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Cards with round avatar overlapping from top */
.communities-grid { display: grid; gap: 1.5rem; }
.community-card {
  position: relative;
  padding: 4rem 1.5rem 1.75rem;
  border: 1px solid rgba(201,167,104,0.18);
  border-radius: var(--af-radius);
  background: rgba(255,255,255,0.04);
  text-align: center;
  margin-top: 2.5rem;
  transition: background 0.3s ease;
}
.community-card:hover { background: rgba(201,167,104,0.07); }
.cc-avatar {
  position: absolute;
  top: -2.5rem; left: 50%;
  transform: translateX(-50%);
  width: 76px; height: 76px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--af-gold-500);
  box-shadow: 0 4px 20px rgba(0,0,0,0.45);
}
.cc-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.community-card .cc-city { font-family: var(--af-font-display); font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--af-gold-500); margin-bottom: 0.4rem; display: block; }
.community-card h3 { font-family: var(--af-font-display); font-size: 0.95rem; color: var(--af-cream-50); margin-bottom: 0.65rem; }
.community-card p { font-size: 0.88rem; color: var(--af-cream-200); line-height: 1.75; margin: 0; }

/* --------------------------------------------------------------------------
   Photo gallery — filmstrip, horizontal scroll, no cropping
   -------------------------------------------------------------------------- */
.photo-gallery {
  background: linear-gradient(180deg, var(--af-navy-950), var(--af-navy-900) 50%, var(--af-navy-950));
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}
.photo-gallery .section-title { color: var(--af-cream-50); }
.photo-gallery .eyebrow { color: var(--af-gold-500); }
.gallery-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1.75rem 0 1.25rem;
  margin: 0 calc(-1 * var(--container-pad, 1rem));
  padding-left: var(--container-pad, 1rem);
}
.gallery-strip::-webkit-scrollbar { height: 3px; }
.gallery-strip::-webkit-scrollbar-track { background: rgba(255,255,255,0.06); }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--af-gold-500); border-radius: 2px; }
.gallery-strip-item {
  flex: 0 0 auto;
  width: min(380px, 82vw);
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.gallery-strip-item:last-child { margin-right: var(--container-pad, 1rem); }
.gallery-strip-item img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transition: transform 0.7s var(--af-ease); }
.gallery-strip-item:hover img { transform: scale(1.04); }

@media (min-width: 800px) {
  .communities-grid { grid-template-columns: repeat(3, 1fr); }
  .communities-intro { grid-template-columns: 1fr 1fr; }
  .gallery-strip-item { width: 440px; }
}

@media (min-width: 800px) {
  .vision-arc-grid { grid-template-columns: 1.5fr 1fr; align-items: stretch; }
}

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
/* lighter, practical tone on purpose — distinct from the moodier hero
   treatments on Home/About/Line-up */
.faq-hero { padding: 8.5rem 0 2.25rem; background: var(--af-cream-100); color: var(--af-ink-900); }
.faq-hero .section-title { color: var(--af-ink-900); }
.faq-hero .lede { color: var(--af-ink-600); }
.faq-hero .lede a { color: var(--af-gold-700); }
.faq-list { padding: 2.25rem 0 3rem; }
.faq-grid { display: grid; gap: 0 2.5rem; }
.faq-grid .faq-item { break-inside: avoid; }
.faq-item { border-bottom: 1px solid var(--af-cream-200); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none; border: none; text-align: left;
  font-family: var(--af-font-display);
  font-size: 1.02rem;
  color: var(--af-ink-900);
  min-height: 44px;
}
.faq-q .plus { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--af-gold-600);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .plus::before { width: 14px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 14px; transition: transform 0.3s var(--af-ease); }
.faq-item.is-open .plus::after { transform: translate(-50%,-50%) rotate(90deg) scaleY(0); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--af-ease);
}
.faq-a p { padding: 0 0 1.5rem; color: var(--af-ink-600); font-size: 0.95rem; line-height: 1.85; max-width: 42rem; }
.faq-a .needs-input { display: inline-block; margin-top: 0.5rem; padding: 0.3rem 0.7rem; border: 1px dashed var(--af-gold-600); border-radius: 4px; font-size: 0.78rem; color: var(--af-gold-700); }

/* --------------------------------------------------------------------------
   Video modal (bespoke — no magnific-popup)
   -------------------------------------------------------------------------- */
.video-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  background: rgba(11,31,39,0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--af-ease);
}
.video-modal.is-open { opacity: 1; visibility: visible; }
.video-modal-frame {
  position: relative;
  width: min(100%, 960px);
  aspect-ratio: 16/9;
  background: #000;
  transform: scale(0.96);
  transition: transform 0.4s var(--af-ease);
}
.video-modal.is-open .video-modal-frame { transform: scale(1); }
.video-modal-frame iframe, .video-modal-frame video { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-modal-close {
  position: absolute; top: -3rem; right: 0;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--af-gold-500); border-radius: 50%;
  color: var(--af-cream-50);
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   Organic warp — a transparent SVG displacement filter that makes a photo
   read as gently deformed rather than a flat rectangle, used sparingly as
   a signature texture rather than on every image
   -------------------------------------------------------------------------- */
.organic-warp {
  filter: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="warp"><feTurbulence type="fractalNoise" baseFrequency="0.009 0.014" numOctaves="2" seed="7" result="noise"/><feDisplacementMap in="SourceGraphic" in2="noise" scale="10"/></filter></svg>#warp');
}

/* --------------------------------------------------------------------------
   Story split (About page — overlapping photo cluster + text)
   -------------------------------------------------------------------------- */
.story-split { padding: 2.25rem 0; }
.story-split .container { display: grid; gap: 3.5rem; }
.story-portrait { max-width: 22rem; }
.story-portrait .mp-frame { border-radius: var(--af-radius); }
.story-collage {
  position: relative;
  max-width: 22rem;
  padding: 1.5rem 2.25rem 2.25rem 0;
}
.story-collage .sc-main { position: relative; z-index: 2; border-radius: var(--af-radius); overflow: hidden; aspect-ratio: 3/4; box-shadow: 0 25px 50px rgba(11,31,39,0.3); }
.story-collage .sc-main img { width: 100%; height: 100%; object-fit: cover; }
.story-collage .sc-accent {
  position: absolute;
  right: 0; bottom: 0.5rem;
  z-index: 3;
  width: 46%;
  aspect-ratio: 4/5;
  border-radius: var(--af-radius);
  overflow: hidden;
  border: 4px solid var(--af-cream-50);
  box-shadow: 0 18px 34px rgba(11,31,39,0.35);
  transform: rotate(4deg);
}
.story-collage .sc-accent img { width: 100%; height: 100%; object-fit: cover; }
.story-collage .sc-badge {
  position: absolute;
  left: -0.75rem; top: -0.75rem;
  z-index: 4;
  width: 78px; height: 78px;
  border-radius: 50%;
  background: var(--af-gold-500);
  color: var(--af-navy-950);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  font-family: var(--af-font-display);
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 10px 22px rgba(11,31,39,0.35);
}
.story-collage .sc-badge strong { font-size: 1.1rem; }
.story-collage .sc-badge span { font-size: 0.55rem; letter-spacing: 0.05em; text-transform: uppercase; }
.story-copy p + p { margin-top: 1.1rem; }
.story-copy p { color: var(--af-ink-600); line-height: 1.85; }
.pull-quote {
  font-family: var(--af-font-display);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  color: var(--af-ink-900);
  border-left: 2px solid var(--af-gold-500);
  padding-left: 1.25rem;
  margin: 1.75rem 0;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Page hero (About / FAQ / Line-up)
   -------------------------------------------------------------------------- */
.page-hero {
  padding: 9rem 0 3.5rem;
  background: var(--af-navy-950);
  color: var(--af-cream-50);
}
.page-hero .section-title { margin-top: 0.5rem; }
.page-hero .lede { color: var(--af-cream-200); margin-top: 1.25rem; }
.page-hero { position: relative; overflow: hidden; }

/* About: a real photo breathing behind the text, not a flat navy field */
.page-hero-about .page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  opacity: 0.34;
}
.page-hero-about::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,39,0.55), var(--af-navy-950) 92%);
}
.page-hero-about .container { position: relative; z-index: 2; }
.page-hero-geo { position: absolute; top: -40px; right: -40px; width: 220px; opacity: 0.5; z-index: 1; }

/* Line-up: a strip of speaker thumbnails drifting behind the heading */
.page-hero-lineup .hero-collage {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 0.75rem;
  padding-right: -2rem;
  opacity: 0.5;
  pointer-events: none;
}
.page-hero-lineup .hero-collage img {
  width: 92px; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--af-radius);
  filter: saturate(0.85);
}
.page-hero-lineup .hero-collage img:nth-child(2) { transform: translateY(-18px); }
.page-hero-lineup .hero-collage img:nth-child(4) { transform: translateY(18px); }
.page-hero-lineup::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--af-navy-950) 30%, rgba(11,31,39,0.4) 70%, rgba(11,31,39,0.75));
}
.page-hero-lineup .container { position: relative; z-index: 2; }


/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--af-navy-950); color: var(--af-cream-200); padding: 3.5rem 0 2rem; }
.footer-grid { display: grid; gap: 2.25rem; }
.footer-brand { font-family: var(--af-font-display); color: var(--af-cream-50); font-size: 1.1rem; letter-spacing: 0.1em; }
.footer-links { display: flex; flex-direction: column; gap: 0.65rem; font-size: 0.9rem; }
.footer-links a:hover { color: var(--af-gold-500); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(233,210,164,0.15); font-size: 0.78rem; display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; justify-content: space-between; }

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */
.on-dark { color: var(--af-cream-100); }
.on-light { color: var(--af-ink-900); }
.mt-lg { margin-top: 3rem; }
.text-center { text-align: center; }
.center-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hide-desktop { display: block; }
.show-desktop { display: none; }

/* ==========================================================================
   Breakpoints — mobile-first, min-width only
   ========================================================================== */
@media (min-width: 560px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .programme-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-row, .hero-ctas, .manifesto .cta-row { flex-direction: row; align-items: center; }
}

@media (min-width: 800px) {
  .steps-intro-row { grid-template-columns: 1fr 1fr; }
  .steps-intro-row .home-collage { height: 420px; }
  .lede { font-size: 1.1rem; }
  .hide-desktop { display: none; }
  .show-desktop { display: flex; }
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    width: auto;
    background: none;
    transform: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 2.25rem;
  }
  .nav-scrim { display: none; }
  .site-header .container { gap: 2rem; }
  .hero-content { padding-left: 4rem; padding-right: 4rem; }
  .footer-grid { grid-template-columns: 2fr 1fr; }
  .story-split .container { grid-template-columns: 0.8fr 1.2fr; align-items: center; }
  .story-portrait { max-width: none; }
  .programme-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero-lineup .hero-collage { padding-right: 2rem; }
}

@media (min-width: 1100px) {
  .village-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
  .pillar-grid { gap: 3rem; }
}

/* ==========================================================================
   Language Switcher
   ========================================================================== */
.lang-switcher { position: relative; }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: none;
  border: 1px solid rgba(201,161,92,0.45);
  border-radius: var(--af-radius);
  padding: 0.28rem 0.6rem;
  cursor: pointer;
  color: var(--af-cream-100);
  transition: border-color 0.25s;
  min-height: 32px;
}
.lang-toggle:hover { border-color: var(--af-gold-500); }
.lang-current-flag { display: block; border-radius: 2px; flex-shrink: 0; }
.lang-arrow {
  flex-shrink: 0;
  color: var(--af-gold-500);
  transition: transform 0.25s var(--af-ease);
}
.lang-switcher.is-open .lang-arrow { transform: rotate(180deg); }

.lang-dropdown {
  display: none;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 152px;
  background: var(--af-navy-900);
  border: 1px solid rgba(201,161,92,0.22);
  border-radius: var(--af-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  z-index: 300;
  overflow: hidden;
}
.lang-switcher.is-open .lang-dropdown { display: flex; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.6rem 0.9rem;
  text-decoration: none;
  color: var(--af-cream-200);
  font-family: var(--af-font-display);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
  cursor: pointer;
}
.lang-option:hover { background: rgba(201,161,92,0.12); color: var(--af-gold-300); }
.lang-option.is-active { color: var(--af-gold-500); background: rgba(201,161,92,0.07); }
.lang-option img { border-radius: 2px; flex-shrink: 0; }

/* mobile nav: lang-switcher sits inline in the stacked nav */
@media (max-width: 799px) {
  .lang-switcher { align-self: flex-start; }
  .lang-dropdown { position: static; box-shadow: none; border: 1px solid rgba(201,161,92,0.2); margin-top: 0.5rem; }
  .lang-switcher.is-open .lang-dropdown { display: flex; }
}

/* ==========================================================================
   Programme Page — Day Tabs
   ========================================================================== */
.prog-section { padding: 3.5rem 0 4rem; background: var(--af-cream-50); }

.prog-tabs {
  display: flex;
  border-bottom: 1px solid rgba(201,161,92,0.2);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.prog-tabs::-webkit-scrollbar { display: none; }

.prog-tab {
  flex: 1;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 1rem 0.75rem 0.85rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  font-family: var(--af-font-display);
  color: var(--af-ink-600);
  transition: color 0.25s, border-color 0.25s;
  text-align: center;
}
.tab-day-num {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--af-ink-900);
  transition: color 0.25s;
}
.tab-day-name {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.prog-tab:hover .tab-day-num,
.prog-tab:hover .tab-day-name { color: var(--af-gold-500); }
.prog-tab.is-active { border-bottom-color: var(--af-gold-500); }
.prog-tab.is-active .tab-day-num,
.prog-tab.is-active .tab-day-name { color: var(--af-gold-500); }

.prog-panel { display: none; }
.prog-panel.is-active { display: block; animation: fadePanel 0.38s var(--af-ease) forwards; }
@keyframes fadePanel {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.prog-day-header { margin-bottom: 2rem; }
.prog-day-header .eyebrow { margin-bottom: 0.4rem; }
.prog-day-header .section-title { margin-bottom: 0.6rem; font-size: clamp(1.5rem, 4vw, 2.2rem); }

.prog-day-visual { display: grid; gap: 2rem; margin-bottom: 1.5rem; }

.prog-day-img { border-radius: var(--af-radius); overflow: hidden; aspect-ratio: 16/7; }
.prog-day-img img { width: 100%; height: 100%; object-fit: cover; }

/* Timeline */
.prog-day-timeline { display: flex; flex-direction: column; }
.prog-slot {
  display: grid;
  grid-template-columns: 3.5rem 2px 1fr;
  column-gap: 1rem;
  align-items: stretch;
  padding: 0.55rem 0;
}
.slot-time {
  font-family: var(--af-font-display);
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  color: var(--af-gold-500);
  padding-top: 0.1rem;
  white-space: nowrap;
}
.slot-bar {
  width: 2px;
  background: rgba(201,161,92,0.22);
  border-radius: 2px;
}
.slot-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(201,161,92,0.08);
}
.prog-slot:last-child .slot-body { border-bottom: none; }
.slot-space {
  font-family: var(--af-font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--af-gold-600);
}
.slot-act { font-size: 0.88rem; color: var(--af-ink-900); line-height: 1.4; }
.prog-slot-tba .slot-act { color: var(--af-ink-600); font-style: italic; }

/* Announcement card */
.prog-announcement {
  margin-top: 2.5rem;
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(201,161,92,0.2);
  border-radius: var(--af-radius);
  background: rgba(247,241,228,0.5);
  position: relative;
  overflow: hidden;
}
.prog-geo {
  position: absolute;
  width: 130px;
  height: 130px;
  right: -25px;
  bottom: -25px;
  pointer-events: none;
}
.prog-announcement-text {
  font-size: 1rem;
  color: var(--af-ink-600);
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}

/* ==========================================================================
   Programme — Spaces Grid
   ========================================================================== */
.prog-spaces-section { padding: 4rem 0; }

.prog-spaces-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.prog-space-card {
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(201,161,92,0.18);
  border-radius: var(--af-radius);
  background: rgba(255,255,255,0.03);
  transition: border-color 0.25s, background 0.25s;
}
.prog-space-card:hover {
  border-color: rgba(201,161,92,0.4);
  background: rgba(255,255,255,0.06);
}
.prog-space-icon { width: 44px; height: 44px; margin-bottom: 1rem; }
.prog-space-icon svg { width: 100%; height: 100%; }
.prog-space-name {
  font-family: var(--af-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--af-gold-300);
  margin-bottom: 0.45rem;
}
.prog-space-desc { font-size: 0.83rem; color: var(--af-cream-200); line-height: 1.75; }

/* Page hero filter for programme page */
.page-hero-programm .page-hero-bg { filter: brightness(0.3) saturate(0.8); }

/* Responsive additions for programme + lang switcher */
@media (min-width: 560px) {
  .prog-spaces-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 800px) {
  .prog-day-visual { grid-template-columns: 1fr 1fr; align-items: start; }
  .prog-spaces-grid { grid-template-columns: repeat(3, 1fr); }
  /* lang dropdown always absolute on desktop */
  .lang-dropdown {
    position: absolute;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    border: 1px solid rgba(201,161,92,0.22);
    margin-top: 0;
  }
}

/* --------------------------------------------------------------------------
   Organizer cards — about.html
   -------------------------------------------------------------------------- */
.organizers {
  padding: 4.5rem 0 3.5rem;
  background: var(--af-cream-50);
}
.organizers .eyebrow { color: var(--af-gold-600); }
.organizers .section-title { color: var(--af-navy-950); }
.organizers .lede { color: rgba(11,31,39,0.68); max-width: 56ch; }

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

.oc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(11,31,39,0.1);
  padding: 0 1.1rem 1.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.oc-card.is-active {
  border-color: rgba(201,161,92,0.55);
  box-shadow: 0 2px 18px rgba(11,31,39,0.08);
}

.oc-photo-wrap {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--af-cream-50);
  box-shadow: 0 3px 18px rgba(11,31,39,0.18);
  background: #e8e2d6;
  flex-shrink: 0;
}
.oc-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.oc-body {
  padding-top: 78px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex: 1;
}

.oc-community {
  font-size: 0.57rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--af-gold-600);
  font-weight: 700;
  font-family: var(--font-sans, sans-serif);
  margin-bottom: 0.3rem;
  display: block;
}

.oc-name {
  font-family: var(--af-font-display);
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--af-navy-950);
  margin-bottom: 0.65rem;
  line-height: 1.25;
}

.oc-teaser {
  font-size: 0.78rem;
  color: rgba(11,31,39,0.62);
  line-height: 1.65;
  margin-bottom: 1rem;
  flex: 1;
}

.oc-mehr {
  font-size: 0.57rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--af-gold-600);
  font-weight: 700;
  background: none;
  border: 1px solid rgba(201,161,92,0.45);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  cursor: pointer;
  font-family: var(--font-sans, sans-serif);
  transition: background 0.18s, border-color 0.18s;
  margin-top: auto;
}
.oc-mehr:hover,
.oc-card.is-active .oc-mehr {
  background: rgba(201,161,92,0.12);
  border-color: var(--af-gold-500);
}

/* Drawer below card grid — dark for contrast */
.oc-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.oc-drawer.is-open { max-height: 480px; }

.oc-drawer-inner {
  background: var(--af-navy-950);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.75rem;
  align-items: start;
  margin-top: 1rem;
}

.oc-drawer-photo-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,161,92,0.35);
  flex-shrink: 0;
  background: #123642;
}
.oc-drawer-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.oc-drawer-text .oc-community { text-align: left; }
.oc-drawer-text .oc-name { text-align: left; font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--af-cream-50); }
.oc-drawer-text p {
  font-size: 0.82rem;
  color: rgba(247,241,228,0.7);
  line-height: 1.78;
  margin-bottom: 0.85rem;
}
.oc-drawer-text .org-link { color: var(--af-gold-500); }
.oc-drawer-text .org-link:hover { opacity: 0.75; }

.oc-drawer-close {
  background: none;
  border: none;
  color: rgba(247,241,228,0.35);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.18s;
  flex-shrink: 0;
}
.oc-drawer-close:hover { color: var(--af-cream-50); }

/* Tablet: 2 columns */
@media (max-width: 767px) {
  .oc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.5rem 0.75rem;
    margin-top: 5rem;
  }
  .oc-drawer.is-open { max-height: 600px; }
  .oc-drawer-inner {
    grid-template-columns: 80px 1fr;
    gap: 1.25rem;
  }
  .oc-drawer-photo-wrap { width: 80px; height: 80px; }
  .oc-drawer-close { display: none; }
}

/* Mobile: 1 column */
@media (max-width: 479px) {
  .oc-grid { grid-template-columns: 1fr; gap: 4.5rem 0; }
  .oc-drawer.is-open { max-height: 700px; }
  .oc-drawer-inner {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }
  .oc-drawer-photo-wrap { width: 80px; height: 80px; margin: 0 auto; }
}

/* Desktop: bigger photos */
@media (min-width: 1024px) {
  .oc-photo-wrap { width: 148px; height: 148px; top: -74px; }
  .oc-body { padding-top: 88px; }
  .oc-grid { gap: 1.5rem; margin-top: 5.5rem; }
}

/* ==========================================================================
   Action CTA — urgency strip with countdown (index.html)
   ========================================================================== */
.action-cta {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3.5rem;
  isolation: isolate;
  transition: max-height 0.9s cubic-bezier(0.4,0,0.2,1), opacity 0.7s ease, padding 0.7s ease;
}
.action-cta.ac-expired {
  max-height: 0 !important;
  opacity: 0;
  padding: 0;
  pointer-events: none;
}
.action-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.action-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.52) saturate(0.75);
}
.action-cta-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 40%, rgba(201,161,92,0.12) 0%, rgba(11,31,39,0.5) 55%, rgba(6,18,28,0.88) 100%);
}
.action-cta-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 30%, rgba(201,161,92,0.055) 50%, transparent 70%);
  background-size: 300% 100%;
  animation: ac-sweep 5s ease-in-out infinite;
}
@keyframes ac-sweep {
  0%   { background-position: -60% 0; }
  65%  { background-position: 230% 0; }
  100% { background-position: 230% 0; }
}
.action-cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.action-cta-eye {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,161,92,0.72);
  font-weight: 700;
  margin-bottom: 0.7rem;
  display: block;
}
.action-cta-badge {
  display: inline-block;
  background: rgba(201,161,92,0.16);
  border: 1px solid rgba(201,161,92,0.38);
  border-radius: 30px;
  padding: 0.35rem 1.1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--af-gold-500);
  font-weight: 700;
  margin-bottom: 0.9rem;
  font-family: var(--af-font-body);
}
.action-cta-headline {
  font-family: var(--af-font-display);
  font-size: clamp(1.45rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--af-cream-50);
  line-height: 1.15;
  margin-bottom: 0.25rem;
}
.action-cta-headline em {
  color: var(--af-gold-500);
  font-style: normal;
}
.action-cta-sub {
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(247,241,228,0.38);
  margin-bottom: 1.6rem;
  margin-top: 0.2rem;
  font-family: var(--af-font-body);
}
.action-cta-clock {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 1.8rem;
}
.ac-unit {
  text-align: center;
  background: rgba(247,241,228,0.07);
  border: 1px solid rgba(201,161,92,0.18);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  min-width: 60px;
}
.ac-num {
  font-family: var(--af-font-display);
  font-size: 1.7rem;
  color: var(--af-cream-50);
  line-height: 1;
  display: block;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}
.ac-lbl {
  font-size: 0.47rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,241,228,0.33);
  margin-top: 0.28rem;
  display: block;
  font-family: var(--af-font-body);
}
.ac-sep {
  color: rgba(247,241,228,0.22);
  font-family: var(--af-font-display);
  font-size: 1.4rem;
  margin-top: 0.48rem;
  line-height: 1;
  align-self: flex-start;
}
.action-cta-btn {
  display: inline-block;
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  color: var(--af-navy-950);
  padding: 0.9rem 2.4rem;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--af-font-display);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--af-gold-500) 0%, var(--af-gold-300) 48%, var(--af-gold-500) 100%);
  background-size: 200% auto;
  animation: ac-btn-sh 2.8s linear infinite;
  border: none;
}
@keyframes ac-btn-sh {
  0%   { background-position: 0 center; }
  100% { background-position: 200% center; }
}
.action-cta-fine {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,241,228,0.25);
  margin-top: 0.8rem;
  font-family: var(--af-font-body);
}

/* Hero urgency nudge — text link below hero CTAs */
.hero-urgency-nudge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--af-gold-400, #D4B578);
  font-family: var(--af-font-body);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s;
}
.hero-urgency-nudge:hover { color: var(--af-gold-300); }
.hun-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--af-gold-500);
  flex-shrink: 0;
  animation: hun-pulse 1.8s ease-in-out infinite;
}
@keyframes hun-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}
.hun-arrow {
  color: var(--af-gold-500);
  flex-shrink: 0;
  animation: hun-bounce 1.8s ease-in-out infinite;
}
@keyframes hun-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(2px); }
}

/* ==========================================================================
   Lineup page — 2/3-column card grid, photo always visible left of each card
   ========================================================================== */

/* --- Cream intro break between hero and dark music grid --- */
.lu-intro {
  background: var(--af-cream-50);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}
.lu-intro .section-title { color: var(--af-navy-950); }
.lu-intro .lede { color: var(--af-ink-600); max-width: 38rem; margin-left: auto; margin-right: auto; }
.lu-intro-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  font-family: var(--af-font-display);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lu-intro-nav a { color: var(--af-gold-600); text-decoration: none; transition: color 0.2s; }
.lu-intro-nav a:hover { color: var(--af-navy-950); }
.lu-intro-nav span { color: rgba(11,31,39,0.3); }

/* --- Marquee on lineup page --- */
.lu-marquee {
  overflow: hidden;
  background: var(--af-navy-950);
  padding: 0;
}
.lu-marquee--light {
  background: var(--af-cream-50);
  border-top: 1px solid rgba(11,31,39,0.07);
  border-bottom: 1px solid rgba(11,31,39,0.07);
}

/* --- Section base --- */
.lu-section { padding: 5rem 0 4rem; }
.lu-dark    { background: var(--af-navy-950); }
.lu-light   { background: var(--af-cream-50); }

/* --- Section header --- */
.lu-sec-header { padding-bottom: 3rem; text-align: center; }
.lu-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.lu-div-line { flex: 1; height: 1px; }
.lu-dark  .lu-div-line  { background: rgba(201,161,92,0.22); }
.lu-light .lu-div-line  { background: rgba(11,31,39,0.15); }

.lu-div-label { display: block; margin-bottom: 0; text-align: center; }
.lu-dark  .lu-div-label { color: var(--af-gold-600); }
.lu-light .lu-div-label { color: var(--af-teal-700); }

.lu-sec-h2 {
  font-family: var(--af-font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.lu-dark  .lu-sec-h2 { color: var(--af-cream-50); }
.lu-light .lu-sec-h2 { color: var(--af-navy-950); }

/* --- Card grid: 1 col → 2 col → 3 col --- */
.lu-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid;
  border-left: 1px solid;
}
.lu-dark  .lu-card-grid { border-color: rgba(201,161,92,0.12); }
.lu-light .lu-card-grid { border-color: rgba(11,31,39,0.08); }

@media (min-width: 500px) {
  .lu-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .lu-card-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Individual card: photo LEFT, text RIGHT --- */
.lu-card {
  display: grid;
  grid-template-columns: clamp(80px, 32%, 130px) 1fr;
  cursor: pointer;
  outline: none;
  transition: background 0.22s;
  border-right: 1px solid;
  border-bottom: 1px solid;
}
.lu-dark  .lu-card { border-color: rgba(201,161,92,0.12); }
.lu-light .lu-card { border-color: rgba(11,31,39,0.08); }

.lu-dark  .lu-card:hover,
.lu-dark  .lu-card:focus-visible { background: rgba(201,161,92,0.05); }
.lu-light .lu-card:hover,
.lu-light .lu-card:focus-visible { background: rgba(11,31,39,0.03); }

/* --- Photo column --- */
.lu-card-img {
  overflow: hidden;
  background: rgba(11,31,39,0.6);
  aspect-ratio: 2/3;
}
.lu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1);
}
.lu-card:hover .lu-card-img img { transform: scale(1.05); }

/* Monogram for cards without a photo */
.lu-card-mono {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--af-font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.06em;
  aspect-ratio: 2/3;
}
.lu-dark  .lu-card-mono { color: rgba(233,210,164,0.18); background: rgba(11,31,39,0.5); }
.lu-light .lu-card-mono { color: rgba(11,31,39,0.15);  background: rgba(11,31,39,0.04); }

/* --- Text column --- */
.lu-card-body {
  padding: 1rem 1rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.22rem;
}

.lu-card-num {
  font-family: var(--af-font-display);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.2rem;
  font-variant-numeric: tabular-nums;
}
.lu-dark  .lu-card-num { color: rgba(201,161,92,0.28); }
.lu-light .lu-card-num { color: rgba(11,31,39,0.2); }

.lu-card-name {
  font-family: var(--af-font-display);
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.25;
  transition: color 0.22s;
}
.lu-dark  .lu-card-name { color: var(--af-cream-50); }
.lu-light .lu-card-name { color: var(--af-navy-950); }
.lu-dark  .lu-card:hover .lu-card-name,
.lu-dark  .lu-card:focus-visible .lu-card-name { color: var(--af-gold-300); }
.lu-light .lu-card:hover .lu-card-name,
.lu-light .lu-card:focus-visible .lu-card-name { color: var(--af-gold-600); }

.lu-card-role {
  font-family: var(--af-font-body);
  font-size: 0.56rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}
.lu-dark  .lu-card-role { color: rgba(233,210,164,0.4); }
.lu-light .lu-card-role { color: rgba(11,31,39,0.38); }

.lu-card-more {
  margin-top: 0.65rem;
  display: inline-block;
  font-family: var(--af-font-display);
  font-size: 0.52rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.38rem 0.75rem;
  border-radius: 2px;
  border: 1px solid;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  align-self: flex-start;
}
.lu-dark .lu-card-more  { color: rgba(233,210,164,0.45); border-color: rgba(201,161,92,0.22); }
.lu-dark  .lu-card:hover .lu-card-more,
.lu-dark  .lu-card:focus-visible .lu-card-more {
  color: var(--af-navy-950);
  background: var(--af-gold-500);
  border-color: var(--af-gold-500);
}
.lu-light .lu-card-more { color: rgba(11,31,39,0.42); border-color: rgba(11,31,39,0.18); }
.lu-light .lu-card:hover .lu-card-more,
.lu-light .lu-card:focus-visible .lu-card-more {
  color: var(--af-cream-50);
  background: var(--af-navy-950);
  border-color: var(--af-navy-950);
}

/* --- Compact sub-list (artists without photo) --- */
.lu-compact {
  padding: 2.5rem 0;
  border-top: 1px solid;
}
.lu-compact--dark  { border-color: rgba(201,161,92,0.1); }
.lu-compact--light { border-color: rgba(11,31,39,0.08); }

.lu-compact-label {
  font-family: var(--af-font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.lu-compact--dark  .lu-compact-label { color: rgba(233,210,164,0.35); }
.lu-compact--light .lu-compact-label { color: rgba(11,31,39,0.38); }

.lu-compact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
}

.lu-compact-item {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}

.lu-compact-name {
  font-family: var(--af-font-display);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}
.lu-compact--dark  .lu-compact-name { color: rgba(247,241,228,0.65); }
.lu-compact--light .lu-compact-name { color: rgba(11,31,39,0.65); }

.lu-compact-item--light .lu-compact-name { color: rgba(11,31,39,0.65); }

.lu-compact-role {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--af-font-body);
}
.lu-compact--dark  .lu-compact-role { color: rgba(233,210,164,0.28); }
.lu-compact--light .lu-compact-role { color: rgba(11,31,39,0.3); }

/* --- Artist popup modal --- */
.lu-popup {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
@media (min-width: 680px) {
  .lu-popup { align-items: center; justify-content: center; }
}
.lu-popup.is-open {
  pointer-events: auto;
  opacity: 1;
}

.lu-popup-scrim {
  position: absolute;
  inset: 0;
  background: rgba(6,18,28,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lu-popup-panel {
  position: relative;
  z-index: 1;
  background: var(--af-cream-50);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px 12px 0 0;
  padding: 2.5rem 2rem 2.5rem;
  transform: translateY(24px);
  transition: transform 0.32s cubic-bezier(0.22,1,0.36,1);
}
@media (min-width: 680px) {
  .lu-popup-panel {
    border-radius: 12px;
    max-height: 80vh;
    padding: 2.8rem;
  }
}
.lu-popup.is-open .lu-popup-panel { transform: translateY(0); }

.lu-popup-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: none;
  padding: 0.45rem;
  color: var(--af-ink-600);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 0;
}
.lu-popup-close:hover { color: var(--af-navy-950); }

.lu-popup-inner {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
@media (min-width: 480px) {
  .lu-popup-inner { flex-direction: row; gap: 2rem; }
}

.lu-popup-photo-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 150px;
  border-radius: 6px;
  overflow: hidden;
  background: var(--af-navy-900);
}
@media (min-width: 480px) {
  .lu-popup-photo-wrap { width: 150px; height: 190px; }
}

.lu-popup-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.lu-popup-mono {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--af-font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: rgba(247,241,228,0.35);
  background: var(--af-navy-900);
}

.lu-popup-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}

.lu-popup-role {
  font-family: var(--af-font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--af-gold-600);
}

.lu-popup-name {
  font-family: var(--af-font-display);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.025em;
  color: var(--af-navy-950);
  line-height: 1.2;
}

.lu-popup-bio {
  font-family: var(--af-font-body);
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--af-ink-600);
  margin-top: 0.25rem;
}
.lu-popup-bio p {
  margin-top: 0;
  margin-bottom: 0.85em;
}
.lu-popup-bio p:last-child { margin-bottom: 0; }

/* --- Talks section sub-groups (facilitators + speakers) --- */
.lu-talks-group { padding: 3rem 0; }

.lu-talks-facilitators { background: #4A3210; }
.lu-talks-speakers     { background: var(--af-navy-950); }

.lu-talks-facilitators .lu-card-grid,
.lu-talks-speakers .lu-card-grid { border-color: rgba(201,161,92,0.12); }

.lu-talks-facilitators .lu-card,
.lu-talks-speakers .lu-card { border-color: rgba(201,161,92,0.12); }

.lu-talks-facilitators .lu-card:hover,
.lu-talks-facilitators .lu-card:focus-visible,
.lu-talks-speakers .lu-card:hover,
.lu-talks-speakers .lu-card:focus-visible { background: rgba(201,161,92,0.05); }

.lu-talks-facilitators .lu-card-num,
.lu-talks-speakers .lu-card-num { color: rgba(201,161,92,0.28); }

.lu-talks-facilitators .lu-card-name,
.lu-talks-speakers .lu-card-name { color: var(--af-cream-50); }

.lu-talks-facilitators .lu-card:hover .lu-card-name,
.lu-talks-facilitators .lu-card:focus-visible .lu-card-name,
.lu-talks-speakers .lu-card:hover .lu-card-name,
.lu-talks-speakers .lu-card:focus-visible .lu-card-name { color: var(--af-gold-300); }

.lu-talks-facilitators .lu-card-role,
.lu-talks-speakers .lu-card-role { color: rgba(233,210,164,0.4); }

.lu-talks-facilitators .lu-card-more,
.lu-talks-speakers .lu-card-more { color: rgba(233,210,164,0.45); border-color: rgba(201,161,92,0.22); }

.lu-talks-facilitators .lu-card:hover .lu-card-more,
.lu-talks-facilitators .lu-card:focus-visible .lu-card-more,
.lu-talks-speakers .lu-card:hover .lu-card-more,
.lu-talks-speakers .lu-card:focus-visible .lu-card-more {
  color: var(--af-navy-950);
  background: var(--af-gold-500);
  border-color: var(--af-gold-500);
}

.lu-talks-facilitators .lu-card-mono,
.lu-talks-speakers .lu-card-mono { color: rgba(233,210,164,0.18); background: rgba(11,31,39,0.5); }

.lu-group-label { margin-bottom: 1.5rem; color: var(--af-gold-500); }


/* Gallery — lineup.html */
.lu-gallery { background: var(--af-navy-950); padding: 4rem 0; }

.lg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  padding: 0 3px;
}
.lg-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  margin: 0;
  display: block;
}
.lg-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.lg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 39, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lg-thumb:hover img { transform: scale(1.1); }
.lg-thumb:hover .lg-overlay { opacity: 1; }

/* Lightbox */
.lg-box {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 16, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.lg-box.is-open { opacity: 1; pointer-events: all; }
.lg-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 88vw;
  max-height: 88vh;
}
.lg-img-wrap img {
  max-width: 88vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lg-close, .lg-prev, .lg-next {
  position: fixed;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  line-height: 1;
  z-index: 10000;
  padding: 0;
  transition: color 0.2s ease;
}
.lg-close:hover, .lg-prev:hover, .lg-next:hover { color: #c9a15c; }
.lg-close { top: 1.25rem; right: 1.5rem; font-size: 2rem; }
.lg-prev  { left: 1rem; top: 50%; transform: translateY(-50%); font-size: 4rem; }
.lg-next  { right: 1rem; top: 50%; transform: translateY(-50%); font-size: 4rem; }

@media (max-width: 599px) {
  .lg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1200px) {
  .lg-grid { grid-template-columns: repeat(6, 1fr); gap: 4px; padding: 0 4px; }
}
