﻿:root {
  --ink: #070717;
  --navy: #0b1140;
  --blue: #17236d;
  --gold: #f1ca6b;
  --gold-light: #fff0b9;
  --rose: #e77dbb;
  --paper: #fffdf9;
  --muted: #c9cbe0;
  --line: rgba(241, 202, 107, .27);
  --panel: rgba(255, 255, 255, .055);
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 8%, rgba(80, 82, 190, .25), transparent 34rem),
    radial-gradient(circle at 93% 25%, rgba(211, 65, 151, .13), transparent 30rem),
    linear-gradient(145deg, var(--ink), var(--navy) 60%, #060719) fixed;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
}

body.lightbox-open { overflow: hidden; }
img, video, iframe, object, embed { max-width: 100%; }
img { height: auto; }
a { color: var(--gold-light); text-underline-offset: .2em; }
a:hover { color: #fff; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #111;
  background: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 26, .89);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  width: min(1240px, calc(100% - 36px));
  min-height: 78px;
  margin: auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}
.brand img { width: 56px; height: 56px; object-fit: contain; }
.brand span { display: grid; line-height: 1; }
.brand strong {
  color: var(--gold);
  font: 600 clamp(1.45rem, 2.3vw, 1.85rem)/1 Georgia, serif;
}
.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 3px; }
.site-nav a {
  padding: 9px 10px;
  border-radius: 9px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(241, 202, 107, .13);
}
.menu-toggle {
  display: none;
  min-width: 54px;
  min-height: 50px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #fff;
  background: rgba(255,255,255,.06);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}
.menu-toggle b { display: block; margin-top: 3px; font-size: .6rem; }

.page-shell {
  width: min(1280px, calc(100% - 24px));
  min-height: calc(100vh - 200px);
  margin: clamp(25px, 5vw, 70px) auto;
}
.page-title { margin-bottom: 30px; text-align: center; }
.eyebrow {
  margin: 0 0 8px;
  color: var(--rose);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}
h1, h2, h3 {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
}
h1 { margin: 0; font-size: clamp(2.4rem, 7vw, 5rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
.page-content {
  padding: clamp(18px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
}
.page-content h2,
.page-content h3 {
  text-align: center;
}
.page-content p { margin: 0 0 .8em; font-style: normal; }
.page-content address { font-style: normal; }
.page-content address span,
.page-content .tax-data span {
  display: block;
  margin: .15em 0;
}
.page-content font { font: inherit; color: inherit; }
.page-content table {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0;
}
.page-content td, .page-content th { height: auto; padding: clamp(3px, 1vw, 10px); }
.page-content [class*="align-center"] { text-align: center; }
.page-content [class*="align-right"] { text-align: right; }
.page-content img { border-radius: 10px; }
.page-content a > img { transition: transform .2s ease, filter .2s ease; }
.page-content a:hover > img { transform: translateY(-2px); filter: brightness(1.08); }
.home-page .page-content {
  text-align: center;
}
.home-page .page-content > div,
.home-page .page-content > table,
.home-page .page-content td {
  text-align: center;
}
.home-page .page-content img[align="left"],
.home-page .page-content img[align="right"] {
  display: block;
  float: none;
  margin: 18px auto 30px;
}
.home-page .page-content p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.home-page .page-content table table {
  margin-top: 18px;
}
.home-notice {
  width: min(100%, 900px);
  margin: 0 auto 45px;
  padding: 22px clamp(18px, 4vw, 38px);
  border: 1px solid rgba(233, 139, 150, .48);
  border-top: 4px solid #e98b96;
  border-radius: 14px;
  color: #ffe8ea;
  background: rgba(147, 25, 44, .2);
  text-align: center;
}
.home-notice p {
  margin-bottom: .35em;
}
.home-stage {
  text-align: center;
}
.home-stage > h2 {
  max-width: 950px;
  margin: 0 auto 30px;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}
.home-stage-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 80px);
}
.home-main-figure {
  margin: 0;
  text-align: center;
}
.home-main-figure img {
  max-height: 680px;
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, .46));
}
.home-stage-copy {
  text-align: center;
}
.home-stage-copy p:not(.show-quote) {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
}
.transformation-world {
  margin-top: 40px;
  padding: 50px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.transformation-columns {
  display: grid;
  margin-top: 25px;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 65px);
  text-align: left;
}
.home-signatures {
  display: grid;
  padding: 50px 0;
  gap: 22px;
}
.home-signatures article {
  display: grid;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 20px;
  align-items: center;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 42px);
  background: rgba(255, 255, 255, .035);
}
.home-signatures article img {
  width: 100%;
  max-height: 110px;
  object-fit: contain;
}
.home-signatures article h2 {
  margin-top: 0;
}
.christmas-link {
  display: flex;
  width: min(100%, 560px);
  margin: 28px auto 0;
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--paper);
  background: rgba(255, 255, 255, .035);
  font-weight: 750;
  text-decoration: none;
}
.christmas-link img {
  width: 90px;
  max-height: 110px;
  object-fit: contain;
}
.home-social {
  padding-top: 45px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.home-social .social-links a {
  display: grid;
  min-width: 140px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  place-items: center;
  gap: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, .035);
  font-weight: 750;
  text-decoration: none;
}

.show-overview {
  margin-bottom: 55px;
  text-align: center;
}
.section-intro {
  max-width: 760px;
  margin: 0 auto 28px !important;
  color: var(--muted);
  text-align: center;
}
.project-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.project-cards a {
  display: flex;
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--paper);
  background: rgba(255, 255, 255, .04);
  text-align: center;
  text-decoration: none;
}
.project-cards img {
  width: auto;
  max-height: 85px;
  margin-bottom: 18px;
  object-fit: contain;
}
.project-cards strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.3rem;
}
.project-cards span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .88rem;
}
.original-information {
  padding-top: 35px;
  border-top: 1px solid var(--line);
}
.shows-introduction {
  width: min(100%, 900px);
  margin: 0 auto 55px;
  text-align: center;
}
.shows-introduction > p:not(.eyebrow) {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}
.availability-note {
  margin-top: 24px !important;
  padding: 17px 22px;
  border: 1px solid rgba(233, 139, 150, .4);
  border-radius: 14px;
  color: #ffe9eb;
  background: rgba(147, 25, 44, .16);
}
.theatre-program {
  position: relative;
  display: grid;
  margin: 0 0 34px;
  padding: clamp(24px, 5vw, 48px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  align-items: center;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 65px);
  background: rgba(255, 255, 255, .035);
}
.theatre-program::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .45;
  content: "";
}
.theatre-program-blue::before {
  background: radial-gradient(circle at 20% 30%, rgba(18, 109, 213, .35), transparent 50%);
}
.theatre-program-red::before {
  background: radial-gradient(circle at 80% 30%, rgba(170, 35, 37, .3), transparent 52%);
}
.theatre-program-seasons::before {
  background:
    radial-gradient(circle at 12% 15%, rgba(52, 165, 68, .25), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(54, 112, 205, .24), transparent 35%);
}
.theatre-program-pink::before {
  background: radial-gradient(circle at 80% 25%, rgba(223, 90, 179, .26), transparent 52%);
}
.theatre-program.reverse figure {
  order: 2;
}
.theatre-program.reverse > div {
  order: 1;
}
.theatre-program figure {
  margin: 0;
  text-align: center;
}
.theatre-program figure > img {
  max-height: 570px;
  border-radius: 16px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, .36);
  object-fit: contain;
}
.theatre-program .weiberkram-figure > img {
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 24px 24px rgba(0, 0, 0, .4));
}
.program-logo {
  display: block;
  width: min(100%, 430px);
  max-height: 120px;
  margin: 0 auto 18px;
  object-fit: contain;
}
.program-logo.wide {
  width: min(100%, 600px);
}
.program-kicker {
  color: var(--rose);
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .15em;
  text-align: center;
  text-transform: uppercase;
}
.theatre-program h2 {
  margin-top: 8px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}
.theatre-program > div > p:not(.program-kicker) {
  text-align: left;
}
.theatre-program .button {
  margin-top: 14px;
}
.christmas-program {
  display: flex;
  width: min(100%, 850px);
  margin: 45px auto 0;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 22px;
  align-items: center;
  justify-content: center;
  gap: clamp(25px, 5vw, 55px);
  background: rgba(255, 255, 255, .035);
  text-align: center;
}
.christmas-program > img {
  width: min(180px, 34vw);
  max-height: 220px;
  object-fit: contain;
}
.project-nav {
  display: flex;
  margin: 0 0 32px;
  padding: 12px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
}
.project-nav a {
  min-height: 44px;
  padding: 9px 15px;
  border-radius: 999px;
  color: var(--paper);
  background: rgba(241, 202, 107, .1);
  font-weight: 750;
  text-decoration: none;
}
.project-nav a:hover {
  background: rgba(241, 202, 107, .22);
}

.theatrical-panel {
  display: grid;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}
.booking-intro {
  grid-template-columns: minmax(0, 1fr) minmax(250px, .38fr);
}
.booking-copy {
  text-align: left;
}
.booking-copy p {
  margin-bottom: 1.3em;
}
.show-quote {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 1.22rem;
  font-style: italic;
  text-align: center;
}
.booking-angel {
  margin: 0;
  text-align: center;
}
.booking-angel img {
  max-height: 570px;
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, .45));
}
.show-formats {
  margin-top: 34px;
}
.format-table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 8px;
}
.format-row {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(260px, 1.2fr);
}
.format-row + .format-row {
  border-top: 1px solid rgba(255, 255, 255, .52);
}
.format-name,
.format-duration {
  display: flex;
  min-height: 92px;
  padding: 14px 18px;
  align-items: center;
}
.format-name {
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, .52);
  color: var(--gold-light);
}
.format-name img {
  width: 46px;
  flex: 0 0 auto;
}
.format-name span,
.format-duration {
  display: flex;
  flex-direction: column;
}
.format-name strong {
  font-size: 1.15rem;
}
.format-name small,
.format-duration small {
  color: var(--muted);
  font-size: .78rem;
  font-style: italic;
}
.show-adjustment {
  padding: 45px 0;
  text-align: center;
}
.show-adjustment > p {
  max-width: 900px;
  margin: 0 auto 24px;
}
.concept-grid {
  display: grid;
  width: min(760px, 100%);
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #8b006e, #a20679);
}
.concept-grid a {
  min-height: 58px;
  padding: 14px 18px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
}
.requirements {
  grid-template-columns: minmax(200px, .34fr) minmax(0, 1fr);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.requirements-image {
  margin: 0;
  align-self: end;
  text-align: center;
}
.requirements-image img {
  max-height: 470px;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, .4));
}
.requirements-copy h2 {
  text-align: left;
}
.letter-list {
  padding: 0;
  list-style: none;
  counter-reset: requirements;
}
.letter-list li {
  position: relative;
  margin: 0 0 11px;
  padding-left: 2em;
  counter-increment: requirements;
}
.letter-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: counter(requirements, lower-alpha) ")";
  font-weight: 800;
}
.chronology-profile {
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
}
.chronology-profile-copy {
  text-align: left;
}
.chronology-profile-copy h2 {
  text-align: center;
}
.biography-data {
  margin: 25px 0;
  border-top: 1px solid var(--line);
}
.biography-data > div {
  display: grid;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(145px, .38fr) minmax(0, 1fr);
  gap: 18px;
}
.biography-data dt {
  color: var(--gold-light);
  font-weight: 800;
}
.biography-data dd {
  margin: 0;
}
.quiet-personal-link {
  margin: 11px 0 24px !important;
  font-size: .82rem;
  opacity: .68;
}
.quiet-personal-link a {
  color: var(--muted);
  text-decoration-color: rgba(201, 203, 224, .3);
}
.quiet-personal-link a:hover,
.quiet-personal-link a:focus-visible {
  opacity: 1;
}
.chronology-figure {
  margin: 0;
  text-align: center;
}
.chronology-figure img {
  max-height: 650px;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, .45));
}
.chronology-timeline {
  margin-top: 55px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.timeline {
  position: relative;
  width: min(100%, 920px);
  margin: 38px auto 0;
}
.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 88px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(241, 202, 107, .12));
  content: "";
}
.timeline-entry {
  position: relative;
  display: grid;
  padding: 0 0 25px;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 38px;
  text-align: left;
}
.timeline-entry::before {
  position: absolute;
  top: 10px;
  left: 82px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--navy);
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  content: "";
}
.timeline-entry time {
  padding-top: 3px;
  color: var(--gold);
  font: 700 1.2rem/1 Georgia, serif;
  text-align: right;
}
.timeline-entry > div {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(241, 202, 107, .16);
}
.timeline-entry p {
  margin: 0;
}
.timeline-entry:last-child > div {
  padding: 20px 22px;
  border: 1px solid rgba(233, 139, 150, .45);
  border-radius: 14px;
  background: rgba(147, 25, 44, .16);
}
.press-introduction {
  width: min(100%, 920px);
  margin: 0 auto 42px;
  text-align: center;
}
.press-quotes {
  display: grid;
  margin: 30px 0;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.press-quotes blockquote {
  display: grid;
  min-height: 88px;
  margin: 0;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  place-items: center;
  color: var(--gold-light);
  background: rgba(255, 255, 255, .035);
  font-family: Georgia, serif;
  font-size: 1rem;
}
.press-archive {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}
.press-card {
  display: flex;
  min-width: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  flex-direction: column;
  color: var(--paper);
  background: rgba(255, 255, 255, .035);
  text-decoration: none;
  box-shadow: 0 9px 25px rgba(0, 0, 0, .18);
}
.press-card img {
  width: 100%;
  height: 215px;
  border-radius: 9px;
  background: #fff;
  object-fit: cover;
  object-position: top;
}
.press-card span {
  display: grid;
  min-height: 58px;
  padding: 10px 5px 3px;
  place-items: center;
  color: var(--muted);
  font-size: .73rem;
  line-height: 1.35;
  text-align: center;
}
.press-card:hover {
  border-color: rgba(241, 202, 107, .65);
  transform: translateY(-2px);
}
.press-pdf {
  width: min(100%, 700px);
  margin: 50px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  text-align: center;
}
.live-gallery-intro {
  width: min(100%, 850px);
  margin: 0 auto 40px;
  text-align: center;
}
.live-gallery-intro > p:not(.eyebrow) {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}
.gallery-help {
  margin-top: 22px !important;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, .035);
  font-size: .86rem;
}
.live-gallery-wall {
  columns: 5 170px;
  column-gap: 13px;
}
.live-gallery-card {
  display: block;
  margin: 0 0 13px;
  padding: 7px;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 9px 25px rgba(0, 0, 0, .2);
}
.live-gallery-card img {
  display: block;
  width: 100%;
  border-radius: 8px;
  transition: transform .24s ease, filter .24s ease;
}
.live-gallery-card:hover {
  border-color: rgba(241, 202, 107, .68);
}
.live-gallery-card:hover img {
  transform: scale(1.025);
  filter: brightness(1.08);
}
.gallery-project-links {
  width: min(100%, 720px);
  margin: 50px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  text-align: center;
}
.multimedia-introduction {
  width: min(100%, 850px);
  margin: 0 auto 48px;
  text-align: center;
}
.multimedia-introduction > div > p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}
.youtube-channel {
  display: inline-flex;
  margin-top: 18px;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  background: rgba(255, 255, 255, .04);
  font-weight: 800;
  text-decoration: none;
}
.youtube-channel img {
  width: 52px;
  max-height: 52px;
  object-fit: contain;
}
.video-section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
}
.video-section > h2 {
  margin-top: 0;
  margin-bottom: 28px;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.video-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}
.video-card h3 {
  display: grid;
  min-height: 54px;
  margin: 0 0 12px;
  place-items: center;
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: .93rem;
}
.video-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  aspect-ratio: 16 / 9;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-link {
  display: block;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}
.video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transition: transform .35s ease, opacity .35s ease;
}
.video-link:hover img,
.video-link:focus-visible img {
  transform: scale(1.04);
  opacity: 1;
}
.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 50%;
  background: rgba(0, 0, 0, .64);
  color: #fff6cb;
  font-family: "Arial Black", Arial, sans-serif;
  font-size: 1.45rem;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .85);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 22px rgba(255, 218, 118, .35);
}
.play-badge::before {
  content: "▶";
  margin-left: 4px;
  color: #ffe28a;
}
.advertising-intro {
  grid-template-columns: minmax(0, 1.25fr) minmax(240px, .75fr);
}
.advertising-intro > div {
  text-align: left;
}
.advertising-intro > div h2 {
  text-align: center;
}
.advertising-intro figure {
  margin: 0;
  text-align: center;
}
.advertising-intro figure img {
  max-height: 560px;
  filter: drop-shadow(0 25px 28px rgba(0, 0, 0, .45));
}
.advertising-images,
.advertising-copy {
  margin-top: 48px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.advertising-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.advertising-card {
  display: flex;
  min-width: 0;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 13px;
  flex-direction: column;
  color: var(--muted);
  background: rgba(255, 255, 255, .035);
  font-size: .7rem;
  text-decoration: none;
}
.advertising-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
}
.advertising-card span {
  padding: 7px 2px 2px;
}
.advertising-card:hover {
  border-color: rgba(241, 202, 107, .7);
  color: var(--gold-light);
  transform: translateY(-2px);
}
.advertising-texts {
  display: grid;
  gap: 12px;
  text-align: left;
}
.advertising-text {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
}
.advertising-text summary {
  padding: 18px 22px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
.advertising-text[open] summary {
  border-bottom: 1px solid var(--line);
  background: rgba(241, 202, 107, .06);
}
.advertising-text > div {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px clamp(18px, 4vw, 38px);
}
.advertising-text > div p {
  margin-bottom: .75em;
}
.links-intro {
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, .65fr);
}
.links-page .page-content,
.links-intro > *,
.project-links,
.project-link-grid,
.project-link-card,
.project-banner,
.project-link-copy {
  min-width: 0;
  max-width: 100%;
}
.links-intro > div {
  text-align: left;
}
.links-intro h2 {
  text-align: center;
}
.links-intro figure {
  margin: 0;
  text-align: center;
}
.links-intro figure img {
  width: min(100%, 185px);
  filter: drop-shadow(0 22px 25px rgba(0, 0, 0, .5));
}
.project-links,
.social-links {
  margin-top: 48px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.project-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}
.project-link-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--text);
  background: rgba(255, 255, 255, .035);
  text-decoration: none;
}
.project-banner {
  display: grid;
  min-height: 105px;
  padding: 18px;
  place-items: center;
  background: radial-gradient(circle at center, rgba(80, 55, 140, .34), transparent 70%);
}
.project-banner img {
  width: 100%;
  max-width: 100%;
  max-height: 88px;
  object-fit: contain;
}
.project-link-copy {
  display: grid;
  gap: 5px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
}
.project-link-copy strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.08rem;
}
.project-link-copy small {
  color: var(--muted);
  line-height: 1.45;
}
.project-link-card:hover {
  border-color: rgba(241, 202, 107, .72);
  background: rgba(241, 202, 107, .07);
  transform: translateY(-3px);
}
.social-link-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
.social-link-grid a {
  display: flex;
  width: min(100%, 300px);
  padding: 15px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  align-items: center;
  gap: 15px;
  color: var(--text);
  background: rgba(255, 255, 255, .035);
  text-align: left;
  text-decoration: none;
}
.social-link-grid img {
  width: 70px;
  height: 74px;
  object-fit: contain;
}
.social-link-grid span {
  display: grid;
  gap: 4px;
}
.social-link-grid strong {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.12rem;
}
.social-link-grid small {
  color: var(--muted);
}
.social-link-grid a:hover {
  border-color: rgba(241, 202, 107, .72);
  transform: translateY(-2px);
}
.imprint-intro {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
}
.imprint-card {
  text-align: center;
}
.imprint-card address {
  margin: 22px 0;
  font-size: 1.05rem;
  line-height: 1.65;
}
.imprint-card > p {
  line-height: 1.65;
}
.imprint-intro figure {
  margin: 0;
  text-align: center;
}
.imprint-intro figure img {
  width: min(100%, 360px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .48));
}
.legal-content {
  margin-top: 48px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.legal-sections {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  text-align: left;
}
.legal-section {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
}
.legal-section summary {
  padding: 17px 21px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
.legal-section[open] summary {
  border-bottom: 1px solid var(--line);
  background: rgba(241, 202, 107, .06);
}
.legal-section > div {
  max-width: 900px;
  margin: 0 auto;
  padding: 22px clamp(17px, 4vw, 36px);
}
.legal-section > div p {
  margin-bottom: .85em;
  overflow-wrap: anywhere;
}
.terms-archive {
  text-align: center;
}
.archive-notice {
  max-width: 850px;
  margin: 0 auto 30px !important;
  padding: 22px;
  border: 1px solid rgba(241, 202, 107, .45);
  border-radius: 16px;
  color: var(--gold-light);
  background: rgba(241, 202, 107, .07);
  line-height: 1.65;
}
.mandy-intro {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
}
.mandy-intro > div {
  text-align: left;
}
.mandy-intro h2 {
  text-align: center;
}
.mandy-intro figure {
  margin: 0;
  text-align: center;
}
.mandy-intro figure img {
  width: min(100%, 470px);
  max-height: 600px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(0, 0, 0, .5));
}
.mandy-history,
.mandy-videos,
.mandy-gallery {
  margin-top: 48px;
  padding-top: 45px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.mandy-history > p:not(.eyebrow) {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.mandy-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.mandy-programs span {
  display: grid;
  min-height: 100px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 15px;
  place-content: center;
  color: var(--gold);
  background: rgba(255, 255, 255, .035);
  font-family: Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
}
.mandy-programs small {
  margin-top: 7px;
  color: var(--muted);
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 400;
}
.mandy-photo-grid {
  columns: 4;
  column-gap: 10px;
  margin-top: 26px;
}
.mandy-photo {
  display: block;
  margin-bottom: 10px;
  padding: 6px;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
}
.mandy-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px;
}
.mandy-photo:hover {
  border-color: rgba(241, 202, 107, .72);
  transform: translateY(-2px);
}
.back-to-chronology {
  margin-top: 38px !important;
  text-align: center;
}
.childhood-page .page-title {
  opacity: .82;
}
.childhood-story {
  max-width: 940px;
  margin: 0 auto;
}
.childhood-intro {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}
.childhood-intro h2 {
  margin-bottom: 8px;
}
.childhood-subtitle {
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}
.childhood-intro em {
  color: var(--muted);
}
.memory-chapter {
  display: grid;
  grid-template-columns: minmax(180px, .32fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 50px);
  margin-top: 42px;
  padding-top: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
}
.memory-chapter.memory-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(180px, .32fr);
}
.memory-reverse .memory-image {
  order: 2;
}
.memory-chapter > div {
  min-width: 0;
}
.memory-chapter h3 {
  margin-top: 0;
  text-align: left;
}
.memory-chapter p {
  line-height: 1.72;
}
.memory-image {
  margin: 0;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, .035);
  transform: rotate(-1deg);
}
.memory-reverse .memory-image {
  transform: rotate(1deg);
}
.memory-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 9px;
}
.memory-landscape {
  align-self: center;
}
.memory-tall {
  max-width: 180px;
  justify-self: center;
}
.childhood-conclusion {
  max-width: 800px;
  margin: 55px auto 0;
  padding: clamp(24px, 5vw, 45px);
  border: 1px solid rgba(241, 202, 107, .42);
  border-radius: 20px;
  background: rgba(241, 202, 107, .055);
  text-align: center;
}
.childhood-conclusion blockquote {
  margin: 14px auto 24px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  line-height: 1.35;
}
.childhood-conclusion p {
  line-height: 1.65;
}
body.christmas-page {
  --gold: #b12022;
  --gold-light: #d72f32;
  --rose: #0f8d70;
  --paper: #20323d;
  --muted: #47606c;
  --line: rgba(177, 32, 34, .22);
  color-scheme: light;
  color: var(--paper);
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,.95), transparent 22%),
    radial-gradient(circle at 84% 18%, rgba(255,242,210,.55), transparent 25%),
    linear-gradient(rgba(224, 250, 255, .72), rgba(255,255,255,.9)),
    url("../../Weihnachtsshow/hintergr-weihn.jpg") center top / cover no-repeat fixed,
    #e7fbff;
}
body.christmas-clean-page {
  --gold: #b12022;
  --gold-light: #d72f32;
  --rose: #087f69;
  --paper: #182b35;
  --muted: #4d6470;
  --line: rgba(177, 32, 34, .22);
  color-scheme: light;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(236, 253, 255, .76), rgba(255,255,255,.92)),
    url("../../Weihnachtsshow/hintergr-weihn.jpg") center top / cover no-repeat fixed,
    #e7fbff;
}

/* Neu aufgebaute Weihnachtsshow-Startseite: eigene, klare Regeln ohne Altlasten. */
body.christmas-clean-page {
  --gold: #b12022;
  --gold-light: #d72f32;
  --rose: #087f69;
  --paper: #183743;
  --muted: #4d6470;
  --line: rgba(177, 32, 34, .24);
  color-scheme: light;
  overflow-x: hidden;
  background: #e7fbff;
}
.christmas-clean-page,
.christmas-clean-page * {
  box-sizing: border-box;
}
.christmas-clean-page .site-header {
  border-color: rgba(177,32,34,.22);
  background: rgba(255,255,255,.92);
}
.christmas-clean-page .brand,
.christmas-clean-page .site-nav a,
.christmas-clean-page .menu-toggle {
  color: #8f1619;
}
.christmas-clean-page .menu-toggle {
  border-color: rgba(143, 22, 25, .28);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(219,249,252,.82));
  color: #8f1619;
}
.christmas-clean-page .site-nav.is-open {
  border-color: rgba(177, 32, 34, .22);
  background: linear-gradient(180deg, rgba(244, 253, 255, .98), rgba(219, 249, 252, .96));
  box-shadow: 0 18px 36px rgba(88,150,164,.26);
}
.christmas-clean-page .site-nav.is-open a {
  color: #97171b;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(232, 252, 255, .86));
  border: 1px solid rgba(177,32,34,.18);
}
.christmas-clean-page .site-nav.is-open a:hover,
.christmas-clean-page .site-nav.is-open a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(180deg, #c52c31, #8f1619);
}
.christmas-clean-shell {
  width: min(1000px, calc(100% - 32px));
  margin: clamp(24px, 5vw, 60px) auto;
  text-align: center;
}
.christmas-clean-title {
  width: min(100%, 780px);
  margin: 0 auto 24px;
  text-align: center;
}
.christmas-clean-title h1 {
  margin: 4px auto 12px;
  color: #a8171b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 7vw, 4.8rem);
  font-weight: 500;
  line-height: 1.05;
  text-align: center;
  overflow-wrap: anywhere;
}
.christmas-clean-title p:not(.eyebrow) {
  width: min(100%, 620px);
  margin: 0 auto;
  color: #244250;
}
.christmas-clean-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
  width: min(100%, 860px);
  margin: 0 auto 24px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.7);
}
.christmas-clean-nav a {
  display: flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
  color: #97171b;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(219,249,252,.74));
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  white-space: normal;
}
.christmas-clean-card {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(236,253,255,.92));
  box-shadow: 0 24px 70px rgba(88,150,164,.18);
  text-align: center;
}
.christmas-clean-card h2 {
  width: min(100%, 720px);
  margin: 0 auto 24px;
  color: #b12022;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.95rem, 5vw, 3.15rem);
  line-height: 1.08;
  text-align: center;
  overflow-wrap: anywhere;
}
.christmas-clean-card p {
  width: min(100%, 720px);
  margin: 0 auto 1em;
  color: #183743;
  line-height: 1.75;
  text-align: center;
  overflow-wrap: anywhere;
}
.christmas-home-logo {
  display: block;
  width: min(190px, 54vw);
  height: auto;
  margin: 0 auto 1.2rem;
  filter: drop-shadow(0 10px 18px rgba(177, 32, 34, .2));
}
.christmas-home-gina {
  display: block;
  width: min(280px, 74vw);
  height: auto;
  margin: 1.4rem auto 0;
  filter: drop-shadow(0 20px 30px rgba(88, 150, 164, .22));
}
.christmas-gallery-hidden {
  display: none !important;
}
.christmas-clean-page .site-footer {
  color: #8f1619;
}
.christmas-clean-page .site-header {
  border-color: rgba(177,32,34,.22);
  background: rgba(255,255,255,.9);
}
.christmas-clean-page .brand,
.christmas-clean-page .site-nav a,
.christmas-clean-page .menu-toggle {
  color: #8f1619;
}
.christmas-clean-page .menu-toggle {
  border-color: rgba(143, 22, 25, .28);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(219,249,252,.82));
  color: #8f1619;
}
.christmas-clean-page .site-nav.is-open {
  border-color: rgba(177, 32, 34, .22);
  background: linear-gradient(180deg, rgba(244, 253, 255, .98), rgba(219, 249, 252, .96));
  box-shadow: 0 18px 36px rgba(88,150,164,.26);
}
.christmas-clean-page .site-nav.is-open a {
  color: #97171b;
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(232, 252, 255, .86));
  border: 1px solid rgba(177,32,34,.18);
}
.christmas-clean-page .site-nav.is-open a:hover,
.christmas-clean-page .site-nav.is-open a[aria-current="page"] {
  color: #fff;
  background: linear-gradient(180deg, #c52c31, #8f1619);
}
.christmas-clean-shell {
  width: min(1040px, calc(100% - 32px));
  margin: clamp(24px, 5vw, 62px) auto;
}
.christmas-clean-title {
  max-width: 880px;
  margin: 0 auto 24px;
  text-align: center;
}
.christmas-clean-title h1 {
  margin: 4px 0 12px;
  color: #a8171b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  text-shadow: 0 1px 0 rgba(255,255,255,.92), 0 0 24px rgba(255,255,255,.9);
}
.christmas-clean-title p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto;
  color: #244250;
}
.christmas-clean-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
  gap: 8px;
  width: min(100%, 880px);
  margin: 0 auto 24px;
  padding: 12px;
  border: 1px solid rgba(177,32,34,.22);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
}
.christmas-clean-nav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #97171b;
  background: linear-gradient(180deg, rgba(255,255,255,.8), rgba(219, 249, 252, .72));
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}
.christmas-clean-card {
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid rgba(177,32,34,.22);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(234,252,255,.9) 45%, rgba(255,255,255,.96));
  box-shadow: 0 24px 70px rgba(88, 150, 164, .22);
  text-align: center;
}
.christmas-clean-card h2 {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #b12022;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.08;
}
.christmas-clean-card p {
  max-width: 760px;
  margin: 0 auto 1em;
  color: #183743;
  line-height: 1.75;
}
.christmas-clean-page .site-footer {
  color: #8f1619;
}
.christmas-page .site-header {
  border-color: rgba(177, 32, 34, .24);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
}
.christmas-page .brand,
.christmas-page .site-nav a,
.christmas-page .menu-toggle {
  color: #8f1619;
}
.christmas-page .site-nav a:hover,
.christmas-page .site-nav a[aria-current="page"] {
  color: #631014;
  background: rgba(177, 32, 34, .09);
}
.christmas-page .page-title h1 {
  color: #a8171b;
  text-shadow: 0 1px 0 rgba(255,255,255,.9), 0 0 22px rgba(255,255,255,.9);
}
.christmas-page .page-content {
  border-color: rgba(177, 32, 34, .23);
  background:
    url("../../Weihnachtsshow/Bilder/Guirlande.png") center 18px / min(92%, 860px) auto no-repeat,
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(232, 251, 255, .88) 44%, rgba(255,255,255,.94));
  box-shadow: 0 25px 70px rgba(90, 146, 158, .24);
}
.christmas-nav {
  margin-bottom: 34px;
  border-color: rgba(177,32,34,.2);
  background: rgba(255,255,255,.7);
}
.christmas-nav a {
  color: #97171b;
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(217,247,250,.7));
}
.christmas-script-title {
  display: block;
  width: min(100%, 945px);
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 9px rgba(255,255,255,.9));
}
.christmas-hero {
  grid-template-columns: minmax(0, 1fr) minmax(210px, .46fr);
  background: rgba(255,255,255,.55);
}
.christmas-hero > div,
.christmas-info > div {
  text-align: center;
}
.christmas-hero figure,
.christmas-info figure {
  margin: 0;
  text-align: center;
}
.christmas-hero figure img {
  max-height: 520px;
  filter: drop-shadow(0 18px 24px rgba(101, 148, 155, .32));
}
.christmas-copy,
.christmas-characters,
.christmas-gallery-intro,
.christmas-gallery-block,
.christmas-music,
.christmas-video,
.christmas-advertising {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.christmas-copy p,
.christmas-gallery-intro p,
.christmas-music p,
.christmas-advertising p {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}
.christmas-character-grid,
.christmas-ad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.christmas-character-grid img,
.christmas-ad-grid a,
.christmas-audio-grid article,
.christmas-format-grid article {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 14px 26px rgba(104, 160, 170, .12);
}
.christmas-character-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  padding: 6px;
}
.christmas-photo-grid {
  columns: 4;
  column-gap: 10px;
  margin-top: 24px;
}
.christmas-photo-grid.compact {
  columns: 3;
}
.christmas-photo {
  display: block;
  margin-bottom: 10px;
  padding: 5px;
  break-inside: avoid;
  border: 1px solid rgba(177,32,34,.2);
  border-radius: 11px;
  background: rgba(255,255,255,.74);
}
.christmas-photo img {
  display: block;
  width: 100%;
}
.christmas-photo:hover {
  border-color: rgba(177,32,34,.65);
  transform: translateY(-2px);
}
.christmas-audio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.christmas-audio-grid article {
  padding: 18px;
}
.christmas-audio-grid h3 {
  margin-top: 0;
  color: #97171b;
}
.christmas-audio-grid audio {
  width: 100%;
}
.christmas-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(100%, 820px);
  margin: 28px auto 0;
}
.christmas-video-grid .video-card {
  margin: 0;
  border-color: var(--line);
  background: rgba(255,255,255,.72);
}
.christmas-info {
  grid-template-columns: minmax(0, 1fr) minmax(220px, .42fr);
}
.christmas-info figure img {
  max-height: 620px;
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(104, 160, 170, .22);
}
.christmas-format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0;
}
.christmas-format-grid article {
  padding: 20px;
}
.christmas-ad-grid a {
  display: grid;
  overflow: hidden;
  color: #97171b;
  text-decoration: none;
}
.christmas-ad-grid img {
  width: 100%;
}
.christmas-ad-grid span {
  padding: 10px;
  font-weight: 800;
}
.christmas-page .site-footer {
  color: #8f1619;
}
body.portal-page {
  --gold: #30343a;
  --gold-light: #7b6478;
  --rose: #8a5068;
  --paper: #20242b;
  --muted: #5c6370;
  --line: rgba(52, 58, 70, .18);
  color-scheme: light;
  color: var(--paper);
  background:
    radial-gradient(circle at 12% 12%, rgba(255,255,255,.95), transparent 25rem),
    linear-gradient(135deg, #f6f6f4, #e9edf0 48%, #f9f9f7);
}
.portal-page .site-header {
  border-color: rgba(52,58,70,.18);
  background: rgba(255,255,255,.9);
}
.portal-page .brand,
.portal-page .site-nav a,
.portal-page .menu-toggle {
  color: #30343a;
}
.portal-page .page-title h1 {
  color: #30343a;
}
.portal-page .page-content {
  border-color: rgba(52,58,70,.18);
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(244,246,248,.86));
  box-shadow: 0 24px 70px rgba(68, 74, 86, .18);
}
.portal-nav {
  margin-bottom: 34px;
  border-color: rgba(52,58,70,.16);
  background: rgba(255,255,255,.64);
}
.portal-nav a {
  color: #30343a;
  background: rgba(255,255,255,.76);
}
.portal-hero,
.portal-project,
.portal-person {
  grid-template-columns: minmax(0, 1fr) minmax(220px, .48fr);
}
.portal-hero > div,
.portal-project > div,
.portal-person > div {
  text-align: center;
}
.portal-hero figure,
.portal-project figure,
.portal-person figure {
  margin: 0;
  text-align: center;
}
.portal-hero img,
.portal-project img,
.portal-person img {
  max-height: 520px;
  border-radius: 12px;
  filter: drop-shadow(18px 18px 12px rgba(0,0,0,.18));
}
.portal-gallery-overview,
.portal-thanks,
.portal-gallery-intro {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.portal-gallery-overview p,
.portal-thanks p,
.portal-gallery-intro p {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}
.portal-category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.portal-category-card {
  display: grid;
  min-height: 110px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: #30343a;
  background: rgba(255,255,255,.76);
  text-align: center;
  text-decoration: none;
}
.portal-category-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}
.portal-category-card small {
  color: #6a7079;
}
.portal-photo-grid {
  columns: 4;
  column-gap: 10px;
  margin-top: 26px;
}
.portal-photo {
  display: block;
  margin-bottom: 10px;
  padding: 5px;
  break-inside: avoid;
  border: 1px solid rgba(52,58,70,.16);
  border-radius: 11px;
  background: rgba(255,255,255,.78);
}
.portal-photo img {
  display: block;
  width: 100%;
  border-radius: 7px;
}
.portal-photo:hover {
  border-color: rgba(138,80,104,.52);
  transform: translateY(-2px);
}
.portal-page .site-footer {
  color: #30343a;
}
body.rv-page {
  --gold: #f8fbff;
  --gold-light: #d9f7ff;
  --rose: #78e8ff;
  --muted: #d4eaff;
  --line: rgba(157, 229, 255, .42);
  background:
    linear-gradient(rgba(0, 21, 103, .38), rgba(0, 8, 57, .68)),
    url("../../RueckwaertsVoran/Hinter.jpg") center top / cover no-repeat fixed,
    #052b9a;
}
body.ori-page {
  --gold: #6b2d38;
  --gold-light: #7c3e58;
  --rose: #8a3d62;
  --paper: #371d25;
  --muted: #674e57;
  --line: rgba(112, 48, 69, .32);
  color-scheme: light;
  color: var(--paper);
  background:
    radial-gradient(ellipse at 50% 24%,
      rgba(255, 252, 228, .88) 0%,
      rgba(255, 238, 230, .65) 38%,
      rgba(248, 191, 220, .32) 72%,
      rgba(224, 111, 177, .24) 100%),
    url("../../original/Hintergrund.jpg") center top / cover no-repeat fixed,
    #f7c6dc;
}
.ori-page .site-header {
  border-color: rgba(104, 43, 63, .32);
  background: rgba(255, 226, 237, .91);
}
.ori-page .brand,
.ori-page .site-nav a,
.ori-page .menu-toggle {
  color: #5e2638;
}
.ori-page .site-nav a:hover,
.ori-page .site-nav a[aria-current="page"] {
  color: #391522;
  background: rgba(107, 45, 56, .12);
}
.ori-page .site-nav.is-open {
  border-color: rgba(112, 48, 69, .34);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 248, 226, .92), transparent 34%),
    linear-gradient(135deg, rgba(255, 223, 237, .98), rgba(239, 174, 210, .96));
  box-shadow: 0 18px 38px rgba(104, 43, 63, .28);
}
.ori-page .site-nav.is-open a {
  color: #5e2638;
  border: 1px solid rgba(112, 48, 69, .18);
  background: rgba(255, 255, 255, .26);
}
.ori-page .site-nav.is-open a:hover,
.ori-page .site-nav.is-open a[aria-current="page"] {
  color: #391522;
  background: rgba(255, 255, 255, .54);
}
.ori-page .page-content {
  position: relative;
  overflow: hidden;
  padding-top: clamp(105px, 10vw, 135px);
  border-color: rgba(112, 48, 69, .35);
  background:
    url("../../original/ranke-o.png") center top / min(100%, 1134px) auto no-repeat,
    radial-gradient(ellipse at 50% 30%,
      rgba(255, 253, 232, .97) 0%,
      rgba(255, 244, 225, .95) 42%,
      rgba(252, 223, 229, .92) 76%,
      rgba(247, 202, 223, .9) 100%);
  box-shadow: 0 24px 70px rgba(104, 43, 63, .25);
}
.ori-page .page-content::before,
.ori-page .page-content::after {
  position: absolute;
  z-index: 0;
  top: 0;
  width: 90px;
  height: 420px;
  content: "";
  opacity: .68;
  background: center top / contain no-repeat;
  pointer-events: none;
}
.ori-page .page-content::before {
  left: 0;
  background-image: url("../../original/ranke-li.png");
}
.ori-page .page-content::after {
  right: 0;
  background-image: url("../../original/ranke-re.png");
}
.ori-page .page-content > * {
  position: relative;
  z-index: 1;
}
.ori-nav {
  margin-bottom: 38px;
  border-color: rgba(112,48,69,.3);
  background: rgba(255,255,255,.42);
}
.ori-nav a {
  color: #5e2638;
  background: rgba(107,45,56,.09);
}
.ori-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, .55fr);
  align-items: center;
}
.ori-hero > div {
  text-align: center;
}
.ori-banner {
  display: block;
  width: min(100%, 690px);
  margin: 0 auto 22px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(104,43,63,.2);
}
.ori-hero figure {
  margin: 0;
  text-align: center;
}
.ori-hero figure img {
  max-height: 620px;
  filter: drop-shadow(0 22px 24px rgba(104,43,63,.25));
}
.ori-start-hero {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}
.ori-start-hero > p {
  max-width: 66rem;
  margin-right: auto;
  margin-left: auto;
}
.ori-start-hero figure {
  margin: 0 auto 18px;
}
.ori-start-hero figure img {
  width: min(100%, 430px);
  max-height: none;
}
.ori-show-copy,
.ori-gallery-intro,
.ori-video {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.ori-show-copy > p,
.ori-gallery-intro > p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.ori-poster {
  display: grid;
  width: min(100%, 330px);
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #5e2638;
  background: rgba(255,255,255,.45);
  text-decoration: none;
}
.ori-poster img {
  width: 100%;
}
.ori-poster span {
  padding: 12px;
  font-weight: 700;
}
.ori-photo-grid {
  columns: 4;
  column-gap: 9px;
  margin-top: 25px;
}
.ori-photo {
  display: block;
  margin-bottom: 9px;
  padding: 5px;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.42);
}
.ori-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.ori-photo:hover {
  border-color: rgba(107,45,56,.7);
  transform: translateY(-2px);
}
.ori-video .video-card {
  width: min(100%, 760px);
  margin: 24px auto 0;
  border-color: var(--line);
  background: rgba(255,255,255,.42);
}
.ori-page .site-footer {
  color: #5e2638;
}
body.year-page {
  --gold: #fff3a6;
  --gold-light: #d7ffb6;
  --rose: #9ef58a;
  --paper: #fff;
  --muted: #d9e9f2;
  --line: rgba(160, 228, 255, .35);
  background:
    linear-gradient(rgba(0,0,0,.2), rgba(0,0,0,.58)),
    url("../../Uebers-Jahr/Hintergrund.jpg") center top / cover no-repeat fixed,
    #02070b;
}
.year-page .site-header {
  border-color: rgba(142,220,255,.34);
  background: rgba(0, 7, 12, .9);
}
.year-page .page-content {
  border-color: rgba(142,220,255,.32);
  background:
    radial-gradient(circle at 20% 12%, rgba(84, 194, 69, .17), transparent 25%),
    radial-gradient(circle at 78% 14%, rgba(255, 160, 28, .16), transparent 28%),
    radial-gradient(circle at 75% 82%, rgba(48, 134, 220, .17), transparent 28%),
    #000;
  box-shadow: 0 24px 70px rgba(0,0,0,.6);
}
.year-nav {
  margin-bottom: 34px;
  border-color: var(--line);
  background: rgba(0,0,0,.28);
}
.year-nav a {
  color: #efffcf;
  background: rgba(80,160,100,.14);
}
.year-title-art {
  display: block;
  width: min(100%, 586px);
  margin: 0 auto 28px;
}
.year-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, .42fr);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
}
.year-hero-layout > div {
  text-align: left;
}
.year-hero-layout > img {
  max-height: 560px;
  margin: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.7));
}
.year-seasons,
.year-finale,
.year-gallery-intro,
.year-video {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.season-grid article {
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,.045);
}
.season-grid img {
  height: 155px;
  object-fit: contain;
}
.season-grid h3 {
  margin: 8px 0 5px;
  font-size: 1.15rem;
}
.season-grid p {
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.45;
}
.season-grid article:nth-child(1) h3 { color: #a7f58f; }
.season-grid article:nth-child(2) h3 { color: #ffe16f; }
.season-grid article:nth-child(3) h3 { color: #ff9e48; }
.season-grid article:nth-child(4) h3 { color: #bceaff; }
.year-finale {
  grid-template-columns: minmax(210px, .42fr) minmax(0, 1fr);
}
.year-finale > img {
  max-height: 560px;
  margin: auto;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.7));
}
.year-finale > div {
  text-align: center;
}
.year-poster {
  display: grid;
  width: min(100%, 290px);
  margin: 25px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--gold-light);
  background: rgba(255,255,255,.05);
  text-decoration: none;
}
.year-poster img { width: 100%; }
.year-poster span { padding: 11px; font-weight: 700; }
.year-gallery-intro > img,
.year-video > img {
  width: min(100%, 586px);
  margin-bottom: 22px;
}
.year-photo-grid {
  columns: 4;
  column-gap: 9px;
  margin-top: 25px;
}
.year-photo {
  display: block;
  margin-bottom: 9px;
  padding: 5px;
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255,255,255,.045);
}
.year-photo img {
  display: block;
  width: 100%;
}
.year-photo:hover {
  border-color: rgba(190,255,190,.7);
  transform: translateY(-2px);
}
.year-video .video-card {
  width: min(100%, 760px);
  margin: 20px auto 0;
}
body.weiber-page {
  --gold: #ffb13b;
  --gold-light: #ffe2a8;
  --rose: #ff9a39;
  --paper: #071525;
  --muted: #16344d;
  --line: rgba(7, 52, 87, .42);
  background:
    linear-gradient(rgba(1, 26, 58, .5), rgba(0, 13, 36, .82)),
    url("../../Weiberkram/hintergr-weib1.jpg") center top / cover no-repeat fixed,
    #031b35;
}
.weiber-page .site-header {
  border-color: rgba(255, 181, 70, .5);
  background: rgba(4, 37, 68, .92);
}
.weiber-page .site-nav a,
.weiber-page .brand small {
  color: #f5fbff;
}
.weiber-page .page-title h1 {
  color: #fff0c7;
  text-shadow: 0 2px 0 #9d4e00, 0 0 22px rgba(255, 164, 51, .6);
}
.weiber-page .page-content {
  border-color: rgba(255, 185, 82, .72);
  background:
    url("../images/weiber-curtains-pair.png") center top / 100% auto no-repeat,
    linear-gradient(rgba(225, 244, 255, .52), rgba(177, 220, 247, .72)),
    url("../../Weiberkram/hintergr-weib1.jpg") center top / cover fixed;
  box-shadow: 0 25px 75px rgba(0, 26, 62, .55);
  color: #071525;
}
.weiber-page .page-content p,
.weiber-page .page-content li {
  color: #071525;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.72;
}
.weiber-page .page-content h2,
.weiber-page .page-content h3 {
  color: #082c50;
  text-shadow: 0 1px 0 rgba(255,255,255,.72);
}
.weiber-nav {
  margin-bottom: 36px;
  border-color: rgba(255, 185, 82, .58);
  background: rgba(2, 30, 61, .5);
}
.weiber-nav a {
  color: #fff0c7;
  background: linear-gradient(180deg, rgba(255, 164, 48, .2), rgba(7, 80, 130, .24));
}
.weiber-title-art {
  display: block;
  width: min(100%, 785px);
  margin: 0 auto 24px;
  filter: drop-shadow(0 10px 14px rgba(0, 24, 57, .48));
}
.weiber-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(210px, .48fr);
  align-items: center;
  gap: clamp(26px, 5vw, 58px);
}
.weiber-hero-layout > div,
.weiber-copy > div,
.weiber-program > div {
  text-align: left;
}
.weiber-hero-layout > img {
  max-height: 610px;
  margin: auto;
  filter: drop-shadow(0 20px 25px rgba(0, 22, 55, .55));
}
.weiber-copy,
.weiber-program {
  grid-template-columns: minmax(190px, .42fr) minmax(0, 1fr);
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  background: rgba(239, 249, 255, .34);
}
.weiber-copy > img,
.weiber-program > img {
  max-height: 410px;
  margin: auto;
  filter: drop-shadow(0 18px 22px rgba(0, 18, 48, .55));
}
.weiber-takeoff,
.weiber-gallery-intro,
.weiber-media,
.weiber-audio,
.weiber-advertising,
.weiber-ad-copy,
.weiber-interview-intro {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.weiber-takeoff > a {
  display: grid;
  width: min(100%, 520px);
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #082c50;
  background: rgba(239, 249, 255, .6);
  text-decoration: none;
}
.weiber-takeoff > a img {
  width: 100%;
}
.weiber-takeoff > a span {
  padding: 12px;
  font-weight: 800;
}
.weiber-gallery-intro > img,
.weiber-media > img,
.weiber-advertising > img {
  width: min(100%, 720px);
  margin-bottom: 18px;
}
.weiber-photo-grid {
  columns: 4;
  column-gap: 10px;
  margin-top: 26px;
}
.weiber-photo {
  display: block;
  margin-bottom: 10px;
  padding: 5px;
  break-inside: avoid;
  border: 1px solid rgba(255, 189, 88, .48);
  border-radius: 11px;
  background: rgba(239, 249, 255, .62);
}
.weiber-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.weiber-photo:hover {
  border-color: #ffc765;
  transform: translateY(-2px);
}
.weiber-video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.weiber-video-grid .video-card {
  margin: 0;
  border-color: rgba(255, 189, 88, .45);
  background: rgba(239, 249, 255, .62);
}
.weiber-audio audio {
  width: min(100%, 680px);
  margin-top: 18px;
}
.weiber-format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 25px 0;
}
.weiber-format-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(239, 249, 255, .58);
}
.weiber-format-grid h3 {
  color: #082c50;
}
.weiber-ad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 14px;
  margin-top: 27px;
}
.weiber-ad-grid a {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: #082c50;
  background: rgba(239, 249, 255, .64);
  text-decoration: none;
}
.weiber-ad-grid img {
  width: 100%;
}
.weiber-ad-grid span {
  padding: 10px;
  font-weight: 800;
}
.weiber-ad-copy > p,
.weiber-interview-intro > p {
  max-width: 850px;
  margin-right: auto;
  margin-left: auto;
}
.weiber-legacy-interview {
  margin-top: 28px;
  padding: clamp(18px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: #071525;
  background: rgba(239, 249, 255, .68);
}
.weiber-legacy-interview table {
  width: 100% !important;
  max-width: 100% !important;
}
.weiber-legacy-interview td {
  width: auto !important;
  color: inherit !important;
}
.weiber-legacy-interview font,
.weiber-legacy-interview span {
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
}
.weiber-legacy-interview img {
  max-width: 100%;
  height: auto;
}
.weiber-page .site-footer {
  color: #e7f5ff;
}
.rv-page .site-header {
  border-color: rgba(157, 229, 255, .4);
  background: rgba(0, 15, 76, .86);
}
.rv-page .page-content {
  border-color: rgba(157, 229, 255, .48);
  background:
    linear-gradient(145deg, rgba(5, 56, 172, .78), rgba(0, 18, 92, .84));
  box-shadow: 0 24px 70px rgba(0, 8, 58, .62);
}
.rv-nav {
  margin-bottom: 38px;
}
.rv-hero {
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .6fr);
}
.rv-hero > div,
.rv-concept > div,
.rv-empty-stage > div {
  text-align: left;
}
.rv-logo {
  display: block;
  width: min(100%, 430px);
  margin: 0 auto 20px;
}
.rv-hero figure,
.rv-concept figure,
.rv-empty-stage figure {
  margin: 0;
  text-align: center;
}
.rv-hero figure img,
.rv-concept figure img,
.rv-empty-stage figure img {
  max-height: 590px;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .5));
}
.rv-status,
.rv-career,
.rv-requirements,
.rv-gallery-intro,
.rv-advertising {
  margin-top: 46px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.rv-status > p,
.rv-career > p,
.rv-gallery-intro > p,
.rv-advertising > p {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}
.rv-status > img {
  width: min(100%, 520px);
  margin-top: 20px;
  box-shadow: 0 20px 35px rgba(0,0,0,.4);
}
.rv-timeline {
  display: grid;
  max-width: 850px;
  margin: 28px auto 0;
  padding: 0;
  gap: 9px;
  list-style: none;
}
.rv-timeline li {
  display: grid;
  grid-template-columns: 110px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: left;
}
.rv-timeline strong {
  padding: 12px;
  color: var(--gold);
  background: rgba(241,202,107,.08);
  text-align: center;
}
.rv-timeline span {
  padding: 12px 16px;
}
.rv-archive-note {
  max-width: 850px;
  margin: 0 auto 38px;
  padding: 24px;
  border: 1px solid rgba(241,202,107,.42);
  border-radius: 17px;
  text-align: center;
  background: rgba(241,202,107,.06);
}
.rv-concept,
.rv-empty-stage {
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .6fr);
}
.rv-requirements ul {
  max-width: 830px;
  margin: 24px auto;
  padding-left: 1.4em;
  text-align: left;
}
.rv-requirements li {
  margin-bottom: 10px;
}
.rv-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 25px;
}
.rv-photo {
  display: block;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.035);
}
.rv-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.rv-photo:hover,
.rv-ad-card:hover {
  border-color: rgba(241,202,107,.72);
  transform: translateY(-2px);
}
.rv-ad-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 300px));
  justify-content: center;
  gap: 18px;
  margin: 26px 0;
}
.rv-ad-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--gold);
  background: rgba(255,255,255,.035);
  text-decoration: none;
}
.rv-ad-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}
.rv-ad-card span {
  padding: 12px;
}
.source-file {
  width: min(100%, 700px);
  margin: 45px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  text-align: center;
}

.hero {
  display: flex;
  min-height: 620px;
  align-items: center;
  flex-direction: column;
  gap: clamp(24px, 4vw, 48px);
  text-align: center;
}
.hero-copy {
  display: flex;
  width: min(100%, 860px);
  align-items: center;
  flex-direction: column;
}
.hero h2 {
  max-width: 860px;
  margin: 10px auto 18px;
  font-size: clamp(2.3rem, 5.4vw, 4.6rem);
  text-align: center;
}
.hero-copy > p:not(.status-note) {
  max-width: 780px;
}
.hero-image {
  width: min(100%, 620px);
  align-self: center;
  text-align: center;
}
.hero-image img {
  max-height: 720px;
  filter: drop-shadow(0 28px 28px rgba(0,0,0,.45));
}
.hero-kicker { color: var(--rose); font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.hero-quote { color: var(--gold-light); font-family: Georgia, serif; font-size: 1.25rem; font-style: italic; }
.status-note {
  width: min(100%, 760px);
  padding: 16px 18px;
  border: 1px solid rgba(233, 139, 150, .5);
  border-top: 4px solid #e98b96;
  border-radius: 12px;
  color: #ffe6e8;
  background: rgba(147, 25, 44, .22);
  font-size: .88rem;
  text-align: center;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  min-height: 48px;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: #16101b;
  background: var(--gold);
  font-weight: 800;
  text-decoration: none;
}
.button:hover { color: #16101b; background: #ffe49a; }
.button-secondary { color: var(--gold-light); background: transparent; }
.button-secondary:hover { color: #fff; background: rgba(255,255,255,.07); }

.feature-section { padding: 50px 0 20px; border-top: 1px solid var(--line); }
.feature-section > div:first-child {
  max-width: 850px;
  margin: 0 auto 28px;
  text-align: center;
}
.columns { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 60px); }
.highlights {
  display: grid;
  margin: 50px 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.highlights article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
.highlights article > img { float: right; width: 62px; margin: 0 0 10px 14px; }
.text-link { font-weight: 750; }
.show-links { padding-top: 30px; border-top: 1px solid var(--line); text-align: center; }
.banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.banner-grid a {
  display: grid;
  min-height: 80px;
  padding: 10px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}
.social-links { display: flex; justify-content: center; gap: 22px; margin-top: 30px; }
.social-links img { width: 86px; }

.gallery-intro { max-width: 680px; margin: 0 auto 28px !important; color: var(--muted); text-align: center; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  gap: 12px;
}
.gallery-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 8px 22px rgba(0,0,0,.2);
}
.gallery-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform .25s ease; }
.gallery-card:hover img { transform: scale(1.045); }

.lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  padding: 22px 70px 50px;
  place-items: center;
  background: rgba(2, 2, 12, .96);
  backdrop-filter: blur(12px);
}
.lightbox[hidden] { display: none; }
.lightbox figure { display: grid; max-width: min(92vw, 1400px); max-height: 86vh; margin: 0; place-items: center; }
.lightbox figure img { max-width: 100%; max-height: 78vh; border-radius: 8px; box-shadow: 0 20px 70px #000; object-fit: contain; }
.lightbox figcaption { margin-top: 10px; color: var(--muted); font-size: .85rem; text-align: center; }
.lightbox button {
  position: absolute;
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.08);
  font: 300 2.5rem/1 sans-serif;
  cursor: pointer;
}
.lightbox button:hover { background: rgba(255,255,255,.17); }
.lightbox-close { top: 18px; right: 18px; }
.lightbox-prev { top: 50%; left: 18px; transform: translateY(-50%); }
.lightbox-next { top: 50%; right: 18px; transform: translateY(-50%); }
.lightbox-count { position: absolute; bottom: 18px; left: 50%; color: var(--muted); transform: translateX(-50%); }

.site-footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 35px;
  color: var(--muted);
  font-size: .8rem;
  text-align: center;
}
.site-footer p { margin: 0 0 6px; color: var(--gold); font-family: Georgia, serif; }
.site-footer a { margin: 0 8px; }

@media (max-width: 1080px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 79px);
    padding: 14px 18px 22px;
    overflow-y: auto;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 6, 26, .98);
    box-shadow: 0 20px 35px rgba(0,0,0,.4);
    grid-template-columns: repeat(3, 1fr);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { min-height: 46px; padding: 12px; white-space: normal; }
  .christmas-clean-page .site-nav.is-open {
    border-color: rgba(177, 32, 34, .22);
    background: linear-gradient(180deg, rgba(244, 253, 255, .98), rgba(219, 249, 252, .96)) !important;
    box-shadow: 0 18px 36px rgba(88,150,164,.26);
  }
  .christmas-clean-page .site-nav.is-open a {
    color: #97171b;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(232, 252, 255, .88));
    border: 1px solid rgba(177,32,34,.18);
  }
  .christmas-clean-page .site-nav.is-open a:hover,
  .christmas-clean-page .site-nav.is-open a[aria-current="page"] {
    color: #fff;
    background: linear-gradient(180deg, #c52c31, #8f1619);
  }
}

@media (max-width: 760px) {
  body.rv-page {
    background:
      linear-gradient(rgba(0, 21, 103, .42), rgba(0, 8, 57, .72)),
      url("../../RueckwaertsVoran/Hinter.jpg") center top / cover no-repeat scroll,
      #052b9a;
  }
  body.ori-page {
    background:
      radial-gradient(ellipse at 50% 18%,
        rgba(255, 252, 228, .88) 0%,
        rgba(255, 238, 230, .62) 42%,
        rgba(240, 164, 205, .32) 100%),
      url("../../original/Hintergrund.jpg") center top / cover no-repeat scroll,
      #f7c6dc;
  }
  body.year-page {
    background:
      linear-gradient(rgba(0,0,0,.32), rgba(0,0,0,.66)),
      url("../images/year-mobile-background.png") center top / 100% 100% no-repeat scroll,
      #02070b;
  }
  body.weiber-page {
    background:
      linear-gradient(rgba(1, 26, 58, .48), rgba(0, 13, 36, .8)),
      url("../../Weiberkram/hintergr-weib1.jpg") center top / cover no-repeat fixed,
      #031b35;
  }
  .weiber-page .page-content {
    background:
      url("../images/weiber-curtains-pair.png") center top / 100% auto no-repeat,
      linear-gradient(rgba(225, 244, 255, .5), rgba(194, 228, 249, .75)),
      url("../../Weiberkram/hintergr-weib1.jpg") center top / auto 620px no-repeat,
      #b9def5;
  }
  .header-inner, .page-shell, .site-footer { width: min(100% - 20px, 1280px); }
  .brand small { display: none; }
  .site-nav { grid-template-columns: 1fr 1fr; }
  .page-shell { margin: 22px auto 35px; }
  .page-title { margin-bottom: 18px; }
  .page-content { padding: 22px 15px 30px; border-radius: 18px; }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-image { order: 2; }
  .hero-image img { max-height: 58vh; }
  .columns, .highlights, .banner-grid { grid-template-columns: 1fr; }
  .home-stage-layout,
  .transformation-columns {
    grid-template-columns: 1fr;
  }
  .home-main-figure {
    order: 1;
  }
  .home-stage-copy {
    order: 2;
  }
  .home-main-figure img {
    max-height: 58vh;
  }
  .transformation-columns {
    text-align: left;
  }
  .home-signatures article {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-signatures article img {
    width: 90px;
    margin: auto;
  }
  .christmas-link {
    flex-direction: column;
  }
  .project-cards { grid-template-columns: 1fr; }
  .theatre-program,
  .theatre-program.reverse {
    grid-template-columns: 1fr;
  }
  .theatre-program figure,
  .theatre-program.reverse figure {
    order: 1;
  }
  .theatre-program > div,
  .theatre-program.reverse > div {
    order: 2;
  }
  .theatre-program figure > img {
    max-height: 65vh;
  }
  .christmas-program {
    flex-direction: column;
  }
  .booking-intro,
  .requirements,
  .chronology-profile {
    grid-template-columns: 1fr;
  }
  .booking-copy,
  .requirements-copy {
    text-align: left;
  }
  .booking-angel {
    order: -1;
  }
  .booking-angel img,
  .requirements-image img {
    max-height: 52vh;
  }
  .format-row {
    grid-template-columns: 1fr;
  }
  .format-name {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
  }
  .format-name,
  .format-duration {
    min-height: auto;
  }
  .concept-grid {
    grid-template-columns: 1fr;
  }
  .requirements-copy h2 {
    text-align: center;
  }
  .chronology-figure {
    order: -1;
  }
  .chronology-figure img {
    max-height: 58vh;
  }
  .biography-data > div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .timeline::before {
    left: 55px;
  }
  .timeline-entry {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 27px;
  }
  .timeline-entry::before {
    left: 49px;
  }
  .timeline-entry time {
    font-size: .94rem;
  }
  .press-quotes {
    grid-template-columns: 1fr;
  }
  .press-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .press-card {
    padding: 6px;
    border-radius: 10px;
  }
  .press-card img {
    height: 180px;
  }
  .press-card span {
    min-height: 52px;
    font-size: .67rem;
  }
  .live-gallery-wall {
    columns: 2;
    column-gap: 8px;
  }
  .live-gallery-card {
    margin-bottom: 8px;
    padding: 5px;
    border-radius: 9px;
  }
  .live-gallery-card img {
    border-radius: 5px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .video-card {
    padding: 10px;
    border-radius: 13px;
  }
  .video-card h3 {
    min-height: auto;
  }
  .advertising-intro {
    grid-template-columns: 1fr;
  }
  .advertising-intro figure {
    order: -1;
  }
  .advertising-intro figure img {
    max-height: 56vh;
  }
  .advertising-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .advertising-card {
    padding: 5px;
    border-radius: 9px;
  }
  .advertising-text summary {
    padding: 16px 12px;
    font-size: 1rem;
  }
  .links-intro {
    grid-template-columns: 1fr;
  }
  .links-intro > div {
    text-align: center;
  }
  .links-intro figure {
    order: -1;
  }
  .links-intro figure img {
    max-height: 52vh;
  }
  .project-link-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .project-banner {
    min-height: 90px;
    padding: 14px;
  }
  .social-link-grid {
    flex-direction: column;
    align-items: center;
  }
  .imprint-intro {
    grid-template-columns: 1fr;
  }
  .imprint-intro figure {
    order: -1;
  }
  .imprint-intro figure img {
    max-height: 52vh;
  }
  .legal-section summary {
    padding: 15px 12px;
    font-size: 1rem;
  }
  .terms-page .page-title h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }
  .mandy-intro {
    grid-template-columns: 1fr;
  }
  .mandy-intro > div {
    text-align: center;
  }
  .mandy-intro figure {
    order: -1;
  }
  .mandy-intro figure img {
    max-height: 55vh;
  }
  .mandy-programs {
    grid-template-columns: 1fr;
  }
  .mandy-photo-grid {
    columns: 2;
    column-gap: 8px;
  }
  .mandy-photo {
    margin-bottom: 8px;
    padding: 5px;
  }
  .memory-chapter,
  .memory-chapter.memory-reverse {
    grid-template-columns: 1fr;
  }
  .memory-image,
  .memory-reverse .memory-image {
    order: 0;
    width: min(100%, 280px);
    margin: 0 auto;
    transform: none;
  }
  .memory-landscape {
    width: min(100%, 330px);
  }
  .memory-tall {
    width: min(100%, 145px);
  }
  .memory-chapter h3 {
    text-align: center;
  }
  .rv-hero,
  .rv-concept,
  .rv-empty-stage {
    grid-template-columns: 1fr;
  }
  .rv-hero > div,
  .rv-concept > div,
  .rv-empty-stage > div {
    text-align: center;
  }
  .rv-hero figure,
  .rv-concept figure,
  .rv-empty-stage figure {
    order: -1;
  }
  .rv-hero figure img,
  .rv-concept figure img,
  .rv-empty-stage figure img {
    max-height: 52vh;
  }
  .rv-timeline li {
    grid-template-columns: 82px 1fr;
  }
  .rv-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .rv-ad-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }
  .ori-hero {
    grid-template-columns: 1fr;
  }
  .ori-hero > div {
    text-align: center;
  }
  .ori-hero figure {
    order: -1;
  }
  .ori-hero figure img {
    max-height: 55vh;
  }
  .ori-page .page-content::before,
  .ori-page .page-content::after {
    width: 48px;
    height: 240px;
    opacity: .24;
  }
  .ori-page .page-content {
    padding-top: 72px;
    background:
      url("../../original/ranke-o.png") center top / 720px auto no-repeat,
      radial-gradient(ellipse at 50% 24%,
        rgba(255, 253, 232, .97) 0%,
        rgba(255, 242, 222, .95) 48%,
        rgba(249, 211, 226, .92) 100%);
  }
  .ori-photo-grid {
    columns: 2;
    column-gap: 7px;
  }
  .ori-photo {
    margin-bottom: 7px;
    padding: 4px;
  }
  .year-hero-layout,
  .year-finale {
    grid-template-columns: 1fr;
  }
  .year-hero-layout > div {
    text-align: center;
  }
  .year-hero-layout > img,
  .year-finale > img {
    order: -1;
    max-height: 55vh;
  }
  .season-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .season-grid article {
    padding: 12px 8px;
  }
  .season-grid img {
    height: 120px;
  }
  .year-photo-grid {
    columns: 2;
    column-gap: 7px;
  }
  .year-photo {
    margin-bottom: 7px;
    padding: 4px;
  }
  .weiber-hero-layout,
  .weiber-copy,
  .weiber-program {
    grid-template-columns: 1fr;
  }
  .weiber-hero-layout > div,
  .weiber-copy > div,
  .weiber-program > div {
    text-align: center;
  }
  .weiber-hero-layout > img,
  .weiber-copy > img,
  .weiber-program > img {
    order: -1;
    max-height: 52vh;
  }
  .weiber-title-art {
    margin-bottom: 16px;
  }
  .weiber-photo-grid {
    columns: 2;
    column-gap: 7px;
  }
  .weiber-photo {
    margin-bottom: 7px;
    padding: 4px;
  }
  .weiber-video-grid,
  .weiber-format-grid {
    grid-template-columns: 1fr;
  }
  .weiber-ad-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .weiber-legacy-interview {
    padding: 13px;
    text-align: left;
  }
  body.christmas-page {
    overflow-x: hidden;
    background: #e7fbff;
  }
  .christmas-page .page-shell,
  .christmas-page .page-content,
  .christmas-page section,
  .christmas-page figure,
  .christmas-page img {
    max-width: 100%;
  }
  .christmas-page .page-shell {
    width: 100vw;
    max-width: 100vw;
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
  .christmas-page .page-content {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    margin-right: auto;
    margin-left: auto;
    padding-right: 8px;
    padding-left: 8px;
    background: #f8feff;
  }
  .christmas-hero {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-right: 8px;
    padding-left: 8px;
  }
  .christmas-hero > div {
    width: 100%;
    min-width: 0;
  }
  .christmas-hero figure {
    width: 100%;
    min-width: 0;
  }
  .christmas-page .page-title h1 {
    max-width: min(330px, calc(100vw - 30px));
    font-size: clamp(1.7rem, 8vw, 2.05rem);
    line-height: 1.05;
    text-align: center;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .christmas-page .page-title,
  .christmas-script-title,
  .christmas-hero figure,
  .christmas-nav {
    display: none;
  }
  .christmas-page .page-content {
    overflow: hidden;
  }
  .christmas-nav {
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
    padding: 10px 7px;
    overflow: hidden;
  }
  .christmas-nav a {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding-right: 12px;
    padding-left: 12px;
    text-align: center;
  }
  .christmas-script-title {
    width: min(100%, 285px);
  }
  .christmas-hero h2,
  .christmas-characters h2,
  .christmas-gallery-block h3,
  .christmas-music h2,
  .christmas-video h2,
  .christmas-advertising h2 {
    font-size: clamp(1.45rem, 7.4vw, 1.9rem);
    line-height: 1.12;
    overflow-wrap: anywhere;
    max-width: 285px;
    margin-right: auto;
    margin-left: auto;
  }
  .christmas-hero p,
  .christmas-copy p,
  .christmas-music p,
  .christmas-gallery-intro p,
  .christmas-advertising p {
    overflow-wrap: anywhere;
    max-width: 285px;
    margin-right: auto;
    margin-left: auto;
  }
  .christmas-hero,
  .christmas-info {
    grid-template-columns: 1fr;
  }
  .christmas-hero figure,
  .christmas-info figure {
    order: -1;
  }
  .christmas-hero figure img,
  .christmas-info figure img {
    max-height: 54vh;
  }
  .christmas-character-grid,
  .christmas-ad-grid,
  .christmas-format-grid,
  .christmas-audio-grid {
    grid-template-columns: 1fr;
  }
  .christmas-character-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .christmas-photo-grid,
  .christmas-photo-grid.compact {
    columns: 2;
    column-gap: 7px;
  }
  .christmas-photo {
    margin-bottom: 7px;
    padding: 4px;
  }
  .christmas-clean-page {
    background: #e7fbff;
  }
  .christmas-clean-page,
  .christmas-clean-page * {
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .christmas-clean-page h1,
  .christmas-clean-page h2,
  .christmas-clean-page h3,
  .christmas-clean-page p,
  .christmas-clean-page a,
  .christmas-clean-page span,
  .christmas-plain-text,
  .christmas-plain-text * {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    hyphens: auto;
  }
  .christmas-clean-shell {
    width: min(300px, calc(100vw - 32px)) !important;
    max-width: min(300px, calc(100vw - 32px)) !important;
    margin: 20px 0 34px 16px !important;
    padding: 0 !important;
    overflow: hidden;
  }
  .christmas-clean-title {
    margin-bottom: 18px;
  }
  .christmas-clean-title h1 {
    max-width: 100% !important;
    font-size: clamp(1.55rem, 7vw, 1.95rem);
    overflow-wrap: break-word;
  }
  .christmas-clean-nav {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100% !important;
    max-width: 100% !important;
    padding: 10px;
    overflow: hidden;
  }
  .christmas-clean-nav a {
    min-width: 0;
    min-height: 46px;
    padding: 8px;
  }
  .christmas-clean-card {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 14px 28px;
    border-radius: 18px;
    overflow: hidden;
  }
  .christmas-clean-card h2 {
    max-width: 100% !important;
    font-size: clamp(1.2rem, 6.4vw, 1.5rem);
  }
  .christmas-clean-card p {
    max-width: 100% !important;
    overflow-wrap: anywhere;
  }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 7px; }
  .gallery-card { border-radius: 8px; }
  .page-content table, .page-content tbody, .page-content tr, .page-content td { max-width: 100%; }
  .page-content img[align="left"], .page-content img[align="right"] {
    display: block;
    float: none;
    width: auto;
    max-height: 70vh;
    margin: 12px auto 24px;
  }
  .lightbox { padding: 60px 8px 58px; }
  .lightbox-prev, .lightbox-next { top: auto !important; bottom: 12px; transform: none !important; }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-count { bottom: 27px; }
  .lightbox-close { top: 10px; right: 10px; }
}

@media (max-width: 430px) {
  .site-nav { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body.christmas-clean-page {
    width: 100%;
    overflow-x: hidden;
    background: #e7fbff;
  }
  .christmas-clean-page .header-inner,
  .christmas-clean-page .site-footer {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
  .christmas-clean-shell {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin: 22px 0 36px 16px !important;
    padding: 0 !important;
    text-align: center;
    overflow: hidden;
  }
  .christmas-clean-title,
  .christmas-clean-card {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }
  .christmas-clean-title h1 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.08;
    text-align: center;
    overflow-wrap: anywhere;
  }
  .christmas-clean-nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 24px;
  }
  .christmas-clean-card {
    padding: 26px 16px 30px;
    border-radius: 20px;
  }
  .christmas-clean-card h2 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(1.35rem, 6.7vw, 1.85rem);
    line-height: 1.12;
    text-align: center;
    overflow-wrap: anywhere;
  }
  .christmas-clean-card p {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .portal-hero,
  .portal-project,
  .portal-person {
    grid-template-columns: 1fr;
  }
  .portal-page {
    width: 100%;
    overflow-x: hidden;
  }
  .portal-page .header-inner,
  .portal-page .site-footer {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }
  .portal-page .page-shell {
    width: min(340px, calc(100vw - 32px)) !important;
    max-width: min(340px, calc(100vw - 32px)) !important;
    margin: 22px 0 36px 16px !important;
    overflow: hidden;
  }
  .portal-page .page-content {
    width: 100% !important;
    max-width: 100% !important;
    padding-right: 14px;
    padding-left: 14px;
    overflow: hidden;
  }
  .portal-page .page-title h1,
  .portal-page h2,
  .portal-page p,
  .portal-page a {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .portal-page .page-title h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }
  .portal-hero p,
  .portal-project p,
  .portal-person p,
  .portal-gallery-overview p,
  .portal-thanks p,
  .portal-gallery-intro p {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }
  .portal-hero h2,
  .portal-project h2,
  .portal-person h2,
  .portal-gallery-overview h2 {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }
  .portal-nav {
    display: grid;
    grid-template-columns: 1fr;
  }
  .portal-hero figure,
  .portal-project figure,
  .portal-person figure {
    order: -1;
  }
  .portal-hero img,
  .portal-project img,
  .portal-person img {
    max-height: 56vh;
  }
  .portal-category-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .portal-category-card {
    min-height: 76px;
  }
  .portal-photo-grid {
    columns: 2;
    column-gap: 7px;
  }
  .portal-photo {
    margin-bottom: 7px;
    padding: 4px;
  }
}

/* Gina Hauptseite: mehr Bühne, Licht und Showcharakter */
body.home-page {
  position: relative;
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 240, 185, .22), transparent 34rem),
    radial-gradient(circle at 12% 16%, rgba(231, 125, 187, .28), transparent 28rem),
    radial-gradient(circle at 88% 22%, rgba(86, 105, 255, .28), transparent 30rem),
    radial-gradient(circle at 50% 72%, rgba(241, 202, 107, .16), transparent 36rem),
    linear-gradient(145deg, #020312 0%, #080b34 42%, #16051f 72%, #02020a 100%) fixed;
}

body.home-page::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255,255,255,.88) 0 .055rem, transparent .065rem) 8% 12% / 8rem 8rem,
    radial-gradient(circle, rgba(255,240,185,.72) 0 .05rem, transparent .065rem) 62% 20% / 10rem 10rem,
    radial-gradient(circle, rgba(231,125,187,.62) 0 .045rem, transparent .06rem) 28% 70% / 9rem 9rem,
    linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.08) 45%, transparent 53% 100%);
  opacity: .78;
}

body.home-page .site-header {
  background:
    linear-gradient(90deg, rgba(2, 3, 18, .94), rgba(18, 8, 43, .92), rgba(2, 3, 18, .94));
  box-shadow:
    0 .55rem 1.9rem rgba(0,0,0,.38),
    0 0 2.2rem rgba(241,202,107,.10);
}

body.home-page .page-shell {
  width: min(95vw, 1280px);
}

body.home-page .page-title {
  margin-bottom: 2rem;
  text-shadow: 0 .18em .8em rgba(0,0,0,.74);
}

body.home-page .page-title h1 {
  color: var(--gold-light);
  text-shadow:
    0 0 .35em rgba(241,202,107,.45),
    0 .08em .45em rgba(0,0,0,.82);
}

body.home-page .page-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: clamp(1.35rem, 4.5vw, 4rem);
  border-color: rgba(241,202,107,.42);
  border-radius: clamp(1.25rem, 4vw, 2.4rem);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,240,185,.14), transparent 28rem),
    radial-gradient(circle at 0% 18%, rgba(231,125,187,.12), transparent 26rem),
    radial-gradient(circle at 100% 24%, rgba(80,88,210,.16), transparent 28rem),
    linear-gradient(145deg, rgba(4,5,30,.84), rgba(11,13,61,.72) 58%, rgba(32,5,39,.70));
  box-shadow:
    0 1.7rem 4.8rem rgba(0,0,0,.46),
    inset 0 0 2.2rem rgba(255,240,185,.055),
    0 0 3rem rgba(231,125,187,.08);
}

body.home-page .page-content::before,
body.home-page .page-content::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body.home-page .page-content::before {
  inset: .65rem;
  border: 1px solid rgba(255,240,185,.14);
  border-radius: inherit;
  box-shadow: inset 0 0 2.4rem rgba(241,202,107,.06);
}

body.home-page .page-content::after {
  top: -10%;
  left: 50%;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,240,185,.18), transparent 68%);
  transform: translateX(-50%);
  filter: blur(.2rem);
}

body.home-page .page-content > * {
  position: relative;
  z-index: 1;
}

body.home-page .page-content p {
  width: min(95%, 62rem);
  max-width: 62rem;
  text-align: center;
}

body.home-page .page-content h2,
body.home-page .page-content h3 {
  color: var(--gold-light);
  text-shadow:
    0 0 .45em rgba(241,202,107,.34),
    0 .08em .42em rgba(0,0,0,.82);
}

body.home-page .home-notice {
  width: min(95%, 62rem);
  border-color: rgba(233,139,150,.55);
  border-top-color: rgba(255,190,200,.88);
  background:
    linear-gradient(145deg, rgba(95,10,28,.50), rgba(45,6,26,.34));
  box-shadow:
    0 .85rem 2rem rgba(0,0,0,.28),
    inset 0 0 1.6rem rgba(255,255,255,.035);
}

body.home-page .home-stage > h2 {
  width: min(100%, 68rem);
  font-size: clamp(2.25rem, 6.1vw, 5.1rem);
  text-align: center;
}

body.home-page .home-stage-layout {
  width: min(100%, 70rem);
  margin: 0 auto;
}

body.home-page .home-main-figure img {
  filter:
    drop-shadow(0 0 1.2rem rgba(255,240,185,.22))
    drop-shadow(0 1.8rem 1.8rem rgba(0,0,0,.54));
}

body.home-page .home-stage-copy,
body.home-page .home-signatures article,
body.home-page .banner-grid a,
body.home-page .christmas-link,
body.home-page .social-links a {
  border: 1px solid rgba(241,202,107,.32);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,240,185,.10), transparent 14rem),
    rgba(255,255,255,.045);
  box-shadow:
    0 .75rem 1.8rem rgba(0,0,0,.26),
    inset 0 0 1.4rem rgba(241,202,107,.04);
}

body.home-page .home-stage-copy {
  padding: clamp(1.15rem, 3vw, 2rem);
  border-radius: 1.35rem;
}

body.home-page .transformation-world {
  width: min(100%, 72rem);
  margin: 3.2rem auto 0;
  padding: clamp(2rem, 5vw, 3.5rem) 0;
}

body.home-page .transformation-columns {
  width: min(95%, 68rem);
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

body.home-page .home-signatures article {
  border-radius: 1.2rem;
}

body.home-page .show-links {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.site-footer {
  padding-top: 1.6rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem;
  width: min(100%, 68rem);
  margin: .4rem auto 0;
}

.site-footer a {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: .42rem .72rem;
  border: 1px solid rgba(241,202,107,.24);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(255,255,255,.035);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  background: rgba(241,202,107,.12);
}

@media (max-width: 760px) {
  body.home-page .page-shell {
    width: min(100% - 20px, 100vw);
    margin-top: 1.4rem;
  }

  body.home-page .page-content {
    padding: 1.35rem .95rem 1.8rem;
  }

  body.home-page .home-stage-layout,
  body.home-page .transformation-columns {
    grid-template-columns: 1fr;
  }

  body.home-page .home-stage-copy {
    padding: 1rem .85rem;
  }

  body.home-page .page-content p {
    width: 95%;
  }

  .site-footer {
    width: min(100% - 20px, 100vw);
  }

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

  .site-footer a {
    white-space: normal;
  }
}

/* Showwelten: mehr Eigencharakter, mehr Bühne, weniger Baukasten */
body.rv-page,
body.ori-page,
body.year-page,
body.weiber-page {
  position: relative;
  overflow-x: hidden;
}

body.rv-page::before,
body.ori-page::before,
body.year-page::before,
body.weiber-page::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
}

body.rv-page::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(141, 229, 255, .24), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, .16), transparent 18%),
    radial-gradient(circle at 50% 105%, rgba(65, 141, 255, .35), transparent 35%),
    repeating-radial-gradient(circle at 50% 38%, rgba(255,255,255,.08) 0 1px, transparent 1px 42px);
  mix-blend-mode: screen;
}

body.ori-page::before {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 252, 220, .75), transparent 22%),
    radial-gradient(circle at 10% 42%, rgba(255, 175, 218, .28), transparent 24%),
    radial-gradient(circle at 90% 42%, rgba(255, 238, 180, .25), transparent 24%),
    linear-gradient(90deg, rgba(90, 37, 54, .16), transparent 18%, transparent 82%, rgba(90, 37, 54, .16));
}

body.year-page::before {
  background:
    radial-gradient(circle at 17% 22%, rgba(158, 245, 138, .24), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(255, 196, 66, .22), transparent 24%),
    radial-gradient(circle at 17% 82%, rgba(255, 126, 58, .20), transparent 25%),
    radial-gradient(circle at 82% 84%, rgba(142, 220, 255, .28), transparent 25%),
    linear-gradient(180deg, transparent, rgba(0,0,0,.28));
}

body.weiber-page::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 188, 75, .30), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(130, 218, 255, .25), transparent 22%),
    radial-gradient(circle at 50% 92%, rgba(255, 160, 60, .22), transparent 34%),
    linear-gradient(90deg, rgba(4, 35, 68, .32), transparent 20%, transparent 80%, rgba(4, 35, 68, .32));
}

.rv-page .page-shell,
.ori-page .page-shell,
.year-page .page-shell,
.weiber-page .page-shell {
  width: min(95vw, 1280px);
}

.rv-page .page-title,
.ori-page .page-title,
.year-page .page-title,
.weiber-page .page-title {
  padding: .6rem 0 .2rem;
  text-shadow: 0 .18rem .8rem rgba(0,0,0,.45);
}

.rv-page .page-content,
.ori-page .page-content,
.year-page .page-content,
.weiber-page .page-content {
  isolation: isolate;
  padding-right: clamp(1.1rem, 4vw, 3rem);
  padding-left: clamp(1.1rem, 4vw, 3rem);
}

.rv-page .page-content p,
.ori-page .page-content p,
.year-page .page-content p,
.weiber-page .page-content p {
  max-width: 66rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.rv-page .page-content h2,
.ori-page .page-content h2,
.year-page .page-content h2,
.weiber-page .page-content h2 {
  text-shadow: 0 .1rem .8rem rgba(0,0,0,.28);
}

.project-nav {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.08),
    0 1.2rem 3rem rgba(0,0,0,.22);
}

.project-nav a {
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 .4rem 1.2rem rgba(0,0,0,.16);
}

.project-nav a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.rv-page .theatrical-panel,
.ori-page .theatrical-panel,
.year-page .theatrical-panel,
.weiber-page .theatrical-panel,
.rv-status,
.rv-career,
.rv-requirements,
.year-seasons,
.year-finale,
.weiber-copy,
.weiber-program,
.weiber-takeoff,
.weiber-legacy-interview {
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.07),
    0 1.4rem 3.8rem rgba(0,0,0,.25);
}

.rv-page .site-footer,
.ori-page .site-footer,
.year-page .site-footer,
.weiber-page .site-footer {
  width: min(95vw, 1280px);
  margin-right: auto;
  margin-left: auto;
}

.rv-page .site-footer nav,
.ori-page .site-footer nav,
.year-page .site-footer nav,
.weiber-page .site-footer nav {
  width: min(100%, 78rem);
}

@media (max-width: 760px) {
  .rv-page .page-shell,
  .ori-page .page-shell,
  .year-page .page-shell,
  .weiber-page .page-shell,
  .rv-page .site-footer,
  .ori-page .site-footer,
  .year-page .site-footer,
  .weiber-page .site-footer {
    width: min(100% - 20px, 100vw);
  }

  .rv-page .page-content,
  .ori-page .page-content,
  .year-page .page-content,
  .weiber-page .page-content {
    padding-right: .9rem;
    padding-left: .9rem;
  }

  .rv-page .page-content p,
  .ori-page .page-content p,
  .year-page .page-content p,
  .weiber-page .page-content p {
    max-width: 95%;
  }
}

/* Gina-Hauptwelt: gemeinsamer leuchtender Show-Sternenhimmel */
body:is(
  .home-page,
  .shows-page,
  .booking-page,
  .gallery-page,
  .multimedia-page,
  .chronology-page,
  .press-page,
  .advertising-page,
  .links-page,
  .imprint-page,
  .gina-mandy-page,
  .childhood-page
) {
  position: relative;
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 246, 198, .46), transparent 21rem),
    radial-gradient(circle at 14% 12%, rgba(255, 64, 185, .40), transparent 25rem),
    radial-gradient(circle at 87% 18%, rgba(90, 132, 255, .44), transparent 28rem),
    radial-gradient(circle at 19% 78%, rgba(255, 185, 60, .28), transparent 31rem),
    radial-gradient(circle at 84% 82%, rgba(174, 78, 255, .30), transparent 32rem),
    conic-gradient(from 20deg at 50% 18%, transparent 0 16deg, rgba(255,255,255,.12) 23deg, transparent 31deg 74deg, rgba(255,226,150,.10) 84deg, transparent 96deg 360deg),
    linear-gradient(145deg, #01020b 0%, #05092f 36%, #170622 68%, #030108 100%) fixed;
  background-attachment: fixed;
}

body:is(
  .home-page,
  .shows-page,
  .booking-page,
  .gallery-page,
  .multimedia-page,
  .chronology-page,
  .press-page,
  .advertising-page,
  .links-page,
  .imprint-page,
  .gina-mandy-page,
  .childhood-page
)::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255,255,255,.98) 0 .07rem, transparent .095rem) 5% 9% / 6.5rem 6.5rem,
    radial-gradient(circle, rgba(255,240,178,.94) 0 .075rem, transparent .105rem) 56% 14% / 8rem 8rem,
    radial-gradient(circle, rgba(255,110,214,.84) 0 .06rem, transparent .09rem) 28% 52% / 7rem 7rem,
    radial-gradient(circle, rgba(126,170,255,.82) 0 .06rem, transparent .09rem) 78% 44% / 7.6rem 7.6rem,
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.22), transparent 14rem),
    linear-gradient(112deg, transparent 0 37%, rgba(255,255,255,.18) 45%, transparent 54% 100%),
    linear-gradient(72deg, transparent 0 41%, rgba(255,213,122,.14) 50%, transparent 58% 100%);
  opacity: .98;
}

body:is(
  .home-page,
  .shows-page,
  .booking-page,
  .gallery-page,
  .multimedia-page,
  .chronology-page,
  .press-page,
  .advertising-page,
  .links-page,
  .imprint-page,
  .gina-mandy-page,
  .childhood-page
)::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.60) 0 .11rem, transparent .18rem),
    radial-gradient(circle at 24% 64%, rgba(255,226,150,.58) 0 .09rem, transparent .16rem),
    radial-gradient(circle at 44% 31%, rgba(255,106,216,.50) 0 .08rem, transparent .15rem),
    radial-gradient(circle at 68% 22%, rgba(255,255,255,.62) 0 .10rem, transparent .18rem),
    radial-gradient(circle at 82% 70%, rgba(120,164,255,.55) 0 .10rem, transparent .18rem),
    radial-gradient(circle at 93% 38%, rgba(255,238,176,.56) 0 .09rem, transparent .16rem);
  filter: drop-shadow(0 0 .48rem rgba(255,240,185,.72));
  opacity: .9;
}

body:is(
  .shows-page,
  .booking-page,
  .gallery-page,
  .multimedia-page,
  .chronology-page,
  .press-page,
  .advertising-page,
  .links-page,
  .imprint-page,
  .gina-mandy-page,
  .childhood-page
) .page-content {
  border-color: rgba(241,202,107,.34);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,240,185,.11), transparent 26rem),
    radial-gradient(circle at 0% 18%, rgba(231,125,187,.10), transparent 24rem),
    radial-gradient(circle at 100% 24%, rgba(80,88,210,.13), transparent 26rem),
    linear-gradient(145deg, rgba(4,5,30,.86), rgba(11,13,61,.76) 58%, rgba(31,5,39,.74));
  box-shadow:
    0 1.4rem 4.4rem rgba(0,0,0,.42),
    inset 0 0 2.2rem rgba(255,240,185,.055),
    0 0 2.4rem rgba(231,125,187,.08);
}

/* Mehr Sternenglanz: Gina als leuchtende Erinnerung im Show-Himmel */
body:is(
  .home-page,
  .shows-page,
  .booking-page,
  .gallery-page,
  .multimedia-page,
  .chronology-page,
  .press-page,
  .advertising-page,
  .links-page,
  .imprint-page,
  .gina-mandy-page,
  .childhood-page
) {
  background:
    url("../img/gina-show-sternenhimmel.png") center top / cover fixed no-repeat,
    radial-gradient(circle at 50% -12%, rgba(255, 246, 198, .42), transparent 22rem),
    radial-gradient(circle at 15% 12%, rgba(255, 64, 185, .32), transparent 26rem),
    radial-gradient(circle at 88% 16%, rgba(90, 132, 255, .34), transparent 28rem),
    linear-gradient(145deg, #01020b 0%, #05092f 36%, #170622 68%, #030108 100%) fixed;
}

body:is(
  .home-page,
  .shows-page,
  .booking-page,
  .gallery-page,
  .multimedia-page,
  .chronology-page,
  .press-page,
  .advertising-page,
  .links-page,
  .imprint-page,
  .gina-mandy-page,
  .childhood-page
)::before {
  background:
    radial-gradient(circle at 50% 10%, rgba(255,255,255,.22), transparent 18rem),
    radial-gradient(circle at 50% 10%, rgba(255,216,111,.18), transparent 32rem);
  opacity: .95;
}

body:is(
  .home-page,
  .shows-page,
  .booking-page,
  .gallery-page,
  .multimedia-page,
  .chronology-page,
  .press-page,
  .advertising-page,
  .links-page,
  .imprint-page,
  .gina-mandy-page,
  .childhood-page
)::after {
  background:
    linear-gradient(130deg, transparent 0 39%, rgba(255,255,255,.22) 45%, rgba(255,221,132,.10) 50%, transparent 60% 100%);
  filter: blur(.1rem);
  opacity: .55;
  mix-blend-mode: screen;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}



/* CODEX: Gina-Universum Feinschliff */
.links-page .universe-ggd .project-link-copy {
  text-align: center;
  justify-items: center;
}

.links-page .universe-ggd .project-banner {
  background: radial-gradient(circle at center, rgba(241, 202, 107, .24), rgba(80, 55, 140, .18), transparent 72%);
}

/* CODEX: Startseite weitere Gina-Projekte */
.home-page .home-project-links {
  flex-wrap: wrap;
}
.home-page .home-project-ggd {
  flex-basis: min(100%, 280px);
  margin-inline: auto;
}

