/* ═══════════════════════════════════════════════
   KORFF & LUDEWIG — WEBSITE
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand */
  --k-magenta:   #f003a7;
  --k-electric:  #009fdd;
  --k-ocean:     #107cb4;
  --k-sky:       #8aacd2;
  --k-black:     #1a1a1a;
  --k-white:     #faf9f6;
  --k-cream:     #f5f2eb;
  --k-muted:     #6b6b6b;
  --k-border:    rgba(26,26,26,0.1);
  --k-border-strong: rgba(26,26,26,0.18);

  /* Type */
  --ff-display:  'Shrikhand', Georgia, serif;
  --ff-headline: 'Luckiest Guy', 'Impact', system-ui, sans-serif;
  --ff-serif:    Georgia, 'Times New Roman', serif;
  --ff-body:     'Raleway', system-ui, sans-serif;

  /* Vibe-tunable (set on body[data-vibe]) */
  --bg:          var(--k-white);
  --fg:          var(--k-black);
  --accent:      var(--k-magenta);
  --accent-2:    var(--k-electric);
  --hero-bg:     var(--k-black);
  --hero-fg:     var(--k-white);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; }

/* ───────── ACCENT STRIP ───────── */
.accent-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--k-magenta) 0%, var(--k-electric) 50%, var(--k-sky) 100%);
}

/* ───────── CONTAINER ───────── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 32px; }
.container--wide   { max-width: 1280px; }
.container--narrow { max-width: 720px; }

/* ═══════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px 40px;
  background: rgba(26,26,26,0.0);
  backdrop-filter: blur(0px);
  transition: background 0.25s ease, padding 0.25s ease, backdrop-filter 0.25s;
}
.nav.is-scrolled {
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(12px);
  padding: 12px 40px;
  border-bottom: 0.5px solid rgba(250,249,246,0.08);
}
.nav-logo {
  font-family: var(--ff-headline);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--k-white);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo .amp { color: var(--k-magenta); font-weight: 400; }
.nav-links { display: flex; gap: 28px; }
.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--k-white); }

/* ───── Burger button ───── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.burger-line {
  display: block;
  width: 22px; height: 2px;
  background: var(--k-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.burger[aria-expanded="true"] .burger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger[aria-expanded="true"] .burger-line:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] .burger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ───── Mobile overlay menu ───── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(0, 0, 0, 0.96);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow: hidden;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  top: -10vw; right: -10vw;
  background: var(--k-magenta);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.mobile-menu-link {
  font-family: var(--ff-body);
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.75);
  text-decoration: none;
  transition: color 0.15s;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease, color 0.15s;
}
.mobile-menu.is-open .mobile-menu-link {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu.is-open .mobile-menu-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.is-open .mobile-menu-link:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu-link:hover { color: var(--k-white); }

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  margin-top: -76px;
  min-height: 100vh;
  padding: 140px 40px 100px;
  background: var(--hero-bg);
  color: var(--hero-fg);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ───── Full-bleed photo hero variant ───── */
.hero--photo .hero-bg {
  position: absolute; inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-photo-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  display: block;
}
/* Right-side scrim — keeps text legible without darkening the faces on the left */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 30, 60, 0) 0%,
      rgba(0, 30, 60, 0) 38%,
      rgba(0, 30, 60, 0.35) 65%,
      rgba(0, 30, 60, 0.65) 100%
    );
  pointer-events: none;
}

/* Hero text shifts to the right column when a full-bleed photo is in play */
.hero--photo .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
}
.hero--photo .hero-text {
  max-width: 560px;
  text-align: left;
  margin-top: 80px;
}

/* Darker readability box behind the lede paragraph in the photo hero */
.hero--photo .hero-lede {
  background: rgba(240, 3, 167, 0.7);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  padding: 18px 22px;
  border-radius: 4px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; }
.hero-glow--mag {
  width: 50vw; height: 50vw;
  background: var(--k-magenta);
  right: -10vw; top: -10vw;
}
.hero-glow--elec {
  width: 45vw; height: 45vw;
  background: var(--k-electric);
  left: -10vw; bottom: -20vw;
  opacity: 0.4;
}
.hero-noise {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  mix-blend-mode: overlay;
  opacity: 0.6;
}

.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.hero-text { min-width: 0; }

/* ───── Hero photo slot ───── */
.hero-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  justify-self: end;
  width: 100%;
  max-width: 460px;
}
.hero-photo-slot {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  --image-slot-placeholder-color: rgba(250,249,246,0.55);
  --image-slot-bg: rgba(250,249,246,0.04);
  --image-slot-border: rgba(250,249,246,0.22);
  --image-slot-border-hover: var(--k-magenta);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  transform: rotate(1.2deg);
  transition: transform 0.3s ease;
}
.hero-photo-slot:hover { transform: rotate(0deg) scale(1.01); }
.hero-photo-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.6);
  transform: rotate(1.2deg);
  transition: transform 0.3s ease;
}
.hero-photo-img:hover { transform: rotate(0deg) scale(1.01); }
.hero-photo-caption {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.45);
  align-self: flex-end;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(250,249,246,0.6);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--k-magenta);
  box-shadow: 0 0 12px var(--k-magenta);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--ff-headline);
  font-size: clamp(64px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--k-white);
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-title .line { display: block; }
.hero-title .line--amp {
  font-family: var(--ff-display);
  color: var(--k-magenta);
  font-size: 0.72em;
  line-height: 1;
  margin: -0.24em 0 -0.02em;
  padding-left: 0.14em;
  font-weight: 400;
  font-style: italic;
}
.hero-title .line--amp .amp { display: inline-block; transform: rotate(-8deg); }

.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.8vw, 32px);
  color: var(--k-electric);
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}

.hero-lede {
  font-family: var(--ff-body);
  font-size: clamp(17px, 1.4vw, 19px);
  font-weight: 700;
  line-height: 1.65;
  color: rgba(250,249,246,0.82);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-lede em {
  font-style: normal;
  color: var(--k-white);
  background: linear-gradient(transparent 60%, rgba(240,3,167,0.35) 60%);
  padding: 0 4px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; margin-bottom: 56px; }

.hero-meta {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 0.5px solid rgba(250,249,246,0.15);
  max-width: 720px;
}
.hero-next, .hero-rating { display: flex; flex-direction: column; gap: 6px; }
.hero-next-lbl, .rating-src {
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(250,249,246,0.45);
}
.hero-next-val {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--k-white);
}
.rating-quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--k-sky);
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-body);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 26px;
  border: none; border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.18s ease;
}
.btn--primary {
  background: var(--k-magenta);
  color: #fff;
  box-shadow: 0 8px 30px -10px rgba(240,3,167,0.5);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px rgba(240,3,167,0.7);
}
.btn--ghost-light {
  background: transparent;
  color: var(--k-white);
  border: 1px solid rgba(250,249,246,0.4);
}
.btn--ghost-light:hover {
  background: var(--k-white);
  color: var(--k-black);
  border-color: var(--k-white);
}
.btn--wide { padding-left: 32px; padding-right: 32px; }

/* ═══════════════════════════════════════════════
   SECTION HEADERS / SHARED TYPE
═══════════════════════════════════════════════ */
section { padding: 120px 0; position: relative; }

.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.h-display {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin-bottom: 24px;
  font-weight: 400;
}
.h-display--md { font-size: clamp(28px, 3.6vw, 42px); }

.sec-head { max-width: 720px; margin-bottom: 64px; }
.sec-head--dark { color: var(--k-white); }
.sec-head--dark .h-display { color: var(--k-white); }

.sec-sub {
  font-size: 17px; font-weight: 300; line-height: 1.7;
  color: var(--k-muted);
  margin-top: 16px;
  max-width: 580px;
}
.sec-head--dark .sec-sub { color: rgba(250,249,246,0.65); }

.lead {
  font-size: 19px; font-weight: 300; line-height: 1.7;
  margin-bottom: 20px;
}
.lead strong { font-weight: 600; }
.lead em { font-style: italic; color: var(--accent); font-weight: 400; }

/* ═══════════════════════════════════════════════
   ACT SECTION
═══════════════════════════════════════════════ */
.act { background: var(--k-white); }
/* Video sits above the grid, full-width inside the container */
.act-video {
  margin-bottom: 64px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.act-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 50px -20px rgba(26,26,26,0.25);
  border: 0.5px solid var(--k-border);
  background: var(--k-black);
}
.act-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.act-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.act-text p { margin-bottom: 18px; max-width: 520px; }
.act-text p:not(.lead) { color: var(--k-black); font-weight: 300; line-height: 1.75; }
.act-tagline {
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--k-black);
  margin-top: 24px;
}

/* Right column — staggered portrait pair (original look), clickable for bio */
.act-portrait { position: sticky; top: 100px; }
.portrait-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}
.portrait-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  border: 0;
  padding: 0;
  background: transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.portrait-img:nth-child(2) { margin-top: 32px; }
.portrait-img svg { width: 100%; height: 100%; display: block; }
.portrait-img:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px -16px rgba(26,26,26,0.5);
}
.portrait-img:focus-visible {
  outline: 2px solid var(--k-magenta);
  outline-offset: 4px;
}
.portrait-name {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: var(--ff-display);
  font-size: 16px;
  color: var(--k-white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  pointer-events: none;
}

/* Bio modal overlay */
.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: bioFade 0.2s ease both;
}
.bio-modal[hidden] { display: none; }
.bio-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 22, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.bio-modal__card {
  position: relative;
  background: var(--k-white);
  color: var(--k-black);
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 6px;
  padding: 36px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
  animation: bioRise 0.25s cubic-bezier(.2,.7,.2,1) both;
}
.bio-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--k-border);
  background: var(--k-white);
  font-size: 14px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--k-black);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bio-modal__close:hover {
  background: var(--k-magenta);
  border-color: var(--k-magenta);
  color: var(--k-white);
}
.bio-modal__head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--k-border);
}
.bio-modal__avatar {
  width: 72px; height: 72px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.bio-modal__avatar svg { width: 100%; height: 100%; display: block; }
.bio-modal__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--k-muted);
  margin: 0 0 4px;
}
.bio-modal__name {
  font-family: var(--ff-display);
  font-size: 28px;
  line-height: 1;
  margin: 0;
  color: var(--k-black);
  font-weight: 400;
}
.bio-modal__body p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  color: var(--k-black);
  margin: 0 0 12px;
}
.bio-modal__note {
  font-size: 11px !important;
  color: var(--k-muted) !important;
  border-top: 0.5px dashed var(--k-border);
  padding-top: 10px;
  margin-top: 14px !important;
}

@keyframes bioFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes bioRise {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════ */
.marquee {
  background: linear-gradient(90deg, var(--k-magenta) 0%, var(--k-electric) 50%, var(--k-sky) 100%);
  color: var(--k-white);
  padding: 22px 0;
  overflow: hidden;
  border-top: 0.5px solid rgba(250,249,246,0.08);
  border-bottom: 0.5px solid rgba(250,249,246,0.08);
}
.marquee-track {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--ff-display);
  font-size: 28px;
  letter-spacing: 0.005em;
}
.marquee-track > span { flex-shrink: 0; }
.marquee-track .sep { color: rgba(250,249,246,0.85); }
@keyframes huepfburg-shift {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   PROGRAMME
═══════════════════════════════════════════════ */
.programme { background: var(--k-white); }
.program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 760px;
  margin: 0 auto;
}
.program-card {
  position: relative;
  background: var(--k-cream);
  border-radius: 6px;
  overflow: hidden;
  color: inherit;
  border: 0.5px solid var(--k-border);
  display: grid;
  grid-template-columns: 1fr;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.program-card:not(.is-expanded):hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px -20px rgba(26,26,26,0.2);
}
.program-card.is-row-hidden { display: none; }

.program-card__front {
  display: flex; flex-direction: column;
  min-width: 0;
  padding-top: 14px;
}
.program-card__back {
  display: none;
  min-width: 0;
  background: var(--k-black);
  color: var(--k-white);
}

/* Expanded state -------------------------------------------------- */
.program-card.is-expanded {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  box-shadow: 0 28px 60px -24px rgba(26,26,26,0.28);
}
.program-card.is-expanded .program-card__back {
  display: flex;
  animation: progBackIn 0.45s cubic-bezier(.2,.7,.2,1) both;
}
.program-card.opens-left .program-card__front  { grid-column: 2; }
.program-card.opens-left .program-card__back   { grid-column: 1; }
.program-card.opens-left  .program-card__back  { animation-name: progBackInLeft; }
.program-card.opens-right .program-card__front { grid-column: 1; }
.program-card.opens-right .program-card__back  { grid-column: 2; }
.program-card.opens-right .program-card__back  { animation-name: progBackInRight; }

@keyframes progBackInRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes progBackInLeft {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: none; }
}

/* Poster (front) -------------------------------------------------- */
.program-poster {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.program-card.is-expanded .program-poster { aspect-ratio: 16/10; }
.program-poster svg { width: 100%; height: 100%; display: block; }

/* Real photo posters (Drive-hosted artwork) — show whole poster, no crop */
.program-poster--photo {
  background: var(--k-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.program-poster--photo .program-poster__photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* Optional logo image shown when card is expanded (instead of the full poster) */
.program-poster--photo .program-poster__logo {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 6% 4%;
  box-sizing: border-box;
}

/* When card is expanded: hide poster photo + badge, show centered logo */
.program-card.is-expanded .program-poster--photo .program-poster__photo { display: none; }
.program-card.is-expanded .program-poster--photo .program-poster__logo  { display: block; }
.program-card.is-expanded .poster-overlay { display: none; }

.poster-overlay { position: absolute; top: 16px; left: 16px; }
.poster-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px;
  background: rgba(26,26,26,0.85);
  color: var(--k-white);
  backdrop-filter: blur(8px);
  border-radius: 2px;
}

.program-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.program-meta {
  display: none;
}
.program-title {
  font-family: var(--ff-display);
  font-size: 24px;
  line-height: 1.0;
  color: var(--k-black);
  margin-bottom: 10px;
  font-weight: 400;
}
.program-title--head { font-family: var(--ff-headline); font-size: 36px; letter-spacing: 0.02em; }
.program-title-sub { display: inline-block; font-size: 0.55em; font-weight: 300; font-style: italic; opacity: 0.6; margin-top: 4px; }

.program-desc {
  font-size: 13px; font-weight: 300; line-height: 1.55;
  color: var(--k-black);
  margin-bottom: 14px;
  flex: 1;
}

/* The "Mehr…" button (replaces the old <a> link) */
.program-link {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--k-ocean);
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  background: none; border: 0; padding: 6px 0;
  cursor: pointer;
  transition: gap 0.18s, color 0.18s;
  font-family: inherit;
}
.program-link:hover { gap: 14px; color: var(--k-magenta); }

/* Hide the "Mehr…" button once the card is expanded — Zurück is the way out. */
.program-card.is-expanded .program-link { display: none; }
.arrow { display: inline-block; transition: transform 0.18s; }
.arrow--back { transform: scaleX(1); }

/* Back panel ------------------------------------------------------ */
.program-card__back { flex-direction: column; }
.program-back__text {
  padding: 24px 24px 18px;
  display: flex; flex-direction: column;
  flex: 1;
}
.program-back__text .program-meta { color: rgba(250,249,246,0.55); }
.program-back__title {
  font-family: var(--ff-display);
  font-size: 24px;
  line-height: 1.05;
  font-weight: 400;
  margin: 0 0 12px;
  color: var(--k-white);
}
.program-back__text p {
  font-size: 13px; font-weight: 300; line-height: 1.6;
  color: rgba(250,249,246,0.82);
  margin: 0 0 10px;
}
.program-back__text p em { color: var(--k-white); font-style: italic; }

.program-back__close {
  align-self: flex-end;
  margin-top: 4px;
  margin-bottom: 4px;
  margin-right: 24px;
  font-family: inherit;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--k-white);
  background: transparent;
  border: 1px solid rgba(250,249,246,0.35);
  padding: 9px 16px;
  border-radius: 2px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.program-back__close:hover {
  background: var(--k-magenta);
  border-color: var(--k-magenta);
  color: var(--k-white);
}

.program-back__media {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.program-back__video {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #0a0a0a;
}
.program-back__video svg,
.program-back__video iframe {
  width: 100%; height: 100%; display: block;
  border: 0;
}
.program-back__video .video-play {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: none; border: 0; padding: 0;
  cursor: pointer;
}
.program-back__video .video-play svg { width: 100%; height: 100%; }
.program-back__video .video-meta {
  position: absolute; left: 16px; bottom: 14px;
  display: flex; flex-direction: column; gap: 4px;
  color: var(--k-white);
}
.program-back__video .video-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(26,26,26,0.7);
  padding: 4px 10px; border-radius: 2px;
  align-self: flex-start;
}
.program-back__video .video-title {
  font-size: 13px; font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ═══════════════════════════════════════════════
   VIMEO CLICK-TO-PLAY (DSGVO)
═══════════════════════════════════════════════ */
.vimeo-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  display: block;
}
.vimeo-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.vimeo-preview:hover img { transform: scale(1.02); }
.vimeo-preview__btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.vimeo-preview:hover .vimeo-preview__btn { background: rgba(0,0,0,0.3); }
.vimeo-preview__btn svg {
  width: 72px;
  height: 72px;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,0.5));
  transition: transform 0.2s;
}
.vimeo-preview:hover .vimeo-preview__btn svg { transform: scale(1.1); }

/* ═══════════════════════════════════════════════
   MEDIA / GALLERY
═══════════════════════════════════════════════ */
.media {
  background: var(--k-black);
  color: var(--k-white);
}
.video-feature { margin-bottom: 32px; }
.video-placeholder {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.video-placeholder svg { width: 100%; height: 100%; }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  background: none; border: none; padding: 0;
  cursor: pointer;
  transition: transform 0.18s;
}
.video-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.video-play svg { width: 100%; height: 100%; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4)); }
.video-play--sm { width: 56px; height: 56px; }

.video-meta {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 12px;
}
.video-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 11px;
  background: var(--k-magenta);
  color: #fff;
  border-radius: 2px;
}
.video-title {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--k-white);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-item svg { width: 100%; height: 100%; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }
.gallery-cap {
  position: absolute;
  bottom: 12px; left: 14px;
  font-size: 12px; font-weight: 500;
  color: var(--k-white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}
.gallery-item--video::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}

.gallery-note {
  margin-top: 24px;
  font-size: 12px;
  font-style: italic;
  color: rgba(250,249,246,0.45);
  text-align: center;
}

/* ═══════════════════════════════════════════════
   MEDIEN GRID
═══════════════════════════════════════════════ */
.medien-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Streaming placeholder */
.streaming-placeholder {
  margin-top: 32px;
  border: 1px solid rgba(250,249,246,0.12);
  border-radius: 12px;
  background: rgba(250,249,246,0.04);
  backdrop-filter: blur(6px);
  overflow: hidden;
}
.streaming-placeholder__inner {
  padding: 48px 32px 44px;
  text-align: center;
}
.streaming-placeholder__icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}
.streaming-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}
.streaming-placeholder__headline {
  font-family: var(--ff-headline);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--k-white);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.streaming-placeholder__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(250,249,246,0.6);
  margin-bottom: 32px;
}

/* Video list */
.medien-videos {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.medien-video-item {}
.medien-video-label {
  font-family: var(--ff-headline);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--k-magenta);
  margin-bottom: 10px;
}
.medien-video-item > div {
  border-radius: 8px;
  overflow: hidden;
}

@media (max-width: 860px) {
  .medien-grid {
    grid-template-columns: 1fr;
  }
  .streaming-placeholder {
    position: static;
  }
  .nav-logo {
    font-size: 8px;
  }
}

/* ═══════════════════════════════════════════════
   TERMINE
═══════════════════════════════════════════════ */
.termine { background: var(--k-cream); }

.termine-split {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.termine-content { min-width: 0; }

.termine-portrait {
  position: sticky;
  top: 100px;
  align-self: start;
}

.termine-portrait-frame {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  box-shadow:
    6px 6px 0 0 var(--k-black),
    12px 12px 0 0 #f003a7;
  transform: rotate(1.2deg);
  transition: transform 0.4s ease;
}

.termine-portrait-frame:hover {
  transform: rotate(0deg) scale(1.01);
}

.termine-portrait-frame img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}

.termine-portrait-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 18px 16px;
  background: linear-gradient(to top, rgba(15,15,15,0.75) 0%, transparent 100%);
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,249,246,0.7);
}

@media (max-width: 680px) {
  .termine-split {
    grid-template-columns: 1fr;
  }
  .termine-portrait {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
  .termine-portrait-frame { transform: none; }
}

.termine-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-pill {
  font-family: var(--ff-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 18px;
  background: transparent;
  border: 0.5px solid var(--k-border-strong);
  border-radius: 999px;
  color: var(--k-black);
  cursor: pointer;
  transition: all 0.15s;
}
.filter-pill:hover { border-color: var(--k-black); }
.filter-pill.is-active {
  background: var(--k-black);
  color: var(--k-white);
  border-color: var(--k-black);
}

.termine-list { list-style: none; }
.termin-row {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 32px; align-items: center;
  padding: 24px 0;
  border-bottom: 0.5px solid var(--k-border);
  transition: padding 0.2s;
}
.termin-row:first-child { border-top: 0.5px solid var(--k-border); }
.termin-row:hover { padding-left: 8px; }

.termin-date {
  display: flex; flex-direction: column;
  align-items: flex-start;
  font-family: var(--ff-body);
  line-height: 1;
}
.termin-date .day {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--k-muted);
  margin-bottom: 4px;
}
.termin-date .num {
  font-family: var(--ff-display);
  font-size: 48px;
  color: var(--k-black);
  line-height: 0.9;
  margin-bottom: 6px;
}
.termin-date .mon {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--k-black);
}
.termin-date .yr {
  font-size: 11px;
  color: var(--k-muted);
  margin-top: 2px;
}

.termin-prog {
  font-family: var(--ff-display);
  font-size: 22px;
  margin-bottom: 4px;
  color: var(--k-black);
  font-weight: 400;
}
.termin-venue { font-size: 14px; font-weight: 500; color: var(--k-black); }
.termin-loc { font-size: 13px; color: var(--k-muted); }

.status-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  white-space: nowrap;
}
.status-tag--ok   { background: rgba(0,159,221,0.12);  color: #006fa3; }
.status-tag--few  { background: rgba(240,3,167,0.12);  color: var(--k-magenta); }
.status-tag--sold { background: rgba(26,26,26,0.08);   color: var(--k-muted); }

.termin-cta {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--k-black);
  text-decoration: none;
  padding: 10px 16px;
  border: 0.5px solid var(--k-black);
  border-radius: 2px;
  transition: all 0.15s;
  white-space: nowrap;
}
.termin-cta:hover {
  background: var(--k-black);
  color: var(--k-white);
}
.termin-cta.is-disabled {
  border-color: var(--k-border-strong);
  color: var(--k-muted);
  cursor: not-allowed;
  pointer-events: none;
}

.termine-foot {
  margin-top: 40px;
  text-align: center;
  font-size: 15px;
  color: var(--k-muted);
}
.termine-foot a {
  color: var(--k-magenta);
  font-weight: 600;
  text-decoration: none;
}
.termine-foot a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════
   PRESSE / QUOTES
═══════════════════════════════════════════════ */
/* Editorial spread — the laughing photo is the answer to the headline:
   what remains after the lights go out is the laughter. The section blue
   is tuned to the photo's backdrop so the figures rise out of the page. */
.presse {
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  color: var(--k-white);
  background: linear-gradient(180deg, #2d7fae 0%, #1a6293 44%, #0c4a72 80%, #093f63 100%);
}
.presse .eyebrow { color: rgba(250,249,246,0.7); }
.presse .h-display { color: var(--k-white); }

.presse-head {
  position: relative; z-index: 2;
  max-width: 760px;
  margin-bottom: clamp(36px, 5vw, 60px);
}

.presse-glow {
  position: absolute;
  width: 60vw; height: 60vw;
  top: -22%; right: -12%;
  background: radial-gradient(circle, rgba(240,3,167,0.22), transparent 62%);
  filter: blur(24px);
  pointer-events: none;
}

.presse-spread {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) 1fr;
  gap: 0;
  align-items: stretch;
}

/* photo: flush to the section floor, top edge dissolves into the blue */
.presse-photo {
  align-self: end;
  margin: 0;
}
.presse-photo img {
  width: 100%; height: auto; display: block;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 0%, #000 76%, transparent 100%);
}

/* quotes — slightly darker panel flush against the photo */
.presse-quotes {
  background: rgba(0, 0, 0, 0.18);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 4vw, 56px) clamp(48px, 7vw, 96px);
}

.pq { position: relative; margin: 0; }
.pq-text {
  font-family: var(--ff-serif);
  font-style: italic;
  line-height: 1.4;
  color: rgba(250,249,246,0.94);
}
.pq-src {
  margin-top: 14px;
  font-family: var(--ff-body);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250,249,246,0.55);
}
.pq-src::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  margin-right: 10px; vertical-align: middle;
  background: var(--k-magenta);
}

/* lead quote */
.pq--lead { margin-bottom: 40px; padding-top: 8px; }
.pq--lead .pq-text {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.12;
}
.pq--lead::before {
  content: '\201C';
  position: absolute;
  top: -46px; left: -6px;
  font-family: var(--ff-serif);
  font-size: 120px; line-height: 1;
  color: var(--k-magenta);
  opacity: 0.42;
  pointer-events: none;
}

/* secondary quotes */
.pq-list {
  list-style: none;
  display: grid;
  gap: 28px;
  padding-top: 32px;
  border-top: 1px solid rgba(250,249,246,0.16);
}
.pq-list .pq-text { font-size: clamp(17px, 1.5vw, 20px); }
.pq--accent .pq-src::before { background: var(--k-electric); }

/* ═══════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════ */
.newsletter { background: var(--k-cream); }
.news-card {
  position: relative;
  background: var(--k-white);
  padding: 64px 56px;
  border-radius: 8px;
  border: 0.5px solid var(--k-border);
  overflow: hidden;
}
.news-art {
  position: absolute;
  top: -40px; right: -40px;
  width: 280px; height: 280px;
  opacity: 0.5;
  pointer-events: none;
}
.news-art svg { width: 100%; height: 100%; }

.news-card .eyebrow,
.news-card .h-display,
.news-card .news-lede,
.news-card .news-form,
.news-card .news-fine { position: relative; z-index: 1; }

.news-lede {
  font-size: 16px; font-weight: 300; line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
  color: var(--k-black);
}

.news-form {
  display: flex; gap: 8px;
  max-width: 480px;
  margin-bottom: 16px;
}
.news-form input {
  flex: 1;
  font-family: var(--ff-body);
  font-size: 15px;
  padding: 14px 18px;
  border: 0.5px solid var(--k-border-strong);
  border-radius: 2px;
  background: var(--k-white);
  color: var(--k-black);
  outline: none;
  transition: border-color 0.15s;
}
.news-form input:focus {
  border-color: var(--k-ocean);
  box-shadow: 0 0 0 3px rgba(16,124,180,0.12);
}
.news-fine {
  font-size: 11px;
  color: var(--k-muted);
  max-width: 480px;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════
   KONTAKT
═══════════════════════════════════════════════ */
.kontakt { background: var(--k-white); padding-bottom: 140px; }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.kontakt-text .lead { max-width: 460px; }

.kontakt-meta {
  margin-top: 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  padding-top: 32px;
  border-top: 0.5px solid var(--k-border);
}
.kontakt-meta dt {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--k-muted);
  margin-bottom: 6px;
}
.kontakt-meta dd { font-size: 15px; line-height: 1.55; }
.kontakt-meta a {
  color: var(--k-ocean);
  text-decoration: none;
  border-bottom: 0.5px solid transparent;
  transition: border-color 0.15s;
}
.kontakt-meta a:hover { border-bottom-color: var(--k-ocean); }

/* Form */
.kontakt-form {
  display: flex; flex-direction: column; gap: 18px;
  padding: 40px;
  background: var(--k-cream);
  border-radius: 8px;
  border: 0.5px solid var(--k-border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--k-black);
}
.field input,
.field textarea,
.field select {
  font-family: var(--ff-body);
  font-size: 14px;
  padding: 12px 14px;
  border: 0.5px solid var(--k-border-strong);
  border-radius: 2px;
  background: var(--k-white);
  color: var(--k-black);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%231a1a1a' d='M0 0l5 6 5-6z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--k-ocean);
  box-shadow: 0 0 0 3px rgba(16,124,180,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }

.check {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px;
  color: var(--k-muted);
  cursor: pointer;
  line-height: 1.5;
}
.check input { margin-top: 4px; accent-color: var(--k-magenta); }
.check a { color: var(--k-ocean); }

.form-success {
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(16,124,180,0.1);
  color: var(--k-ocean);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}

.form-error {
  margin-top: 12px;
  padding: 14px 18px;
  background: rgba(180,30,30,0.08);
  color: #b41e1e;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
}
.form-error a { color: inherit; text-decoration: underline; }

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--k-black);
  color: var(--k-white);
  padding: 80px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 0.5px solid rgba(250,249,246,0.1);
}
.footer-logo {
  font-family: var(--ff-headline);
  font-size: 36px;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.footer-logo .amp { color: var(--k-magenta); }
.footer-tagline {
  font-family: var(--ff-display);
  font-size: 18px;
  color: var(--k-electric);
}
.footer-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer-cols h4 {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(250,249,246,0.5);
  margin-bottom: 18px;
}
.footer-cols ul { list-style: none; }
.footer-cols li { margin-bottom: 10px; }
.footer-cols a {
  font-size: 14px;
  color: rgba(250,249,246,0.85);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-cols a:hover { color: var(--k-magenta); }

.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  padding-top: 32px;
  font-size: 12px;
  color: rgba(250,249,246,0.45);
}
.footer-bottom a {
  color: rgba(250,249,246,0.65);
  text-decoration: none;
  margin: 0 4px;
}
.footer-bottom a:hover { color: var(--k-white); }

/* ═══════════════════════════════════════════════
   VIBE VARIANTS
═══════════════════════════════════════════════ */

/* SALON — cream/chanson */
body[data-vibe="salon"] {
  --hero-bg: var(--k-cream);
  --hero-fg: var(--k-black);
}
body[data-vibe="salon"] .hero { background: var(--k-cream); }
body[data-vibe="salon"] .hero-glow--mag { opacity: 0.18; background: var(--k-magenta); }
body[data-vibe="salon"] .hero-glow--elec { opacity: 0.12; background: var(--k-ocean); }
body[data-vibe="salon"] .hero-noise { opacity: 0.4; mix-blend-mode: multiply; }
body[data-vibe="salon"] .hero-eyebrow { color: var(--k-muted); }
body[data-vibe="salon"] .hero-title { color: var(--k-black); }
body[data-vibe="salon"] .hero-tagline { color: var(--k-ocean); font-style: italic; font-family: var(--ff-serif); font-weight: 400; font-size: clamp(22px, 2.8vw, 30px); }
body[data-vibe="salon"] .hero-lede { color: rgba(26,26,26,0.78); }
body[data-vibe="salon"] .hero-lede em { color: var(--k-black); background: linear-gradient(transparent 60%, rgba(240,3,167,0.22) 60%); }
body[data-vibe="salon"] .hero-meta { border-top-color: var(--k-border); }
body[data-vibe="salon"] .hero-next-lbl, body[data-vibe="salon"] .rating-src { color: var(--k-muted); }
body[data-vibe="salon"] .hero-next-val { color: var(--k-black); }
body[data-vibe="salon"] .rating-quote { color: var(--k-ocean); }
body[data-vibe="salon"] .btn--ghost-light { color: var(--k-black); border-color: rgba(26,26,26,0.4); }
body[data-vibe="salon"] .btn--ghost-light:hover { background: var(--k-black); color: var(--k-white); }
body[data-vibe="salon"] .nav.is-scrolled { background: rgba(245,242,235,0.92); }
body[data-vibe="salon"] .nav.is-scrolled .nav-logo,
body[data-vibe="salon"] .nav.is-scrolled .nav-link { color: var(--k-black); }
body[data-vibe="salon"] .nav-logo, body[data-vibe="salon"] .nav-link { color: var(--k-black); }
body[data-vibe="salon"] .nav-link { color: rgba(26,26,26,0.65); }

/* ELECTRIC — electric blue dominant, festival energy */
body[data-vibe="electric"] {
  --hero-bg: linear-gradient(135deg, #003a5c 0%, #107cb4 50%, #009fdd 100%);
  --accent: var(--k-electric);
}
body[data-vibe="electric"] .hero { background: linear-gradient(135deg, #002133 0%, #107cb4 60%, #009fdd 100%); }
body[data-vibe="electric"] .hero-glow--mag { background: var(--k-magenta); opacity: 0.7; }
body[data-vibe="electric"] .hero-glow--elec { display: none; }
body[data-vibe="electric"] .hero-title .line--amp { color: var(--k-white); }
body[data-vibe="electric"] .hero-tagline { color: var(--k-white); font-family: var(--ff-headline); font-weight: 400; letter-spacing: 0.02em; }
body[data-vibe="electric"] .hero-lede em { background: linear-gradient(transparent 60%, rgba(240,3,167,0.5) 60%); }
body[data-vibe="electric"] .rating-quote { color: var(--k-white); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-photo { max-width: 360px; justify-self: start; }
}

@media (max-width: 1024px) {
  .program-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  /* On narrower screens, the expanded card stacks vertically instead
     of going side-by-side, and the poster shrinks back to portrait. */
  .program-card.is-expanded {
    grid-template-columns: 1fr;
  }
  .program-card.is-expanded .program-poster { aspect-ratio: 4/5; }
  .program-card.opens-left  .program-card__front,
  .program-card.opens-right .program-card__front,
  .program-card.opens-left  .program-card__back,
  .program-card.opens-right .program-card__back {
    grid-column: 1;
  }

  .gallery {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 200px 200px;
  }

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

@media (max-width: 760px) {
  section { padding: 80px 0; }
  .container, .container--wide, .container--narrow { padding: 0 24px; }

  .hero-photo-bg { object-fit: contain; object-position: center top; }

  .nav { padding: 8px 20px; }
  .nav.is-scrolled { padding: 6px 20px; }
  .nav-links { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }

  .hero { padding: 260px 24px 80px; min-height: auto; }
  .hero-title { font-size: clamp(60px, 18vw, 88px); }
  .hero-meta { flex-direction: column; gap: 24px; padding-top: 12px; }
  .hero-lede { margin-bottom: 16px; }
  .hero-title { margin-bottom: 8px; }
  .hero-tagline { margin-bottom: 12px; }
  .hero-photo { max-width: 100%; }
  .hero-photo-slot { transform: none; aspect-ratio: 3/4; }

  .act-grid { grid-template-columns: 1fr; gap: 48px; }
  .act-portrait { position: static; max-width: 420px; }
  .act-video { margin-bottom: 48px; }
  
  .program-grid { grid-template-columns: 1fr; }
  .program-card--feature { grid-column: span 1; }
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 200px);
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--wide { grid-column: span 2; }

  .termin-row {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "date main"
      "cta cta";
    gap: 12px 24px;
    padding: 20px 0;
  }
  .termin-date { grid-area: date; }
  .termin-main { grid-area: main; }
  .termin-cta { grid-area: cta; text-align: center; justify-self: stretch; }
  .termin-date .num { font-size: 36px; }

  .presse { padding-bottom: 0; }
  .presse-spread { grid-template-columns: 1fr; gap: 0; }
  .presse-photo { order: -1; max-width: 460px; margin: 0 auto 40px; }
  .presse-quotes { padding-bottom: 0; }
  .pq--lead::before { left: 0; top: -42px; }

  .news-card { padding: 40px 28px; }
  .news-form { flex-direction: column; }
  .news-art { width: 200px; height: 200px; top: -30px; right: -30px; }

  .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
  .kontakt-meta { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .kontakt-form { padding: 28px; }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { justify-content: flex-start; }

  .marquee-track { font-size: 22px; gap: 24px; }
}
