/* =========================================================
   Circa Neun — Aus dem Herzen
   Farben & Stimmung aus dem Albumcover: Himmel, Wiese, Blüten
   ========================================================= */

:root {
  /* Himmel */
  --sky-top: #a8d4f2;
  --sky-mid: #7fbbe8;
  --sky-deep: #2f6fbd;
  --sky-pale: #dcecfa;

  /* Papier / Creme */
  --cream: #fdf7ec;
  --paper: #f8f0df;
  --paper-warm: #f2e6cf;

  /* Blüten */
  --coral: #ef5a4c;
  --coral-deep: #d8402f;
  --peach: #f8a487;
  --pink: #f6b3c2;
  --lavender: #a99ce0;
  --butter: #f7cf7a;

  /* Grün */
  --green: #6da05a;
  --green-deep: #2f5b3c;
  --green-soft: #a9c98c;
  --green-ink: #24402f;

  /* Text */
  --ink: #26382e;
  --ink-soft: rgba(38, 56, 46, .72);
  --ink-faint: rgba(38, 56, 46, .5);

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 50px -22px rgba(30, 60, 45, .45);
  --shadow-lift: 0 30px 70px -30px rgba(30, 60, 45, .55);

  --wrap: 1180px;
  --gutter: clamp(1.15rem, 5vw, 3rem);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-script: "Caveat", "Segoe Script", cursive;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .68, .32, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, p, figure, ol, ul { margin: 0; }
ol, ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Papierkorn über der ganzen Seite */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: .3;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--cream); color: var(--ink);
  padding: .7rem 1.1rem; border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2.5px solid var(--coral); outline-offset: 3px; border-radius: 6px; }

/* ---------- Typografie ---------- */
.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

.kicker {
  font-family: var(--font-script);
  font-size: clamp(1.35rem, 3.4vw, 1.9rem);
  color: var(--coral);
  line-height: 1;
  margin-bottom: .25rem;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .74rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-deep);
  background: rgba(253, 247, 236, .72);
  border: 1px solid rgba(47, 91, 60, .18);
  padding: .42rem .95rem; border-radius: 100px;
  backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(239, 90, 76, .22);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(239, 90, 76, .25); }
  50%      { box-shadow: 0 0 0 7px rgba(239, 90, 76, 0); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  white-space: nowrap;
  padding: .95rem 1.9rem;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s var(--ease);
  will-change: transform;
}
.btn-primary {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 0 14px 30px -12px rgba(216, 64, 47, .65);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -14px rgba(216, 64, 47, .7); background: var(--coral-deep); }
.btn-primary:active { transform: translateY(-1px); }

.btn-mini {
  padding: .55rem 1.2rem; font-size: .84rem;
  background: rgba(239, 90, 76, .1);
  color: var(--coral-deep);
  border-color: rgba(239, 90, 76, .3);
}
.btn-mini:hover { background: var(--coral); color: var(--cream); border-color: transparent; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: .55rem 0;
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.site-header.is-stuck {
  background: rgba(253, 247, 236, .82);
  backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 10px 30px -22px rgba(30, 60, 45, .8);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 56px; }

.brand { display: inline-flex; align-items: center; gap: .6rem; margin-right: auto; }
.brand-mark { width: 30px; height: 30px; color: var(--coral); flex: none; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 500; letter-spacing: .01em;
  color: var(--green-ink);
}

.site-nav { display: flex; gap: 1.7rem; margin-right: 1.4rem; }
.site-nav a {
  position: relative; font-size: .92rem; font-weight: 500;
  color: var(--ink-soft); padding: .35rem 0;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: var(--coral); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); }
.site-nav a.is-active { color: var(--coral-deep); }

/* Sprachumschalter */
.lang-switch {
  display: flex; gap: .12rem;
  margin-right: .8rem; padding: .2rem;
  border-radius: 100px;
  background: rgba(253, 247, 236, .55);
  border: 1px solid rgba(47, 91, 60, .16);
  backdrop-filter: blur(6px);
}
.lang-switch a {
  font-size: .72rem; font-weight: 600; letter-spacing: .07em;
  padding: .32rem .58rem; border-radius: 100px;
  color: var(--ink-soft);
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.lang-switch a:hover { color: var(--green-ink); background: rgba(255, 255, 255, .7); }
.lang-switch a.is-current { background: var(--green-deep); color: var(--cream); }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

/* im Kopf reicht auf schmalen Displays Marke + Sprache –
   der große Button steht direkt darunter im Hero */
@media (max-width: 620px) {
  .site-header .btn-mini { display: none; }
  .lang-switch { margin-right: 0; }
}

@media (max-width: 430px) {
  .header-inner { gap: .5rem; }
  .brand-name { font-size: 1rem; }
  .brand-mark { width: 26px; height: 26px; }
  .lang-switch a { padding: .3rem .5rem; font-size: .7rem; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: clamp(5.5rem, 11vh, 7rem) 0 clamp(10rem, 27vh, 15rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-sky {
  position: absolute; inset: 0; z-index: -3;
  background:
    radial-gradient(120% 80% at 78% 6%, rgba(255, 244, 214, .95) 0%, rgba(255, 244, 214, 0) 45%),
    linear-gradient(178deg, var(--sky-pale) 0%, var(--sky-top) 26%, var(--sky-mid) 62%, #9fd0e8 82%, #cfe6d2 100%);
}
/* sanfter Tiefenschleier, damit die helle Schrift auf dem Himmel lesbar bleibt */
.hero-sky::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(102deg,
    rgba(21, 64, 124, .5) 0%,
    rgba(21, 64, 124, .3) 34%,
    rgba(21, 64, 124, .06) 55%,
    rgba(21, 64, 124, 0) 68%);
}
.hero-sky .sun {
  position: absolute; top: 6%; right: 10%;
  width: clamp(160px, 26vw, 300px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 236, 186, .9) 0%, rgba(255, 226, 160, .35) 45%, transparent 70%);
  filter: blur(6px);
  animation: sunBreath 12s ease-in-out infinite;
}
@keyframes sunBreath { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.07); opacity: 1; } }

.cloud {
  position: absolute;
  background: radial-gradient(closest-side, rgba(255, 255, 255, .85), rgba(255, 255, 255, 0));
  filter: blur(14px);
  border-radius: 50%;
}
.cloud-1 { width: 46vw; height: 16vh; top: 12%; left: -8%; animation: drift 46s linear infinite; }
.cloud-2 { width: 34vw; height: 12vh; top: 32%; left: 40%; opacity: .7; animation: drift 66s linear infinite reverse; }
.cloud-3 { width: 52vw; height: 14vh; top: 5%; left: 55%; opacity: .55; animation: drift 88s linear infinite; }
@keyframes drift { from { transform: translateX(-6vw); } to { transform: translateX(10vw); } }

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-copy > * + * { margin-top: .9rem; }

.hero-artist {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 4.4vw, 2.5rem);
  color: var(--cream);
  line-height: 1;
  text-shadow: 0 2px 14px rgba(30, 70, 120, .35);
  margin-top: 1.25rem !important;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.9rem, min(9vw, 12.5vh), 5.6rem);
  line-height: .92;
  letter-spacing: -.035em;
  color: var(--cream);
  text-shadow: 0 6px 34px rgba(24, 62, 108, .38), 0 1px 0 rgba(255, 255, 255, .3);
  font-variation-settings: "SOFT" 60, "WONK" 1;
  margin-top: .1rem !important;
}

.hero-tagline {
  font-family: var(--font-display);
  font-style: italic; font-weight: 300;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: rgba(253, 247, 236, .95);
  text-shadow: 0 2px 12px rgba(24, 62, 108, .35);
}

.hero-text {
  max-width: 44ch;
  color: rgba(253, 247, 236, .92);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  text-shadow: 0 1px 10px rgba(24, 62, 108, .35);
}

.hero-actions {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin-top: 1.7rem !important;
}
.hero-links {
  display: flex; align-items: center; gap: .7rem;
  font-size: .9rem; color: rgba(253, 247, 236, .85);
}
.hero-links a { border-bottom: 1px solid rgba(253, 247, 236, .45); padding-bottom: 2px; transition: color .3s, border-color .3s; }
.hero-links a:hover { color: #fff; border-color: #fff; }

/* Cover */
.hero-art { display: flex; justify-content: center; perspective: 1200px; }
.cover {
  position: relative;
  width: min(100%, 430px, 54vh);
  border-radius: var(--radius);
  padding: 12px 12px 0;
  background: linear-gradient(160deg, rgba(255, 255, 255, .85), rgba(255, 255, 255, .5));
  box-shadow: var(--shadow-lift), 0 0 0 1px rgba(255, 255, 255, .5) inset;
  backdrop-filter: blur(3px);
  transform: rotate(-1.4deg);
  transition: transform .6s var(--ease);
  animation: coverFloat 9s ease-in-out infinite;
}
@keyframes coverFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}
.cover img { border-radius: calc(var(--radius) - 10px); box-shadow: 0 10px 30px -18px rgba(20, 50, 40, .8); }
.cover-caption {
  font-size: .72rem; letter-spacing: .17em; text-transform: uppercase;
  color: var(--green-deep); opacity: .75;
  text-align: center; padding: .75rem 0 .8rem;
}

/* Blütenblätter */
.petals { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute; top: -8vh;
  border-radius: 60% 20% 55% 25%;
  opacity: .75;
  animation: fall linear infinite;
  will-change: transform;
}
@keyframes fall {
  0%   { transform: translate3d(0, -10vh, 0) rotate(0deg); opacity: 0; }
  8%   { opacity: .8; }
  100% { transform: translate3d(var(--drift, 40px), 118vh, 0) rotate(680deg); opacity: 0; }
}

/* Wiese */
.meadow {
  position: absolute; left: 0; right: 0; width: 100%;
  pointer-events: none; isolation: isolate;
  opacity: 0; transition: opacity .9s var(--ease);   /* wird nach dem Zeichnen eingeblendet */
}
.meadow.is-painted { opacity: 1; }
.meadow-hero { bottom: -1px; height: clamp(190px, 29vh, 330px); z-index: -1; }
.meadow-footer { bottom: -1px; height: clamp(155px, 23vh, 260px); }

.scroll-hint {
  position: absolute; left: 50%; bottom: .55rem;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .55rem;
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(253, 247, 236, .92);
  text-shadow: 0 1px 5px rgba(18, 45, 28, .9);
  z-index: 3;
  flex-direction: column-reverse;
}
.scroll-line {
  width: 1.5px; height: 26px;
  background: linear-gradient(to top, rgba(253, 247, 236, .85), rgba(253, 247, 236, 0));
  animation: sink 2.4s var(--ease) infinite;
}
@keyframes sink { 0% { transform: scaleY(.2); transform-origin: top; } 60%, 100% { transform: scaleY(1); transform-origin: top; } }

@media (max-width: 860px) {
  .hero {
    align-items: flex-start;
    padding: clamp(4.6rem, 9vh, 5.6rem) 0 clamp(7rem, 20vh, 10rem);
    text-align: center;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 1.9rem; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; order: 2; }
  .hero-copy > * + * { margin-top: .75rem; }
  .hero-art { order: 1; }
  .cover { width: min(64%, 260px); transform: rotate(-1.2deg); }
  .cover-caption { padding: .6rem 0 .65rem; font-size: .6rem; letter-spacing: .12em; }
  .hero-artist { margin-top: .9rem !important; }
  .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; margin-top: 1.3rem !important; }
  .hero-links { display: none; }
  .scroll-hint { display: none; }
  .hero-sky::after {
    background: radial-gradient(130% 62% at 50% 70%, rgba(21, 64, 124, .45) 0%, rgba(21, 64, 124, .12) 55%, transparent 75%);
  }
}

@media (max-width: 420px) {
  .cover { width: min(58%, 230px); }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  position: relative; z-index: 2;
  background: var(--green-deep);
  color: var(--cream);
  padding: .85rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(253, 247, 236, .12);
  border-bottom: 1px solid rgba(253, 247, 236, .12);
}
.marquee-track { display: flex; width: max-content; animation: slide 38s linear infinite; }
.marquee-group {
  display: inline-flex; align-items: center; gap: 1.4rem;
  padding-right: 1.4rem;
  font-size: clamp(.82rem, 1.6vw, 1rem);
  letter-spacing: .16em; text-transform: uppercase;
  white-space: nowrap;
}
.marquee-group b { font-family: var(--font-display); font-weight: 500; text-transform: none; letter-spacing: .02em; font-size: 1.18em; font-style: italic; }
.marquee-group i { color: var(--peach); font-style: normal; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   SECTIONS
   ========================================================= */
.section { position: relative; padding: clamp(4.5rem, 11vw, 8.5rem) 0; }

.blob {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: .5; pointer-events: none;
}
.blob-a { width: 42vw; height: 42vw; max-width: 560px; max-height: 560px; top: -6%; left: -12%; background: rgba(169, 201, 140, .55); }
.blob-b { width: 34vw; height: 34vw; max-width: 460px; max-height: 460px; bottom: -8%; right: -10%; background: rgba(246, 179, 194, .5); }

/* ---------- About ---------- */
.about { background: var(--cream); overflow: hidden; }
.about-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 4.5rem);
}
.about-head { position: sticky; top: 110px; align-self: start; }
.about-head .section-title { color: var(--green-ink); }
.sprig { display: block; width: 170px; margin-top: 1.8rem; color: var(--green); opacity: .55; }

.about-text > * + * { margin-top: 1.35rem; }
.about-text p { max-width: 62ch; color: var(--ink-soft); font-size: clamp(1rem, 1.4vw, 1.09rem); }
.about-text .lead {
  font-family: var(--font-display);
  font-weight: 300; font-style: normal;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  line-height: 1.45; color: var(--ink);
}
.about-text em { font-style: italic; color: var(--coral-deep); }
.about-text strong { font-weight: 600; color: var(--coral-deep); }

/* Schlusszeile des Abschnitts */
.about-text .closing {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--green-ink);
  margin-top: 1.6rem;
}

@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-head { position: static; }
  .sprig { margin-top: 1rem; }
}

/* ---------- Tracklist ---------- */
.tracks {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(169, 201, 140, .35), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
}
.tracks-head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; margin-bottom: clamp(2rem, 5vw, 3.2rem);
}
.tracks-heading {
  font-size: clamp(1.9rem, 4.6vw, 2.9rem);
  color: var(--coral);
  margin-bottom: 0;
}
.tracks-note {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  color: var(--ink-soft); font-size: clamp(.95rem, 1.5vw, 1.08rem); line-height: 1.5;
  text-align: right;
}
@media (max-width: 640px) { .tracks-note { text-align: left; } }

.track-list { border-top: 1px solid rgba(47, 91, 60, .2); }
.track {
  position: relative;
  display: grid;
  grid-template-columns: 4.2rem 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: clamp(.95rem, 2.2vw, 1.35rem) .6rem;
  border-bottom: 1px solid rgba(47, 91, 60, .16);
  transition: padding-left .4s var(--ease), background-color .4s var(--ease);
}
.track::before {
  content: ""; position: absolute; inset: 0 -.6rem;
  background: linear-gradient(90deg, rgba(239, 90, 76, .09), rgba(239, 90, 76, 0) 70%);
  opacity: 0; transition: opacity .4s var(--ease);
  border-radius: 10px;
}
.track:hover::before { opacity: 1; }
.track:hover { padding-left: 1.35rem; }

.track-num {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.6vw, 1.05rem);
  color: var(--coral); opacity: .85;
  font-variant-numeric: tabular-nums;
}
.track-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 3vw, 1.85rem);
  line-height: 1.2; letter-spacing: -.015em;
  color: var(--green-ink);
  transition: color .35s var(--ease);
}
.track:hover .track-title { color: var(--coral-deep); }

.track-flower {
  width: 22px; height: 22px; flex: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23ef5a4c'%3E%3Cellipse cx='12' cy='5.5' rx='3' ry='4.6'/%3E%3Cellipse cx='12' cy='18.5' rx='3' ry='4.6'/%3E%3Cellipse cx='5.5' cy='12' rx='4.6' ry='3'/%3E%3Cellipse cx='18.5' cy='12' rx='4.6' ry='3'/%3E%3C/g%3E%3Ccircle cx='12' cy='12' r='3' fill='%23f7cf7a'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0; transform: scale(.4) rotate(-40deg);
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.track:hover .track-flower { opacity: 1; transform: scale(1) rotate(0deg); }

.track.is-title .track-title { font-style: italic; }
.track.is-title .track-flower { opacity: .55; transform: scale(.85) rotate(0deg); }

/* ---------- Streaming ---------- */
.listen {
  position: relative;
  color: var(--cream);
  background:
    radial-gradient(100% 70% at 20% 0%, rgba(109, 160, 90, .55), transparent 60%),
    radial-gradient(80% 60% at 90% 100%, rgba(47, 111, 189, .5), transparent 60%),
    var(--green-deep);
  overflow: hidden;
}
.listen-head { max-width: 46rem; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }
.listen-head .kicker { color: var(--peach); }
.listen-head .section-title { color: var(--cream); }
.listen-text { margin-top: 1.1rem; color: rgba(253, 247, 236, .8); max-width: 52ch; }
.listen-text em { font-style: italic; color: var(--butter); }

.platforms { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1rem; }
.platform {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(253, 247, 236, .07);
  border: 1px solid rgba(253, 247, 236, .16);
  backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), background-color .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.platform:hover {
  transform: translateY(-5px);
  background: rgba(253, 247, 236, .13);
  border-color: rgba(253, 247, 236, .34);
  box-shadow: var(--shadow-soft);
}
.platform-icon { width: 42px; height: 42px; flex: none; }
.platform-icon svg { width: 100%; height: 100%; }
.platform[data-platform="spotify"] .platform-icon { color: #1db954; }
.platform[data-platform="apple"]   .platform-icon { color: #fa2d48; }
.platform[data-platform="youtube"] .platform-icon { color: #ff0033; }

.platform-body { display: flex; flex-direction: column; margin-right: auto; }
.platform-body b { font-family: var(--font-display); font-weight: 500; font-size: 1.14rem; line-height: 1.25; }
.platform-body span { font-size: .84rem; color: rgba(253, 247, 236, .65); }
.platform-arrow { font-size: 1.2rem; opacity: .5; transition: transform .4s var(--ease), opacity .4s var(--ease); }
.platform:hover .platform-arrow { transform: translateX(5px); opacity: 1; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  position: relative;
  padding: clamp(4rem, 9vw, 6rem) 0 clamp(9rem, 18vw, 13rem);
  background: linear-gradient(180deg, #cfe4d1 0%, var(--cream) 38%, #e7efdc 100%);
  overflow: hidden;
}
.footer-inner {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 2.5rem;
}
.footer-script {
  font-family: var(--font-script);
  font-size: clamp(3.4rem, 12vw, 7.5rem);
  line-height: .88;
  color: var(--green-deep);
  letter-spacing: -.01em;
}
.footer-meta { text-align: right; display: flex; flex-direction: column; gap: .35rem; align-items: flex-end; }
.footer-artist { font-family: var(--font-display); font-size: 1.25rem; color: var(--green-ink); }
.footer-label { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); }
.footer-links { display: flex; gap: 1.1rem; margin-top: .6rem; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { font-size: .88rem; color: var(--ink-soft); border-bottom: 1px solid rgba(38, 56, 46, .25); padding-bottom: 2px; transition: color .3s, border-color .3s; }
.footer-links a:hover { color: var(--coral-deep); border-color: var(--coral); }
.copyright { margin-top: .9rem; font-size: .78rem; color: var(--ink-faint); }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-meta { text-align: left; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
}

/* =========================================================
   REVEAL
   ========================================================= */
/* ohne JS bleibt alles sichtbar */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* =========================================================
   MOTION / PRINT
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .petals { display: none; }
}

@media print {
  .site-header, .petals, .scroll-hint, .marquee, body::after { display: none !important; }
  body { background: #fff; color: #000; }
}
