/* ═══════════════════════════════════════════════════════════
   RightNow Conference 2026 — Styles
   ═══════════════════════════════════════════════════════════ */

/* ─── DENTON TEST FONT FACES ─────────────────────────────── */
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-Thin.otf') format('opentype'); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-ThinItalic.otf') format('opentype'); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-Light.otf') format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-LightItalic.otf') format('opentype'); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-RegularItalic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-Medium.otf') format('opentype'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-MediumItalic.otf') format('opentype'); font-weight: 500; font-style: italic; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-Bold.otf') format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-BoldItalic.otf') format('opentype'); font-weight: 700; font-style: italic; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-ExtraBold.otf') format('opentype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-ExtraBoldItalic.otf') format('opentype'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-Black.otf') format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'DentonTest'; src: url('../assets/fonts/DentonTest-BlackItalic.otf') format('opentype'); font-weight: 900; font-style: italic; font-display: swap; }

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --color-bg:        #e9e9e5;
  --color-surface:   #1e2320;
  --color-text:      #f5f2ec;
  --color-muted:     #a8a89a;
  --color-accent:    #c8b97a;   /* warm gold CTA */
  --color-teal:      #2f4858;
  --color-brown:     #8b5a3c;
  --color-olive:     #79785a;

  /* Typography */
  --font-display:    'brother-1816', 'Nunito Sans', sans-serif;
  --font-body:       'brother-1816', 'Nunito Sans', sans-serif;
  --font-serif:      'DentonTest', Georgia, serif;
  --font-serif-hero: 'DentonTest', Georgia, serif;

  /* Layout */
  --rail:            1280px;
  --section-pad:     100px 40px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body { overscroll-behavior: none; }
body { overflow-x: hidden; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
cite { font-style: normal; }

/* Ensure DentonText displays upright for all non-italic display uses */
.hero-headline, .header-headline,
.stat-num, .stats-desc,
.speakers-heading,
.schedule-heading, .pre-conf-title h3,
.pricing-heading, .price-amount, .pass-name,
.hotels-heading,
.sponsors-title,
.faq-heading,
.volunteer-heading, .cta-heading {
  font-style: normal;
}

/* ─── NAV ────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  pointer-events: none; /* let clicks through the transparent wrapper */
  transition: transform 0.3s ease;
}

.site-nav--hidden {
  transform: translateY(-110%);
}

.nav-pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 8px 8px 8px 16px;
  background: rgba(239, 239, 239, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 10px;
}

.nav-logo img { display: block; }

.nav-links {
  display: flex;
  gap: 31px;
  list-style: none;
  font-family: var(--font-display);
  font-size: 15px;
  color: #192b2f;
  white-space: nowrap;
}

.nav-links a {
  color: #192b2f;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 0.6; }

.nav-cta {
  background: #192b2f;
  color: #efefef;
  font-family: var(--font-display);
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 10px;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }

.nav-hamburger {
  display: none;
}

.mobile-nav {
  display: none;
}

/* ─── HERO ───────────────────────────────────────────────── */
.section-hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 120px;
  gap: 24px;
}

.hero-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-logo-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #fff;
}

.hero-headline {
  font-family: var(--font-serif-hero);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 94px);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 80px rgba(0,0,0,0.5);
}

.hero-date {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  letter-spacing: 0.02em;
}

.btn-lime {
  display: inline-block;
  background: #ebffc8;
  color: #000;
  font-family: var(--font-display);
  font-size: 15px;
  padding: 14px 30px;
  border-radius: 10px;
  transition: opacity 0.15s;
}
.btn-lime:hover { opacity: 0.85; }

/* ─── STATS / SUBHEAD ────────────────────────────────────── */
.section-stats {
  color: #181818;
  position: relative;
}

.stats-inner {
  max-width: 1920px;
  margin-inline: auto;
}

.stats-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 80px 40px 60px;
  text-align: center;
}

.renew-wordmark-wrap {
  width: min(600px, 75%);
}

.renew-wordmark {
  height: auto;
  width: 100%;
  position: relative;
  left: -6%;
}

.stats-desc {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.4;
  max-width: 500px;
  color: #181818;
  letter-spacing: 0.01em;
}

.stats-desc strong {
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: #1a1d16;
  overflow: hidden;
}

.box-img-scroll {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  display: block;
}

.stat-tile--mobile-only { display: none; }

.stat-tile--parallax .box-img-scroll {
  top: -10%;    /* extend beyond tile so -5%/+5% yPercent never clips */
  height: 120%;
}

.stat-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 50px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-num {
  font-family: var(--font-serif-hero);
  font-weight: 300;
  font-size: 5vw;
  line-height: 1;
  letter-spacing: 0.02em;
}

.stat-body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  max-width: 280px;
}

/* ─── SPEAKERS ───────────────────────────────────────────── */
.section-speakers {
  padding: 140px 40px;
  background-image: linear-gradient(230deg, rgb(242, 242, 237) 23%, rgba(242, 242, 237, 0));
}

.speakers-inner {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.speakers-heading {
  font-family: var(--font-serif-hero);
  font-weight: 300;
  font-size: clamp(55px, 5vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #192b2f;
  text-align: center;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.speaker-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.speaker-photo {
  aspect-ratio: 416 / 402;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  position: relative;
}

.speaker-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.speaker-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 10px;
  padding-right: 40px;
  color: #0a0a0a;
}

.speaker-name {
  font-family: var(--font-serif);
  font-size: 21px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.speaker-bio {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.5;
  letter-spacing: -0.02em;
}

.speaker-more {
  background-color: #2f4858;
  display: flex;
  align-items: flex-end;
  padding: 34px;
}

.speaker-more span {
  font-family: var(--font-body);
  font-size: 24px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ebffc8;
}

/* ─── THEME ──────────────────────────────────────────────── */
.section-theme {
  position: relative;
}

.theme-top-wrap {
  position: relative;
}

.theme-video {
  position: absolute;
  bottom: 20%;
  right: 0;
  height: auto;
  width: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(6px);
  mix-blend-mode: multiply;
}

.theme-top {
  position: relative;
  z-index: 1;
  padding: 160px 40px 100px;
  max-width: 1440px;
  margin-inline: auto;
}

.theme-top-inner {
  max-width: 1270px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 530px;
  gap: 60px;
  align-items: start;
}

.theme-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.theme-renew-wordmark-wrap {
  max-width: 900px;
  align-self: flex-start;
  width: 115%;
}

.theme-renew-wordmark {
  height: auto;
  width: 100%;
  margin-top: -17.5%;
  margin-left: -20%;
}

.theme-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 630px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #192b2f;
  max-width: 574px;
}

.theme-verse {
  background: rgba(198, 194, 182, 0.5);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  min-height: 468px;
  color: #483e2b;
}

.theme-verse p {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  line-height: 1.5;
}

.theme-verse cite {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
}

.theme-groups {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1920px;
  margin-inline: auto;
}

.theme-group {
  display: flex;
  flex-direction: column;
  margin: 0 -1px 0 0;
  align-items: stretch;
}

/* Each panel: full-bleed photo background + same photo clipped to shape */
.theme-panel {
  position: relative;
  height: 560px;
  overflow: hidden;
}

/* Background layer */
.theme-panel-bg {
  position: absolute;
  left: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

/* Shape layer: pre-made PNG shape overlay, centered and contained */
.theme-panel-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.theme-panel-label {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: normal;
  font-size: 3.2vw;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
  width: 90%;
  text-shadow: 0 1px 30px rgba(0,0,0,0.5);
}

/* .theme-descs removed — descs now live inside .theme-group */

.theme-desc {
  flex: 1;
  padding: 59px 58px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 298px;
  color: #fff;
}

.theme-desc p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
}

.theme-desc cite {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
}

/* ─── SCHEDULE ───────────────────────────────────────────── */
.section-schedule {
  position: relative;
  overflow: hidden;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 150px;
  padding-bottom: 150px;
}

.schedule-wrap {
  display: grid;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  grid-auto-columns: 1fr;
  gap: 0px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}

.schedule-spacer {
  width: 8px;
  height: 8px;
}

.schedule-block {
  padding: 35px;
}

.schedule-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -10%;
  height: 120%;
  background-size: cover;
  background-position: center 55%;
  opacity: 1;
  will-change: transform;
}

.schedule-glance {
  background: rgba(72, 62, 43, 0.93);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  z-index: 1;
}

.schedule-heading {
  font-family: var(--font-serif-hero);
  font-weight: 300;
  font-size: clamp(55px, 4vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #c6c2b6;
}

.schedule-days {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-rule {
  border: none;
  border-top: 1px solid rgba(198, 194, 182, 0.3);
}

.schedule-day {
  display: flex;
  align-items: flex-start;
}

.schedule-date {
  display: flex;
  flex-direction: column;
  width: 202px;
  flex-shrink: 0;
}

.day-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #c6c2b6;
}

.day-name {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #c6c2b6;
}

.schedule-sessions {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.session-row {
  display: flex;
  gap: 30px;
}

.session-time {
  flex-shrink: 0;
  width: 95px;
}

.session-time,
.session-label {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 2.4;
  color: #c6c2b6;
}

.session-bold { font-weight: 700; }

.pre-conf {
  background: #2c392f;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 1;
}

.pre-conf-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #c6c2b6;
}

.pre-conf-title h3 {
  font-family: var(--font-serif-hero);
  font-size: clamp(36px, 3.5vw, 65px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.pre-conf-sub {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: #c6c2b6;
}

.pre-conf-body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #c6c2b6;
}

.pre-conf-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  padding-top: 8px;
}

.btn-pre-conf-solid {
  display: inline-block;
  background: #c6c2b6;
  color: #2c392f;
  font-family: var(--font-body);
  font-size: 18px;
  padding: 15px 30px;
  border-radius: 10px;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.btn-pre-conf-solid:hover { opacity: 0.85; }

.btn-pre-conf-ghost {
  display: inline-block;
  border: 1px solid #c6c2b6;
  color: #c6c2b6;
  font-family: var(--font-body);
  font-size: 18px;
  padding: 15px 30px;
  border-radius: 10px;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.btn-pre-conf-ghost:hover { opacity: 0.7; }

/* ─── CONFERENCE PASSES ──────────────────────────────────── */
.section-pricing {
  position: relative;
  min-height: 1122px;
  overflow: hidden;
}

.pricing-photo-wrap {
  position: absolute;
  left: 0;
  top: -10%;
  width: 56%;
  height: 120%;
  overflow: hidden;
}

.pricing-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 115%;
  background-size: cover;
  background-position: center;
  background-color: #1a3040;
  will-change: transform;
}

.pricing-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  padding: 154px 40px 80px;
  display: grid;
  grid-template-columns: 410px 1fr;
  gap: 80px;
  align-items: start;
}

.pricing-title-block {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pricing-heading {
  font-family: var(--font-serif-hero);
  font-weight: 300;
  font-size: clamp(55px, 5vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #192B2F;
}

.pricing-subhead {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #192B2F;
  max-width: 410px;
}

.pricing-lockup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-self: end;
  width: fit-content;
}

.pricing-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  background: #1f363d;
  padding: 15px 16px;
  align-self: stretch;
}

.date-tab {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #e9e9e5;
  padding: 14px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s;
  flex: 1;
  text-align: center;
}

.date-tab--active {
  background: #e9e9e5;
  color: #192b2f;
}

.date-tab:hover:not(.date-tab--active) {
  background: rgba(255,255,255,0.1);
}

.price-cards {
  display: flex;
  gap: 20px;
}

.price-card {
  background: #1f363d;
  width: 342px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.pass-name {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #e9e9e5;
}

.pass-guests {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #e9e9e5;
  margin-top: 8px;
}

.price-amount {
  font-family: var(--font-serif-hero);
  font-size: 80px;
  font-weight: 300;
  line-height: 0.83;
  letter-spacing: 0.02em;
  color: #e9e9e5;
}

.price-valid {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: #e9e9e5;
  margin-top: 4px;
}

.btn-price-outline {
  display: block;
  border: 1px solid #e9e9e5;
  color: #e9e9e5;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  padding: 13px 30px;
  border-radius: 10px;
  text-align: center;
  transition: opacity 0.15s;
}
.btn-price-outline:hover { opacity: 0.7; }

.btn-price-filled {
  display: block;
  background: #e9e9e5;
  color: #192b2f;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  padding: 13px 30px;
  border-radius: 10px;
  text-align: center;
  transition: opacity 0.15s;
}
.btn-price-filled:hover { opacity: 0.85; }

.price-includes p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #e9e9e5;
  margin-bottom: 17px;
}

.price-includes ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}

.price-includes li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #e9e9e5;
}

.price-includes li::before {
  content: '';
  display: inline-block;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: url('../assets/images/Bullet.svg') center / contain no-repeat;
}

/* ─── HOTELS / TRAVEL ────────────────────────────────────── */
.section-travel {
  position: relative;
  min-height: 900px;
  overflow: hidden;
}

.hotels-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #1a2220;
}

.hotels-inner {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  padding: 160px 40px 160px;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.hotels-header {
  display: flex;
  flex-direction: column;
  gap: 54px;
  max-width: 536px;
}

.hotels-heading {
  font-family: var(--font-serif-hero);
  font-weight: 300;
  font-size: clamp(55px, 5vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #192b2f;
}

.hotels-location { display: flex; flex-direction: column; gap: 2px; }

.hotels-location-title,
.hotels-location-name {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.5;
  color: #192b2f;
}

.hotels-location-title {
  font-weight: 300;
  font-style: italic;
}

.hotels-location-addr {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #192b2f;
}

.hotels-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hotel-card {
  background: #c6c2b6;
  width: 315px;
  min-height: 379px;
  padding: 45px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
}

.hotel-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.hotel-name {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
  color: #192b2f;
}

.hotel-details { display: flex; flex-direction: column; }

.hotel-details p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #192b2f;
}

.hotel-cta-short { display: none; }

.hotel-card .btn-dark {
  display: block;
  text-align: center;
}

/* ─── SPONSORS ───────────────────────────────────────────── */
.section-sponsors {
  background-image: linear-gradient(220deg, rgb(242, 242, 237) 23%, rgba(242, 242, 237, 0));
}

.sponsors-hero {
  position: relative;
  padding: 225px 0 250px;
  background-color: #2a3520;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.sponsors-hero-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -10%;
  height: 120%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.sponsors-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.05);
}

.sponsors-heading-wrap {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  width: 100%;
  padding: 0 40px 60px;
}

.sponsors-heading {
  color: #f2f2ed;
  max-width: 400px;
}

.sponsors-title {
  font-family: var(--font-serif-hero);
  font-weight: 300;
  font-size: clamp(55px, 5vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.sponsors-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  margin-top: 8px;
}

.sponsors-tiers {
  position: relative;
  padding: 0 0 160px;
  margin-top: -250px;
}

.sponsors-tier:first-child .sponsors-rule,
.sponsors-tier:first-child .tier-label {
  color: #F2F2ED;
  border-color: #F2F2ED;
}

.sponsors-rail {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding-top: 50px;
}

.sponsors-tier {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sponsors-rule {
  border: none;
  border-top: 1px solid rgba(25, 43, 47, 0.2);
}

.sponsors-tier-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.tier-label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #192b2f;
  min-width: 160px;
}

.sponsor-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
}

.sponsor-card {
  background: #79785a;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 270px;
}

.sponsor-logo-wrap {
  height: 117px;
  width: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sponsor-card p {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: #e9e9e5;
  text-align: center;
  width: 190px;
}

/* ─── FAQ ────────────────────────────────────────────────── */
.section-faq {
  position: relative;
  min-height: 700px;
  padding: 180px 40px 170px;
  overflow: hidden;
}

.faq-photo {
  position: absolute;
  top: -10%;
  right: 0;
  width: 50%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-color: #1a2218;
  will-change: transform;
}

.faq-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1440px;
  margin-inline: auto;
}

.faq-heading {
  font-family: var(--font-serif-hero);
  font-weight: 300;
  font-size: clamp(55px, 5vw, 80px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #192b2f;
}

.faq-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.faq-scroll-wrap {
  margin-top: 50px;
  margin-right: -40px;
  margin-left: -40px;
}

.faq-track-spacer {
  min-width: calc((min(100vw, 1920px) - 1440px) / 2 - 15px);
  flex-shrink: 0;
}

.faq-track {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.faq-track::-webkit-scrollbar { display: none; }

.faq-card {
  flex: 0 0 406px;
  background: #192b2f;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 45px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  color: #c6c2b6;
}

.faq-q {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  width: 300px;
}

.faq-a {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  width: 300px;
  font-weight: 300;
}

.faq-a a {
  color: #ddffa3;
  text-decoration: none;
  font-weight: 700;
}

.faq-a a:hover {
  text-decoration: underline;
}

.faq-arrows {
  display: flex;
  gap: 22px;
}

.faq-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.faq-arrow:hover {
  background: #ffffff;
  color: #192b2f;
}

/* ─── PLANT SHADOW DIVIDER ───────────────────────────────── */
.section-plant-shadow {
  position: relative;
  height: 0;
  width: 100%;
  max-width: none;
  overflow: visible;
}

.plant-shadow-video {
  position: absolute;
  top: -27vw;
  left: 0;
  height: auto;
  width: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(6px);
  mix-blend-mode: multiply;
  transform: scaleX(-1);
}

/* ─── VOLUNTEER ──────────────────────────────────────────── */
.section-volunteer {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.volunteer-photo {
  height: 684px;
  background-size: cover;
  background-position: center;
  background-color: #2a2a22;
}

.volunteer-content {
  display: flex;
  align-items: center;
  padding-left: 92px;
  padding-right: 60px;
}

.volunteer-inner .btn-dark {
  align-self: flex-start;
}

.volunteer-inner {
  display: flex;
  flex-direction: column;
  gap: 46px;
  max-width: 558px;
}

.volunteer-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #192b2f;
}

.volunteer-body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  color: #192b2f;
  max-width: 423px;
  margin-top: -34px; /* collapse gap between heading and body */
}

.btn-dark {
  display: inline-block;
  background: #192b2f;
  color: #e9e9e5;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.5;
  padding: 13px 30px;
  border-radius: 10px;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.btn-dark:hover { opacity: 0.85; }

/* ─── FINAL CTA ──────────────────────────────────────────── */
.section-cta {
  position: relative;
  height: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  left: 0;
  right: 0;
  top: -10%;
  height: 120%;
  background-size: cover;
  background-position: center;
  background-color: #1a2a18;
  will-change: transform;
}

.cta-box {
  position: relative;
  z-index: 1;
  background: #192b2f;
  width: 720px;
  height: 550px;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 40px;
}

.cta-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: #c6c2b6;
  max-width: 530px;
}

.btn-sand {
  display: inline-block;
  background: #999183;
  color: #192b2f;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  padding: 13px 40px;
  border-radius: 10px;
  white-space: nowrap;
  align-self: flex-start;
  transition: opacity 0.15s;
}
.btn-sand:hover { opacity: 0.85; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #8b857b;
  padding: 76px 180px;
}

.footer-inner {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  height: 28px;
  width: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.footer-social a:hover { opacity: 1; }

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 40px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  line-height: 2;
}

.footer-bottom a {
  color: #fff;
  transition: opacity 0.15s;
}
.footer-bottom a:hover { opacity: 0.7; }

/* ─── UTILITIES ──────────────────────────────────────────── */
.rail {
  max-width: var(--rail);
  margin-inline: auto;
  padding-inline: 40px;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* ── Wide screen ─────────────────────────────────────────── */
@media (min-width: 1441px) {
  .theme-panel { height: 800px; }
}

@media (min-width: 1920px) {
  .theme-panel-label { font-size: 60px; }
}

/* ── Global wide-screen caps ─────────────────────────────── */
.section-hero {
  max-width: 1440px;
  margin-inline: auto;
}

.section-schedule,
.section-pricing,
.section-travel,
.section-sponsors,
.section-faq,
.section-volunteer,
.section-cta,
.site-footer {
  max-width: 1920px;
  margin-inline: auto;
}

/* Nav pill: never let it span the full viewport */
.nav-pill { max-width: min(960px, 92vw); }

/* ── 1100px: tablet landscape / small laptop ─────────────── */
@media (max-width: 1100px) {

  /* NAV */
  .nav-pill { gap: 20px; }
  .nav-links { gap: 18px; font-size: 14px; }

  /* SPEAKERS: 2 columns */
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }

  /* THEME TOP: drop the scripture card below the text */
  .theme-top-inner { grid-template-columns: 1fr; }
  .theme-verse { min-height: auto; }
  .theme-panel-label { font-size: 3.7vw; width: min(425px, 90%); }
  .theme-renew-wordmark-wrap { width: 100%; margin: auto; }
  .theme-renew-wordmark { margin-left: 0%; }
  .theme-body { max-width: none; }

  /* SCHEDULE: switch from absolute → normal flow so both cards stack */
  .section-schedule { min-height: auto; padding: 80px 0; }
  .schedule-glance {
    position: relative;
    right: auto; top: auto;
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }
  .pre-conf {
    position: relative;
    left: auto; right: auto; top: auto;
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  /* PRICING: photo becomes a top banner, content stacks below */
  .section-pricing {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .pricing-photo-wrap { position: relative; width: 100%; height: 500px; top: auto; left: auto; }
  .pricing-photo { position: absolute; width: 100%; top: -15%; background-position: center 25%; }
  .pricing-inner { position: static; grid-template-columns: 1fr; padding: 60px 40px 80px; margin-top: -90px; }
  .pricing-title-block { position: absolute; top: 70px; left: 0; right: 0; padding-inline: 40px; }

  /* HOTELS: photo becomes a top banner */
  .section-travel {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }
  .hotels-bg { position: static; width: 100%; height: 400px; }
  .hotels-inner { padding: 60px 40px 80px; }

  /* FAQ */
  .section-faq { display: flex; flex-direction: column; min-height: auto; padding: 160px 40px 80px; }
  .faq-photo { position: absolute; width: 100%; height: 600px; transform: none; background-position: center 70%; background-size: 130%; order: -1; margin-inline: -40px; width: calc(100% + 80px); }
  .faq-inner { max-width: none; margin-inline: 0; }
  .faq-heading { color: #F2F2ED; }
  .faq-scroll-wrap { margin-right: -40px; }

  /* SPONSORS */
  .sponsors-heading-wrap { padding: 0 60px 60px; }

  /* FOOTER */
  .site-footer { padding: 60px 40px; }
}

/* ── 1440px ───────────────────────────────────────────────── */
@media (max-width: 1440px) {
  .schedule-date { width: 170px; }
}

/* ── 1250px ───────────────────────────────────────────────── */
@media (max-width: 1250px) {
  .pricing-inner { gap: 40px; }
}

/* ── 1200px: stack schedule-date above sessions ──────────── */
@media (max-width: 1200px) {
  .schedule-day { flex-direction: column; gap: 8px; }
  .schedule-date { width: auto; }
}

/* ── 991px: schedule wrap switches to flex ───────────────── */
@media (max-width: 991px) {
  .schedule-wrap { display: flex; flex-flow: wrap; }
  .schedule-spacer { width: 30%; }
  .schedule-block { width: 70%; }
  .pre-conf { margin-top: 40px; }
}

/* ── 768px: tablet / mobile ─────────────────────────────── */
@media (max-width: 768px) {

  .section-plant-shadow { display: none; }

  /* NAV: hide links, show hamburger */
  .nav-links { display: none; }
  .nav-pill { gap: 12px; position: relative; }

  .nav-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: 80px;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #192b2f;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin: 0 20px;
    background: rgba(242, 242, 237, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    pointer-events: all;
  }
  .mobile-nav.is-open { display: block; }
  .mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
  }
  .mobile-nav ul li a {
    display: block;
    padding: 16px 20px;
    font-family: var(--font-display);
    font-size: 15px;
    color: #192b2f;
    border-bottom: 1px solid rgba(25, 43, 47, 0.08);
    transition: opacity 0.15s;
  }
  .mobile-nav ul li:last-child a { border-bottom: none; }
  .mobile-nav ul li a:hover { opacity: 0.6; }

  /* HERO */
  .hero-content { padding-bottom: 80px; }

  /* STATS: 2-col gallery (all 6 tiles, square) */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-overlay { padding: 20px 24px; }
  .stat-num { font-size: 7.5vw; }
  .stat-body { font-size: 16px; }
  .stat-tile--mobile-only { display: block; }
  .stat-tile--desktop-only { display: none; }
  .stat-body { font-size: 14px; }

  /* SPEAKERS */
  .section-speakers { padding: 80px 24px; }
  .speakers-grid { grid-template-columns: 1fr; width: 80%; margin: 0 auto; }

  /* THEME */
  .theme-top { padding: 100px 24px 60px; }
  .theme-left { gap: 25px; }
  .theme-groups { grid-template-columns: 1fr; }
  .theme-video { width: 130%; filter: none; }
  .theme-verse { padding: 37px; padding-top: 150px; }
  .theme-panel { height: 400px; }
  .theme-panel-label { font-size: 9.4vw; }
  .theme-desc { padding: 40px 30px; min-height: auto; }

  /* SCHEDULE */
  .section-schedule { padding: 80px 0; }
  .schedule-wrap { display: flex; flex-flow: wrap; padding-left: 24px; padding-right: 24px; }
  .schedule-spacer { display: none; }
  .schedule-block { width: 100%; }
  .schedule-glance { padding: 36px 28px; max-width: none; }
  .schedule-date { width: 140px; }
  .day-num { font-size: 36px; }
  .pre-conf { padding: 36px 28px; max-width: none; margin-top: 24px; }

  /* PRICING */
  .pricing-photo { background-size: 170%; }
  .pricing-inner { padding: 0px 24px 60px; margin-inline: 0; }
  .pricing-lockup { justify-self: stretch; width: 100%; }
  .price-cards { flex-direction: column; }
  .pricing-dates { display: none; }
  .price-card { width: auto; }

  /* HOTELS */
  .hotels-header { gap: 30px; }
  .hotels-bg { height: 350px; }
  .hotels-inner { padding: 48px 24px 60px; }
  .hotels-grid { gap: 10px; }
  .hotel-card { width: calc(50% - 5px); min-height: auto; padding: 20px 16px; gap: 16px; }
  .hotel-name { font-size: 14px; }
  .hotel-details p { font-size: 13px; }
  .hotel-cta-full { display: none; }
  .hotel-cta-short { display: inline; }

  /* SPONSORS */
  .sponsors-hero-bg { background-position: 20% center; }
  .sponsors-heading-wrap { padding: 0 24px 20px; }
  .sponsors-tiers { padding-bottom: 80px; }
  .sponsors-rail { padding-left: 24px; padding-right: 24px; }
  .sponsors-tier-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .sponsor-logos { justify-content: flex-start; gap: 15px; }
  .sponsor-card { width: auto; min-width: 100px; padding: 20px; }
  .sponsor-card p { font-size: 12px; width: 130px; }
  .sponsor-logo-wrap { height: 75px; width: 118px; }

  /* FAQ */
  .section-faq { padding: 80px 24px; }
  .faq-scroll-wrap { margin-right: -24px; }
  .faq-track-spacer { min-width: 16px; }
  .faq-card { flex: 0 0 300px; }

  /* VOLUNTEER: stack photo above content */
  .section-volunteer { grid-template-columns: 1fr; }
  .volunteer-photo { height: 340px; }
  .volunteer-content { padding: 48px 24px 60px; }

  /* CTA */
  .section-cta { height: 100vh; padding: 80px 0; }
  .cta-box { width: auto; height: auto; padding: 50px 28px; padding-top: 100px; margin: 0 24px; }

  /* FOOTER */
  .site-footer { padding: 48px 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; gap: 20px; }
  .footer-bottom { flex-wrap: wrap; gap: 12px; }
}

/* ── 500px ───────────────────────────────────────────────── */
@media (max-width: 500px) {
  .faq-top { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ── 480px: small mobile ─────────────────────────────────── */
@media (max-width: 480px) {

  /* NAV */
  .nav-pill { padding: 8px; gap: 8px; }

  /* STATS: keep two columns */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-desc { font-size: 21px; }

  /* SPEAKERS */
  .section-speakers { padding: 60px 16px; }
  .speaker-more { padding: 25px; }
  .speaker-more span { font-size: 21px; letter-spacing: 0.1em; }

  /* THEME */
  .theme-top { padding-inline: 16px; }
  .theme-top-inner { gap: 40px; }

  .theme-body { font-size: 16px; }
  .theme-verse p { font-size: 16px; }


  /* SCHEDULE */
  .section-schedule { padding: 60px 0; }
  .schedule-glance { padding: 28px 20px; }
  .schedule-date { width: 120px; }
  .session-time { width: 80px; }
  .session-row { gap: 16px; }
  .pre-conf { padding: 28px 20px; }

  /* STATS */
  .stat-overlay { padding-inline: 16px; }

  /* PRICING */
  .pricing-photo { background-position: center -7%; background-size: 190%; }
  .pricing-inner { padding: 40px 16px 50px; }

  /* HOTELS */
  .hotels-inner { padding: 40px 16px 60px; }

  /* SPONSORS */
  .sponsors-hero { padding: 125px 0 250px; }
  .sponsors-heading-wrap { padding: 0 16px 20px; }
  .sponsors-rail { padding-left: 16px; padding-right: 16px; }

  /* FAQ */
  .section-faq { padding: 80px 16px; }
  .faq-scroll-wrap { margin-right: -16px; }
  .faq-card { flex: 0 0 260px; padding: 30px 24px; }
  .faq-track-spacer { min-width: 24px; }

  /* VOLUNTEER */
  .volunteer-content { padding: 40px 16px; }

  /* CTA */
  .section-cta { padding: 60px 0; }

  /* FOOTER */
  .site-footer { padding: 40px 16px; }
  .footer-top { align-items: center; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}


/* ═══════════════════════════════════════════════════════════
   HEADER RAIL — scroll-driven video header
   ═══════════════════════════════════════════════════════════ */

/* ─── Container & Sticky ─────────────────────────────────── */
.header-rail {
  position: relative;
  height: 180vh; /* header unsticks at 80vh; stats section clear of video before appearing */
}

.header-rail-spacer {
  margin-bottom: calc((720px - 100vh) / 2);
}

.header-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; /* stays above .section-stats as it scrolls up underneath */
}

/* Clip window: animates via --clip-v/h/r set by scroll listener.
   The iframe inside stays full-viewport — only the visible rect changes. */
.video-window {
  position: absolute;
  inset: 0;
  clip-path: inset(var(--clip-v, 0px) var(--clip-h, 0px) round var(--clip-r, 0px));
  will-change: clip-path;
}

/* ─── Video block ─────────────────────────────────────────── */
.header-video-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-block {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Background looping video */
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0a0a;
}

.video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Cover the container regardless of aspect ratio */
  width: max(100%, calc(100vh * 1.7778));
  height: max(100%, calc(100vw * 0.5625));
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
  border: 0;
}

.video-darken {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.36);
  z-index: 1;
}

/* Main playable video (revealed on click) */
/* Tracks the clip-path frame exactly so Vimeo controls stay inside the visible area */
.video-embed {
  position: absolute;
  top: var(--clip-v, 0px);
  left: var(--clip-h, 0px);
  right: var(--clip-h, 0px);
  bottom: var(--clip-v, 0px);
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background: #000; /* prevents white flash if iframe paint lags */
  transition: opacity 0.5s ease;
}

.video-embed.is-active {
  opacity: 1;
  pointer-events: all;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Play button */
.video-play-btn {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  padding: 0;
  line-height: 0;
  transition: opacity 0.4s ease;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Video controls (bottom-right corner) */
.video-controls {
  position: absolute;
  z-index: 5;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.vc-btn {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s;
  padding: 0;
}

.vc-btn:hover {
  background: rgba(255, 255, 255, 0.28);
}

/* ─── Header text content ─────────────────────────────────── */
.header-cont {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: var(--text-opacity, 1);
  transform: translateY(var(--text-y, 0px));
  will-change: opacity, transform;
}

.header-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-logo-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: rgba(255, 255, 255, 0.9);
}

.header-headline {
  font-family: var(--font-serif-hero);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 88px);
  line-height: 1.05;
  color: #fff;
  text-shadow: 0 4px 60px rgba(0, 0, 0, 0.45);
}

.header-date {
  font-family: var(--font-display);
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}


/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-headline {
    font-size: clamp(32px, 8vw, 56px);
  }
  .header-rail-spacer { margin-bottom: calc((300px - 100vh) / 2); }
}

@media (max-width: 480px) {
  .header-date { font-size: 20px; }
  .video-controls {
    bottom: 20px;
    right: 16px;
  }
}

/* ─── Play button: stack SVG + label vertically ─────────────── */
.video-play-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.play-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 12px;
  white-space: nowrap;
}

/* ─── Video overlay fades out when main video plays ─────────── */
.video-overlay {
  transition: opacity 0.6s ease;
}

.video-block.video-playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

/* ─── Block iframe from capturing clicks until video is actively playing ─ */
/* Without this, on a second play attempt the visible iframe swallows the   */
/* click before it reaches videoBlock, so video-playing never gets set.     */
.video-block:not(.video-playing) .video-embed {
  pointer-events: none;
}

/* ─── Whole video clickable in player state ──────────────────────── */
.video-block.in-player-state:not(.video-playing) {
  cursor: pointer;
}

/* ─── Show play btn + controls in player state (not while playing) ── */
.video-block.in-player-state:not(.video-playing) .video-play-btn {
  opacity: 1;
  pointer-events: none; /* clicks handled by videoBlock, not the btn itself */
}

/* ─── Hide play btn when video is actively playing ─────────── */
.video-block.video-playing .video-play-btn {
  opacity: 0;
  pointer-events: none;
}

/* ─── Placeholder video controls bar ────────────────────────── */
/* Tracks the clip-path frame bottom via --clip-v/--clip-h.
   Fades in with in-player-state alongside the play button,
   but is permanently hidden once the video is clicked (controls-dismissed). */
.video-controls {
  position: absolute;
  bottom: calc(var(--clip-v, 0px) + 23px);
  left: calc(var(--clip-h, 0px) + 8px);
  right: calc(var(--clip-h, 0px) + 8px);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 47px;
  padding: 7px;
  cursor: pointer;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

/* Show alongside play button when in player state, before video plays */
.video-block.in-player-state:not(.video-playing):not(.controls-dismissed) .video-controls {
  opacity: 1;
}

/* Permanently hidden once video has been clicked */
.video-block.video-playing .video-controls,
.video-block.controls-dismissed .video-controls {
  opacity: 0;
  pointer-events: none;
}

.video-controls-play {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  background-color: #999183;
  border-radius: 6px;
  width: 57px;
  height: 100%;
}

.video-controls-play img {
  width: 20px;
  height: 20px;
  display: block;
}

.video-controls-timeline {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  background-color: #999183;
  border-radius: 6px;
  height: 100%;
  padding-left: 16px;
  padding-right: 8px;
  min-width: 0;
}

.video-controls-time {
  flex: 1;
  height: 5px;
  background-color: #a7a094;
  border-radius: 10px;
  width: 100%;
}

.video-control-icons {
  height: 18px;
  width: auto;
  flex-shrink: 0;
}

/* ─── Speaker cards: clickable ───────────────────────────────── */
.speaker-card[data-speaker] {
  cursor: pointer;
}

.speaker-card[data-speaker]:hover .speaker-photo::after {
  opacity: 1;
}

/* ─── Speaker modal ──────────────────────────────────────────── */
.speaker-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.speaker-modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.speaker-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.speaker-modal-panel {
  position: relative;
  z-index: 1;
  background: #1e2320;
  width: min(780px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  grid-template-rows: 1fr auto;
}

.modal-photo {
  grid-row: 1 / 3;
  background-size: cover;
  background-position: center top;
  min-height: 420px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e9e9e5;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.22); }

.modal-body {
  padding: 50px 44px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.modal-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  font-style: normal;
  line-height: 1.15;
  color: #e9e9e5;
}

.modal-bio {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: rgba(233, 233, 229, 0.78);
}

.modal-nav {
  padding: 0 44px 40px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
}

.modal-nav-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e9e9e5;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-nav-btn:hover { background: rgba(255, 255, 255, 0.2); }

@media (max-width: 600px) {
  .speaker-modal-panel {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 1fr auto;
  }
  .modal-photo {
    grid-row: 1;
    min-height: 200px;
  }
  .modal-body { padding: 32px 28px 16px; }
  .modal-nav  { padding: 0 28px 32px; }
}
