/* ============================================================
   Accelerated Serendipity — A JoyOS Lab Experience
   Dark navy + gold luxury aesthetic, matching JoyOS Lab brand
   ============================================================ */

:root {
  /* Dark palette (hero + reserve + key moments) */
  --navy:        #0E1A2E;
  --navy-2:      #14223A;
  --navy-3:      #1B2D49;

  /* Light palette (body content) */
  --cream:       #FAF6EE;
  --cream-2:     #F2EBDB;
  --champagne:   #E8D9B5;

  /* Gold + accents */
  --gold:        #C9A24B;
  --gold-bright: #D9B45A;
  --gold-deep:   #A57A1F;
  --teal:        #5DBDC0;

  /* Text */
  --ink:         #1E1B16;
  --ink-soft:    #3D362C;
  --muted:       #7A6F5E;
  --cream-text:  #F5EFDF;
  --cream-mute:  #B0A99A;

  --error:       #C44536;
  --shadow:      0 8px 32px rgba(14, 26, 46, 0.10);
  --shadow-lift: 0 20px 56px rgba(14, 26, 46, 0.22);
  --shadow-gold: 0 12px 36px rgba(201, 162, 75, 0.32);
  --radius:      14px;
  --radius-lg:   24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
}

a { color: var(--gold-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   BRAND LOGOS (image asset for SJ mark + CSS text for wordmark)
   ============================================================ */
.brand-badge {
  width: 42px;
  height: 42px;
  display: inline-block;
  flex-shrink: 0;
  object-fit: contain;
}

.footer-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

/* CSS-rendered wordmark (transparent — no PNG background) */
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1;
}
.brand-wordmark .bw-joy {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  font-size: 1.7em;
}
.brand-wordmark .bw-os {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--cream-text);
  font-size: 1.45em;
  margin-left: 2px;
}
.brand-wordmark .bw-lab {
  font-family: 'Inter', sans-serif;
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--cream-text);
  margin-left: 8px;
  align-self: end;
  padding-bottom: 4px;
  border-top: 1px solid var(--gold);
  padding-top: 4px;
}

/* ============================================================
   TOP NAV
   ============================================================ */
.top-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  z-index: 100;
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream-text);
  text-decoration: none;
  font-size: 1rem;
}
.brand:hover { text-decoration: none; opacity: 0.92; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--cream-mute);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gold); text-decoration: none; }

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 18px;
  border-radius: 100px;
  letter-spacing: 0.12em !important;
  font-size: 0.72rem !important;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-cta:hover {
  background: var(--gold-bright);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201, 162, 75, 0.18), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(93, 189, 192, 0.08), transparent 50%),
    var(--navy);
  color: var(--cream-text);
  padding: 100px 0 80px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 75, 0.12);
}

/* Zoom gallery photo — visible but blurred + muted, names unreadable */
.hero-gallery {
  position: absolute;
  inset: -30px;
  background-image: url('zoom-gallery.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px) saturate(0.75) brightness(0.9);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}

/* Lighter navy veil — keeps content readable but lets the gallery come through */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(14, 26, 46, 0.10), rgba(14, 26, 46, 0.45) 75%),
    linear-gradient(180deg, rgba(14, 26, 46, 0.20) 0%, rgba(14, 26, 46, 0.55) 100%);
  pointer-events: none;
  z-index: 1;
}

/* subtle noise / grain texture for the dark sections */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.025) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
  z-index: 2;
}

.hero-watermark {
  position: absolute;
  right: -80px;
  bottom: 40px;
  font-size: 14rem;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}
.hero-watermark .wm-joy {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--gold);
}
.hero-watermark .wm-os {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--cream-text);
  letter-spacing: -0.02em;
}
.hero-watermark .wm-lab {
  font-family: 'Inter', sans-serif;
  font-size: 0.32em;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--cream-text);
  margin-left: 14px;
  vertical-align: 0.6em;
}

.hero-inner {
  position: relative;
  z-index: 3;
}

.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 36px;
  position: relative;
}
.kicker::before, .kicker::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 14px;
  opacity: 0.6;
}

.hero-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.75rem, 6vw + 1rem, 6rem);
  line-height: 1.02;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--cream-text);
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero-subtitle {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.4rem, 1.5vw + 1rem, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  margin: 0 0 36px;
  letter-spacing: 0;
  opacity: 0.95;
}

.hero-sub {
  font-size: clamp(1.05rem, 0.8vw + 0.95rem, 1.25rem);
  color: var(--cream-mute);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.hero-sub strong {
  color: var(--cream-text);
  font-weight: 600;
}

/* ---------- HERO CTAs ---------- */
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.cta-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 38px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  letter-spacing: 0.02em;
  border: 1px solid var(--gold);
}
.cta-primary:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(201, 162, 75, 0.42);
}

.cta-ghost {
  display: inline-block;
  background: transparent;
  color: var(--cream-text);
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 32px;
  border-radius: 4px;
  text-decoration: none;
  border: 1px solid rgba(245, 239, 223, 0.32);
  transition: all 0.18s ease;
}
.cta-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

.cta-block {
  display: block;
  text-align: center;
  width: 100%;
}

/* ---------- HERO META PILLS ---------- */
.hero-meta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 75, 0.22);
  color: var(--cream-text);
  padding: 10px 18px;
  border-radius: 100px;
  font-size: 0.92rem;
}

.meta-pill .meta-icon {
  font-size: 1rem;
  color: var(--gold);
}

/* ---------- COUNTDOWN ---------- */
.countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 24px;
  flex-wrap: wrap;
}

.countdown-block {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 75, 0.18);
  color: var(--cream-text);
  border-radius: 6px;
  padding: 14px 18px;
  min-width: 72px;
  text-align: center;
}

.countdown-block span {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1;
  color: var(--gold);
}

.countdown-block small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-mute);
  margin-top: 6px;
}

/* ---------- SEAT COUNTER ---------- */
.seat-counter {
  font-size: 0.9rem;
  color: var(--cream-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.seat-counter strong { color: var(--cream-text); font-weight: 500; }

.seat-counter .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(93, 189, 192, 0.18);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(93, 189, 192, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(93, 189, 192, 0); }
}

/* ============================================================
   SECTION TYPOGRAPHY
   ============================================================ */
.section-number {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin: 0 0 16px;
}
.section-number.light { color: var(--gold); }

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 3.2vw + 1rem, 3.25rem);
  line-height: 1.1;
  font-weight: 400;
  margin: 0 0 24px;
  color: inherit;
  letter-spacing: -0.015em;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ============================================================
   PREMIERE BANNER (between hero and Invitation)
   ============================================================ */
.premiere-banner {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  border-top: 1px solid rgba(201, 162, 75, 0.18);
  border-bottom: 1px solid rgba(201, 162, 75, 0.18);
  padding: 40px 0;
  color: var(--cream-text);
  position: relative;
}

.premiere-content {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.premiere-text { flex: 1; min-width: 0; }

.premiere-waitlist {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 16px 22px;
  border: 1px solid rgba(201, 162, 75, 0.45);
  border-radius: var(--radius);
  background: rgba(201, 162, 75, 0.06);
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  max-width: 220px;
}
.premiere-waitlist:hover {
  background: rgba(201, 162, 75, 0.14);
  border-color: var(--gold);
  text-decoration: none;
  transform: translateY(-2px);
}
.premiere-waitlist .pw-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 600;
}
.premiere-waitlist .pw-cta {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1.2;
}

.inline-link {
  color: var(--gold-deep);
  font-weight: 600;
  border-bottom: 1px solid rgba(165, 122, 31, 0.35);
}
.inline-link:hover {
  border-bottom-color: var(--gold-deep);
  text-decoration: none;
}

.premiere-emoji {
  font-size: 3.4rem;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(201, 162, 75, 0.25));
}

.premiere-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 6px;
}

.premiere-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 1.5vw + 0.8rem, 1.7rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--cream-text);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.premiere-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.premiere-sub {
  font-size: 0.95rem;
  color: var(--cream-mute);
  margin: 0;
  line-height: 1.6;
}
.premiere-sub strong { color: var(--gold-bright); font-weight: 600; }

/* ============================================================
   PROMISE (cream)
   ============================================================ */
.promise {
  padding: 120px 0;
  background: var(--cream);
  text-align: center;
}

/* ============================================================
   EXPERIENCE (dark)
   ============================================================ */
.experience {
  padding: 120px 0;
  background: var(--navy);
  color: var(--cream-text);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.experience::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.022) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
}

.experience .section-title { color: var(--cream-text); }
.experience .section-sub   { color: var(--cream-mute); }

.dice-list {
  list-style: none;
  padding: 0;
  margin: 48px auto 0;
  max-width: 720px;
  display: grid;
  gap: 12px;
  text-align: left;
}

.dice-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 22px 28px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: background 0.2s ease, transform 0.2s ease;
}
.dice-list li:hover {
  background: rgba(201, 162, 75, 0.08);
  transform: translateX(4px);
}

.dice-list .dice {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.dice-list p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--cream-text);
}

.pull-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--cream-mute);
  text-align: center;
  max-width: 720px;
  margin: 64px auto 0;
  padding: 36px 32px;
  border-top: 1px solid rgba(201, 162, 75, 0.25);
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
  line-height: 1.5;
}

.pull-quote strong {
  font-style: normal;
  color: var(--gold);
  display: block;
  margin-top: 16px;
  font-size: 1.65rem;
  font-weight: 500;
}

/* ============================================================
   HOSTS (cream)
   ============================================================ */
.hosts {
  padding: 120px 0;
  background: var(--cream);
  text-align: center;
}

.hosts .section-title { margin-bottom: 64px; }

.host-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  text-align: left;
}

.host-card--reverse {
  grid-template-columns: 1fr 240px;
}

.host-card--reverse .host-photo { order: 2; }
.host-card--reverse .host-bio { order: 1; }

.host-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.host-photo img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--champagne);
  box-shadow: 0 12px 32px rgba(14, 26, 46, 0.12);
}

.host-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin: 0;
}

.host-bio h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.host-title {
  font-size: 0.95rem;
  color: var(--gold-deep);
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}

.host-bio p {
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0 0 14px;
}

.bio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px !important;
  margin-bottom: 24px !important;
}

.bio-links a {
  font-weight: 600;
  color: var(--gold-deep);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.as-seen-in {
  margin-top: 24px;
  padding: 18px 22px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--cream-2);
  box-shadow: var(--shadow);
  display: inline-block;
  max-width: 100%;
}

.as-seen-in img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   ABOUT UTOPIA (dark)
   ============================================================ */
.about-utopia {
  padding: 120px 0;
  background: var(--navy-2);
  color: var(--cream-text);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-utopia::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.02) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
}

.about-utopia .section-title { color: var(--cream-text); }

.about-utopia p {
  font-size: 1.1rem;
  color: var(--cream-mute);
  max-width: 720px;
  margin: 0 auto 18px;
}

/* ============================================================
   PROOF (cream)
   ============================================================ */
.proof {
  padding: 120px 0;
  background: var(--cream-2);
  text-align: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.quote {
  background: white;
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px;
  margin: 0;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  margin: 0 0 18px;
  color: var(--ink);
}

.quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

/* ============================================================
   WHEN / TIMEZONES (dark)
   ============================================================ */
.when {
  padding: 120px 0;
  background: var(--navy);
  color: var(--cream-text);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.when::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.022) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
}

.when .section-title { color: var(--cream-text); }
.when .section-sub   { color: var(--cream-mute); }

.tz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 48px auto 0;
}

.tz-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid rgba(201, 162, 75, 0.18);
  transition: transform 0.18s ease, background 0.18s ease;
  text-align: left;
}
.tz-card:hover { background: rgba(255, 255, 255, 0.07); }

.tz-card.you {
  border: 2px solid var(--gold);
  background: rgba(201, 162, 75, 0.12);
  transform: scale(1.04);
}

.tz-card .tz-region {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.tz-card .tz-city {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream-text);
  margin-bottom: 6px;
}

.tz-card .tz-time {
  font-size: 0.95rem;
  color: var(--cream-text);
}

.tz-card .tz-day {
  font-size: 0.8rem;
  color: var(--cream-mute);
  margin-top: 4px;
}

.tz-card.you .tz-region::after {
  content: ' • YOU';
  color: var(--cream-text);
}

/* ============================================================
   FAQ (cream)
   ============================================================ */
.faq {
  padding: 120px 0;
  background: var(--cream);
  text-align: center;
}

.faq details {
  background: white;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 auto 12px;
  max-width: 760px;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
  border: 1px solid var(--cream-2);
}

.faq summary {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  list-style: none;
  position: relative;
  padding-right: 32px;
}

.faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.6rem;
  color: var(--gold-deep);
  transition: transform 0.2s ease;
  line-height: 1;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ============================================================
   RESERVE / FINAL CTA (dark)
   ============================================================ */
.reserve {
  position: relative;
  padding: 140px 0 140px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 162, 75, 0.22), transparent 55%),
    var(--navy);
  text-align: center;
  color: var(--cream-text);
  overflow: hidden;
}
.reserve::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.022) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
}

.reserve-watermark {
  position: absolute;
  left: -100px;
  bottom: 0;
  font-size: 18rem;
  opacity: 0.05;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
  line-height: 1;
}
.reserve-watermark .wm-joy {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--gold);
}
.reserve-watermark .wm-os {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  color: var(--cream-text);
  letter-spacing: -0.02em;
}
.reserve-watermark .wm-lab {
  font-family: 'Inter', sans-serif;
  font-size: 0.32em;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--cream-text);
  margin-left: 14px;
  vertical-align: 0.6em;
}

.reserve-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  font-weight: 400;
  margin: 0 0 16px;
  color: var(--cream-text);
  letter-spacing: -0.015em;
}
.reserve-title em { font-style: italic; color: var(--gold); }

.reserve-sub {
  font-size: 1.1rem;
  color: var(--cream-mute);
  margin: 0 0 48px;
}

.reserve-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: var(--radius-lg);
  padding: 44px;
  max-width: 560px;
  margin: 0 auto;
  text-align: left;
  backdrop-filter: blur(8px);
}

.reserve-summary {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px dashed rgba(201, 162, 75, 0.32);
}

.reserve-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream-text);
  margin-bottom: 8px;
}

.reserve-row.light {
  font-size: 0.9rem;
  color: var(--cream-mute);
  font-weight: 400;
}

.reserve-row strong {
  color: var(--gold);
  font-size: 1.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
}

.price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.price-stack .price-was {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 600;
}

.price-stack .price-now {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.7rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
  margin-top: 2px;
}
.price-stack .price-now s {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: rgba(176, 169, 154, 0.65);
  font-weight: 400;
  vertical-align: 0.2em;
  margin-right: 4px;
}
.price-stack .price-now strong {
  color: var(--gold);
  font-size: 1.7rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
}

.price-stack .price-tag {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--gold-bright);
  font-style: italic;
  margin-top: 4px;
  max-width: 220px;
}

.reserve-note {
  font-size: 0.85rem;
  color: var(--cream-mute);
  margin: 16px 0 0;
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 56px 0;
  background: var(--navy);
  color: var(--cream-mute);
  text-align: center;
  border-top: 1px solid rgba(201, 162, 75, 0.12);
}

.footer-brand { margin: 0 0 18px; }
.footer p { margin: 0 0 10px; font-size: 0.95rem; }
.footer-fine { font-size: 0.85rem; color: rgba(176, 169, 154, 0.6); margin-top: 16px; }
.footer a { color: var(--gold); }

/* ============================================================
   CONFIRMED PAGE — Lu.ma-style layout on JOYOS Lab dark theme
   ============================================================ */
.page-confirmed {
  background: var(--navy);
  color: var(--cream-text);
}

.container.narrow {
  max-width: 720px;
}

/* ---------- CONFIRMED BANNER (success pill at top) ---------- */
.confirmed-banner {
  padding: 32px 0 0;
  background: var(--navy);
  text-align: center;
}

.confirmed-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(93, 189, 192, 0.10);
  border: 1px solid rgba(93, 189, 192, 0.35);
  color: var(--teal);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.confirmed-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
}

/* ---------- EVENT HEADER ---------- */
.event-header {
  padding: 40px 0 32px;
  background: var(--navy);
}

.event-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 600;
  margin: 0 0 16px;
}

.event-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw + 1rem, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 8px;
  color: var(--cream-text);
  letter-spacing: -0.02em;
}

.event-tag {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  margin: 0 0 28px;
}

.event-meta-row {
  margin-bottom: 28px;
}

.event-date-primary {
  font-size: 1.05rem;
  color: var(--cream-text);
  margin: 0;
  font-weight: 500;
}

.event-date-alt {
  font-size: 0.92rem;
  color: var(--cream-mute);
  margin: 4px 0 0;
}

/* ---------- GOING ROW (avatar stack + count) ---------- */
.going-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(201, 162, 75, 0.18);
}

.going-avatars {
  display: inline-flex;
  align-items: center;
}

.g-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  border: 2px solid var(--navy);
  margin-left: -10px;
}
.g-avatar:first-child { margin-left: 0; }
.g-1 { background: var(--gold-bright); }
.g-2 { background: var(--teal); }
.g-3 {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream-text);
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.going-count {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}
.going-count strong {
  display: block;
  color: var(--cream-text);
  font-weight: 500;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.05rem;
}
.going-sub {
  display: block;
  color: var(--cream-mute);
  font-size: 0.85rem;
  margin-top: 2px;
}

/* ---------- EVENT CARDS (Location, Hosts) ---------- */
.event-cards {
  padding: 24px 0;
  background: var(--navy);
}

.event-card {
  background: var(--navy-2);
  border: 1px solid rgba(201, 162, 75, 0.18);
  border-radius: var(--radius-lg);
  padding: 22px 24px 24px;
  margin-bottom: 16px;
}

.event-card-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cream-mute);
  font-weight: 600;
  margin: 0 0 16px;
}

.event-card-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  text-decoration: none;
  color: inherit;
}
.event-card-row + .event-card-row {
  border-top: 1px solid rgba(201, 162, 75, 0.10);
  margin-top: 8px;
  padding-top: 16px;
}

.event-card-row--link {
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.event-card-row--link:hover { opacity: 0.85; text-decoration: none; }

.event-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(45, 140, 255, 0.12);
}
.event-card-icon svg { display: block; }

.event-card-avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(201, 162, 75, 0.30);
}

.event-card-body {
  flex: 1;
  min-width: 0;
}

.event-card-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream-text);
  margin: 0 0 2px;
  letter-spacing: -0.005em;
}

.event-card-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--cream-mute);
}

.event-card-action {
  flex-shrink: 0;
}

.event-card-status {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--cream-mute);
  background: rgba(255, 255, 255, 0.04);
}
.event-card-status.pending {
  color: var(--gold);
  background: rgba(201, 162, 75, 0.08);
}

.event-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.event-card-link:hover {
  background: rgba(201, 162, 75, 0.15);
  text-decoration: none;
  transform: translateX(2px);
}

/* ---------- "What we'll do" + "Before you join" ---------- */
.what-section,
.prep-section {
  padding: 48px 0 32px;
  background: var(--navy);
}

.what-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--cream-text);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

.what-section p {
  color: var(--cream-mute);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 14px;
}

.prep-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prep-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(201, 162, 75, 0.10);
}
.prep-list li:first-child { border-top: none; }

.prep-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  flex-shrink: 0;
  width: 28px;
}

.prep-list strong {
  display: block;
  color: var(--cream-text);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 1rem;
}

.prep-or {
  color: var(--cream-mute);
  font-size: 0.9rem;
  padding: 0 4px;
}
.prep-list p,
.prep-list div {
  color: var(--cream-mute);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- INVITE-A-FRIEND CARD ---------- */
.invite-section {
  padding: 32px 0 80px;
  background: var(--navy);
}

.invite-card {
  background:
    radial-gradient(ellipse at top, rgba(201, 162, 75, 0.18), transparent 70%),
    var(--navy-2);
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}

.invite-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin: 0 0 8px;
}

.invite-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--cream-text);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.invite-card p {
  color: var(--cream-mute);
  margin: 0 0 24px;
  font-size: 1rem;
}

.invite-card .cta-primary {
  font-size: 0.95rem;
  padding: 14px 28px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 720px) {
  .event-card { padding: 18px 18px 20px; }
  .event-card-row { gap: 12px; }
  .event-card-icon, .event-card-avatar { width: 40px; height: 40px; }
  .event-card-body h3 { font-size: 1.05rem; }
  .event-title { font-size: 2.25rem; }
  .going-row { flex-wrap: wrap; }
  .invite-card { padding: 28px 22px; }
}

/* ============================================================
   INVITE MODAL (Pay It Forward)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.modal[aria-hidden="false"] {
  pointer-events: auto;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 14, 28, 0.78);
  backdrop-filter: blur(6px);
}

.modal-panel {
  position: relative;
  background: var(--navy-2);
  border: 1px solid rgba(201, 162, 75, 0.28);
  border-radius: var(--radius-lg);
  padding: 36px 32px 28px;
  max-width: 480px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  color: var(--cream-text);
  transform: translateY(8px) scale(0.99);
  transition: transform 0.18s ease;
}
.modal[aria-hidden="false"] .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: 0;
  color: var(--cream-mute);
  font-size: 1.6rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream-text);
}

.modal-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin: 0 0 8px;
}

.modal-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--cream-text);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.modal-sub {
  color: var(--cream-mute);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0 0 24px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 600;
  color: var(--cream-text);
}

.form-hint {
  font-weight: 400;
  color: var(--cream-mute);
  letter-spacing: 0;
}

.form-field input,
.form-field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--cream-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 75, 0.22);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(176, 169, 154, 0.55);
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.07);
}
.form-field textarea {
  resize: vertical;
  min-height: 76px;
  font-family: 'Inter', sans-serif;
}

.modal-fineprint {
  font-size: 0.78rem;
  color: var(--cream-mute);
  margin: 8px 0 0;
  text-align: center;
}

/* Success state */
.modal-success {
  text-align: center;
  padding: 12px 0 0;
}

.modal-success-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.modal-success p {
  color: var(--cream-mute);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0 0 24px;
}

.modal-success .cta-ghost {
  font-size: 0.92rem;
  padding: 12px 24px;
}

/* Mobile */
@media (max-width: 540px) {
  .modal { padding: 12px; }
  .modal-panel { padding: 28px 22px 22px; }
  .modal-title { font-size: 1.4rem; }
}

/* ============================================================
   PLACEHOLDER NOTES (DEV — visually obvious, easy to find)
   ============================================================ */
.placeholder-note {
  display: inline-block;
  background: rgba(196, 69, 54, 0.10);
  color: var(--error);
  border: 1px dashed var(--error);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.8rem;
  margin-top: 12px;
  font-style: italic;
}

.placeholder-quote {
  background: rgba(196, 69, 54, 0.05) !important;
  border-left-color: var(--error) !important;
  opacity: 0.8;
}

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 880px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-container { padding: 14px 20px; }
  .container { padding: 0 24px; }
  .brand-badge { width: 36px; height: 36px; }
  .brand-wordmark .bw-joy { font-size: 1.4em; }
  .brand-wordmark .bw-os { font-size: 1.2em; }
  .brand-wordmark .bw-lab { font-size: 0.55em; }

  .hero { padding: 72px 0 60px; }
  .hero-headline { line-height: 1.05; }
  .kicker { font-size: 0.7rem; }
  .kicker::before, .kicker::after { width: 16px; margin: 0 8px; }

  .hero-watermark, .reserve-watermark { font-size: 8rem; }

  .premiere-content {
    flex-direction: column;
    text-align: center;
    gap: 18px;
  }
  .premiere-emoji { font-size: 2.6rem; }
  .premiere-waitlist {
    align-items: center;
    max-width: 100%;
    width: 100%;
  }

  .host-card,
  .host-card--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
    text-align: center;
  }
  .host-card--reverse .host-photo { order: 0; }
  .host-card--reverse .host-bio { order: 1; }
  .host-photo img { margin: 0 auto; }

  .countdown-block { min-width: 60px; padding: 12px 14px; }
  .countdown-block span { font-size: 1.4rem; }

  .reserve-card { padding: 28px 22px; }

  .promise, .experience, .hosts, .about-utopia,
  .proof, .when, .faq, .reserve {
    padding: 72px 0;
  }
}
