/* ===================================================================
   GRAF VON BRATWURST, Close-Up Magie
   Comic / Pop-Art Onepager
   =================================================================== */

/* ----------  Lokale Schriften (selbst gehostet, DSGVO-konform)
   Subsets: latin + latin-ext. Ersetzt das Google Fonts CDN.  ---------- */

@font-face {
  font-family: 'Bangers';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bangers-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Bangers';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bangers-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Bowlby One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bowlby-one-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Sigmar';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/sigmar-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Sigmar';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/sigmar-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #0b0a08;
  --paper: #fff6dc;
  --paper-2: #ffe9a8;
  --red: #ee2b2b;
  --red-deep: #b81515;
  --yellow: #ffd400;
  --yellow-deep: #f5a800;
  --blue: #1a86ff;
  --blue-deep: #0a4cb6;
  --pink: #ff3da1;
  --lime: #b7ff3a;
  --cream: #fff6dc;

  --halftone-dot: rgba(11,10,8,.22);
  --halftone-size: 14px;

  --shadow-pop: 6px 6px 0 var(--ink);
  --shadow-pop-lg: 10px 10px 0 var(--ink);
  --stroke: 4px;
  --stroke-thick: 6px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip;
}
html { overflow-x: hidden; scroll-behavior: smooth; scroll-padding-top: 80px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  width: 100%;
  /* Layered paper texture: halftone dots over warm cream */
  background-image:
    radial-gradient(var(--halftone-dot) 1.2px, transparent 1.3px),
    linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
  background-size: var(--halftone-size) var(--halftone-size), 100% 100%;
}

/* ---------- Reusable comic primitives ---------- */

.ink-border {
  border: var(--stroke-thick) solid var(--ink);
  box-shadow: var(--shadow-pop);
  background: white;
}

.headline {
  font-family: 'Bowlby One', 'Sigmar', system-ui, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.9;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-shadow:
    4px 4px 0 var(--ink);
}

.shout {
  font-family: 'Bangers', 'Bowlby One', system-ui, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* Halftone overlay element — drop into any container with position relative */
.halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(11,10,8,.35) 1.4px, transparent 1.6px);
  background-size: 10px 10px;
  mix-blend-mode: multiply;
  opacity: .55;
}

/* Speedlines — radial burst behind hero subject */
.speedlines {
  position: absolute;
  inset: -10%;
  pointer-events: none;
  background:
    repeating-conic-gradient(
      from 0deg,
      transparent 0deg 4deg,
      rgba(11,10,8,.85) 4deg 4.4deg,
      transparent 4.4deg 8deg
    );
  -webkit-mask-image: radial-gradient(circle at center, transparent 30%, black 60%, transparent 95%);
          mask-image: radial-gradient(circle at center, transparent 30%, black 60%, transparent 95%);
  opacity: .25;
}

/* Sunburst — yellow rays radiating outward */
.sunburst {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background:
    repeating-conic-gradient(
      from 0deg,
      var(--yellow) 0deg 10deg,
      var(--yellow-deep) 10deg 20deg
    );
  -webkit-mask-image: radial-gradient(circle at center, black 0%, black 60%, transparent 75%);
          mask-image: radial-gradient(circle at center, black 0%, black 60%, transparent 75%);
}

/* Sticker — chunky outlined badge */
.sticker {
  display: inline-block;
  padding: .35em .8em;
  background: var(--yellow);
  color: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  transform: rotate(-3deg);
}

/* KAPOW! style burst */
.burst {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 2.4rem;
  color: var(--ink);
  text-align: center;
  background: var(--yellow);
  filter: drop-shadow(6px 6px 0 var(--ink));
  clip-path: polygon(
    50% 0%, 60% 18%, 80% 8%, 78% 28%, 100% 32%, 82% 48%,
    98% 60%, 78% 64%, 88% 86%, 64% 78%, 60% 100%, 48% 80%,
    34% 100%, 30% 78%, 8% 86%, 18% 64%, 0% 60%, 18% 48%,
    0% 32%, 22% 28%, 20% 8%, 40% 18%
  );
}
.burst.red { background: var(--red); color: white; }
.burst.blue { background: var(--blue); color: white; }
.burst.pink { background: var(--pink); color: white; }

/* Pop button */
.pop-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.5rem;
  padding: 16px 28px;
  background: var(--red);
  color: white;
  border: var(--stroke-thick) solid var(--ink);
  box-shadow: var(--shadow-pop);
  text-decoration: none;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  -webkit-text-stroke: 1px var(--ink);
}
.pop-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.pop-btn:active {
  transform: translate(4px, 4px);
  box-shadow: 2px 2px 0 var(--ink);
}
.pop-btn.yellow { background: var(--yellow); color: var(--ink); -webkit-text-stroke: 0; }
.pop-btn.blue { background: var(--blue); }

/* Speech bubble */
.bubble {
  position: relative;
  background: white;
  border: var(--stroke-thick) solid var(--ink);
  border-radius: 28px;
  padding: 18px 24px;
  box-shadow: var(--shadow-pop);
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}
.bubble::before,
.bubble::after {
  content: "";
  position: absolute;
  width: 0; height: 0;
}
.bubble.tail-bl::before {
  bottom: -28px; left: 28px;
  border: 14px solid transparent;
  border-top-color: var(--ink);
  border-right-color: var(--ink);
}
.bubble.tail-bl::after {
  bottom: -16px; left: 36px;
  border: 10px solid transparent;
  border-top-color: white;
  border-right-color: white;
}
.bubble.tail-br::before {
  bottom: -28px; right: 28px;
  border: 14px solid transparent;
  border-top-color: var(--ink);
  border-left-color: var(--ink);
}
.bubble.tail-br::after {
  bottom: -16px; right: 36px;
  border: 10px solid transparent;
  border-top-color: white;
  border-left-color: white;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: var(--yellow);
  border-bottom: var(--stroke-thick) solid var(--ink);
  width: 100%;
  max-width: 100%;
}
@media (max-width: 600px) {
  .nav { padding: 8px 10px; gap: 8px; min-height: 0; }
  .nav-brand { font-size: 0.85rem; line-height: 0.95; }
  .nav-cta { font-size: 0.7rem; padding: 6px 10px; border-width: 2px; box-shadow: 2px 2px 0 var(--ink); white-space: nowrap; flex-shrink: 0; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.4rem); -webkit-text-stroke: 1.5px var(--ink); }
  .section-title .accent, .section-title .accent2 { text-shadow: 3px 3px 0 var(--ink); }
  .section { padding: 60px 5vw; }
}
.nav-brand {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.3rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 2px 2px 0 var(--ink);
  color: var(--red);
  text-decoration: none;
}
.nav-brand span { display: block; white-space: nowrap; }
.nav-brand .dot {
  width: 14px; height: 14px;
  background: var(--red);
  border: 3px solid var(--ink);
  border-radius: 50%;
}
.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.nav-links a {
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 12px;
  border: 3px solid transparent;
  border-radius: 8px;
  transition: all .15s ease;
}
.nav-links a:hover {
  background: white;
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-2deg);
}
.nav-cta {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1rem;
  padding: 10px 16px;
  background: var(--red);
  color: white;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  min-height: calc(100svh - 72px);
  padding: 40px 6vw 60px;
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 70% 50%, var(--yellow) 0%, var(--yellow) 28%, transparent 60%),
    linear-gradient(180deg, #f4d4ff 0%, #ffd9c2 40%, var(--paper-2) 100%);
}

.hero-rays {
  position: absolute;
  top: 42%;
  left: 78%;
  width: 220vmax;
  height: 220vmax;
  transform: translate(-50%, -50%);
  background:
    repeating-conic-gradient(
      from 0deg,
      var(--red) 0deg 6deg,
      transparent 6deg 14deg
    );
  -webkit-mask-image: radial-gradient(circle at center, black 0%, black 35%, transparent 75%);
          mask-image: radial-gradient(circle at center, black 0%, black 35%, transparent 75%);
  opacity: .42;
  pointer-events: none;
  animation: spin 60s linear infinite;
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-halftone {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11,10,8,.30) 1.4px, transparent 1.6px);
  background-size: 12px 12px;
  pointer-events: none;
  opacity: .45;
}

.hero-content {
  position: relative;
  z-index: 4;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  background: var(--ink);
  color: var(--yellow);
  padding: 6px 14px;
  transform: rotate(-2deg);
  margin-bottom: 18px;
  white-space: nowrap;
}

.hero-title {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero-title .l {
  display: block;
  color: var(--yellow);
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow:
    6px 6px 0 var(--ink),
    10px 10px 0 var(--red);
  white-space: nowrap;
}
.hero-title .l2 {
  color: var(--red);
  text-shadow: 6px 6px 0 var(--ink), 10px 10px 0 var(--blue);
}
.hero-title .l3 {
  color: white;
  font-family: 'Sigmar', system-ui, sans-serif;
  transform: skew(-4deg) translateX(6px);
  align-self: flex-start;
  text-shadow: 6px 6px 0 var(--ink), 10px 10px 0 var(--pink);
}

.hero-sub {
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: 0.04em;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}
/* Each word a distinct color; separators stay ink-black */
.hero-sub .w1 { color: var(--red) !important; }
.hero-sub .w2 { color: var(--pink) !important; }
.hero-sub .w3 { color: var(--blue) !important; }
.hero-sub .w4 { color: var(--ink) !important; }
.hero-sub .sep { color: var(--ink); opacity: .55; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-figure {
  position: absolute;
  top: 50%;
  right: -2vw;
  transform: translateY(-50%);
  z-index: 2;
  height: min(88vh, 800px);
  width: auto;
  pointer-events: none;
}
.hero-figure img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  filter:
    drop-shadow(8px 8px 0 var(--ink))
    drop-shadow(0 0 30px rgba(255, 110, 30, .4));
  animation: hover-bob 6s ease-in-out infinite;
}
@keyframes hover-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* Hero top-right bubble — sits where the starburst was, over Thomas's hat area */
.hero-bubble-top {
  position: absolute;
  top: 8%;
  right: 4%;
  left: auto;
  max-width: 240px;
  transform: rotate(4deg);
  z-index: 6;
}
@media (max-width: 900px) {
  .hero-bubble-top {
    top: 2%;
    right: 3%;
    left: auto;
    max-width: 170px;
    transform: rotate(4deg);
    font-size: 0.85rem;
    padding: 10px 14px;
  }
}

/* floating stickers in hero */
.float-bubble {
  position: absolute;
  z-index: 5;
}
.float-bubble.b1 { top: 4%; right: 6%; transform: rotate(8deg); }
.float-bubble.b2 { bottom: 12%; left: 2%; transform: rotate(-6deg); }
.float-bubble.b3 { top: 38%; left: 38%; transform: rotate(-3deg); }

.starburst {
  position: absolute;
  width: 200px;
  height: 200px;
  z-index: 3;
  display: grid; place-items: center;
  text-align: center;
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  background: var(--red);
  color: white;
  -webkit-text-stroke: 1.5px var(--ink);
  filter: drop-shadow(5px 5px 0 var(--ink));
  clip-path: polygon(
    50% 0%, 61% 16%, 80% 6%, 75% 26%, 96% 28%, 80% 44%,
    100% 56%, 80% 60%, 90% 82%, 68% 74%, 60% 96%, 50% 78%,
    40% 96%, 32% 74%, 10% 82%, 20% 60%, 0% 56%, 20% 44%,
    4% 28%, 25% 26%, 20% 6%, 39% 16%
  );
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(-8deg) scale(1.06); }
}
.starburst.s2 { bottom: 8%; right: 38%; width: 150px; height: 150px; font-size: 1.2rem; background: var(--blue); animation-delay: -1.5s; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section {
  position: relative;
  padding: 100px 6vw;
  border-top: var(--stroke-thick) solid var(--ink);
  max-width: 100%;
  overflow: hidden;
}
.section-eyebrow {
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: var(--lime);
  display: inline-block;
  padding: 4px 12px;
  border: 3px solid var(--ink);
  transform: rotate(-1.5deg);
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: .9;
  margin: 0 0 24px;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  text-wrap: balance;
  overflow-wrap: normal;
  text-shadow: 5px 5px 0 var(--yellow);
}
.section-title .accent { color: var(--red); text-shadow: 5px 5px 0 var(--ink); }
.section-title .accent2 { color: var(--blue); text-shadow: 5px 5px 0 var(--ink); }
.section-lede {
  font-size: 1.2rem;
  line-height: 1.5;
  max-width: 65ch;
  margin: 0 0 40px;
}

/* About */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: start;
}
.about-text p {
  font-size: 1.15rem;
  line-height: 1.55;
}
.about-text p + p { margin-top: 16px; }
.about-text .logo-wall { margin-top: 32px; }
.about-text strong {
  background: var(--yellow);
  padding: 0 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.about-side {
  display: flex; flex-direction: column; gap: 24px;
}
/* Retro-TV im "Der Graf"-Abschnitt — Video-Platzhalter mit Play-Button */
.retro-tv {
  position: relative;
  transform: rotate(1.2deg);
}
.tv-cabinet {
  display: flex;
  gap: 14px;
  background: linear-gradient(160deg, #2b95ff 0%, #1466d6 100%);
  border: var(--stroke-thick) solid var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow-pop-lg);
  padding: 16px;
}
.tv-screen-wrap {
  flex: 1 1 auto;
  min-width: 0;
  background: #0b0a08;
  border: 4px solid var(--ink);
  border-radius: 18px;
  padding: 10px;
  box-shadow: inset 0 0 0 3px #2a2722;
}
/* der klickbare Bildschirm nutzt .vid-thumb (Cursor, Play-Btn, Modal-Hook) wieder */
.tv-screen.vid-thumb {
  aspect-ratio: 4 / 3;
  border: none;
  border-radius: 12px;
}
.tv-screen .play-btn { width: 62px; height: 62px; z-index: 2; }
.tv-scanlines {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: 12px;
  background: repeating-linear-gradient(rgba(255,255,255,.06) 0 1px, transparent 1px 3px);
  mix-blend-mode: screen;
}
.tv-screen::before {            /* sanfter CRT-Glanz */
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  border-radius: 12px;
  background: radial-gradient(120% 80% at 30% 12%, rgba(255,255,255,.22), transparent 55%);
}
.tv-side {
  flex: 0 0 56px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 4px 0 2px;
}
.tv-knob {
  position: relative;
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff4c2, #f5a800 60%, #b87400);
  border: 3px solid var(--ink);
  box-shadow: inset 0 0 0 4px rgba(0,0,0,.12);
}
.tv-knob::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 3px; height: 12px; background: var(--ink); border-radius: 2px;
  transform: translate(-50%,-50%) rotate(35deg);
}
.tv-speaker {
  margin-top: auto;
  width: 40px; height: 72px; border-radius: 8px;
  border: 3px solid var(--ink);
  background: repeating-linear-gradient(var(--ink) 0 2px, rgba(255,255,255,.65) 2px 6px);
}
.tv-legs {
  display: flex; justify-content: space-between;
  width: 76%; margin: 0 auto;
}
.tv-legs span {
  width: 18px; height: 20px;
  background: var(--ink);
  border-radius: 0 0 6px 6px;
  transform: skewX(-14deg);
}
.tv-legs span:last-child { transform: skewX(14deg); }
.retro-tv .caption {
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.04em;
}
@media (max-width: 520px) {
  .tv-side { flex-basis: 44px; }
  .tv-speaker { width: 32px; height: 58px; }
  .tv-knob { width: 28px; height: 28px; }
}
.fact-card {
  background: var(--yellow);
  border: var(--stroke-thick) solid var(--ink);
  box-shadow: var(--shadow-pop);
  padding: 20px;
  transform: rotate(-1.5deg);
}
.fact-card h3 {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.3rem;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.fact-card ul { margin: 0; padding-left: 22px; font-size: 1.05rem; line-height: 1.5; }

/* Logo wall — drop-in real logos as <img> later */
.logo-wall {
  background: white;
  border: var(--stroke-thick) solid var(--ink);
  box-shadow: var(--shadow-pop);
  padding: 18px 18px 22px;
  transform: rotate(-0.8deg);
}
.lw-head { text-align: center; margin-bottom: 14px; }
.lw-tag {
  display: inline-block;
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  transform: rotate(-2deg);
}
.lw-head h3 {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.3rem;
  margin: 10px 0 0;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--ink);
}
.lw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.lw-cell {
  aspect-ratio: 1.6 / 1;
  display: grid;
  place-items: center;
  background: var(--cream);
  border: 2px solid var(--ink);
  padding: 6px;
  text-align: center;
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: 0.02em;
  overflow: hidden;
}
.lw-cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
  transition: filter .2s ease;
}
.lw-cell:hover img { filter: grayscale(0) contrast(1); }
.lw-cell:hover { background: var(--yellow); }
@media (max-width: 600px) {
  .lw-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tricks */
.tricks {
  background: linear-gradient(180deg, #ffe6b3 0%, var(--paper) 100%);
}
.tricks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 30px;
}
@media (max-width: 1000px) {
  .tricks-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .tricks-grid { grid-template-columns: 1fr; }
}
.trick-card {
  position: relative;
  background: white;
  border: var(--stroke-thick) solid var(--ink);
  box-shadow: var(--shadow-pop);
  padding: 24px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  overflow: hidden;
}
.trick-card:hover {
  transform: translate(-4px, -4px) rotate(-1deg);
  box-shadow: 12px 12px 0 var(--ink);
}
.trick-card:nth-child(1) { background: #fff; }
.trick-card:nth-child(2) { background: #ffe9a8; transform: rotate(1deg); }
.trick-card:nth-child(3) { background: #ffd0d0; transform: rotate(-1deg); }
.trick-card:nth-child(4) { background: #cfe6ff; transform: rotate(1.5deg); }
.trick-card:nth-child(5) { background: #d4ffd0; transform: rotate(-1deg); }
.trick-card:nth-child(6) { background: #ffd6ee; transform: rotate(1deg); }

.trick-num {
  position: absolute;
  top: 12px; right: 14px;
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 4rem;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  opacity: .25;
}
.trick-icon {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  font-size: 2.4rem;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 50%;
  margin-bottom: 14px;
  font-family: 'Bangers', system-ui, sans-serif;
}
.trick-title {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.7rem;
  margin: 0 0 10px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--ink);
}
.trick-desc {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}
.trick-pow {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 130px; height: 130px;
  background: var(--red);
  color: white;
  display: grid; place-items: center;
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.6rem;
  -webkit-text-stroke: 1px var(--ink);
  opacity: 0;
  transform: scale(.6) rotate(0deg);
  transition: opacity .2s ease, transform .25s cubic-bezier(.34,1.56,.64,1);
  clip-path: polygon(
    50% 0%, 61% 16%, 80% 6%, 75% 26%, 96% 28%, 80% 44%,
    100% 56%, 80% 60%, 90% 82%, 68% 74%, 60% 96%, 50% 78%,
    40% 96%, 32% 74%, 10% 82%, 20% 60%, 0% 56%, 20% 44%,
    4% 28%, 25% 26%, 20% 6%, 39% 16%
  );
  pointer-events: none;
}
.trick-card:hover .trick-pow {
  opacity: 1;
  transform: scale(1) rotate(-12deg);
  bottom: -20px; right: -20px;
}

/* Anlässe */
.occasions {
  background:
    radial-gradient(rgba(11,10,8,.20) 1.2px, transparent 1.4px) 0 0 / 14px 14px,
    linear-gradient(180deg, var(--blue) 0%, #4ea6ff 100%);
  color: white;
}
.occasions .section-title { color: white; text-shadow: 5px 5px 0 var(--ink); }
.occasions .section-eyebrow { background: var(--yellow); }
.occasions .section-lede { color: white; }
.occ-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 30px;
}
.occ-chip {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.5rem;
  padding: 12px 22px;
  background: white;
  color: var(--ink);
  border: var(--stroke-thick) solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  transform: rotate(var(--r, -1deg));
  transition: transform .15s;
}
.occ-chip:nth-child(2n) { background: var(--yellow); --r: 1.5deg; }
.occ-chip:nth-child(3n) { background: var(--red); color: white; --r: -2deg; }
.occ-chip:nth-child(5n) { background: var(--lime); --r: 2deg; }
.occ-chip:nth-child(7n) { background: var(--pink); color: white; --r: -1deg; }
.occ-chip:hover {
  transform: rotate(0) scale(1.05);
  box-shadow: 8px 8px 0 var(--ink);
}

/* Stimmen */
.voices {
  background: linear-gradient(135deg, var(--pink) 0%, #ff7a3a 100%);
  position: relative;
  overflow: hidden;
}
.voices::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11,10,8,.18) 1.2px, transparent 1.4px);
  background-size: 14px 14px;
  pointer-events: none;
}
.voices .section-title { color: white; text-shadow: 5px 5px 0 var(--ink); }
.voices .section-eyebrow { background: var(--yellow); }
.voices .section-lede { color: white; font-weight: 600; }

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 28px;
  margin-top: 60px;
}
@media (max-width: 1000px) {
  .voices-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .voices-grid { grid-template-columns: 1fr; }
}
.voice-bubble {
  position: relative;
  background: white;
  border: var(--stroke-thick) solid var(--ink);
  border-radius: 30px;
  padding: 24px 26px;
  box-shadow: 6px 6px 0 var(--ink);
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  line-height: 1.25;
}
.voice-bubble:nth-child(2n) { background: var(--yellow); transform: rotate(2deg); }
.voice-bubble:nth-child(3n) { background: var(--lime); transform: rotate(-1.5deg); }
.voice-bubble::after {
  content: "";
  position: absolute;
  bottom: -22px; left: 32px;
  width: 32px; height: 32px;
  background: inherit;
  border: var(--stroke-thick) solid var(--ink);
  border-top: none; border-left: none;
  transform: rotate(45deg) skew(-10deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.voice-by {
  display: block;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0;
  color: var(--ink);
}

/* Presse-Feature — Zeitungsartikel in der Stimmen-Sektion */
.press-feature {
  position: relative;
  margin-top: 64px;
}
.press-tag {
  display: inline-block;
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: var(--ink);
  border: 3px solid var(--ink);
  padding: 4px 16px;
  border-radius: 999px;
  transform: rotate(-2deg);
  margin-bottom: 18px;
  box-shadow: 4px 4px 0 var(--ink);
}
.press-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  background: white;
  border: var(--stroke-thick) solid var(--ink);
  border-radius: 22px;
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
}
.press-photo {
  display: block;
  position: relative;
  border-right: var(--stroke-thick) solid var(--ink);
  background: var(--ink);
  min-height: 100%;
}
.press-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform .3s ease;
}
.press-photo:hover img { transform: scale(1.04); }
.press-body {
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.press-source {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}
.press-headline {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.press-excerpt {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  opacity: .85;
  margin: 0;
}
.press-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.press-btn {
  display: inline-block;
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  padding: 11px 22px;
  border: 3px solid var(--ink);
  border-radius: 10px;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.press-btn.online { background: var(--blue); color: #fff; }
.press-btn.pdf { background: var(--yellow); color: var(--ink); }
.press-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}
.press-btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}
@media (max-width: 720px) {
  .press-card { grid-template-columns: 1fr; }
  .press-photo {
    border-right: none;
    border-bottom: var(--stroke-thick) solid var(--ink);
  }
  .press-photo img { min-height: 220px; max-height: 300px; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact {
  background:
    radial-gradient(rgba(11,10,8,.18) 1.2px, transparent 1.4px) 0 0 / 14px 14px,
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-aside { position: relative; }
.contact-aside .burst { transform: rotate(-8deg); }
.contact-aside .info {
  margin-top: 36px;
  background: var(--yellow);
  border: var(--stroke-thick) solid var(--ink);
  box-shadow: var(--shadow-pop);
  padding: 24px;
  transform: rotate(-1deg);
}
.contact-aside .info h3 {
  font-family: 'Bowlby One', system-ui, sans-serif;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-size: 1.4rem;
}
.contact-aside .info ul { list-style: none; padding: 0; margin: 0; }
.contact-aside .info li {
  font-family: 'Inter', sans-serif;
  padding: 6px 0;
  border-top: 2px dashed var(--ink);
  font-size: 1rem;
  display: flex; justify-content: space-between; gap: 16px;
}
.contact-aside .info li:first-child { border-top: none; }
.contact-aside .info li strong { font-family: 'Bangers', system-ui, sans-serif; font-size: 1.15rem; letter-spacing: 0.04em; }

.form {
  background: white;
  border: var(--stroke-thick) solid var(--ink);
  box-shadow: var(--shadow-pop-lg);
  padding: 32px;
}
.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.form-progress .step {
  flex: 1;
  height: 14px;
  background: white;
  border: 3px solid var(--ink);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}
.form-progress .step.done { background: var(--red); }
.form-progress .step.current { background: var(--yellow); }

.step-head {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 8px;
  font-family: 'Bangers', system-ui, sans-serif;
}
.step-head .num {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 2.5rem;
  color: var(--red);
  -webkit-text-stroke: 2px var(--ink);
  paint-order: stroke fill;
  line-height: 1;
}
.step-head h3 {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.8rem;
  margin: 0;
  text-transform: uppercase;
}
.step-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  margin: 0 0 24px;
  color: rgba(11,10,8,.7);
}

.field-row {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 16px;
}
.field-row.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.field-row.cols-1 { grid-template-columns: 1fr; }

.field {
  display: flex; flex-direction: column;
}
.field label {
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--ink);
}
.field label .req { color: var(--red); }
.field input,
.field select,
.field textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: 4px;
  outline: none;
  transition: box-shadow .12s, transform .12s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  background: white;
  box-shadow: 4px 4px 0 var(--red);
  transform: translate(-1px, -1px);
}
.field textarea { resize: vertical; min-height: 110px; }
.field .err {
  color: var(--red-deep);
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: .95rem;
  letter-spacing: 0.04em;
  margin-top: 4px;
  min-height: 1.1em;
}

.checks { display: flex; flex-direction: column; gap: 10px; }
.check {
  display: flex; align-items: center; gap: 12px;
  background: var(--cream);
  border: 3px solid var(--ink);
  padding: 12px 14px;
  cursor: pointer;
  user-select: none;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: transform .1s, box-shadow .1s;
}
.check:hover { transform: translate(-2px,-2px); box-shadow: 3px 3px 0 var(--ink); }
.check input { width: 22px; height: 22px; accent-color: var(--red); }
.check.checked { background: var(--yellow); box-shadow: 3px 3px 0 var(--ink); }

.form-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}
.btn-ghost {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.1rem;
  padding: 12px 22px;
  background: white;
  color: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  text-transform: uppercase;
}
.btn-ghost:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }
.btn-ghost:disabled { opacity: .4; cursor: not-allowed; }

.btn-next {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.2rem;
  padding: 14px 28px;
  background: var(--red);
  color: white;
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  text-transform: uppercase;
  -webkit-text-stroke: 1px var(--ink);
}
.btn-next:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

.success {
  text-align: center;
  padding: 30px 10px;
}
.success .burst-wrap {
  display: inline-block;
  margin-bottom: 18px;
}
.success h3 {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--ink);
  margin: 6px 0;
  color: var(--red);
}
.success p { font-size: 1.1rem; max-width: 40ch; margin: 8px auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  border-top: var(--stroke-thick) solid var(--ink);
  padding: 50px 6vw 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.footer-brand {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: var(--yellow);
  -webkit-text-stroke: 1px var(--ink);
  text-transform: uppercase;
}
.footer h4 {
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin: 0 0 8px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li, .footer p { font-family: 'Inter', sans-serif; font-size: .95rem; line-height: 1.6; color: rgba(255,255,255,.85); }
.footer a { color: var(--yellow); text-decoration: none; }
.footer-social {
  margin-top: 36px;
  padding-top: 26px;
  border-top: 2px dashed rgba(255,255,255,.25);
}
.footer-social h4 {
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.3rem;
  color: var(--yellow);
  letter-spacing: 0.04em;
  margin: 0 0 14px;
}
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 3px solid var(--ink);
  color: #fff;
  overflow: hidden;
  box-shadow: 4px 4px 0 rgba(0,0,0,.45);
  transition: transform .12s ease, box-shadow .12s ease;
}
.social-icon:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,.45);
}
.social-icon:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0,0,0,.45);
}
.social-icon.ig {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 70%, #285AEB 100%);
}
.social-icon.wa { background: #25d366; }
.social-icon.gr { background: #4285F4; color: #fff; }
.social-icon.yt { background: #1c1c1c; padding: 0; }
.social-icon.yt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px dashed rgba(255,255,255,.25);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .85rem;
  color: rgba(255,255,255,.55);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero {
    min-height: calc(100svh - 56px);
    height: calc(100svh - 56px);
    display: flex;
    flex-direction: column;
    padding: 10px 5vw 14px;
    gap: 8px;
    text-align: left;
    align-items: stretch;
  }
  .hero-figure {
    position: static;
    transform: none;
    width: 100%;
    pointer-events: auto;
    order: 1;
    flex: 1 1 0;
    min-height: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-figure img {
    height: 100%;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
  .hero-content {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
  }
  .hero-eyebrow { font-size: 0.9rem; margin-bottom: 8px; padding: 4px 10px; }
  .hero-title { font-size: min(7vw, 2.6rem); gap: 4px; margin-bottom: 10px; }
  .hero-title .l { text-shadow: 4px 4px 0 var(--ink), 7px 7px 0 var(--red); -webkit-text-stroke: 2px var(--ink); }
  .hero-title .l2 { text-shadow: 4px 4px 0 var(--ink), 7px 7px 0 var(--blue); }
  .hero-title .l3 { text-shadow: 4px 4px 0 var(--ink), 7px 7px 0 var(--pink); }
  .hero-sub { font-size: 1.35rem; margin: 0 0 12px; gap: 4px 10px; }
  .hero-ctas {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
  }
  .hero-ctas .pop-btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding: 12px 10px;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .starburst.s2 { display: none; }
  /* hero-bubble-top now visible on mobile too */
  .nav-links { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row, .field-row.cols-3 { grid-template-columns: 1fr; }
  .hero-rays { width: 220vmax; height: 220vmax; right: auto; left: 50%; top: 31%; opacity: .32; }
}
@media (max-width: 480px) {
  .hero-title { font-size: min(9vw, 3.1rem); }
  .hero-ctas .pop-btn { font-size: 0.85rem; padding: 10px 6px; }
  .section-title { font-size: min(7.8vw, 2.6rem); }
}

/* ============================================================
   PHONE-ONLY CONTACT
   ============================================================ */
.contact-call {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}
.contact-call .burst {
  font-size: 1.6rem;
  transform: rotate(-8deg);
}
.phone-number {
  display: inline-block;
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: clamp(2.1rem, 7vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--yellow);
  background: var(--ink);
  border: 6px solid var(--ink);
  border-radius: 10px;
  padding: 22px 34px;
  box-shadow: 10px 10px 0 var(--red);
  transform: rotate(-1.5deg);
  transition: transform .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}
.phone-number:hover {
  transform: rotate(-1.5deg) translate(-3px, -3px);
  box-shadow: 14px 14px 0 var(--red);
}
.phone-number:active {
  transform: rotate(-1.5deg) translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--red);
}
.phone-note {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 520px;
  color: var(--ink);
  opacity: .82;
  margin: 0;
}
@media (max-width: 480px) {
  .phone-number { padding: 16px 18px; box-shadow: 7px 7px 0 var(--red); }
}

/* Kontakt — getrennte Kanäle: Anrufen / WhatsApp */
.contact-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
}
.contact-channel {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  background: var(--paper);
  color: var(--ink);
  border: 4px solid var(--ink);
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease;
}
.contact-channel:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.contact-channel:active {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ink);
}
.contact-channel .cc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  flex: none;
}
.contact-channel.call .cc-icon { background: var(--blue); }
.contact-channel.whatsapp .cc-icon { background: #25d366; }
.contact-channel .cc-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.contact-channel .cc-label {
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}
.contact-channel .cc-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: .85rem;
  opacity: .7;
}

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-header {
  padding: 56px 6vw 8px;
  text-align: center;
}
.legal {
  max-width: 840px;
  margin: 24px auto 90px;
  padding: 36px clamp(20px, 5vw, 52px);
  background: #fffdf5;
  border: var(--stroke-thick) solid var(--ink);
  box-shadow: var(--shadow-pop-lg);
}
.legal > :first-child { margin-top: 0; }
.legal h2 {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1.15;
  margin: 38px 0 12px;
  text-transform: uppercase;
  -webkit-text-stroke: 0.6px var(--ink);
}
.legal h3 {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 24px 0 6px;
}
.legal p,
.legal li,
.legal address {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #1c1a16;
}
.legal address { font-style: normal; }
.legal ul { padding-left: 1.25em; margin: 10px 0; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--blue-deep); font-weight: 600; text-decoration: underline; word-break: break-word; }
.legal strong { font-weight: 700; }
.legal .updated { color: #6b665c; font-style: italic; margin-top: 4px; }
.legal .legal-source { color: #6b665c; font-size: 0.9rem; margin-top: 28px; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
}
.legal th,
.legal td {
  border: 2px solid var(--ink);
  padding: 8px 10px;
  text-align: left;
  vertical-align: top;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
}
.legal th { background: var(--paper-2); font-weight: 700; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 6px;
}
.legal-back:hover { color: var(--red-deep); }

/* ============================================================
   NAV: subtle ghost button + actions group
   ============================================================ */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-ghost {
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  background: transparent;
  color: var(--ink);
  border: 3px solid var(--ink);
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all .15s ease;
}
.nav-ghost:hover { background: var(--ink); color: var(--yellow); transform: rotate(-1deg); }
.nav-ghost .g-short { display: none; }

/* ============================================================
   VIDEOS & DOWNLOADS PAGE
   ============================================================ */
.vid-page { max-width: 1000px; margin: 10px auto 90px; padding: 0 5vw; }

/* Download card */
.dl-card {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  background: var(--ink); color: #fff;
  border: var(--stroke-thick) solid var(--ink);
  box-shadow: var(--shadow-pop-lg);
  border-radius: 14px;
  padding: 24px 26px; margin-bottom: 54px;
  transform: rotate(-0.6deg);
}
.dl-icon { font-size: 3rem; line-height: 1; flex-shrink: 0; }
.dl-body { flex: 1 1 280px; }
.dl-tag {
  display: inline-block; font-family: 'Bangers', system-ui, sans-serif; font-size: .9rem;
  letter-spacing: .06em; background: var(--yellow); color: var(--ink);
  border: 3px solid var(--ink); padding: 2px 10px; transform: rotate(-2deg); margin-bottom: 8px;
}
.dl-body h3 { font-family: 'Bowlby One', system-ui, sans-serif; font-size: 1.5rem; margin: 6px 0; -webkit-text-stroke: .5px #000; }
.dl-body p { font-family: 'Inter', sans-serif; margin: 0; line-height: 1.55; color: rgba(255,255,255,.85); }
.dl-btn {
  flex-shrink: 0; font-family: 'Bowlby One', system-ui, sans-serif; font-size: 1rem;
  background: var(--red); color: #fff; border: 4px solid #fff;
  box-shadow: 5px 5px 0 var(--red-deep);
  padding: 14px 20px; border-radius: 10px; text-decoration: none; white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease;
}
.dl-btn:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--red-deep); }

/* Video list */
.vid-section-title {
  font-family: 'Bowlby One', system-ui, sans-serif; font-size: 1.6rem;
  text-transform: uppercase; -webkit-text-stroke: 1px var(--ink); margin: 0 0 22px;
}
.vid-grid { display: flex; flex-direction: column; gap: 22px; }
.vid-card {
  display: grid; grid-template-columns: 300px 1fr; gap: 22px; align-items: center;
  background: #fffdf5; border: var(--stroke) solid var(--ink);
  box-shadow: var(--shadow-pop); border-radius: 12px; padding: 16px;
}
.vid-card:nth-child(even) { transform: rotate(0.4deg); }
.vid-card:nth-child(odd) { transform: rotate(-0.4deg); }
.vid-thumb {
  position: relative; display: block; padding: 0; margin: 0; cursor: pointer;
  border: 3px solid var(--ink); border-radius: 10px; overflow: hidden;
  background: #000; aspect-ratio: 16 / 9; width: 100%;
}
.vid-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(.92); transition: transform .25s ease, filter .25s ease;
}
.vid-thumb:hover img { transform: scale(1.05); filter: saturate(1.1); }
.play-btn {
  position: absolute; inset: 0; margin: auto; width: 70px; height: 70px;
  background: var(--red); border: 4px solid #fff; border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
  transition: transform .18s ease, background .18s ease;
}
.play-btn::after {
  content: ''; position: absolute; top: 50%; left: 54%; transform: translate(-50%,-50%);
  border-style: solid; border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent #fff;
}
.vid-thumb:hover .play-btn { transform: scale(1.12); background: var(--red-deep); }
.vid-info { min-width: 0; }
.vid-title {
  font-family: 'Bowlby One', system-ui, sans-serif; font-size: 1.2rem; margin: 0 0 8px;
  display: flex; align-items: baseline; gap: 10px;
}
.vid-num { font-family: 'Bangers', system-ui, sans-serif; color: var(--red); font-size: 1.3rem; -webkit-text-stroke: .5px var(--ink); }
.vid-desc { font-family: 'Inter', sans-serif; font-size: 1rem; line-height: 1.6; margin: 0; color: #1c1a16; }

/* Video modal */
.vid-modal { position: fixed; inset: 0; z-index: 200; display: none; }
.vid-modal.open { display: block; }
.vid-modal-backdrop { position: absolute; inset: 0; background: rgba(8,8,6,.85); backdrop-filter: blur(3px); }
.vid-modal-box { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: min(92vw, 960px); }
.vid-modal-frame {
  position: relative; aspect-ratio: 16 / 9; background: #000;
  border: 5px solid var(--yellow); border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 0 4px var(--ink), 12px 12px 0 rgba(0,0,0,.4);
}
.vid-modal-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vid-modal-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; background: #000; display: none; }
/* Natives (hochformatiges) Video: Frame an 9:16 anpassen, an Viewport-Höhe ausrichten */
.vid-modal.native .vid-modal-frame iframe { display: none; }
.vid-modal.native .vid-modal-frame video { display: block; }
.vid-modal.native .vid-modal-box { width: auto; max-width: 92vw; }
.vid-modal.native .vid-modal-frame {
  aspect-ratio: 9 / 16; height: 82vh; max-width: 92vw; margin-inline: auto;
}
.vid-modal-title { margin-top: 12px; text-align: center; font-family: 'Bowlby One', system-ui, sans-serif; color: #fff; font-size: 1.1rem; }
.vid-modal-close {
  position: absolute; top: -18px; right: -18px; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: #fff; border: 4px solid #fff;
  font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
  transition: transform .15s ease, background .15s ease;
}
.vid-modal-close:hover { transform: scale(1.1) rotate(90deg); background: var(--red-deep); }

@media (max-width: 900px) {
  /* full label on mobile too, wraps to two lines, same height as the CTA */
  .nav-actions { align-items: stretch; }
  .nav-ghost {
    font-size: .8rem;
    line-height: 1.04;
    padding: 4px 12px;
    border-width: 2px;
    white-space: normal;
    text-align: center;
    max-width: 8.5em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-cta { display: flex; align-items: center; justify-content: center; }
}
@media (max-width: 680px) {
  .vid-card { grid-template-columns: 1fr; gap: 14px; }
  .dl-card { flex-direction: column; text-align: center; gap: 16px; }
  .dl-body { flex: 0 0 auto; }            /* avoid 280px flex-basis acting as height */
  .dl-tag { margin-left: auto; margin-right: auto; }
  .vid-modal-close { top: -14px; right: 4px; }
}
/* Compact nav on phones. Placed last so it wins over the base .nav-cta /
   .nav-brand declarations, which otherwise override the earlier media query
   by source order. Keeps brand + ghost + CTA on one row without clipping. */
@media (max-width: 600px) {
  .nav-brand { font-size: .85rem; line-height: .95; }
  .nav-cta { font-size: .72rem; padding: 7px 11px; border-width: 2px; box-shadow: 2px 2px 0 var(--ink); }
  .nav-ghost { font-size: .72rem; padding: 4px 10px; max-width: 7.5em; }
}

/* ============================================================
   PASSWORT-GATE (Videos & Downloads)  -  Soft-Lock im Comic-Look
   ============================================================ */
body.pw-locked { overflow: hidden; }
.pw-gate {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 40%, var(--yellow) 0%, var(--yellow-deep) 55%, var(--red) 130%);
}
.pw-halftone {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(11,10,8,.18) 1.4px, transparent 1.5px);
  background-size: 16px 16px;
  pointer-events: none;
}
.pw-card {
  position: relative;
  width: min(92vw, 460px);
  text-align: center;
  background: var(--paper);
  border: var(--stroke-thick) solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-pop-lg);
  padding: 34px 28px 30px;
  transform: rotate(-1deg);
}
.pw-emoji {
  font-size: 3.4rem;
  line-height: 1;
  margin-bottom: 6px;
  filter: drop-shadow(3px 3px 0 var(--ink));
}
.pw-tag {
  display: inline-block;
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: .95rem;
  letter-spacing: .06em;
  background: var(--blue);
  color: #fff;
  border: 3px solid var(--ink);
  padding: 2px 12px;
  transform: rotate(-2deg);
  margin-bottom: 12px;
}
.pw-title {
  font-family: 'Bowlby One', system-ui, sans-serif;
  font-size: 1.9rem;
  margin: 0 0 8px;
  color: var(--red);
  -webkit-text-stroke: 1px var(--ink);
  text-shadow: 3px 3px 0 var(--yellow);
}
.pw-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 20px;
  color: var(--ink);
}
.pw-form { display: flex; flex-direction: column; gap: 14px; }
.pw-input {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.15rem;
  text-align: center;
  padding: 13px 16px;
  border: 4px solid var(--ink);
  border-radius: 10px;
  background: #fff;
  box-shadow: inset 2px 2px 0 rgba(11,10,8,.08);
  width: 100%;
}
.pw-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,134,255,.25); }
.pw-btn { justify-content: center; width: 100%; }
.pw-error {
  font-family: 'Bangers', system-ui, sans-serif;
  font-size: 1.15rem;
  letter-spacing: .03em;
  color: var(--red-deep);
  margin: 14px 0 0;
}
.pw-card.pw-shake { animation: pw-shake .42s cubic-bezier(.36,.07,.19,.97); }
@keyframes pw-shake {
  10%, 90% { transform: rotate(-1deg) translateX(-2px); }
  20%, 80% { transform: rotate(-1deg) translateX(4px); }
  30%, 50%, 70% { transform: rotate(-1deg) translateX(-9px); }
  40%, 60% { transform: rotate(-1deg) translateX(9px); }
}
@media (prefers-reduced-motion: reduce) {
  .pw-card.pw-shake { animation: none; }
}
@media (max-width: 480px) {
  .pw-title { font-size: 1.6rem; }
  .pw-emoji { font-size: 3rem; }
}
