:root {
  --red: #e4060c;
  --red-deep: #a60510;
  --ink: #0b0b0c;
  --warm-black: #141312;
  --charcoal: #1c1b1a;
  --paper: #f7f4ef;
  --paper-2: #ece5d9;
  --paper-3: #c9c2b5;
  --white: #ffffff;
  --gray: #6e6a66;
  --gray-2: #8f8a82;
  --hair: #dad3c6;
  --hair-dark: #302d2a;
  --open: #1f8a4c;
  --display: "Anton", Impact, "Arial Black", "Arial Narrow", sans-serif;
  --sans: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "Space Mono", "Courier New", monospace;
  --max: 1160px;
  --gutter: clamp(18px, 4vw, 44px);
  --header-h: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(0, 0, 0, 0.32) 0 1px, transparent 1.2px),
    radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1.2px);
  background-size: 19px 19px, 23px 23px;
  mix-blend-mode: multiply;
}

body.drawer-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 10000;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 13px;
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section {
  padding: clamp(58px, 8vw, 104px) 0;
}

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

.section--paper {
  background: var(--paper);
}

.section--neutral {
  background: var(--paper-3);
}

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 0;
}

.section-kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}

.section-intro {
  max-width: 64ch;
  color: inherit;
  opacity: 0.82;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 2px solid currentColor;
  border-radius: 0;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: inherit;
  line-height: 1.1;
}

.btn--red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.btn--ink {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.btn--paper {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
}

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

.announcement {
  background: var(--red);
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.announcement[hidden] {
  display: none;
}

.announcement__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 8px var(--gutter);
}

.announcement a {
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 11, 12, 0.96);
  color: var(--paper);
  border-bottom: 1px solid var(--hair-dark);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 110px;
  text-decoration: none;
}

.brand-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 2px solid var(--ink);
  padding: 4px 7px;
  box-shadow: 4px 4px 0 var(--red);
}

.brand-card img {
  width: 122px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a {
  text-decoration: none;
  color: #d8d2c8;
}

.primary-nav a:hover,
.primary-nav a[aria-current="true"] {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--hair-dark);
  background: transparent;
  color: var(--paper);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: none;
  background: var(--red);
  color: var(--white);
}

.mobile-drawer[data-open="true"] {
  display: block;
}

.mobile-drawer__panel {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 18px;
}

.mobile-drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-close {
  width: 48px;
  height: 48px;
  border: 2px solid var(--white);
  background: transparent;
  color: var(--white);
  font-family: var(--mono);
  font-size: 24px;
  line-height: 1;
}

.mobile-drawer nav {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 28px 0;
}

.mobile-drawer a {
  display: block;
  padding: 6px 0;
  font-family: var(--display);
  font-size: clamp(42px, 14vw, 78px);
  line-height: 0.94;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-drawer .drawer-sub {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.status-ticker {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #cfc8bd;
  border-bottom: 1px solid var(--hair-dark);
  border-top: 1px solid var(--hair-dark);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-ticker__viewport {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.status-ticker__track {
  display: block;
  width: auto;
  white-space: normal;
}

.status-ticker strong,
.status-ticker__item--state {
  color: var(--red);
}

.status-ticker__group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  min-height: 34px;
  padding: 7px 0;
  white-space: normal;
}

.status-ticker__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 2px 0;
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
}

.status-ticker__item:hover {
  color: var(--paper);
  text-decoration: underline;
}

.status-ticker__item:focus-visible {
  color: var(--paper);
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.status-ticker__item + .status-ticker__item::before {
  content: "\00b7";
  display: inline-block;
  margin: 0 13px;
  color: var(--red);
  text-decoration: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(228, 6, 12, 0.28), transparent 23%),
    radial-gradient(#232120 1.4px, transparent 1.7px);
  background-size: auto, 11px 11px;
  opacity: 0.62;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.85fr);
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  min-height: min(760px, calc(100vh - var(--header-h)));
  padding: clamp(34px, 6vw, 78px) 0 clamp(40px, 7vw, 88px);
}

.hero__place {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
}

.hero-status {
  width: min(100%, 390px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  margin: 0 0 18px;
  padding: 12px 14px;
  border: 2px solid var(--hair-dark);
  background: rgba(11, 11, 12, 0.92);
  color: var(--paper);
  box-shadow: 0 0 0 1px rgba(247, 244, 239, 0.08), 8px 8px 0 rgba(228, 6, 12, 0.42);
}

.hero-status__dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--gray-2);
  box-shadow: 0 0 16px rgba(143, 138, 130, 0.45);
}

.hero-status__state {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-status__detail {
  grid-column: 2;
  color: #d8d2c8;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-status__detail a {
  color: var(--paper);
  font-weight: 700;
}

.hero-status.is-open {
  border-color: rgba(31, 138, 76, 0.88);
  box-shadow: 0 0 22px rgba(31, 138, 76, 0.34), 8px 8px 0 rgba(31, 138, 76, 0.34);
}

.hero-status.is-open .hero-status__dot {
  background: var(--open);
  box-shadow: 0 0 18px rgba(31, 138, 76, 0.78);
}

.hero-status.is-closed {
  border-color: rgba(228, 6, 12, 0.84);
  box-shadow: 0 0 22px rgba(228, 6, 12, 0.28), 8px 8px 0 rgba(228, 6, 12, 0.42);
}

.hero-status.is-closed .hero-status__dot {
  background: var(--red);
  box-shadow: 0 0 18px rgba(228, 6, 12, 0.72);
}

.hero-status.is-unknown {
  border-color: var(--gray-2);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(72px, 8.6vw, 128px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.84;
  text-transform: uppercase;
  margin: 0;
  max-width: 10.5ch;
}

.hero h1 span {
  color: var(--red);
}

.hero-title__break--mobile {
  display: none;
}

.hero__subhead {
  max-width: 12ch;
  margin: 12px 0 0;
  font-family: var(--display);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--paper);
}

.hero__subhead span {
  color: var(--red);
}

.hero__copy {
  max-width: 42ch;
  margin: 18px 0 0;
  color: #d8d2c8;
  font-size: clamp(16px, 1.6vw, 20px);
}

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

.hero__side {
  display: grid;
  gap: 16px;
}

.paper-card {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 12px 14px 0 rgba(228, 6, 12, 0.85);
}

.paper-card::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 24px;
  width: 90px;
  height: 24px;
  background: rgba(255, 246, 220, 0.86);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.22);
  transform: rotate(-5deg);
}

.tonight-card {
  padding: 20px;
}

.tonight-card__top,
.tonight-card__meta,
.tonight-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tonight-card__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-deep);
}

.status-word {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}

.status-dot--open {
  background: var(--open);
}

.tonight-card h2,
.tonight-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.9;
  text-transform: uppercase;
  margin: 10px 0 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 4px 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag--ink {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.tonight-card__footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--hair);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red-deep);
}

.tonight-card__updated {
  color: var(--gray);
  font-size: 9px;
}

.hero-photo {
  margin: 0;
  max-width: 440px;
  transform: rotate(1.2deg);
}

.hero-photo__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--ink);
  background: var(--warm-black);
  box-shadow: 12px 14px 0 rgba(228, 6, 12, 0.85);
}

.hero-photo__frame::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 24px;
  z-index: 3;
  width: 88px;
  height: 21px;
  background: rgba(255, 246, 220, 0.78);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.24);
  transform: rotate(-5deg);
  pointer-events: none;
}

.hero-photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo figcaption {
  display: inline-block;
  margin-top: 12px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tonight-section {
  margin-top: -36px;
  position: relative;
  z-index: 5;
}

.tonight-section .paper-card {
  max-width: 760px;
  margin-inline: auto;
  box-shadow: 10px 10px 0 var(--ink);
}

.weekly-wall {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(20px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--red);
}

.weekly-wall::before,
.panel-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#302d2a 1.2px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: 0.28;
  pointer-events: none;
}

.weekly-wall > * {
  position: relative;
}

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

.event-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid var(--hair-dark);
  background: var(--charcoal);
  color: var(--paper);
}

.event-card.is-active {
  border-color: var(--red);
  border-top-width: 4px;
}

.event-card.is-featured {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.event-card.is-closed {
  background: var(--warm-black);
}

.event-card__date {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a49e95;
}

.event-card.is-active .event-card__date,
.event-card.is-featured .event-card__date {
  color: currentColor;
  font-weight: 700;
}

.event-card__title {
  flex: 1;
  margin: 13px 0 10px;
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
}

.event-card.is-closed .event-card__title {
  display: grid;
  place-items: center;
  transform: rotate(-5deg);
  border: 2px solid var(--red);
  color: var(--red);
  padding: 8px;
  align-self: center;
}

.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}

.event-card__meta span {
  border: 1px solid currentColor;
  padding: 2px 5px;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.event-card__foot {
  border-top: 1px solid currentColor;
  padding-top: 8px;
  color: inherit;
  opacity: 0.82;
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.photo-stack {
  display: grid;
  gap: 12px;
}

.experience-media {
  margin: 0;
  transform: rotate(-1.4deg);
}

.experience-media figcaption {
  display: inline-block;
  margin-top: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 6px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.experience-video {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--warm-black);
  box-shadow: 12px 12px 0 var(--red);
}

.experience-video::before,
.gallery-item::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 24px;
  z-index: 3;
  width: 88px;
  height: 21px;
  background: rgba(255, 246, 220, 0.78);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.24);
  transform: rotate(-5deg);
  pointer-events: none;
}

.experience-video video,
.experience-video .video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.experience-video .video-fallback {
  opacity: 0;
  transition: opacity 180ms ease;
}

.experience-video[data-video-state="unavailable"] video {
  opacity: 0;
}

.experience-video[data-video-state="unavailable"] .video-fallback {
  opacity: 1;
}

.video-toggle {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  min-width: 44px;
  min-height: 44px;
  border: 2px solid var(--paper);
  background: rgba(11, 11, 12, 0.88);
  color: var(--paper);
  padding: 9px 11px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-toggle[hidden] {
  display: none;
}

.video-status {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.placeholder-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--paper-2);
  box-shadow: 12px 12px 0 var(--red);
}

.placeholder-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-frame--wide {
  aspect-ratio: 4 / 3;
}

.placeholder-frame--tall {
  aspect-ratio: 4 / 5;
}

.stamp {
  display: inline-flex;
  border: 2px solid currentColor;
  color: var(--red);
  padding: 5px 9px;
  transform: rotate(-5deg);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filter-btn {
  min-height: 36px;
  border: 1px solid var(--hair);
  background: var(--white);
  color: var(--ink);
  padding: 7px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-btn[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 9px;
  min-width: 0;
}

.gallery-item {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 180px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: 1px solid var(--hair);
  background: transparent;
  overflow: hidden;
  text-align: left;
}

.gallery-item:nth-child(1) {
  transform: rotate(-0.6deg);
}

.gallery-item:nth-child(2) {
  transform: rotate(0.7deg);
}

.gallery-item[data-ratio="landscape"] {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item[data-ratio="wide"] {
  grid-column: span 2;
  aspect-ratio: 16 / 10;
}

.gallery-item[data-ratio="portrait"] {
  aspect-ratio: 4 / 5;
}

.gallery-item[data-ratio="square"] {
  aspect-ratio: 1 / 1;
}

.gallery-item[data-featured="true"] {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 4 / 3;
}

.gallery-item[data-featured="true"][data-ratio="square"] {
  /* Fills its full two-row span; sibling rows set the height. */
  aspect-ratio: auto;
  min-height: 0;
}

.gallery-item[data-featured="true"][data-ratio="wide"] {
  grid-row: span 1;
  aspect-ratio: 16 / 10;
}

.gallery-item[data-ratio="panorama"],
.gallery-item[data-featured="true"][data-ratio="panorama"] {
  grid-column: 1 / -1;
  grid-row: auto;
  aspect-ratio: 1440 / 760;
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.gallery-caption {
  position: absolute;
  left: 8px;
  bottom: 8px;
  background: rgba(11, 11, 12, 0.86);
  color: var(--paper);
  padding: 5px 7px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.find-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.find-grid > * {
  position: relative;
}

.find-panel {
  padding: clamp(22px, 4vw, 38px);
}

.find-panel--entrance {
  display: grid;
  align-content: start;
  gap: 22px;
}

.find-panel + .find-panel {
  border-left: 1px solid var(--hair-dark);
}

.map-shell {
  position: relative;
  margin: 18px 0 12px;
}

.map {
  position: relative;
  min-height: clamp(280px, 34vw, 390px);
  border: 1px solid var(--hair-dark);
  background: #d8d2c8;
  overflow: hidden;
}

.map::before {
  content: "Loading map";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, transparent 0 19%, rgba(11, 11, 12, 0.1) 19% 20%, transparent 20% 49%, rgba(11, 11, 12, 0.12) 49% 51%, transparent 51% 79%, rgba(11, 11, 12, 0.1) 79% 80%, transparent 80%),
    repeating-linear-gradient(135deg, #cfc8bd, #cfc8bd 11px, #dad3c6 11px, #dad3c6 22px);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map.is-ready::before {
  display: none;
}

.map-message {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 500;
  margin: 0;
  background: rgba(11, 11, 12, 0.9);
  color: var(--paper);
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leaflet-container {
  font-family: var(--sans);
}

.leaflet-control-attribution,
.leaflet-control-zoom a {
  color: var(--ink);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  border-radius: 0;
}

.leaflet-popup-content {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.map-fallback {
  margin: 0;
  color: #c9c2b8;
  font-size: 14px;
}

.hours-list {
  margin: 18px 0 0;
  border-top: 1px solid var(--hair-dark);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--hair-dark);
  padding: 9px 0;
  font-family: var(--mono);
  font-size: 12px;
  color: #cfc8bd;
}

.steps {
  margin: 0 0 18px;
  padding-left: 22px;
  color: #ddd7cd;
}

.steps li + li {
  margin-top: 8px;
}

.entrance-media {
  width: min(100%, 300px);
  margin: 4px 0 0;
  transform: rotate(1.1deg);
}

.entrance-media__frame {
  aspect-ratio: 15 / 11;
  overflow: hidden;
  border: 2px solid var(--paper);
  background: var(--warm-black);
  box-shadow: 10px 10px 0 var(--red);
}

.entrance-media__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.entrance-media figcaption {
  display: inline-block;
  margin-top: 10px;
  background: var(--paper);
  color: var(--ink);
  padding: 6px 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-cta {
  background: var(--red);
  color: var(--white);
  padding: clamp(34px, 6vw, 68px) 0;
}

.booking-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 22px;
  align-items: center;
}

.footer {
  background: #000;
  color: var(--paper);
  padding: clamp(34px, 5vw, 54px) 0 18px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 28px;
}

.footer h2,
.footer h3 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 12px;
}

.footer a {
  text-decoration: none;
}

.footer-list {
  display: grid;
  gap: 8px;
  color: #d8d2c8;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 14px;
  border-top: 1px solid var(--hair-dark);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: #77726b;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-action-bar {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.88);
  color: var(--paper);
}

.lightbox[data-open="true"] {
  display: flex;
}

.lightbox__panel {
  width: min(960px, 100%);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: var(--ink);
}

.lightbox__caption {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 2px solid var(--paper);
  background: transparent;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 24px;
}

.page-hero {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(42px, 7vw, 84px) 0;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(58px, 10vw, 118px);
  line-height: 0.86;
  text-transform: uppercase;
  max-width: 10ch;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.booking-form {
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--red);
  padding: clamp(20px, 4vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  padding: 11px 12px;
}

.field textarea {
  min-height: 148px;
  resize: vertical;
}

.field-error {
  min-height: 18px;
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 14px;
  color: #4d4941;
}

.thanks-card {
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--red);
  padding: clamp(24px, 5vw, 48px);
}

@media (max-width: 1040px) {
  .primary-nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero__inner,
  .experience-grid,
  .find-grid,
  .booking-cta__inner,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
    padding-top: 30px;
  }

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

  .event-card {
    min-height: 0;
  }

  .event-card__title {
    margin: 8px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item[data-featured="true"][data-ratio="square"] {
    aspect-ratio: 1 / 1;
  }

  .find-panel + .find-panel {
    border-left: 0;
    border-top: 1px solid var(--hair-dark);
  }

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

@media (max-width: 680px) {
  :root {
    --header-h: 58px;
  }

  .brand-card img {
    width: 96px;
    max-height: 34px;
  }

  .site-header__inner {
    height: var(--header-h);
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
    max-width: 11ch;
  }

  .hero-title__break--desktop {
    display: none;
  }

  .hero-title__break--mobile {
    display: block;
  }

  .hero__subhead {
    font-size: clamp(30px, 9vw, 42px);
    max-width: 13ch;
  }

  .hero__copy {
    font-size: 16px;
    margin-top: 12px;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .btn {
    width: 100%;
  }

  .hero__side {
    display: none;
  }

  .tonight-section {
    margin-top: 0;
  }

  .tonight-card {
    padding: 16px;
  }

  .tonight-card__top,
  .tonight-card__footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .gallery-item,
  .gallery-item[data-ratio="landscape"],
  .gallery-item[data-ratio="wide"],
  .gallery-item[data-ratio="square"],
  .gallery-item[data-featured="true"] {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
    aspect-ratio: 4 / 5;
    transform: none;
  }

  .gallery-item[data-ratio="panorama"] {
    min-height: 0;
    aspect-ratio: 1440 / 760;
  }

  .gallery-item[data-ratio="square"] {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .gallery-item[data-featured="true"][data-ratio="square"] {
    min-height: 230px;
    aspect-ratio: 4 / 5;
  }

  .experience-media {
    transform: none;
  }

  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 180;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #000;
    color: var(--paper);
    border-top: 2px solid var(--red);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-action-bar a {
    min-height: 48px;
    display: grid;
    place-items: center;
    padding: 8px 4px;
    text-decoration: none;
    border-right: 1px solid var(--hair-dark);
  }

  .mobile-action-bar a:first-child {
    color: var(--red);
  }

  .mobile-action-bar.is-released {
    position: static;
  }

  body {
    padding-bottom: 50px;
  }

  .status-ticker {
    font-size: 11px;
    letter-spacing: 0.08em;
  }

  .status-ticker__viewport {
    width: calc(100% - (var(--gutter) * 2));
  }

  .status-ticker__group {
    gap: 6px 0;
    min-height: 0;
    padding: 8px 0;
  }

  .status-ticker__item {
    min-height: 34px;
    white-space: nowrap;
  }

  .status-ticker__item + .status-ticker__item::before {
    margin: 0 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
