: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;
}

[hidden] {
  display: none !important;
}

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);
  transition: background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(12, 9, 8, 0.96);
}

.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);
}

.header-buy,
.header-buy[data-tc-event] {
  display: inline-flex;
  width: auto !important;
  height: 44px !important;
  min-height: 44px !important;
  max-width: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  overflow: hidden;
  visibility: hidden;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--gold) !important;
  color: #24150b !important;
  cursor: pointer;
  font: 800 12px/1 Inter, ui-sans-serif, system-ui, sans-serif !important;
  opacity: 0;
  padding: 0 !important;
  pointer-events: none;
  white-space: nowrap;
  transform: translateX(14px);
  transition: max-width 240ms ease, opacity 180ms ease, padding 240ms ease, transform 240ms ease, visibility 0s linear 240ms;
}

.site-header.has-sticky-buy .header-buy {
  max-width: 148px;
  visibility: visible;
  opacity: 1;
  padding: 0 16px !important;
  pointer-events: auto;
  transform: none;
  transition-delay: 0s;
}

.header-buy:disabled {
  cursor: wait;
  opacity: 0.55;
}

.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;
}

.ticket-state {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--dim);
  font-size: 13px;
}

.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;
}

.format-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  margin-bottom: 34px;
}

.number,
.format-word {
  display: inline-flex;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.format-word {
  color: var(--cream);
  text-align: right;
}

.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(420px, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.host-photo {
  position: relative;
  min-height: 0;
  aspect-ratio: 1.5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #061323;
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-top: 72px;
}

.host-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.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: block;
}

.place-copy {
  max-width: 880px;
  margin-bottom: 38px;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.food-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 247, 232, 0.08), rgba(255, 247, 232, 0.035));
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.food-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background-repeat: no-repeat;
  background-size: cover;
}

.food-card-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(9, 7, 6, 0.28));
  content: "";
}

.food-hachapuri {
  background-image: url("./assets/menu-hachapuri-v1.jpg?v=2");
  background-position: center 54%;
}

.food-khinkali {
  background-image: url("./assets/menu-khinkali-v1.jpg?v=2");
  background-position: center 38%;
}

.food-shashlik {
  background-image: url("./assets/menu-shashlik-v1.jpg?v=2");
  background-position: center 48%;
}

.food-card-copy {
  padding: 18px 20px 20px;
}

.food-card-copy span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.food-card-copy h3 {
  margin: 0;
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.menu-button {
  width: fit-content;
  margin-top: 22px;
}

.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);
}

.footer-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.admin-link {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 247, 232, 0.28);
  border-radius: 6px;
  background: var(--wine);
  transition: transform 180ms ease, border-color 180ms ease;
}

.admin-link:hover,
.admin-link:focus-visible {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.admin-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .header-buy {
    grid-column: 2;
    grid-row: 1;
  }

  .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;
  }

  .host-photo {
    margin-top: 0;
  }

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

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

  .place {
    gap: 24px;
  }
}

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

  .brand small {
    display: none;
  }

  .brand-copy {
    max-width: 108px;
    overflow: hidden;
  }

  .site-header.has-sticky-buy .header-buy {
    max-width: 122px;
    padding: 0 10px !important;
    font-size: 11px !important;
  }

  .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;
  }

  .food-grid {
    grid-template-columns: 1fr;
  }

  .food-card-image {
    aspect-ratio: 16 / 10;
  }

  .menu-button {
    width: 100%;
  }

  .footer-actions {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 390px) {
  .site-header {
    gap: 7px;
    padding-inline: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy {
    max-width: 96px;
  }

  .site-header.has-sticky-buy .header-buy {
    max-width: 116px;
    padding-inline: 8px !important;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }
}
