:root {
  /* Editorial Clubhouse palette -- deep forest green, antique gold, warm
     cream. Matches the original brand direction (client/src/index.css). */
  --bg: oklch(0.16 0.035 150);
  --bg-deep: oklch(0.13 0.03 150);
  --gold: oklch(0.75 0.11 85);
  --gold-soft: oklch(0.82 0.11 85);
  --fg: oklch(0.96 0.01 85);
  --muted: oklch(0.96 0.01 85 / 60%);
  --card-bg: oklch(0.13 0.03 150);
  --border: oklch(0.75 0.11 85 / 12%);
}

* { box-sizing: border-box; }

body {
  font-family: "DM Sans", -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--fg);
  margin: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 0.5rem;
}

a { color: var(--gold-soft); }

main { max-width: 960px; margin: 0 auto; padding: 0 1.5rem 4rem; }

/* Breaks a section out of main's centered max-width to go full-bleed edge to edge */
.full-bleed {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-deep);
}
.nav .brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.brand-mark { width: 26px; height: 26px; object-fit: contain; }
.footer-mark { width: 32px; height: 32px; object-fit: contain; opacity: 0.7; margin-bottom: 0.75rem; }
.nav nav a {
  margin-left: 1.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav nav a:hover { color: var(--gold-soft); }
.nav-cta {
  border: 1px solid var(--gold);
  padding: 0.4rem 0.9rem !important;
  border-radius: 2px;
  color: var(--gold-soft) !important;
}

section { margin: 6rem 0; }

.hero { text-align: center; padding-top: 4rem; }
.hero-small { padding-top: 3rem; }
.hero-photo {
  min-height: 92vh;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  margin-top: 0;
  margin-bottom: 6rem;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero h1 { font-size: clamp(3rem, 8vw, 6rem); margin-bottom: 1rem; font-weight: 500; }
.tagline { font-size: 1.15rem; color: var(--muted); font-style: italic; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.cta {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border: 1px solid var(--gold);
}
.cta:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.cta-ghost {
  background: transparent;
  color: var(--gold-soft);
  border: 1px solid var(--gold);
}
.cta-ghost:hover { background: oklch(0.75 0.11 85 / 10%); }
.cta-disabled { opacity: 0.6; }

.stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.stat { flex: 1; min-width: 100px; }
.stat-num {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: var(--gold-soft);
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.section-lede { color: var(--muted); max-width: 640px; }

.timeline { list-style: none; padding: 0; margin: 2rem 0 0; }
.timeline li {
  display: flex;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}
.timeline .time {
  flex: 0 0 120px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.timeline strong { display: block; margin-bottom: 0.3rem; }
.timeline p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.day-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.day-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 4px;
}

.venue { margin: 6rem 0; }
.venue-photo {
  display: block;
  width: 100vw;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  margin-bottom: 3rem;
}
.venue-copy { text-align: center; max-width: 640px; margin: 0 auto; }
.venue-copy .section-lede { margin: 0 auto; }

.purpose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.purpose-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
}
.purpose-copy .eyebrow { margin-bottom: 0.75rem; }

.audience-grid, .tier-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.audience-card, .tier-card, .team-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
}
.audience-card h3 { font-size: 1.15rem; margin: 0; }

.featured {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 3.5rem 2rem;
  margin-top: -2rem;
}
.featured h2 { font-size: 2.5rem; }
.featured .section-lede { margin: 0 auto 2rem; }

.reserve {
  text-align: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3rem 2rem;
}
.reserve .section-lede { margin: 0 auto 1.5rem; }
.spots-remaining { color: var(--gold-soft); font-size: 0.95rem; margin-bottom: 0.25rem; }
.price { font-family: "Cormorant Garamond", serif; font-size: 2rem; margin: 0.25rem 0 1.5rem; }
.price .muted { font-size: 1rem; }

.team-card .role { color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 0.2rem 0 0.75rem; }

.partner-teaser { text-align: center; }

.tier-card h3 { font-size: 1.2rem; }
.tier-price { font-family: "Cormorant Garamond", serif; font-size: 1.6rem; color: var(--gold-soft); margin: 0.25rem 0; }
.tier-available { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.75rem; }
.tier-blurb { font-size: 0.9rem; color: var(--muted); margin: 0; }

.inquiry-form {
  display: grid;
  gap: 1.25rem;
  max-width: 520px;
  margin-top: 2rem;
}
.inquiry-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--fg);
  padding: 0.65rem 0.8rem;
  font-family: inherit;
  font-size: 0.95rem;
}
.inquiry-form button { justify-self: start; cursor: pointer; }

.package-select {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1.25rem 1.25rem;
  margin: 0;
}
.package-select legend {
  padding: 0 0.4rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.package-option {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  color: var(--fg) !important;
  font-size: 0.95rem;
}
.package-option input { width: auto; }

.reserve-status { text-align: center; margin: 2rem 0; }
.notice {
  background: oklch(0.75 0.11 85 / 12%);
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  max-width: 480px;
  margin: 0 auto 1rem;
}

.confirm { text-align: center; padding-top: 3rem; }
.confirm h1 { font-size: 2.5rem; }

.muted { color: var(--muted); }
.small { font-size: 0.8rem; }

.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}
.footer-brand { font-family: "Cormorant Garamond", serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.site-footer p { margin: 0.2rem 0; }

@media (max-width: 800px) {
  .day-layout, .purpose { grid-template-columns: 1fr; }
  .day-photo { aspect-ratio: 16 / 9; order: -1; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-photo { min-height: 70vh; }
  .nav { flex-direction: column; gap: 0.75rem; }
  .nav nav a { margin: 0 0.6rem; }
  .timeline li { flex-direction: column; gap: 0.3rem; }
}
