:root {
  --ink: #11100e;
  --paper: #f2eadf;
  --muted: #766f66;
  --line: rgba(17, 16, 14, 0.18);
  --gold: #f1c84b;
  --terracotta: #d13f2f;
  --olive: #263f34;
  --night: #12100f;
  --cream: #fff7e8;
  --stage-red: #a61f1f;
  --blue: #1c4b65;
  --shadow: 0 28px 90px rgba(17, 16, 14, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, rgba(17, 16, 14, 0.03) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button,
input,
textarea {
  font: inherit;
}

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

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

img {
  display: block;
  max-width: 100%;
  background: #2c2521;
  object-fit: cover;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 12px clamp(18px, 4vw, 54px);
  color: var(--cream);
  background: rgba(18, 16, 15, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--ink);
  font-weight: 900;
  background: var(--gold);
  border-radius: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 249, 238, 0.68);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.3vw, 18px);
  font-size: 13px;
  font-weight: 850;
  color: rgba(255, 249, 238, 0.78);
  text-transform: uppercase;
}

nav a {
  padding: 8px 0;
  white-space: nowrap;
}

nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle-label span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.ticket-link,
.primary-btn,
.ghost-btn,
.contact-form button,
.newsletter button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-weight: 800;
  text-transform: uppercase;
}

.ticket-link,
.primary-btn,
.contact-form button,
.newsletter button {
  color: var(--ink);
  background: var(--gold);
}

.ghost-btn {
  color: var(--cream);
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 78px);
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  padding: clamp(54px, 7vw, 104px) clamp(18px, 5vw, 72px) 42px;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(18, 16, 15, 0.98), rgba(18, 16, 15, 0.78) 47%, rgba(18, 16, 15, 0.12)),
    linear-gradient(135deg, rgba(166, 31, 31, 0.52), transparent 44%),
    var(--night);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(255, 247, 232, 0.06) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 247, 232, 0.04) 0 1px, transparent 1px 96px);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  content: "";
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-marquee {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  right: clamp(18px, 5vw, 72px);
  top: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 247, 232, 0.62);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Inter, sans-serif;
  font-size: clamp(46px, 7.6vw, 112px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
  text-transform: uppercase;
}

h2 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Inter, sans-serif;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.02;
  text-transform: uppercase;
}

h3 {
  line-height: 1.14;
}

.lead,
.page-hero p,
.detail-hero p {
  color: rgba(255, 249, 238, 0.78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stage {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.hero-main {
  width: min(100%, 640px);
  height: 72vh;
  min-height: 480px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
  filter: saturate(1.04) contrast(1.05);
}

.hero-float {
  position: absolute;
  width: clamp(140px, 15vw, 220px);
  aspect-ratio: 3 / 4;
  border: 6px solid var(--cream);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.hero-float.one {
  left: 0;
  bottom: 8%;
}

.hero-float.two {
  right: 8%;
  top: 8%;
}

.hero-float.three {
  left: 16%;
  top: -4%;
  width: clamp(120px, 11vw, 180px);
  opacity: 0.9;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0;
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.stats article {
  padding: clamp(22px, 3vw, 34px);
  background: var(--paper);
  border-right: 1px solid var(--ink);
}

.stats strong {
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Inter, sans-serif;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.84;
}

.stats span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading,
.page-hero {
  max-width: 1120px;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px) 28px;
}

.programme-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 76px);
  padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 72px);
  color: var(--cream);
  background: var(--stage-red);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.programme-block .eyebrow {
  color: var(--gold);
}

.programme-list {
  display: grid;
  border-top: 2px solid currentColor;
}

.programme-row {
  display: grid;
  grid-template-columns: 58px minmax(110px, 0.35fr) minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 12px 0;
  border-bottom: 1px solid currentColor;
}

.programme-row:hover {
  color: var(--gold);
}

.programme-no,
.programme-kicker,
.programme-cta {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.programme-row strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", Inter, sans-serif;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
}

.page-programme {
  margin: 0 clamp(18px, 5vw, 72px) 46px;
}

.section-heading.compact {
  padding-top: 74px;
}

.section-heading h2,
.page-hero h1 {
  color: inherit;
}

.hero h1 {
  font-size: clamp(52px, 8.6vw, 128px);
  line-height: 0.94;
}

.page-hero h1 {
  max-width: 1080px;
  font-size: clamp(42px, 6.2vw, 92px);
  line-height: 1.02;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0 clamp(18px, 5vw, 72px) clamp(54px, 8vw, 92px);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.poster-grid.wide {
  padding-top: 18px;
}

.poster-card,
.film-card,
.people-grid article,
.age-cards article,
.contact-grid article {
  background: var(--cream);
  border: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
}

.poster-card {
  min-height: 580px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.poster-card:hover,
.film-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 0 var(--ink);
}

.poster-media {
  height: 390px;
  background: var(--night);
}

.poster-media img {
  width: 100%;
  height: 100%;
}

.poster-info {
  padding: 24px;
}

.poster-info span,
.film-card span,
.age-cards span,
.contact-grid span {
  color: var(--stage-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-info h3 {
  margin: 10px 0;
  font-size: 30px;
  text-transform: uppercase;
}

.poster-info p,
.film-card p,
.content-flow p,
.contact-grid p {
  color: #5e554b;
  line-height: 1.65;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 8vw, 100px) clamp(18px, 5vw, 72px);
  color: var(--cream);
  background: var(--olive);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.split-band p {
  color: rgba(255, 249, 238, 0.76);
  line-height: 1.7;
}

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

.image-stack img {
  height: 420px;
  width: 100%;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0 clamp(18px, 5vw, 72px) 72px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.film-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
}

.film-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.film-card div {
  padding: 24px;
}

.cta-panel {
  margin: 0 clamp(18px, 5vw, 72px) 82px;
  padding: clamp(34px, 5vw, 62px);
  color: var(--cream);
  background:
    linear-gradient(115deg, rgba(18, 16, 15, 0.94), rgba(166, 31, 31, 0.82)),
    var(--night);
  border: 1px solid var(--ink);
}

.cta-panel p {
  color: rgba(255, 249, 238, 0.76);
}

.page-hero {
  min-height: 380px;
  color: var(--cream);
  background:
    linear-gradient(120deg, rgba(18, 16, 15, 0.97), rgba(18, 16, 15, 0.72)),
    var(--night);
  max-width: none;
  border-bottom: 1px solid var(--ink);
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 247, 232, 0.72);
}

.content-flow {
  max-width: 940px;
  padding: 16px clamp(18px, 5vw, 72px) 58px;
}

.content-flow h3 {
  margin: 30px 0 12px;
  font-size: clamp(24px, 3vw, 38px);
}

.content-flow .with-dot::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.people-grid,
.age-cards,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) 70px;
}

.people-grid article {
  padding: 18px;
}

.people-grid img {
  width: 100%;
  height: 520px;
}

.people-grid h3 {
  margin: 18px 0 4px;
  font-size: 28px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 0 clamp(18px, 5vw, 72px) 78px;
}

.logo-wall img {
  width: 100%;
  height: 118px;
  object-fit: contain;
  padding: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
}

.masonry {
  columns: 4 210px;
  column-gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) 82px;
}

.masonry img {
  width: 100%;
  margin: 0 0 14px;
  break-inside: avoid;
  border: 1px solid var(--line);
}

.masonry.small img {
  min-height: 210px;
}

.ensemble-index {
  position: sticky;
  top: 75px;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--gold);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.ensemble-index a {
  padding: 18px clamp(18px, 5vw, 72px);
  font-weight: 900;
  text-transform: uppercase;
  border-right: 1px solid var(--ink);
}

.ensemble-section {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.ensemble-section:nth-of-type(odd) {
  background: var(--cream);
}

.ensemble-heading {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: end;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--ink);
}

.ensemble-heading span {
  padding-bottom: 12px;
  font-weight: 900;
}

.ensemble-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.ensemble-grid figure {
  margin: 0;
  background: var(--paper);
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.ensemble-grid img {
  width: 100%;
  aspect-ratio: 7 / 9;
}

.ensemble-grid figcaption {
  padding: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.legacy-ensemble {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
}

.legacy-ensemble:nth-of-type(odd) {
  background: var(--cream);
}

.legacy-heading {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 28px;
  border-bottom: 2px solid var(--ink);
}

.legacy-heading span {
  padding-bottom: 12px;
  font-weight: 900;
}

.legacy-heading h2 {
  margin-bottom: 8px;
}

.portrait-rail,
.name-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}

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

.portrait-rail img,
.name-gallery img {
  width: 100%;
  height: auto;
  aspect-ratio: 7 / 9;
  background: #2c2521;
  object-fit: cover;
  scroll-snap-align: initial;
}

.rail-title {
  padding: 0 clamp(18px, 5vw, 72px);
  font-size: clamp(28px, 4vw, 48px);
}

.age-cards article,
.contact-grid article {
  padding: clamp(24px, 4vw, 42px);
}

.contact-grid {
  align-items: start;
}

.contact-form {
  display: grid;
  grid-column: span 2;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--night);
}

.contact-form input,
.contact-form textarea,
.newsletter input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid transparent;
  outline: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(26px, 5vw, 70px);
  align-items: end;
  padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px);
  color: var(--cream);
  background: var(--night);
}

.detail-hero img {
  width: 100%;
  max-height: 660px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1fr;
  gap: 24px;
  padding: 54px clamp(18px, 5vw, 72px);
  color: rgba(255, 249, 238, 0.75);
  background: #171210;
}

.footer h2,
.footer h3 {
  color: var(--cream);
}

.newsletter form {
  display: flex;
  gap: 8px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle-label {
    display: inline-flex;
  }

  nav {
    display: grid;
    max-height: 0;
    grid-column: 1 / -1;
    gap: 6px;
    width: 100%;
    overflow: hidden;
    padding: 0;
    transition: max-height 180ms ease, padding 180ms ease;
  }

  nav a {
    padding: 12px 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-toggle:checked ~ nav {
    max-height: 420px;
    padding-top: 10px;
  }

  .hero,
  .split-band,
  .detail-hero,
  .programme-block {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 440px;
  }

  .hero-main {
    height: 480px;
    margin: 0;
  }

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

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

  .logo-wall {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .portrait-rail,
  .name-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    display: none;
  }

  .ticket-link {
    min-height: 40px;
    padding: 0 14px;
    width: 100%;
    grid-column: 1 / -1;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  h1 {
    font-size: 42px;
    line-height: 1;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(40px, 14vw, 64px);
    line-height: 1;
  }

  .hero-stage {
    min-height: 340px;
  }

  .hero-main {
    height: 360px;
    min-height: 0;
  }

  .hero-float {
    display: none;
  }

  .stats,
  .poster-grid,
  .film-grid,
  .ensemble-grid,
  .people-grid,
  .age-cards,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .portrait-rail,
  .name-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .programme-row {
    grid-template-columns: 42px 1fr auto;
  }

  .programme-kicker {
    grid-column: 2 / -1;
    grid-row: 1;
  }

  .programme-row strong {
    grid-column: 2 / -1;
    font-size: 32px;
  }

  .programme-cta {
    display: none;
  }

  .ensemble-index {
    top: 64px;
  }

  .ensemble-index a {
    padding: 14px 16px;
  }

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

  .poster-media {
    height: 330px;
  }

  .contact-form {
    grid-column: auto;
  }

  .logo-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter form {
    flex-direction: column;
  }

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