:root {
  --wine: #35100f;
  --wine-soft: #5b1c19;
  --coral: #e65f4b;
  --gold: #d8a72c;
  --blue: #6f8ca1;
  --ink: #171512;
  --paper: #f3eadb;
  --cream: #fbf7ee;
  --line: rgba(23, 21, 18, 0.18);
  --shadow: 0 28px 80px rgba(39, 18, 12, 0.14);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Manrope, Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--cream);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.page-shell {
  width: min(1320px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 82px;
  padding: 12px 32px;
  color: var(--cream);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  color: var(--cream);
  background: rgba(53, 16, 15, 0.95);
  box-shadow: 0 8px 38px rgba(20, 5, 5, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 56px;
  height: 56px;
  overflow: visible;
  flex: 0 0 56px;
  background: transparent;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand__text {
  display: grid;
  color: var(--cream);
  line-height: 1.05;
}

.brand__text strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.brand__text small {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
  font-size: 13px;
  font-weight: 600;
}

.main-nav > a:not(.nav-ticket) {
  position: relative;
  padding-block: 10px;
}

.main-nav > a:not(.nav-ticket)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.nav-ticket):hover::after,
.main-nav > a:not(.nav-ticket):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-ticket {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 13px 17px;
  color: var(--wine);
  border-radius: 3px;
  background: var(--cream);
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled .nav-ticket {
  color: var(--wine);
  background: var(--cream);
}

.nav-ticket:hover {
  transform: translateY(-2px);
}

.nav-phone {
  color: #e9c690;
  font-variant-numeric: tabular-nums;
}

.site-header.is-scrolled .nav-phone {
  color: #e9c690;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  overflow: hidden;
  color: var(--cream);
  background: var(--wine);
}

.hero__art,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__art {
  background: url("assets/hero-theatre.webp") center / cover no-repeat;
  transform: scale(1.01);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(32, 6, 7, 0.96) 0%, rgba(32, 6, 7, 0.83) 35%, rgba(32, 6, 7, 0.14) 69%, rgba(32, 6, 7, 0.05) 100%),
    linear-gradient(0deg, rgba(22, 4, 5, 0.35), transparent 45%);
}

.hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-top: 116px;
  padding-bottom: 90px;
}

.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero__eyebrow {
  color: #e9c690;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 0.98;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 28px;
  font-size: clamp(58px, 7.25vw, 112px);
  letter-spacing: -0.052em;
}

.hero h1 em {
  color: #e9c690;
  font-weight: 400;
}

.hero__lead {
  max-width: 595px;
  margin-bottom: 34px;
  color: rgba(255, 249, 236, 0.8);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

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

.button--light {
  color: var(--wine);
  background: var(--cream);
}

.button--light:hover {
  background: #fff;
}

.button--dark {
  color: var(--cream);
  background: var(--wine);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
}

.text-link--light {
  color: rgba(255, 249, 236, 0.88);
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span {
  transform: translate(2px, -2px);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(650px, 100%);
  margin-top: 68px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__facts div {
  display: grid;
  padding: 20px 20px 0 0;
}

.hero__facts strong {
  color: #e9c690;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
}

.hero__facts span {
  margin-top: 3px;
  color: rgba(255, 249, 236, 0.62);
  font-size: 11px;
}

.hero__location {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 17px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(31, 7, 6, 0.58);
  backdrop-filter: blur(12px);
  font-family: var(--serif);
  font-size: 17px;
}

.hero__location small {
  display: block;
  margin-bottom: 2px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.65;
}

.hero__location-pin {
  width: 11px;
  height: 11px;
  border: 2px solid #e9c690;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.ticker {
  overflow: hidden;
  padding: 18px 0;
  color: var(--cream);
  background: var(--coral);
}

.ticker__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: ticker 26s linear infinite;
  will-change: transform;
}

.ticker__group {
  display: flex;
  width: max-content;
  min-width: 100vw;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding-inline: 15px;
}

.ticker span {
  font-family: var(--serif);
  font-size: 20px;
  white-space: nowrap;
}

.ticker b {
  color: var(--wine);
  font-size: 13px;
}

.audiences {
  padding: 86px 0 28px;
  background: var(--cream);
}

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

.audiences__intro .eyebrow {
  margin-bottom: 6px;
}

.audiences__intro h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(34px, 4.5vw, 62px);
  letter-spacing: -0.04em;
}

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

.audience-card {
  position: relative;
  display: grid;
  min-height: 230px;
  grid-template-rows: 1fr auto;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  transition: color 0.35s ease, background 0.35s ease;
}

.audience-card:last-child {
  border-right: 0;
}

.audience-card__age {
  align-self: start;
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 88px);
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
}

.audience-card__dash {
  display: inline-block;
  margin-inline: 0.08em;
}

.audience-card__copy {
  display: grid;
  gap: 4px;
  padding-right: 42px;
}

.audience-card__copy strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.audience-card__copy small {
  color: currentColor;
  font-size: 11px;
  opacity: 0.62;
}

.audience-card__arrow {
  position: absolute;
  right: 25px;
  bottom: 25px;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.audience-card:hover .audience-card__arrow {
  transform: translate(5px, 5px);
}

.audience-card--baby:hover {
  color: #2f0c0c;
  background: var(--coral);
}

.audience-card--family:hover {
  color: #2f1b05;
  background: var(--gold);
}

.audience-card--grown:hover {
  color: var(--cream);
  background: var(--wine);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: clamp(90px, 10vw, 150px) 0;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 70px;
}

.section-heading h2,
.first-visit h2,
.team-card h2,
.offsite h2,
.contacts h2 {
  margin-bottom: 26px;
  font-size: clamp(48px, 6vw, 88px);
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.section-heading--row > p,
.first-visit__intro > p,
.team-card__copy > p,
.offsite__card > div:nth-child(2) > p {
  max-width: 590px;
  color: rgba(23, 21, 18, 0.7);
  font-size: 18px;
}

.section-heading--row {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
  align-items: end;
  gap: 80px;
}

.section-heading--row h2 {
  margin-bottom: 0;
}

.section-heading--row > p {
  margin-bottom: 5px;
}

.about {
  overflow: clip;
  background: var(--cream);
}

.about .section-heading {
  max-width: none;
}

.about .section-heading > p:last-child {
  max-width: 920px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.about-quote {
  position: sticky;
  top: 130px;
  padding: 45px;
  color: var(--cream);
  border-radius: 4px;
  background: var(--wine);
  box-shadow: var(--shadow);
}

.quote-mark {
  display: block;
  height: 45px;
  color: #e9c690;
  font-family: var(--serif);
  font-size: 80px;
  line-height: 1;
}

.about-quote blockquote {
  margin: 15px 0 36px;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.12;
}

.principles {
  display: grid;
}

.principle {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 28px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
}

.principle:last-child {
  border-bottom: 1px solid var(--line);
}

.principle > span {
  padding-top: 8px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
}

.principle h3 {
  margin-bottom: 12px;
  font-size: 37px;
}

.principle p {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(23, 21, 18, 0.66);
}

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

.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.filter {
  padding: 9px 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.filter:hover,
.filter.is-active {
  color: var(--cream);
  background: var(--wine);
}

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

.play-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(23, 21, 18, 0.12);
  border-radius: 4px;
  background: var(--cream);
  box-shadow: 0 18px 48px rgba(39, 18, 12, 0.07);
  transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.play-card.is-hidden {
  display: none;
}

.play-card:hover {
  z-index: 1;
  box-shadow: 0 25px 64px rgba(39, 18, 12, 0.15);
  transform: translateY(-6px);
}

.play-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ink);
}

.play-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1);
}

.play-card:hover .play-card__media img {
  transform: scale(1.025);
}

.play-card__number {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(23, 21, 18, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
}

.play-card--baby .play-card__number { background: rgba(230, 95, 75, 0.9); }
.play-card--family .play-card__number { color: var(--ink); background: rgba(216, 167, 44, 0.92); }
.play-card--grown .play-card__number { background: rgba(91, 28, 25, 0.94); }

.play-card__body {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  padding: 23px 24px 24px;
}

.play-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  color: rgba(23, 21, 18, 0.54);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.play-card__top span:first-child { max-width: 62%; }
.play-card__top span:last-child { flex: 0 0 auto; white-space: nowrap; }

.play-card h3 {
  margin: 24px 0 12px;
  font-size: clamp(28px, 2.7vw, 39px);
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.play-card h3 a:hover,
.play-card h3 a:focus-visible {
  color: var(--wine-soft);
}

.play-card p {
  margin-bottom: 0;
  color: rgba(23, 21, 18, 0.67);
  font-size: 14px;
}

.play-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  padding-bottom: 1px;
  border-top: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.play-card__action:hover,
.play-card__action:focus-visible {
  color: var(--wine-soft);
  opacity: 1;
}

.repertoire-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 12px;
  padding: 22px 26px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
}

.repertoire-cta > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.repertoire-cta p {
  margin-bottom: 0;
}

.catalog-page .site-header {
  background: var(--wine);
}

.catalog-hero {
  padding: 170px 0 76px;
  color: var(--cream);
  background: linear-gradient(135deg, var(--wine) 0%, #26100e 100%);
}

.catalog-hero .eyebrow { color: #e9c690; }

.catalog-hero h1 {
  margin: 12px 0 20px;
  font-size: clamp(68px, 11vw, 148px);
  line-height: 0.85;
}

.catalog-hero p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 249, 236, 0.72);
  font-size: clamp(17px, 2vw, 22px);
}

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

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.35fr);
  gap: 18px;
  margin-bottom: 18px;
}

.catalog-search,
.catalog-select {
  display: grid;
  gap: 8px;
  color: rgba(23, 21, 18, 0.58);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-search input,
.catalog-select select {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 3px;
  outline: none;
  background: var(--cream);
  font: 600 16px/1.2 var(--sans);
}

.catalog-search input:focus,
.catalog-select select:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(91, 28, 25, 0.12);
}

.catalog-age-filters { flex-wrap: wrap; margin-bottom: 10px; }

.catalog-count {
  margin: 0 0 28px;
  color: rgba(23, 21, 18, 0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-empty {
  padding: 70px 24px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--cream);
}

.catalog-empty[hidden] { display: none; }
.catalog-empty h2 { margin-bottom: 10px; font-size: clamp(38px, 5vw, 60px); }
.catalog-empty p { margin-bottom: 24px; color: rgba(23, 21, 18, 0.62); }

.schedule {
  margin-top: 32px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--cream);
}

.schedule__heading,
.schedule__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.schedule__heading { margin-bottom: 30px; }
.schedule__heading h3 { margin-top: 10px; font-size: clamp(42px, 5vw, 68px); line-height: 0.95; }
.schedule__heading > p { max-width: 420px; margin: 0; color: rgba(23, 21, 18, 0.62); }
.schedule__list { border-top: 1px solid var(--line); }

.schedule__row {
  display: grid;
  grid-template-columns: 140px 70px minmax(0, 1fr) 42px;
  gap: 18px;
  align-items: baseline;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.schedule__row time,
.schedule__row span,
.schedule__row b {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.schedule__row span { color: var(--coral); }
.schedule__row b { text-align: right; }
.schedule__row a { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 31px); line-height: 1.05; }
.schedule__row a:hover,
.schedule__row a:focus-visible { color: var(--wine-soft); text-decoration: underline; text-underline-offset: 4px; }
.schedule__footer { margin-top: 28px; }
.schedule__footer p { max-width: 540px; margin: 0; color: rgba(23, 21, 18, 0.62); }

@media (max-width: 760px) {
  .catalog-hero { padding: 130px 0 54px; }
  .catalog-toolbar { grid-template-columns: 1fr; }
  .schedule__heading,
  .schedule__footer { align-items: flex-start; flex-direction: column; }
  .schedule__row { grid-template-columns: 1fr 58px 34px; gap: 8px 12px; }
  .schedule__row time { grid-column: 1 / -1; color: rgba(23, 21, 18, 0.55); }
  .schedule__row a { grid-column: 1; grid-row: 2; }
  .schedule__row span { grid-column: 2; grid-row: 2; }
  .schedule__row b { grid-column: 3; grid-row: 2; }
  .schedule__footer .button { width: 100%; }
}

.pulse {
  position: relative;
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: var(--coral);
}

.pulse::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--coral);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.journal {
  background: var(--cream);
}

.journal-feature {
  display: grid;
  min-height: 600px;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  overflow: hidden;
  color: var(--cream);
  border-radius: 4px;
  background: var(--wine);
}

.journal-feature__copy {
  align-self: center;
  padding: clamp(40px, 6vw, 78px);
}

.journal-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #e9c690;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-status i {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.journal-status i::after {
  position: absolute;
  inset: -5px;
  content: "";
  border: 1px solid var(--coral);
  border-radius: 50%;
  animation: pulse 1.8s ease-out infinite;
}

.journal-feature h3 {
  max-width: 760px;
  margin: 24px 0 18px;
  font-size: clamp(43px, 5.2vw, 70px);
  line-height: 0.98;
}

.journal-feature__copy > p {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 249, 236, 0.7);
}

.journal-feature__aside {
  position: relative;
  display: block;
  min-height: 600px;
  overflow: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background: #20120f;
}

.journal-feature__poster img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.45s ease;
}

.journal-feature__poster:hover img,
.journal-feature__poster:focus-visible img {
  transform: scale(1.015);
}

.journal-feature__poster > span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  background: rgba(23, 21, 18, 0.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.journal-video {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  margin-top: 32px;
  overflow: hidden;
  color: var(--cream);
  border-radius: 4px;
  background: var(--ink);
}

.journal-video__copy {
  min-width: 0;
  align-self: center;
  padding: clamp(34px, 5vw, 62px);
}

.journal-video__copy .eyebrow {
  color: #e9c690;
}

.journal-video__copy h3 {
  max-width: 520px;
  margin: 18px 0;
  font-size: clamp(36px, 3.4vw, 54px);
  line-height: 1;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.journal-video__copy > p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 26px;
  color: rgba(255, 249, 236, 0.7);
}

.journal-video__player {
  align-self: center;
  aspect-ratio: 16 / 9;
  background: #090707;
}

.journal-video__player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1100px) {
  .journal-video { grid-template-columns: 1fr; }
  .journal-video__copy { padding: clamp(38px, 7vw, 64px); }
  .journal-video__copy h3 { max-width: 760px; }
  .journal-video__player { width: 100%; }
}

.news-feed {
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.news-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 52px;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: 30px 12px;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease, padding 0.25s ease;
}

.news-item:hover {
  padding-inline: 22px;
  color: var(--wine);
  background: rgba(233, 198, 144, 0.16);
}

.news-item time {
  display: grid;
  padding-right: 22px;
  border-right: 1px solid var(--line);
}

.news-item time span {
  font-family: var(--serif);
  font-size: 48px;
  line-height: 0.9;
}

.news-item time small,
.news-item__body > span {
  margin-top: 7px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-item time small {
  color: rgba(23, 21, 18, 0.48);
}

.news-item__body > span {
  display: block;
  margin: 0 0 8px;
  color: var(--coral);
}

.news-item h3 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 35px);
  line-height: 1.08;
}

.news-item p {
  max-width: 850px;
  margin: 10px 0 0;
  color: rgba(23, 21, 18, 0.62);
  font-size: 13px;
}

.news-item__arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.news-item:hover .news-item__arrow {
  color: var(--cream);
  background: var(--wine);
  transform: rotate(8deg);
}

.first-visit {
  color: var(--cream);
  background: var(--wine);
}

.first-visit__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(70px, 10vw, 150px);
}

.first-visit__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.first-visit__intro > p {
  color: rgba(255, 249, 236, 0.7);
}

.visit-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.visit-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 28px;
  padding: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.visit-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.visit-steps > li > span {
  padding-top: 7px;
  color: #e9c690;
  font-size: 11px;
  font-weight: 700;
}

.visit-steps h3 {
  margin-bottom: 14px;
  font-size: 34px;
}

.visit-steps p {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(255, 249, 236, 0.66);
}

.team {
  padding-bottom: 0;
  background: var(--cream);
}

.team-card {
  position: relative;
  display: grid;
  min-height: 680px;
  grid-template-columns: 1fr 0.85fr;
  gap: 80px;
  padding: clamp(44px, 6vw, 86px);
  overflow: hidden;
  background: var(--paper);
}

.team-card__head,
.team-card__copy {
  position: relative;
  z-index: 2;
}

.team-card__copy {
  padding-top: 14px;
}

.team-names {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
}

.team-names p {
  display: grid;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.team-names strong {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}

.team-names span {
  color: rgba(23, 21, 18, 0.58);
  font-size: 11px;
}

.team-card__lion {
  position: absolute;
  z-index: 1;
  bottom: -32%;
  left: -2%;
  width: 43%;
  mix-blend-mode: multiply;
  opacity: 0.12;
  transform: rotate(-8deg);
}

.offsite {
  background: var(--cream);
}

.offsite__card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(60px, 10vw, 150px);
  padding: clamp(45px, 7vw, 90px);
  overflow: hidden;
  color: var(--cream);
  border-radius: 4px;
  background: var(--coral);
}

.offsite__card > div {
  position: relative;
  z-index: 2;
}

.offsite__card > div:nth-child(2) {
  align-self: end;
}

.offsite__card > div:nth-child(2) > p {
  color: rgba(255, 249, 236, 0.82);
}

.offsite__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 30px;
}

.offsite__tags span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offsite h2 {
  margin-bottom: 0;
}

.offsite__star {
  position: absolute;
  top: -110px;
  right: 41%;
  color: var(--wine);
  font-family: var(--serif);
  font-size: 260px;
  line-height: 1;
  opacity: 0.11;
  transform: rotate(14deg);
}

.faq {
  padding-top: 0;
  background: var(--cream);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(60px, 10vw, 150px);
}

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

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

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.2;
  list-style: none;
}

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

.faq summary span {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.faq summary span::before,
.faq summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  content: "";
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq details p {
  max-width: 700px;
  margin: -4px 50px 25px 0;
  color: rgba(23, 21, 18, 0.66);
}

.contacts {
  color: var(--cream);
  background: var(--ink);
}

.contacts__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 10vw, 150px);
  align-items: stretch;
}

.contacts__items {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.contacts__items a {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contacts__items small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contacts__items strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
}

.contacts__items a > span {
  transition: transform 0.2s ease;
}

.contacts__items a:hover > span {
  transform: translate(3px, -3px);
}

.map-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--paper);
}

.map-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-card__consent {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 40px 40px 120px;
  color: var(--ink);
  text-align: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(216, 167, 44, 0.15), transparent 27%),
    radial-gradient(circle at 82% 74%, rgba(111, 140, 161, 0.2), transparent 32%),
    var(--paper);
}

.map-card__consent[hidden] {
  display: none;
}

.map-card__consent > span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  color: #fff;
  border-radius: 50% 50% 50% 14%;
  background: #fc3f1d;
  box-shadow: 0 12px 28px rgba(53, 16, 15, 0.15);
  font-family: var(--serif);
  font-size: 0;
  transform: rotate(-8deg);
}

.map-card__consent > span::before {
  content: "Я";
  font-size: 27px;
  font-weight: 700;
  transform: rotate(8deg);
}

.map-card__consent strong {
  margin-top: 18px;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

.map-card__consent p {
  max-width: 350px;
  margin: 9px 0 20px;
  color: rgba(23, 21, 18, 0.64);
  font-size: 13px;
}

.map-card__consent button {
  padding: 11px 16px;
  color: var(--cream);
  border: 0;
  border-radius: 2px;
  background: var(--wine);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.map-card__consent button:hover {
  background: var(--wine-soft);
  transform: translateY(-2px);
}

.map-card__caption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid rgba(23, 21, 18, 0.13);
  border-radius: 3px;
  background: rgba(251, 247, 238, 0.94);
  box-shadow: 0 12px 40px rgba(35, 18, 12, 0.18);
  backdrop-filter: blur(12px);
}

.map-card__caption > span {
  display: grid;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.1;
}

.map-card__caption small {
  margin-bottom: 3px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
}

.map-card__caption a {
  padding: 10px 13px;
  color: var(--cream);
  border-radius: 2px;
  background: var(--wine);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* Performance pages */
.performance-page {
  background: var(--cream);
}

.performance-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: var(--cream);
  background: var(--wine);
  isolation: isolate;
}

.performance-hero__backdrop,
.performance-hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.performance-hero__backdrop {
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.05);
  transform: scale(1.02);
}

.performance-hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(24, 6, 7, 0.96) 0%, rgba(38, 8, 9, 0.86) 50%, rgba(24, 6, 7, 0.58) 100%),
    linear-gradient(0deg, rgba(14, 4, 4, 0.72), transparent 60%);
}

.performance-hero__grid {
  display: grid;
  min-height: 850px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: end;
  padding-top: 150px;
  padding-bottom: 80px;
}

.performance-hero__copy {
  min-width: 0;
  padding-bottom: 18px;
}

.performance-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 70px;
  color: rgba(255, 249, 236, 0.7);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.performance-breadcrumb:hover,
.performance-breadcrumb:focus-visible {
  color: var(--cream);
  transform: translateX(-3px);
}

.performance-hero h1 {
  max-width: 930px;
  margin: 18px 0 20px;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.performance-hero__source {
  max-width: 760px;
  margin: 0 0 22px;
  color: #e9c690;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.25;
}

.performance-hero__lead {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 249, 236, 0.76);
  font-size: clamp(17px, 1.6vw, 21px);
}

.performance-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 0;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.performance-hero__meta li {
  min-width: 150px;
  padding: 2px 28px 2px 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.performance-hero__meta small,
.performance-hero__meta strong {
  display: block;
}

.performance-hero__meta small {
  color: rgba(255, 249, 236, 0.52);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.performance-hero__meta strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
}

.performance-hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.performance-poster {
  position: relative;
  width: min(100%, 430px);
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: #160707;
  box-shadow: 0 34px 85px rgba(0, 0, 0, 0.38);
  transform: rotate(1.4deg);
}

.performance-poster img {
  width: 100%;
  max-height: 650px;
  object-fit: contain;
}

.performance-poster figcaption {
  position: absolute;
  right: 13px;
  bottom: 13px;
  padding: 8px 10px;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  background: rgba(23, 21, 18, 0.82);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.performance-story {
  background: var(--cream);
}

.performance-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(70px, 11vw, 160px);
  align-items: start;
}

.performance-story__copy h2,
.performance-section-heading h2,
.performance-book h2 {
  margin: 16px 0 36px;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.045em;
}

.performance-story__copy > p:not(.eyebrow) {
  max-width: 780px;
  color: rgba(23, 21, 18, 0.74);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.45;
}

.performance-details {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 42px;
  padding: 38px;
  color: var(--cream);
  border-radius: 4px;
  background: var(--wine);
  box-shadow: var(--shadow);
}

.performance-details__label {
  margin: 0 0 17px;
  color: #e9c690;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.performance-facts,
.performance-credits {
  margin: 0;
}

.performance-facts > div,
.performance-credits > div {
  display: grid;
  grid-template-columns: minmax(110px, 0.72fr) minmax(0, 1.28fr);
  gap: 20px;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.performance-facts > div:last-child,
.performance-credits > div:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.performance-details dt {
  color: rgba(255, 249, 236, 0.52);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.performance-details dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.3;
}

.performance-gallery {
  padding-top: 30px;
  background: var(--paper);
}

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

.performance-section-heading h2 {
  margin-bottom: 0;
}

.performance-gallery__grid {
  columns: 3 300px;
  column-gap: 14px;
}

.performance-gallery__item {
  display: inline-block;
  width: 100%;
  margin: 0 0 14px;
  overflow: hidden;
  border-radius: 3px;
  background: var(--ink);
  break-inside: avoid;
}

.performance-gallery__item button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  color: inherit;
  border: 0;
  background: none;
  cursor: zoom-in;
}

.performance-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.performance-gallery__item:hover img {
  transform: scale(1.025);
}

body.lightbox-open { overflow: hidden; }

.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  color: var(--cream);
  border: 0;
  background: transparent;
}

.gallery-lightbox::backdrop { background: rgba(8, 6, 5, 0.92); }
.gallery-lightbox__backdrop { position: fixed; inset: 0; }

.gallery-lightbox__panel {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: 58px minmax(0, 1fr) 112px;
  padding: 0 20px 14px;
  pointer-events: none;
}

.gallery-lightbox__topbar {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  pointer-events: auto;
}

.gallery-lightbox__topbar button,
.gallery-lightbox__arrow {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(23, 21, 18, 0.55);
  cursor: pointer;
  font-size: 26px;
  pointer-events: auto;
}

.gallery-lightbox__topbar button { border: 0; background: transparent; font-size: 34px; }
.gallery-lightbox__arrow { align-self: center; justify-self: center; }
.gallery-lightbox__arrow--prev { grid-column: 1; grid-row: 2; }
.gallery-lightbox__arrow--next { grid-column: 3; grid-row: 2; }

.gallery-lightbox__stage {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  place-items: center;
  pointer-events: auto;
}

.gallery-lightbox__stage img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
}

.gallery-lightbox__thumbs {
  display: flex;
  grid-column: 1 / -1;
  grid-row: 3;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  padding: 12px 8px 4px;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  pointer-events: auto;
}

.gallery-lightbox__thumbs button {
  width: 92px;
  height: 72px;
  flex: 0 0 92px;
  padding: 3px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  cursor: pointer;
  opacity: 0.55;
}

.gallery-lightbox__thumbs button.is-active { border-color: var(--cream); opacity: 1; }
.gallery-lightbox__thumbs img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 680px) {
  .gallery-lightbox__panel {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    grid-template-rows: 54px minmax(0, 1fr) 94px;
    padding-inline: 4px;
  }
  .gallery-lightbox__arrow { width: 40px; height: 40px; font-size: 20px; }
  .gallery-lightbox__thumbs button { width: 72px; height: 58px; flex-basis: 72px; }
}

.performance-book {
  padding: clamp(80px, 10vw, 150px) 0;
  color: var(--cream);
  background: var(--wine);
}

.performance-book__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(60px, 11vw, 160px);
  align-items: end;
}

.performance-book h2 {
  margin-bottom: 0;
}

.performance-book__copy p {
  max-width: 520px;
  margin: 0 0 30px;
  color: rgba(255, 249, 236, 0.7);
  font-size: 18px;
}

.performance-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding-top: 14px;
  padding-bottom: 14px;
  background: var(--cream);
}

.performance-switcher a {
  display: grid;
  min-width: 0;
  min-height: 150px;
  align-content: center;
  gap: 8px;
  padding: 28px;
  border: 1px solid var(--line);
  transition: color 0.2s ease, background 0.2s ease;
}

.performance-switcher a:last-child {
  text-align: right;
}

.performance-switcher a:hover,
.performance-switcher a:focus-visible {
  color: var(--cream);
  background: var(--ink);
}

.performance-switcher small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
}

.performance-switcher strong {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 500;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 56px 0 24px;
  color: var(--cream);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--ink);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 50px;
  align-items: start;
}

.brand--footer .brand__mark {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
}

.site-footer__grid > p {
  margin: 0;
  color: rgba(255, 249, 236, 0.65);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}

.site-footer__links {
  display: flex;
  gap: 26px;
  font-size: 12px;
  font-weight: 700;
}

.site-footer__links a:hover {
  color: #e9c690;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.38);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-notice {
  position: fixed;
  z-index: 130;
  left: 20px;
  bottom: 20px;
  width: min(430px, calc(100% - 40px));
  padding: 15px;
  color: var(--ink);
  border: 1px solid rgba(23, 21, 18, 0.18);
  border-radius: 5px;
  background: rgba(251, 247, 238, 0.97);
  box-shadow: 0 20px 60px rgba(35, 18, 12, 0.2);
  backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.cookie-notice[hidden] {
  display: none;
}

.cookie-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-notice__copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: center;
}

.cookie-notice__icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
  overflow: hidden;
  color: transparent;
  border-radius: 50%;
  background:
    radial-gradient(circle at 33% 35%, var(--cream) 0 2px, transparent 2.5px),
    radial-gradient(circle at 63% 63%, var(--cream) 0 2px, transparent 2.5px),
    radial-gradient(circle at 68% 27%, var(--cream) 0 1.5px, transparent 2px),
    var(--coral);
}

.cookie-notice__icon::after {
  content: "";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cream);
}

.cookie-notice strong {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.1;
}

.cookie-notice p {
  margin: 3px 0 0;
  color: rgba(23, 21, 18, 0.62);
  font-size: 11px;
  line-height: 1.4;
}

.cookie-notice__actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-notice__actions button {
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--wine);
  border-radius: 2px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

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

.cookie-notice__accept {
  color: var(--cream);
  background: var(--wine);
}

.cookie-notice__accept:hover {
  background: var(--wine-soft);
}

.cookie-notice__essential {
  color: var(--wine);
  background: transparent;
}

.cookie-notice__essential:hover {
  background: rgba(53, 16, 15, 0.06);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.7,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .page-shell { width: min(100% - 44px, 980px); }
  .site-header { padding-inline: 22px; }
  .main-nav { gap: 13px; font-size: 11px; }
  .main-nav .nav-phone { display: none; }
  .nav-ticket { gap: 10px; padding-inline: 13px; }
  .hero { min-height: 760px; }
  .hero__shade { background: linear-gradient(90deg, rgba(32, 6, 7, 0.95), rgba(32, 6, 7, 0.7) 52%, rgba(32, 6, 7, 0.16)); }
  .about-grid,
  .first-visit__grid,
  .faq__grid,
  .contacts__grid { gap: 70px; }
  .repertoire-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-card { grid-template-columns: 1fr; gap: 20px; }
  .team-card__copy { max-width: 700px; }
  .team-card__lion { right: -5%; bottom: -25%; left: auto; width: 48%; }
  .offsite__card { gap: 60px; }
  .audience-card { min-height: 210px; padding: 24px; }
  .performance-hero__grid { grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr); gap: 45px; }
  .performance-hero h1 { font-size: clamp(54px, 8vw, 91px); }
  .performance-story__grid { gap: 70px; }
}

@media (max-width: 800px) {
  html { scroll-padding-top: 72px; }
  .page-shell { width: min(100% - 32px, 680px); }
  .site-header { min-height: 72px; padding: 10px 16px; }
  .site-header.is-scrolled { backdrop-filter: none; }
  .brand__mark { width: 48px; height: 48px; flex-basis: 48px; }
  .brand__text strong { font-size: 18px; }
  .main-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    overflow-y: auto;
    padding: 32px;
    color: var(--cream);
    background: var(--wine);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  body.menu-open .cookie-notice { opacity: 0; pointer-events: none; }
  .main-nav .nav-phone { display: block; }
  .main-nav > a:not(.nav-ticket) {
    display: block;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
  }
  .nav-ticket { justify-content: space-between; margin-top: 28px; color: var(--wine) !important; background: var(--cream) !important; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

  .hero { min-height: 810px; }
  .hero__art { background-position: 68% center; }
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(32, 6, 7, 0.92), rgba(32, 6, 7, 0.52)),
      linear-gradient(0deg, rgba(22, 4, 5, 0.55), transparent 60%);
  }
  .hero__content { align-self: end; padding-top: 130px; padding-bottom: 118px; }
  .hero h1 { font-size: clamp(51px, 14vw, 78px); }
  .hero__lead { max-width: 540px; font-size: 17px; }
  .hero__facts { margin-top: 48px; }
  .hero__location { right: 16px; bottom: 16px; left: 16px; justify-content: center; }

  .audiences { padding-top: 70px; }
  .audiences__intro { align-items: flex-start; flex-direction: column; gap: 8px; }
  .audiences__grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 165px; border-right: 0; border-bottom: 1px solid var(--line); }
  .audience-card:last-child { border-bottom: 0; }
  .audience-card__age { font-size: 62px; }

  .section { padding: 90px 0; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2,
  .first-visit h2,
  .team-card h2,
  .offsite h2,
  .contacts h2 { font-size: clamp(44px, 12vw, 68px); }
  .section-heading--row { grid-template-columns: 1fr; gap: 22px; }
  .about-grid,
  .first-visit__grid,
  .faq__grid,
  .contacts__grid,
  .offsite__card { grid-template-columns: 1fr; }
  .about-quote,
  .first-visit__intro { position: relative; top: auto; }
  .about-grid,
  .first-visit__grid,
  .faq__grid,
  .contacts__grid { gap: 52px; }
  .repertoire-cta { align-items: flex-start; flex-direction: column; }
  .repertoire-cta .button { width: 100%; }
  .journal-feature { grid-template-columns: 1fr; }
  .journal-feature__aside { min-height: 0; aspect-ratio: 2033 / 2560; border-top: 1px solid rgba(255, 255, 255, 0.15); border-left: 0; }
  .journal-video { grid-template-columns: 1fr; }
  .journal-video__player { width: 100%; }
  .news-item { grid-template-columns: 100px minmax(0, 1fr) 46px; gap: 28px; }
  .team-card { padding: 40px 28px 260px; }
  .team-card__lion { right: 5%; bottom: -28%; width: 72%; }
  .offsite__card { gap: 35px; }
  .offsite__star { right: -30px; }
  .map-card { min-height: 500px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__links { grid-column: 1 / -1; }

  .performance-hero,
  .performance-hero__grid { min-height: 0; }
  .performance-hero__grid { grid-template-columns: 1fr; gap: 55px; padding-top: 130px; padding-bottom: 70px; }
  .performance-hero__copy { padding-bottom: 0; }
  .performance-breadcrumb { margin-bottom: 52px; }
  .performance-hero h1 { max-width: 700px; font-size: clamp(54px, 13vw, 88px); }
  .performance-poster { width: min(70vw, 430px); justify-self: start; }
  .performance-story__grid,
  .performance-book__inner { grid-template-columns: 1fr; gap: 55px; }
  .performance-details { position: static; }
  .performance-gallery__grid { columns: 2 260px; }
}

@media (max-width: 800px) and (max-height: 700px) {
  .main-nav {
    justify-content: flex-start;
    padding-top: 24px;
  }

  .main-nav > a:not(.nav-ticket) {
    padding-block: 12px;
    font-size: 29px;
  }

  .nav-ticket { margin-top: 20px; }
}

@media (max-width: 540px) {
  .brand__text small { display: none; }
  .hero { min-height: 770px; }
  .hero__art { background-position: 70% center; }
  .hero__shade { background: linear-gradient(90deg, rgba(32, 6, 7, 0.92), rgba(32, 6, 7, 0.36)), linear-gradient(0deg, rgba(22, 4, 5, 0.72), transparent 70%); }
  .hero__content { padding-bottom: 120px; }
  .hero__eyebrow { margin-bottom: 15px; }
  .hero h1 { font-size: clamp(47px, 15vw, 68px); }
  .hero__actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero__actions .button { width: 100%; }
  .hero__actions .text-link { align-self: flex-start; }
  .hero__facts { display: none; }
  .ticker { padding: 14px 0; }
  .ticker span { font-size: 17px; }
  .repertoire-grid { grid-template-columns: 1fr; }
  .play-card { min-height: 0; }
  .play-card__body { min-height: 0; }
  .filters { overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { white-space: nowrap; }
  .about-quote { padding: 30px; }
  .principle { grid-template-columns: 42px 1fr; gap: 15px; }
  .journal-feature__copy { padding: 38px 24px 42px; }
  .journal-feature h3 { font-size: clamp(38px, 11vw, 52px); }
  .journal-feature__aside { min-height: 0; }
  .journal-feature__poster > span { right: 10px; bottom: 10px; }
  .journal-video { margin-top: 20px; }
  .journal-video__copy { padding: 36px 24px; }
  .journal-video__copy h3 { font-size: clamp(36px, 10.5vw, 48px); }
  .news-feed { margin-top: 34px; }
  .news-item { grid-template-columns: 64px minmax(0, 1fr); gap: 16px; padding: 24px 0; }
  .news-item:hover { padding-inline: 8px; }
  .news-item time { padding-right: 12px; }
  .news-item time span { font-size: 38px; }
  .news-item h3 { font-size: 22px; }
  .news-item p { font-size: 12px; }
  .news-item__arrow { display: none; }
  .visit-steps li { grid-template-columns: 38px 1fr; gap: 14px; }
  .team-names { grid-template-columns: 1fr; }
  .team-card { min-height: 0; padding: 34px 22px 210px; }
  .team-card__lion { right: 4%; bottom: -20%; width: 86%; }
  .offsite__card { width: 100%; padding: 50px 24px; border-radius: 0; }
  .faq summary { font-size: 21px; }
  .contacts__items a { grid-template-columns: 1fr auto; }
  .contacts__items small { grid-column: 1 / -1; }
  .contacts__items strong { overflow-wrap: anywhere; }
  .map-card { min-height: 420px; }
  .map-card__consent { padding: 28px 24px 150px; }
  .map-card__consent > span { width: 54px; height: 54px; }
  .map-card__consent > span::before { font-size: 24px; }
  .map-card__caption { right: 10px; bottom: 10px; left: 10px; align-items: stretch; flex-direction: column; gap: 10px; }
  .map-card__caption a { text-align: center; }
  .cookie-notice {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    padding: 13px;
  }
  .cookie-notice__actions button { flex: 1; padding-inline: 8px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__links { grid-column: auto; flex-wrap: wrap; }
  .site-footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }

  .performance-hero__grid { gap: 42px; padding-top: 112px; padding-bottom: 52px; }
  .performance-breadcrumb { margin-bottom: 38px; }
  .performance-hero h1 {
    font-size: clamp(38px, 11.5vw, 48px);
    line-height: 0.94;
    overflow-wrap: normal;
    hyphens: auto;
  }
  .performance-hero__lead { font-size: 16px; }
  .performance-hero__meta { gap: 22px 0; margin-top: 32px; }
  .performance-hero__meta li { min-width: 50%; padding-right: 15px; }
  .performance-hero__actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .performance-hero__actions .button { width: 100%; }
  .performance-hero__actions .text-link { align-self: flex-start; }
  .performance-poster { width: 100%; transform: none; }
  .performance-story__copy h2,
  .performance-section-heading h2,
  .performance-book h2 { font-size: clamp(46px, 14vw, 68px); }
  .performance-story__copy > p:not(.eyebrow) { font-size: 20px; }
  .performance-details { gap: 34px; padding: 28px 22px; }
  .performance-facts > div,
  .performance-credits > div { grid-template-columns: 1fr; gap: 4px; }
  .performance-gallery__grid { columns: 1; }
  .performance-switcher { grid-template-columns: 1fr; }
  .performance-switcher a { min-height: 120px; padding: 22px; }
  .performance-switcher a:last-child { text-align: left; }
}

@media (max-width: 360px) {
  .site-header { padding-inline: 10px; }
  .brand { gap: 8px; }
  .brand__mark { width: 44px; height: 44px; flex-basis: 44px; }
  .brand__text strong { font-size: 15px; }
  .menu-toggle { width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
