/* ===== Titel-/Logoschrift des Stücks (später SVG-Logo) ===== */
  @font-face {
    font-family: 'Core Paint';
    src: url('../fonts/core-paint.otf') format('opentype');
    font-weight: 400 900; font-display: swap;
  }

  :root {
    /* universelles Haus-System (bleibt konstant) */
    --navy: #14216e;
    --navy-deep: #0f1a57;
    --ink: #1b2233;
    --muted: #6b7180;
    --cream: #f4f1e8;
    --cream-2: #ece7da;
    --paper: #ffffff;
    --line: #e3dece;
    --line-2: #d3ccba;

    --disp: 'Oswald', sans-serif;
    --body: 'Hanken Grotesk', system-ui, sans-serif;
    --mono: 'Spline Sans Mono', monospace;
    --poster: 'Core Paint', 'Oswald', sans-serif;
  }

  /* ===== Produktions-Tokens (PRO STÜCK AUSTAUSCHBAR) =====
     Für eine neue Produktion nur diese Werte + Hero-Inhalt tauschen. */
  .production {
    --show-cyan-top: #169bc2;
    --show-cyan-bot: #58c6dc;
    --show-red: #e8472b;
    --show-title: #14216e;
    --show-on-red: #ffffff;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; font-family: var(--body); color: var(--ink); background: var(--cream); -webkit-font-smoothing: antialiased; }
  a { color: inherit; }
  img { display: block; max-width: 100%; }
  ::selection { background: var(--navy); color: #fff; }

  .wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }

  .eyebrow { font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); display: inline-flex; align-items: center; gap: 10px; }
  .eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--navy); }
  .h-sec { font-family: var(--disp); font-weight: 600; font-size: clamp(28px, 4.4vw, 48px); line-height: 1.04; letter-spacing: 0.005em; color: var(--navy); margin: 16px 0 0; text-wrap: balance; }
  .lead { font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: var(--ink); max-width: 60ch; }

  .btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--disp); font-weight: 600; font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; padding: 14px 24px; border-radius: 2px; cursor: pointer; text-decoration: none; border: 2px solid transparent; transition: transform .15s ease, background .15s ease, color .15s ease; white-space: nowrap; }
  .btn:hover { transform: translateY(-2px); }
  .btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
  .btn-ghost { background: transparent; color: var(--navy); border-color: var(--line-2); }
  .btn-ghost:hover { border-color: var(--navy); }
  .btn-cream { background: var(--cream); color: var(--navy); border-color: var(--cream); }
  .btn-ghost-cream { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }

  /* ============================ NAV ============================ */
  .nav { position: sticky; top: 0; z-index: 60; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
  .nav .logo { height: 34px; width: auto; display: block; }
  .nav .links { display: flex; align-items: center; gap: 28px; }
  .nav .links a { font-family: var(--disp); font-weight: 500; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; text-decoration: none; color: var(--navy); }
  .nav .links a:hover { color: var(--show-red, var(--navy)); }
  /* Two filled buttons close the bar. "Schreib uns" (→ /kontakt) is always
     there, in navy; after it comes exactly one orange button — Tickets while
     the current production sells, Instagram otherwise — so the colours never
     compete.
     The orange is the house --show-red, not var(--accent) as on the temp site:
     the nav is white and some productions set a white accent (Chess 2018,
     Goethe meets Liebig 2017), which would swallow the button. */
  .nav .links a.kt,
  .nav .links a.tk,
  .nav .links a.ig { font-family: var(--disp); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; padding: 10px 18px; border-radius: 2px; color: #fff; text-decoration: none; }
  .nav .links a.kt:hover,
  .nav .links a.tk:hover,
  .nav .links a.ig:hover { color: #fff; opacity: 0.9; }
  .nav .links a.kt { background: var(--navy); }
  .nav .links a.tk { background: var(--show-red, #e8472b); }
  .nav .links a.ig { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; background: var(--show-red, #e8472b); }
  .nav .links a.ig svg { width: 17px; height: 17px; display: block; }
  .burger { display: none; background: none; border: none; cursor: pointer; color: var(--navy); padding: 6px; }
  .burger svg { display: block; }
  .mobile-menu { display: none; }

  /* ===================== PRODUKTIONS-HERO (B) ===================== */
  .hero { position: relative; overflow: hidden; background: var(--show-cyan-top); display: flex; flex-direction: column; min-height: calc(100svh - 71px); }
  .hero .waves { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
  /* Full-bleed link over the waves + logo → current production. The hero-top
     passes clicks through to it; only the card (below) re-enables its own. */
  .hero-bglink { position: absolute; inset: 0; z-index: 1; }
  .hero-top { flex: 1; display: flex; align-items: center; padding: 48px 0 36px; position: relative; z-index: 1; pointer-events: none; }
  .hero-card { pointer-events: auto; }
  .hero-grid { width: 100%; display: grid; grid-template-columns: 1.5fr 0.85fr; gap: 40px; align-items: center; }
  .hero-eyebrow { font-family: var(--disp); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--show-title); font-size: 16px; }
  .hero-title { font-family: var(--poster); color: var(--show-title); text-transform: uppercase; line-height: 0.84; letter-spacing: 0.005em; margin: 18px 0 0; font-size: clamp(58px, 9.5vw, 150px); }

  .hero-card { background: var(--show-red); color: var(--show-on-red); padding: clamp(26px, 2.4vw, 36px) clamp(24px, 2.2vw, 32px); box-shadow: 0 28px 56px -22px rgba(160,40,20,0.55); justify-self: end; width: 100%; max-width: 400px; }
  .hero-card .k { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
  .hero-card h3 { font-family: var(--poster); font-size: clamp(38px, 4vw, 52px); line-height: 0.9; margin: 12px 0 0; text-transform: uppercase; }
  .hero-card p { font-size: 15.5px; line-height: 1.55; margin: 16px 0 22px; color: rgba(255,255,255,0.92); }
  .hero-card .btn + .btn { margin-top: 10px; }
  .hero-card .stack { display: flex; flex-direction: column; align-items: stretch; }
  .hero-card .stack .btn { justify-content: center; }

  .hero-strip { display: grid; grid-template-columns: repeat(3, 1fr); position: relative; z-index: 2; }
  .tile { display: flex; flex-direction: column; justify-content: center; gap: 4px; padding: 22px clamp(20px, 3vw, 40px); text-decoration: none; min-height: 116px; transition: filter .15s ease; }
  .tile:hover { filter: brightness(1.06); }
  .tile .tk { font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; opacity: 0.82; }
  .tile .tt { font-family: var(--poster); font-size: clamp(20px, 2vw, 27px); text-transform: uppercase; line-height: 1; }
  .tile.navy { background: var(--navy); color: #fff; }
  .tile.red { background: color-mix(in oklab, var(--show-red) 90%, #000 6%); color: #fff; }
  .tile.cream { background: var(--paper); color: var(--navy); }

  /* ===================== UNIVERSELLE SEKTIONEN ===================== */
  section.block { padding: clamp(56px, 8vw, 104px) 0; }
  .bg-cream { background: var(--cream); }
  .bg-paper { background: var(--paper); }
  .bg-cream2 { background: var(--cream-2); }

  .sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 48px); }

  /* Über uns */
  .about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 6vw, 72px); align-items: center; }
  .stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
  .stat .n { font-family: var(--disp); font-weight: 700; font-size: clamp(30px, 3.4vw, 44px); color: var(--navy); line-height: 1; }
  .stat .l { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

  /* neutrale Platzhalter (monochrom navy) */
  .ph { position: relative; overflow: hidden; background: #20296a; }
  .ph .lbl { position: absolute; left: 12px; bottom: 10px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
  .about-photo { aspect-ratio: 4/5; border-radius: 3px; }

  /* Archiv-Mosaik: reuses the justified gallery layout (.gal, see below +
     assets/js/gallery.js) so every photo keeps its own aspect ratio. Tiles
     link to the production and reveal year + title on hover. */
  .gal-archive .g { cursor: pointer; text-decoration: none; }
  .gal-archive .g .ov { position: absolute; inset: 0; z-index: 1; display: flex; flex-direction: column; justify-content: flex-end; padding: 16px 18px; background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.86) 100%); opacity: 0; transition: opacity .28s ease; pointer-events: none; }
  .gal-archive .g:hover .ov { opacity: 1; }
  .gal-archive .ov .oy { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: rgba(255,255,255,0.82); }
  .gal-archive .ov .ot { font-family: var(--disp); font-weight: 700; text-transform: uppercase; font-size: clamp(15px, 1.4vw, 22px); line-height: 1.05; color: #fff; margin-top: 4px; }

  /* News */
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .news-card { background: var(--paper); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
  .news-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -26px rgba(20,33,110,0.4); }
  .news-card .thumb { aspect-ratio: 16/10; }
  .news-card .body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
  .news-card .kd { display: flex; gap: 10px; align-items: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
  .news-card .kd .tag { color: var(--navy); border: 1px solid var(--line-2); padding: 2px 7px; border-radius: 2px; }
  .news-card h4 { font-family: var(--disp); font-weight: 600; font-size: 19px; line-height: 1.18; color: var(--navy); margin: 0; }
  .news-card p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--muted); }
  .news-card .more { margin-top: auto; padding-top: 8px; font-family: var(--disp); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); }

  /* Mitmachen Band */
  .join { background: var(--navy); color: #fff; }
  .join .wrap { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: center; }
  .join h2 { font-family: var(--disp); font-size: clamp(40px, 6vw, 76px); text-transform: uppercase; line-height: 0.9; margin: 14px 0 0; color: #fff; }
  .join p { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.55; margin: 18px 0 0; max-width: 46ch; }
  .join .eyebrow { color: rgba(255,255,255,0.7); }
  .join .eyebrow::before { background: #fff; }
  .join .cta { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; }

  /* Newsletter */
  .news-form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
  .news-form input { font-family: var(--body); font-size: 15px; padding: 13px 16px; border-radius: 2px; border: 1.5px solid var(--line-2); background: var(--paper); color: var(--ink); min-width: 260px; outline: none; }
  .news-form input:focus { border-color: var(--navy); }

  /* Förderer */
  .sponsors { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
  .sponsor { border: 1px solid var(--line-2); border-radius: 3px; padding: 16px 22px; min-width: 150px; background: var(--paper); display: flex; flex-direction: column; gap: 2px; }
  .sponsor .nm { font-family: var(--disp); font-weight: 600; font-size: 15px; color: var(--navy); }
  .sponsor .nt { font-size: 11.5px; color: var(--muted); }
  .sponsor { align-items: center; justify-content: center; text-align: center; }
  .sponsor-logo { height: 42px; width: auto; max-width: 168px; object-fit: contain; display: block; }

  /* Footer */
  footer { background: var(--navy-deep); color: #fff; padding: clamp(56px, 7vw, 76px) 0 34px; }
  .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.16); }
  footer .logo { height: 46px; margin-bottom: 18px; }
  footer .blurb { color: rgba(255,255,255,0.66); font-size: 14.5px; line-height: 1.6; max-width: 34ch; }
  .foot-col .ct { font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 15px; }
  .foot-col a { display: block; font-size: 14.5px; color: rgba(255,255,255,0.92); text-decoration: none; margin-bottom: 10px; }
  .foot-col a:hover { color: #fff; opacity: 0.75; }
  .foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; flex-wrap: wrap; gap: 12px; font-family: var(--mono); font-size: 12px; color: rgba(255,255,255,0.5); }

  /* ============================ RESPONSIVE ============================ */
  /* The bar carries five items now, and the first one is a production title of
     unknown length: tighten the gaps and let Instagram fall back to its icon
     before the burger takes over. */
  @media (max-width: 1080px) {
    .nav .links { gap: 18px; }
    .nav .links a.ig { padding: 9px 11px; }
    .nav .links a.ig span { display: none; }
  }
  @media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-card { justify-self: stretch; max-width: none; }
    .about-grid, .join .wrap { grid-template-columns: 1fr; }
    .join .cta { justify-self: start; }
    .news-grid { grid-template-columns: 1fr 1fr; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
  }
  /* Nav switches to the burger earlier than the rest of the layout (own
     breakpoint): five items plus two buttons stop fitting well before the
     760px the page grids use. */
  @media (max-width: 900px) {
    .nav .links { display: none; }
    .burger { display: block; }
    .mobile-menu.open { display: block; border-top: 1px solid var(--line); background: var(--paper); }
    /* The menu sits inside header.nav, so `.nav .wrap` (flex, 70px tall) also
       matched this wrap: the links lined up in a row and ran into each other,
       clipped to the height of the nav bar. Reset both here. */
    .mobile-menu .wrap { display: block; height: auto; padding-top: 8px; padding-bottom: 16px; }
    .mobile-menu a { display: block; font-family: var(--disp); font-weight: 600; font-size: 22px; text-transform: uppercase; color: var(--navy); text-decoration: none; padding: 13px 0; border-bottom: 1px solid var(--line); }
    .mobile-menu a.ig { display: flex; align-items: center; gap: 10px; color: var(--show-red, #e8472b); }
    .mobile-menu a.ig svg { width: 22px; height: 22px; }
  }
  @media (max-width: 760px) {
    .hero-strip { grid-template-columns: 1fr; }
    .stats { grid-template-columns: 1fr 1fr; gap: 24px 20px; }
    .news-grid { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; gap: 32px; }
    /* archive mosaic: year + title always visible on touch (no hover) */
    .gal-archive .g .ov { opacity: 1; }
  }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .btn:hover, .news-card:hover { transform: none; } }


/* ============================ PRODUKTIONSSEITEN ============================ */
.breadcrumb { font-family: var(--mono); font-size: 12px; color: var(--muted); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--navy); }

.prod-hero { position: relative; overflow: hidden; }
.prod-hero.themed { background: var(--show-cyan-top); }
.prod-hero .waves { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.prod-hero .wrap { position: relative; z-index: 1; }
.prod-hero .breadcrumb { color: var(--show-title); opacity: 0.85; padding-top: 30px; }
.prod-hero-grid { display: grid; grid-template-columns: 1.35fr 0.85fr; gap: clamp(28px, 5vw, 60px); align-items: end; padding: 38px 0 44px; }
.prod-hero.plain .prod-hero-main { max-width: min(920px, 100%); padding: 38px 0 44px; }
/* The plain hero's background IS the accent colour, so an accent-filled button
   blends in — give the primary button an inverted (on-accent) fill so it always
   has a visible frame. */
.prod-hero.plain .btn-accent { background: var(--on-accent); color: var(--accent); border-color: var(--on-accent); }
.prod-eyebrow { font-family: var(--disp); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--show-title); font-size: 15px; }
/* Plain hero title uses the site display font (Oswald). Core Paint is the
   exception, applied only to the Now.Here.This waved hero (assets/css/hero/waved.css). */
.prod-title { font-family: var(--disp); font-weight: 700; color: var(--show-title); text-transform: uppercase; line-height: 0.9; letter-spacing: 0.01em; margin: 16px 0 0; font-size: clamp(48px, 8vw, 118px); }
.prod-sub { font-family: var(--disp); font-weight: 600; color: var(--show-title); font-size: clamp(18px, 2.2vw, 26px); margin-top: 12px; opacity: 0.92; }
.prod-credits { font-family: var(--mono); font-size: 12.5px; line-height: 1.55; color: var(--show-title); margin-top: 18px; opacity: 0.85; }
.prod-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.prod-keyvisual { position: relative; aspect-ratio: 4/5; border-radius: 3px; overflow: hidden; box-shadow: 0 30px 60px -28px rgba(0,0,0,0.5); }
.prod-keyvisual img { width: 100%; height: 100%; object-fit: cover; }
.prod-keyvisual .kvlabel,
.ensemble-figure .kvlabel { position: absolute; left: 12px; bottom: 11px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); text-shadow: 0 1px 3px rgba(0,0,0,0.55); }

.meta-bar { position: relative; z-index: 1; border-top: 1px solid color-mix(in oklab, var(--show-title) 26%, transparent); display: flex; flex-wrap: wrap; column-gap: clamp(36px, 5vw, 64px); row-gap: 0; }
.meta-bar .m { padding: 18px 0; }
.meta-bar .mk { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--show-title); opacity: 0.7; line-height: 1.4; min-height: 1.4em; }
.meta-bar .mv { font-family: var(--disp); font-weight: 600; font-size: 18px; color: var(--show-title); margin-top: 5px; }

.prod-layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(32px, 5vw, 60px); align-items: start; }
.prod-main { min-width: 0; display: flex; flex-direction: column; gap: clamp(44px, 6vw, 64px); }
.prod-side { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 18px; }

/* Archiv-Aufruf: "Fotos/Material gesucht" callout on thinly documented
   productions (top of .prod-main). Tinted with the production accent token. */
.mat-call { padding: clamp(22px, 3vw, 34px); border: 1px solid var(--line-2); border-left: 4px solid var(--accent, var(--navy));
  border-radius: 3px; background: linear-gradient(180deg, color-mix(in srgb, var(--accent, var(--navy)) 5%, var(--paper)), var(--paper)); }
.mat-call-eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent, var(--navy)); }
.mat-call-h { font-family: var(--disp); font-weight: 600; font-size: clamp(22px, 3vw, 30px); line-height: 1.08; color: var(--navy); margin: 10px 0 0; text-wrap: balance; }
.mat-call-text { margin: 12px 0 0; font-size: 16px; line-height: 1.62; color: var(--ink); max-width: 62ch; }
.mat-call-text b { color: var(--navy); }
.mat-call-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 20px; margin-top: clamp(18px, 2.4vw, 26px); }
.mat-call-mail { font-family: var(--mono); font-size: 12px; color: var(--muted); }
.mat-call-mail a { color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.mat-call-mail a:hover { color: var(--accent, var(--navy)); }
@media (max-width: 480px) {
  .mat-call-cta { flex-direction: column; align-items: flex-start; }
}

/* Startseiten-Hero: auf dem Telefon greift immer der clamp-Mindestwert (58px),
   der Titel wirkt dort zu klein. Anderthalbfach anheben, unter ~390px schrumpft
   er wieder mit. */
@media (max-width: 600px) {
  .hero-title { font-size: clamp(72px, 22.3vw, 87px); }
}

.btag { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.btag::before { content: ""; width: 26px; height: 2px; background: var(--accent); flex: none; }
.btag span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--navy); }
.prose p { font-size: 17px; line-height: 1.66; color: var(--ink); margin: 0 0 16px; max-width: 64ch; }
.prose p.lead-p { font-size: 19px; color: var(--ink); }
.prose p:last-child { margin-bottom: 0; }

/* Termine / Tickets */
.dates-box { border: 1px solid var(--line-2); border-radius: 3px; background: var(--paper); overflow: hidden; }
.dates-box .dh { padding: 15px 20px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.dates-box .dh .e { font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--navy); }
.dates-box .dh .c { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.date-row { display: flex; gap: 12px; padding: 12px 20px; border-bottom: 1px solid var(--line); align-items: flex-start; }
.date-row:last-of-type { border-bottom: none; }
.date-row .dot { width: 6px; height: 6px; border-radius: 9px; background: var(--accent); margin-top: 7px; flex: none; }
.date-row.out { opacity: 0.55; }
.date-row.out .dot { background: var(--muted); }
.date-row .dd { flex: 1; min-width: 0; }
.date-row .d1 { display: flex; align-items: center; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.date-row .dday { font-family: var(--disp); font-weight: 600; font-size: 15px; color: var(--navy); white-space: nowrap; }
.date-row .dloc { font-size: 13px; color: var(--muted); }
.av { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.07em; text-transform: uppercase; padding: 2px 6px; border-radius: 2px; white-space: nowrap; }
.av.few { color: var(--accent); background: color-mix(in oklab, var(--accent) 16%, var(--paper)); }
.av.out { color: var(--muted); border: 1px solid var(--line-2); }
.dates-cta { padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; }
.dates-cta .btn { justify-content: center; }
.side-card { border: 1px solid var(--line-2); border-radius: 3px; background: var(--paper); padding: 20px; }
.side-card .e { font-family: var(--mono); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; color: var(--navy); }
.side-card .credit-cols { margin-top: 12px; }
/* Source/acknowledgement card (e.g. archive material credit) — accent-marked. */
.src-card { border-left: 4px solid var(--accent, var(--navy)); }
.src-card .src-body { margin-top: 10px; font-size: 15px; line-height: 1.6; color: var(--ink); }
.src-card .src-body p { margin: 0; }
.src-card .src-body a { color: var(--accent, var(--navy)); text-decoration: underline; text-underline-offset: 2px; }
/* "Unterstützt von" free-text note under the Produktion credits. */
.credit-note { margin-top: 12px; font-size: 15px; line-height: 1.62; color: var(--ink); max-width: 62ch; }
.credit-note p { margin: 0 0 8px; }
.credit-note p:last-child { margin-bottom: 0; }
.credit-note a { color: var(--accent, var(--navy)); }
.dates-box .prem-also { padding: 12px 20px; border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 6px; }
.prem-badge { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line-2); border-radius: 999px; padding: 3px 10px; }

/* Galerie – Masonry (CSS-Columns), kein Beschnitt */
.gal { column-count: 4; column-gap: 10px; }
.gal .g { position: relative; display: block; margin: 0 0 10px; break-inside: avoid; border-radius: 3px; overflow: hidden; cursor: zoom-in; }
.gal .g img { display: block; width: 100%; height: auto; transition: transform .5s ease; }
.gal .g:hover img { transform: scale(1.04); }
.gal .g.has-cap::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 46%; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.gal .g.has-cap:hover::after { opacity: 1; }
.gal .g .gl { position: absolute; left: 12px; right: 12px; bottom: 10px; z-index: 1; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; opacity: 0; transition: opacity .3s ease; pointer-events: none; }
.gal .g:hover .gl { opacity: 1; }
.gal .g[hidden] { display: none; }

/* Justified-Rows-Layout (per JS aktiviert): jede Zeile füllt die volle Breite –
   bündige Kanten auf allen vier Seiten, keine Spalten-Treppe. Größen setzt das JS
   inline; Restzeilen werden per object-fit ≤10% beschnitten. Fallback ohne JS: die
   Masonry-Spalten oben. */
.gal.is-justified { column-count: auto; column-gap: 0; }
.gal.is-justified .grow { display: flex; }
.gal.is-justified .g { margin: 0; break-inside: auto; }
.gal.is-justified .g img { width: 100%; height: 100%; object-fit: cover; }

/* GLightbox-Viewer: Bildunterschrift + individueller Foto-Credit pro Bild
   (heller „clean“-Beschreibungsbalken → dunkle Schrift) */
.gslide-desc .gl-cap { display: block; font-size: 15px; line-height: 1.45; font-weight: 600; color: #1c1a17; }
.gslide-desc .gl-cred { display: block; margin-top: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: rgba(0,0,0,0.5); }
.gslide-desc .gl-cap + .gl-cred { margin-top: 8px; }
.gal-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; flex-wrap: wrap; gap: 12px; }
.gal-foot .e { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

/* Video — non-YouTube embeds only (real iframe via video()). YouTube uses the
   DSGVO click-to-load facade (.yt-facade / .yt-play), so this block deliberately
   carries no play-button placeholder of its own. */
.video { position: relative; border-radius: 3px; overflow: hidden; aspect-ratio: 16/9; background: color-mix(in oklab, var(--accent) 60%, #14110a); }

/* Cast & Crew */
.role-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.role { background: var(--paper); padding: 15px 18px; }
.role .rl { font-family: var(--disp); font-weight: 600; font-size: 16px; color: var(--navy); margin-bottom: 5px; }
.role .rn { font-size: 14px; color: var(--muted); line-height: 1.5; }
.namecloud { font-size: 15px; line-height: 1.85; color: var(--muted); max-width: 72ch; margin: 0; }
.namecloud b { color: var(--ink); font-weight: 500; white-space: nowrap; }
.namecloud.nc-gap { margin-top: 16px; }
.sep { color: var(--ink); }
.credit-cols { columns: 2; column-gap: 40px; }
.credit-cols.one { columns: 1; }
.credit-cols .ci { break-inside: avoid; margin-bottom: 14px; display: flex; flex-direction: column; gap: 2px; }
.credit-cols .ck { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.credit-cols .cv { font-size: 15px; color: var(--ink); font-weight: 500; line-height: 1.4; overflow-wrap: break-word; }
.credit-cols .ci-full .cv { font-weight: 400; line-height: 1.5; }
.cc-sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 24px 0 8px; }
.cc-two { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

/* Pressezitat */
.pquote { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 42px 0; }
.pquote .mk { font-family: var(--disp); font-size: 52px; color: var(--accent); line-height: 1; }
.pquote blockquote { font-family: var(--disp); font-weight: 500; font-size: clamp(22px, 3vw, 30px); line-height: 1.32; color: var(--navy); margin: 0; max-width: 60ch; }
.pquote .src { margin-top: 18px; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.pquote .src .ln { width: 22px; height: 2px; background: var(--accent); }
.pquote .src b { font-weight: 700; font-size: 14px; color: var(--navy); }
.pquote .src span { font-size: 13.5px; color: var(--muted); }

/* Lange Pressestimme / Rezension (als Zitat erkennbar gemacht) */
.preview { position: relative; border-left: 3px solid var(--accent); margin: 34px 0; padding: 2px 0 2px 26px; max-width: 72ch; }
.preview .mk { font-family: var(--disp); font-weight: 700; font-size: 56px; line-height: 0.7; color: var(--accent); }
.preview blockquote.preview-body { margin: 6px 0 0; font-size: 16.5px; line-height: 1.72; color: var(--ink); font-style: italic; }
.preview blockquote.preview-body p { margin: 0 0 12px; }
.preview blockquote.preview-body p:last-child { margin-bottom: 0; }
.preview .src { margin-top: 16px; font-family: var(--mono); font-size: 12.5px; color: var(--muted); font-style: normal; }
.preview .src b { font-family: var(--disp); font-weight: 700; font-size: 14px; color: var(--navy); }
.preview .src span { color: var(--muted); }
.preview .src a { margin-left: 4px; }

/* Freie Inhaltsblöcke (Blocks-Feld): Hintergrund, Video, Figuren … */
.rte { max-width: 72ch; }
.rte > * { margin: 0 0 16px; }
.rte h1, .rte h2 { font-family: var(--disp); font-weight: 600; font-size: clamp(22px, 2.8vw, 32px); line-height: 1.1; color: var(--navy); margin: 38px 0 12px; }
.rte h3 { font-family: var(--disp); font-weight: 600; font-size: 20px; color: var(--navy); margin: 28px 0 8px; }
.rte h2:first-child, .rte h3:first-child { margin-top: 0; }
.rte p { font-size: 16px; line-height: 1.7; color: var(--ink); }
.rte a { color: var(--accent); }
.rte ul, .rte ol { font-size: 16px; line-height: 1.7; color: var(--ink); padding-left: 22px; }
.rte li { margin: 0 0 6px; }
.rte figure { margin: 22px 0; max-width: 100%; }

/* Article detail — own layout: content + accent current-production sidebar */
.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(30px, 5vw, 60px); align-items: start; }
.article-body { min-width: 0; }
/* Article detail: slim navy meta band (decorative separator) + editorial title
   on the cream page, sized for long-form reading (not the listing's big hero). */
.article-bar { background: var(--navy-deep); color: #fff; padding: 13px 0; }
.article-bar .ptag { color: #fff; border-color: rgba(255,255,255,0.35); }
.article-bar .pdate { color: rgba(255,255,255,0.72); }
.article-main { padding-top: clamp(30px, 4vw, 48px); }
.article-title { font-family: var(--disp); font-weight: 700; font-size: clamp(30px, 4vw, 44px); line-height: 1.12; letter-spacing: 0.005em; color: var(--navy); margin: 0 0 clamp(24px, 3.5vw, 34px); padding-bottom: clamp(18px, 3vw, 26px); border-bottom: 1px solid var(--line); text-wrap: balance; }
.article-cover { margin: 0 0 30px; }
.article-cover .ac-media { position: relative; border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
.article-cover img { width: 100%; display: block; }
.article-cover .cover-credit { position: absolute; right: 10px; bottom: 9px; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.04em; color: #fff; background: rgba(0,0,0,0.5); padding: 3px 8px; border-radius: 2px; }
.article-cover .cover-caption { margin: 9px 2px 0; font-size: 13px; line-height: 1.5; color: var(--muted); }
.article-body .rte .lead { font-size: 18px; line-height: 1.65; color: var(--ink); }
.article-prod, .article-back { margin: 26px 0 0; font-size: 15px; }
.article-side { min-width: 0; }
.aside-prod { position: sticky; top: 88px; background: var(--accent); color: var(--on-accent); border-radius: 6px; padding: 20px; }
.aside-prod .ap-eyebrow { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.82; }
.aside-prod .ap-imglink { display: block; margin: 14px 0; }
.aside-prod .ap-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 3px; display: block; }
.aside-prod .ap-title { font-family: var(--disp); font-weight: 700; font-size: 26px; line-height: 1.02; text-transform: uppercase; margin: 0; }
.aside-prod .ap-meta { font-size: 13px; margin: 12px 0 0; }
.aside-prod .ap-meta strong { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; font-weight: 500; margin-right: 6px; }
.aside-prod .ap-cta { margin-top: 18px; width: 100%; justify-content: center; background: var(--on-accent); color: var(--accent); border-color: var(--on-accent); }
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 34px; }
  .aside-prod { position: static; max-width: 360px; }
}
.rte figure img { width: 100%; border-radius: 4px; }
.rte figure.portrait { max-width: 300px; }
.rte img.portrait { max-width: 300px; height: auto; }
.rte iframe { width: 100%; aspect-ratio: 16 / 9; height: auto; display: block; border: 0; border-radius: 4px; background: #000; }
.rte figure figcaption { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 8px; }
.rte .prog-pause { text-align: center; font-family: var(--mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin: 22px 0; }
.rte blockquote { border-left: 3px solid var(--accent); margin: 22px 0; padding: 4px 0 4px 20px; font-family: var(--disp); font-weight: 500; font-size: clamp(19px, 2.2vw, 25px); line-height: 1.3; color: var(--navy); }

.btn-accent { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }

@media (max-width: 920px) {
  .prod-hero-grid { grid-template-columns: 1fr; align-items: start; gap: 26px; }
  .prod-keyvisual { max-width: 360px; }
  .prod-layout { grid-template-columns: 1fr; }
  .prod-side { position: static; order: 2; }
  .cc-two { grid-template-columns: 1fr; gap: 28px; }
  .gal { column-count: 3; }
}
@media (max-width: 760px) {
  .meta-bar { flex-direction: column; column-gap: 0; }
  .meta-bar .m { padding: 12px 0; border-bottom: 1px solid color-mix(in oklab, var(--show-title) 18%, transparent); }
  .credit-cols { columns: 1; }
}
@media (max-width: 600px) {
  .gal { column-count: 2; }
}


/* Aufführungsrechte / Verlags-Copyright – sichtbar, aber zurückhaltend */
.rights { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.rights .rk { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; opacity: 0.9; }
.rights p { margin: 0; font-family: var(--mono); font-size: 10.5px; line-height: 1.6; color: var(--muted); }
/* A rights notice can consist of several credits (Aufführungsrecht, Bühnenvertrieb …) */
.rights p + p { margin-top: 8px; }

/* Wellen-Hero „Now. Here. This.“: siehe assets/css/hero/waved.css (heroStyle: waved). */

/* =========================================================================
   PAGE SECTIONS – merged from the design's per-page inline <style> blocks.
   These classes are page-unique (archive / blog / mitmachen / legal) so they
   do not affect the shared home & production styles above.
   ========================================================================= */

/* ===== Archiv: Hero, Filterleiste, Plakatwand, Höhepunkte, CTA ===== */
.arch-hero { background: var(--navy-deep); color: #fff; padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 5vw, 64px); }
.arch-hero .eyebrow { color: rgba(255,255,255,0.66); }
.arch-hero .eyebrow::before { background: #fff; }
.arch-hero h1 { font-family: var(--disp); font-weight: 700; font-size: clamp(46px, 10vw, 120px); line-height: 1.08; text-transform: uppercase; margin: 12px 0 0; letter-spacing: 0.005em; }
.arch-hero .intro { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: rgba(255,255,255,0.82); max-width: 56ch; margin: 24px 0 0; }
.arch-meta { display: grid; grid-template-columns: repeat(3, auto); gap: clamp(28px, 6vw, 72px); margin-top: clamp(34px, 5vw, 52px); }
.arch-meta .m .n { font-family: var(--disp); font-weight: 700; font-size: clamp(30px, 4vw, 46px); line-height: 1; }
.arch-meta .m .l { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.62); margin-top: 8px; }

.filterbar { position: sticky; top: 70px; z-index: 40; background: var(--cream); border-bottom: 1px solid var(--line); }
.filterbar .wrap { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 16px; padding-bottom: 16px; }
.filterbar .flabel { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.chip { font-family: var(--disp); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; padding: 9px 17px; border-radius: 2px; border: 1.5px solid var(--line-2); background: var(--paper); color: var(--navy); cursor: pointer; transition: all .16s ease; }
.chip:hover { border-color: var(--navy); }
.chip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.chip .c { font-family: var(--mono); font-weight: 400; font-size: 11px; opacity: 0.6; margin-left: 7px; }
.filterbar .chip-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filterbar .chip-group + .chip-group { padding-left: 14px; border-left: 1px solid var(--line-2); }

.poster-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(232px, 1fr)); gap: clamp(14px, 1.8vw, 22px); }
.pcard { position: relative; display: flex; flex-direction: column; justify-content: space-between; aspect-ratio: 3/4; border-radius: 4px; overflow: hidden; text-decoration: none; color: #fff; padding: 20px; isolation: isolate; transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease; }
.pcard::before { content: ""; position: absolute; inset: 0; z-index: -3; background: var(--pa); }
/* #1 neutral darkening tint (photo cards only) — fades to 0 on hover */
.pcard .ptint { position: absolute; inset: 0; z-index: -2; pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.30));
    transition: opacity .28s ease; }
.pcard::after { content: ""; position: absolute; inset: 0; z-index: -1; background:
    radial-gradient(120% 80% at 18% 8%, rgba(255,255,255,0.22), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.72) 100%); }
.pcard:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -28px rgba(15,18,50,0.6); }
.pcard:hover .ptint { opacity: 0; }
.pcard .py { font-family: var(--mono); font-size: 13px; letter-spacing: 0.14em; opacity: 0.9; }
.pcard .pbody { position: relative; }
.pcard .pt { font-family: var(--disp); font-weight: 700; font-size: clamp(22px, 2.2vw, 30px); text-transform: uppercase; line-height: 1.0; margin: 0; }
.pcard.is-hidden { display: none; }

.hl-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px; }
/* Click-to-load YouTube facade (DSGVO) */
.yt-embed { position: relative; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; background: var(--navy); margin: 20px 0; }
.yt-embed .yt-facade, .yt-embed .yt-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-facade { background-size: cover; background-position: center; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 22px; text-align: center; }
.yt-facade::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.12), rgba(0,0,0,0.55)); }
.yt-facade.no-thumb { background: var(--navy); }
.yt-play { position: relative; width: 68px; height: 48px; border-radius: 12px; background: rgba(20,10,10,0.72); display: grid; place-items: center; transition: background .16s ease; }
.yt-play::after { content: ""; border-style: solid; border-width: 10px 0 10px 18px; border-color: transparent transparent transparent #fff; margin-left: 3px; }
.yt-facade:hover .yt-play, .yt-facade:focus-visible .yt-play { background: #cc0000; }
.yt-consent { position: relative; color: #fff; font-family: var(--body); font-size: 13px; line-height: 1.5; max-width: 48ch; text-shadow: 0 1px 6px rgba(0,0,0,0.6); }
.yt-consent a { color: #fff; text-decoration: underline; }
.yt-caption { font-size: 13px; color: var(--muted); margin: 8px 0 0; }

/* Kontakt form */
.contact-lead { margin-bottom: 22px; }
.contact-form { display: grid; gap: 16px; max-width: 640px; margin: 0 0 46px; }
.contact-form .cf-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form .cf-field { display: flex; flex-direction: column; gap: 6px; }
.contact-form .cf-label { font-family: var(--disp); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--navy); }
.contact-form .cf-opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); }
.contact-form select, .contact-form input, .contact-form textarea { font-family: var(--body); font-size: 15px; padding: 12px 14px; border-radius: 3px; border: 1.5px solid var(--line-2); background: var(--paper); color: var(--ink); outline: none; width: 100%; }
.contact-form select:focus, .contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form .cf-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .cf-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.contact-form .cf-status { margin: 0; font-size: 14px; }
.contact-form .cf-status.is-ok { color: #1a7f3c; }
.contact-form .cf-status.is-err { color: #c0261f; }
/* On the homepage the form ends the section — drop its trailing gap so the
   block keeps its normal padding. */
.contact-home .contact-form { margin-bottom: 0; }
@media (max-width: 560px) { .contact-form .cf-two { grid-template-columns: 1fr; } }

/* ALTCHA captcha (plugin: site/plugins/altcha). Custom properties cross into
   the widget's shadow DOM, so this is all the theming it needs. */
.contact-form altcha-widget {
  --altcha-max-width: 100%;
  --altcha-border-radius: 3px;
  --altcha-border-width: 1.5px;
  --altcha-border-color: var(--line-2);
  --altcha-color-base: var(--paper);
  --altcha-color-base-content: var(--ink);
  --altcha-color-primary: var(--accent);
  --altcha-color-neutral: var(--muted);
  --altcha-color-success: #1a7f3c;
  --altcha-color-error: #c0261f;
  --altcha-checkbox-border-color: var(--line-2);
  --altcha-spinner-color: var(--accent);
  font-family: var(--body);
  font-size: 15px;
}
.contact-blue altcha-widget {
  --altcha-border-color: rgba(255,255,255,0.28);
  --altcha-color-base: rgba(255,255,255,0.06);
  --altcha-color-base-content: #fff;
  --altcha-color-neutral: rgba(255,255,255,0.7);
  --altcha-color-success: #86e0a5;
  --altcha-color-error: #ff9c96;
  --altcha-checkbox-border-color: rgba(255,255,255,0.45);
  --altcha-spinner-color: #fff;
}

/* Contact form on a navy section (Mitmachen "Komm zu uns") — light heading & labels */
.contact-blue { background: var(--navy); color: #fff; }
.contact-blue .eyebrow { color: rgba(255,255,255,0.7); }
.contact-blue .eyebrow::before { background: #fff; }
.contact-blue .h-sec { color: #fff; }
.contact-blue .lead { color: rgba(255,255,255,0.85); }
.contact-blue .cf-label { color: #fff; }
.contact-blue .cf-status.is-ok { color: #86e0a5; }
.contact-blue .cf-status.is-err { color: #ff9c96; }
.contact-blue .cf-social { color: rgba(255,255,255,0.72); }

/* "Nächste Produktion" promo card (Mitmachen) — themed from the current production */
.next-prod .np-card { display: grid; grid-template-columns: minmax(0, 220px) 1fr; gap: clamp(20px, 4vw, 44px); align-items: center; background: var(--accent); color: var(--on-accent); border-radius: 6px; padding: clamp(20px, 3vw, 34px); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.next-prod .np-card:hover { transform: translateY(-3px); box-shadow: 0 26px 50px -30px rgba(15,18,50,0.55); }
.next-prod .np-media img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 3px; display: block; }
.next-prod .np-eyebrow { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.13em; text-transform: uppercase; opacity: 0.82; }
.next-prod .np-title { font-family: var(--disp); font-weight: 700; font-size: clamp(28px, 4vw, 46px); text-transform: uppercase; line-height: 1.02; margin: 10px 0 0; }
.next-prod .np-sub { font-family: var(--body); font-size: 16px; opacity: 0.92; margin: 12px 0 0; }
.next-prod .np-meta { display: flex; flex-wrap: wrap; gap: 8px 26px; margin: 18px 0 22px; font-size: 14px; }
.next-prod .np-meta strong { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.7; margin-right: 7px; font-weight: 500; }
.next-prod .np-link { display: inline-flex; font-family: var(--disp); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; padding: 12px 22px; border-radius: 2px; background: var(--on-accent); color: var(--accent); }
@media (max-width: 620px) { .next-prod .np-card { grid-template-columns: 1fr; } .next-prod .np-media img { aspect-ratio: 16/9; } }

.hlcard { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--navy); border-radius: 3px; padding: 22px 24px; display: flex; flex-direction: column; gap: 8px; text-decoration: none; color: inherit; transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease; }
a.hlcard:hover { transform: translateY(-2px); border-color: var(--accent); border-left-color: var(--accent); box-shadow: 0 12px 26px -20px rgba(15,18,50,0.55); }
a.hlcard:hover .hlt { color: var(--accent); }
.hlcard .hlk { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.hlcard .hlt { font-family: var(--disp); font-weight: 600; font-size: 19px; line-height: 1.15; color: var(--navy); transition: color .16s ease; }
.hlcard .hly { font-family: var(--mono); font-size: 13px; color: var(--muted); margin-top: auto; }
.chronik-note { font-size: 14px; color: var(--muted); margin-top: 24px; max-width: 62ch; line-height: 1.6; }

.arch-cta { background: var(--navy); color: #fff; }
.arch-cta .wrap { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center; }
.arch-cta .eyebrow { color: rgba(255,255,255,0.7); }
.arch-cta .eyebrow::before { background: #fff; }
.arch-cta h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(32px, 4.6vw, 54px); text-transform: uppercase; line-height: 1.0; margin: 14px 0 0; }
.arch-cta p { color: rgba(255,255,255,0.82); font-size: 16.5px; line-height: 1.55; margin: 16px 0 0; max-width: 46ch; }
.arch-cta .cta { display: flex; gap: 12px; flex-wrap: wrap; justify-self: end; }
@media (max-width: 900px) { .arch-cta .wrap { grid-template-columns: 1fr; } .arch-cta .cta { justify-self: start; } }
@media (max-width: 720px) {
  .filterbar .wrap { gap: 8px; }
  .chip { font-size: 12.5px; padding: 8px 13px; }
  .poster-wall { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
}
@media (max-width: 480px) { .arch-meta { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (prefers-reduced-motion: reduce) { .pcard:hover { transform: none; } }

/* ===== Beiträge (Blog): Hero, Filter, Featured, Raster ===== */
.blog-hero { background: var(--navy-deep); color: #fff; padding: clamp(52px, 8vw, 100px) 0 clamp(34px, 5vw, 56px); }
.blog-hero .eyebrow { color: rgba(255,255,255,0.66); }
.blog-hero .eyebrow::before { background: #fff; }
.blog-hero h1 { font-family: var(--disp); font-weight: 700; font-size: clamp(46px, 9vw, 112px); line-height: 1.02; text-transform: uppercase; letter-spacing: 0.005em; margin: 12px 0 0; }
.blog-hero .intro { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: rgba(255,255,255,0.82); max-width: 58ch; margin: 22px 0 0; }
.blog-filter { position: sticky; top: 70px; z-index: 40; background: var(--cream); border-bottom: 1px solid var(--line); }
.blog-filter .wrap { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding-top: 15px; padding-bottom: 15px; }
.blog-filter .flabel { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.bchip { font-family: var(--disp); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em; padding: 9px 17px; border-radius: 2px; border: 1.5px solid var(--line-2); background: var(--paper); color: var(--navy); cursor: pointer; transition: all .16s ease; }
.bchip:hover { border-color: var(--navy); }
.bchip.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.feature { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; border: 1px solid var(--line-2); border-radius: 4px; overflow: hidden; background: var(--paper); text-decoration: none; margin-bottom: clamp(20px, 3vw, 34px); transition: box-shadow .25s ease, transform .25s ease; }
.feature:hover { transform: translateY(-4px); box-shadow: 0 30px 56px -32px rgba(15,18,50,0.55); }
.feat-body { padding: clamp(28px, 3.4vw, 48px); display: flex; flex-direction: column; align-items: flex-start; }
.feat-body .pmeta { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; }
.feat-body h2 { font-family: var(--disp); font-weight: 700; font-size: clamp(26px, 3.2vw, 40px); line-height: 1.08; color: var(--navy); text-transform: uppercase; margin: 0; text-wrap: balance; }
.feat-body p { font-size: 16px; line-height: 1.62; color: var(--ink); margin: 16px 0 0; max-width: 52ch; }
.feat-visual { position: relative; overflow: hidden; background: #f2ede2; min-height: 260px; }
.feat-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: clamp(16px, 2vw, 26px); }
.post { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: 4px; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.post-thumb { aspect-ratio: 16/10; background-size: cover; background-position: center; border-radius: 4px 4px 0 0; }
.post .ph.post-thumb .lbl { font-family: var(--mono); }
.post:hover { transform: translateY(-4px); box-shadow: 0 22px 42px -28px rgba(15,18,50,0.5); border-color: var(--line-2); }
.pmeta { display: flex; gap: 10px; align-items: center; }
.ptag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); border: 1px solid color-mix(in oklab, var(--accent) 38%, var(--line)); padding: 3px 8px; border-radius: 2px; white-space: nowrap; }
.pdate { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.post .pmeta { padding: 22px 22px 0; }
.post h3 { font-family: var(--disp); font-weight: 600; font-size: 21px; line-height: 1.15; color: var(--navy); margin: 13px 22px 0; text-wrap: pretty; }
.post .excerpt { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 11px 22px 0; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.post .more { font-family: var(--disp); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); margin: auto 22px 22px; padding-top: 16px; display: inline-flex; gap: 6px; }
.is-hidden { display: none !important; }
.blog-foot-note { margin-top: clamp(30px, 4vw, 48px); padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.blog-foot-note span { font-family: var(--mono); font-size: 12px; color: var(--muted); }
@media (max-width: 720px) {
  .feature { grid-template-columns: 1fr; }
  .feat-visual { order: -1; min-height: 200px; }
  .blog-filter .bchip { font-size: 12.5px; padding: 8px 13px; }
}

/* ===== Mitmachen: neutraler Hero, Abteilungen, Ablauf, FAQ ===== */
.rot { color: var(--accent); display: inline-block; transition: opacity .25s ease; }
.dept-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(282px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; }
.dept { background: var(--paper); padding: 28px 26px; display: flex; flex-direction: column; gap: 10px; }
.dept .dnum { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; color: var(--accent); }
.dept .dn { font-family: var(--disp); font-weight: 600; font-size: 21px; color: var(--navy); line-height: 1.05; }
.dept p { margin: 0; font-size: 14.5px; line-height: 1.62; color: var(--muted); }

/* Polaroid photo strips (Mitmachen) — transparent PNG collages from the old site */
.photostrip { margin-top: clamp(36px, 5vw, 60px); }
.photostrip img { display: block; width: 100%; max-width: 920px; height: auto; margin: 0 auto; }
.info-box { background: var(--paper); border: 1px solid var(--line-2); border-radius: 3px; overflow: hidden; }
.info-row { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-row .ik { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); padding-top: 2px; }
.info-row .iv { font-size: 15.5px; color: var(--ink); line-height: 1.55; }
.info-row .iv b, .info-row .iv strong { font-weight: 700; color: var(--navy); }
.faq-item { border-top: 1px solid var(--line); padding: 20px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item .q { font-family: var(--disp); font-weight: 600; font-size: 18px; color: var(--navy); margin: 0 0 8px; }
.faq-item .a { font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0; max-width: 64ch; }
/* „So läuft's": echtes Zwei-Spalten-Layout (2/3 Ablauf · 1/3 FAQ), top-bündig
   und NICHT klebrig – ersetzt das sticky prod-layout der Produktionsseiten
   für diesen Abschnitt. */
.schedule-cols { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.schedule-cols .schedule-main { min-width: 0; }
@media (max-width: 920px) { .schedule-cols { grid-template-columns: 1fr; gap: 32px; } }
.link-accent { color: var(--accent); text-decoration: none; border-bottom: 1px solid color-mix(in oklab, var(--accent) 45%, transparent); }
.link-accent:hover { border-bottom-color: var(--accent); }
.info-row .iv a, .chronik-note a { color: var(--accent); text-decoration: none; border-bottom: 1px solid color-mix(in oklab, var(--accent) 45%, transparent); }
.info-row .iv a:hover, .chronik-note a:hover { border-bottom-color: var(--accent); }
@media (max-width: 620px) { .info-row { grid-template-columns: 1fr; gap: 6px; } }
.neutral-hero { background: var(--navy-deep); border-bottom: none; }
.neutral-hero .prod-eyebrow { color: rgba(255,255,255,0.66); }
.neutral-hero .prod-title { font-family: var(--disp); font-weight: 700; text-transform: uppercase; letter-spacing: 0.005em; line-height: 1.02; color: #fff; font-size: clamp(46px, 8.5vw, 118px); }
.neutral-hero .rot { color: var(--accent); }
.neutral-hero .prod-credits { color: rgba(255,255,255,0.82); }
.neutral-hero .meta-bar { border-top-color: rgba(255,255,255,0.22); }
.neutral-hero .meta-bar .mk { color: rgba(255,255,255,0.62); opacity: 1; }
.neutral-hero .meta-bar .mv { color: #fff; }

/* ===== Mitmachen: „Erstes Treffen" (orange Auftakt-Sektion + Datumskarte,
   aus der Platzhalterseite übernommen; Titelschrift = Oswald statt Core Paint,
   die dem gewellten Hero vorbehalten bleibt) ===== */
.kickoff { background: var(--accent); color: #fff; }
.kickoff .kgrid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.kickoff .eyebrow { color: rgba(255,255,255,0.78); }
.kickoff .eyebrow::before { background: #fff; }
.kickoff .kh { font-family: var(--disp); font-weight: 700; font-size: clamp(38px, 5.4vw, 66px); text-transform: uppercase; line-height: 0.94; letter-spacing: 0.005em; color: #fff; margin: 16px 0 0; }
.kickoff .kp { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 48ch; margin: 22px 0 0; }
.kickoff .kcta { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }
.kcard { background: var(--navy); color: #fff; border-radius: 4px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(20,33,110,0.6); }
.kcard .kc-date { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 32px 28px 26px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.kcard .kc-dow { font-family: var(--mono); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.kcard .kc-full { font-family: var(--disp); font-weight: 700; font-size: clamp(28px, 3.6vw, 38px); line-height: 1.12; letter-spacing: 0.01em; margin: 10px 0 0; }
.kcard .kc-rows { display: flex; flex-direction: column; }
.kcard .kc-row { display: grid; grid-template-columns: 88px 1fr; gap: 16px; padding: 16px 28px; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: baseline; }
.kcard .kc-row:last-child { border-bottom: none; }
.kcard .kc-k { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.kcard .kc-v { font-family: var(--disp); font-weight: 600; font-size: 17px; }
@media (max-width: 760px) { .kickoff .kgrid { grid-template-columns: 1fr; } }

/* ===== Rechtsseiten (Impressum / Datenschutz / AGB / Kontakt / Presse) ===== */
.legal-hero { background: var(--cream-2); border-bottom: 1px solid var(--line); padding: clamp(46px, 7vw, 82px) 0 clamp(26px, 4vw, 42px); }
.legal-hero h1 { font-family: var(--disp); font-weight: 700; text-transform: uppercase; letter-spacing: 0.005em; font-size: clamp(40px, 7vw, 84px); line-height: 1.02; color: var(--navy); margin: 12px 0 0; }
.legal-hero .intro { font-size: 15.5px; color: var(--muted); margin: 16px 0 0; max-width: 60ch; line-height: 1.6; }
.legal { max-width: 760px; }
.legal h2 { font-family: var(--disp); font-weight: 600; font-size: clamp(20px, 2.4vw, 25px); color: var(--navy); margin: 40px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 22px 0 6px; }
.legal p, .legal address { font-size: 16px; line-height: 1.72; color: var(--ink); font-style: normal; margin: 0 0 14px; max-width: 72ch; }
.legal address { white-space: pre-line; }
.legal a { color: var(--accent); text-decoration: none; border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent); }
.legal a:hover { border-bottom-color: var(--accent); }
.legal .divider, .legal hr { height: 1px; background: var(--line); border: none; margin: 40px 0; }
.legal a { color: var(--accent); text-decoration: none; border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent); }
.legal ul { margin: 0 0 14px; padding-left: 20px; }
.legal li { font-size: 16px; line-height: 1.72; color: var(--ink); max-width: 72ch; }
.legal .updated { font-family: var(--mono); font-size: 12px; color: var(--muted); margin-top: 44px; }
