/* ============================================================
   REMORIA – Premium Erinnerungs-Songs
   Sales Page Styles  ·  mobile-first
   ============================================================ */

:root {
  /* Farben */
  --night-900: #0B1A2A;   /* dunkles Nachtblau (Basis) */
  --night-800: #122236;
  --night-700: #1E2A44;   /* helleres Nachtblau (Karten) */
  --night-600: #26354f;
  --gold:      #D4AF37;   /* warmes Gold */
  --gold-soft: #E6C766;
  --gold-deep: #B8932B;
  --cream:     #F8F5EF;   /* Cremeweiß */
  --white:     #FFFFFF;
  --rose:      #D9A5A5;   /* sanfter Rosé-Akzent */

  --text:        #F2EEE6;
  --text-muted:  #aeb8c7;
  --line:        rgba(212, 175, 55, 0.18);

  /* Typo */
  --serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 24px 60px -20px rgba(0,0,0,0.55);
  --shadow-soft: 0 12px 30px -12px rgba(0,0,0,0.45);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(212,175,55,0.10), transparent 60%),
    radial-gradient(900px 700px at 0% 20%, rgba(217,165,165,0.06), transparent 55%),
    linear-gradient(180deg, var(--night-900), var(--night-800) 60%, var(--night-900));
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; }

p { margin: 0 0 1rem; }

em { font-style: italic; color: var(--gold-soft); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--text-muted); }
.small { font-size: 0.9rem; }
.gold { color: var(--gold); }
.mt-l { margin-top: 2rem; }
.mt-xl { margin-top: 3rem; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0 0 1rem;
}
.eyebrow.gold { color: var(--gold); }

.section-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: 0.3px;
}
.section-title.left { text-align: left; }

.lead {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--cream);
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.2px;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: var(--night-900);
  box-shadow: 0 10px 30px -10px rgba(212,175,55,0.6);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px rgba(212,175,55,0.75); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn-sm { padding: 0.65rem 1.15rem; font-size: 0.86rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(11, 26, 42, 0.72);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; }
.brand-logo-img { display: block; width: 46px; height: 46px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.32em;
  font-size: 1.15rem;
  color: var(--cream);
}
.brand-name.gold { color: var(--gold); }
.brand-tag { font-size: 0.62rem; letter-spacing: 0.08em; color: var(--text-muted); }

.site-nav { display: none; gap: 1.6rem; }
.site-nav a { font-size: 0.92rem; color: var(--text-muted); transition: color .2s; }
.site-nav a:hover { color: var(--gold); }

.btn-header { padding: 0.65rem 1.25rem; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 64px 0 72px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.9), rgba(212,175,55,0));
  filter: blur(1px);
  opacity: 0.5;
  animation: float 9s ease-in-out infinite;
}
.particle.p1 { width: 10px; height: 10px; top: 18%; left: 12%; animation-delay: 0s; }
.particle.p2 { width: 6px;  height: 6px;  top: 30%; left: 80%; animation-delay: 1.5s; }
.particle.p3 { width: 14px; height: 14px; top: 65%; left: 22%; animation-delay: 3s; }
.particle.p4 { width: 8px;  height: 8px;  top: 75%; left: 70%; animation-delay: 2s; }
.particle.p5 { width: 5px;  height: 5px;  top: 45%; left: 50%; animation-delay: 4s; }
.particle.p6 { width: 11px; height: 11px; top: 12%; left: 60%; animation-delay: 0.8s; }
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.35; }
  50%     { transform: translateY(-22px) scale(1.25); opacity: 0.75; }
}

.hero-grid { position: relative; display: grid; gap: 48px; }
.hero-title {
  font-size: clamp(2.3rem, 8vw, 4.2rem);
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 1.8rem; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  font-size: 0.82rem; color: var(--text-muted);
  letter-spacing: 0.04em; margin: 0;
}
.hero-trust span { white-space: nowrap; }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; }
.memory-stack {
  position: relative;
  width: min(420px, 90vw);
  height: 420px;
}
.memory-card { position: absolute; transition: transform .4s ease; }
.polaroid {
  background: var(--cream);
  padding: 10px 10px 34px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  width: 170px;
}
.polaroid-img { height: 150px; border-radius: 3px; }
.polaroid-caption {
  display: block; text-align: center; margin-top: 10px;
  font-family: var(--serif); color: var(--night-900);
  font-style: italic; font-size: 0.95rem;
}
.grad-wedding { background: linear-gradient(135deg, #f3e7d3, #d9a5a5 90%); }
.grad-baby    { background: linear-gradient(135deg, #e8eef5, #cfd9e8 90%); }

.mc-1 { top: 0; left: 0; transform: rotate(-8deg); z-index: 3; }
.mc-2 { top: 30px; right: 0; transform: rotate(7deg); z-index: 2; }
.mc-3 { bottom: 20px; left: 30px; z-index: 1; }
.mc-4 { bottom: 0; right: 10px; z-index: 4; }
.memory-stack:hover .mc-1 { transform: rotate(-10deg) translateY(-6px); }
.memory-stack:hover .mc-2 { transform: rotate(9deg) translateY(-6px); }

.vinyl {
  width: 150px; height: 150px; border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, #0c0c0f 0 2px, #16161c 2px 4px);
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  animation: spin 14s linear infinite;
}
.vinyl-label {
  width: 56px; height: 56px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft), var(--gold-deep));
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; color: var(--night-900);
}
@keyframes spin { to { transform: rotate(360deg); } }

.wave-card {
  background: rgba(30, 42, 68, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
  width: 200px;
}
.soundwave { display: flex; align-items: flex-end; gap: 3px; height: 38px; }
.soundwave span {
  flex: 1; background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border-radius: 2px; animation: eq 1.2s ease-in-out infinite;
}
.soundwave span:nth-child(odd) { animation-delay: .2s; }
.soundwave span:nth-child(3n)  { animation-delay: .4s; }
.soundwave span:nth-child(4n)  { animation-delay: .6s; }
@keyframes eq { 0%,100% { height: 20%; } 50% { height: 100%; } }
.wave-label { display:block; margin-top: 8px; font-size: 0.72rem; color: var(--text-muted); }

/* ---------- Sections base ---------- */
.section { padding: 72px 0; }
.section-head { margin-bottom: 48px; }
.section-emotion { background: rgba(255,255,255,0.015); }

.emotion-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px; margin-top: 2.4rem;
}
.emotion-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1.1rem;
  font-size: 0.92rem;
  color: var(--cream);
  background: rgba(212,175,55,0.04);
}

/* ---------- Split layout ---------- */
.split { display: grid; gap: 40px; align-items: center; }
.split-text .btn { margin-top: 1rem; }
.glow-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(30,42,68,0.6), rgba(11,26,42,0.4));
  padding: 28px;
  box-shadow: var(--shadow-soft);
}
.frame-row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif); font-size: 1.1rem; padding: 6px 0;
}
.frame-row .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--text-muted); }
.frame-row.highlight { color: var(--gold); }
.frame-row.highlight .dot { background: var(--gold); box-shadow: 0 0 14px var(--gold); }
.frame-arrow { color: var(--gold-deep); padding-left: 3px; opacity: 0.7; }

.why-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.why-list li {
  position: relative; padding-left: 32px;
  font-size: 1.02rem; color: var(--cream);
}
.why-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(212,175,55,0.15); color: var(--gold);
  font-size: 0.8rem; font-weight: 700;
}

/* ---------- Cards grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.card {
  background: linear-gradient(160deg, var(--night-700), var(--night-800));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,0.4); }
.card h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.card.occasion .card-icon { font-size: 1.9rem; margin-bottom: 0.8rem; }
.card.occasion p { color: var(--text-muted); margin: 0; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
.step { text-align: center; }
.step-num {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px; border-radius: 50%;
  font-family: var(--serif); font-size: 1.6rem; font-weight: 700;
  color: var(--gold);
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { color: var(--text-muted); margin: 0; }
.step-line { display: none; }

/* ---------- Examples ---------- */
.tag {
  display: inline-block;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--line);
  padding: 0.25rem 0.7rem; border-radius: 999px; margin-bottom: 1rem;
}
.example-story { color: var(--text-muted); font-size: 0.96rem; }
.player {
  display: flex; align-items: center; gap: 12px;
  background: rgba(11,26,42,0.55);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  margin: 1rem 0 1.2rem;
}
.player-btn {
  flex: none;
  width: 38px; height: 38px; border-radius: 50%;
  border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--night-900); font-size: 0.85rem;
  display: grid; place-items: center;
  transition: transform .15s ease;
}
.player-btn:hover { transform: scale(1.08); }
.player-wave { flex: 1; display: flex; align-items: center; gap: 3px; height: 24px; }
.player-wave span {
  flex: 1; height: 30%; background: var(--night-600); border-radius: 2px;
  transition: height .2s ease, background .2s ease;
}
.player.playing .player-wave span { background: var(--gold); animation: eq 1s ease-in-out infinite; }
.player-time { font-size: 0.78rem; color: var(--text-muted); font-variant-numeric: tabular-nums; }

/* ---------- Pre-price emotional line ---------- */
.pre-price { padding: 40px 0 0; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}
.price-card {
  position: relative;
  background: linear-gradient(165deg, var(--night-700), var(--night-800));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border: 1.5px solid var(--gold);
  background: linear-gradient(165deg, #20304b, #16243a);
  box-shadow: 0 30px 70px -24px rgba(212,175,55,0.4);
}
.price-card.luxury { border-color: rgba(217,165,165,0.35); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold-deep));
  color: var(--night-900);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 999px; white-space: nowrap;
}
.price-name { font-size: 1.5rem; margin-bottom: 0.3rem; }
.price-desc { color: var(--text-muted); font-size: 0.92rem; min-height: 2.6em; }
.price-amount {
  font-family: var(--serif); font-size: 2.4rem; font-weight: 700;
  color: var(--gold); margin: 0.6rem 0 0.1rem;
}
.price-tax { font-size: 0.78rem; color: var(--text-muted); margin: 0 0 1.1rem; }
.price-features { list-style: none; margin: 0 0 1.8rem; padding: 0; display: grid; gap: 10px; flex: 1; }
.price-features li {
  position: relative; padding-left: 26px; color: var(--cream); font-size: 0.95rem;
}
.price-features li::before {
  content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 0.85rem;
}

/* ---------- Testimonials ---------- */
.testimonial { position: relative; padding-top: 40px; }
.quote-mark {
  position: absolute; top: 6px; left: 24px;
  font-family: var(--serif); font-size: 4rem; color: var(--gold);
  opacity: 0.4; line-height: 1;
}
.testimonial blockquote {
  margin: 0 0 1.2rem; font-family: var(--serif); font-style: italic;
  font-size: 1.18rem; color: var(--cream); line-height: 1.45;
}
.testimonial figcaption { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.04em; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(30,42,68,0.4);
  padding: 0 20px;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: rgba(212,175,55,0.4); }
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 18px 0; font-family: var(--serif); font-size: 1.1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--gold); font-size: 1.5rem; font-family: var(--sans);
  transition: transform .2s ease; flex: none;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-muted); padding-bottom: 18px; margin: 0; }

/* ---------- Final / Form ---------- */
.section-final {
  background:
    radial-gradient(800px 500px at 50% 0%, rgba(212,175,55,0.10), transparent 60%);
}
.form-wrap { max-width: 760px; margin-top: 40px; }
.request-form {
  background: linear-gradient(165deg, var(--night-700), var(--night-800));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field label { font-size: 0.86rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--cream); }
.field input,
.field select,
.field textarea {
  font-family: var(--sans); font-size: 0.98rem;
  color: var(--text);
  background: rgba(11,26,42,0.6);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #6f7d91; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.field select { appearance: none; background-image:
  linear-gradient(45deg, transparent 50%, var(--gold) 50%),
  linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.field textarea { resize: vertical; min-height: 120px; }
.field option { background: var(--night-800); color: var(--text); }

.checkbox-field { margin-bottom: 24px; }
.checkbox { flex-direction: row; display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.checkbox input { width: 20px; height: 20px; accent-color: var(--gold); margin-top: 2px; flex: none; }
.checkbox span { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.inline-link { color: var(--gold); text-decoration: underline; }

.form-success {
  margin-top: 1.4rem; padding: 1rem 1.2rem;
  border: 1px solid var(--gold); border-radius: var(--radius-sm);
  background: rgba(212,175,55,0.1);
  color: var(--cream); font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; text-align: center;
}
.form-error {
  margin-top: 1.4rem; padding: 1rem 1.2rem;
  border: 1px solid var(--rose); border-radius: var(--radius-sm);
  background: rgba(217,165,165,0.12);
  color: var(--cream); font-size: 0.95rem; text-align: center;
}
.form-error a { color: var(--gold); text-decoration: underline; }
/* Honeypot: für Menschen unsichtbar, von Bots ausgefüllt */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--night-900);
  padding: 56px 0 100px;
}
.footer-inner {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
}
.footer-tag { font-family: var(--serif); font-style: italic; color: var(--text-muted); margin: 0.5rem 0 1rem; }
.footer-logo { width: 200px; height: auto; margin: -20px 0 8px -10px; display: block; }
.footer-contact { display: flex; flex-direction: column; gap: 6px; font-size: 0.92rem; }
.footer-contact a:hover { color: var(--gold); }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; align-content: start; }
.footer-links a { font-size: 0.9rem; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold); }
.footer-legal { padding-top: 24px; font-size: 0.8rem; color: var(--text-muted); }
.footer-legal .copyright { margin: 0.6rem 0 0; opacity: 0.7; }

/* ---------- Sticky Mobile CTA ---------- */
.sticky-cta {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 90;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: var(--night-900); font-weight: 700;
  padding: 0.85rem 2rem; border-radius: 999px;
  box-shadow: 0 14px 34px -10px rgba(212,175,55,0.7);
  width: calc(100% - 40px); max-width: 420px; text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 700px) {
  .form-row { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1.4fr 1fr; align-items: start; }
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .sticky-cta { display: none; }

  .hero { padding: 90px 0 100px; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; }

  .split { grid-template-columns: 1fr 1fr; }
  .split.reverse .split-text { order: 2; }

  .cards-grid { grid-template-columns: repeat(3, 1fr); }

  .steps { grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; }
  .step-line {
    display: block; height: 1px; width: 100%;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    min-width: 40px;
  }

  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .price-card.featured { transform: scale(1.04); }
  .price-card.featured:hover { transform: scale(1.04) translateY(-4px); }

  .section { padding: 96px 0; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS  (Hauptseite + Anlass-Seiten)
   ============================================================ */

/* ---------- Anlass-Karten als Links (Hauptseite) ---------- */
a.card.occasion {
  display: flex; flex-direction: column;
  color: inherit;
}
a.card.occasion .card-cta {
  margin-top: 14px; color: var(--gold);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s ease;
}
a.card.occasion:hover .card-cta { gap: 12px; }
a.card.occasion .card-cta::after { content: "→"; }

/* ---------- Subpage Hero ---------- */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 1.4rem; transition: color .2s ease;
}
.back-link:hover { color: var(--gold); }
.back-link::before { content: "←"; }

.scene-card {
  background: var(--cream);
  padding: 14px 14px 40px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: min(360px, 86vw);
  transform: rotate(-2deg);
  transition: transform .4s ease;
}
.hero-visual:hover .scene-card { transform: rotate(0deg); }
.scene-img {
  height: 240px; border-radius: 4px;
  display: grid; place-items: center; font-size: 4rem;
}
.scene-caption {
  display: block; text-align: center; margin-top: 14px;
  font-family: var(--serif); color: var(--night-900);
  font-style: italic; font-size: 1.05rem;
}
.scene-wave {
  margin-top: 18px; display: flex; justify-content: center;
}

/* Anlass-Verläufe */
.grad-anniversary { background: linear-gradient(135deg, #f3e7d3, #d9a5a5 90%); }
.grad-love        { background: linear-gradient(135deg, #f6dede, #d9a5a5 90%); }
.grad-memory      { background: linear-gradient(135deg, #e7ecf2, #c7b8d6 90%); }
.grad-family      { background: linear-gradient(135deg, #efe6d6, #cfd9c8 90%); }
.grad-friendship  { background: linear-gradient(135deg, #f3ecd6, #cfd9e8 90%); }
.grad-birthday    { background: linear-gradient(135deg, #f6e4c9, #e8c08a 90%); }

/* ---------- Formular: Hilfe- & Rechtstexte ---------- */
.field-help {
  font-size: 0.82rem; color: var(--text-muted);
  margin: 0 0 0.5rem; line-height: 1.45;
}
.field-note {
  font-size: 0.76rem; color: #8b95a6;
  margin: 0.5rem 0 0; line-height: 1.4; font-style: italic;
}
.field .opt { color: var(--text-muted); font-weight: 400; font-size: 0.8rem; }

/* ---------- Mini-Anlass-Wechsler auf Subpages ---------- */
.occasion-switch {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-top: 2rem;
}
.occasion-switch a {
  font-size: 0.85rem; color: var(--text-muted);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 0.4rem 0.9rem; transition: all .2s ease;
}
.occasion-switch a:hover { color: var(--gold); border-color: var(--gold); }
.occasion-switch a.current {
  color: var(--night-900); background: var(--gold); border-color: var(--gold); font-weight: 600;
}

/* ---------- Rechtsseiten (Impressum etc.) ---------- */
.legal-page { padding-top: 48px; }
.legal-page .back-link { margin-top: 8px; }
.legal-page .section-title { margin-bottom: 1.6rem; }
.legal-content { font-size: 0.98rem; line-height: 1.7; color: var(--text-muted); }
.legal-content h2 {
  font-family: var(--serif); color: var(--cream);
  font-size: 1.25rem; margin: 2rem 0 0.6rem;
}
.legal-content p { margin: 0 0 1rem; }
.legal-content a { color: var(--gold); text-decoration: underline; }
.legal-content ul { margin: 0 0 1rem; padding-left: 1.3rem; }
.legal-content li { margin: 0 0 0.35rem; }
.legal-content li::marker { color: var(--gold); }
.legal-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.85em; background: rgba(212,175,55,0.1);
  padding: 0.1em 0.4em; border-radius: 4px; color: var(--cream);
}
.legal-content strong { color: var(--cream); }
.legal-note {
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  background: rgba(212,175,55,0.06);
  padding: 0.9rem 1.1rem; border-radius: var(--radius-sm);
  color: var(--cream); font-size: 0.9rem; margin-bottom: 2rem !important;
}

/* ---------- Cookie-Consent-Banner ---------- */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  background: linear-gradient(160deg, var(--night-700), var(--night-800));
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  max-width: 720px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.cookie-banner.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-inner { display: flex; flex-direction: column; gap: 16px; }
.cookie-text h3 { font-family: var(--serif); font-size: 1.2rem; margin-bottom: 0.4rem; color: var(--cream); }
.cookie-text p { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.5; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions .btn { flex: 1; min-width: 140px; }

@media (min-width: 700px) {
  .cookie-inner { flex-direction: row; align-items: center; }
  .cookie-actions { flex: none; }
  .cookie-actions .btn { flex: none; }
}

/* ---------- Emotionaler Story-Abschnitt (vor den Paketen) ---------- */
.section-story { background: rgba(212,175,55,0.04); }
.story-result {
  font-family: var(--serif); font-style: italic; font-size: 1.15rem;
  color: var(--gold-soft); margin-top: 1rem;
}

/* ---------- Vertrauenselemente ---------- */
.trust-badges {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  text-align: center;
}
@media (min-width: 700px) {
  .trust-badges { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
}
.trust-badge {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.92rem; color: var(--cream);
}
.trust-icon { font-size: 1.6rem; }
@media (min-width: 700px) {
  .trust-badges { align-items: start; }
}

/* ---------- Partnerprogramm-Teaser ---------- */
.section-partner-teaser {
  background: radial-gradient(700px 300px at 50% 0%, rgba(212,175,55,0.08), transparent 60%);
}

/* ---------- Preis-Orientierung im Hero ---------- */
.hero-pricehint {
  margin-top: 1rem; font-size: 0.9rem; color: var(--gold);
  letter-spacing: 0.04em;
}

/* ---------- Reaktionsvideo-Platzhalter ---------- */
.reaction-placeholder {
  border: 1px dashed var(--line); border-radius: var(--radius);
  padding: 28px 22px; margin: 1.6rem 0;
  background: rgba(255,255,255,0.02);
}
.reaction-icon { font-size: 2rem; display: block; margin-bottom: 0.5rem; opacity: 0.8; }
.reaction-placeholder p { margin: 0; color: var(--text-muted); font-family: var(--serif); font-style: italic; }

/* ---------- Spotify-Beispiele (Klick zum Laden) ---------- */
.example h3 { margin-bottom: 1rem; }
.spotify-embed {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; min-height: 96px;
  background: rgba(11,26,42,0.55);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 14px; margin-bottom: 1.2rem;
}
.spotify-load {
  display: inline-flex; align-items: center; gap: 10px;
  border: none; cursor: pointer;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: var(--night-900); font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  padding: 0.7rem 1.3rem; border-radius: 999px;
  transition: transform .15s ease, box-shadow .2s ease;
}
.spotify-load:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(212,175,55,0.6); }
.spotify-play {
  display: grid; place-items: center; width: 22px; height: 22px;
  border-radius: 50%; background: rgba(11,26,42,0.18); font-size: 0.7rem;
}
.spotify-note { font-size: 0.72rem; color: var(--text-muted); margin: 0; text-align: center; }
.spotify-embed iframe { width: 100%; border: 0; display: block; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}
