:root {
  color-scheme: light;
  --ink: #16120f;
  --ink-soft: #453b32;
  --paper: #fff6e8;
  --paper-deep: #f0dcc0;
  --cream: #ffe8bd;
  --gold: #e7ac42;
  --amber: #d77832;
  --brick: #9f3d32;
  --teal: #28756f;
  --olive: #566b3f;
  --plum: #4b3047;
  --line: rgba(22, 18, 15, 0.16);
  --shadow: 0 18px 42px rgba(22, 18, 15, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(calc(100% - 32px), 1180px);
  min-height: 56px;
  padding: 8px;
  border: 1px solid rgba(255, 246, 232, 0.22);
  border-radius: var(--radius);
  background: rgba(22, 18, 15, 0.72);
  color: var(--paper);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.26);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 6px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark__glyph {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 900;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2vw, 22px);
  min-width: 0;
}

.site-nav a,
.header-action {
  border-radius: 6px;
  color: rgba(255, 246, 232, 0.86);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a {
  padding: 8px 4px;
}

.header-action {
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 82svh;
  overflow: hidden;
  color: var(--paper);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(22, 18, 15, 0.9) 0%, rgba(22, 18, 15, 0.58) 38%, rgba(22, 18, 15, 0.12) 74%),
    linear-gradient(0deg, rgba(22, 18, 15, 0.86) 0%, rgba(22, 18, 15, 0) 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 36px, 1180px);
  margin: 0 auto;
  padding: 118px 0 102px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: var(--brick);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 9vw, 7.25rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero__copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 246, 232, 0.88);
  font-size: 1.13rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
.date-tab:focus-visible,
.time-pill:focus-visible,
.film-card:focus-visible,
.seat:focus-visible {
  outline: 3px solid rgba(40, 117, 111, 0.45);
  outline-offset: 3px;
}

.button--primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}

.button--primary:hover {
  background: #f1bb55;
}

.button--secondary {
  border-color: rgba(255, 246, 232, 0.4);
  background: rgba(255, 246, 232, 0.1);
  color: var(--paper);
}

.tonight-strip {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 246, 232, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 246, 232, 0.18);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.tonight-strip span,
.tonight-strip strong {
  min-height: 46px;
  padding: 13px 16px;
  background: rgba(22, 18, 15, 0.66);
  font-size: 0.92rem;
  white-space: nowrap;
}

.program-band,
.events-band {
  background:
    radial-gradient(circle at 82% 22%, rgba(40, 117, 111, 0.14), transparent 32%),
    var(--paper);
}

.program-band {
  padding: 82px 0 96px;
}

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

.section-shell--wide {
  width: min(calc(100% - 36px), 1240px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading--split {
  align-items: start;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-lede {
  max-width: 430px;
  margin: 10px 0 0;
  color: rgba(255, 246, 232, 0.75);
  font-size: 1rem;
}

.date-tabs {
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
}

.date-tab {
  min-width: 70px;
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 800;
}

.date-tab.is-active {
  background: var(--ink);
  color: var(--paper);
}

.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  align-items: start;
  gap: 22px;
}

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

.film-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-height: 244px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 34px rgba(22, 18, 15, 0.08);
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.film-card:hover,
.film-card.is-selected {
  border-color: rgba(159, 61, 50, 0.54);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.poster {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 244px;
  padding: 18px 14px;
  color: var(--paper);
  isolation: isolate;
  overflow: hidden;
}

.poster::before,
.poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.poster::after {
  opacity: 0.9;
}

.poster span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  font-weight: 900;
  line-height: 0.94;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.38);
}

.poster--glass::before {
  background: linear-gradient(145deg, #17211e, #28756f 46%, #f0dcc0 47%, #9f3d32 70%, #1b1614);
}

.poster--glass::after {
  background:
    linear-gradient(78deg, transparent 0 38%, rgba(255, 246, 232, 0.7) 39% 41%, transparent 42%),
    radial-gradient(circle at 32% 25%, rgba(231, 172, 66, 0.9), transparent 22%);
}

.poster--train::before {
  background: linear-gradient(160deg, #4b3047 0 28%, #d77832 29% 58%, #ffe8bd 59% 61%, #16120f 62%);
}

.poster--train::after {
  background:
    repeating-linear-gradient(90deg, rgba(22, 18, 15, 0.56) 0 7px, transparent 7px 19px),
    radial-gradient(circle at 74% 18%, rgba(255, 232, 189, 0.7), transparent 21%);
}

.poster--maps::before {
  background: linear-gradient(155deg, #fff6e8, #28756f 42%, #1d2b29 43% 100%);
}

.poster--maps::after {
  background:
    repeating-radial-gradient(circle at 30% 30%, transparent 0 18px, rgba(255, 246, 232, 0.25) 19px 21px),
    linear-gradient(0deg, rgba(22, 18, 15, 0.62), transparent 62%);
}

.poster--signal::before {
  background: linear-gradient(180deg, #16120f 0 24%, #566b3f 25% 42%, #9f3d32 43% 60%, #28756f 61% 78%, #16120f 79%);
}

.poster--signal::after {
  background:
    repeating-linear-gradient(0deg, rgba(255, 246, 232, 0.1) 0 2px, transparent 2px 7px),
    radial-gradient(circle at 50% 50%, rgba(231, 172, 66, 0.6), transparent 20%);
}

.film-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
  padding: 18px;
}

.film-card__meta {
  margin: 0 0 6px;
  color: var(--brick);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.film-card h3,
.member-card h3,
.event-row h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.film-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.film-card p:not(.film-card__meta) {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.time-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.time-pill {
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 246, 232, 0.76);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 850;
}

.time-pill.is-active {
  border-color: transparent;
  background: var(--teal);
  color: var(--paper);
}

.booking-panel {
  position: sticky;
  top: 94px;
  padding: 20px;
  border: 1px solid rgba(22, 18, 15, 0.18);
  border-radius: var(--radius);
  background: #fffaf1;
  box-shadow: var(--shadow);
}

.booking-panel__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.booking-panel__header h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.ticket-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.ticket-summary span {
  min-width: 0;
  overflow: hidden;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.screen-line {
  margin: 22px 16px 16px;
  padding-top: 8px;
  border-top: 6px solid var(--gold);
  color: var(--ink-soft);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.seat-map {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 7px;
}

.seat {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(22, 18, 15, 0.14);
  border-radius: 6px 6px 2px 2px;
  background: var(--paper-deep);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 900;
}

.seat.is-selected {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--paper);
}

.seat.is-sold {
  background: rgba(22, 18, 15, 0.18);
  color: rgba(22, 18, 15, 0.34);
  cursor: not-allowed;
}

.seat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 18px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.seat-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.legend-seat {
  width: 13px;
  height: 13px;
  border-radius: 4px 4px 1px 1px;
  border: 1px solid rgba(22, 18, 15, 0.16);
}

.legend-seat--open {
  background: var(--paper-deep);
}

.legend-seat--selected {
  background: var(--teal);
}

.legend-seat--sold {
  background: rgba(22, 18, 15, 0.18);
}

.checkout-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.checkout-bar span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.83rem;
  font-weight: 800;
}

.checkout-bar strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.checkout-button {
  min-width: 120px;
}

.checkout-button.is-confirmed {
  background: var(--olive);
  color: var(--paper);
}

.membership-band {
  padding: 88px 0 96px;
  background:
    linear-gradient(180deg, rgba(22, 18, 15, 0.94), rgba(22, 18, 15, 0.88)),
    linear-gradient(120deg, #28756f, #9f3d32);
  color: var(--paper);
}

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

.member-card {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 246, 232, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 246, 232, 0.08);
}

.member-card--featured {
  background: var(--gold);
  color: var(--ink);
}

.member-card__label {
  margin: 0 0 34px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.member-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.7rem;
}

.member-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.member-card li {
  padding-top: 10px;
  border-top: 1px solid currentColor;
  color: inherit;
  opacity: 0.84;
}

.events-band {
  padding: 84px 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 2px solid var(--brick);
  color: var(--brick);
  font-weight: 900;
  text-decoration: none;
}

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

.event-row {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) 92px;
  gap: 22px;
  align-items: center;
  min-height: 116px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.event-row time {
  color: var(--brick);
  font-weight: 950;
}

.event-row p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.event-row > span {
  justify-self: end;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 26px max(18px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: rgba(255, 246, 232, 0.78);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer strong {
  color: var(--paper);
}

@media (max-width: 1050px) {
  .program-layout {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    position: relative;
    top: auto;
  }

  .seat-map {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 20px), 1180px);
  }

  .brand-mark span:last-child {
    max-width: 140px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    display: none;
  }

  .header-action {
    padding: 9px 12px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(22, 18, 15, 0.86), rgba(22, 18, 15, 0.38)),
      linear-gradient(0deg, rgba(22, 18, 15, 0.9) 0%, rgba(22, 18, 15, 0.12) 58%);
  }

  .hero__image {
    object-position: 52% center;
  }

  .hero__content {
    width: min(100% - 28px, 1180px);
    padding: 106px 0 112px;
  }

  .hero h1 {
    font-size: 3.85rem;
  }

  .hero__copy {
    font-size: 1rem;
  }

  .tonight-strip {
    right: 14px;
    bottom: 14px;
    left: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tonight-strip span,
  .tonight-strip strong {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.82rem;
  }

  .program-band,
  .membership-band,
  .events-band {
    padding: 62px 0;
  }

  .section-heading,
  .section-heading--split {
    display: grid;
    align-items: start;
  }

  .date-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .date-tab {
    min-width: 76px;
  }

  .film-grid,
  .member-grid {
    grid-template-columns: 1fr;
  }

  .film-card {
    grid-template-columns: 108px minmax(0, 1fr);
    min-height: 224px;
  }

  .poster {
    min-height: 224px;
    padding: 14px 10px;
  }

  .poster span {
    font-size: 1rem;
  }

  .film-card__body {
    padding: 16px;
  }

  .film-card h3 {
    font-size: 1.28rem;
  }

  .seat-map {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .checkout-bar {
    grid-template-columns: 1fr;
  }

  .checkout-button {
    width: 100%;
  }

  .event-row {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
  }

  .event-row > span {
    justify-self: start;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    gap: 8px;
    padding-right: 4px;
  }

  .brand-mark span:last-child {
    max-width: 116px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .film-card {
    grid-template-columns: 1fr;
  }

  .poster {
    min-height: 160px;
  }

  .ticket-summary {
    grid-template-columns: 1fr;
  }
}
