/* ============================================================
   VALENTINO AMATO — Amorazza
   Designsystem: "Goldene Stunde am Hafen"
   Nachthimmel aus Wein & Pflaume, rosé-goldene Schwungschrift,
   Rosenblätter, Laternenlicht. Das Herz ist das Markenzeichen.
   ============================================================ */

/* ---------- Design-Tokens ---------- */
:root {
  /* Farben – Nacht & Rosé-Gold */
  --night:        #160b14;
  --night-2:      #20101c;
  --plum:         #2c1422;
  --wine:         #4a1c2e;
  --ember:        #b85a3c;
  --rosegold:     #e3a07c;
  --rosegold-2:   #f0c2a2;
  --blush:        #f6dccb;
  --cream:        #f8f0e7;
  --muted:        #cbab9f;
  --line:         rgba(227, 160, 124, 0.22);
  --line-strong:  rgba(227, 160, 124, 0.45);
  --glow:         rgba(227, 160, 124, 0.30);

  /* Schrift */
  --f-display: "Pinyon Script", cursive;
  --f-caps:    "Cinzel", serif;
  --f-serif:   "Cormorant Garamond", Georgia, serif;
  --f-ui:      "Montserrat", system-ui, -apple-system, sans-serif;

  /* Maße */
  --maxw: 1140px;
  --gut: clamp(1.25rem, 4vw, 3rem);
  --radius: 14px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-ui);
  color: var(--cream);
  background: var(--night);
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--rosegold-2); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--blush); }
:focus-visible {
  outline: 2px solid var(--rosegold-2);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ---------- Atmosphäre: durchgehender Hintergrund ---------- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 80% at 78% 12%, rgba(184,90,60,0.38), transparent 55%),
    radial-gradient(90% 70% at 20% 90%, rgba(74,28,46,0.55), transparent 60%),
    linear-gradient(170deg, var(--night-2) 0%, var(--plum) 45%, var(--night) 100%);
}
/* feines Bokeh-Glitzern */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(2px 2px at 12% 70%, rgba(240,194,162,0.5), transparent),
    radial-gradient(2px 2px at 28% 82%, rgba(240,194,162,0.35), transparent),
    radial-gradient(1.5px 1.5px at 46% 76%, rgba(255,220,190,0.4), transparent),
    radial-gradient(2px 2px at 63% 86%, rgba(240,194,162,0.4), transparent),
    radial-gradient(1.5px 1.5px at 80% 72%, rgba(255,220,190,0.35), transparent),
    radial-gradient(2px 2px at 90% 84%, rgba(240,194,162,0.3), transparent);
  opacity: .8;
}

/* ---------- Schwebende Rosenblätter (Signature) ---------- */
.petals { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute;
  top: -8%;
  width: 16px; height: 16px;
  background: var(--ember);
  opacity: .0;
  border-radius: 0 100% 0 100%;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.3));
  animation: fall linear infinite;
}
.petal:nth-child(odd) { background: #9c3a3f; }
.petal:nth-child(3n) { background: var(--rosegold); width: 12px; height: 12px; }
.petal:nth-child(1){ left: 8%;  animation-duration: 17s; animation-delay: 0s;  }
.petal:nth-child(2){ left: 22%; animation-duration: 22s; animation-delay: 4s;  }
.petal:nth-child(3){ left: 38%; animation-duration: 19s; animation-delay: 9s;  }
.petal:nth-child(4){ left: 54%; animation-duration: 24s; animation-delay: 2s;  }
.petal:nth-child(5){ left: 69%; animation-duration: 20s; animation-delay: 11s; }
.petal:nth-child(6){ left: 84%; animation-duration: 23s; animation-delay: 6s;  }
.petal:nth-child(7){ left: 93%; animation-duration: 18s; animation-delay: 14s; }
@keyframes fall {
  0%   { transform: translateY(-10vh) translateX(0) rotate(0deg);   opacity: 0; }
  10%  { opacity: .85; }
  50%  { transform: translateY(50vh) translateX(40px) rotate(180deg); }
  90%  { opacity: .7; }
  100% { transform: translateY(110vh) translateX(-30px) rotate(360deg); opacity: 0; }
}

/* ---------- Layout-Helfer ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { position: relative; z-index: 1; padding-block: clamp(4rem, 9vw, 7.5rem); }
.center { text-align: center; }

/* Herz-Trennzeichen — das Markenzeichen */
.heartrule {
  display: flex; align-items: center; justify-content: center;
  gap: .9rem; margin: 1.1rem auto; color: var(--rosegold);
}
.heartrule::before, .heartrule::after {
  content: ""; height: 1px; width: clamp(40px, 12vw, 110px);
  background: linear-gradient(90deg, transparent, var(--line-strong));
}
.heartrule::after { background: linear-gradient(90deg, var(--line-strong), transparent); }
.heartrule svg { width: 15px; height: 15px; fill: var(--rosegold); }

/* ---------- Typo-Bausteine ---------- */
.eyebrow {
  font-family: var(--f-caps);
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--rosegold-2);
  font-weight: 500;
  margin: 0;
  padding-left: .42em; /* optischer Ausgleich für Letter-Spacing */
}
.script {
  font-family: var(--f-display);
  font-weight: 400;
  color: var(--rosegold);
  line-height: .9;
  text-shadow: 0 2px 30px var(--glow);
}
.section-title {
  font-family: var(--f-serif);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  margin: 0 0 .4rem;
  color: var(--cream);
}
.lead {
  font-family: var(--f-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--blush);
  font-weight: 400;
  font-style: italic;
}
p { color: var(--muted); }
.section-title + p, .lead + p { margin-top: 1rem; }

/* ---------- Kopfzeile ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(22,11,20,.82), rgba(22,11,20,.45));
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 68px;
}
.brand {
  font-family: var(--f-caps);
  letter-spacing: .26em;
  font-size: .92rem;
  color: var(--cream);
  text-transform: uppercase;
  white-space: nowrap;
}
.brand b { color: var(--rosegold-2); font-weight: 600; }
.nav-links { display: flex; gap: clamp(1rem, 3vw, 2.4rem); align-items: center; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--f-ui);
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blush); }
.nav-links a[aria-current="page"] { border-bottom: 1px solid var(--rosegold); padding-bottom: 2px; }
.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-ui); font-size: .82rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .92em 1.8em; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rosegold), var(--ember));
  color: #2a1018;
  box-shadow: 0 8px 30px -8px var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px -8px var(--glow); color: #2a1018; }
.btn-ghost {
  background: transparent; color: var(--blush);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(227,160,124,.1); color: var(--blush); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }

/* ============================================================
   HERO (Startseite)
   ============================================================ */
.hero {
  position: relative; z-index: 1;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(3rem, 7vw, 5rem);
}
.hero-copy { max-width: 36rem; }
.hero .name {
  font-family: var(--f-caps);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--blush);
  margin: 0 0 .2rem;
  padding-left: .42em;
}
.hero .title {
  font-family: var(--f-display);
  font-size: clamp(4.5rem, 13vw, 8.5rem);
  color: var(--rosegold);
  line-height: .82;
  margin: .2rem 0 .6rem;
  text-shadow: 0 4px 50px var(--glow);
}
.hero .tagline {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  color: var(--blush);
  letter-spacing: .04em;
  margin: 0 0 2rem;
}
.hero .heartrule { justify-content: flex-start; margin-left: 0; }
.hero .heartrule::before { display: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-portrait {
  position: relative;
  justify-self: end;
}
.hero-portrait img {
  width: min(440px, 100%);
  border-radius: 220px 220px 18px 18px;
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.8), 0 0 70px -20px var(--glow);
}
.hero-portrait::after {
  content: ""; position: absolute; inset: -14px;
  border: 1px solid var(--line); border-radius: 230px 230px 26px 26px;
  pointer-events: none;
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  font-family: var(--f-ui); font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--muted); display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 1;
}
.scroll-cue span { width: 1px; height: 34px; background: linear-gradient(var(--rosegold), transparent); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: .3; transform: scaleY(.7);} 50% { opacity: 1; transform: scaleY(1);} }

/* ============================================================
   Über Valentino
   ============================================================ */
.bio { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.bio-figure { position: relative; }
.bio-figure img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 24px 60px -28px rgba(0,0,0,.8); }
.bio-figure figcaption {
  font-family: var(--f-serif); font-style: italic; color: var(--muted);
  font-size: .95rem; margin-top: .75rem; text-align: center;
}
.bio p + p { margin-top: 1.1rem; }
.signature {
  font-family: var(--f-display); font-size: 2.6rem; color: var(--rosegold-2);
  margin-top: 1.4rem; line-height: 1;
}

/* Werte / kleine Karten */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.fact {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.2rem; background: rgba(44,20,34,.4); text-align: center;
}
.fact .num { font-family: var(--f-display); font-size: 2.6rem; color: var(--rosegold); line-height: 1; }
.fact .lbl { font-family: var(--f-ui); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; }

/* ============================================================
   Single-Feature "Amorazza"
   ============================================================ */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  border: 1px solid var(--line); border-radius: 22px;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: linear-gradient(135deg, rgba(74,28,46,.45), rgba(22,11,20,.3));
}
.feature-cover img { border-radius: var(--radius); border: 1px solid var(--line-strong); box-shadow: 0 30px 70px -28px rgba(0,0,0,.85); }
.feature .label { font-family: var(--f-ui); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--rosegold-2); }
.feature .track-title { font-family: var(--f-display); font-size: clamp(3rem, 7vw, 4.6rem); color: var(--rosegold); line-height: .9; margin: .3rem 0 .8rem; }

/* ============================================================
   CTA-Band
   ============================================================ */
.cta-band {
  text-align: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: rgba(74,28,46,.28);
}
.cta-band .script { font-size: clamp(3rem, 9vw, 5.5rem); }

/* ============================================================
   DOWNLOAD-Seite
   ============================================================ */
.page-head {
  position: relative; z-index: 1; text-align: center;
  padding-block: clamp(3.5rem, 8vw, 6rem) clamp(2rem, 4vw, 3rem);
}
.page-head .eyebrow { display: inline-block; }
.page-head h1.script { font-size: clamp(3.5rem, 11vw, 6.5rem); margin: .2rem 0; }
.page-head .lead { display: block; max-width: 40rem; margin-inline: auto; }

.songlist { display: grid; gap: 1.5rem; }
.song {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  border: 1px solid var(--line); border-radius: 18px;
  padding: 1.1rem 1.3rem;
  background: linear-gradient(135deg, rgba(44,20,34,.55), rgba(22,11,20,.35));
  transition: border-color .25s ease, transform .25s ease;
}
.song:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.song-cover { width: 110px; height: 110px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.song-cover img { width: 100%; height: 100%; object-fit: cover; }
.song-meta h3 { font-family: var(--f-serif); font-weight: 600; font-size: 1.7rem; margin: 0; color: var(--cream); }
.song-meta .sub { font-family: var(--f-ui); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: .2rem; }
.song-meta .audio { margin-top: .8rem; }
.song-meta audio { width: 100%; max-width: 360px; height: 38px; filter: sepia(.25) saturate(1.2) hue-rotate(-10deg); }
.song-actions { display: flex; flex-direction: column; gap: .55rem; align-items: stretch; min-width: 170px; }
.song-actions .fmt { font-family: var(--f-ui); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); text-align: center; }

.note {
  margin-top: 2.5rem;
  border: 1px dashed var(--line-strong); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; background: rgba(184,90,60,.08);
  font-size: .92rem; color: var(--muted);
}
.note strong { color: var(--blush); font-weight: 600; }

/* ============================================================
   LEGAL-Seiten
   ============================================================ */
.legal-main { position: relative; z-index: 1; }
.legal {
  max-width: 760px; margin-inline: auto;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
.legal h1 { font-family: var(--f-serif); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3rem); color: var(--cream); margin: 0 0 .3rem; }
.legal h2 { font-family: var(--f-serif); font-weight: 600; font-size: 1.5rem; color: var(--rosegold-2); margin: 2.4rem 0 .6rem; }
.legal h3 { font-family: var(--f-ui); font-weight: 500; font-size: 1rem; letter-spacing: .04em; color: var(--blush); margin: 1.4rem 0 .3rem; }
.legal p, .legal li { color: var(--muted); font-size: .98rem; }
.legal a { color: var(--rosegold-2); text-decoration: underline; text-underline-offset: 3px; }
.legal ul { padding-left: 1.2rem; }
.legal .updated { font-family: var(--f-ui); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.legal address { font-style: normal; color: var(--blush); line-height: 1.9; }
.fill { /* sichtbarer Platzhalter zum Ausfüllen */
  background: rgba(184,90,60,.22); color: var(--blush);
  padding: .05em .5em; border-radius: 5px; border: 1px dashed var(--line-strong);
  font-family: var(--f-ui); font-size: .9em; white-space: nowrap;
}
.legal-back { display: inline-block; margin-top: 3rem; font-size: .85rem; letter-spacing: .08em; }

/* ============================================================
   Fußzeile
   ============================================================ */
.site-footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  background: rgba(22,11,20,.7);
  padding-block: clamp(2.5rem, 6vw, 4rem);
  margin-top: clamp(3rem, 8vw, 6rem);
}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; align-items: flex-start; }
.footer-brand .wordmark { font-family: var(--f-display); font-size: 2.6rem; color: var(--rosegold); line-height: 1; }
.footer-brand .name { font-family: var(--f-caps); letter-spacing: .3em; font-size: .8rem; text-transform: uppercase; color: var(--muted); }
.footer-nav { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--f-ui); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--blush); margin: 0 0 .9rem; font-weight: 600; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.footer-col a { font-size: .9rem; color: var(--muted); }
.footer-col a:hover { color: var(--blush); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; font-size: .78rem; color: var(--muted); }
.footer-bottom .disc { max-width: 46rem; }

/* ============================================================
   Responsiv
   ============================================================ */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-copy { max-width: none; }
  .hero .heartrule { justify-content: center; }
  .hero .heartrule::before { display: block; }
  .hero-actions { justify-content: center; }
  .hero-portrait { justify-self: center; order: -1; }
  .bio, .feature { grid-template-columns: 1fr; }
  .bio-figure { max-width: 420px; margin-inline: auto; }
  .scroll-cue { display: none; }
}
@media (max-width: 640px) {
  .nav-links {
    position: fixed; inset: 68px 0 auto 0;
    flex-direction: column; gap: 0;
    background: rgba(22,11,20,.97); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .3s ease;
    padding: .5rem 0;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: .9rem; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; gap: 4px; justify-content: center;
    background: none; border: 0; cursor: pointer; padding: 8px;
  }
  .nav-toggle span { width: 24px; height: 2px; background: var(--blush); transition: .25s; }
  .facts { grid-template-columns: 1fr; }
  .song { grid-template-columns: 80px 1fr; }
  .song-cover { width: 80px; height: 80px; }
  .song-actions { grid-column: 1 / -1; min-width: 0; flex-direction: row; }
  .song-actions .btn { flex: 1; justify-content: center; }
  .song-actions .fmt { display: none; }
  .footer-nav { gap: 2rem; }
}

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .petals { display: none; }
}
