/* ============================================================
   THEATER AN DER MARSCHNERSTRASSE — Design-System
   Eine Datei: Schriften, Farben, Typografie, Bausteine.

   Aus der Theater-Website herausgelöst (base.css + site.css +
   subpage.css), auf die tatsächlich gelebten Werte eingedampft.
   Klassennamen sind absichtlich identisch — Markup lässt sich
   zwischen den Projekten kopieren.

   Einbinden:   <link rel="stylesheet" href="theater.css">
   Wichtig:     theater.css und assets/ zusammen lassen — die
                Schriftpfade sind relativ zu dieser Datei.
   ============================================================ */


/* ============================================================
   1 · SCHRIFTEN
   Selbst gehostet. Keine Google-Fonts-Einbindung — der Aufruf
   fremder Server ist bei uns bewusst ausgeschlossen (DSGVO).
   ============================================================ */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/anton-latin-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/oswald-latin-400-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('assets/fonts/archivo-latin-400-800.woff2') format('woff2');
}


/* ============================================================
   2 · TOKENS
   Alles, was sich je ändern könnte, steht hier — und nur hier.
   ============================================================ */

:root {
  /* ---- Die drei Hausfarben ------------------------------- */
  --ink:            #000000;   /* Schwarz: Flächen, Schrift, Rahmen  */
  --signal:         #FFD30C;   /* Signalgelb: der eine Akzent        */
  --paper:          #D9D6CF;   /* Papiergrau: der ruhige Untergrund  */

  /* ---- Abstufungen dazu ---------------------------------- */
  --signal-bright:  #FFDE45;   /* Mouseover auf dunklem Grund        */
  --signal-deep:    #D9B400;   /* gedrückt; Gelb auf hellem Grund    */
  --signal-wash:    rgba(255,211,12,0.16);  /* zarte Tönung          */
  --paper-2:        #CECABF;   /* abgesetzte Felder auf Papier       */
  --bone:           #EDEAE4;   /* hellste Papierfläche               */
  --concrete:       #B7B3AC;   /* stumpfes Grau, Linien auf Papier   */
  --soot:           #0B0B0C;   /* fast Schwarz, minimal warm         */
  --soot-2:         #161617;   /* erhöhte Fläche auf Schwarz         */
  --ash:            #2A2A2C;   /* Haarlinien auf Schwarz             */
  --smoke:          #6E6A66;   /* gedämpfter Text auf Papier         */
  --accent-ink:     #0B0B0C;   /* Textfarbe AUF Gelb                 */

  /* ---- Semantisch: helle Fläche -------------------------- */
  --bg:             var(--paper);
  --surface:        var(--bone);
  --fg:             var(--ink);
  --fg-muted:       var(--smoke);
  --border:         rgba(0,0,0,0.16);
  --border-strong:  var(--ink);

  /* ---- Semantisch: dunkle Fläche ("Bühne") --------------- */
  --bg-dark:        var(--ink);
  --surface-dark:   var(--soot-2);
  --fg-dark:        var(--bone);
  --fg-muted-dark:  #9A9690;
  --border-dark:    var(--ash);

  /* ---- Schriftfamilien ----------------------------------- */
  --font-display:   'Anton', 'Arial Narrow', sans-serif;   /* Plakat  */
  --font-head:      'Oswald', 'Arial Narrow', sans-serif;  /* Rubrik  */
  --font-text:      'Archivo', 'Helvetica Neue', Arial, sans-serif;

  /* ---- Schriftgrößen (plakativ, große Sprünge) ----------- */
  --step-mega:      clamp(3.5rem, 11vw, 9rem);    /* Plakatwort      */
  --step-xl:        clamp(2.5rem, 6vw, 5rem);     /* Seitentitel     */
  --step-lg:        clamp(1.9rem, 3.4vw, 3rem);   /* Abschnitte      */
  --step-md:        clamp(1.4rem, 2vw, 2rem);     /* Kartentitel     */
  --step-sm:        1.25rem;
  --step-base:      1.0625rem;                    /* 17px Fließtext  */
  --step-xs:        0.8125rem;                    /* 13px Marginalie */

  --leading-tight:  0.92;
  --leading-head:   1.02;
  --leading-body:   1.6;

  /* ---- Abstände (8er-Raster) ----------------------------- */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px;  --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 96px;  --sp-10: 128px;

  /* ---- Ecken: keine. Diese Marke ist geschnitten, nicht
         abgerundet. Radius bleibt 0 — auch bei Formularen.  */
  --r-0: 0px;

  /* ---- Linien -------------------------------------------- */
  --rule-hair:      1px solid var(--border);
  --rule-ink:       2px solid var(--ink);
  --rule-signal:    3px solid var(--signal);

  /* ---- Schatten: flach wie Druck. Der einzige erlaubte
         ist der harte Versatz-Block.                        */
  --shadow-poster:  9px 9px 0 var(--signal);

  /* ---- Bewegung ------------------------------------------ */
  --ease-cut:       cubic-bezier(0.2, 0, 0, 1);   /* entschlossen */
  --dur-fast:       120ms;
  --dur:            200ms;

  /* ---- Layout -------------------------------------------- */
  --wrap-max:       1240px;
  --wrap-pad:       40px;
  --header-h:       72px;
}


/* ============================================================
   3 · GRUNDLAGEN
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-text);
  font-size: var(--step-base);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* Spalte mit Mindesthöhe: hält die Fußzeile auch auf kurzen
     Seiten unten (kein „schwebender" Footer). */
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img, svg { display: block; }
button { font: inherit; cursor: pointer; color: inherit; }
a { color: inherit; }
section { scroll-margin-top: -4px; }

/* Sichtbarer Fokus für Tastaturbedienung — nie wegnehmen. */
:focus-visible { outline: 2px solid var(--signal); outline-offset: 2px; }


/* ============================================================
   4 · TYPOGRAFIE
   Anton schreit, Oswald ordnet, Archivo erklärt.
   ============================================================ */

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-xl);
  line-height: var(--leading-head);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-4);
}

/* Das eine ganz große Wort — sparsam einsetzen. */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--step-mega);
  line-height: var(--leading-tight);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}

h2, .h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--step-lg);
  line-height: var(--leading-head);
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 var(--sp-4);
}

h3, .h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--step-md);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 var(--sp-3);
}

h4, .h4 {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: var(--step-sm);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 var(--sp-2);
}

p { margin: 0 0 var(--sp-4); }
.lead  { font-size: var(--step-sm); line-height: 1.5; }
small, .small { font-size: var(--step-xs); }
.muted { color: var(--fg-muted); }

/* Rubrik über der Überschrift, mit gelbem Strich davor.
   Das Erkennungszeichen des Hauses.

   Wichtig: Die Schrift ist standardmäßig SCHWARZ, nicht gelb —
   gelbe Schrift auf hellem Grund ist nicht lesbar. Gelb wird nur
   dort zugeschaltet, wo der Grund dunkel ist. Der Strich davor
   bleibt immer gelb. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--step-xs);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink);
  margin: 0 0 var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: var(--signal);
  display: block;
}
.sec--ink .eyebrow,
.phero .eyebrow,
.ftr .eyebrow,
.on-dark .eyebrow,
.eyebrow--on-dark { color: var(--signal); }

a { text-decoration: none; }


/* ============================================================
   5 · LAYOUT
   ============================================================ */

.wrap {
  width: 100%;
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}

/* Abschnitt: wechselt zwischen Papier und Bühne. */
.sec { padding: 92px 0; position: relative; }
.sec--paper { background: var(--paper); color: var(--ink); }
.sec--ink   { background: var(--ink);   color: var(--bone); }

.sec__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}
.sec__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.98;
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0;
}
.sec__lead {
  color: var(--fg-muted);
  max-width: 42ch;
  line-height: 1.6;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.sec--ink .sec__lead { color: var(--fg-muted-dark); }


/* ============================================================
   6 · BUTTONS
   Rechteckig, zweifarbig, mit kurzem Druck nach unten.
   ============================================================ */

.btn {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 14px;
  padding: 15px 30px;
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--r-0);
  text-decoration: none;
  transition: transform var(--dur-fast) var(--ease-cut),
              background var(--dur) var(--ease-cut),
              color var(--dur) var(--ease-cut);
}
.btn:active { transform: translateY(2px); }
.btn .ico { width: 17px; height: 17px; }

/* Kleine Fassung — für die Kopfzeile. */
.btn--sm { padding: 8px 12px; font-size: 13px; }
.btn--sm .ico { width: 15px; height: 15px; }

.btn--signal { background: var(--signal); border-color: var(--signal); color: var(--accent-ink); }
.btn--signal:active { background: var(--signal-bright); border-color: var(--signal-bright); }
@media (hover: hover) {
  .btn--signal:hover { background: var(--signal-bright); border-color: var(--signal-bright); }
}

/* Umriss auf dunklem Grund */
.btn--ghost-light { background: transparent; color: var(--bone); border-color: var(--bone); }
.btn--ghost-light:active { background: var(--bone); color: var(--ink); }
@media (hover: hover) { .btn--ghost-light:hover { background: var(--bone); color: var(--ink); } }

/* Umriss auf hellem Grund */
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost-dark:active { background: var(--ink); color: var(--bone); }
@media (hover: hover) { .btn--ghost-dark:hover { background: var(--ink); color: var(--bone); } }


/* ============================================================
   7 · KOPFZEILE
   ============================================================ */

.hdr {
  background: var(--ink);
  color: var(--bone);
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--ash);
}
.hdr__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}
.hdr__brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.hdr__brand .mk { width: 32px; color: var(--signal); position: relative; top: 0.6px; }
.hdr__brand .wm {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: .03em;
  font-size: 17px;
}
.hdr__nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 24px); }
.hdr__nav a {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: 13px;
  color: #cbc7c1;
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  transition: color var(--dur) var(--ease-cut);
}
.hdr__nav a:active,
.hdr__nav a.active { color: #fff; }
@media (hover: hover) { .hdr__nav a:hover { color: #fff; } }
.hdr__nav a.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--signal);
}
.hdr__cta { display: flex; align-items: center; gap: 12px; }
.hdr__burger {
  display: none;
  background: none; border: 0;
  color: var(--bone);
  width: 28px; height: 28px;
}


/* ============================================================
   8 · FUSSZEILE
   ============================================================ */

.ftr { background: var(--ink); color: var(--bone); flex-shrink: 0; }
.ftr__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 0 56px;
}
.ftr__brand .mk { width: 52px; color: var(--signal); margin-bottom: 22px; }
.ftr__brand .nm {
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: .03em;
  font-size: 20px;
}
.ftr__brand p {
  color: var(--fg-muted-dark);
  max-width: 34ch;
  line-height: 1.6;
  margin: 20px 0 0;
  font-size: .95rem;
}
.ftr h5 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--signal);
  margin: 4px 0 18px;
}
.ftr ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.ftr ul li,
.ftr ul a {
  font-family: var(--font-head);
  font-size: 14px;
  letter-spacing: .03em;
  color: #cbc7c1;
  text-decoration: none;
}
.ftr ul a:active { color: var(--signal); }
@media (hover: hover) { .ftr ul a:hover { color: var(--signal); } }

.ftr__bar {
  border-top: 1px solid var(--ash);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  color: var(--fg-muted-dark);
  gap: 16px;
  flex-wrap: wrap;
}
.ftr__bar b { color: var(--bone); }
.ftr__bar .dot { color: var(--signal); }
.ftr__bar a { text-decoration: none; }
.ftr__bar a:active { color: var(--signal); }
@media (hover: hover) { .ftr__bar a:hover { color: var(--signal); } }

.ftr__social { display: flex; gap: 12px; }
.ftr__social a {
  width: 38px; height: 38px;
  border: 1px solid var(--ash);
  display: flex; align-items: center; justify-content: center;
  color: #cbc7c1;
  transition: all var(--dur) var(--ease-cut);
}
.ftr__social a:active { background: var(--signal); border-color: var(--signal); color: var(--accent-ink); }
@media (hover: hover) {
  .ftr__social a:hover { background: var(--signal); border-color: var(--signal); color: var(--accent-ink); }
}
.ftr__social .ico { width: 17px; height: 17px; }


/* ============================================================
   9 · SEITENKOPF (für Unterseiten ohne großen Hero)
   ============================================================ */

.phero { background: var(--ink); color: var(--bone); position: relative; overflow: hidden; }
.phero__in { position: relative; z-index: 2; padding-block: 72px 64px; }
.phero__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.04;
  font-size: clamp(2.6rem, 6vw, 5rem);
  margin: 0;
  letter-spacing: .005em;
}
.phero__sub {
  font-family: var(--font-text);
  color: #d3cfc9;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 18px 0 0;
  max-width: 56ch;
}
/* Riesiges Signet als Schatten im Hintergrund. */
.phero__M {
  position: absolute; right: -4%; top: 50%;
  transform: translateY(-50%);
  height: 150%;
  color: #1a1a1c;
  pointer-events: none;
  z-index: 0;
}
.phero__M svg { height: 100%; width: auto; }


/* ============================================================
   10 · LESETEXT
   Für alles Längere: Rechtstexte, Berichte, Erklärseiten.
   ============================================================ */

.content { flex: 1 0 auto; padding: 72px 0 96px; }
.legal { max-width: 760px; }
.legal h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.04;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 52px 0 16px;
  padding-left: 20px;
  border-left: 4px solid var(--signal);
}
.legal h2:first-of-type { margin-top: 0; }
.legal h2 .no {
  display: block;
  font-size: 0.7rem;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--signal);
  margin: 0 0 5px;
}
.legal h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1rem;
  margin: 28px 0 8px;
}
.legal p { line-height: 1.75; margin: 0 0 16px; max-width: 68ch; }
.legal ul { padding-left: 22px; margin: 0 0 16px; max-width: 68ch; }
.legal li { margin-bottom: 8px; line-height: 1.6; }
.legal strong { font-weight: 600; }
.legal address { font-style: normal; font-family: var(--font-head); font-size: 1.05rem; line-height: 1.6; }
.legal .lead {
  font-size: 1.18rem;
  line-height: 1.7;
  font-weight: 500;
  border-left: 4px solid var(--signal);
  padding-left: 20px;
  margin-bottom: 40px;
  max-width: 58ch;
}
.legal__updated {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  color: var(--smoke);
  margin: 0 0 40px;
}
/* Links im Lesetext: unterstrichen, beim Überfahren gelb hinterlegt. */
.legal a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
}
.legal a:active { background: var(--signal); }
@media (hover: hover) { .legal a:hover { background: var(--signal); } }

.callout {
  background: var(--paper-2);
  border-left: 4px solid var(--signal);
  padding: 18px 22px;
  margin: 0 0 24px;
}
.callout p:last-child { margin: 0; }

.backlink {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  color: var(--ink);
}
.backlink:active { background: var(--signal); box-shadow: 0 0 0 4px var(--signal); }
@media (hover: hover) { .backlink:hover { background: var(--signal); box-shadow: 0 0 0 4px var(--signal); } }
.backlink .ico { width: 16px; height: 16px; }


/* ============================================================
   11 · KARTE
   Schwarzer Block mit hartem Rand. Beim Überfahren rückt er
   nach oben links und wirft einen gelben Versatz-Schatten —
   wie ein Plakat, das sich von der Wand löst.
   ============================================================ */

.card {
  background: var(--ink);
  color: var(--bone);
  border: 2px solid var(--ink);
  text-decoration: none;
  display: block;
  transition: transform var(--dur) var(--ease-cut), box-shadow var(--dur) var(--ease-cut);
}
.card:active { transform: translate(-4px, -4px); box-shadow: var(--shadow-poster); }
@media (hover: hover) {
  .card:hover { transform: translate(-4px, -4px); box-shadow: var(--shadow-poster); }
}
.card__media { position: relative; background: var(--soot); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
/* Eckfahne, z. B. „Premiere" */
.card__flag {
  position: absolute; top: 0; left: 0; z-index: 3;
  background: var(--signal);
  color: var(--accent-ink);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
  padding: 6px 12px;
}
.card__meta { padding: 16px 20px 22px; border-top: 2px solid var(--signal); }
.card__date {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
  color: var(--fg-muted-dark);
}
.card:active .card__date { color: var(--signal); }
@media (hover: hover) { .card:hover .card__date { color: var(--signal); } }
.card__title {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 1.04;
  font-size: 1.5rem;
  margin: 6px 0 0;
}
.card__sub {
  display: block;
  margin-top: 7px;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 12px;
  color: var(--fg-muted-dark);
}


/* ============================================================
   12 · KLEINTEILE
   ============================================================ */

/* Filterleiste — aktiver Eintrag mit gelbem Balken. */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--ink);
}
.filters button {
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  background: none;
  border: 0;
  padding: 12px 20px;
  color: var(--smoke);
  position: relative;
}
.filters button:active,
.filters button.active { color: var(--ink); }
.filters button.active::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 4px;
  background: var(--signal);
}

/* Chip: gelbe Schrift auf schwarzer Fläche. Für Uhrzeiten,
   Kennzahlen, kurze Angaben. */
.chip {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  background: var(--ink);
  color: var(--signal);
  padding: 3px 11px;
}
/* Rubrik-Chip: kleiner, gesperrter, als Überschrift benutzbar. */
.chip--label {
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 12px;
}

/* Angabenliste: zweispaltig, mit feinen Trennlinien.
   Für Besetzungen, Daten, Eckwerte. */
.facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 2px solid var(--ink);
  margin: 36px 0 32px;
}
.fact { padding: 14px 0; border-bottom: 1px solid var(--concrete); }
.fact:nth-child(odd)  { padding-right: 28px; }
.fact:nth-child(even) { padding-left: 28px; border-left: 1px solid var(--concrete); }
.fact--full { grid-column: 1 / -1; padding-left: 0; padding-right: 0; border-left: 0; }
.fact h4 {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 14px;
  color: var(--smoke);
  margin: 0 0 4px;
}
.fact p { margin: 0; line-height: 1.6; font-size: 1.02rem; }


/* ============================================================
   13 · FORMULARE
   Aus dem Spielplan-Editor übernommen: harte Ecken, dünner
   Rahmen, gelber Fokus.
   ============================================================ */

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 11px;
  color: var(--smoke);
  margin: 0 0 6px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field input[type="password"],
.field select,
.field textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #cfccc4;
  background: #fff;
  color: var(--ink);
  border-radius: var(--r-0);
  font: inherit;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--signal); outline: none; }
.field textarea { resize: vertical; min-height: 90px; line-height: 1.55; }
.field .hint { font-size: 11px; color: #9a958e; margin-top: 5px; line-height: 1.4; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }


/* ============================================================
   14 · HILFSKLASSEN
   ============================================================ */

/* Gelber Textmarker — der einzige Weg, Gelb auf hellem Grund
   zu benutzen: Fläche gelb, Schrift bleibt schwarz. */
.hl {
  color: var(--ink);
  background: none;
  background-image: linear-gradient(transparent 0 46%, var(--signal) 46% 93%, transparent 93%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 0 .04em;
}

/* Feines Druckraster über einer Fläche — der handgemachte
   Beigeschmack. Auf dunklen Flächen zusätzlich .on-dark. */
.grain { position: relative; }
.grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  background-size: 160px 160px;
}
.grain.on-dark::after { mix-blend-mode: screen; opacity: 0.10; }

/* Das Signet: Größe über width, Farbe über color. */
.mk { width: 32px; height: auto; color: var(--signal); }


/* ============================================================
   15 · RESPONSIVE
   ============================================================ */

body.nav-open .hdr__nav { display: flex; }

@media (max-width: 1000px) {
  .ftr__top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 1080px) {
  .hdr__nav { display: none; }
  .hdr__burger { display: block; }
  body.nav-open .hdr__nav {
    position: absolute;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--ink);
    border-bottom: 2px solid var(--signal);
    padding: 8px var(--wrap-pad) 20px;
  }
  body.nav-open .hdr__nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--ash);
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  :root { --wrap-pad: 28px; }
  section { scroll-margin-top: 24px; }
  .sec { padding: 64px 0; }
  .sec__head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .content { padding: 48px 0 64px; }
  .phero__in { padding-block: 52px 44px; }
  .facts { grid-template-columns: 1fr; }
  .fact:nth-child(odd), .fact:nth-child(even) {
    padding-left: 0; padding-right: 0; border-left: 0;
  }
  .field--row { grid-template-columns: 1fr; }
}

/* Wer Bewegung reduziert haben will, bekommt keine. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}
