:root {
  --header-nav-height: 72px;
  --header-band-height: 64px;
  --header-gradient-height: 28px;
  --header-band-expanded-scale: 1.25;
  --header-band-collapsed-height: 2px;
  --header-height: calc(var(--header-nav-height) + (var(--header-band-height) * var(--header-band-expanded-scale)));
  --section-anchor-lift: 5px;
  --page-padding: clamp(24px, 3.1vw, 54px);
  --featured-wheel-scale: 1.04;
  --featured-wheel-right: 1%;
  --featured-wheel-max-size: 460px;
  --featured-wheel-top: 0;
  --header-gradient-shift: 0%;
  --header-mosaic-shift: 0%;
  --black: #050505;
  --white: #ffffff;
  --paper: #f9f7f0;
  --line: #111111;
  --red: #ff333d;
  --blue: #2630d8;
  --electric-blue: #0000ff;
  --sunset-orange: #ef6219;
  --sunset-gold: #ff9f00;
  --sunset-pink: #df7a9e;
  --sunset-violet: #8d2b83;
  --sunset-blue: #3027d9;
  --sunset-warm-gradient: linear-gradient(180deg, #ef6219 0%, #ff9f00 48%, #df7a9e 100%);
  --sunset-cool-gradient: linear-gradient(180deg, #b569d8 0%, #5b45de 42%, #3027d9 100%);
  --sunset-rose-gradient: linear-gradient(180deg, #ff9822 0%, #ec8293 58%, #9c56af 100%);
  --soft-red: rgba(255, 54, 64, 0.64);
  --soft-blue: rgba(54, 57, 154, 0.62);
  --carousel-gap: 5px;
  --poster-padding: 28px;
  --detail-background-initial: linear-gradient(to top, #ffd11a 0%, #ffbc2a 18%, #ff9150 54%, #ff5b95 100%);
  --detail-background-final: linear-gradient(to top, #ffd12a 0%, #ffc34c 36%, #ffa45b 72%, #ff8b64 100%);
  --carousel-card-width: 320px;
  --carousel-card-max-height-vh: 92;
  --category-title-size: clamp(34px, 4.5vw, 78px);
  --category-title-weight: 740;
  --font-main: "Inter", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) - var(--section-anchor-lift));
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: var(--font-main);
  font-optical-sizing: auto;
}

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 0 clamp(28px, 5vw, 88px);
  width: 100%;
  height: var(--header-nav-height);
  min-height: var(--header-nav-height);
  max-height: var(--header-nav-height);
  padding: 0 var(--page-padding);
  background: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  align-self: center;
  height: clamp(48px, 5.8vw, 60px);
}

.brand__full {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}

.main-nav {
  position: relative;
  z-index: 21;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: end;
  align-self: center;
  gap: clamp(22px, 4.2vw, 92px);
  min-height: 0;
}

.main-nav__links {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: clamp(22px, 4.2vw, 92px);
}

.main-nav__socials {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  gap: 12px;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 0 12px;
  font-family: var(--font-main);
  font-size: clamp(12px, 0.85vw, 16px);
  font-weight: 750;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28em;
  transition: text-decoration-color 160ms ease, text-underline-offset 160ms ease;
}

.nav-social {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-social:hover,
.nav-social:focus-visible {
  opacity: 0.72;
}

.nav-social__icon {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-social__label {
  display: none;
}

.header-band {
  position: fixed;
  z-index: 19;
  top: calc(var(--header-nav-height) - 2px);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  height: calc(var(--header-band-height) * var(--header-band-expanded-scale));
  overflow: hidden;
  transition: height 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: height;
}

body.has-compact-header-band .header-band {
  height: var(--header-band-collapsed-height);
}

.site-header.is-menu-open .header-band {
  height: calc(var(--header-band-height) * var(--header-band-expanded-scale));
}

.header-band__gradient {
  position: relative;
  flex: 0 0 auto;
  height: calc(var(--header-gradient-height) * var(--header-band-expanded-scale));
  overflow: hidden;
  transition: height 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-band__gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 200%;
  background-image: linear-gradient(
    90deg,
    #ffe100 0%,
    #ff8200 7.5%,
    #ff5926 15%,
    #ff5667 22.5%,
    #ff4eb7 30%,
    #a126d5 37%,
    #5f00eb 44%,
    #4f00c0 50%,
    #5f00eb 56%,
    #a126d5 63%,
    #ff4eb7 70%,
    #ff5667 77.5%,
    #ff5926 85%,
    #ff8200 92.5%,
    #ffe100 100%
  );
  background-repeat: repeat-x;
  background-size: 50% 100%;
  transform: translate3d(calc(-50% + var(--header-gradient-shift)), 0, 0);
  will-change: transform;
}

.header-band__mosaic {
  display: flex;
  flex: 0 0 auto;
  height: calc((var(--header-band-height) - var(--header-gradient-height)) * var(--header-band-expanded-scale));
  width: 200%;
  min-width: 200%;
  overflow: hidden;
  transform: translate3d(calc(var(--header-mosaic-shift) * -1), 0, 0);
  will-change: transform;
  transition: height 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-band__mosaic-segment {
  display: flex;
  flex: 0 0 50%;
  min-width: 50%;
}

.header-band__block {
  min-width: 0;
}

body.has-compact-header-band .header-band__gradient {
  height: var(--header-band-collapsed-height);
}

body.has-compact-header-band .header-band__mosaic {
  height: 0;
}

.site-header.is-menu-open .header-band__gradient {
  height: calc(var(--header-gradient-height) * var(--header-band-expanded-scale));
}

.site-header.is-menu-open .header-band__mosaic {
  height: calc((var(--header-band-height) - var(--header-gradient-height)) * var(--header-band-expanded-scale));
}

.header-band__block--pink {
  flex: 0 0 31.5%;
  background: linear-gradient(90deg, #ef33c1 0%, #ff4eb7 58%, #f449cb 100%);
}

.header-band__block--violet {
  flex: 1 1 auto;
  background: linear-gradient(90deg, #7d19aa 0%, #a126d5 34%, #5f00eb 74%, #4f00c0 100%);
}

.header-band__block--yellow {
  flex: 0 0 4.2%;
  background: #ffe100;
}

.header-band__block--orange {
  flex: 0 0 3.5%;
  background: #ff5926;
}

.header-band__block--white {
  flex: 0 0 10.5%;
  background: #ffffff;
}

.header-band__block--black {
  flex: 0 0 12%;
  background: #050505;
}

.nav-link:hover,
.nav-link:focus-visible {
  text-decoration-color: var(--blue);
  text-underline-offset: 0.34em;
}

@media (prefers-reduced-motion: reduce) {
  .header-band,
  .header-band__gradient,
  .header-band__mosaic {
    transition: none;
  }
}

.menu-toggle {
  display: none;
}

main {
  padding-top: var(--header-height);
  background: var(--paper);
}

.featured-section {
  background: var(--paper);
  padding: clamp(26px, 3.4vw, 46px) var(--page-padding) clamp(30px, 4.2vw, 48px);
}

.featured-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(340px, 40vw, 490px);
  padding: clamp(6px, 1.2vw, 18px) clamp(220px, 28vw, 440px) clamp(6px, 1.2vw, 18px) 0;
}

.featured-announcement {
  position: relative;
  z-index: 1;
  max-width: min(10.8ch, 100%);
  margin: 0;
  font-family: var(--font-main);
  font-size: min(clamp(56px, 5.85vw, 88px), 10.4vh);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: 0.01em;
  text-transform: none;
}

.featured-announcement__line {
  display: block;
  white-space: nowrap;
}

.featured-announcement__line--group-break {
  margin-top: 0.24em;
}

.featured-hero__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: auto;
  touch-action: none;
}

.featured-hero__wheel-stack {
  position: absolute;
  top: var(--featured-wheel-top);
  right: var(--featured-wheel-right);
  height: calc(var(--featured-wheel-scale) * 100%);
  max-height: var(--featured-wheel-max-size);
  aspect-ratio: 1 / 1;
  transform: none;
}

.featured-hero__wheel {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  will-change: transform;
}

.featured-hero__wheel--left,
.featured-hero__wheel--right {
  display: none;
}

.featured-hero__wheel--center {
  display: block;
}

.featured-divider {
  width: 100%;
  height: 2px;
  margin: clamp(12px, 1.6vw, 18px) 0 clamp(16px, 2.1vw, 24px);
  background: var(--black);
}

.featured-heading {
  margin: 0 0 clamp(18px, 2.2vw, 28px);
  font-family: var(--font-main);
  font-size: var(--category-title-size);
  font-weight: var(--category-title-weight);
  line-height: 0.92;
  text-transform: uppercase;
}

.carousel-shell {
  position: relative;
}

.film-carousel {
  display: grid;
  grid-auto-columns: var(--carousel-card-width);
  grid-auto-flow: column;
  gap: var(--carousel-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.film-carousel::-webkit-scrollbar {
  display: none;
}

.film-card {
  position: relative;
  container-name: film-card;
  container-type: inline-size;
  display: grid;
  place-items: center;
  aspect-ratio: 2 / 3;
  max-height: calc(var(--carousel-card-max-height-vh) * 1vh);
  --film-card-title-scale: 1;
  --film-card-type-scale: 1;
  --film-card-copy-scale: 1;
  --film-card-hover-gap: clamp(18px, 4.5cqi, 40px);
  --film-card-synopsis-margin: clamp(20px, 6cqi, 60px);
  padding: var(--poster-padding);
  overflow: hidden;
  isolation: isolate;
  scroll-snap-align: start;
  background: var(--white);
}

.film-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.film-card__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
}

.film-card__screenings {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: var(--film-card-hover-gap);
  padding: var(--poster-padding);
  color: var(--black);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.film-card__screenings::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--detail-background-initial);
}

.film-card__screenings::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--detail-background-final);
  opacity: 0;
  transition: opacity 1000ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}

@media (hover: hover) {
  .film-carousel:not([data-visible-cards="1"]) .film-card:hover .film-card__screenings {
    opacity: 1;
    pointer-events: auto;
  }

  .film-carousel:not([data-visible-cards="1"]) .film-card:hover .film-card__screenings::after {
    opacity: 1;
  }
}

.film-card__details {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 0;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(5, 5, 5, 0.3) transparent;
}

.film-card__details::-webkit-scrollbar {
  width: 6px;
}

.film-card__details::-webkit-scrollbar-thumb {
  background: rgba(5, 5, 5, 0.3);
  border-radius: 999px;
}

.film-card__detail-title {
  max-width: 10.6em;
  margin: 0 0 clamp(18px, 4cqi, 34px);
  font-family: var(--font-main);
  font-weight: 900;
  font-size: clamp(30px, calc(10.2cqi * var(--film-card-title-scale)), 84px);
  line-height: 0.83;
  overflow-wrap: anywhere;
  text-wrap: balance;
  text-transform: uppercase;
}

.film-card__director {
  margin: 0 0 4px;
  font-size: clamp(17px, calc(4.1cqi * var(--film-card-type-scale)), 34px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.film-card__cast,
.film-card__meta {
  margin: 0;
  font-size: clamp(14px, calc(2.8cqi * var(--film-card-copy-scale)), 22px);
  font-weight: 420;
  line-height: 1.08;
}

.film-card__meta {
  display: grid;
  gap: 1px;
}

.film-card__meta-compact {
  display: none;
  margin: clamp(6px, 1.4cqi, 10px) 0 0;
  font-size: clamp(13px, calc(2.35cqi * var(--film-card-copy-scale)), 20px);
  font-weight: 760;
  line-height: 1.08;
  white-space: nowrap;
}

.film-card__meta p {
  margin: 0;
}

.film-card__version {
  text-transform: uppercase;
}

.film-card__synopsis {
  max-width: 29em;
  margin: var(--film-card-synopsis-margin) 0 0;
  justify-self: start;
  font-size: clamp(14px, calc(2.45cqi * var(--film-card-copy-scale)), 22px);
  font-weight: 430;
  line-height: 1.1;
  text-align: left;
}

.film-card__cast {
  display: block;
}

.film-card__showtimes {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: clamp(14px, 3cqi, 26px);
  padding-top: 2px;
  background: transparent;
}

.film-card__mobile-toggle,
.film-card__mobile-close,
.film-card__mobile-footer,
.film-card__mobile-footer-head,
.film-card__mobile-title {
  display: none;
}

.film-card.is-open .film-card__screenings {
  opacity: 1;
  pointer-events: auto;
}

.film-card.is-open .film-card__screenings::after {
  opacity: 1;
}

.film-card__label {
  margin: 0;
  padding-bottom: clamp(10px, 2cqi, 18px);
  border-bottom: 1.5px solid var(--black);
  font-family: var(--font-main);
  font-size: clamp(16px, calc(4cqi * var(--film-card-type-scale)), 34px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.film-card__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px clamp(14px, 3cqi, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-main);
  font-size: clamp(12px, calc(2.05cqi * var(--film-card-copy-scale)), 18px);
  line-height: 1.04;
  text-transform: uppercase;
}

@container film-card (max-width: 760px) {
  .film-card {
    --film-card-title-scale: 0.94;
    --film-card-type-scale: 0.95;
    --film-card-copy-scale: 0.94;
    --film-card-hover-gap: clamp(16px, 4cqi, 34px);
    --film-card-synopsis-margin: clamp(18px, 5.2cqi, 50px);
  }
}

@container film-card (max-width: 680px) {
  .film-card {
    --film-card-title-scale: 0.88;
    --film-card-type-scale: 0.9;
    --film-card-copy-scale: 0.88;
    --film-card-hover-gap: clamp(14px, 3.6cqi, 28px);
    --film-card-synopsis-margin: clamp(16px, 4.6cqi, 40px);
  }
}

@container film-card (max-width: 620px) {
  .film-card {
    --film-card-title-scale: 0.82;
    --film-card-type-scale: 0.84;
    --film-card-copy-scale: 0.82;
    --film-card-hover-gap: clamp(12px, 3.2cqi, 24px);
    --film-card-synopsis-margin: clamp(14px, 4.2cqi, 32px);
  }

  .film-card__meta {
    display: none;
  }

  .film-card__meta-compact {
    display: block;
  }
}

@container film-card (max-width: 560px) {
  .film-card {
    --film-card-title-scale: 0.76;
    --film-card-type-scale: 0.78;
    --film-card-copy-scale: 0.76;
    --film-card-hover-gap: clamp(10px, 2.8cqi, 20px);
    --film-card-synopsis-margin: clamp(12px, 3.6cqi, 24px);
  }
}

.film-card__screening {
  display: grid;
  gap: 2px;
}

.film-card__screening-time {
  white-space: nowrap;
}

.film-card__screening-time--highlighted {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  white-space: nowrap;
}

.film-card__screening-time--highlighted::after {
  content: "";
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: var(--electric-blue);
  flex: 0 0 auto;
}

.carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  opacity: 0.74;
}

.carousel-button span {
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2.5px solid var(--white);
  border-right: 2.5px solid var(--white);
  filter: drop-shadow(0 1px 4px rgba(5, 5, 5, 0.32));
}

.carousel-button--prev {
  left: 14px;
}

.carousel-button--prev span {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.carousel-button--next {
  right: 14px;
}

.carousel-button--next span {
  transform: rotate(45deg) translate(-1px, 1px);
}

.schedule-section {
  min-height: 100vh;
  padding: 76px var(--page-padding) 62px;
  border-top: 2px solid var(--black);
  background: var(--paper);
}

.schedule-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  margin: 0 0 34px;
}

.schedule-heading h2 {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--category-title-size);
  font-weight: var(--category-title-weight);
  line-height: 0.92;
  text-transform: uppercase;
}

.schedule-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.schedule-table-wrap {
  width: 100%;
  margin: 0;
  overflow-x: visible;
}

.schedule-week + .schedule-week {
  margin-top: 64px;
}

.schedule-week__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.schedule-week__title,
.schedule-week__note {
  margin: 0;
  font-family: var(--font-main);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.schedule-week__title {
  font-size: clamp(20px, 2vw, 34px);
}

.schedule-week__note {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  font-size: clamp(14px, 1.4vw, 22px);
  text-align: right;
}

.schedule-week__note-lines {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.schedule-week__note-line {
  display: block;
}

.schedule-week__note-badge {
  width: 9px;
  height: 9px;
  margin-top: 0.18em;
  border-radius: 50%;
  flex: 0 0 auto;
}

.schedule-week__note-badge--blue {
  background: var(--electric-blue);
}

.schedule-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: var(--font-main);
  color: var(--black);
}

.schedule-table th,
.schedule-table td {
  padding: 9px 5px;
  font-size: 12px;
  font-weight: 900;
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.schedule-table thead th {
  padding-bottom: 20px;
  font-size: 11px;
}

.schedule-table__day-heading--highlighted {
  color: var(--electric-blue);
}

.schedule-table tbody th,
.schedule-table tbody td {
  font-weight: 650;
}

.schedule-table tbody tr {
  border-top: 2px solid var(--black);
}

.schedule-table tbody tr:last-child {
  border-bottom: 2px solid var(--black);
}

.schedule-row {
  cursor: default;
  transition: background 120ms ease;
}

@media (hover: hover) {
  .schedule-row:hover {
    background: var(--schedule-row-hover);
  }
}

.schedule-table__film-heading,
.schedule-table__film {
  width: 23%;
}

.schedule-table .schedule-table__film-heading,
.schedule-table .schedule-table__film {
  text-align: left;
}

.schedule-table__meta-heading,
.schedule-table__meta {
  width: 7%;
}

.schedule-table__day-short {
  display: none;
}

.schedule-table__times {
  display: inline-grid;
  gap: 2px;
  justify-items: center;
  align-content: center;
  min-height: 27px;
}

.schedule-table__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45em;
  white-space: nowrap;
}

.schedule-table__time--highlighted::after {
  content: "";
  width: 0.42em;
  height: 0.42em;
  border-radius: 50%;
  background: var(--electric-blue);
  flex: 0 0 auto;
}

.schedule-table__dot {
  display: grid;
  place-items: center;
  min-height: 27px;
  font-size: 18px;
  line-height: 1;
}

.schedule-note {
  width: 100%;
  margin: 46px 0 0;
  font-size: 17px;
  line-height: 1.2;
}

.poster-preview {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 190px;
  aspect-ratio: 2 / 3;
  background: var(--white);
  border: 2px solid var(--black);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-240px, -360px, 0);
  transition: opacity 80ms ease;
  will-change: transform;
}

.poster-preview.is-visible {
  opacity: 1;
}

.poster-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(210px, 31vw) minmax(260px, 690px);
  gap: clamp(26px, 7vw, 120px);
  min-height: 72vh;
  padding: 78px var(--page-padding) 66px;
  border-top: 2px solid var(--black);
  background: var(--paper);
}

.content-section h2 {
  margin: 0;
  font-family: var(--font-main);
  font-size: var(--category-title-size);
  font-weight: var(--category-title-weight);
  line-height: 0.92;
  text-transform: uppercase;
}

.content-section__body {
  display: grid;
  gap: 1em;
}

.content-section p {
  max-width: 62ch;
  margin: 0;
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.45;
}

.content-section--bar {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(180px, 2fr) minmax(0, 6fr);
  gap: clamp(22px, 3.6vw, 52px);
  align-items: start;
}

.content-section--bar > * {
  min-width: 0;
}

.bar-showcase__sidebar {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: clamp(28px, 3.4vw, 42px);
}

.bar-showcase__sidebar h2 {
  max-width: 7.6ch;
}

.bar-showcase__meta {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
}

.bar-showcase__meta-block {
  display: grid;
  gap: 6px;
}

.content-section--bar .bar-showcase__eyebrow,
.content-section--bar .bar-showcase__meta-label,
.content-section--bar .bar-showcase__hours,
.content-section--bar .bar-showcase__meta-text,
.content-section--bar .bar-showcase__address {
  max-width: none;
}

.content-section--bar .bar-showcase__eyebrow,
.content-section--bar .bar-showcase__meta-label {
  font-size: clamp(16px, 1.08vw, 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.content-section--bar .bar-showcase__hours,
.content-section--bar .bar-showcase__meta-text,
.content-section--bar .bar-showcase__address {
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 430;
  line-height: 1.18;
}

.bar-showcase__meta-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.bar-showcase__meta-link:hover,
.bar-showcase__meta-link:focus-visible {
  color: var(--blue);
  text-decoration-color: var(--blue);
}

.bar-showcase__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 7ch;
  padding: 5px 12px 7px;
  border: 2px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-main);
  font-size: clamp(16px, 4.6vw, 24px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: none;
  cursor: pointer;
}

.bar-showcase__button:hover,
.bar-showcase__button:focus-visible {
  background: var(--white);
}

.bar-showcase__main {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: clamp(24px, 3.2vw, 44px);
  min-width: 0;
  transition: opacity 220ms ease;
}

.bar-gallery {
  position: relative;
  --bar-gallery-gap: 0px;
}

.bar-gallery__viewport {
  overflow: hidden;
  touch-action: pan-y;
}

.bar-gallery__track {
  display: flex;
  gap: var(--bar-gallery-gap);
  transition: transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.bar-gallery__figure {
  margin: 0;
  flex: 0 0 calc((100% - var(--bar-gallery-gap)) / 2);
  aspect-ratio: 1 / 1.04;
  overflow: hidden;
  background: rgba(5, 5, 5, 0.04);
}

.bar-gallery__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bar-gallery__button {
  position: absolute;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: auto;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.bar-gallery__button:hover,
.bar-gallery__button:focus-visible {
  opacity: 0.74;
}

.bar-gallery__button:disabled {
  opacity: 0.24;
  cursor: default;
}

.bar-gallery__button--prev {
  left: 14px;
}

.bar-gallery__button--next {
  right: 14px;
}

.bar-gallery__button-icon {
  display: block;
  width: 20px;
  height: 20px;
  border-top: 2.5px solid var(--white);
  border-right: 2.5px solid var(--white);
  filter: drop-shadow(0 1px 4px rgba(5, 5, 5, 0.32));
}

.bar-gallery__button--prev .bar-gallery__button-icon {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.bar-gallery__button--next .bar-gallery__button-icon {
  transform: rotate(45deg) translate(-1px, 1px);
}

.bar-showcase__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(22px, 2.4vw, 36px);
  align-items: start;
}

.content-section--bar .bar-showcase__lead {
  max-width: none;
  margin: 0;
  font-size: clamp(30px, 3.1vw, 48px);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.bar-showcase__drawer {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 4;
  align-self: start;
  min-width: 0;
  max-height: min(100%, calc(100dvh - var(--header-height) - 18px));
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(calc(100% + var(--page-padding)), 0, 0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.bar-showcase__drawer-inner {
  max-height: inherit;
  overflow: auto;
  padding: clamp(12px, 1.4vw, 18px);
  border-left: 2px solid var(--black);
  background: var(--paper);
}

.content-section--bar.is-bar-menu-open .bar-showcase__drawer {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.content-section--bar.is-bar-menu-open .bar-showcase__main {
  opacity: 0.12;
  pointer-events: none;
}

.bar-showcase__drawer .bar-menu {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
  width: 100%;
}

.bar-showcase__drawer .bar-menu__card {
  min-height: 0;
  gap: 12px;
  padding: 0;
}

.bar-showcase__drawer .bar-menu__card-title {
  font-size: clamp(34px, 2.8vw, 48px);
  color: var(--black);
  font-weight: 680;
  line-height: 0.96;
  letter-spacing: 0.04em;
  text-align: left;
  text-transform: uppercase;
}

.bar-showcase__drawer .bar-menu__card--orange .bar-menu__card-title,
.bar-showcase__drawer .bar-menu__card--black .bar-menu__card-title {
  color: var(--black);
}

.bar-showcase__drawer .bar-menu__groups {
  width: 100%;
  gap: 24px;
  margin: 0;
}

.bar-showcase__drawer .bar-menu__group {
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--black);
}

.bar-showcase__drawer .bar-menu__group:first-child {
  padding-top: 0;
  border-top: 0;
}

.bar-showcase__drawer .bar-menu__group-title {
  font-size: clamp(19px, 1.45vw, 24px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.bar-showcase__drawer .bar-menu__list {
  gap: 12px;
}

.bar-showcase__drawer .bar-menu__item {
  gap: 10px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.18;
}

.bar-showcase__drawer .bar-menu__item-label,
.bar-showcase__drawer .bar-menu__item-price {
  font-weight: 400;
}

.bar-showcase__text {
  display: grid;
  gap: 1.25em;
}

.bar-showcase__text p {
  max-width: none;
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.42;
}

.bar-menu {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.6vw, 36px);
  width: 100%;
}

.bar-menu__card {
  display: grid;
  align-content: start;
  gap: clamp(34px, 4vw, 54px);
  min-height: clamp(560px, 62vw, 920px);
  padding: clamp(26px, 3.2vw, 38px);
}

.bar-menu__card-title {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(42px, 5vw, 86px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-align: right;
  text-transform: none;
}

.bar-menu__card--orange .bar-menu__card-title {
  color: #e3382b;
}

.bar-menu__card--black .bar-menu__card-title {
  color: var(--black);
}

.bar-menu__groups {
  display: grid;
  gap: clamp(28px, 3.2vw, 44px);
  width: min(100%, 320px);
  margin: 0 auto;
}

.bar-menu__group {
  display: grid;
  gap: 14px;
}

.bar-menu__group-title {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(26px, 2.2vw, 42px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: none;
}

.bar-menu__list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bar-menu__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  font-size: clamp(20px, 1.65vw, 34px);
  line-height: 1.1;
}

.bar-menu__item-meta {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.45em;
}

.bar-menu__item-label,
.bar-menu__item-price {
  font-weight: 430;
}

.bar-menu__item-price {
  text-align: right;
  white-space: nowrap;
}

.bar-menu__item-price--stacked {
  white-space: normal;
  line-height: 1.02;
}

.bar-menu__item-badge {
  width: 0.46em;
  height: 0.46em;
  margin-top: 0.28em;
  border-radius: 50%;
  flex: 0 0 auto;
}

.bar-menu__item-badge--blue {
  background: var(--electric-blue);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  padding: 26px var(--page-padding) 28px;
  border-top: 2px solid var(--black);
  background: var(--paper);
  font-size: 12px;
  font-weight: 520;
  line-height: 1.25;
}

.site-footer p {
  margin: 0;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 82ch;
}

.site-footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.site-footer__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}

.load-error {
  margin: 0;
  padding: 56px;
  font-family: var(--font-main);
  font-size: 24px;
  text-transform: uppercase;
}

@media (max-width: 850px) {
  :root {
    --header-nav-height: 72px;
    --header-band-height: 58px;
    --header-gradient-height: 24px;
    --header-height: calc(var(--header-nav-height) + (var(--header-band-height) * var(--header-band-expanded-scale)));
    --featured-wheel-scale: 1.02;
    --featured-wheel-right: -4%;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    gap: 0 20px;
    height: var(--header-nav-height);
  }

  .brand {
    height: 48px;
  }

  .main-nav {
    justify-content: end;
    gap: 22px;
    min-height: 0;
  }

  .main-nav__links {
    gap: 22px;
  }

  .nav-link {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 11px;
  }

  .featured-section {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .featured-hero {
    min-height: clamp(340px, 46vw, 460px);
  }

  .featured-announcement {
    font-size: min(clamp(44px, 7.2vw, 70px), 9.8vh);
  }

  .featured-divider {
    margin-top: 18px;
  }

  .featured-heading {
    font-size: clamp(42px, 7vw, 68px);
  }

  .content-section {
    grid-template-columns: 1fr;
    min-height: 62vh;
    padding-top: 60px;
    padding-bottom: 54px;
  }

  .content-section--bar {
    padding-top: 44px;
    gap: 34px;
  }

  .bar-showcase__sidebar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title title"
      "meta button";
    column-gap: 22px;
    row-gap: 20px;
    align-items: start;
  }

  .bar-showcase__sidebar h2 {
    grid-area: title;
  }

  .bar-showcase__meta {
    grid-area: meta;
  }

  .bar-showcase__button {
    grid-area: button;
    justify-self: end;
    align-self: end;
  }

  .bar-showcase__main,
  .bar-showcase__drawer {
    grid-column: 1;
    grid-row: 2;
  }

  .bar-showcase__drawer {
    display: none;
    max-height: none;
    overflow: visible;
    transform: translate3d(0, 12px, 0);
  }

  .bar-showcase__drawer-inner {
    max-height: none;
    overflow: visible;
    -webkit-overflow-scrolling: touch;
    padding: 10px 12px 12px;
    border-left: 0;
    border-top: 2px solid var(--black);
  }

  .content-section--bar.is-bar-menu-open .bar-showcase__drawer {
    display: block;
    transform: translate3d(0, 0, 0);
  }

  .bar-showcase__drawer .bar-menu {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .bar-showcase__drawer .bar-menu__card {
    min-height: clamp(200px, 34dvh, 300px);
    gap: 18px;
    padding-top: 0;
  }

  .bar-showcase__drawer .bar-menu__card + .bar-menu__card {
    padding-top: 10px;
    border-top: 2px solid var(--black);
  }

  .bar-showcase__drawer .bar-menu__card-title {
    font-size: clamp(18px, 3vw, 24px);
  }

  .bar-showcase__drawer .bar-menu__group {
    gap: 8px;
    padding-top: 12px;
  }

  .bar-showcase__drawer .bar-menu__group-title {
    font-size: clamp(12px, 1.9vw, 15px);
  }

  .bar-showcase__drawer .bar-menu__item {
    gap: 8px;
    font-size: clamp(13px, 2vw, 16px);
    line-height: 1.02;
  }

  .bar-gallery__figure {
    flex-basis: 100%;
  }

  .bar-showcase__copy {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bar-showcase__lead {
    max-width: 14ch;
  }

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

  .bar-menu__card {
    min-height: 0;
  }

  .bar-menu__groups {
    width: min(100%, 420px);
    margin: 0;
  }

  .schedule-section {
    padding-top: 68px;
    padding-bottom: 54px;
  }

  .schedule-heading {
    margin-bottom: 30px;
  }

  .schedule-week + .schedule-week {
    margin-top: 50px;
  }

  .schedule-week__header {
    align-items: flex-start;
    margin-bottom: 14px;
  }

  .schedule-table {
    min-width: 0;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 8px 3px;
    font-size: 12px;
  }

  .schedule-table thead th {
    padding-bottom: 16px;
    font-size: 11px;
  }

  .schedule-table__film-heading,
  .schedule-table__film {
    width: 29%;
    overflow-wrap: anywhere;
  }

  .schedule-table__meta-heading,
  .schedule-table__meta {
    width: 8%;
  }

  .schedule-table__times {
    min-height: 24px;
  }
}

@media (max-width: 700px) {
  .schedule-table__day-full {
    display: none;
  }

  .schedule-table__day-short {
    display: inline;
  }
}

#film-carousel:not([data-visible-cards="1"]) .film-card:focus-visible .film-card__screenings {
  opacity: 1;
  pointer-events: auto;
}

#film-carousel:not([data-visible-cards="1"]) .film-card:focus-visible .film-card__screenings::after {
  opacity: 1;
}

@media (max-width: 680px) {
  :root {
    --header-nav-height: 70px;
    --header-band-height: 50px;
    --header-gradient-height: 20px;
    --header-height: calc(var(--header-nav-height) + (var(--header-band-height) * var(--header-band-expanded-scale)));
  }

  .site-header {
    grid-template-columns: 70px auto;
    justify-content: space-between;
    align-items: stretch;
    height: var(--header-nav-height);
    padding: 0 var(--page-padding);
  }

  .brand {
    height: 44px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    grid-column: 2;
    justify-self: end;
    align-self: center;
    display: grid;
    gap: 5px;
    width: 36px;
    height: 34px;
    padding: 7px 4px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--black);
    transform-origin: center;
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    z-index: 21;
    top: calc(100% + var(--header-band-height));
    left: calc(var(--page-padding) * -1);
    right: calc(var(--page-padding) * -1);
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    background: var(--white);
  }

  .site-header.is-menu-open .main-nav {
    display: grid;
  }

  .main-nav__links,
  .main-nav__socials {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 0;
  }

  .main-nav__socials {
    border-top: 1px solid var(--black);
  }

  .nav-link {
    align-items: center;
    justify-content: flex-end;
    justify-self: stretch;
    width: 100%;
    min-height: 48px;
    padding: 0 calc(var(--page-padding) + 12px);
    border-bottom: 1px solid var(--black);
    font-size: 16px;
    text-align: right;
  }

  .main-nav__links .nav-link:last-child {
    border-bottom: 0;
  }

  .nav-social {
    align-items: center;
    justify-content: flex-end;
    justify-self: stretch;
    width: 100%;
    height: auto;
    min-height: 48px;
    padding: 0 calc(var(--page-padding) + 12px);
    border-bottom: 1px solid var(--black);
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 750;
    line-height: 0.92;
    text-align: right;
    text-transform: uppercase;
  }

  .main-nav__socials .nav-social:last-child {
    border-bottom: 0;
  }

  .nav-social__icon {
    display: none;
  }

  .nav-social__label {
    display: inline;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 12px;
    font-size: 11px;
  }

  .site-footer__meta {
    justify-content: space-between;
    width: 100%;
    white-space: normal;
  }

  .content-section--bar {
    padding-top: 36px;
    gap: 28px;
  }

  .bar-showcase__drawer {
    display: none;
    max-height: none;
  }

  .bar-showcase__button {
    padding: 5px 12px 7px;
    font-size: clamp(16px, 4.6vw, 24px);
  }

  .bar-gallery {
    --bar-gallery-gap: 0px;
  }

  .bar-gallery__button--prev {
    left: 10px;
  }

  .bar-gallery__button--next {
    right: 10px;
  }

  .bar-showcase__lead {
    max-width: none;
    font-size: clamp(18px, 4.2vw, 24px);
  }

  .bar-menu__card {
    gap: 28px;
    padding: 22px;
  }

  .bar-showcase__drawer .bar-menu__card {
    gap: 14px;
  }

  .bar-showcase__drawer .bar-menu__group {
    gap: 6px;
    padding-top: 10px;
  }

  .bar-showcase__drawer .bar-menu__item {
    gap: 7px;
    line-height: 1;
  }

  .bar-menu__card-title {
    font-size: clamp(38px, 11vw, 56px);
  }

  .bar-menu__item {
    font-size: clamp(18px, 4.3vw, 28px);
  }

  .featured-section {
    padding-top: 30px;
    padding-bottom: 44px;
  }

  .featured-hero {
    display: grid;
    gap: clamp(14px, 2.1vh, 18px);
    min-height: 0;
    align-content: start;
    width: 100%;
    padding: 0;
  }

  .featured-hero__art {
    position: relative;
    inset: auto;
    order: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(172px, 21vh, 230px);
    overflow: hidden;
    padding-inline: clamp(10px, 3.5vw, 18px);
    box-sizing: border-box;
  }

  .featured-hero__wheel-stack {
    position: relative;
    top: auto;
    right: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.42fr) minmax(0, 0.78fr);
    align-items: center;
    justify-items: center;
    width: min(100%, 548px);
    height: auto;
    margin: 0 auto;
    transform: none;
    aspect-ratio: auto;
  }

  .featured-hero__wheel {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-width: none;
  }

  .featured-hero__wheel--left,
  .featured-hero__wheel--right {
    display: block;
    max-width: clamp(104px, 27vw, 148px);
  }

  .featured-hero__wheel--center {
    max-width: clamp(204px, 52vw, 292px);
    z-index: 1;
  }

  .featured-hero__wheel--left {
    justify-self: center;
    left: auto;
  }

  .featured-hero__wheel--right {
    justify-self: center;
    right: auto;
  }

  .featured-announcement {
    max-width: none;
    width: 100%;
    padding-left: 16px;
    padding-right: 12px;
    font-size: clamp(31px, 8.9vw, 46px);
    line-height: 0.9;
    letter-spacing: 0.01em;
  }

  .featured-announcement__line {
    width: 100%;
  }

  .featured-announcement__line--group-break {
    margin-top: 0.32em;
  }

  .header-band__block--pink {
    flex-basis: 30%;
  }

  .header-band__block--yellow {
    flex-basis: 5%;
  }

  .header-band__block--orange {
    flex-basis: 4.5%;
  }

  .header-band__block--white {
    flex-basis: 10%;
  }

  .header-band__block--black {
    flex-basis: 13%;
  }

  .featured-heading {
    font-size: clamp(38px, 9.4vw, 56px);
  }

  .film-carousel[data-visible-cards="1"] > .film-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 13fr) minmax(0, 2fr);
    align-items: stretch;
    justify-items: stretch;
    padding: 0;
    background: var(--detail-background-final);
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__image,
  .film-carousel[data-visible-cards="1"] > .film-card .film-card__tint,
  .film-carousel[data-visible-cards="1"] > .film-card .film-card__screenings {
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
    min-width: 0;
    min-height: 0;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__image {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
    transition: opacity 160ms ease;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__tint {
    display: none;
  }

  .film-carousel[data-visible-cards="1"] > .film-card.is-open .film-card__image {
    opacity: 0;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__screenings {
    position: relative;
    inset: auto;
    grid-template-rows: minmax(0, 1fr);
    gap: 0;
    padding: 14px 18px 16px;
    background: transparent;
    overflow: hidden;
    transition: opacity 180ms ease;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__screenings::before,
  .film-carousel[data-visible-cards="1"] > .film-card .film-card__screenings::after {
    display: none;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__details {
    padding-right: 0;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__showtimes {
    display: none;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__detail-title {
    max-width: 9.4em;
    margin-bottom: 16px;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__director {
    margin-bottom: 8px;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__cast,
  .film-carousel[data-visible-cards="1"] > .film-card .film-card__meta,
  .film-carousel[data-visible-cards="1"] > .film-card .film-card__meta-compact,
  .film-carousel[data-visible-cards="1"] > .film-card .film-card__synopsis {
    line-height: 1.04;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__synopsis {
    margin-top: 18px;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__mobile-footer {
    position: relative;
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 8px;
    min-height: 0;
    padding: 12px 18px 10px;
    background: transparent;
    cursor: pointer;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__mobile-footer-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1.5px solid var(--black);
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__mobile-title {
    display: block;
    margin: 0;
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: end;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--black);
    font-size: clamp(11px, 3.1vw, 14px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
  }

  .film-carousel[data-visible-cards="1"] > .film-card.is-open .film-card__mobile-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__mobile-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: end;
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--black);
    opacity: 0;
    pointer-events: none;
    font-size: clamp(18px, 4.3vw, 24px);
    font-weight: 400;
    line-height: 0.8;
    cursor: pointer;
  }

  .film-carousel[data-visible-cards="1"] > .film-card.is-open .film-card__mobile-close {
    opacity: 0.58;
    pointer-events: auto;
  }

  .film-carousel[data-visible-cards="1"] > .film-card.is-open {
    cursor: default;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__list--mobile {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px 10px;
    font-size: clamp(10px, 2.55vw, 12px);
    line-height: 0.96;
    min-height: 0;
    align-content: start;
  }

  .film-carousel[data-visible-cards="1"] > .film-card .film-card__list--mobile .film-card__screening {
    gap: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --page-padding: 18px;
    --carousel-gap: 5px;
    --carousel-card-width: calc(100vw - (var(--page-padding) * 2));
  }

  .site-header {
    grid-template-columns: 70px auto;
    justify-content: space-between;
    align-items: stretch;
    height: var(--header-nav-height);
  }

  .featured-section {
    padding-top: 24px;
    padding-bottom: 34px;
  }

  .featured-hero__art {
    min-height: clamp(166px, 23vh, 216px);
  }

  .featured-hero__wheel--left,
  .featured-hero__wheel--right {
    max-width: clamp(96px, 28vw, 126px);
  }

  .featured-hero__wheel--center {
    max-width: clamp(194px, 56vw, 274px);
  }

  .featured-announcement {
    padding-left: 12px;
    font-size: clamp(30px, 8.7vw, 42px);
    letter-spacing: 0.012em;
  }

  .bar-menu__card {
    padding: 18px;
  }

  .bar-menu__card-title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .bar-menu__group-title {
    font-size: clamp(22px, 6.5vw, 32px);
  }

  .bar-menu__item {
    gap: 12px;
    font-size: clamp(17px, 4.8vw, 24px);
  }

  .featured-divider {
    margin-top: 18px;
    margin-bottom: 22px;
  }

  .featured-heading {
    margin-bottom: 22px;
    font-size: clamp(34px, 9vw, 46px);
  }

  .film-carousel {
    gap: 12px;
  }

  .carousel-button {
    width: 30px;
    height: 30px;
  }

  .carousel-button span {
    width: 9px;
    height: 9px;
  }

  .schedule-section {
    padding-top: 72px;
  }

  .schedule-heading {
    align-items: center;
    margin-bottom: 34px;
  }

  .schedule-mark {
    width: 44px;
    height: 44px;
  }

  .schedule-table-wrap {
    margin-right: 0;
    padding-right: 0;
    overflow-x: visible;
  }

  .schedule-week + .schedule-week {
    margin-top: 42px;
  }

  .schedule-week__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 12px;
    row-gap: 8px;
  }

  .schedule-week__note {
    width: auto;
    justify-content: flex-end;
    justify-self: end;
    align-self: end;
    text-align: right;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 6px 1px;
    font-size: 8px;
    line-height: 0.98;
  }

  .schedule-table thead th {
    padding-bottom: 12px;
    font-size: 7px;
  }

  .schedule-table__film-heading,
  .schedule-table__film {
    width: 31%;
  }

  .schedule-table__meta-heading,
  .schedule-table__meta {
    width: 8%;
  }

  .schedule-table__times {
    gap: 1px;
    min-height: 17px;
  }

  .schedule-table__dot {
    min-height: 17px;
    font-size: 14px;
  }

  .schedule-note {
    margin-top: 38px;
    font-size: 14px;
  }

  .site-footer {
    padding-top: 22px;
    padding-bottom: 24px;
  }

  .site-footer__contact {
    display: grid;
    gap: 6px;
  }
}

/* DEBUG MODE: press D to toggle layout containers. */
body.debug-layout main,
body.debug-layout .featured-section,
body.debug-layout .carousel-shell,
body.debug-layout .film-carousel,
body.debug-layout .film-card,
body.debug-layout .film-card__screenings,
body.debug-layout .schedule-section,
body.debug-layout .schedule-table-wrap,
body.debug-layout .content-section,
body.debug-layout .site-footer {
  position: relative;
}

body.debug-layout .site-header,
body.debug-layout main,
body.debug-layout .featured-section,
body.debug-layout .carousel-shell,
body.debug-layout .film-carousel,
body.debug-layout .film-card,
body.debug-layout .film-card__screenings,
body.debug-layout .schedule-section,
body.debug-layout .schedule-table-wrap,
body.debug-layout .content-section,
body.debug-layout .site-footer {
  outline: 2px solid var(--debug-color);
  outline-offset: -2px;
}

body.debug-layout .site-header { --debug-color: #ff2d55; --debug-name: "site-header"; }
body.debug-layout main { --debug-color: #5856d6; --debug-name: "main"; }
body.debug-layout .featured-section { --debug-color: #ff9500; --debug-name: "featured-section"; }
body.debug-layout .carousel-shell { --debug-color: #34c759; --debug-name: "carousel-shell"; }
body.debug-layout .film-carousel { --debug-color: #007aff; --debug-name: "film-carousel"; }
body.debug-layout .film-card { --debug-color: #af52de; --debug-name: "film-card"; }
body.debug-layout .film-card__screenings { --debug-color: #111111; --debug-name: "hover text container"; }
body.debug-layout .schedule-section { --debug-color: #ffcc00; --debug-name: "schedule-section"; }
body.debug-layout .schedule-table-wrap { --debug-color: #00c7be; --debug-name: "schedule-table-wrap"; }
body.debug-layout .content-section { --debug-color: #ff3b30; --debug-name: "content-section"; }
body.debug-layout .site-footer { --debug-color: #8e8e93; --debug-name: "site-footer"; }

body.debug-layout .site-header::before,
body.debug-layout main::before,
body.debug-layout .featured-section::before,
body.debug-layout .carousel-shell::before,
body.debug-layout .film-carousel::before,
body.debug-layout .film-card::before,
body.debug-layout .film-card__screenings::before,
body.debug-layout .schedule-section::before,
body.debug-layout .schedule-table-wrap::before,
body.debug-layout .content-section::before,
body.debug-layout .site-footer::before {
  content: var(--debug-name);
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  padding: 3px 6px;
  background: var(--debug-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

body.debug-layout .film-carousel::before {
  content: "film-carousel / " attr(data-visible-cards) " visible";
}

body.debug-layout .film-card__image {
  outline: 2px dashed #007aff;
  outline-offset: -8px;
}

body.debug-layout .film-card__tint {
  opacity: 1;
  background: rgba(0, 122, 255, 0.18);
  pointer-events: none;
}

body.debug-layout .film-card__tint::before {
  content: "film-card__image";
  position: absolute;
  z-index: 1000;
  top: 6px;
  right: 6px;
  padding: 3px 6px;
  background: #007aff;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

body.debug-layout .film-card__screenings {
  opacity: 0.88;
}
