:root {
  color-scheme: light;
  --paper: #f5eddc;
  --paper-2: #fff8eb;
  --ink: #191512;
  --muted: #665c52;
  --red: #ef4c36;
  --red-dark: #bd2f22;
  --green: #1f5c47;
  --yellow: #f3bd43;
  --wine: #6d2330;
  --line: rgba(25, 21, 18, 0.2);
  --white-line: rgba(255, 248, 235, 0.28);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

body::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

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

button {
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 10px 34px;
  border-bottom: 1px solid rgba(255, 248, 235, 0.18);
  background: rgba(18, 15, 13, 0.78);
  color: var(--paper-2);
  backdrop-filter: blur(14px);
  transition: background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 15, 13, 0.95);
}

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

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  background: var(--red);
  color: var(--paper-2);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 800;
  transform: rotate(-4deg);
}

.brand-copy strong,
.brand-copy small {
  display: block;
  letter-spacing: 0;
}

.brand-copy strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand-copy small {
  margin-top: 3px;
  color: rgba(255, 248, 235, 0.66);
  font-size: 11px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.nav a {
  position: relative;
  color: rgba(255, 248, 235, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-buy,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  padding: 13px 22px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.header-buy,
.header-buy[data-tc-event] {
  height: 46px !important;
  min-height: 46px !important;
  max-width: 0;
  overflow: hidden;
  visibility: hidden;
  border-radius: 999px !important;
  background: var(--yellow) !important;
  color: var(--ink) !important;
  font: 800 13px/1 var(--sans) !important;
  opacity: 0;
  padding: 11px 0;
  pointer-events: none;
  white-space: nowrap;
  transform: translateX(18px);
  transition:
    max-width 260ms ease,
    opacity 180ms ease,
    padding 260ms ease,
    transform 260ms ease,
    visibility 0s linear 260ms;
}

.header-buy:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-buy:disabled,
.button:disabled {
  cursor: wait;
  opacity: 0.55;
  transform: none;
}

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

.site-header.has-sticky-buy .header-buy:disabled {
  opacity: 0.55;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  align-items: end;
  overflow: hidden;
  background: #211711;
  color: var(--paper-2);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 12, 9, 0.86) 0%, rgba(17, 12, 9, 0.64) 36%, rgba(17, 12, 9, 0.14) 68%, rgba(17, 12, 9, 0.24) 100%),
    linear-gradient(180deg, rgba(17, 12, 9, 0.14) 0%, rgba(17, 12, 9, 0.04) 55%, rgba(17, 12, 9, 0.68) 100%),
    url("/assets/hero-standup-dinner-v3.png") center / cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  display: grid;
  width: min(1220px, calc(100% - 64px));
  grid-template-columns: minmax(0, 1fr) 238px;
  align-items: end;
  gap: 64px;
  margin: 0 auto;
  padding: 138px 0 104px;
}

.hero-copy {
  max-width: 760px;
}

.event-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.event-line i {
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin-bottom: 26px;
  font-family: var(--serif);
  font-size: 88px;
  line-height: 0.85;
  letter-spacing: 0;
}

.hero h1 em,
.section h2 em,
.comedians h2 em,
.place h2 em {
  color: var(--yellow);
  font-weight: 400;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.84);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button-primary,
.button-primary[data-tc-event] {
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--red) !important;
  color: var(--paper-2) !important;
  font: inherit !important;
  font-weight: 900 !important;
  padding: 14px 24px !important;
  text-transform: none !important;
}

.button-primary:hover,
.button-primary[data-tc-event]:hover {
  background: var(--red-dark) !important;
}

.button-light {
  border: 1px solid rgba(255, 248, 235, 0.56);
  background: rgba(18, 15, 13, 0.24);
  color: var(--paper-2);
}

.button-dark {
  background: var(--ink);
  color: var(--paper-2);
}

.ticket-state {
  margin: 12px 0 0;
  color: rgba(255, 248, 235, 0.62);
  font-size: 12px;
}

.hero-date {
  position: relative;
  align-self: center;
  min-height: 316px;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  padding: 22px;
  transform: rotate(2deg);
  box-shadow: 12px 12px 0 var(--red);
}

.hero-date::before {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.hero-date-label,
.hero-date-month {
  display: block;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-date-label {
  max-width: 120px;
  font-size: 11px;
  line-height: 1.2;
}

.hero-date strong {
  display: block;
  margin: 28px 0 0;
  font-family: var(--serif);
  font-size: 116px;
  line-height: 0.74;
}

.hero-date-month {
  margin-top: 16px;
  font-size: 28px;
}

.hero-date-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  border-top: 2px solid var(--ink);
  padding-top: 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-address {
  position: absolute;
  right: 32px;
  bottom: 22px;
  display: block;
  border-left: 3px solid var(--red);
  padding-left: 12px;
  text-align: left;
}

.hero-address span,
.hero-address small {
  display: block;
}

.hero-address span {
  font-weight: 900;
}

.hero-address small {
  color: rgba(255, 248, 235, 0.68);
  font-size: 12px;
}

.promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--red);
  color: var(--paper-2);
}

.promise p {
  margin: 0;
  border-right: 1px solid rgba(255, 248, 235, 0.28);
  font-family: var(--serif);
  font-size: 24px;
  padding: 20px 32px;
  text-align: center;
}

.promise p:last-child {
  border-right: 0;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0;
}

.kicker {
  margin-bottom: 16px;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2,
.comedians h2,
.place h2,
.tickets h2 {
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: 62px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.section h2 em,
.comedians h2 em,
.place h2 em {
  color: var(--red);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
}

.intro h2 {
  margin-bottom: 0;
}

.intro-copy p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid currentColor;
  color: var(--red-dark);
  font-weight: 900;
  padding-bottom: 4px;
}

.program {
  border-top: 1px solid var(--line);
}

.program-step {
  display: grid;
  grid-template-columns: 110px minmax(0, 1.2fr) minmax(260px, 0.7fr);
  align-items: center;
  gap: 34px;
  min-height: 220px;
  border-bottom: 1px solid var(--line);
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
}

.program-step:nth-child(2) {
  background: var(--green);
  color: var(--paper-2);
}

.program-step:nth-child(2) .kicker,
.program-step:nth-child(2) > p {
  color: rgba(255, 248, 235, 0.72);
}

.program-number {
  color: var(--red);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 800;
}

.program-step:nth-child(2) .program-number {
  color: var(--yellow);
}

.program-step h3 {
  max-width: 690px;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1.06;
  letter-spacing: 0;
}

.program-step > p {
  margin-bottom: 0;
  color: var(--muted);
}

.host {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 76px;
  align-items: stretch;
}

.host-poster {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 2px solid var(--ink);
  background:
    linear-gradient(154deg, transparent 0 48%, rgba(25, 21, 18, 0.12) 48% 50%, transparent 50% 100%),
    var(--yellow);
  padding: 28px;
  box-shadow: 16px 16px 0 var(--red);
}

.host-poster::after {
  position: absolute;
  top: -80px;
  right: -52px;
  width: 220px;
  height: 220px;
  border: 28px solid var(--green);
  border-radius: 50%;
  content: "";
}

.host-poster-top {
  position: absolute;
  top: 28px;
  left: 28px;
  max-width: 170px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.host-poster strong {
  font-family: var(--serif);
  font-size: 100px;
  line-height: 0.82;
}

.host-poster strong span {
  color: var(--red);
}

.host-poster small {
  margin: 12px 0 54px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.host-poster b {
  border-top: 2px solid var(--ink);
  font-family: var(--serif);
  font-size: 42px;
  line-height: 0.92;
  padding-top: 18px;
}

.host-copy {
  align-self: center;
}

.host-lead,
.host-copy blockquote {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
}

.host-quote-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: 28px;
  margin: 34px 0;
}

.host-copy blockquote {
  margin: 0;
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  padding-left: 24px;
}

.host-photo {
  position: relative;
  margin: 0 8px 8px 0;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--red);
  transform: rotate(1deg);
}

.host-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 28%;
}

.host-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.host-facts span {
  min-height: 88px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  padding: 18px 14px;
}

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

.host-facts b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 19px;
}

.comedians {
  background: var(--wine);
  color: var(--paper-2);
}

.comedians-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: 50px 90px;
}

.comedians .kicker {
  color: var(--yellow);
}

.comedians h2 {
  margin-bottom: 0;
}

.comedians h2 em {
  color: var(--yellow);
}

.comedians-copy {
  align-self: end;
  margin-bottom: 0;
  color: rgba(255, 248, 235, 0.72);
  font-size: 18px;
}

.comedian-tags {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--white-line);
}

.comedian-tags span {
  display: grid;
  min-height: 112px;
  place-items: center;
  border-right: 1px solid var(--white-line);
  font-family: var(--serif);
  font-size: 21px;
  padding: 16px;
  text-align: center;
}

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

.place {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 760px;
  background: var(--paper-2);
}

.place-image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.place-image span {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 800;
  padding: 12px 18px;
  transform: rotate(-2deg);
}

.place-copy {
  align-self: center;
  max-width: 620px;
  padding: 76px;
}

.place-copy > p:not(.kicker) {
  color: var(--muted);
  font-size: 18px;
}

.place-details {
  margin: 34px 0;
  border-top: 1px solid var(--line);
}

.place-details p {
  display: grid;
  grid-template-columns: 110px 1fr;
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.place-details span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.place-details b {
  font-size: 14px;
}

.place-details b > span {
  color: inherit;
  font-size: inherit;
  text-transform: none;
}

.place-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.tickets {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 42px;
  align-items: center;
  background: var(--green);
  color: var(--paper-2);
  padding: 104px max(24px, calc((100vw - 1180px) / 2));
}

.tickets .kicker {
  color: var(--yellow);
}

.tickets h2 {
  margin-bottom: 20px;
  color: var(--paper-2);
}

.ticket-copy > p:last-child {
  max-width: 480px;
  color: rgba(255, 248, 235, 0.7);
}

.ticket-date {
  display: grid;
  min-height: 330px;
  place-content: center;
  border: 2px solid var(--ink);
  background: var(--yellow);
  color: var(--ink);
  padding: 24px;
  text-align: center;
  transform: rotate(-2deg);
  box-shadow: 14px 14px 0 var(--red);
}

.ticket-date strong {
  font-family: var(--serif);
  font-size: 120px;
  line-height: 0.76;
}

.ticket-date span {
  margin: 18px 0;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-date b {
  border-top: 2px solid var(--ink);
  font-size: 24px;
  padding-top: 14px;
}

.availability {
  display: inline-block;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 248, 235, 0.4);
  border-radius: 999px;
  color: rgba(255, 248, 235, 0.72);
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  text-transform: uppercase;
}

.availability.is-open {
  border-color: var(--yellow);
  color: var(--yellow);
}

.ticket-info dl {
  margin: 0 0 24px;
  border-top: 1px solid var(--white-line);
}

.ticket-info dl div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--white-line);
  padding: 13px 0;
}

.ticket-info dt {
  color: rgba(255, 248, 235, 0.58);
  font-size: 12px;
  text-transform: uppercase;
}

.ticket-info dd {
  font-size: 14px;
  font-weight: 800;
}

.button-full {
  width: 100%;
}

.ticket-fineprint {
  margin: 12px 0 0;
  color: rgba(255, 248, 235, 0.58);
  font-size: 11px;
}

.faq {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary span {
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq details p {
  max-width: 700px;
  margin-bottom: 24px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 150px;
  border-top: 1px solid rgba(255, 248, 235, 0.16);
  background: var(--ink);
  color: var(--paper-2);
  padding: 30px 36px;
}

.site-footer p {
  margin: 0;
  font-family: var(--serif);
  font-size: 19px;
  text-align: center;
}

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

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

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

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .header-buy,
  .nav a::after {
    transition: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav {
    gap: 14px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 36px;
  }

  .hero-date {
    min-height: 284px;
  }

  .hero-date strong {
    font-size: 94px;
  }

  .program-step {
    grid-template-columns: 84px minmax(0, 1fr) 260px;
  }

  .host {
    gap: 48px;
  }

  .place-copy {
    padding: 54px;
  }

  .tickets {
    grid-template-columns: 1fr 230px 1fr;
    gap: 28px;
  }

  .ticket-date {
    min-height: 288px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
    padding: 10px 20px;
  }

  .header-buy {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
    height: 44px !important;
    min-height: 44px !important;
    font: 800 12px/1 var(--sans) !important;
  }

  .nav-toggle {
    display: block;
    grid-column: 4;
    grid-row: 1;
    justify-self: end;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 248, 235, 0.3);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

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

  .nav {
    position: absolute;
    top: 76px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(255, 248, 235, 0.14);
    background: rgba(18, 15, 13, 0.98);
    padding: 12px 20px 18px;
  }

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

  .nav a {
    border-bottom: 1px solid rgba(255, 248, 235, 0.12);
    font-size: 15px;
    padding: 14px 0;
  }

  .hero-content {
    width: min(100% - 36px, 720px);
    grid-template-columns: 1fr 172px;
    gap: 24px;
    padding-bottom: 108px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-date {
    min-height: 236px;
    padding: 16px;
    box-shadow: 8px 8px 0 var(--red);
  }

  .hero-date strong {
    font-size: 72px;
  }

  .hero-date-month {
    font-size: 20px;
  }

  .hero-address {
    right: 18px;
  }

  .promise p {
    font-size: 18px;
    padding: 16px;
  }

  .section h2,
  .comedians h2,
  .place h2,
  .tickets h2 {
    font-size: 48px;
  }

  .intro,
  .host,
  .faq {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 30px;
  }

  .program-step {
    grid-template-columns: 70px 1fr;
  }

  .program-step > p {
    grid-column: 2;
  }

  .host-poster {
    min-height: 520px;
  }

  .host-quote-group {
    grid-template-columns: minmax(0, 1fr) 170px;
  }

  .comedians-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .comedian-tags {
    grid-column: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .comedian-tags span:nth-child(2) {
    border-right: 0;
  }

  .comedian-tags span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--white-line);
  }

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

  .place-image {
    min-height: 520px;
  }

  .place-copy {
    max-width: none;
    padding: 72px 28px;
  }

  .tickets {
    grid-template-columns: 1fr 220px;
  }

  .ticket-info {
    grid-column: 1 / -1;
  }

  .faq {
    gap: 26px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 8px 16px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy {
    max-width: 92px;
    overflow: hidden;
    transition: max-width 240ms ease;
  }

  .site-header.has-sticky-buy .header-buy {
    max-width: 128px;
    gap: 8px;
    padding-inline: 10px;
    font-size: 11px !important;
  }

  .brand-copy small {
    display: none;
  }

  .nav {
    top: 68px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-image {
    background:
      linear-gradient(180deg, rgba(17, 12, 9, 0.16) 0%, rgba(17, 12, 9, 0.08) 31%, rgba(17, 12, 9, 0.68) 58%, rgba(17, 12, 9, 0.96) 100%),
      url("/assets/hero-standup-dinner-v3.png") 69% center / cover no-repeat;
  }

  .hero-content {
    width: calc(100% - 32px);
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 360px 0 104px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .event-line {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 48px;
    line-height: 0.88;
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-date {
    position: absolute;
    top: 92px;
    right: 0;
    width: 148px;
    min-height: 202px;
    padding: 13px;
    box-shadow: 7px 7px 0 var(--red);
  }

  .hero-date::before {
    width: 12px;
    height: 12px;
  }

  .hero-date-label {
    max-width: 86px;
    font-size: 9px;
  }

  .hero-date strong {
    margin-top: 24px;
    font-size: 62px;
  }

  .hero-date-month {
    margin-top: 12px;
    font-size: 18px;
  }

  .hero-date-meta {
    margin-top: 14px;
    font-size: 9px;
    padding-top: 8px;
  }

  .hero-address {
    right: 16px;
    bottom: 18px;
    left: 16px;
  }

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

  .promise p {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 235, 0.28);
    font-size: 17px;
    text-align: left;
  }

  .promise p:last-child {
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 32px);
    padding: 76px 0;
  }

  .section h2,
  .comedians h2,
  .place h2,
  .tickets h2 {
    font-size: 39px;
  }

  .intro-copy p,
  .host-lead,
  .comedians-copy,
  .place-copy > p:not(.kicker) {
    font-size: 16px;
  }

  .program-step {
    grid-template-columns: 48px 1fr;
    gap: 18px;
    min-height: auto;
    padding: 34px 16px;
  }

  .program-number {
    font-size: 38px;
  }

  .program-step h3 {
    font-size: 27px;
  }

  .program-step > p {
    font-size: 14px;
  }

  .host {
    gap: 58px;
  }

  .host-poster {
    min-height: 450px;
    padding: 22px;
    box-shadow: 10px 10px 0 var(--red);
  }

  .host-poster strong {
    font-size: 82px;
  }

  .host-poster b {
    font-size: 35px;
  }

  .host-copy blockquote {
    font-size: 21px;
  }

  .host-quote-group {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .host-photo {
    grid-row: 1;
    width: min(190px, calc(100% - 8px));
    justify-self: start;
  }

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

  .host-facts span {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .comedians-inner {
    width: calc(100% - 32px);
  }

  .comedian-tags {
    grid-template-columns: 1fr;
  }

  .comedian-tags span {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid var(--white-line);
    font-size: 18px;
  }

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

  .place-image {
    min-height: 400px;
  }

  .place-copy {
    padding: 68px 16px;
  }

  .place-details p {
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 12px;
  }

  .place-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .place-actions .button {
    width: 100%;
  }

  .place-actions .text-link {
    align-self: flex-start;
  }

  .tickets {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 76px 16px;
  }

  .ticket-date {
    width: min(260px, calc(100% - 20px));
    min-height: 290px;
    justify-self: center;
    box-shadow: 10px 10px 0 var(--red);
  }

  .ticket-info {
    grid-column: auto;
  }

  .faq summary {
    font-size: 19px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding: 30px 16px;
  }

  .site-footer p {
    display: none;
  }
}
