/* =========================================================
   GALIFIKTISCH – styles.css
   Schriften werden lokal geladen (kein Google-Fonts-CDN → DSGVO-freundlich)
   ========================================================= */

@font-face {
  font-family: "Fredoka";
  src: url("assets/fonts/fredoka-latin-wght-normal.woff2") format("woff2");
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "Nunito";
  src: url("assets/fonts/nunito-latin-wght-normal.woff2") format("woff2");
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  --midnight: #101A3A;
  --deep: #082B57;
  --cobalt: #1769E8;
  --bright: #168BE8;
  --orange: #FF632B;
  --orange-warm: #F47B35;
  --mint: #39C9A9;
  --mint-light: #79E1C8;
  --yellow: #FFBD2E;
  --cream: #FFF1D2;
  --bg: #FFFCF5;
  --white: #FFFFFF;
  --text: #13203A;

  --font-display: "Fredoka", "Baloo 2", "Nunito", system-ui, sans-serif;
  --font-body: "Nunito", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --r-card: 28px;
  --r-card-lg: 32px;
  --r-btn: 18px;
  --shadow: 0 18px 50px rgba(16, 26, 58, 0.12);
  --shadow-lift: 0 26px 60px rgba(16, 26, 58, 0.18);

  --max: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --section-y: clamp(72px, 10vw, 128px);
  --header-h: 72px;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
img, svg { display: block; max-width: 100%; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 8px; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding-inline: var(--gutter); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--midnight); color: #fff; padding: 12px 18px; border-radius: 12px;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: 54px; padding: 0 26px;
  border-radius: var(--r-btn); border: 2px solid transparent;
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; line-height: 1;
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(255, 99, 43, .32); }
.btn-orange:hover { background: #ff7440; }
.btn-navy { background: var(--midnight); color: #fff; }
.btn-navy:hover { background: var(--deep); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .06); }
.btn-sm { min-height: 46px; padding: 0 18px; font-size: 1.05rem; border-radius: 16px; }
.btn.is-soon { opacity: .5; cursor: not-allowed; box-shadow: none; transform: none; }
button.btn { font-family: var(--font-display); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 252, 245, .92);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
  padding-top: env(safe-area-inset-top, 0px);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(16, 26, 58, .10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 24px; }
.brand img { height: 50px; width: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px;
  font-family: var(--font-display); font-weight: 500; font-size: 1.08rem; color: var(--midnight);
  text-decoration: none; border-radius: 14px;
  transition: background-color .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--cream); color: var(--orange); }

.nav-toggle {
  display: none; width: 52px; height: 52px; border: 0; border-radius: 16px;
  background: var(--midnight); cursor: pointer; position: relative;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  position: absolute; left: 50%; width: 22px; height: 3px; border-radius: 3px; background: #fff;
  transform: translateX(-50%); transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bars { top: 50%; margin-top: -1.5px; }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; left: 0; transform: none; }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-open .nav-toggle-bars { background: transparent; }
.nav-open .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 960px) {
  :root { --header-h: 64px; }
  .brand img { height: 42px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg); box-shadow: 0 24px 40px rgba(16, 26, 58, .14);
    border-radius: 0 0 28px 28px; padding: 8px var(--gutter) 20px;
    display: none;
  }
  .nav-open .main-nav { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { width: 100%; min-height: 56px; font-size: 1.3rem; padding: 0 12px; }
}

/* ---------- 1 · Hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(23, 105, 232, .22), transparent 60%),
    linear-gradient(180deg, var(--midnight) 0%, var(--deep) 100%);
  color: #fff;
  padding-top: clamp(48px, 8vw, 96px);
}
.hero-sky { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.moon {
  position: absolute; top: clamp(28px, 6vw, 70px); right: clamp(-40px, 6vw, 110px);
  width: clamp(130px, 18vw, 230px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--mint-light), var(--mint) 70%);
  box-shadow: 0 0 0 18px rgba(121, 225, 200, .07), 0 0 0 42px rgba(121, 225, 200, .04), 0 0 90px rgba(57, 201, 169, .35);
}
.moon::before, .moon::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(16, 26, 58, .09);
}
.moon::before { width: 22%; height: 22%; top: 26%; left: 52%; }
.moon::after { width: 13%; height: 13%; top: 60%; left: 30%; }

.trees { position: absolute; bottom: 30%; width: clamp(180px, 30vw, 400px); height: auto; opacity: .95; }
.trees-left { left: -2%; }
.trees-right { right: -2%; }

.float { position: absolute; font-family: var(--font-display); line-height: 1; user-select: none; }
.star { color: var(--yellow); font-size: 18px; opacity: .85; }
.s1 { top: 16%; left: 12%; font-size: 22px; }
.s2 { top: 10%; left: 44%; font-size: 14px; }
.s3 { top: 30%; right: 30%; font-size: 16px; }
.s4 { top: 40%; left: 26%; font-size: 12px; }
.note { color: var(--mint-light); font-size: 34px; opacity: .55; }
.n1 { top: 22%; left: 6%; }
.n2 { top: 44%; right: 12%; font-size: 40px; }
.n3 { top: 8%; right: 36%; font-size: 26px; }

.hero-copy { position: relative; text-align: center; }
.hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.4rem); font-weight: 700;
  max-width: 20ch; margin: 0 auto; text-wrap: balance;
}
.hero-sub {
  margin-top: 16px; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem); color: var(--mint-light); letter-spacing: .01em;
}
.hero .btn-row { justify-content: center; margin-top: 30px; }

.hero-stage { position: relative; margin-top: clamp(28px, 5vw, 56px); padding-bottom: clamp(28px, 4vw, 48px); }
.logo-wrap { position: relative; width: min(1060px, 96vw); margin: 0 auto; aspect-ratio: 1400 / 533; }
.hill {
  --arc: clamp(40px, 7vw, 110px);
  position: absolute; z-index: 0; left: 50%; top: 33%;
  width: max(180vw, 1900px); height: 600%;
  transform: translateX(-50%);
  background: var(--bg);
  border-radius: 50% 50% 0 0 / var(--arc) var(--arc) 0 0;
}
.hero-logo { position: relative; z-index: 1; width: 100%; height: auto; }

/* Ein einziger, orchestrierter Einstieg */
@media (prefers-reduced-motion: no-preference) {
  .hero-logo { animation: logo-in .9s cubic-bezier(.2, .9, .25, 1.15) .15s both; }
  .hero h1 { animation: rise .7s ease-out both; }
  .hero-sub { animation: rise .7s ease-out .12s both; }
  .hero .btn-row { animation: rise .7s ease-out .24s both; }
  .star { animation: twinkle 3.6s ease-in-out infinite; }
  .s2 { animation-delay: 1.1s; } .s3 { animation-delay: 2s; } .s4 { animation-delay: .6s; }
  .note { animation: drift 9s ease-in-out infinite; }
  .n2 { animation-delay: -3s; } .n3 { animation-delay: -6s; }
}
@keyframes logo-in { from { opacity: 0; transform: translateY(40px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes twinkle { 0%, 100% { opacity: .9; transform: scale(1); } 50% { opacity: .35; transform: scale(.75); } }
@keyframes drift { 0%, 100% { transform: translate(0, 0) rotate(-6deg); } 50% { transform: translate(8px, -14px) rotate(6deg); } }

@media (max-width: 600px) {
  .moon { width: 110px; top: 18px; right: -28px; }
  .trees { width: 150px; bottom: 26%; opacity: .55; }
  .note, .s3 { display: none; }
  .hero .btn-row .btn { width: min(100%, 320px); }
  .cover { transform: rotate(-1deg); }
}

/* ---------- Allgemeine Sektionen ---------- */
.section { padding: var(--section-y) 0; }
.section-head { margin-bottom: clamp(32px, 5vw, 56px); max-width: 44rem; }
.section-head h2 { font-size: clamp(2.2rem, 4.8vw, 3.5rem); font-weight: 700; color: var(--midnight); text-wrap: balance; }
.section-sub { margin-top: 12px; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.2rem, 2.2vw, 1.5rem); color: var(--cobalt); }

/* ---------- 2 · Aktueller Song ---------- */
.song-feature { padding-top: clamp(24px, 4vw, 48px); }
.song-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }

.cover {
  position: relative; margin: 0; aspect-ratio: 1; border-radius: var(--r-card-lg); overflow: hidden;
  background: radial-gradient(90% 70% at 70% 20%, #0f3f7e, var(--deep) 55%, var(--midnight));
  box-shadow: var(--shadow-lift);
  transform: rotate(-2deg);
}
.cover::after {
  content: ""; position: absolute; left: -10%; right: -10%; bottom: -30%; height: 48%;
  background: var(--cobalt); border-radius: 50% 50% 0 0 / 40% 40% 0 0;
}
.cover-moon {
  position: absolute; top: 9%; right: 10%; width: 30%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--mint-light), var(--mint) 70%);
  box-shadow: 0 0 60px rgba(57, 201, 169, .45);
}
.cover-title {
  position: absolute; top: 8%; left: 8%; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.6rem); line-height: .95; color: var(--cream);
  transform: rotate(-4deg); max-width: 5ch;
}
.cover img { position: absolute; z-index: 1; left: -4%; bottom: 12%; width: 108%; height: auto; }

.kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--midnight); background: var(--yellow); padding: 6px 16px; border-radius: 999px;
}
.song-name { margin-top: 18px; font-size: clamp(3.2rem, 8vw, 6.2rem); font-weight: 700; color: var(--orange); line-height: .92; letter-spacing: -.02em; }
.lyric { margin-top: 24px; font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.6; color: var(--text); }
.shout { display: flex; flex-wrap: wrap; align-items: baseline; gap: .25em; margin: 12px 0 32px; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; }
.shout span { display: inline-block; }
.shout span:nth-child(1) { color: var(--orange); transform: rotate(-5deg); }
.shout span:nth-child(2) { color: var(--cobalt); transform: translateY(-.12em) rotate(4deg); }
.shout span:nth-child(3) { color: var(--midnight); transform: rotate(-2deg); background: linear-gradient(transparent 70%, var(--yellow) 70%, var(--yellow) 90%, transparent 90%); padding: 0 .06em; }

@media (prefers-reduced-motion: no-preference) {
  .song-feature.in-view .shout span { animation: shout-pop .5s cubic-bezier(.3, 1.6, .5, 1) both; }
  .song-feature.in-view .shout span:nth-child(2) { animation-delay: .18s; }
  .song-feature.in-view .shout span:nth-child(3) { animation-delay: .36s; }
}
@keyframes shout-pop { from { opacity: 0; scale: .4; } to { opacity: 1; scale: 1; } }

@media (max-width: 860px) {
  .song-grid { grid-template-columns: 1fr; }
  .cover { max-width: 520px; width: 100%; margin: 0 auto; }
}

/* ---------- 3 · Mitmachen ---------- */
.mitmachen { background: var(--cream); border-radius: clamp(32px, 5vw, 64px) clamp(32px, 5vw, 64px) 0 0; }
.moves { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: none; }
.move {
  --accent: var(--orange); --accent-soft: #FFE1D4;
  position: relative; background: var(--white); border-radius: var(--r-card);
  padding: 26px 22px 28px; box-shadow: var(--shadow);
  transition: transform .25s cubic-bezier(.3, 1.4, .5, 1), box-shadow .25s ease, background-color .25s ease, color .25s ease;
}
.m-mint   { --accent: #1FA88A; --accent-soft: #D6F5EC; }
.m-blue   { --accent: var(--cobalt); --accent-soft: #DCE9FD; }
.m-yellow { --accent: #E09A00; --accent-soft: #FFEFC7; }
.m-navy   { --accent: var(--midnight); --accent-soft: #DDE1EC; }
.move-step {
  position: absolute; top: 18px; right: 18px; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  background: var(--accent-soft); color: var(--accent);
}
.move-icon {
  width: 88px; height: 88px; padding: 8px; border-radius: 30px 30px 30px 12px;
  background: var(--accent-soft); color: var(--accent);
  fill: none; stroke: currentColor; stroke-width: 5.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .3s ease;
}
.move h3 { margin-top: 20px; font-size: 1.55rem; font-weight: 700; color: var(--midnight); }
.move p { margin-top: 8px; font-size: 1.02rem; line-height: 1.45; color: #3c4763; }

.move:hover { transform: translateY(-8px) rotate(-1.5deg); box-shadow: var(--shadow-lift); }
.move:nth-child(even):hover { transform: translateY(-8px) rotate(1.5deg); }
.move:hover .move-icon { transform: rotate(-8deg) scale(1.06); }

.move.is-active { background: var(--accent); transform: translateY(-10px) scale(1.04); box-shadow: var(--shadow-lift); }
.move.is-active h3, .move.is-active p { color: #fff; }
.m-yellow.is-active h3, .m-yellow.is-active p { color: var(--midnight); }
.move.is-active .move-icon { background: rgba(255, 255, 255, .92); }
.move.is-active .move-step { background: #fff; }
@media (prefers-reduced-motion: no-preference) {
  .move.is-active .move-icon { animation: bop .7s ease-in-out infinite alternate; }
}
@keyframes bop { from { transform: translateY(0) rotate(-6deg); } to { transform: translateY(-6px) rotate(6deg); } }

.dance-control { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 36px; }
.dance-status { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--orange); min-height: 1.4em; }

@media (max-width: 1080px) {
  .moves {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px;
    margin-inline: calc(var(--gutter) * -1); padding: 14px var(--gutter) 28px;
    scrollbar-width: none;
  }
  .moves::-webkit-scrollbar { display: none; }
  .move { flex: 0 0 min(250px, 72vw); scroll-snap-align: start; }
}

/* ---------- 4 · Galifiktische Welt ---------- */
.welt {
  background:
    radial-gradient(2px 2px at 12% 18%, rgba(255,255,255,.55), transparent 60%),
    radial-gradient(2px 2px at 78% 12%, rgba(255,255,255,.45), transparent 60%),
    radial-gradient(1.5px 1.5px at 44% 70%, rgba(255,255,255,.4), transparent 60%),
    radial-gradient(2px 2px at 90% 64%, rgba(255,189,46,.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 24% 86%, rgba(255,255,255,.35), transparent 60%),
    var(--midnight);
  color: #fff;
}
.welt .section-head h2 { color: #fff; }
.welt .section-sub { color: var(--mint-light); }

.characters { display: grid; grid-template-columns: 1.45fr 1fr; gap: 24px; align-items: stretch; }
.char-card { border-radius: var(--r-card-lg); overflow: hidden; display: flex; flex-direction: column; }
.char-fox { background: var(--deep); box-shadow: 0 24px 60px rgba(0, 0, 0, .25); }
.char-art { position: relative; aspect-ratio: 16 / 8; }
.char-fox .char-art {
  background: radial-gradient(60% 90% at 78% 30%, rgba(57, 201, 169, .35), transparent 60%), linear-gradient(180deg, #0c3668, var(--deep));
}
.char-fox .char-art::before {
  content: ""; position: absolute; top: 12%; right: 12%; width: 22%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--mint-light), var(--mint) 70%);
}
.char-fox .char-art img { position: absolute; left: 4%; bottom: -5%; width: 88%; height: auto; }
.char-body { padding: clamp(24px, 3vw, 36px); }
.char-meta { font-family: var(--font-display); font-weight: 500; color: var(--mint-light); font-size: 1rem; }
.char-body h3 { margin-top: 6px; font-size: clamp(1.9rem, 3.4vw, 2.6rem); font-weight: 700; }
.char-fox h3 { color: var(--orange); }
.char-body > p:not(.char-meta) { margin-top: 12px; font-size: 1.15rem; line-height: 1.6; color: rgba(255, 255, 255, .88); }
.traits { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.traits li {
  font-family: var(--font-display); font-weight: 500; font-size: 1rem;
  padding: 7px 14px; border-radius: 999px; background: rgba(121, 225, 200, .14); color: var(--mint-light);
}

.char-mystery { background: rgba(8, 43, 87, .45); border: 2px dashed rgba(121, 225, 200, .35); }
.mystery-art { display: grid; place-items: center; padding-top: 28px; }
.mystery-art svg { width: min(200px, 60%); height: auto; }
.mystery-art .sil { fill: #1b2a57; stroke: #1b2a57; stroke-width: 14; stroke-linejoin: round; }
.mystery-art .stalk { fill: none; stroke: #1b2a57; stroke-width: 10; stroke-linecap: round; }
.mystery-art .tip { fill: #1b2a57; }
.mystery-art text { font-family: var(--font-display); font-weight: 700; font-size: 92px; fill: var(--mint); }
.char-mystery h3 { color: #fff; }
@media (prefers-reduced-motion: no-preference) {
  .mystery-art svg { animation: peek 4s ease-in-out infinite; transform-origin: 50% 90%; }
}
@keyframes peek { 0%, 70%, 100% { transform: rotate(0); } 78% { transform: rotate(-6deg); } 86% { transform: rotate(5deg); } }

@media (max-width: 860px) {
  .characters { grid-template-columns: 1fr; }
}

/* ---------- 5 · Unsere Lieder ---------- */
.song-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); gap: 28px; }
.song-card {
  background: var(--white); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform .25s cubic-bezier(.3, 1.4, .5, 1), box-shadow .25s ease;
}
.song-card:not(.song-card-secret):hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.song-card-art { position: relative; aspect-ratio: 4 / 3; background: var(--card-bg, var(--deep)); overflow: hidden; }
.song-card-art::before {
  content: ""; position: absolute; top: 12%; right: 12%; width: 26%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--mint-light), var(--mint) 70%); opacity: .95;
}
.song-card-art img { position: absolute; left: 0; bottom: -5%; width: 100%; height: auto; }
.badge {
  position: absolute; z-index: 1; top: 16px; left: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  background: var(--yellow); color: var(--midnight); padding: 5px 14px; border-radius: 999px;
}
.song-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.song-card-body h3 { font-size: 1.7rem; font-weight: 700; color: var(--midnight); }
.song-artist { font-family: var(--font-display); font-weight: 500; color: var(--cobalt); letter-spacing: .04em; }
.song-card-body .btn-row { margin-top: auto; padding-top: 18px; gap: 10px; }

.song-card-secret { background: transparent; border: 2px dashed rgba(16, 26, 58, .22); box-shadow: none; }
.song-card-secret .song-card-art { background: var(--midnight); display: grid; place-items: center; }
.song-card-secret .song-card-art::before { opacity: .25; }
.secret-q { position: relative; font-family: var(--font-display); font-weight: 700; font-size: 7rem; line-height: 1; color: var(--orange); }
.song-card-secret .song-artist { color: #5b6580; letter-spacing: 0; }

/* ---------- 6 · Teaser ---------- */
.teaser { background: var(--orange); color: var(--midnight); overflow: hidden; padding: clamp(64px, 9vw, 112px) 0; }
.teaser-inner { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; }
.teaser h2 { font-size: clamp(2.6rem, 6.4vw, 5rem); font-weight: 700; line-height: .98; text-wrap: balance; }
.teaser-sub { margin-top: 14px; font-family: var(--font-display); font-weight: 500; font-size: clamp(1.4rem, 2.6vw, 2rem); color: var(--cream); }
.hints { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hints li {
  display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 0 20px;
  background: var(--midnight); color: #fff; border-radius: 18px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.15rem;
}
.hints li span { font-size: 1.35rem; }
.teaser-art svg { width: min(420px, 100%); margin: 0 auto; overflow: visible; }
.big-sil { fill: var(--midnight); stroke: var(--midnight); stroke-width: 20; stroke-linejoin: round; }
.big-stalk { fill: none; stroke: var(--midnight); stroke-width: 14; stroke-linecap: round; }
.big-tip { fill: var(--midnight); }
.teaser-art .eye { fill: var(--yellow); transform-box: fill-box; transform-origin: center; }
.teaser-art text { font-family: var(--font-display); font-weight: 700; font-size: 120px; fill: var(--orange); }
@media (prefers-reduced-motion: no-preference) {
  .teaser-art .eye { animation: blink 5s infinite; }
  .teaser-art svg { animation: sway 6s ease-in-out infinite; transform-origin: 50% 100%; }
}
@keyframes blink { 0%, 92%, 100% { transform: scaleY(1); } 95% { transform: scaleY(.1); } }
@keyframes sway { 0%, 100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }

@media (max-width: 760px) {
  .teaser-inner { grid-template-columns: 1fr; }
  .teaser-art { order: -1; }
  .teaser-art svg { width: min(240px, 70%); }
}

/* ---------- 7 · Für die Großen ---------- */
.grosse-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.grosse h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 600; color: var(--midnight); }
.grosse-lead { margin-top: 18px; max-width: 34em; font-size: 1.2rem; line-height: 1.7; color: #2c3753; }
.grosse-lead + .grosse-lead { margin-top: 14px; }
.pillars { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.pillars li {
  padding: 8px 16px; border-radius: 999px; border: 1.5px solid rgba(16, 26, 58, .18);
  font-family: var(--font-display); font-weight: 500; color: var(--deep);
}
.promise { background: var(--white); border-radius: var(--r-card); padding: 30px; box-shadow: var(--shadow); }
.promise h3 { font-size: 1.35rem; font-weight: 600; color: var(--midnight); }
.promise ul { margin-top: 14px; display: grid; gap: 12px; }
.promise li { position: relative; padding-left: 34px; font-size: 1.02rem; line-height: 1.5; color: #2c3753; }
.promise li::before {
  content: ""; position: absolute; left: 0; top: .18em; width: 22px; height: 22px; border-radius: 50%;
  background: var(--mint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='%23101A3A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 15px no-repeat;
}
@media (max-width: 860px) { .grosse-grid { grid-template-columns: 1fr; } }


/* ---------- Kontaktformular ---------- */
.contact {
  margin-top: clamp(56px, 8vw, 96px);
  display: grid; grid-template-columns: 1fr 1.6fr; gap: clamp(28px, 5vw, 64px);
  background: var(--cream); border-radius: var(--r-card-lg); padding: clamp(28px, 4vw, 48px);
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.contact-intro h3 { font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 600; color: var(--midnight); }
.contact-intro p { margin-top: 12px; font-size: 1.08rem; line-height: 1.6; color: #2c3753; }
.contact-intro .contact-note { font-weight: 700; color: var(--deep); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 500; font-size: 1.05rem; color: var(--midnight); }
.field input, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 16px;
  font: inherit; font-size: 1.05rem; color: var(--text);
  background: var(--white); border: 2px solid rgba(16, 26, 58, .14); border-radius: 16px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cobalt); box-shadow: 0 0 0 4px rgba(23, 105, 232, .15); }
.check { display: flex; align-items: flex-start; gap: 12px; font-size: 1.02rem; line-height: 1.45; cursor: pointer; }
.check input { flex: 0 0 auto; width: 24px; height: 24px; margin: 0; accent-color: var(--orange); }
.form-privacy { font-size: .95rem; color: #4a5470; }
.form-privacy a { color: var(--cobalt); font-weight: 700; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-actions .btn:disabled { opacity: .6; cursor: wait; }
.form-status { font-weight: 700; }
.form-status.is-ok { color: #13856c; }
.form-status.is-error { color: #c43d0c; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 860px) {
  .contact { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* ---------- Rechtliche Seiten ---------- */
.legal { padding: clamp(48px, 7vw, 88px) 0 var(--section-y); }
.legal .wrap { max-width: 820px; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 700; color: var(--midnight); }
.legal h2 { margin-top: 44px; font-size: 1.55rem; font-weight: 600; color: var(--midnight); scroll-margin-top: calc(var(--header-h) + 16px); }
.legal h3 { margin-top: 24px; font-size: 1.2rem; font-weight: 600; color: var(--deep); }
.legal p, .legal li { margin-top: 12px; font-size: 1.05rem; line-height: 1.7; color: #2c3753; }
.legal ul { padding-left: 1.2em; list-style: disc; }
.legal ul li { margin-top: 6px; }
.legal a { color: var(--cobalt); font-weight: 700; }
.legal address { font-style: normal; margin-top: 12px; line-height: 1.7; }
.legal a.back { display: inline-flex; margin-bottom: 24px; color: #fff; }
.legal .stand { margin-top: 48px; font-size: .95rem; color: #5b6580; }
/* Platzhalter – gut sichtbar, damit nichts vergessen wird */
.todo { background: var(--yellow); color: var(--midnight); padding: 1px 6px; border-radius: 6px; font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cream); padding: 48px 0 calc(40px + env(safe-area-inset-bottom, 0px)); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.footer-brand img { width: 200px; height: auto; }
.footer-brand p { margin-top: 8px; font-family: var(--font-display); font-weight: 500; color: var(--deep); }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-links a {
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 14px; border-radius: 14px;
  font-weight: 700; color: var(--midnight); text-decoration: none;
}
.footer-links a:hover { background: rgba(16, 26, 58, .07); text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .move:hover, .song-card:hover, .btn:hover { transform: none !important; }
}
