/* ==========================================================================
   MEN FOR GOD CONFERENCE — main.css
   Dark, cinematic, forged-in-fire. One stylesheet for every page.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --bg: #0A0A0B;
  --surface: #141416;
  --surface-2: #1C1C20;
  --text: #F4F1EA;
  --muted: #8A8A93;
  --gold: #C8A24C;
  --gold-deep: #9C7A2E;
  --ember: #E0662E;
  --hairline: rgba(244, 241, 234, 0.08);
  --hairline-strong: rgba(244, 241, 234, 0.16);
  --gold-grad: linear-gradient(135deg, #E3C77E 0%, var(--gold) 38%, var(--gold-deep) 100%);
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5rem;
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--gold); color: #0A0A0B; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Skip link */
.skip-link {
  position: fixed;
  top: 0.75rem; left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: #0A0A0B;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 3px;
  transform: translateY(-200%);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }

/* --------------------------------------------------------------------------
   3. Film grain overlay (whole site)
   -------------------------------------------------------------------------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 600;
  pointer-events: none;
  background-image: var(--noise);
  background-size: 240px 240px;
  opacity: 0.06;
  mix-blend-mode: overlay;
}

/* --------------------------------------------------------------------------
   4. Custom cursor (injected by JS, fine pointers only)
   -------------------------------------------------------------------------- */
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  z-index: 900;
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(200, 162, 76, 0.85);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.28s var(--ease-out), opacity 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
  will-change: transform;
}
.cursor-ring.is-visible { opacity: 1; }
.cursor-ring.is-hover {
  transform: scale(1.9);
  border-color: rgba(200, 162, 76, 0.5);
  background: rgba(200, 162, 76, 0.06);
}
.cursor-ring.is-down { transform: scale(0.7); }
@media (hover: none), (pointer: coarse) {
  .cursor-ring { display: none; }
}

/* --------------------------------------------------------------------------
   5. Layout primitives & typography
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.container--narrow { max-width: 860px; }

.section { padding-block: clamp(5rem, 14vh, 9.5rem); position: relative; }
.section--tight { padding-block: clamp(3.5rem, 9vh, 6rem); }

/* Radial spotlight glow behind major titles / sections.
   z-index lifts the glow above preceding sections' scrim layers so its
   overhanging circle blends across the divider instead of being sliced. */
.spotlight { position: relative; z-index: 1; }
.spotlight::before {
  content: "";
  position: absolute;
  top: -12%; left: 50%;
  transform: translateX(-50%);
  width: min(70rem, 120vw);
  aspect-ratio: 1.6 / 1;
  background: radial-gradient(ellipse at center, rgba(200, 162, 76, 0.13) 0%, rgba(200, 162, 76, 0.05) 38%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.spotlight > * { position: relative; z-index: 1; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.kicker::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: var(--gold-grad);
  flex: none;
}

.title-display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 0.95;
  font-size: clamp(2.4rem, 6.5vw, 4.75rem);
  text-wrap: balance;
}

.text-gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 38rem;
}
.lead strong { color: var(--text); font-weight: 500; }

.scripture {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  text-wrap: balance;
}

/* Mask-reveal line wrappers (safe without JS: fully visible by default) */
.line-mask { display: block; overflow: hidden; }
.line-mask > .line-inner { display: block; will-change: transform; }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  will-change: transform;
}
.btn .btn-arrow { transition: transform 0.3s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn--gold {
  background: var(--gold-grad);
  color: #0A0A0B;
  box-shadow: 0 0 0 rgba(200, 162, 76, 0);
}
.btn--gold:hover {
  box-shadow: 0 8px 32px rgba(200, 162, 76, 0.35);
}

.btn--ghost {
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  background: rgba(20, 20, 22, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--lg { padding: 1.2rem 2.8rem; font-size: 0.85rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(200, 162, 76, 0.35);
  transition: border-color 0.3s ease, gap 0.3s var(--ease-out);
}
.link-arrow:hover { border-color: var(--gold); gap: 0.85rem; }

/* --------------------------------------------------------------------------
   7. Header / nav
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 800;
  height: var(--header-h);
  transition: background-color 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(20, 20, 22, 0.82);
  border-bottom-color: var(--hairline);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
}
.wordmark .wordmark-for { color: var(--gold); font-size: 0.72em; }
.brand-badge {
  width: 2.75rem;
  height: 2.75rem;
  flex: none;
  margin-right: 0.35em;
}

/* Animated header logo: video masked to the badge circle so its backdrop
   never shows; the static transparent badge is the built-in fallback. */
.brand-motion {
  position: relative;
  display: block;
  width: 3.6rem;
  height: 3.6rem;
  flex: none;
  border-radius: 50%;
  overflow: hidden;
  background: url("../img/logo-badge.png") center / 118% auto no-repeat;
}
.brand-motion video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 118%;
  width: auto;
  transform: translate(-50%, -50%);
}
@media (prefers-reduced-motion: reduce) {
  .brand-motion video { display: none; }
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
  list-style: none;
}
.primary-nav a {
  position: relative;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0;
  transition: color 0.25s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}
.primary-nav a:hover { color: var(--text); }
.primary-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.primary-nav a[aria-current="page"] { color: var(--text); }
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-cta { padding: 0.7rem 1.5rem; font-size: 0.72rem; }
.header-actions { display: flex; align-items: center; gap: 1.25rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 950;
  width: 2.75rem; height: 2.75rem;
  align-items: center;
  justify-content: center;
}
.nav-toggle .bars {
  position: relative;
  width: 1.5rem; height: 0.75rem;
  display: block;
}
.nav-toggle .bars::before,
.nav-toggle .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%; height: 1.5px;
  background: var(--text);
  transition: transform 0.35s var(--ease-out), top 0.35s var(--ease-out), bottom 0.35s var(--ease-out);
}
.nav-toggle .bars::before { top: 0; }
.nav-toggle .bars::after { bottom: 0; }
.nav-toggle[aria-expanded="true"] .bars::before { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars::after { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(10, 10, 11, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 6vw, 3rem);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.45s ease, visibility 0s linear 0.45s;
}
.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.45s ease;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  top: -20%; left: 50%;
  transform: translateX(-50%);
  width: 130vw; aspect-ratio: 1.4/1;
  background: radial-gradient(ellipse at center, rgba(200, 162, 76, 0.12), transparent 65%);
  pointer-events: none;
}
.mobile-menu ul { list-style: none; display: grid; gap: 0.4rem; }
.mobile-menu a.menu-link {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 10vw, 4rem);
  text-transform: uppercase;
  line-height: 1.12;
  color: var(--text);
  transition: color 0.25s ease;
}
.mobile-menu a.menu-link:hover,
.mobile-menu a.menu-link[aria-current="page"] { color: var(--gold); }
.mobile-menu li {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.mobile-menu.is-open li { opacity: 1; transform: none; }
.mobile-menu.is-open li:nth-child(1) { transition-delay: 0.10s; }
.mobile-menu.is-open li:nth-child(2) { transition-delay: 0.16s; }
.mobile-menu.is-open li:nth-child(3) { transition-delay: 0.22s; }
.mobile-menu.is-open li:nth-child(4) { transition-delay: 0.28s; }
.mobile-menu.is-open li:nth-child(5) { transition-delay: 0.34s; }
.mobile-menu.is-open li:nth-child(6) { transition-delay: 0.40s; }
.mobile-menu .menu-meta {
  margin-top: 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transition: opacity 0.5s ease 0.5s;
}
.mobile-menu.is-open .menu-meta { opacity: 1; }
body.menu-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu, .mobile-menu li, .mobile-menu .menu-meta { transition: none; }
}

@media (max-width: 899px) {
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 900px) {
  .mobile-menu { display: none; }
}

/* --------------------------------------------------------------------------
   8. Media frames (dark gradient + noise under every image)
   -------------------------------------------------------------------------- */
.media-frame {
  position: relative;
  overflow: hidden;
  background:
    var(--noise),
    linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 45%, #0D0D0F 100%);
  background-size: 240px 240px, cover;
}
.media-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gold double frame for portraits */
.portrait-frame {
  position: relative;
  border: 1px solid rgba(200, 162, 76, 0.35);
  padding: 0.6rem;
  background: linear-gradient(160deg, rgba(200, 162, 76, 0.06), transparent 60%);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 0.6rem;
  border: 1px solid var(--hairline);
  pointer-events: none;
  z-index: 2;
}
.portrait-frame .media-frame { aspect-ratio: 4 / 5; }

/* Placeholder portrait: oversized initials over gradient + noise */
.portrait-placeholder {
  display: grid;
  place-items: center;
  height: 100%;
  position: relative;
}
.portrait-placeholder .initials {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 6rem);
  letter-spacing: 0.02em;
  background: linear-gradient(160deg, rgba(200, 162, 76, 0.55), rgba(156, 122, 46, 0.18));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: opacity 0.35s ease;
}
.portrait-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(200, 162, 76, 0.10), transparent 60%);
}
.portrait-placeholder .placeholder-note {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(138, 138, 147, 0.65);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   9. Hero (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-block: calc(var(--header-h) + 3rem) 3.5rem;
}
.hero-bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  background:
    var(--noise),
    linear-gradient(180deg, #101012 0%, var(--bg) 100%);
  background-size: 240px 240px, cover;
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 38%;
}
/* Warm gold grade: pulls the footage's stray blues/greens toward the
   site's amber palette; the gold scrim above completes the look. */
.hero-bg video {
  filter: sepia(0.35) saturate(1.2) hue-rotate(-6deg) brightness(0.78) contrast(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg video { display: none; }
  .hero-bg {
    background:
      var(--noise),
      url("../img/hero.jpg") center 38% / cover no-repeat;
  }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Own composited layer so it reliably stacks above the video layer */
  transform: translateZ(0);
  background:
    radial-gradient(ellipse 62% 48% at 50% 34%, rgba(200, 162, 76, 0.14), transparent 70%),
    radial-gradient(ellipse 85% 70% at 50% 42%, rgba(10, 10, 11, 0.62), rgba(10, 10, 11, 0.26) 55%, transparent 78%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.68) 0%, rgba(10, 10, 11, 0.42) 38%, rgba(10, 10, 11, 0.58) 64%, rgba(10, 10, 11, 0.88) 84%, var(--bg) 95%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Film-title overline above the wordmark — quiet, wide, supporting */
.hero-kicker {
  font-family: "Oswald", var(--font-body);
  font-size: clamp(0.68rem, 1.1vw, 0.95rem);
  font-weight: 500;
  letter-spacing: clamp(0.42em, 1.2vw, 0.6em);
  text-indent: clamp(0.42em, 1.2vw, 0.6em);
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.82);
  margin-bottom: clamp(0.8rem, 1.8vh, 1.2rem);
}

.hero-title {
  /* Rammetto One — matches the Men 4 God badge lettering */
  font-family: "Rammetto One", var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 10vw, 8.75rem);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: clamp(1.4rem, 3.2vh, 2.25rem);
  /* NOTE: no filter here — a filter on this element forces a composited
     layer that breaks background-clip:text on the gradient letters. */
}
/* Hero wordmark: same gradient structure as the countdown numbers
   (light → mid → deep at 135deg), in the logo red (#FB3130). */
.hero-title .line-inner {
  background: linear-gradient(135deg, #FF7A6E 0%, #FB3130 38%, #A81B1A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* The wordmark is the badge's actual lettering artwork — the exact
   arched MEN 4 GOD lockup from the logo (red letters, white cross) */
.hero-title .wordmark-art {
  display: block;
  width: clamp(17rem, 56vw, 33rem);
  height: auto;
  margin-inline: auto;
}
/* Filter on the h1 (outside the reveal mask) so nothing gets clipped.
   No red glow — just vivid color and a soft dark shadow for depth. */
.hero-title {
  filter:
    saturate(1.2) brightness(1.14)
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.5));
}
.hero-title .line-mask { padding-top: 0.5em; margin-top: -0.5em; }
.hero-title .line-inner { padding-block: 0.045em; }

/* Verse artwork under the lockup — same lettering style as the badge.
   Negative top margin tucks it up into the bowl of the arched lockup. */
.hero-verse {
  margin: clamp(-3.4rem, -7vw, -1.5rem) auto clamp(1.2rem, 2.6vh, 1.8rem);
}
.hero-verse img {
  display: block;
  width: clamp(9.5rem, 26vw, 15.5rem);
  height: auto;
  margin-inline: auto;
  opacity: 0.92;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.55));
}

.hero-tagline {
  font-size: clamp(0.82rem, 1.4vw, 1.05rem);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-indent: 0.3em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.7rem;
}
.hero-tagline em { font-style: normal; color: var(--gold); }
.hero-meta {
  font-size: clamp(0.72rem, 1.15vw, 0.85rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(2.25rem, 5.5vh, 3.5rem);
}
.hero-meta .dot { color: var(--gold); margin-inline: 0.5em; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: clamp(2rem, 5vh, 3.25rem);
}

/* Scroll cue — in flow below the hero content so it can never overlap */
.scroll-cue {
  position: relative;
  z-index: 3;
  margin-top: clamp(2.25rem, 5.5vh, 3.75rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-cue .cue-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(180deg, rgba(200, 162, 76, 0.4), transparent);
  overflow: hidden;
  position: relative;
}
.scroll-cue .cue-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: cue-drop 2.2s var(--ease-out) infinite;
}
@keyframes cue-drop {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue .cue-line::after { animation: none; }
}

/* --------------------------------------------------------------------------
   10. Countdown
   -------------------------------------------------------------------------- */
.countdown {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(1rem, 4vw, 2.75rem);
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 3.2rem;
}
.countdown-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5.5vw, 4rem);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.countdown-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.countdown-sep {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  color: rgba(200, 162, 76, 0.35);
  align-self: flex-start;
  padding-top: 0.25em;
}
@media (max-width: 480px) {
  .countdown-sep { display: none; }
}

/* --------------------------------------------------------------------------
   11. Manifesto
   -------------------------------------------------------------------------- */
.manifesto { text-align: center; }
.manifesto .manifesto-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.4;
  max-width: 52rem;
  margin-inline: auto;
  text-wrap: balance;
}
.manifesto .manifesto-text strong {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.92em;
  letter-spacing: 0.02em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.manifesto .manifesto-ref {
  display: block;
  margin-top: 2.25rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   12. Feature (Joby Martin) & split sections
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
@media (max-width: 899px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature-media {
  position: relative;
  max-width: 26rem;
}
.feature-media .light-accent {
  position: absolute;
  top: -8%;
  right: -16%;
  width: 58%;
  height: 116%;
  z-index: 0;
  opacity: 0.5;
  overflow: hidden;
  -webkit-mask-image: radial-gradient(ellipse 52% 50% at center, #000 30%, transparent 74%);
  mask-image: radial-gradient(ellipse 52% 50% at center, #000 30%, transparent 74%);
}
.feature-media .light-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-media .portrait-frame { position: relative; z-index: 1; }
@media (max-width: 899px) {
  .feature-media { margin-inline: auto; }
  .feature-media .light-accent { right: -8%; }
}

.feature-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.95;
  margin-bottom: 0.9rem;
}
.feature-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.feature-bio {
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}
.feature-bio p + p { margin-top: 1rem; }

/* --------------------------------------------------------------------------
   13. Section headers & about teaser
   -------------------------------------------------------------------------- */
.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.75rem, 7vh, 4.5rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .kicker { justify-content: center; }
.section-head--center .kicker::before { display: none; }
.section-head .lead { margin-top: 1.5rem; }
.section-head--center .lead { margin-inline: auto; }

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.75rem, 7vh, 4.5rem);
}
.section-head-row .section-head { margin-bottom: 0; }

.about-teaser {
  border-block: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 50% 80% at 85% 50%, rgba(200, 162, 76, 0.06), transparent 70%),
    var(--surface);
}
.about-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 899px) {
  .about-teaser-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   14. Speaker cards
   -------------------------------------------------------------------------- */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem) clamp(1.25rem, 2.5vw, 2rem);
}
.speakers-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: clamp(2.5rem, 5vw, 3.5rem); }
@media (max-width: 1023px) {
  .speakers-grid, .speakers-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 559px) {
  .speakers-grid, .speakers-grid--3 { grid-template-columns: 1fr; max-width: 24rem; margin-inline: auto; }
}

.speaker-card {
  display: block;
  transition: transform 0.5s var(--ease-out);
}
.speaker-card:hover { transform: translateY(-8px); }
.speaker-card .portrait-frame {
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}
.speaker-card:hover .portrait-frame {
  border-color: rgba(200, 162, 76, 0.75);
  box-shadow: 0 22px 45px -20px rgba(0, 0, 0, 0.7), 0 0 40px -12px rgba(200, 162, 76, 0.22);
}
.speaker-card:hover .initials { opacity: 0.85; }
.speaker-card .speaker-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin: 1.25rem 0 0.4rem;
}
.speaker-card .speaker-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.speaker-card .speaker-bio {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   To-be-announced panel (used wherever a lineup isn't confirmed yet)
   -------------------------------------------------------------------------- */
.tba-panel {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2.75rem, 7vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  border: 1px solid rgba(200, 162, 76, 0.22);
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(200, 162, 76, 0.09), transparent 68%),
    linear-gradient(170deg, var(--surface) 0%, #0D0D0F 100%);
}
.tba-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/logo-badge.png") center 46% / min(38%, 20rem) auto no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
.tba-panel > * { position: relative; }
.tba-panel--lg { padding-block: clamp(3.5rem, 10vw, 7rem); }

.tba-badge {
  display: inline-block;
  margin-bottom: clamp(1.25rem, 3vh, 2rem);
  padding: 0.5rem 1.15rem;
  border: 1px solid rgba(200, 162, 76, 0.4);
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.tba-headline {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(1.9rem, 5.5vw, 4rem);
  text-wrap: balance;
  margin-bottom: clamp(1rem, 2.5vh, 1.6rem);
}
.tba-copy {
  max-width: 34rem;
  margin: 0 auto clamp(1.9rem, 4.5vh, 2.75rem);
  color: var(--muted);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  text-wrap: pretty;
}

/* Inline form notice (setup pending / send failure) */
.form-notice {
  margin-top: 1.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(200, 162, 76, 0.35);
  background: rgba(200, 162, 76, 0.06);
  color: var(--text);
  font-size: 0.92rem;
  text-align: center;
}

/* Host-org emblem inside a portrait frame (About Us block) */
.org-emblem {
  display: grid;
  place-items: center;
  height: 100%;
  padding: clamp(1.5rem, 5%, 3rem);
  background:
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(200, 162, 76, 0.10), transparent 65%),
    linear-gradient(165deg, #17161A 0%, #0D0D0F 100%);
}
.org-emblem img { width: 100%; height: auto; }

/* Lead mission statement inside a feature bio */
.mission-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 1.1rem;
  text-wrap: balance;
}

.announce-banner {
  margin-top: clamp(2.75rem, 7vh, 4rem);
  padding: 1.6rem 2rem;
  border: 1px dashed rgba(200, 162, 76, 0.35);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200, 162, 76, 0.04);
}

/* Featured speaker block (speakers page) */
.speaker-featured {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 60% 90% at 12% 20%, rgba(200, 162, 76, 0.07), transparent 65%),
    var(--surface);
}
@media (max-width: 899px) {
  .speaker-featured { grid-template-columns: 1fr; }
  .speaker-featured .feature-media { max-width: 22rem; margin-inline: 0; }
}

/* --------------------------------------------------------------------------
   15. Schedule — teaser & timeline
   -------------------------------------------------------------------------- */
.schedule-teaser-list {
  list-style: none;
  border-top: 1px solid var(--hairline);
}
.schedule-teaser-list li {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0.4rem 2.5rem;
  align-items: baseline;
  padding: 1.9rem 0.25rem;
  border-bottom: 1px solid var(--hairline);
  transition: background-color 0.3s ease, padding-left 0.35s var(--ease-out);
}
.schedule-teaser-list li:hover {
  background: rgba(200, 162, 76, 0.03);
  padding-left: 0.9rem;
}
.schedule-teaser-list .st-time {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.03em;
  grid-row: span 2;
}
.schedule-teaser-list .st-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  text-transform: uppercase;
  line-height: 1.05;
}
.schedule-teaser-list .st-desc {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 640px) {
  .schedule-teaser-list li { grid-template-columns: 1fr; }
  .schedule-teaser-list .st-time { grid-row: auto; }
  .schedule-teaser-list .st-desc { grid-column: 1; }
}

/* Timeline (schedule page) */
.timeline {
  position: relative;
  max-width: 62rem;
  margin-inline: auto;
  padding-block: 1rem;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(200, 162, 76, 0.55) 8%, rgba(200, 162, 76, 0.55) 92%, transparent);
}
.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 6vh, 4rem);
}
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-item::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(200, 162, 76, 0.12);
}
.timeline-item:nth-child(odd)::before { right: -5.5px; }
.timeline-item:nth-child(even)::before { left: -5.5px; }

.timeline-time {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.timeline-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.55rem;
}
.timeline-desc { color: var(--muted); font-size: 0.93rem; max-width: 26rem; }
.timeline-item:nth-child(odd) .timeline-desc { margin-left: auto; }

.timeline-item--major .timeline-title {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 767px) {
  .timeline::before { left: 0.45rem; transform: none; }
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    width: 100%;
    left: 0;
    text-align: left;
    padding: 0 0 2.75rem 2.5rem;
  }
  .timeline-item:nth-child(odd)::before,
  .timeline-item:nth-child(even)::before { left: 0; right: auto; }
  .timeline-item:nth-child(odd) .timeline-desc { margin-left: 0; }
}

.schedule-note {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* --------------------------------------------------------------------------
   16. Venue
   -------------------------------------------------------------------------- */
.venue-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 899px) {
  .venue-grid { grid-template-columns: 1fr; }
}
.venue-address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.9;
  margin-block: 1.5rem 2rem;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(200, 162, 76, 0.4);
}
.venue-address strong { color: var(--text); font-weight: 500; }
.venue-note {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 32rem;
}
.venue-note svg { flex: none; margin-top: 0.2rem; color: var(--gold); }

.map-placeholder {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--hairline);
  background:
    var(--noise),
    linear-gradient(150deg, var(--surface-2), #0E0E10 80%);
  background-size: 240px 240px, cover;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244, 241, 234, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 241, 234, 0.045) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 78%);
}
.map-placeholder .map-pin {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
}
.map-placeholder .map-pin svg { filter: drop-shadow(0 6px 18px rgba(200, 162, 76, 0.4)); }

/* --------------------------------------------------------------------------
   17. Registration CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(6rem, 18vh, 11rem);
  text-align: center;
  border-block: 1px solid var(--hairline);
  background:
    var(--noise),
    linear-gradient(160deg, #17120A, var(--bg) 85%);
  background-size: 240px 240px, cover;
}
.cta-band-bg {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
}
.cta-band-bg img,
.cta-band-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
@media (prefers-reduced-motion: reduce) {
  .cta-band-bg video { display: none; }
  .cta-band-bg { background: url("../img/texture-metal.jpg") center / cover no-repeat; }
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 55% 65% at 50% 45%, rgba(224, 102, 46, 0.10), transparent 70%),
    radial-gradient(ellipse 70% 75% at 50% 52%, rgba(10, 10, 11, 0.55), rgba(10, 10, 11, 0.18) 55%, transparent 78%),
    linear-gradient(180deg, var(--bg) 0%, rgba(10, 10, 11, 0.35) 22%, rgba(10, 10, 11, 0.38) 55%, rgba(10, 10, 11, 0.82) 86%, var(--bg) 96%);
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band .title-display {
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  text-shadow: 0 2px 14px rgba(10, 10, 11, 0.45);
}
.cta-band .lead {
  margin: 1.75rem auto 2.75rem;
  max-width: 30rem;
  color: var(--text);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(10, 10, 11, 0.85), 0 3px 16px rgba(10, 10, 11, 0.55);
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, var(--bg), #08080A);
  padding-top: clamp(4.5rem, 11vh, 7.5rem);
}
.footer-scripture {
  text-align: center;
  max-width: 56rem;
  margin: 0 auto clamp(4rem, 10vh, 6.5rem);
}
.footer-scripture .scripture {
  font-size: clamp(1.6rem, 3.8vw, 2.9rem);
  color: var(--text);
}
.footer-scripture .scripture-ref {
  display: block;
  margin-top: 1.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(3rem, 7vh, 5rem);
}
@media (max-width: 899px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 559px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand .wordmark { font-size: 1.3rem; margin-bottom: 1.1rem; }
.footer-brand p { color: var(--muted); font-size: 0.92rem; max-width: 20rem; }
.footer-col h2 {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; display: grid; gap: 0.75rem; }
.footer-col a, .footer-col li {
  color: var(--muted);
  font-size: 0.92rem;
}
.footer-col a { transition: color 0.25s ease; }
.footer-col a:hover { color: var(--text); }
.footer-col address { font-style: normal; line-height: 1.9; color: var(--muted); font-size: 0.92rem; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.75rem;
  border-top: 1px solid var(--hairline);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.footer-bottom a { color: var(--muted); transition: color 0.25s ease; }
.footer-bottom a:hover { color: var(--gold); }

/* --------------------------------------------------------------------------
   19. Page hero (sub-pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + clamp(4.5rem, 12vh, 8rem)) 0 clamp(3.5rem, 9vh, 6rem);
  border-bottom: 1px solid var(--hairline);
}
/* Glow escapes the section (no overflow clip) and sits beneath all content
   (z-index -1) so its circle completes past the divider instead of slicing. */
.page-hero::before {
  content: "";
  position: absolute;
  top: -45%; left: 50%;
  transform: translateX(-50%);
  width: min(80rem, 100vw);
  aspect-ratio: 1.5 / 1;
  background: radial-gradient(ellipse at center, rgba(200, 162, 76, 0.15), rgba(200, 162, 76, 0.04) 42%, transparent 68%);
  pointer-events: none;
  z-index: -1;
}
.page-hero .container { position: relative; }
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 9vw, 7.5rem);
  line-height: 0.94;
  margin-bottom: 1.25rem;
}
.page-hero .lead { max-width: 44rem; }
.page-hero .kicker { margin-bottom: 1.25rem; }

/* --------------------------------------------------------------------------
   20. Tickets (register)
   -------------------------------------------------------------------------- */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
  margin-top: 1.5rem;
}
@media (max-width: 899px) {
  .tickets-grid { grid-template-columns: 1fr; max-width: 28rem; margin-inline: auto; }
}
.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.9rem, 3.5vw, 2.75rem);
  background: var(--surface);
  border: 1px solid var(--hairline);
  transition: transform 0.45s var(--ease-out), border-color 0.35s ease, box-shadow 0.45s ease;
}
.ticket-card:hover {
  transform: translateY(-6px);
  border-color: var(--hairline-strong);
}
.ticket-card--featured {
  background:
    radial-gradient(ellipse 90% 45% at 50% 0%, rgba(200, 162, 76, 0.10), transparent 70%),
    var(--surface-2);
  border-color: rgba(200, 162, 76, 0.55);
}
.ticket-card--featured:hover {
  border-color: var(--gold);
  box-shadow: 0 24px 55px -25px rgba(0, 0, 0, 0.8), 0 0 45px -12px rgba(200, 162, 76, 0.22);
}
.ticket-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.45rem 1.1rem;
  background: var(--gold-grad);
  color: #0A0A0B;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticket-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.ticket-price {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 6vw, 4.25rem);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.ticket-price sup {
  font-size: 0.4em;
  color: var(--gold);
}
.ticket-price-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.ticket-perks {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding-block: 1.75rem;
  margin-bottom: 2rem;
  border-top: 1px solid var(--hairline);
  flex: 1;
}
.ticket-perks li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--muted);
}
.ticket-perks li::before {
  content: "";
  flex: none;
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.28em;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.1 11.6 2.6 8.1l1.1-1.1 2.4 2.4 6-6 1.1 1.1z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M6.1 11.6 2.6 8.1l1.1-1.1 2.4 2.4 6-6 1.1 1.1z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.ticket-card .btn { width: 100%; }

/* Post-registration payment step (inside the success state) */
.success-payment {
  margin: 1.9rem auto 0.6rem;
  padding: 1.5rem clamp(1.25rem, 4vw, 2.25rem) 1.25rem;
  max-width: 24rem;
  border: 1px solid rgba(200, 162, 76, 0.25);
  background: linear-gradient(165deg, rgba(200, 162, 76, 0.06), transparent 65%);
}
.payment-step-label {
  margin-bottom: 1rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.success-payment .btn-cashapp { width: 100%; }
.success-payment .btn-cashapp.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
  filter: saturate(0.55);
}
.cashapp-note {
  margin-top: 0.8rem;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.pricing-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   21. Registration form
   -------------------------------------------------------------------------- */
.register-form-wrap {
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: var(--surface);
  border: 1px solid var(--hairline);
  position: relative;
}
.register-form-wrap::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-field { display: grid; gap: 0.55rem; align-content: start; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}
.form-field label .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background-color: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 2px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23C8A24C' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  padding-right: 2.75rem;
  cursor: pointer;
}
.form-field textarea { min-height: 8.5rem; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(138, 138, 147, 0.6); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 76, 0.18);
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea { border-color: var(--ember); }
.field-error {
  font-size: 0.78rem;
  color: var(--ember);
  display: none;
}
.form-field.has-error .field-error { display: block; }
.form-actions { margin-top: 2.25rem; display: grid; gap: 1rem; }
.form-actions .btn { width: 100%; }
.form-privacy {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: clamp(2rem, 6vw, 3.5rem) 1rem;
}
.form-success.is-visible { display: block; }
.register-form.is-hidden { display: none; }
.form-success .success-icon {
  width: 4rem; height: 4rem;
  margin: 0 auto 1.75rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  box-shadow: 0 0 40px -8px rgba(200, 162, 76, 0.4);
}
.form-success h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.form-success p { color: var(--muted); max-width: 26rem; margin-inline: auto; }
.form-success .scripture { display: block; margin-top: 1.75rem; color: var(--gold); font-size: 1.1rem; }

/* --------------------------------------------------------------------------
   22. About page — values, pull quote, FAQ
   -------------------------------------------------------------------------- */
.prose { max-width: 42rem; color: var(--muted); }
.prose p + p { margin-top: 1.25rem; }
.prose strong { color: var(--text); font-weight: 500; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
@media (max-width: 899px) { .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 559px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  transition: background-color 0.35s ease;
}
.value-card:hover { background: var(--surface); }
.value-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  margin-bottom: 1.4rem;
}
.value-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.35rem;
  margin-bottom: 0.7rem;
}
.value-card p { font-size: 0.92rem; color: var(--muted); }

.pullquote-band {
  position: relative;
  text-align: center;
  padding-block: clamp(5.5rem, 15vh, 9.5rem);
  border-block: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(200, 162, 76, 0.08), transparent 70%),
    var(--surface);
  overflow: hidden;
}
.pullquote-band .scripture {
  font-size: clamp(1.7rem, 4.2vw, 3.2rem);
  max-width: 58rem;
  margin-inline: auto;
}
.pullquote-band .scripture-ref {
  display: block;
  margin-top: 1.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* FAQ accordion */
.faq-list {
  max-width: 50rem;
  margin-inline: auto;
  border-top: 1px solid var(--hairline);
}
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.6rem 0.25rem;
  text-align: left;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500;
  color: var(--text);
  transition: color 0.25s ease;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex: none;
  position: relative;
  width: 0.9rem; height: 0.9rem;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: translateY(-50%);
  transition: transform 0.35s var(--ease-out);
}
.faq-icon::after { transform: translateY(-50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translateY(-50%) rotate(0deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0.25rem 1.75rem;
  color: var(--muted);
  max-width: 42rem;
}
.faq-answer-inner a { color: var(--gold); border-bottom: 1px solid rgba(200, 162, 76, 0.35); }
@media (prefers-reduced-motion: reduce) {
  .faq-answer { transition: none; }
}
/* No-JS fallback: answers stay open so content is never trapped */
.no-js .faq-answer { max-height: none; }
.no-js .faq-icon { display: none; }

/* --------------------------------------------------------------------------
   23. Misc helpers
   -------------------------------------------------------------------------- */
.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 6vw, 4.5rem);
  margin-top: 2.75rem;
}
.stat .stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .stat-label {
  margin-top: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}
