:root {
  color-scheme: dark;
  --bg: #05070a;
  --bg-soft: #0b1118;
  --panel: rgba(13, 18, 23, 0.9);
  --panel-strong: #111820;
  --text: #f7efe2;
  --muted: #cbbda9;
  --dim: #8e8376;
  --gold: #f4d783;
  --gold-strong: #f0bc46;
  --ember: #dc4d2e;
  --red: #9b1d1d;
  --line: rgba(244, 215, 131, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 18px 46px rgba(240, 188, 70, 0.3);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1160px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(168, 52, 29, 0.2), transparent 32rem),
    linear-gradient(180deg, #020406 0%, #090d10 45%, #05070a 100%);
  color: var(--text);
  line-height: 1.6;
}

body.is-lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 50;
  background: var(--gold);
  color: #171008;
  padding: 0.75rem 1rem;
  border-radius: 0.35rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(2, 4, 6, 0.92), rgba(2, 4, 6, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  transition:
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.site-header.is-scrolled {
  background: rgba(2, 4, 6, 0.86);
  border-color: rgba(244, 215, 131, 0.16);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.36);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 220ms var(--ease-out);
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(244, 215, 131, 0.5);
  border-radius: 0.3rem;
  background: #05070a;
  color: var(--gold);
  font-weight: 800;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.brand:hover .brand-mark,
.brand:focus-visible .brand-mark {
  border-color: rgba(244, 215, 131, 0.95);
  box-shadow: 0 0 28px rgba(240, 188, 70, 0.24);
  transform: rotate(-4deg);
}

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

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.7rem);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  position: relative;
  text-decoration: none;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease-out);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 215, 131, 0.65);
  border-radius: 0.35rem;
  background: linear-gradient(180deg, var(--gold), var(--gold-strong));
  color: #180e06;
  font-weight: 800;
  padding: 0.78rem 1.25rem;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(240, 188, 70, 0.22);
  transition:
    box-shadow 220ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 220ms var(--ease-out);
}

.button::before {
  position: absolute;
  inset: -40%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.42) 38%,
    transparent 56%
  );
  content: "";
  opacity: 0;
  transform: translateX(-45%) rotate(8deg);
  transition:
    opacity 220ms ease,
    transform 620ms var(--ease-out);
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(255, 255, 255, 0.3),
    transparent 48%
  );
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: rgba(255, 244, 200, 0.95);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px) scale(1.015);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(52%) rotate(8deg);
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button {
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button.is-pressed {
  transform: translateY(0) scale(0.985);
}

.button-small {
  min-height: 2.55rem;
  padding: 0.55rem 0.95rem;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(244, 215, 131, 0.1);
  box-shadow: 0 14px 34px rgba(244, 215, 131, 0.14);
}

.button-disabled {
  pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 9rem clamp(1rem, 4vw, 4rem) 2rem;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #020406 url("assets/site/moonlight-plakat-web.jpg") center clamp(4.4rem, 6.5vw, 5.8rem) / cover no-repeat;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 7, 10, 0.82) 0%, rgba(5, 7, 10, 0.62) 32%, rgba(5, 7, 10, 0.16) 58%, rgba(5, 7, 10, 0.76) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.04) 0%, rgba(5, 7, 10, 0.06) 34%, rgba(5, 7, 10, 0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 47rem;
  animation: heroLift 780ms var(--ease-out) both;
}

.eyebrow,
.kicker,
.video-label,
.status {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.status {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  border: 1px solid rgba(244, 215, 131, 0.24);
  border-radius: 99rem;
  background: rgba(5, 7, 10, 0.42);
  padding: 0.36rem 0.64rem;
  line-height: 1.1;
}

.status::before {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999rem;
  background: currentColor;
  box-shadow: 0 0 16px currentColor;
  content: "";
  flex: 0 0 auto;
}

.status-on-sale {
  border-color: rgba(145, 219, 139, 0.34);
  color: #91db8b;
}

.status-coming-soon {
  border-color: rgba(244, 215, 131, 0.34);
  color: var(--gold);
}

.status-low {
  --status-dot-inset: 0.75rem;
  --status-dot-size: 0.42rem;
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 175, 75, 0.38);
  color: #ffaf4b;
  padding: 0.72rem 0.8rem 0.42rem 1.62rem;
}

.status-low::before {
  position: absolute;
  top: 0.52rem;
  left: var(--status-dot-inset);
  width: var(--status-dot-size);
  height: var(--status-dot-size);
  background: radial-gradient(circle at 32% 32%, #ffe7a1 0 22%, currentColor 30% 100%);
  box-shadow: 0 0 10px currentColor;
  animation: statusDotRoll 2.8s var(--ease-out) infinite;
}

.status-sold-out {
  border-color: rgba(255, 105, 91, 0.36);
  color: #ff695b;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 12ch;
  margin-bottom: 0.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 10vw, 8.8rem);
  font-weight: 500;
  color: #fff5bd;
  text-shadow: 0 0 30px rgba(244, 215, 131, 0.3);
}

.hero-claim {
  margin-bottom: 1.2rem;
  color: #ec3f35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.65rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 40rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.45vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-facts {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: var(--max);
  margin-top: 3.5rem;
}

.hero-facts span {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 131, 0.22);
  border-radius: 99rem;
  background: rgba(5, 7, 10, 0.58);
  color: var(--muted);
  padding: 0.45rem 0.8rem;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease-out),
    background 220ms ease;
}

.hero-facts span:hover {
  border-color: rgba(244, 215, 131, 0.55);
  background: rgba(244, 215, 131, 0.08);
  color: var(--text);
  transform: translateY(-2px);
}

.section {
  padding: clamp(4rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.section > * {
  max-width: var(--max);
  margin-inline: auto;
}

.section-intro {
  background: linear-gradient(180deg, var(--bg), #090e12);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: end;
}

h2 {
  margin-bottom: 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.15rem;
}

p {
  color: var(--muted);
}

.benefit-grid,
.ensemble-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-grid {
  margin-top: 3rem;
}

.benefit-card,
.ensemble-grid article,
.tour-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease-out);
}

.benefit-card::before,
.ensemble-grid article::before,
.tour-card::before,
.video-player::before,
.trust-panel::before,
.interview-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    18rem circle at var(--mx, 50%) var(--my, 45%),
    rgba(244, 215, 131, 0.16),
    transparent 58%
  );
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.benefit-card > *,
.ensemble-grid article > *,
.tour-card > *,
.video-player > *,
.trust-panel > *,
.interview-panel > * {
  position: relative;
  z-index: 1;
}

.benefit-card:hover,
.benefit-card:focus-within,
.ensemble-grid article:hover,
.ensemble-grid article:focus-within,
.tour-card:hover,
.tour-card:focus-within {
  border-color: rgba(244, 215, 131, 0.4);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.56);
  transform: translateY(-5px);
}

.benefit-card:hover::before,
.benefit-card:focus-within::before,
.ensemble-grid article:hover::before,
.ensemble-grid article:focus-within::before,
.tour-card:hover::before,
.tour-card:focus-within::before,
.video-player:hover::before,
.trust-panel:hover::before,
.interview-panel:hover::before {
  opacity: 1;
}

.benefit-card,
.ensemble-grid article {
  padding: 1.35rem;
}

.section-video,
.section-show,
.section-testimonials,
.section-trust {
  background:
    radial-gradient(circle at 18% 0%, rgba(220, 77, 46, 0.15), transparent 26rem),
    var(--bg-soft);
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 42rem;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
}

.video-player {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #000;
  box-shadow: var(--shadow);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease-out);
}

.video-player:hover {
  border-color: rgba(244, 215, 131, 0.42);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.55);
  transform: translateY(-3px);
}

.video-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  object-fit: cover;
}

.section-tickets {
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.95), rgba(5, 7, 10, 0.86)),
    url("assets/site/moonlight-plakat-web.jpg") center top / 36rem auto no-repeat fixed;
}

.tour-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tour-card {
  min-height: 18rem;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.2rem;
}

.tour-card time {
  color: var(--gold);
  font-weight: 800;
}

.tour-card h3 {
  margin-bottom: 0;
  font-size: 1.45rem;
}

.tour-card p {
  min-height: 3rem;
  margin-bottom: 0;
}

.tour-card .button {
  margin-top: auto;
}

.is-featured {
  border-color: rgba(244, 215, 131, 0.45);
  background: linear-gradient(180deg, rgba(244, 215, 131, 0.14), rgba(255, 255, 255, 0.035));
}

.show-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.show-copy p {
  font-size: 1.04rem;
}

.show-copy .button {
  margin-top: 1rem;
}

.show-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  box-shadow: var(--shadow);
  transition:
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms var(--ease-out);
}

.show-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 620ms var(--ease-out);
}

.show-image:hover {
  border-color: rgba(244, 215, 131, 0.42);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.58);
  transform: translateY(-4px);
}

.show-image:hover img {
  filter: saturate(1.12) contrast(1.05);
  transform: scale(1.045);
}

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

.ensemble-portrait {
  margin: 0 0 1rem;
  overflow: hidden;
  border: 1px solid rgba(244, 215, 131, 0.16);
  border-radius: 0.42rem;
  background: #05070a;
}

.ensemble-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 620ms var(--ease-out);
}

.ensemble-grid article:hover .ensemble-portrait img,
.ensemble-grid article:focus-within .ensemble-portrait img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.045);
}

.ensemble-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.ensemble-grid p + p {
  margin-top: 0.65rem;
}

.ensemble-note {
  color: var(--dim);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section-gallery {
  background: #070a0e;
}

.section-gallery .kicker {
  color: var(--gold);
}

.section-gallery h2 {
  color: #fff5bd;
  text-shadow: 0 0 24px rgba(244, 215, 131, 0.16);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  position: relative;
  min-height: 17rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  background: #0c1014;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease-out);
}

.gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  cursor: zoom-in;
  text-decoration: none;
}

.gallery-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -0.35rem;
}

.gallery-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 7, 10, 0.34));
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 620ms var(--ease-out);
}

.gallery-grid figure:hover,
.gallery-grid figure:focus-within {
  border-color: rgba(244, 215, 131, 0.38);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.5);
  transform: translateY(-4px);
}

.gallery-grid figure:hover::after,
.gallery-grid figure:focus-within::after {
  opacity: 1;
}

.gallery-grid figure:hover img,
.gallery-grid figure:focus-within img {
  filter: saturate(1.15) contrast(1.04);
  transform: scale(1.055);
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-poster img {
  object-position: center top;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(2, 4, 6, 0.9);
  backdrop-filter: blur(14px);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox-frame {
  width: min(92vw, 76rem);
  max-height: 88svh;
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.gallery-lightbox-frame img {
  width: 100%;
  max-height: calc(88svh - 3rem);
  object-fit: contain;
  border: 1px solid rgba(244, 215, 131, 0.28);
  border-radius: 0.45rem;
  background: #020406;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.72);
}

.gallery-lightbox-frame figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.gallery-lightbox-close {
  position: fixed;
  top: max(1rem, env(safe-area-inset-top));
  right: max(1rem, env(safe-area-inset-right));
  z-index: 91;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(244, 215, 131, 0.42);
  border-radius: 999rem;
  background: rgba(5, 7, 10, 0.82);
  color: var(--text);
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  border-color: rgba(244, 215, 131, 0.82);
  background: rgba(244, 215, 131, 0.14);
  box-shadow: 0 0 30px rgba(244, 215, 131, 0.2);
  transform: translateY(-2px);
}

.section-testimonials {
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 215, 131, 0.11), transparent 28rem),
    linear-gradient(180deg, #070a0e, var(--bg-soft));
}

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

.testimonial-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(1.25rem, 2.4vw, 1.8rem);
  border: 1px solid rgba(244, 215, 131, 0.2);
  border-radius: 0.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    radial-gradient(18rem circle at var(--mx, 50%) var(--my, 42%), rgba(244, 215, 131, 0.13), transparent 58%);
  box-shadow: var(--shadow);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease-out);
}

.testimonial-card::before {
  position: absolute;
  top: 0.55rem;
  right: 1rem;
  z-index: 0;
  color: rgba(244, 215, 131, 0.16);
  content: "“";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  border-color: rgba(244, 215, 131, 0.42);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.56);
  transform: translateY(-5px);
}

.testimonial-card-featured {
  border-color: rgba(244, 215, 131, 0.36);
  background:
    linear-gradient(180deg, rgba(244, 215, 131, 0.13), rgba(255, 255, 255, 0.035)),
    radial-gradient(20rem circle at var(--mx, 50%) var(--my, 42%), rgba(220, 77, 46, 0.16), transparent 58%);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.55;
}

.testimonial-card figcaption {
  display: grid;
  gap: 0.25rem;
  margin-top: 2rem;
}

.testimonial-card figcaption strong {
  color: var(--gold);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-card figcaption span {
  color: var(--dim);
  font-size: 0.92rem;
}

.trust-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(244, 215, 131, 0.28);
  border-radius: 0.6rem;
  background:
    linear-gradient(90deg, rgba(8, 12, 16, 0.96), rgba(8, 12, 16, 0.74)),
    url("assets/site/pressebild-moonlight.jpg") right center / auto 100% no-repeat;
  box-shadow: var(--shadow);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.trust-panel:hover {
  border-color: rgba(244, 215, 131, 0.42);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
}

.trust-panel h2 {
  max-width: 52rem;
}

.trust-intro {
  max-width: 56rem;
  display: grid;
  gap: 1rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.62;
}

.trust-intro p {
  margin: 0;
}

.trust-intro strong {
  display: block;
  margin-top: 0.7rem;
  color: var(--text);
  font-weight: 900;
}

.trust-grid {
  max-width: 47rem;
  margin: 2rem 0;
}

.trust-grid p {
  margin: 0;
}

.trust-grid strong {
  color: var(--text);
  font-size: 1.15rem;
}

.interview-panel {
  position: relative;
  isolation: isolate;
  scroll-margin-top: 7rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(16rem, 24rem);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(1rem, 2.2vw, 1.5rem);
  padding: clamp(1.25rem, 3.2vw, 2.4rem);
  border: 1px solid rgba(244, 215, 131, 0.2);
  border-radius: 0.6rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(220, 77, 46, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(11, 15, 19, 0.96), rgba(5, 7, 10, 0.9));
  box-shadow: var(--shadow);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease-out);
}

.interview-panel:hover {
  border-color: rgba(244, 215, 131, 0.38);
  box-shadow: 0 32px 92px rgba(0, 0, 0, 0.55);
  transform: translateY(-3px);
}

.interview-copy h2 {
  max-width: 32rem;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.interview-copy p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.interview-video {
  width: min(100%, 24rem);
  justify-self: end;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.interview-video video {
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
}

.legal-page {
  background:
    radial-gradient(circle at 76% 12%, rgba(220, 77, 46, 0.16), transparent 34rem),
    radial-gradient(circle at 12% 22%, rgba(244, 215, 131, 0.08), transparent 28rem),
    linear-gradient(180deg, #020406 0%, #090d10 42%, #05070a 100%);
}

.legal-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(7rem, 12vw, 10rem) clamp(1rem, 4vw, 2rem) clamp(3rem, 7vw, 5rem);
}

.legal-hero {
  max-width: 52rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.legal-hero h1 {
  margin: 0.4rem 0 0.6rem;
  color: #fff5bd;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-shadow: 0 0 30px rgba(244, 215, 131, 0.2);
}

.legal-hero p {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.legal-content {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.6vw, 1.6rem);
  border: 1px solid rgba(244, 215, 131, 0.2);
  border-radius: 0.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 16, 0.9);
  box-shadow: var(--shadow);
}

.legal-section {
  padding: clamp(1rem, 2.2vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.025);
}

.legal-section h2 {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.2;
}

.legal-section h3 {
  margin: 1.2rem 0 0.55rem;
  color: var(--text);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.25;
}

.legal-section h2 + h3 {
  margin-top: 0;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
}

.legal-section strong {
  color: var(--text);
}

.legal-section p {
  margin: 0;
}

.legal-section p + p,
.legal-section ul + p {
  margin-top: 1rem;
}

.legal-section a {
  color: var(--text);
  text-decoration-color: rgba(244, 215, 131, 0.45);
  text-underline-offset: 0.18em;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease;
}

.legal-section a:hover,
.legal-section a:focus-visible {
  color: var(--gold);
  text-decoration-color: rgba(244, 215, 131, 0.9);
}

.legal-section ul {
  margin: 0.35rem 0 0;
  padding-left: 1.2rem;
}

.legal-name-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3rem 1.2rem;
  list-style: none;
  padding-left: 0 !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem clamp(1rem, 4vw, 4rem) 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #020406;
}

.site-footer h2 {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.site-footer p {
  margin-bottom: 0.25rem;
}

.footer-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid rgba(244, 215, 131, 0.38);
  border-radius: 999rem;
  background: rgba(255, 255, 255, 0.045);
  color: var(--gold);
  text-decoration: none;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease-out);
}

.social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(244, 215, 131, 0.75);
  background: rgba(244, 215, 131, 0.12);
  box-shadow: 0 0 26px rgba(240, 188, 70, 0.2);
  color: var(--text);
  transform: translateY(-2px);
}

.footer-cookie-button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  padding: 0;
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--gold);
}

.consent-banner[hidden],
.consent-modal[hidden] {
  display: none !important;
}

.consent-banner {
  position: fixed;
  z-index: 120;
  left: clamp(1rem, 4vw, 3rem);
  right: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 3vw, 2rem);
  color: var(--text);
}

.consent-card {
  width: min(100%, 66rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(244, 215, 131, 0.34);
  border-radius: 0.45rem;
  background:
    linear-gradient(135deg, rgba(16, 18, 22, 0.98), rgba(9, 13, 16, 0.96)),
    radial-gradient(circle at 6% 0%, rgba(244, 215, 131, 0.13), transparent 18rem);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.54);
  backdrop-filter: blur(18px);
}

.consent-copy {
  display: grid;
  gap: 0.35rem;
}

.consent-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consent-copy h2,
.consent-dialog h2 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.consent-copy p,
.consent-dialog p,
.consent-option small {
  margin: 0;
  color: var(--muted);
}

.consent-actions,
.consent-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.consent-actions .button,
.consent-dialog-actions .button {
  min-height: 2.9rem;
  white-space: nowrap;
}

.consent-modal {
  position: fixed;
  z-index: 140;
  inset: 0;
}

.consent-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
}

.consent-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(100% - 2rem, 42rem);
  max-height: calc(100svh - 2rem);
  overflow: auto;
  transform: translate(-50%, -50%);
  display: grid;
  gap: 1rem;
  padding: clamp(1.1rem, 3vw, 1.75rem);
  border: 1px solid rgba(244, 215, 131, 0.42);
  border-radius: 0.45rem;
  background:
    linear-gradient(150deg, rgba(16, 18, 22, 0.99), rgba(7, 10, 13, 0.99)),
    radial-gradient(circle at 92% 8%, rgba(219, 64, 48, 0.18), transparent 16rem);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.65);
}

.consent-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(244, 215, 131, 0.32);
  border-radius: 999rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.consent-options {
  display: grid;
  gap: 0.8rem;
}

.consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(244, 215, 131, 0.22);
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.045);
}

.consent-option strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--cream);
}

.consent-option input {
  width: 1.35rem;
  height: 1.35rem;
  accent-color: var(--gold);
}

.consent-option.is-locked {
  opacity: 0.82;
}

body.is-consent-open {
  overflow: hidden;
}

.mobile-ticket-cta {
  display: none;
}

.detail-page {
  background:
    radial-gradient(circle at 68% 8%, rgba(220, 77, 46, 0.22), transparent 34rem),
    linear-gradient(180deg, #020406 0%, #071014 44%, #05070a 100%);
}

.detail-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 7rem clamp(1rem, 4vw, 4rem) 4rem;
}

.detail-hero-media,
.detail-hero-shade {
  position: absolute;
  inset: 0;
}

.detail-hero-media {
  background:
    linear-gradient(90deg, rgba(2, 4, 6, 0.9), rgba(2, 4, 6, 0.46) 54%, rgba(2, 4, 6, 0.94)),
    url("assets/site/moonlight-stage-visual.png") center center / cover no-repeat;
  filter: saturate(1.04);
  transform: scale(1.02);
  animation: moonDrift 20s ease-in-out infinite alternate;
}

.detail-hero-shade {
  background:
    radial-gradient(circle at 76% 42%, rgba(244, 215, 131, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(5, 7, 10, 0.18), rgba(5, 7, 10, 0.95) 88%);
}

.detail-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-inline: auto;
}

.detail-copy {
  min-width: 0;
}

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.detail-title {
  max-width: 13ch;
  margin-bottom: 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 6.7vw, 6.4rem);
  font-weight: 500;
  color: #fff5bd;
  text-shadow: 0 0 32px rgba(244, 215, 131, 0.34);
  overflow-wrap: anywhere;
  hyphens: auto;
}

.detail-lead {
  max-width: 43rem;
  color: var(--text);
  font-size: clamp(1.06rem, 1.4vw, 1.24rem);
}

.detail-event-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  margin: 1.1rem 0 1.25rem;
}

.detail-event-strip > span:not(.status) {
  border: 1px solid rgba(244, 215, 131, 0.22);
  border-radius: 99rem;
  background: rgba(5, 7, 10, 0.55);
  color: var(--muted);
  padding: 0.44rem 0.72rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.detail-actions,
.ticket-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.detail-ticket-card,
.detail-facts article,
.compact-tour-card,
.faq-list details {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: linear-gradient(180deg, rgba(14, 19, 24, 0.94), rgba(9, 13, 16, 0.86));
  box-shadow: var(--shadow);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease-out);
}

.detail-ticket-card::before,
.detail-facts article::before,
.compact-tour-card::before,
.faq-list details::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    17rem circle at var(--mx, 50%) var(--my, 44%),
    rgba(244, 215, 131, 0.15),
    transparent 58%
  );
  content: "";
  opacity: 0;
  transition: opacity 240ms ease;
}

.detail-ticket-card > *,
.detail-facts article > *,
.compact-tour-card > *,
.faq-list details > * {
  position: relative;
  z-index: 1;
}

.detail-ticket-card:hover,
.detail-ticket-card:focus-within,
.detail-facts article:hover,
.compact-tour-card:hover,
.compact-tour-card:focus-within,
.faq-list details:hover {
  border-color: rgba(244, 215, 131, 0.42);
  box-shadow: 0 32px 88px rgba(0, 0, 0, 0.56);
  transform: translateY(-4px);
}

.detail-ticket-card:hover::before,
.detail-ticket-card:focus-within::before,
.detail-facts article:hover::before,
.compact-tour-card:hover::before,
.compact-tour-card:focus-within::before,
.faq-list details:hover::before {
  opacity: 1;
}

.detail-ticket-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  scroll-margin-top: 6.5rem;
}

.ticket-label {
  margin-bottom: 0.4rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-ticket-card h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.event-meta,
.venue-address {
  display: grid;
  gap: 0.7rem;
  margin: 0 0 1.35rem;
}

.event-meta div,
.venue-address div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-meta dt,
.venue-address dt {
  color: var(--dim);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-meta dd,
.venue-address dd {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.ticket-actions .button {
  flex: 1 1 9rem;
}

.ticket-note {
  margin: 1rem 0 0;
  color: var(--dim);
  font-size: 0.92rem;
}

.section-detail-intro {
  background:
    radial-gradient(circle at 12% 8%, rgba(220, 77, 46, 0.12), transparent 28rem),
    var(--bg);
}

.detail-content-grid,
.venue-layout,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.detail-text p {
  font-size: 1.04rem;
}

.detail-facts {
  display: grid;
  gap: 1rem;
}

.detail-facts article {
  padding: 1.25rem;
}

.detail-facts strong {
  display: block;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.detail-facts span {
  color: var(--muted);
}

.section-venue,
.section-faq {
  background: var(--bg-soft);
}

.venue-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  box-shadow: var(--shadow);
  transition:
    border-color 280ms ease,
    box-shadow 280ms ease,
    transform 280ms var(--ease-out);
}

.venue-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition:
    filter 420ms ease,
    transform 620ms var(--ease-out);
}

.venue-image:hover {
  border-color: rgba(244, 215, 131, 0.42);
  box-shadow: 0 30px 88px rgba(0, 0, 0, 0.58);
  transform: translateY(-4px);
}

.venue-image:hover img {
  filter: saturate(1.12) contrast(1.04);
  transform: scale(1.04);
}

.section-more-dates {
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0.95), rgba(5, 7, 10, 0.88)),
    url("assets/site/moonlight-plakat-web.jpg") center top / 34rem auto no-repeat fixed;
}

.compact-tour-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.compact-tour-card {
  display: grid;
  gap: 0.7rem;
  min-height: 16rem;
  padding: 1.15rem;
}

.compact-tour-card time {
  color: var(--gold);
  font-weight: 800;
}

.compact-tour-card h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.compact-tour-card p {
  margin-bottom: 0;
}

.compact-tour-card .button {
  margin-top: auto;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1.1rem 1.25rem;
}

.faq-list summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 800;
}

.faq-list p {
  margin: 0.75rem 0 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms var(--ease-out);
}

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

@keyframes heroLift {
  from {
    opacity: 1;
    transform: translateY(18px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes moonDrift {
  from {
    transform: scale(1.02) translate3d(-0.25rem, -0.25rem, 0);
  }

  to {
    transform: scale(1.055) translate3d(0.35rem, 0.2rem, 0);
  }
}

@keyframes statusDotRoll {
  0% {
    left: var(--status-dot-inset);
    transform: rotate(0deg);
  }

  50% {
    left: calc(100% - var(--status-dot-inset) - var(--status-dot-size));
    transform: rotate(360deg);
  }

  100% {
    left: var(--status-dot-inset);
    transform: rotate(720deg);
  }
}

@media (max-width: 1020px) {
  .nav-links {
    display: none;
  }

  .benefit-grid,
  .tour-list,
  .ensemble-grid,
  .trust-grid,
  .compact-tour-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .show-layout,
  .intro-grid,
  .interview-panel,
  .detail-hero-inner,
  .detail-content-grid,
  .venue-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .legal-name-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .interview-video {
    justify-self: start;
  }
}

@media (max-width: 1100px) {
  .detail-ticket-card .ticket-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-ticket-card .ticket-actions .button {
    width: 100%;
    flex: 0 1 auto;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .site-header > .button {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding: 7rem 1rem 1.2rem;
  }

  .detail-hero {
    min-height: 0;
    padding: 6.8rem 1rem 3.5rem;
  }

  .hero-media {
    background-position: center 4.7rem;
    background-size: min(116vw, 30rem) auto;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 7, 10, 0.12) 0%, rgba(5, 7, 10, 0.5) 26%, rgba(5, 7, 10, 0.92) 72%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.76) 0%, rgba(5, 7, 10, 0.48) 56%, rgba(5, 7, 10, 0.78) 100%);
  }

  .detail-hero-media {
    background:
      linear-gradient(180deg, rgba(2, 4, 6, 0.44), rgba(2, 4, 6, 0.97) 78%),
      url("assets/site/moonlight-stage-visual.png") center top / auto 58% no-repeat;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4rem);
  }

  .detail-title {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.3rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .detail-actions,
  .ticket-actions,
  .section-heading-row,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .detail-actions .button,
  .ticket-actions .button,
  .section-heading-row .button {
    width: 100%;
  }

  .ticket-actions .button {
    flex: 0 1 auto;
  }

  .section {
    padding: 4rem 1rem;
  }

  .benefit-grid,
  .tour-list,
  .ensemble-grid,
  .trust-grid,
  .gallery-grid,
  .testimonial-grid,
  .legal-name-list,
  .compact-tour-list {
    grid-template-columns: 1fr;
  }

  .gallery-wide {
    grid-column: auto;
  }

  .gallery-grid figure {
    min-height: 15rem;
  }

  .trust-panel {
    background:
      linear-gradient(180deg, rgba(8, 12, 16, 0.86), rgba(8, 12, 16, 0.98)),
      url("assets/site/pressebild-moonlight.jpg") center top / cover no-repeat;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .consent-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 4.8rem;
  }

  .consent-card {
    grid-template-columns: 1fr;
  }

  .consent-actions,
  .consent-dialog-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .consent-actions .button,
  .consent-dialog-actions .button {
    width: 100%;
    justify-content: center;
  }

  .consent-option {
    grid-template-columns: 1fr auto;
    padding: 0.9rem;
  }

  .mobile-ticket-cta {
    position: fixed;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    min-height: 3.2rem;
    border: 1px solid rgba(244, 215, 131, 0.75);
    border-radius: 0.35rem;
    background: linear-gradient(180deg, var(--gold), var(--gold-strong));
    color: #180e06;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    transition:
      opacity 220ms ease,
      box-shadow 220ms ease,
      transform 220ms var(--ease-out);
  }

  .mobile-ticket-cta:hover,
  .mobile-ticket-cta:focus-visible {
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
  }

  .detail-page .mobile-ticket-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 1rem));
  }

  .detail-page.has-sticky-cta .mobile-ticket-cta {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .detail-page.has-sticky-cta .mobile-ticket-cta:hover,
  .detail-page.has-sticky-cta .mobile-ticket-cta:focus-visible {
    transform: translateY(-2px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .status-low::before {
    animation: none;
  }
}
