:root {
  color-scheme: dark;
  --ink: #fff7e8;
  --muted: #d8c8ad;
  --dim: #9b8a74;
  --coal: #120f0d;
  --coal-2: #1e1714;
  --wine: #7b1f2a;
  --wine-2: #a4323f;
  --leaf: #1f5b4c;
  --gold: #d59a45;
  --cream: #f5dfbd;
  --line: rgba(255, 247, 232, 0.16);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(123, 31, 42, 0.28), transparent 30rem),
    linear-gradient(180deg, #0b0908 0%, var(--coal) 42%, #18100e 100%);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(12, 9, 8, 0.9), rgba(12, 9, 8, 0.62));
  border-bottom: 1px solid rgba(255, 247, 232, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(213, 154, 69, 0.56);
  border-radius: 50%;
  background: rgba(123, 31, 42, 0.35);
  color: var(--gold);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

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

.nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  padding: 10px 13px;
}

.nav a:hover {
  background: rgba(255, 247, 232, 0.08);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 247, 232, 0.05);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.84) 0%, rgba(7, 6, 5, 0.58) 34%, rgba(7, 6, 5, 0.1) 68%),
    linear-gradient(180deg, rgba(7, 6, 5, 0.04) 0%, rgba(7, 6, 5, 0.64) 100%),
    url("./assets/hero-standup-dinner.png") center / cover no-repeat;
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 52px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  padding: 14px 22px;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--gold);
  color: #24150b;
}

.button-primary[data-tc-event] {
  min-height: 48px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--gold) !important;
  color: #24150b !important;
  font: inherit !important;
  font-weight: 800 !important;
  padding: 14px 22px !important;
  text-transform: none !important;
}

.button-ghost {
  border: 1px solid rgba(255, 247, 232, 0.28);
  background: rgba(255, 247, 232, 0.06);
  color: var(--ink);
}

.button-wide {
  width: 100%;
}

.hero-facts {
  max-width: 940px;
  margin: 46px 0 0;
}

.hero-facts div {
  min-width: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(18, 15, 13, 0.68);
  padding: 14px 16px;
}

.hero-facts dt {
  color: var(--dim);
  font-size: 12px;
}

.hero-facts dd {
  margin: 3px 0 0;
  font-weight: 800;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--wine);
}

.ticker span {
  padding: 18px clamp(18px, 4vw, 46px);
  border-right: 1px solid rgba(255, 247, 232, 0.18);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.5vw, 34px);
}

.ticker span:last-child {
  border-right: 0;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.host-copy p,
.place-copy p,
.final-cta p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.format-layout,
.comedian-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.format-card,
.comedian-card,
.ticket-panel,
.faq {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 247, 232, 0.075), rgba(255, 247, 232, 0.032));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.format-card {
  padding: 24px;
}

.number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.format-card h3,
.comedian-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.format-card p,
.comedian-card p {
  color: var(--muted);
}

.timing-note {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  border: 1px solid rgba(213, 154, 69, 0.28);
  border-radius: 8px;
  background: rgba(213, 154, 69, 0.08);
  padding: 18px 22px;
}

.timing-note strong {
  color: var(--cream);
  white-space: nowrap;
}

.timing-note span {
  color: var(--muted);
}

.host {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.host-photo {
  display: grid;
  min-height: 520px;
  place-items: end start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(31, 91, 76, 0.14), rgba(123, 31, 42, 0.34)),
    radial-gradient(circle at 55% 25%, rgba(213, 154, 69, 0.44), transparent 9rem),
    linear-gradient(135deg, #221714 0%, #392018 45%, #15100e 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 28px;
}

.host-photo span {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.96;
}

.host-copy blockquote {
  margin: 26px 0;
  border-left: 3px solid var(--gold);
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.35;
  padding-left: 22px;
}

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

.host-stats div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.host-stats strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
}

.host-stats span {
  color: var(--dim);
  font-size: 13px;
}

.comedian-card {
  padding: 16px;
}

.portrait {
  display: grid;
  height: 260px;
  margin-bottom: 18px;
  place-items: end start;
  border-radius: 7px;
  color: rgba(255, 247, 232, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  padding: 18px;
}

.portrait-one {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at 58% 24%, #d59a45, transparent 8rem),
    linear-gradient(135deg, #6d1d27, #1f5b4c);
}

.portrait-two {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at 42% 28%, #e9c983, transparent 8rem),
    linear-gradient(135deg, #1f5b4c, #44201b);
}

.portrait-three {
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.52)),
    radial-gradient(circle at 50% 22%, #c45f3f, transparent 8rem),
    linear-gradient(135deg, #2b1714, #7b1f2a);
}

.comedian-card span {
  display: block;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--gold);
  font-size: 13px;
  padding-top: 14px;
}

.place {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.menu-list {
  display: grid;
  gap: 10px;
}

.menu-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 247, 232, 0.06);
  color: var(--cream);
  padding: 13px 16px;
}

.tickets {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.ticket-panel,
.faq {
  padding: clamp(22px, 3vw, 34px);
}

.ticket-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
  padding-left: 20px;
}

.ticket-list strong {
  color: var(--cream);
}

.ticket-note {
  margin: 14px 0 0;
  color: var(--dim);
  font-size: 13px;
}

.faq h2 {
  margin-bottom: 18px;
  font-size: 38px;
}

.faq-item {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 20px 0;
  text-align: left;
}

.faq-item span {
  display: block;
  font-size: 18px;
  font-weight: 800;
}

.faq-item p {
  display: none;
  margin: 10px 0 0;
  color: var(--muted);
}

.faq-item.is-open p {
  display: block;
}

.final-cta {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto 80px;
  border: 1px solid rgba(213, 154, 69, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(123, 31, 42, 0.76), rgba(31, 91, 76, 0.46)),
    linear-gradient(135deg, rgba(255, 247, 232, 0.08), rgba(255, 247, 232, 0.02));
  padding: clamp(32px, 7vw, 72px);
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 650px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  padding: 28px clamp(18px, 4vw, 48px);
}

.footer a {
  color: var(--cream);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(18, 15, 13, 0.96);
    padding: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    border-radius: 6px;
  }

  .ticker,
  .intro-grid,
  .format-layout,
  .comedian-grid,
  .host,
  .place,
  .tickets {
    grid-template-columns: 1fr;
  }

  .ticker span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 247, 232, 0.18);
  }

  .ticker span:last-child {
    border-bottom: 0;
  }

  .host-photo {
    min-height: 360px;
  }

  .place {
    gap: 24px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(7, 6, 5, 0.18) 0%, rgba(7, 6, 5, 0.24) 38%, rgba(7, 6, 5, 0.84) 78%, rgba(7, 6, 5, 0.98) 100%),
      url("./assets/hero-standup-dinner.png") 62% top / auto 58% no-repeat;
  }

  .hero-content {
    padding-top: 360px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-facts div {
    min-width: 0;
  }

  .section {
    padding: 64px 0;
  }

  .timing-note,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .timing-note strong {
    white-space: normal;
  }

  .host-stats {
    grid-template-columns: 1fr;
  }

  .portrait {
    height: 220px;
  }
}
