/* Ricardo & Friends — Komponenten-Styles (plain CSS, nutzt @theme-Tokens aus tailwind.css).
   Quelle: Claude-Design-Handoff "Ricardo & Friends.dc.html" (Stand Juni 2026, Mitternachtsblau).
   Keine Inline-Styles in den Seiten — alles über Klassen/Tokens.
   Dunkle Flächen = Nachtblau (night-700/800/900), Orange = Marke/Akzent. */

/* ── Komponenten-Tokens (Composite — ergänzen die @theme-Primitives) ──────── */
:root {
  /* Primär-Gradient (Orange). Basis = brand-600/700/800-Tokens; Hover = zwei tiefere
     Orange-Stufen (kein Primitive) + brand-900. Eine Quelle für .btn-primary + .band-gradient. */
  --grad-primary:       linear-gradient(180deg, var(--color-brand-600), var(--color-brand-700) 58%, var(--color-brand-800));
  --grad-primary-hover: linear-gradient(180deg, #f28500, #dd7400 58%, var(--color-brand-900));
  /* WhatsApp-Markengrün (nur für den Floating-Kontakt-Button — Wiedererkennung). */
  --color-whatsapp:      #25d366;
  --color-whatsapp-dark: #1da851;
  /* Auf Kundenwunsch durchgehend das Marken-Orange #ff8c00 — KEIN abgedunkeltes „Ink"-Orange.
     Hinweis: Orange-Text auf hellen Flächen erreicht damit nicht 4.5:1 (WCAG) — bewusste Marken-Entscheidung. */
  --color-brand-ink:      var(--color-brand-700);
}

/* ── Basis ──────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--color-sand-50);
  color: var(--color-ink-600);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}
h1, h2, h3, blockquote { font-family: var(--font-serif); font-weight: 600; }
h1, h2, h3 { letter-spacing: -0.01em; }
img { max-width: 100%; }
::selection { background: var(--color-brand-700); color: var(--color-night-700); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-brand-ink); outline-offset: 2px; border-radius: 6px;
}
button:active { transform: translateY(1px); }

/* Skip-Link (a11y) */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--color-brand-700); color: var(--color-night-700);
  padding: 12px 20px; border-radius: 10px; font-weight: 700; font-size: 15px; text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; }

/* ── Layout-Helfer ──────────────────────────────────────────────────────── */
.container    { max-width: 1180px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.container-lg { max-width: 1280px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.container-md { max-width: 1040px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.container-sm { max-width: 980px;  margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.container-xs { max-width: 880px;  margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.container-legal { max-width: 780px; margin: 0 auto; padding-left: 40px; padding-right: 40px; }

.section { padding-top: 108px; padding-bottom: 108px; }
.section.section--compact { padding-top: 64px; padding-bottom: 64px; }
.section-tint { background: var(--color-sand-200); }
.section-tint--flush { border-top: 0; border-bottom: 0; }
.section-warm { background: var(--color-sand-100); }
.section-dark { background: var(--color-night-700); color: var(--color-sand-50); }
.section-intro { padding-top: 100px; padding-bottom: 100px; }
.section-intro .lead { max-width: 720px; }
.section-tight { padding-top: 70px; padding-bottom: 70px; }
.section-legal { padding-top: 100px; padding-bottom: 100px; }
.section-cta { padding-top: 0; padding-bottom: 108px; }
/* CTA-Band braucht einen NEUTRALEN oberen Puffer, wenn es direkt auf eine farbige
   Sektion folgt. .section-cta hat bewusst padding-top:0 und lebt vom neutralen
   Bodenabstand des Vorgängers — bei farbigem Vorgänger (tint/warm/dark) fehlt der,
   sonst klebt das Band an der Farbkante (Bug sponsoren.html, 2026-07-10). */
.section-tint + .section-cta,
.section-warm + .section-cta,
.section-dark + .section-cta { padding-top: 108px; }
.anchor-offset { scroll-margin-top: 90px; }

.kicker { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-brand-ink); font-weight: 700; margin-bottom: 14px; }
.kicker-gold { color: var(--color-brand-400); }
.kicker--gap { margin-bottom: 30px; }

.split { display: flex; flex-wrap: wrap; gap: 76px; align-items: center; }
.split > .col { flex: 1 1 360px; min-width: 300px; }
.split--64 { gap: 64px; }
.split--80 { gap: 80px; }
.split--top { align-items: flex-start; }
.col--320 { flex: 1 1 320px; min-width: 280px; }
.col--380 { flex: 1 1 380px; min-width: 300px; }
.col--400 { flex: 1 1 400px; min-width: 300px; }
.col--440 { flex: 1 1 440px; min-width: 300px; }
.order-1 { order: 1; }
.order-2 { order: 2; }

.lead { font-size: 18px; line-height: 1.6; color: var(--color-ink-600); margin: 0 0 18px; }
.lead:last-child { margin-bottom: 0; }
.lead--last { margin-bottom: 0; }
.lead--before-cards { margin-bottom: 32px; }
.lead--17 { font-size: 17px; line-height: 1.7; }
.lead--intro { font-size: 16px; margin-bottom: 36px; }

h1.display { font-size: clamp(36px, 5.4vw, 64px); line-height: 1.02; letter-spacing: -0.025em; color: var(--color-night-700); font-weight: 800; margin: 0 0 24px; }
h1.display--wofuer { font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -0.02em; }
h2.title { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -0.015em; color: var(--color-night-700); font-weight: 800; margin: 0 0 22px; }
h2.title--lg { font-size: clamp(30px, 3.8vw, 44px); }
h2.title--grid { margin-bottom: 40px; }
h2.title--tight { margin-bottom: 16px; }
h2.title--flush { margin-bottom: 0; }
h3.sub { font-size: 21px; color: var(--color-night-700); font-weight: 800; margin: 0 0 10px; }
.section-head { margin-bottom: 38px; }
.section-head--between { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.actions-row { margin-top: 30px; }
.max-560 { max-width: 560px; } .max-620 { max-width: 620px; } .max-680 { max-width: 680px; }
.max-720 { max-width: 720px; } .max-760 { max-width: 760px; }
/* Mikro-Typografie: ausgewogene Überschriften, keine Hurenkinder im Fließtext */
h1, h2, h3, .title, .display { text-wrap: balance; }
p, .lead { text-wrap: pretty; }

.media { border-radius: 12px; overflow: hidden; box-shadow: 0 26px 50px -30px rgba(0,11,26,0.45); }
.media img { display: block; width: 100%; }
/* Einheitliche Bildformate: Querformat 3:2, Hochformat 2:3 */
.media--land { aspect-ratio: 3 / 2; }
.media--port { aspect-ratio: 2 / 3; }
.media--land > img, .media--port > img { height: 100%; object-fit: cover; }
.media--18 { border-radius: 12px; }
.media--soft { box-shadow: 0 30px 60px -30px rgba(0,0,0,0.55); }
/* Bild mit Unterschrift */
.media-figure { margin: 0; }
.media-cap { margin-top: 12px; font-size: 14px; line-height: 1.5; color: var(--color-ink-600); text-align: center; }
.media-cap a { color: var(--color-brand-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.media-cap a:hover { color: var(--color-brand-800); }

/* Kennzeichnung KI-generierter Bilddarstellungen nach dem EU-Icon-System. */
.ai-media { position: relative; }
.ai-disclosure {
  position: absolute;
  z-index: 6;
  right: 8px;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 6px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(0, 11, 26, 0.7);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: #fff;
  box-shadow: 0 5px 14px -9px rgba(0, 0, 0, 0.82);
  font-size: 9.5px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  pointer-events: none;
}
.ai-disclosure .ai-disclosure-icon {
  display: block;
  width: 14px;
  height: 14px;
  min-width: 14px;
  flex: none;
}
.ai-disclosure--hero {
  top: auto;
  right: clamp(8px, 1.2vw, 16px);
  bottom: clamp(8px, 1.2vw, 16px);
}
.ai-disclosure--compact {
  right: 7px;
  bottom: 7px;
  gap: 3px;
  padding: 2px 5px;
  font-size: 8.75px;
}
.ai-disclosure--compact .ai-disclosure-icon {
  width: 13px;
  height: 13px;
  min-width: 13px;
}
@media (max-width: 600px) {
  .ai-disclosure--hero { right: calc(100% - 100vw + 8px); }
}
/* "Worum geht es" — Intro voll oben, darunter Text | Bild */
/* position+z-index wie .hero (Zeile 201ff.): hebt die Sektion (inkl. offenem Termin-Dropdown)
   über die nachfolgende .marquee-band-Sektion — sonst bildet .reveal (will-change:transform)
   auf beiden Sektionen einen eigenen Stacking-Kontext und die spätere Sektion gewinnt per
   DOM-Reihenfolge, das Dropdown läge hinter der Freundeswand statt darüber. */
.worum { position: relative; z-index: 1; }
.worum-intro { max-width: 780px; margin-bottom: 48px; }
.worum-title { margin-bottom: 18px; }
.worum-lead { font-size: 20px; line-height: 1.55; font-weight: 500; color: var(--color-ink-600); margin: 0; max-width: 680px; }
.worum-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.worum-text .lead:last-of-type { margin-bottom: 0; }
.worum-figure { margin: 0; }
@media (max-width: 900px) {
  .worum-intro { margin-bottom: 30px; }
  .worum-grid { grid-template-columns: 1fr; gap: 34px; }
}
/* gezielte Crops aus dem Design */
.media--euro img   { transform: scale(1.05); transform-origin: 50% 0%; object-position: center top; }

/* ── Header / Navigation ────────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(243,243,240,0.85); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-sand-400); transition: background .3s ease, box-shadow .3s ease; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 18px; padding-bottom: 18px; transition: padding .3s cubic-bezier(.16,1,.3,1); }
.brand-logo { display: flex; align-items: center; }
.brand-logo img { height: 66px; width: auto; display: block; transition: height .3s cubic-bezier(.16,1,.3,1); }
/* Kompakter Zustand: gesetzt von main.js sobald man vom Seitenanfang wegscrollt */
.site-header.is-scrolled { background: rgba(243,243,240,0.94); box-shadow: 0 6px 20px -12px rgba(0,11,26,0.35); }
.site-header.is-scrolled .header-inner { padding-top: 9px; padding-bottom: 9px; }
.site-header.is-scrolled .brand-logo img { height: 46px; }
/* Erst-Frame ohne Animation: verhindert die sichtbare Schrumpf-/Aufblas-Animation
   des Headers beim Neuladen mit bereits gescrollter Position (main.js setzt is-scrolled
   sofort). Wird von main.js nach dem ersten Paint wieder entfernt. */
.site-header.header-no-anim,
.site-header.header-no-anim .header-inner,
.site-header.header-no-anim .brand-logo img { transition: none; }
.nav-desktop { display: flex; align-items: center; gap: 22px; }
.nav-desktop .btn { white-space: nowrap; }
@media (min-width: 901px) and (max-width: 1040px) { .site-header .nav-desktop { display: none; } .site-header .nav-toggle { display: inline-flex; } }
.nav-link { position: relative; color: var(--color-ink-900); font-weight: 600; font-size: 15px; text-decoration: none; white-space: nowrap; transition: color .18s ease; padding-top: 13px; padding-bottom: 13px; }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: 6px; width: 100%; height: 2px; background: var(--color-brand-ink); transform: scaleX(0); transform-origin: left center; transition: transform .24s cubic-bezier(.16,1,.3,1); border-radius: 2px; pointer-events: none; }
.nav-link:hover { color: var(--color-brand-ink); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--color-brand-ink); font-weight: 700; }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; border: 1px solid var(--color-sand-500); background: #fff; border-radius: 12px; cursor: pointer; }
.nav-toggle .bars { display: block; width: 20px; height: 2px; background: var(--color-ink-900); box-shadow: 0 6px 0 var(--color-ink-900), 0 -6px 0 var(--color-ink-900); }
.nav-mobile { display: none; border-top: 1px solid var(--color-sand-400); background: var(--color-sand-100); padding: 10px 24px 22px; flex-direction: column; gap: 4px; }
.nav-mobile.is-open { display: flex; }
.nav-mobile a { padding: 13px 6px; color: var(--color-ink-900); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--color-sand-300); }
.nav-mobile a[aria-current="page"] { color: var(--color-brand-ink); font-weight: 800; }
.nav-mobile .btn { margin-top: 12px; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn { display: inline-block; text-align: center; border: none; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 16px; padding: 16px 30px; border-radius: 999px; text-decoration: none; transition: background .2s ease, transform .2s ease, box-shadow .25s ease, color .18s ease, border-color .18s ease; }
.btn-sm { font-size: 15px; padding: 13px 26px; }
.btn-lg { font-size: 17px; padding: 17px 36px; }
.btn:disabled, .btn[disabled], .btn[aria-busy="true"] { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; filter: saturate(0.7); }
.btn-primary { background: var(--grad-primary); color: var(--color-night-700); box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 6px 16px -6px rgba(194,104,0,0.5), 0 2px 5px -1px rgba(194,104,0,0.36); }
.btn-primary:hover { background: var(--grad-primary-hover); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 12px 26px -8px rgba(194,104,0,0.55), 0 3px 8px -2px rgba(194,104,0,0.4); }
.btn-outline { background: transparent; color: var(--color-brand-ink); border: 2px solid var(--color-brand-ink); }
.btn-outline:hover { background: var(--color-brand-700); color: var(--color-night-700); border-color: var(--color-brand-700); transform: translateY(-2px); box-shadow: 0 10px 22px -10px rgba(255,140,0,0.5); }
.btn-on-brand { background: linear-gradient(180deg, #ffffff, var(--color-sand-50)); color: var(--color-brand-ink); box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 5px 14px -5px rgba(0,0,0,0.28); }
.btn-on-brand:hover { transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 11px 24px -8px rgba(0,0,0,0.34); }
.btn-outline-light { background: transparent; color: var(--color-night-700); border: 2px solid rgba(0,23,51,0.5); }
.btn-outline-light:hover { background: rgba(0,23,51,0.1); border-color: var(--color-night-700); }
.btn-outline-gold { background: transparent; color: #fff; border: 2px solid rgba(255,140,0,0.5); }
.btn-outline-gold:hover { background: var(--color-brand-400); color: var(--color-night-700); border-color: var(--color-brand-400); transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(255,140,0,0.5); }
/* Hero-Sekundär-CTA: transparent mit weißem Rand + weißer Schrift, gleiche Pill-Form/Größe wie .btn-primary. padding-block 14px statt 16px gleicht die 2px-Border oben+unten aus, damit die Höhe exakt zu .btn-primary passt. Hover invertiert zu weiß gefüllt. */
.btn-hero-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7); padding-block: 14px; box-shadow: none; }
.btn-hero-ghost:hover { background: #fff; color: var(--color-night-700); border-color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(0,0,0,0.4); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row--wide { gap: 14px 22px; }
.btn-row--center { justify-content: center; }
.btn-block { display: block; width: 100%; }
/* Text-/Pfeil-Button (Pfeil wandert nach rechts) */
.btn-arrow { display: inline-flex; align-items: center; min-height: 44px; gap: 8px; background: transparent; border: none; padding: 8px 4px; font-weight: 700; font-size: 16px; cursor: pointer; font-family: inherit; color: var(--color-brand-ink); text-decoration: none; transition: gap .2s ease, color .2s ease; }
.btn-arrow .arr { font-size: 18px; line-height: 1; transition: transform .22s cubic-bezier(.16,1,.3,1); }
.btn-arrow-light { color: #fff; }
@media (hover: hover) { .btn-arrow:not(.btn-arrow-light):hover { gap: 12px; color: var(--color-brand-800); } .btn-arrow-light:hover { gap: 12px; color: var(--color-brand-400); } .btn-arrow:hover .arr { transform: translateX(2px); } }
.btn-download { display: inline-flex; align-items: center; gap: 10px; }

/* ── Hero ───────────────────────────────────────────────────────────────── */
/* z-index:1 hebt den Hero (inkl. offenem Kalender-Dropdown) über die nachfolgenden
   .reveal-Sektionen (die via will-change:transform eigene Stacking-Kontexte bilden);
   overflow bleibt sichtbar, damit das Dropdown nicht an der Hero-Unterkante abgeschnitten wird.
   Der Clip für den skalierten Hintergrund sitzt nur noch auf .hero-home. */
.hero { position: relative; background: var(--color-night-900); display: flex; align-items: center; z-index: 1; }
.hero-home { min-height: calc(100svh - 104px); overflow: hidden; }
.hero-page { min-height: clamp(520px, 78vh, 720px); }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-bg-home { object-position: 88% 45%; opacity: 0.88; transform: scale(1.24); transform-origin: center; }
@media (prefers-reduced-motion: reduce) { .hero-bg-home { transform: scale(1.05); } }
.hero-bg-page { object-position: center 40%; opacity: 0.5; }
.hero-overlay { position: absolute; inset: 0; }
.hero-overlay-home { background: linear-gradient(90deg, rgba(0,11,26,0.96) 0%, rgba(0,11,26,0.86) 30%, rgba(0,11,26,0.4) 62%, rgba(0,11,26,0) 84%); }
.hero-overlay-page { background: linear-gradient(100deg, rgba(0,11,26,0.9) 0%, rgba(0,11,26,0.68) 40%, rgba(0,11,26,0.32) 72%, rgba(0,11,26,0.12) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1180px; margin: 0 auto; padding-block: clamp(20px, 4.5vh, 72px); padding-inline: clamp(22px, 5vw, 40px); }
.hero-eyebrow { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-brand-400); font-weight: 700; margin-bottom: 20px; }
.hero h1 { color: #fff; font-weight: 800; margin: 0 0 24px; }
.hero-h1-home { font-size: clamp(40px, 5.6vw, 68px); line-height: 0.98; letter-spacing: -0.02em; }
.hero-h1-home .amp { color: var(--color-brand-400); }
.hero-h1-page { font-size: clamp(34px, 5vw, 60px); line-height: 1.06; letter-spacing: -0.02em; }
.hero-lead { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.4; color: #fff; font-weight: 600; margin: 0 0 18px; max-width: 560px; }
.hero-lead .hl, .hero-text .hl { color: var(--color-brand-400); font-weight: 700; }
.hero-text { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.4; color: #fff; margin: 0 0 34px; max-width: 560px; }
.hero-text-page { color: var(--color-sand-50); max-width: 680px; line-height: 1.45; font-size: clamp(19px, 2.2vw, 24px); margin: 0 0 14px; }
.hero-text-muted { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.45; color: #fff; margin: 0 0 16px; max-width: 680px; }
.hero-text-strong { font-size: clamp(19px, 2.2vw, 24px); line-height: 1.45; color: var(--color-brand-400); font-weight: 600; margin: 0 0 30px; max-width: 680px; }

/* Hero-Lichter — dezente „lebende Arena": weiche Scheinwerfer-Glows, screen-Blend, motion-safe.
   z-index: über Bild/Overlay (z auto/1), unter Text (.hero-inner z 2). Rechts/Mitte platziert,
   damit die linke Textspalte klar bleibt. */
.hero-lights { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-light { position: absolute; border-radius: 50%; filter: blur(34px); mix-blend-mode: screen; opacity: 0.4; will-change: opacity, transform; }
.hero-light--1 { width: 46%; height: 64%; left: 28%; top: -22%; background: radial-gradient(closest-side, rgba(255,140,0,0.9), rgba(255,140,0,0)); }
.hero-light--2 { width: 44%; height: 62%; right: 4%; top: -18%; background: radial-gradient(closest-side, rgba(80,150,255,0.92), rgba(80,150,255,0)); }
.hero-light--3 { width: 34%; height: 52%; left: 50%; top: -16%; background: radial-gradient(closest-side, rgba(255,240,215,0.6), rgba(255,240,215,0)); }
.hero-light--4 { width: 40%; height: 58%; right: -8%; top: 4%; background: radial-gradient(closest-side, rgba(60,130,255,0.82), rgba(60,130,255,0)); }
/* Default: Bewegung an (Auftraggeber-Wunsch). Für prefers-reduced-motion unten geguarded (A11y). */
.hero-light--1 { animation: heroBeam1 10s ease-in-out infinite; }
.hero-light--2 { animation: heroBeam2 13s ease-in-out infinite; }
.hero-light--3 { animation: heroBeam3 8s  ease-in-out infinite 1s; }
.hero-light--4 { animation: heroBeam4 12s ease-in-out infinite 2.5s; }
@media (prefers-reduced-motion: reduce) { .hero-light--1, .hero-light--2, .hero-light--3, .hero-light--4 { animation: none; } }
@keyframes heroBeam1 { 0%,100% { opacity: .4;  transform: translate(-10%,-2%); } 50% { opacity: .92; transform: translate(9%,6%); } }
@keyframes heroBeam2 { 0%,100% { opacity: .85; transform: translate(7%,0);     } 50% { opacity: .38; transform: translate(-8%,5%); } }
@keyframes heroBeam3 { 0%,100% { opacity: .28; transform: translate(0,-4%);    } 50% { opacity: .72; transform: translate(4%,6%); } }
@keyframes heroBeam4 { 0%,100% { opacity: .74; transform: translate(9%,-2%);   } 50% { opacity: .3;  transform: translate(-2%,7%); } }

/* Datum-Block / Kalender-Trigger (Hero) */
.hero-date-row { position: relative; z-index: 40; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 0 0 30px; }
.cal { position: relative; display: inline-flex; align-items: center; }
.cal-trigger { position: relative; display: inline-flex; align-items: center; gap: 14px; cursor: pointer; padding: 8px 14px; margin: -8px -14px; border-radius: 14px; border: none; background: transparent; font-family: inherit; text-align: left; transition: background .18s ease; }
.cal-trigger.is-open { z-index: 50; }
@media (hover: hover) { .cal-trigger:hover { background: rgba(255,255,255,0.06); } }
.cal-chip { width: 48px; height: 48px; border-radius: 12px; background: var(--color-brand-700); color: var(--color-night-700); display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; flex: none; box-shadow: 0 8px 20px -8px rgba(194,104,0,0.6); }
.cal-chip .d { font-size: 19px; font-weight: 800; }
.cal-chip .m { font-size: 10px; font-weight: 600; margin-top: 2px; }
.cal-when { font-weight: 800; color: #fff; font-size: 16px; }
.cal-where { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--color-ink-300); }
.cal-chev { font-size: 10px; color: var(--color-brand-400); display: inline-block; line-height: 1; opacity: 0.45; transition: opacity .2s ease, transform .2s ease; }
.cal-trigger:hover .cal-chev { opacity: 0.9; }
.cal-trigger.is-open .cal-chev { opacity: 0.9; transform: rotate(180deg); }
.cal-tip { position: absolute; left: 12px; top: -34px; background: #fff; color: var(--color-ink-900); font-size: 12px; font-weight: 700; padding: 6px 11px; border-radius: 8px; white-space: nowrap; box-shadow: 0 10px 24px -10px rgba(0,0,0,0.55); opacity: 0; transform: translateY(5px); transition: opacity .2s ease, transform .2s ease; pointer-events: none; }
.cal-trigger:hover .cal-tip, .cal-trigger.is-open .cal-tip { opacity: 1; transform: translateY(0); }
.cal-menu { position: absolute; top: calc(100% + 8px); left: 0; z-index: 20; min-width: 208px; background: rgba(0,11,26,0.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 7px; box-shadow: 0 24px 50px -18px rgba(0,0,0,0.7); }
.cal-menu[hidden] { display: none; }
.cal-menu .head { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-ink-400); font-weight: 700; padding: 8px 12px 6px; }
.cal-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px; color: var(--color-sand-50); font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; transition: background .15s; }
.cal-menu a.sub { color: var(--color-ink-300); font-size: 13px; }
@media (hover: hover) { .cal-menu a:hover { background: rgba(255,255,255,0.08); } }

/* Termin-Panel (Worum-geht-es-Sektion) — dezente, kompakte Kalender-Karte, zieht sich auf Inhaltsbreite */
.date-panel { position: relative; display: inline-block; margin-top: 26px; max-width: 100%; background: transparent; border: 0; border-radius: 0; padding: 0; box-shadow: none; }
.date-panel-eyebrow { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--color-brand-ink); font-weight: 700; margin-bottom: 9px; }
.date-panel-text { display: flex; flex-direction: column; gap: 1px; }
.date-panel-cta { display: inline-flex; align-items: center; gap: 6px; margin-left: 14px; padding: 7px 12px; border-radius: 10px; background: var(--grad-primary); color: var(--color-night-700); font-weight: 800; font-size: 12.5px; white-space: nowrap; box-shadow: 0 6px 14px -7px rgba(194,104,0,0.6); transition: transform .18s ease, box-shadow .18s ease; }
.date-panel-cta .cal-chev { color: var(--color-night-700); opacity: 0.7; }
.cal-trigger:hover .date-panel-cta { transform: translateY(-1px); box-shadow: 0 9px 18px -8px rgba(194,104,0,0.65); }
/* Termin steht jetzt frei auf hellem Hintergrund (kein dunkler Kasten) — Textfarben angepasst */
.date-panel .cal-when { color: var(--color-night-700); }
.date-panel .cal-where { color: var(--color-ink-600); }

/* Kompakte Kalender-Variante */
.cal--lg { position: relative; display: block; }
.cal--lg .cal-trigger { gap: 13px; margin: 0; padding: 2px; border-radius: 10px; flex-wrap: wrap; }
.cal--lg .cal-trigger:hover { background: transparent; }
.cal-static { cursor: default; }
.cal--lg .cal-chip { width: 44px; height: 44px; border-radius: 12px; }
.cal--lg .cal-chip .d { font-size: 18px; }
.cal--lg .cal-chip .m { font-size: 9.5px; margin-top: 2px; }
.cal--lg .cal-when { font-size: 15px; }
.cal--lg .cal-where { font-size: 13px; }
.cal--lg .cal-menu { min-width: 220px; }
/* Smartphone: Datum (Chip + Text) links = halbe Breite, „Termin speichern" rechts =
   die andere Hälfte, Button füllt seine Hälfte voll aus. Nebeneinander statt umbrechend. */
@media (max-width: 600px) {
  .cal--lg .cal-trigger { flex-wrap: nowrap; align-items: center; gap: 10px; width: 100%; }
  .cal--lg .cal-trigger > .cal-chip { flex: none; }
  .cal--lg .cal-trigger > .date-panel-text { flex: 1 1 auto; min-width: 0; }
  .cal--lg .date-panel-cta { flex: 0 0 50%; margin-left: 0; justify-content: center; padding-top: 11px; padding-bottom: 11px; }
}

/* „Der Erlös geht an" (Hero + Ticket-Aufruf) */
.give-to { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 26px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.16); max-width: 540px; }
.give-to .lbl { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-ink-300); font-weight: 700; flex: none; }
.give-logos { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.give-logo { background: #fff; border-radius: 12px; padding: 8px 12px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 24px -14px rgba(0,0,0,0.7); transition: transform .2s ease, box-shadow .25s ease; }
.give-logo img { height: 28px; width: auto; display: block; }
@media (hover: hover) { .give-logo:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(0,0,0,0.85); } }
.give-to--center { justify-content: center; max-width: none; }
.give-to--center .give-logos { justify-content: center; }



/* ── Vertrauen & Freunde (kompakt) ──────────────────────────────────────────
   Zweite Home-Sektion: echte Gesichter führen, die Zahl liegt still im Satz.
   Alle Lineup-Künstler:innen im Markup; main.js (initArtistOrbs) mischt bei
   jedem Laden, :nth-child(n+7) zeigt 6. Fotos direkt farbig; --top setzt den
   Ausschnitt auf den Kopf, --zoom zoomt zusätzlich hinein (Ganzkörper-/
   Gruppenfotos, in denen das Gesicht sonst zu klein wäre); ohne Foto ein
   ruhiger Initialen-Kreis. */
.friends-strip { background: var(--color-sand-100); border-top: 1px solid var(--color-sand-400); border-bottom: 1px solid var(--color-sand-400); }
.friends-inner { max-width: 1180px; margin: 0 auto; padding: clamp(38px, 4.5vw, 54px) 40px; text-align: center; }

.friends-faces { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px clamp(20px, 2.4vw, 34px); margin: 0 0 26px; }
/* Feste Spaltenbreite → Avatar-Abstände bleiben gleich, egal wie lang der Name ist
   (lange Namen brechen um statt die Spalte zu verbreitern). */
.friend { display: flex; flex-direction: column; align-items: center; width: clamp(92px, 9.5vw, 112px); margin: 0; }
a.friend { text-decoration: none; color: inherit; }
.friend:nth-child(n+7) { display: none; }
.friend-ava {
  width: clamp(78px, 9vw, 104px); aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  position: relative; display: flex; align-items: center; justify-content: center;
  background: var(--color-night-900);
  box-shadow: 0 0 0 3px var(--color-sand-100), 0 0 0 4px var(--color-sand-400), 0 10px 20px -12px rgba(0,11,26,0.6);
  transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease;
}
.friend-ava img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* Avatar-Bilder sind vorgeschitten (kuenstler-<name>-ava, quadratisch, Gesicht auf
   ~38 % Höhe) — keine per-Artist object-position/transform-Hacks mehr nötig. Die
   alten --marinello/--revilla/--masconi/--codystone/--stroebel-Modifier sind bewusst
   entfernt: das Seitenmarkup referenziert sie noch, aber sie sind jetzt No-Ops. */
.friend-nm { margin-top: 12px; font-size: 13px; line-height: 1.25; font-weight: 600; color: var(--color-ink-600); letter-spacing: 0.005em; }
@media (hover: hover) {
  .friend:hover .friend-ava { transform: translateY(-4px); box-shadow: 0 0 0 3px var(--color-sand-100), 0 0 0 4px var(--color-brand-400), 0 16px 28px -14px rgba(0,11,26,0.7); }
  .friend:hover .friend-nm { color: var(--color-night-700); }
}
/* Smartphone: 8 Künstler:innen statt 6, fest 4 pro Reihe (2 Reihen). Nur hier —
   Desktop/Tablet bleiben beim zentrierten Flex-Lauf mit 6. Grid überschreibt die
   feste Spaltenbreite; Avatare kleiner, damit 4 nebeneinander sicher passen. */
@media (max-width: 600px) {
  .friends-inner { padding-left: 18px; padding-right: 18px; }
  .friends-faces { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px 8px; margin: 0 0 24px; }
  .friend { width: auto; min-width: 0; }
  .friend:nth-child(-n+8) { display: flex; }
  .friend:nth-child(n+9) { display: none; }
  .friend-ava { width: 100%; max-width: 68px; }
  .friend-nm { margin-top: 8px; font-size: 11px; }
}

.friends-h { font-family: var(--font-serif); font-weight: 600; font-size: clamp(23px, 2.7vw, 34px); line-height: 1.1; letter-spacing: -0.01em; color: var(--color-night-700); margin: 0 0 8px; }
.friends-result { margin: 0; font-size: clamp(18px, 2.1vw, 24px); line-height: 1.45; color: var(--color-ink-600); }
.friends-result .amount { font-family: var(--font-serif); font-weight: 700; color: var(--color-brand-700); font-size: 1.35em; }
.friends-more { margin-top: 18px; }

@media (max-width: 720px) {
  .friends-inner { padding-left: 22px; padding-right: 22px; }
}

/* ── Cards / Wege ───────────────────────────────────────────────────────── */
.card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 16px 36px -28px rgba(0,11,26,0.4); }
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 34px; }
.way-card { display: block; text-decoration: none; color: inherit; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.way-card:hover { transform: translateY(-4px); box-shadow: 0 26px 44px -26px rgba(0,11,26,0.45); }
.way-card img { width: 100%; height: 190px; object-fit: cover; display: block; }
.way-slideshow { position: relative; height: 190px; overflow: hidden; }
.way-slideshow .way-slide { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 1.2s ease; }
.way-slideshow .way-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.way-slideshow .way-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .way-slideshow .way-slide { transition: none; } }

/* ── Engel-Diashow (Über Ricardo „Stadt der Engel", 2 Motive, Random-Start) ── */
.angels-slideshow { position: relative; }
.angels-slideshow .angels-slide { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 1.4s ease; }
.angels-slideshow .angels-slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.angels-slideshow .angels-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .angels-slideshow .angels-slide { transition: none; } }

.way-card .body { padding: 30px; }
.way-card h3 { margin: 0 0 10px; font-size: 21px; color: var(--color-night-700); font-weight: 800; }
.way-card p { margin: 0 0 16px; font-size: 15px; line-height: 1.6; color: var(--color-ink-600); }
.way-card .more { color: var(--color-brand-ink); font-weight: 700; font-size: 15px; }

/* ── Freundeswand (Marquee) ─────────────────────────────────────────────── */
.marquee-band { background: var(--color-night-800); overflow: hidden; }
.marq-head { max-width: 1180px; margin: 0 auto; padding: 84px 40px 18px; text-align: center; }
.marq-head h2 { font-size: clamp(28px, 3.8vw, 46px); line-height: 1.08; letter-spacing: -0.015em; color: #fff; font-weight: 800; margin: 0 auto 16px; max-width: 760px; }
.marq-head p { font-size: 18px; line-height: 1.6; color: #fff; margin: 0 auto; max-width: 620px; }
.marq-wrap { position: relative; overflow: hidden; }
.marq-wrap--top { padding: 30px 0 14px; }
.marq-wrap--bot { padding: 0 0 6px; }
.marq { display: flex; gap: 14px; width: max-content; will-change: transform; }
@keyframes marqL { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
@keyframes marqR { from { transform: translate3d(-50%,0,0); } to { transform: translate3d(0,0,0); } }
.marq-1 { animation: marqL 180s linear infinite; }
.marq-2 { animation: marqR 200s linear infinite; }
.marq-wrap:hover .marq { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marq-1, .marq-2 { animation: none; } }
.marq-fade { position: absolute; top: 0; bottom: 0; width: 90px; z-index: 3; pointer-events: none; }
.marq-fade-l { left: 0; background: linear-gradient(90deg, var(--color-night-800), rgba(0,11,26,0)); }
.marq-fade-r { right: 0; background: linear-gradient(270deg, var(--color-night-800), rgba(0,11,26,0)); }
.marq-cta { max-width: 1180px; margin: 0 auto; padding: 30px 40px 84px; display: flex; align-items: center; justify-content: center; }
.face { flex: none; width: 128px; height: 128px; border-radius: 12px; overflow: hidden; border: none; padding: 0; margin: 0; cursor: pointer; display: block; background: var(--color-night-900); box-shadow: 0 12px 26px -16px rgba(0,0,0,0.85); transition: transform .28s cubic-bezier(.16,1,.3,1), box-shadow .28s ease; position: relative; }
.face::after { content: ""; position: absolute; inset: 0; border-radius: 12px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.07); pointer-events: none; }
.face img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (hover: hover) { .face:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -18px rgba(0,0,0,0.9); } }
@media (max-width: 680px) { .face { width: 104px; height: 104px; border-radius: 10px; } }

/* ── Gesichter-Seite (Masonry + Lightbox) ───────────────────────────────── */
.faces-band { background: var(--color-night-800); }
.faces-head { max-width: 1280px; margin: 0 auto; padding: 100px 40px 30px; }
.faces-head h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -0.02em; color: #fff; font-weight: 800; margin: 0 0 18px; max-width: 820px; }
.faces-head p { font-size: 18px; line-height: 1.6; color: var(--color-ink-300); margin: 0; max-width: 640px; }
.faces-wrap { max-width: 1280px; margin: 0 auto; padding: 30px 40px 100px; }
.faces-grid { column-count: 5; column-gap: 14px; }
@media (max-width: 1100px) { .faces-grid { column-count: 4; } }
@media (max-width: 820px)  { .faces-grid { column-count: 3; } }
@media (max-width: 560px)  { .faces-grid { column-count: 2; } }
.gface { display: block; width: 100%; padding: 0; border: none; background: transparent; cursor: pointer; margin-bottom: 14px; break-inside: avoid; border-radius: 10px; overflow: hidden; box-shadow: 0 14px 30px -20px rgba(0,0,0,0.8); transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s ease; }
.gface img { width: 100%; display: block; border-radius: 10px; transition: transform .5s cubic-bezier(.16,1,.3,1); }
@media (hover: hover) { .gface:hover { transform: translateY(-4px); box-shadow: 0 24px 46px -20px rgba(0,0,0,0.92); } .gface:hover img { transform: scale(1.07); } }
.faces-note { text-align: center; color: var(--color-ink-400); font-size: 14px; line-height: 1.7; margin: 34px auto 0; max-width: 560px; }
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(0,11,26,0.94); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 6vh 4vw; animation: lbFade .25s ease both; }
.lightbox[hidden] { display: none; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }
.lb-img { max-width: min(880px, 92vw); max-height: 88vh; width: auto; height: auto; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.85); display: block; animation: lbPop .35s cubic-bezier(.16,1,.3,1) both; }
@keyframes lbPop { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.lb-btn { position: absolute; z-index: 2; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #fff; line-height: 1; cursor: pointer; transition: background .18s ease, color .18s ease; }
.lb-close { top: 22px; right: 24px; width: 48px; height: 48px; font-size: 24px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 26px; }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 26px; }
/* Vertikal zentrierte Pfeile: globalen button:active-Versatz NICHT die Zentrierung kippen lassen
   (sonst springt der Pfeil beim Klick um die halbe Höhe nach unten). */
.lb-prev:active, .lb-next:active { transform: translateY(-50%); }
@media (hover: hover) { .lb-btn:hover { background: #fff; color: var(--color-ink-900); } }

/* ── Story-Video ────────────────────────────────────────────────────────── */
.story-band { background: var(--color-sand-100); overflow: hidden; }
.story-grid { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; }
.story-phone-wrap { flex: 0 0 auto; width: 248px; max-width: 60vw; }
.story-phone { position: relative; border-radius: 36px; overflow: hidden; border: 9px solid #0a0e14; box-shadow: 0 36px 70px -28px rgba(0,0,0,0.7); aspect-ratio: 9 / 19.5; background: var(--color-night-900); }
.story-phone::after { content: ""; position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 84px; height: 25px; border-radius: 14px; background: #000; z-index: 4; pointer-events: none; }
.story-phone img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-phone video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }
.story-phone-video { position: absolute; inset: 0; }
.story-phone-fullscreen-button { position: absolute; z-index: 5; top: 48px; right: 12px; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.36); border-radius: 50%; background: rgba(0,11,26,.72); color: #fff; font-size: 20px; line-height: 1; cursor: pointer; }
@media (hover: hover) { .story-phone-fullscreen-button:hover { background: var(--color-brand-700); color: var(--color-night-700); } }
.story-band.story-expanded { transform: none !important; will-change: auto !important; overflow: visible; }
.story-band .story-phone.is-expanded { position: fixed; z-index: 10000; top: 50%; left: 50%; width: min(440px, 92vw, 43vh); max-width: none; transform: translate(-50%, -50%); box-shadow: 0 0 0 100vmax rgba(0,11,26,.96), 0 32px 90px -18px rgba(0,0,0,.95); }
.story-phone.is-expanded .story-phone-fullscreen-button { position: fixed; top: 20px; right: 20px; width: 46px; height: 46px; background: var(--color-sand-50); border-color: var(--color-sand-400); color: var(--color-night-700); font-size: 28px; }
html.story-video-expanded { overflow: hidden; }
.story-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 64px; height: 64px; border-radius: 50%; background: var(--grad-primary); color: var(--color-night-700); display: flex; align-items: center; justify-content: center; font-size: 23px; padding-left: 4px; box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 12px 26px -8px rgba(194,104,0,0.6); pointer-events: none; }
.story-col { flex: 1 1 380px; min-width: 300px; max-width: 560px; }
.story-col h2 { margin: 0 0 18px; max-width: 560px; }
.story-col .lead { max-width: 540px; }
.story-fine { font-size: 14px; line-height: 1.7; color: var(--color-ink-500); margin: 0 0 28px; max-width: 540px; }

/* Teilen-Block */
.share-block { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--color-sand-400); }
.share-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-brand-ink); font-weight: 700; margin-bottom: 12px; }
.share-row { display: flex; flex-wrap: wrap; gap: 10px; }
.share-btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--color-ink-900); border: 2px solid var(--color-sand-500); padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; cursor: pointer; font-family: inherit; text-decoration: none; transition: color .18s, border-color .18s, transform .18s; }
@media (hover: hover) { .share-btn:hover { border-color: var(--color-brand-ink); color: var(--color-brand-ink); transform: translateY(-2px); } }
.share-ok { margin-top: 10px; font-size: 13px; color: var(--color-ok-strong); font-weight: 700; }
.status-ok { font-size: 14px; color: var(--color-ok-strong); font-weight: 700; }

/* Story-Band – dunkle Variante (Home: „Jeder kann helfen / Teile den Abend") */
.story-band--dark { background: var(--color-night-800); border-top-color: rgba(255,255,255,0.08); border-bottom-color: rgba(255,255,255,0.08); }
.story-band--dark .story-phone { box-shadow: 0 30px 60px -26px rgba(0,0,0,0.7), 0 0 60px -4px rgba(110,175,255,0.55), 0 0 22px -2px rgba(110,175,255,0.55); }
.story-band--dark .story-grid { gap: 80px; }
.story-band--dark .kicker { color: var(--color-brand-400); }
.story-band--dark .title { color: #fff; }
.story-band--dark .lead { color: var(--color-sand-50); }
.story-band--dark .story-fine { color: var(--color-ink-300); }
.story-band--dark .story-fine em { color: var(--color-ink-400); }
.story-band--dark .share-block { border-top-color: rgba(255,255,255,0.16); }
.story-band--dark .share-label { color: var(--color-brand-400); }
.story-band--dark .share-btn { background: rgba(255,255,255,0.06); color: var(--color-sand-50); border-color: rgba(255,255,255,0.22); }
.story-band--dark .status-ok, .story-band--dark .share-ok { color: var(--color-ok-border); }
.story-band--dark .story-download-secondary { color: var(--color-brand-400); border-color: var(--color-brand-400); }
@media (hover: hover) { .story-band--dark .share-btn:hover { border-color: var(--color-brand-400); color: var(--color-brand-400); } }

/* ── FAQ-Akkordeon ──────────────────────────────────────────────────────── */
.faq-head { text-align: center; margin-bottom: 42px; }
.faq-head h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1; letter-spacing: -0.015em; color: var(--color-night-700); font-weight: 800; margin: 0 auto; max-width: 620px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid transparent; border-radius: 18px; box-shadow: 0 8px 22px -18px rgba(0,11,26,0.5); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-q-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 22px 26px; background: transparent; border: none; cursor: pointer; text-align: left; font-family: inherit; }
.faq-q { font-family: var(--font-serif); font-size: clamp(17px, 1.7vw, 20px); font-weight: 700; color: var(--color-night-700); line-height: 1.3; transition: color .18s ease; }
.faq-chev { flex: none; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 28px; line-height: 1; font-weight: 300; color: var(--color-brand-ink); transition: transform .28s cubic-bezier(.16,1,.3,1); }
.faq-a { box-sizing: border-box; max-height: 0; overflow: hidden; opacity: 0; padding: 0 26px; transition: max-height .42s cubic-bezier(.16,1,.3,1), opacity .3s ease; }
.faq-a::after { content: ""; display: block; height: 26px; }
.faq-a[hidden] { display: none; }
.faq-a p { margin: 0; font-size: 16px; line-height: 1.68; color: var(--color-ink-600); max-width: 700px; }
.faq-a > .btn { margin-top: 18px; }
.faq-item.is-open { box-shadow: 0 18px 34px -22px rgba(0,11,26,0.55); }
.faq-item.is-open .faq-chev { transform: rotate(45deg); }
@media (hover: hover) { .faq-item:hover .faq-q { color: var(--color-brand-ink); } }
.faq-item.is-open .faq-a { opacity: 1; max-height: 1200px; }
.faq-foot { text-align: center; margin-top: 38px; }
.faq-foot p { font-size: 16px; line-height: 1.6; color: var(--color-ink-500); margin: 0 0 18px; }

/* ── Quote ──────────────────────────────────────────────────────────────── */
.quote { font-family: var(--font-serif); font-style: italic; line-height: 1.3; color: #fff; margin: 0; border-left: 3px solid var(--color-brand-700); padding-left: 24px; }
.quote .who { display: block; font-family: var(--font-sans); font-style: normal; font-size: 15px; color: var(--color-brand-400); font-weight: 600; margin-top: 16px; }
.quote-md { font-size: clamp(20px, 2.4vw, 27px); line-height: 1.4; }
.quote-lg { font-size: clamp(26px, 3.4vw, 38px); }
.quote-xl { font-size: clamp(28px, 4vw, 46px); line-height: 1.25; }
.quote-center { text-align: center; border-left: none; padding-left: 0; max-width: 880px; margin: 56px auto 0; color: var(--color-night-700); }
.quote-center .who { color: var(--color-brand-ink); font-weight: 700; letter-spacing: 0.06em; }
.quote-rule { border-top: 1px solid rgba(255,140,0,0.35); border-bottom: 1px solid rgba(255,140,0,0.35); padding: 32px 0; color: #fff; text-align: center; max-width: 880px; margin: 48px auto 0; font-size: clamp(22px, 2.8vw, 32px); line-height: 1.35; border-left: none; padding-left: 0; }
.closing-note { margin: 28px auto 0; max-width: 680px; text-align: center; color: var(--color-ink-300); font-size: 17px; line-height: 1.7; }

/* Hinweis-Box (Ticket = Spende) */
.note { display: flex; gap: 14px; align-items: flex-start; border-radius: 18px; padding: 18px 20px; }
.note--gap { margin-bottom: 30px; }
.note-dark { background: rgba(255,140,0,0.12); border: 1px solid rgba(255,140,0,0.4); }
.note-dark p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--color-sand-50); }
.note-dark strong { color: #fff; }
.note .badge { flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; background: var(--color-brand-700); color: var(--color-night-700); display: flex; align-items: center; justify-content: center; font-size: 17px; }

/* Tags */
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.tag { background: var(--color-sand-200); border: 1px solid var(--color-sand-300); color: var(--color-ink-600); font-weight: 600; font-size: 14px; padding: 8px 16px; border-radius: 999px; }

/* ── Slideshow (Der Abend, dunkler Split) ──────────────────────────────── */
.slideshow { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6); aspect-ratio: 4/3; background: var(--color-night-900); }
.slideshow .slide { position: absolute; inset: 0; width: 100%; height: 100%; display: block; opacity: 0; transition: opacity 1.4s ease; }
.slideshow .slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slideshow .slide.is-active { opacity: 1; }
.slideshow .slide-base { opacity: 1; }
.slideshow .dots { position: absolute; left: 0; right: 0; bottom: 12px; display: flex; gap: 2px; justify-content: center; z-index: 2; }
.slideshow .dot { width: 44px; height: 44px; border: none; padding: 0; background: transparent; border-radius: 50%; cursor: pointer; flex: none; }
.slideshow .dot::before { content: ""; display: block; width: 10px; height: 10px; margin: 17px auto; border-radius: 50%; background: rgba(255,255,255,0.5); transition: background .3s, transform .3s; }
.slideshow .dot.is-active::before { background: #fff; transform: scale(1.1); }

/* ── Aus der Presse ────────────────────────────────────────────────────── */
.press-head { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.press-head .lead { margin-left: auto; margin-right: auto; }
.press-card { max-width: 1100px; margin: 0 auto; overflow: hidden; border-radius: 16px; background: #fff; box-shadow: 0 24px 54px -32px rgba(0,11,26,0.5); }
.press-image-link { position: relative; display: block; overflow: hidden; background: #fff; text-decoration: none; }
.press-image-link img { display: block; width: 100%; height: auto; transition: transform .5s cubic-bezier(.16,1,.3,1), filter .3s ease; }
.press-zoom { position: absolute; right: 18px; bottom: 18px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; background: rgba(0,11,26,.84); color: #fff; font-size: 21px; line-height: 1; box-shadow: 0 12px 28px -12px rgba(0,0,0,.8); transition: background .2s ease, transform .2s ease; }
.press-caption { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 22px 24px; color: var(--color-ink-600); font-size: 15px; line-height: 1.55; }
.press-caption .btn { flex: none; }
@media (hover: hover) {
  .press-image-link:hover img { transform: scale(1.015); filter: contrast(1.03); }
  .press-image-link:hover .press-zoom { background: var(--color-brand-700); transform: translateY(-2px); }
}
@media (max-width: 600px) {
  .press-head { margin-bottom: 28px; text-align: left; }
  .press-caption { align-items: stretch; flex-direction: column; padding: 18px; }
  .press-caption .btn { width: 100%; justify-content: center; }
  .press-zoom { right: 10px; bottom: 10px; width: 42px; height: 42px; }
}

/* ── Künstler / Sponsoren (horizontale Karten) ─────────────────────────── */
.hcard-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 460px), 1fr)); gap: 32px; }
.hcard-list--sponsors { gap: 28px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 440px), 1fr)); }
.hcard { display: flex; background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 18px 40px -28px rgba(0,11,26,0.45); min-height: 280px; }
.hcard .photo { flex: none; width: 200px; align-self: stretch; background: repeating-linear-gradient(45deg, var(--color-sand-100), var(--color-sand-100) 11px, var(--color-sand-300) 11px, var(--color-sand-300) 22px); }
.hcard .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hcard .photo--top img { object-position: center top; }
.hcard .body { flex: 1 1 auto; padding: 30px 30px 28px; display: flex; flex-direction: column; }
.hcard .name { font-family: var(--font-serif); font-size: 24px; font-weight: 800; color: var(--color-night-700); line-height: 1.12; }
.hcard .role { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-brand-ink); font-weight: 700; margin-top: 8px; }
.hcard .bio { font-size: 15px; line-height: 1.65; color: var(--color-ink-600); margin: 16px 0 22px; }
.hcard .foot { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
/* Sponsor-Variante: Logo-Fläche statt Foto */
.hcard--logo .logo-area { flex: none; width: 172px; align-self: stretch; display: flex; align-items: center; justify-content: center; padding: 22px; border-right: 1px solid var(--color-sand-300); }
.hcard--logo .logo-area img { width: 100%; height: 84px; object-fit: contain; object-position: center; }
.hcard--logo .wordmark { font-family: var(--font-serif); font-size: 32px; font-weight: 700; color: var(--color-night-700); letter-spacing: -0.01em; text-align: center; }
.hcard--logo .logo-ph { width: 100%; height: 100%; min-height: 120px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: repeating-linear-gradient(45deg, var(--color-sand-100), var(--color-sand-100) 11px, var(--color-sand-200) 11px, var(--color-sand-200) 22px); }
.hcard--logo .logo-ph span { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 12px; letter-spacing: 0.14em; color: var(--color-ink-500); }
.hcard--logo .body { padding: 26px 28px 24px; }
.hcard--logo .name { font-family: var(--font-sans); font-size: 19px; }
.hcard--logo .role { font-size: 13px; letter-spacing: 0.08em; margin-top: 6px; }
.hcard--logo .bio { font-size: 14.5px; line-height: 1.62; margin: 14px 0 18px; }
.web-link { display: inline-flex; align-items: center; gap: 8px; color: var(--color-brand-ink); font-weight: 700; font-size: 15px; text-decoration: none; }
.web-link:hover { color: var(--color-brand-800); }
.web-pending { font-size: 14px; color: var(--color-ink-500); font-style: italic; }
/* Icon-Buttons für Social-Links auf hellen Karten (Künstler:innen, Sponsor:innen) */
.icon-row { display: flex; align-items: center; gap: 10px; }
.icon-link { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: var(--color-sand-100); border: 1px solid var(--color-sand-300); color: var(--color-brand-ink); transition: background .18s, color .18s, border-color .18s, transform .18s; }
.icon-link:hover { background: var(--color-brand-700); color: #fff; border-color: var(--color-brand-700); transform: translateY(-2px); }
.artist-note { font-size: 16px; line-height: 1.7; color: var(--color-ink-600); margin: 30px 0 0; max-width: 720px; }
.sponsor-note { font-size: 15px; line-height: 1.7; color: var(--color-ink-500); margin: 30px 0 0; max-width: 720px; }
@media (max-width: 600px) {
  .hcard { flex-direction: column; }
  .hcard .photo { width: 100%; height: 260px; align-self: auto; }
  /* Mobile Quer-Crop: Hochformat-Porträts (600×800) in 260px-hohen Fotos → Gesicht
     sitzt oben, also object-position: center top erzwingen, sonst schneidet cover das
     Gesicht weg. Gilt für ALLE Künstler-hcards (auch jene ohne photo--top-Modifier). */
  .hcard .photo img { object-position: center top; }
  .hcard .photo--fury img { object-position: center 58%; }
  .hcard--logo .logo-area { width: 100%; align-self: auto; border-right: none; border-bottom: 1px solid var(--color-sand-300); }
}

/* ── Persönliche Videobotschaften ──────────────────────────────────────── */
.voices-section { overflow: hidden; }
.voices-head { max-width: 760px; margin: 0 auto 44px; text-align: center; }
.voices-head .lead { margin-left: auto; margin-right: auto; }
.voices-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 50px); max-width: 920px; margin: 0 auto; }
.voice-card { display: grid; grid-template-columns: minmax(150px, 210px) minmax(0, 1fr); overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(255,255,255,.07); box-shadow: 0 28px 60px -36px rgba(0,0,0,.95); }
.voice-video-frame { position: relative; aspect-ratio: 9 / 16; min-height: 100%; overflow: hidden; background: #000; }
.voice-video-frame video { display: block; width: 100%; height: 100%; object-fit: contain; background: #000; }
.voice-body { align-self: center; padding: 26px 24px; }
.voice-label { margin-bottom: 10px; color: var(--color-brand-400); font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.voice-body h3 { margin: 0; color: #fff; font-family: var(--font-serif); font-size: clamp(22px, 2.2vw, 28px); line-height: 1.1; }
.voice-role { margin: 8px 0 15px; color: var(--color-brand-300); font-size: 13px; font-weight: 700; line-height: 1.45; }
.voice-body > p:last-child { margin: 0; color: var(--color-ink-300); font-size: 14px; line-height: 1.65; }
@media (max-width: 900px) {
  .voices-grid { max-width: 720px; }
  .voice-card { grid-template-columns: 1fr; }
  .voice-video-frame { width: min(100%, 320px); min-height: 0; margin: 0 auto; }
  .voice-body { text-align: center; }
}
@media (max-width: 640px) {
  .voices-head { margin-bottom: 30px; text-align: left; }
  .voices-grid { grid-template-columns: 1fr; max-width: 360px; }
  .voice-card { background: rgba(255,255,255,.08); }
  .voice-video-frame { width: 100%; }
  .voice-body { padding: 22px 20px 24px; }
}

/* ── Sponsor:innen-Karten (Foto + Logo + Überschrift + Text + Link) ────── */
.sponsor-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr)); gap: 28px; align-items: stretch; }
.sponsor-card { display: flex; flex-direction: column; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 18px 40px -28px rgba(0,11,26,0.45); }
.sponsor-card .sp-photo { display: block; width: 100%; flex: none; aspect-ratio: 3 / 2; overflow: hidden; background: repeating-linear-gradient(45deg, var(--color-sand-100), var(--color-sand-100) 11px, var(--color-sand-300) 11px, var(--color-sand-300) 22px); }
.sponsor-card .sp-photo picture { display: block; width: 100%; height: 100%; }
.sponsor-card .sp-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sponsor-card .sp-photo--richter img { object-position: 50% 0%; }
.sponsor-card .sp-photo--ph { display: flex; align-items: center; justify-content: center; }
.sponsor-card .sp-photo--ph span { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-ink-500); }
.sponsor-card .sp-body { flex: 1 1 auto; padding: 22px 26px 24px; display: flex; flex-direction: column; }
.sponsor-card .sp-logo { height: 96px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--color-sand-200); display: flex; align-items: center; }
.sponsor-card .sp-logo img { max-height: 80px; max-width: 220px; width: auto; object-fit: contain; object-position: left center; }
.sponsor-card .sp-logo--wertvoll { text-decoration: none; }
.wertvoll-mark { position: relative; display: block; width: min(240px, 100%); aspect-ratio: 640 / 213; color: #cc9700; line-height: 1; overflow: visible; }
.wertvoll-mark-image { position: absolute; inset: 0 auto auto 0; display: block; width: 92% !important; max-width: none !important; height: auto !important; max-height: none !important; object-fit: contain !important; }
.wertvoll-mark-mask { position: absolute; z-index: 1; left: 0; top: 79%; width: 92%; height: 14%; background: #fff; }
.wertvoll-mark-registered { position: absolute; z-index: 2; right: 0; bottom: 14%; font-family: Arial, Helvetica, sans-serif; font-size: clamp(12px, 1.25vw, 17px); font-weight: 700; }
.sponsor-card .name { font-family: var(--font-sans); font-size: 19px; font-weight: 800; color: var(--color-night-700); line-height: 1.16; }
.sponsor-card .role { font-size: 12.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-brand-ink); font-weight: 700; margin-top: 6px; }
.sponsor-card .bio { font-size: 14.5px; line-height: 1.62; color: var(--color-ink-600); margin: 13px 0 18px; }
.sponsor-card .foot { margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px 18px; }

/* ── Logo-Kacheln (Sponsoren-Teaser Home) ──────────────────────────────── */
.logo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.logo-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 900px) { .logo-grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .logo-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.logo-more { margin: 22px 0 0; text-align: center; }
.logo-tile { background: #fff; border-radius: 18px; height: 104px; display: flex; align-items: center; justify-content: center; padding: 18px; text-align: center; box-shadow: 0 8px 22px -16px rgba(0,11,26,0.5); border: 1px solid transparent; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.logo-tile img { width: 100%; height: 60px; object-fit: contain; object-position: center; }
.logo-tile .wertvoll-mark { width: min(210px, 100%); }
@media (hover: hover) { .logo-tile:hover { transform: translateY(-3px); box-shadow: 0 18px 32px -18px rgba(0,11,26,0.55); } }
.wm-serif { font-family: var(--font-serif); font-size: 25px; font-weight: 700; color: var(--color-night-700); letter-spacing: -0.01em; }
.wm-serif-italic { font-family: var(--font-serif); font-style: italic; font-size: 20px; font-weight: 700; color: var(--color-night-700); line-height: 1.15; }
.wm-sans { font-family: var(--font-sans); font-size: 22px; font-weight: 800; color: var(--color-night-700); letter-spacing: -0.02em; }
.wm-mixed { font-family: var(--font-sans); font-size: 19px; font-weight: 700; color: var(--color-night-700); line-height: 1.15; }
.wm-upper { font-family: var(--font-sans); font-size: 15px; font-weight: 700; color: var(--color-night-700); letter-spacing: 0.14em; text-transform: uppercase; }
.wm-accent { color: var(--color-brand-ink); }
.wm-pending { font-family: var(--font-sans); font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-ink-400); }

/* ── Unterstützer / „Dein Logo hier?" ───────────────────────────────────── */
.supporter-cta { background: var(--color-sand-100); border: 2px dashed var(--color-sand-500); border-radius: 18px; cursor: pointer; text-decoration: none; transition: border-color .18s, background .18s; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 200px; padding: 28px; text-align: center; }
.supporter-cta:hover { background: var(--color-brand-50); }
.supporter-cta .plus { width: 46px; height: 46px; border-radius: 50%; background: var(--color-brand-700); color: var(--color-night-700); display: flex; align-items: center; justify-content: center; font-size: 26px; line-height: 1; margin-bottom: 14px; }
.supporter-cta .t { font-weight: 800; color: var(--color-night-700); font-size: 18px; }
.supporter-cta .d { font-size: 14px; color: var(--color-ink-500); margin-top: 6px; max-width: 240px; line-height: 1.5; }

/* ── CTA-Bänder ─────────────────────────────────────────────────────────── */
.band { border-radius: 24px; padding: clamp(38px, 4vw, 66px); display: flex; flex-wrap: wrap; gap: 30px; align-items: center; justify-content: space-between; }
.band-brand { background: var(--color-brand-700); color: var(--color-night-700); }
.band-gradient { background: var(--grad-primary); color: var(--color-night-700); box-shadow: 0 24px 50px -28px rgba(194,104,0,0.55); }
.band-brand .kicker, .band-gradient .kicker { color: var(--color-night-700); }
.band-brand h2, .band-gradient h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.06; letter-spacing: -0.02em; color: var(--color-night-700); font-weight: 800; margin: 0 0 16px; }
.band-brand p, .band-gradient p { font-size: 17px; line-height: 1.7; color: var(--color-night-700); margin: 0 0 14px; max-width: 560px; }
.band-brand p:last-child, .band-gradient p:last-child { margin-bottom: 0; }
.band-brand p.strong, .band-gradient p.strong { color: var(--color-night-700); font-weight: 600; font-size: 16px; }
.band-brand p.fine, .band-gradient p.fine { font-size: 15px; color: var(--color-night-700); }
.band-col { flex: 1 1 360px; min-width: 280px; }
.band-actions { flex: 0 1 260px; min-width: 240px; display: flex; flex-direction: column; gap: 12px; }
.band-center { text-align: center; flex-direction: column; }
.band-center h2 { margin-left: auto; margin-right: auto; max-width: 640px; }
.band-center p { margin-left: auto; margin-right: auto; max-width: 600px; }
.band-center .btn-row { justify-content: center; }

/* Ticket-Aufruf mit Bild (dunkle Feature-Sektion) */
.feature-dark { position: relative; background: var(--color-night-800); overflow: hidden; }
.feature-dark .bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; opacity: 0.4; }
.feature-dark .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,11,26,0.74) 0%, rgba(0,11,26,0.9) 100%); }
.feature-dark .inner { position: relative; max-width: 760px; margin: 0 auto; padding: 108px 40px; text-align: center; }
.feature-dark h2 { font-size: clamp(32px, 4.6vw, 54px); line-height: 1.06; letter-spacing: -0.015em; color: #fff; font-weight: 800; margin: 0 auto 22px; max-width: 640px; }
.feature-dark .lead { font-size: clamp(18px, 2vw, 21px); line-height: 1.6; color: var(--color-ink-300); margin: 0 auto 36px; max-width: 560px; }

/* Ticket-Aufruf – helle Variante (Home, letzte Sektion vor dem Footer) */
.ticket-cta .ticket-cta-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.ticket-cta .ticket-cta-media { border-radius: 12px; overflow: hidden; margin: 0 auto 34px; max-width: 720px; box-shadow: 0 30px 60px -34px rgba(0,11,26,0.55); }
.ticket-cta .ticket-cta-media img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 7; object-fit: cover; object-position: center 45%; }
.ticket-cta .ai-disclosure .ai-disclosure-icon { width: 14px; height: 14px; min-width: 14px; }
.ticket-cta h2 { margin-left: auto; margin-right: auto; max-width: 640px; }
.ticket-cta .lead { margin-left: auto; margin-right: auto; max-width: 580px; }
.give-to--light { border-top-color: var(--color-sand-500); margin-left: auto; margin-right: auto; }
.give-to--light .lbl { color: var(--color-ink-500); }
.give-to--light .give-logo { border: 1px solid var(--color-sand-400); box-shadow: 0 10px 24px -16px rgba(0,11,26,0.35); }

/* ── Spendenkonto (dunkel, Wofür) ──────────────────────────────────────── */
.account-dark { background: var(--color-night-700); border-radius: 20px; padding: 38px; color: var(--color-sand-50); }
.account-dark .label { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-brand-400); font-weight: 700; margin-bottom: 20px; }
.account-dark .item { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.account-dark .item:last-of-type { border-bottom: none; }
.account-dark .item .k { font-size: 13px; color: var(--color-ink-300); margin-bottom: 4px; }
.account-dark .item .v { font-size: 17px; font-weight: 700; color: #fff; }
.account-dark .item .v.iban { font-size: 19px; font-variant-numeric: tabular-nums; letter-spacing: 0.01em; }
.account-dark .acct-link { margin-top: 14px; display: block; text-align: center; background: var(--color-brand-700); color: var(--color-night-700); padding: 15px; border-radius: 999px; font-weight: 700; font-size: 15px; text-decoration: none; transition: background .18s; }
.account-dark .acct-link:hover { background: var(--color-brand-800); }

/* ── Kontaktformular ────────────────────────────────────────────────────── */
.section-form { padding-top: 34px; padding-bottom: 104px; }
.contact-grid { display: flex; flex-wrap: wrap; gap: 56px; align-items: flex-start; }
.contact-main { flex: 1 1 380px; min-width: 300px; }
.contact-side { flex: 1 1 260px; min-width: 260px; }
.rf-form { background: #fff; border-radius: 18px; padding: clamp(22px, 3vw, 34px); box-shadow: 0 16px 36px -28px rgba(0,11,26,0.4); }
.rf-form .intro { margin: 0 0 24px; font-size: 15px; line-height: 1.6; color: var(--color-ink-500); }
.field { display: block; margin-bottom: 18px; }
.field > .flabel { display: block; font-size: 14px; font-weight: 700; color: var(--color-ink-900); margin-bottom: 8px; }
.field input, .field textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--color-sand-500); border-radius: 12px; font-size: 16px; font-family: inherit; color: var(--color-ink-900); background: var(--color-sand-50); outline: none; transition: border-color .16s, box-shadow .16s; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--color-brand-ink); box-shadow: 0 0 0 3px rgba(255,140,0,0.22); }
.field-error { display: block; color: var(--color-err); font-size: 13px; margin-top: 6px; }
.consent-note { margin: 4px 0 22px; font-size: 14px; line-height: 1.6; color: var(--color-ink-500); }
.legal-link { color: var(--color-brand-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-success { background: var(--color-ok-bg); border: 1px solid var(--color-ok-border); border-radius: 18px; padding: 36px 30px; text-align: center; }
.form-success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--color-ok-strong); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 18px; }
.form-success h2 { margin: 0 0 10px; font-size: 22px; color: var(--color-ok-text); font-weight: 800; }
.form-success p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--color-ok-text); }
.contact-aside { background: var(--color-sand-200); border: 1px solid var(--color-sand-300); border-radius: 18px; padding: 36px; }
.contact-aside h2 { margin: 0 0 10px; font-size: 21px; color: var(--color-night-700); font-weight: 800; }
.contact-aside p { margin: 0 0 22px; font-size: 15px; line-height: 1.65; color: var(--color-ink-600); }
.contact-aside .fineprint { margin: 22px 0 0; font-size: 14px; line-height: 1.6; color: var(--color-ink-500); }
.contact-direct { display: flex; flex-direction: column; gap: 14px; }
.contact-direct a { text-decoration: none; background: #fff; border: 1px solid transparent; border-radius: 18px; padding: 15px 16px; display: block; box-shadow: 0 16px 36px -28px rgba(0,11,26,0.4); transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease; }
.contact-direct a:hover { transform: translateY(-2px); box-shadow: 0 22px 40px -24px rgba(0,11,26,0.5); }
.contact-direct .k { display: block; font-size: 12px; color: var(--color-ink-500); margin-bottom: 3px; }
.contact-direct .v { display: block; font-size: 15px; font-weight: 700; color: var(--color-brand-ink); word-break: break-all; }

/* ── Rechtliches (Impressum/Datenschutz) ────────────────────────────────── */
.h1-legal { font-size: clamp(32px, 4.4vw, 48px); line-height: 1.05; letter-spacing: -0.02em; color: var(--color-night-700); font-weight: 800; margin: 0 0 14px; }
.legal-blocks { display: flex; flex-direction: column; gap: 30px; }
.legal-blocks h2 { font-size: 18px; color: var(--color-night-700); font-weight: 800; margin: 0 0 8px; }
.legal-blocks p { font-size: 16px; line-height: 1.7; color: var(--color-ink-600); margin: 0; }
.legal-meta { font-size: 15px; color: var(--color-ink-500); }

/* ── 404 ────────────────────────────────────────────────────────────────── */
.err-404 { text-align: center; max-width: 680px; margin: 0 auto; padding: 120px 24px; }
.err-404 .code { font-family: var(--font-serif); font-size: clamp(80px, 16vw, 150px); line-height: 1; color: var(--color-brand-ink); font-weight: 700; }
.err-404 h1 { font-size: clamp(26px, 3.6vw, 38px); line-height: 1.1; letter-spacing: -0.015em; color: var(--color-night-700); font-weight: 800; margin: 18px 0; }
.err-404 p { font-size: 18px; line-height: 1.7; color: var(--color-ink-600); margin: 0 auto 32px; max-width: 480px; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.site-footer { background: var(--color-night-700); color: var(--color-sand-100); }
.footer-top { display: flex; flex-wrap: wrap; gap: 40px; padding-top: 72px; padding-bottom: 40px; }
.footer-brand { flex: 1 1 280px; min-width: 260px; }
.footer-brand .logo-box { display: inline-block; background: var(--color-sand-100); border-radius: 12px; padding: 6px 9px; }
.footer-brand .logo-box img { height: 62px; width: auto; display: block; }
.footer-brand .blurb { margin: 20px 0 0; font-size: 15px; line-height: 1.7; color: var(--color-ink-300); max-width: 320px; }
.footer-col { flex: 1 1 160px; min-width: 150px; }
.footer-col.wide { flex: 1 1 200px; min-width: 180px; }
.footer-col .head { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-brand-400); font-weight: 700; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-link { position: relative; color: var(--color-sand-100); font-size: 15px; text-decoration: none; transition: color .18s ease; width: fit-content; }
.footer-link::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 1.5px; background: var(--color-brand-400); transform: scaleX(0); transform-origin: left center; transition: transform .24s cubic-bezier(.16,1,.3,1); border-radius: 2px; }
.footer-link:hover { color: #fff; }
.footer-link:hover::after { transform: scaleX(1); }
/* Social */
.footer-social { margin-top: 24px; }
.social-row { display: flex; gap: 10px; }
.social-link { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; color: var(--color-sand-100); transition: color .18s, border-color .18s, background .18s, transform .18s; }
@media (hover: hover) { .social-link:hover { background: #fff; color: var(--color-ink-900); border-color: #fff; transform: translateY(-2px); } }
/* Tickets-Spalte */
.footer-tickets p { margin: 0 0 16px; font-size: 14px; line-height: 1.7; color: var(--color-ink-300); }
.footer-ticket-btn { display: inline-block; background: var(--grad-primary); color: var(--color-night-700); padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: 14px; text-decoration: none; box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 6px 16px -6px rgba(194,104,0,0.5); transition: background .2s ease, transform .2s ease, box-shadow .25s ease; }
.footer-ticket-btn:hover { background: var(--grad-primary-hover); transform: translateY(-2px); box-shadow: inset 0 1px 0 rgba(255,255,255,0.5), 0 12px 26px -8px rgba(194,104,0,0.55); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom .inner { max-width: 1180px; margin: 0 auto; padding: 26px 40px; display: flex; flex-wrap: wrap; gap: 6px 18px; align-items: center; justify-content: space-between; font-size: 13px; color: var(--color-ink-400); }
.footer-credit { white-space: nowrap; }
.footer-credit a { color: var(--color-brand-400); text-decoration: none; font-weight: 600; }
.analytics-settings,
.analytics-inline-settings { appearance: none; border: 0; background: transparent; font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.analytics-settings { color: var(--color-ink-400); font-size: 13px; padding: 3px 0; }
.analytics-settings:hover { color: #fff; }
.analytics-inline-settings { color: var(--color-brand-ink); font-weight: 600; padding: 0; }
.analytics-settings:focus-visible,
.analytics-inline-settings:focus-visible { outline: 2px solid var(--color-brand-400); outline-offset: 4px; border-radius: 3px; }

/* Einwilligung für die optionale SiteBehaviour-Nutzungsanalyse */
.analytics-consent { position: fixed; z-index: 1000; left: 18px; right: 18px; bottom: 18px; max-width: 920px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 20px 22px; border: 1px solid rgba(255,255,255,0.16); border-radius: 18px; background: rgba(0,18,41,0.97); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 28px 70px -24px rgba(0,0,0,0.85); color: #fff; }
.analytics-consent-copy { flex: 1 1 auto; min-width: 0; }
.analytics-consent h2 { margin: 0 0 6px; color: #fff; font-size: 17px; font-weight: 800; }
.analytics-consent p { margin: 0; color: var(--color-ink-300); font-size: 13px; line-height: 1.55; }
.analytics-consent a { color: var(--color-brand-400); font-weight: 700; text-underline-offset: 3px; }
.analytics-consent-actions { flex: 0 0 auto; display: flex; align-items: center; gap: 10px; }
.analytics-consent-actions button { appearance: none; min-height: 42px; border-radius: 999px; padding: 10px 16px; font: inherit; font-size: 13px; font-weight: 800; cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease; }
.analytics-consent-reject { border: 1px solid rgba(255,255,255,0.32); background: transparent; color: #fff; }
.analytics-consent-accept { border: 1px solid var(--color-brand-700); background: var(--color-brand-700); color: var(--color-night-700); }
.analytics-consent-actions button:hover { transform: translateY(-1px); }
.analytics-consent-reject:hover { border-color: #fff; }
.analytics-consent-accept:hover { background: var(--color-brand-800); border-color: var(--color-brand-800); }
.analytics-consent-actions button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
@media (max-width: 760px) {
  .analytics-consent { left: 10px; right: 10px; bottom: 10px; align-items: stretch; flex-direction: column; gap: 15px; padding: 17px; }
  .analytics-consent--over-ai { bottom: 42px; }
  .analytics-consent-actions { width: 100%; }
  .analytics-consent-actions button { flex: 1 1 0; }
}
@media (max-width: 440px) {
  .analytics-consent-actions { align-items: stretch; flex-direction: column-reverse; }
  .analytics-consent-actions button { width: 100%; }
}

/* ── Empfänger-Karten (Wofür) ───────────────────────────────────────────── */
.give-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 34px; }
.give-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 16px 36px -28px rgba(0,11,26,0.4); }
.give-card > img, .give-card picture > img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: center; display: block; }
.give-card .body { padding: 34px; }
.give-card h2 { font-size: 23px; color: var(--color-night-700); font-weight: 800; margin: 0 0 14px; }
.give-card p { font-size: 16px; line-height: 1.7; color: var(--color-ink-600); margin: 0 0 14px; }
.give-card p:last-child { margin-bottom: 0; }

/* ── Cards/Logo-Hover + Bild-Zoom (Touch-frei) ──────────────────────────── */
@media (hover: hover) {
  .zoom-frame { overflow: hidden; }
  .zoom-frame img { transition: transform .55s cubic-bezier(.16,1,.3,1); }
  .zoom-frame:hover img { transform: scale(1.05); }
}

/* ── Scroll-Reveal + Counter (motion-safe) ──────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
  .reveal.is-in { opacity: 1; transform: none; }
  /* Ohne JavaScript bleibt der reveal-Inhalt sichtbar (kein Blank ohne JS). */
  @media (scripting: none) { .reveal { opacity: 1; transform: none; } }
  .hero-stagger > * { opacity: 0; animation: heroUp .9s cubic-bezier(.16,1,.3,1) both; }
  .hero-stagger > *:nth-child(1) { animation-delay: .12s; }
  .hero-stagger > *:nth-child(2) { animation-delay: .22s; }
  .hero-stagger > *:nth-child(3) { animation-delay: .32s; }
  .hero-stagger > *:nth-child(4) { animation-delay: .42s; }
  .hero-stagger > *:nth-child(5) { animation-delay: .52s; }
  .hero-stagger > *:nth-child(6) { animation-delay: .62s; }
  @keyframes heroUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
}

/* ── Kontext-Theming (dunkle Sektionen färben Standard-Komponenten um) ──── */
.section-dark .kicker { color: var(--color-brand-400); }
.section-dark .title { color: #fff; }
.section-dark .lead { color: var(--color-sand-50); }
.section-dark .lead-muted { color: var(--color-ink-300); }
.section-dark .media-cap,
.band-brand .media-cap,
.band-gradient .media-cap { color: var(--color-sand-200); }
.section-dark .media-cap a,
.band-brand .media-cap a,
.band-gradient .media-cap a { color: var(--color-brand-400); }
.section-dark .media-cap a:hover,
.band-brand .media-cap a:hover,
.band-gradient .media-cap a:hover { color: var(--color-brand-300); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section, .section-intro, .section-legal { padding-top: 84px; padding-bottom: 84px; }
  .section-tint + .section-cta, .section-warm + .section-cta, .section-dark + .section-cta { padding-top: 84px; }
  .split { gap: 48px; }
}
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-inner { padding-inline: 24px; }
}
/* Tablet/Mobil: Header dauerhaft im Kompakt-Zustand — kein Schrumpfen beim Scrollen.
   Greift ab dem Burger-Breakpoint (≤1040px), also überall wo keine Desktop-Nav mehr
   steht. Werte identisch zu .is-scrolled (Logo 46, Padding 9), damit die Bar so wenig
   vertikalen Platz wie möglich einnimmt — wichtig auf Tablets mit niedrigem Viewport. */
@media (max-width: 1040px) {
  .header-inner,
  .site-header.is-scrolled .header-inner { padding-top: 9px; padding-bottom: 9px; }
  .brand-logo img,
  .site-header.is-scrolled .brand-logo img { height: 46px; }
}
@media (max-width: 768px) {
  .container, .container-lg, .container-md, .container-sm, .container-xs, .container-legal { padding-left: 22px; padding-right: 22px; }
  .section, .section-intro, .section-legal { padding-top: 64px; padding-bottom: 64px; }
  .section-tint + .section-cta, .section-warm + .section-cta, .section-dark + .section-cta { padding-top: 64px; }
  .split { gap: 36px; }
  .band { padding: 32px 24px; }
  .account-dark, .feature-dark .inner { padding-left: 24px; padding-right: 24px; }
  .contact-grid { gap: 36px; }
  .story-grid { gap: 40px; }
  .marq-head { padding: 64px 24px 18px; }
}
@media (max-width: 600px) {
  .story-grid, .story-band--dark .story-grid { gap: 32px; }
  .story-phone-wrap { width: clamp(210px, 64vw, 248px); max-width: 100%; }
  .story-col { min-width: 0; width: 100%; }
  .footer-bottom .inner { padding-inline: 22px; align-items: flex-start; }
  .footer-credit { width: 100%; white-space: normal; overflow-wrap: anywhere; }
  .footer-credit a { display: block; margin-top: 2px; }
  .hero-home { min-height: calc(100svh - 65px); }
  .hero-bg-home { object-position: 72% 42%; }
  .give-to { max-width: none; margin-top: 16px; padding-top: 16px; gap: 12px; }
  .hero-inner { padding-inline: 22px; }
  /* Home-Hero mobil: luftig strecken statt stauchen. Erlös-Logos (Strich + Auf der Bult/MHH)
     raus, damit der obere Bereich nicht zusammengepfercht ist — der Erlös steht auf der-abend
     und in der Worum-Sektion. Klare Abstände: Eyebrow oben → Buttons unten. */
  .hero-home .give-to { display: none; }
  .hero-home .hero-inner { padding-block: clamp(30px, 7vh, 60px); }
  .hero-home .hero-eyebrow { margin-bottom: 18px; }
  /* H1 mobil in EINER Zeile (kein Umbruch): Schriftgröße so bemessen, dass
     "Ricardo & Friends XXL" selbst bei 320 px nicht umbricht; nowrap als Safety.
     clamp(30px, 7.5vw, 40px) → 390px = ~29px, 320px = 30px (untere Klammer). */
  .hero-home .hero-h1-home { font-size: clamp(30px, 7.5vw, 40px); white-space: nowrap; margin-bottom: 18px; }
  /* Lead-Absätze ("Ein unvergesslicher…" bis "…Kindern") mobil auf max. 65 % Breite. */
  .hero-home .hero-lead { max-width: 65%; font-size: 17px; line-height: 1.4; margin-bottom: 15px; }
  .hero-home .hero-text { font-size: 17px; line-height: 1.5; color: #fff; margin-bottom: 28px; }
  .hero-home .hero-date-row { gap: 12px; margin-bottom: 0; }
}
@media (max-width: 460px) {
  .btn { width: 100%; }
  .btn-row .btn { width: 100%; }
  .band-actions { width: 100%; }
}

/* ── Nach-oben-Button (von main.js in <body> injiziert) ───────────────────── */
/* Nach-oben-Button sitzt ÜBER dem stets sichtbaren WhatsApp-Button (bottom = 24 + 54 + 12). */
/* Hero above-the-fold: bei niedrigen Viewport-Hoehen vertikal verdichten, damit der komplette Home-Hero ohne Scrollen sichtbar bleibt.
   Nur ab 601px Breite (Desktop-Kurzfenster + Quer-Handys) — Portrait-Handys (≤600px) behalten die luftige Fassung oben. */
@media (max-height: 820px) and (min-width: 601px) {
  .hero-home .hero-eyebrow { margin-bottom: 12px; }
  .hero-home .hero-text { margin-bottom: 20px; }
  .hero-home .hero-date-row { margin-bottom: 20px; }
  .hero-home .give-to { margin-top: 18px; padding-top: 18px; }
}
@media (max-height: 720px) and (min-width: 601px) {
  .hero-home .hero-inner { padding-block: 22px; }
  .hero-home .hero-eyebrow { margin-bottom: 10px; }
  .hero-home .hero-lead { line-height: 1.3; margin-bottom: 10px; }
  .hero-home .hero-text { line-height: 1.45; margin-bottom: 14px; }
  .hero-home .hero-date-row { gap: 10px; margin-bottom: 14px; }
  .hero-home .give-to { margin-top: 14px; padding-top: 14px; gap: 12px; }
}
@media (max-height: 700px) and (min-width: 601px) {
  /* Datum/Ort (ZAG Arena) sind Pflichtinformation — nie ausblenden, nur verdichten.
     Statt Text zu verstecken wird bei sehr niedrigen Höhen die weniger wichtige
     Spendenlogo-Zeile (.give-to) geopfert; Text + Buttons bleiben so above the fold. */
  .hero-home .hero-text { margin-bottom: 10px; }
  .hero-home .give-to { display: none; }
  .hero-home .hero-inner { padding-block: 16px; }
}
@media (max-height: 520px) and (min-width: 601px) {
  .hero-home .give-to { display: none; }
  .hero-home .hero-lead { line-height: 1.25; margin-bottom: 6px; }
  .hero-home .hero-text { line-height: 1.3; margin-bottom: 8px; }
  .hero-home .hero-h1-home { margin-bottom: 8px; }
  .hero-home .hero-inner { padding-block: 10px; }
  .hero-home .hero-date-row { gap: 8px; margin-bottom: 8px; }
}

.scroll-top { position: fixed; right: 24px; bottom: 90px; z-index: 55; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border: none; border-radius: 50%; background: var(--color-brand-700); color: #fff; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(12px); box-shadow: 0 10px 26px -10px rgba(0,11,26,0.6); transition: opacity .25s ease, transform .25s ease, visibility .25s, background .18s ease; }
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top svg { width: 22px; height: 22px; display: block; }
@media (hover: hover) { .scroll-top:hover { background: var(--color-brand-800); transform: translateY(-2px); } }
@media (max-width: 600px) { .scroll-top { right: 16px; bottom: 78px; width: 44px; height: 44px; } }
@media (prefers-reduced-motion: reduce) { .scroll-top, .scroll-top.is-visible { transform: none; } }

/* Kontakt-Button (Floating, unten rechts) — per JS auf allen Seiten injiziert.
   „Kontakt"-Pille; Klick klappt WhatsApp · E-Mail · Kontaktformular auf.
   Pille mit Label auf Desktop, runder Icon-Button auf Mobil. */
/* Erscheint erst nach etwas Scrollen — an derselben Schwelle wie der Nach-oben-Button
   (main.js schaltet .is-visible bei y > 600). Am Seitenanfang bewusst versteckt. */
.contact-fab { position: fixed; right: 24px; bottom: 24px; z-index: 56; opacity: 0; visibility: hidden; transform: translateY(12px); pointer-events: none; transition: opacity .25s ease, transform .25s ease, visibility .25s; }
.contact-fab.is-visible { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.contact-toggle { display: inline-flex; align-items: center; gap: 10px; height: 54px; padding: 0 20px 0 15px; border: none; border-radius: 999px; background: var(--color-brand-700); color: #fff; font-family: inherit; font-weight: 600; cursor: pointer; box-shadow: 0 12px 30px -10px rgba(0,11,26,0.55); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.contact-toggle .ct-icon { display: block; flex: none; }
.contact-toggle svg { width: 26px; height: 26px; display: block; }
.contact-toggle .ct-label { font-size: 0.95rem; line-height: 1; white-space: nowrap; }
@media (hover: hover) { .contact-toggle:hover { background: var(--color-brand-800); transform: translateY(-2px); box-shadow: 0 16px 34px -10px rgba(0,11,26,0.6); } }

/* Ausklapp-Menü — sitzt über dem Button, ausgeblendet bis .is-open (kein Platz im Flow). */
.contact-menu { position: absolute; right: 0; bottom: calc(100% + 12px); display: flex; flex-direction: column; align-items: flex-end; gap: 10px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.contact-fab.is-open .contact-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.contact-item { display: inline-flex; align-items: center; gap: 10px; height: 46px; padding: 0 18px 0 14px; border-radius: 999px; background: #fff; color: var(--color-ink-900); text-decoration: none; font-weight: 600; font-size: 0.9rem; white-space: nowrap; box-shadow: 0 8px 22px -8px rgba(0,11,26,0.45); transition: transform .16s ease, box-shadow .16s ease; }
.contact-item .ci-icon { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; flex: none; color: #fff; }
.contact-item svg { width: 18px; height: 18px; display: block; }
.contact-item--wa   .ci-icon { background: var(--color-whatsapp); }
.contact-item--mail .ci-icon { background: var(--color-brand-700); }
.contact-item--form .ci-icon { background: var(--color-night-800); }
@media (hover: hover) { .contact-item:hover { transform: translateX(-2px); box-shadow: 0 12px 26px -8px rgba(0,11,26,0.5); } }

/* Bei offenem Kontakt-Menü den Nach-oben-Button ausblenden — keine Überlappung. */
body.contact-open .scroll-top { opacity: 0; visibility: hidden; }

@media (max-width: 600px) {
  .contact-fab { right: 16px; bottom: 16px; }
  .contact-toggle { width: 52px; height: 52px; padding: 0; justify-content: center; }
  .contact-toggle .ct-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .contact-toggle, .contact-menu, .contact-item { transition: none; }
  .contact-fab, .contact-fab.is-visible { transform: none; }
  .contact-fab.is-open .contact-menu { transform: none; }
}
