:root {
  --header-height: 102px;
  --page-padding: clamp(24px, 3.1vw, 54px);
  --featured-wheel-scale: 1.48;
  --featured-wheel-right: -6%;
  --black: #050505;
  --white: #ffffff;
  --line: #111111;
  --red: #ff333d;
  --blue: #2630d8;
  --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: #fff200;
  --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) - 2px);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--white);
  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: center;
  gap: clamp(28px, 5vw, 88px);
  width: 100%;
  height: var(--header-height);
  padding: 12px var(--page-padding);
  border-bottom: 2px solid var(--black);
  background: var(--white);
}

.brand {
  display: flex;
  align-items: center;
  align-self: center;
  gap: clamp(8px, 0.8vw, 14px);
  height: clamp(46px, 3.8vw, 60px);
}

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

.brand__wheel {
  height: 82%;
  transform-origin: center;
  will-change: transform;
}

.brand__type {
  height: 74%;
}

.main-nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  align-items: center;
  justify-content: end;
  align-self: center;
  gap: clamp(24px, 4.4vw, 92px);
  min-height: 0;
}

.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: 1.5px;
  text-underline-offset: 0.25em;
  transition: text-decoration-color 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  text-decoration-color: currentColor;
}

.menu-toggle {
  display: none;
}

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

.featured-section {
  padding: clamp(44px, 5vw, 72px) var(--page-padding) clamp(46px, 6vw, 78px);
}

.featured-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(6px, 1.2vw, 18px) 0;
}

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

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

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

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

.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--back {
  opacity: 1;
}

.featured-hero__wheel--front {
  opacity: 1;
}

.featured-divider {
  width: 100%;
  height: 2px;
  margin: clamp(30px, 4vw, 54px) 0 clamp(24px, 3vw, 40px);
  background: var(--black);
}

.featured-heading {
  margin: 0 0 clamp(24px, 3.2vw, 54px);
  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);
  background: var(--detail-background);
  color: var(--black);
  overflow: hidden;
  opacity: 0;
  transition: opacity 180ms ease;
}

@media (hover: hover) {
  .film-card:hover .film-card__screenings {
    opacity: 1;
  }
}

.film-card:focus-visible .film-card__screenings {
  opacity: 1;
}

.film-card__details {
  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 {
  display: grid;
  align-content: start;
  gap: clamp(14px, 3cqi, 26px);
  padding-top: 2px;
  background: var(--detail-background);
  position: relative;
  z-index: 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;
}

.carousel-button {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--white);
}

.carousel-button span {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

.carousel-button:hover span,
.carousel-button:focus-visible span {
  border-color: var(--black);
}

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

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

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

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

.schedule-section {
  min-height: 100vh;
  padding: 104px var(--page-padding) 86px;
  border-top: 2px solid var(--black);
}

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

.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 {
  font-size: clamp(14px, 1.4vw, 22px);
  text-align: right;
}

.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 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__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: 110px var(--page-padding);
  border-top: 2px solid var(--black);
}

.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--bar .content-section__body {
  gap: clamp(22px, 3vw, 34px);
}

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

.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-label,
.bar-menu__item-price {
  font-weight: 430;
}

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

.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);
  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-height: 72px;
    --featured-wheel-scale: 1.32;
    --featured-wheel-right: -10%;
  }

  .site-header {
    grid-template-columns: auto 1fr;
    gap: 20px;
    height: var(--header-height);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    height: 48px;
  }

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

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

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

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

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

  .featured-announcement__line {
    white-space: normal;
  }

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

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

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

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

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

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

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

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

@media (max-width: 680px) {
  :root {
    --header-height: 70px;
    --featured-wheel-scale: 1.18;
    --featured-wheel-right: -16%;
  }

  .site-header {
    grid-template-columns: 70px auto;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    height: 44px;
  }

  .brand__type {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    justify-self: end;
    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: 1;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    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;
  }

  .nav-link {
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 var(--page-padding);
    border-bottom: 1px solid var(--black);
    font-size: 16px;
    text-align: left;
  }

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

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

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

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

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

  .featured-announcement {
    font-size: clamp(40px, 11vw, 60px);
    line-height: 0.9;
  }

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

@media (max-width: 560px) {
  :root {
    --header-height: 70px;
    --page-padding: 18px;
    --carousel-gap: 5px;
    --carousel-card-width: calc(100vw - (var(--page-padding) * 2));
    --featured-wheel-scale: 1.06;
    --featured-wheel-right: -22%;
  }

  .site-header {
    grid-template-columns: 70px auto;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .menu-toggle {
    justify-self: end;
    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;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    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;
  }

  .nav-link {
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 var(--page-padding);
    border-bottom: 1px solid var(--black);
    font-size: 16px;
    text-align: left;
  }

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

  .brand {
    height: 44px;
  }

  .brand__type {
    display: none;
  }

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

  .featured-announcement {
    font-size: clamp(36px, 10.6vw, 50px);
    letter-spacing: -0.03em;
  }

  .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;
    gap: 8px;
  }

  .schedule-week__note {
    text-align: left;
  }

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

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

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

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