/* ============================================================
   Your Personal Song — Shared Stylesheet
   CI: Dunkelblau + Gold + Cream | Playfair Display + Inter
   ============================================================ */

/* ---------- FONTS (lokal · DSGVO-konform · kein Google-Request) ---------- */

/* Inter — variable font, weights 300–700 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Playfair Display — variable font, normal weights 400–700 */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/playfair-normal-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Playfair Display — italic weights 400–500 */
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/playfair-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
                 U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF,
                 U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/playfair-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- VARIABLES ---------- */
:root {
  --bg-deep:       #0A1628;
  --bg-mid:        #142339;
  --bg-elev:       #1B2D4A;
  --gold:          #D4A547;
  --gold-soft:     #E8C26A;
  --cream:         #F5F1E8;
  --cream-dim:     #C8C2B5;
  --muted:         #8A93A3;
  --border:        rgba(212, 165, 71, 0.18);
  --border-strong: rgba(212, 165, 71, 0.40);
  --shadow-glow:   0 0 60px rgba(212, 165, 71, 0.08);
  --serif:         'Playfair Display', Georgia, serif;
  --sans:          'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:        14px;
  --radius-lg:     20px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg-deep);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%,   rgba(212,165,71,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212,165,71,.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
a   { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--sans); }

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
section { padding: 5rem 0; }

/* ---------- SECTION HEADINGS ---------- */
.section-eyebrow {
  text-align: center;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  text-align: center;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-weight: 300;
  font-size: 1.05rem;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 14px 32px;
  border: none;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all .3s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,165,71,.25);
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all .3s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- HEADER / NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background .3s, border-color .3s;
}
header.scrolled {
  background: rgba(10,22,40,.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
}
.logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .01em;
  flex-shrink: 0;
}
.logo span { color: var(--gold); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  font-size: .88rem;
}
.nav-links a            { color: var(--cream-dim); transition: color .3s; }
.nav-links a:hover      { color: var(--gold); }
.nav-links .nav-cta     { background: var(--gold); color: var(--bg-deep);
                          padding: 8px 20px; border-radius: 100px;
                          font-weight: 600; font-size: .85rem; }
.nav-links .nav-cta:hover { background: var(--gold-soft); color: var(--bg-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--cream);
  font-size: 1.1rem;
  line-height: 1;
}

/* ---------- HERO ---------- */
.hero { padding: 5rem 0 4.5rem; text-align: center; }

.badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -.01em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero .subtitle {
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  color: var(--cream-dim);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Wave animation */
.wave {
  margin: 3.5rem auto 0;
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  height: 52px;
}
.wave span {
  display: block;
  width: 3px;
  background: var(--gold);
  border-radius: 3px;
  opacity: .45;
  animation: wave-pulse 1.6s ease-in-out infinite;
}
.wave span:nth-child(1) { height: 20%; animation-delay: 0s; }
.wave span:nth-child(2) { height: 45%; animation-delay: .12s; }
.wave span:nth-child(3) { height: 75%; animation-delay: .24s; }
.wave span:nth-child(4) { height: 100%; animation-delay: .36s; }
.wave span:nth-child(5) { height: 65%; animation-delay: .48s; }
.wave span:nth-child(6) { height: 35%; animation-delay: .60s; }
.wave span:nth-child(7) { height: 85%; animation-delay: .72s; }
.wave span:nth-child(8) { height: 55%; animation-delay: .84s; }
.wave span:nth-child(9) { height: 28%; animation-delay: .96s; }
@keyframes wave-pulse {
  0%, 100% { opacity: .25; transform: scaleY(.7); }
  50%       { opacity: .85; transform: scaleY(1); }
}

/* ---------- HOW IT WORKS ---------- */
#wie {
  background: linear-gradient(180deg,
    transparent 0%, rgba(20,35,57,.55) 25%,
    rgba(20,35,57,.55) 75%, transparent 100%);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.step-card {
  background: linear-gradient(160deg, var(--bg-mid) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: all .4s;
}
.step-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: .75;
}
.step-card h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; margin-bottom: .75rem; }
.step-card p  { color: var(--cream-dim); font-size: .92rem; font-weight: 300; line-height: 1.65; }

/* ---------- MINI GENERATOR ---------- */
#generator {
  background: linear-gradient(180deg,
    transparent 0%, rgba(20,35,57,.55) 25%,
    rgba(20,35,57,.55) 75%, transparent 100%);
}
.mini-generator { max-width: 640px; margin: 3rem auto 0; }

.mini-form {
  background: var(--bg-mid);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  box-shadow: var(--shadow-glow);
}
.mini-field          { display: flex; flex-direction: column; gap: .4rem; }
.mini-field label    { font-size: .85rem; font-weight: 500; color: var(--cream); }
.mini-hint           { color: var(--muted); font-size: .75rem; font-weight: 400; margin-left: .5rem; }
.mg-full             { grid-column: 1 / -1; }

.mini-field input,
.mini-field select,
.mini-field textarea {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: .92rem;
  transition: border-color .3s, background .3s;
  width: 100%;
}
.mini-field input:focus,
.mini-field select:focus,
.mini-field textarea:focus  { outline: none; border-color: var(--gold); background: var(--bg-deep); }
.mini-field input::placeholder,
.mini-field textarea::placeholder { color: var(--muted); }
.mini-field textarea { resize: vertical; min-height: 80px; font-family: var(--sans); }
.mini-field select option { background: var(--bg-mid); }
.mg-btn { grid-column: 1 / -1; width: 100%; text-align: center; padding: 14px; }

/* Output box */
.mg-output { margin-top: 1.5rem; display: none; }
.mg-output.visible { display: block; animation: mg-fadein .5s ease; }
@keyframes mg-fadein {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mg-output-inner {
  background: linear-gradient(155deg, var(--bg-elev) 0%, var(--bg-mid) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  text-align: center;
  box-shadow: 0 0 50px rgba(212,165,71,.12);
}
.mg-label {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.mg-preview {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--cream);
  margin-bottom: 1.75rem;
  white-space: pre-line;
}
.mg-preview em { color: var(--gold); font-style: italic; }
.mg-cta        { display: inline-block; }
.mg-disclaimer {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .mini-form { grid-template-columns: 1fr; padding: 1.5rem; }
}

/* ---------- ANLASS CARDS ---------- */
.anlass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.anlass-card {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all .4s;
}
.anlass-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.anlass-card--first { border-color: var(--border-strong); }
.anlass-card--first .anlass-label::before { content: '✦ '; }
.anlass-label {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .5rem;
}
.anlass-title { font-family: var(--serif); font-size: 1.2rem; font-style: italic; margin-bottom: .5rem; }
.anlass-desc  { color: var(--cream-dim); font-size: .9rem; font-weight: 300; line-height: 1.6; }

/* ---------- AUDIO EXAMPLES ---------- */
#beispiele {
  background: linear-gradient(180deg,
    transparent 0%, rgba(20,35,57,.45) 40%,
    rgba(20,35,57,.45) 60%, transparent 100%);
}
.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.audio-card {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color .3s;
}
.audio-card:hover { border-color: var(--border-strong); }
.audio-occasion {
  font-size: .72rem;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: .4rem;
}
.audio-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: .6rem;
}
.audio-story {
  color: var(--cream-dim);
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Custom audio player */
.audio-player {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
  color: var(--bg-deep);
}
.play-btn:hover  { background: var(--gold-soft); transform: scale(1.08); }
.play-btn svg    { width: 14px; height: 14px; }
.player-track    { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(212,165,71,.15);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0%;
  transition: width .1s linear;
  pointer-events: none;
}
.player-time {
  font-size: .72rem;
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

/* ---------- PRICING ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all .4s;
  position: relative;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.pricing-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, var(--bg-elev) 0%, var(--bg-mid) 100%);
  box-shadow: 0 0 40px rgba(212,165,71,.12);
}
.bestseller-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-deep);
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: .06em;
  white-space: nowrap;
}
.pricing-name {
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.pricing-price { font-family: var(--serif); font-size: 3rem; font-weight: 600; line-height: 1; margin-bottom: .2rem; }
.pricing-price sup { font-size: 1.2rem; font-weight: 400; vertical-align: super; }
.pricing-sub   { color: var(--cream-dim); font-size: .88rem; margin-bottom: 1.5rem; font-weight: 300; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 1.75rem; }
.pricing-features li {
  padding: 6px 0;
  font-size: .9rem;
  color: var(--cream-dim);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .92rem;
  transition: all .3s;
  border: none;
  font-family: var(--sans);
}
.pricing-cta.solid   { background: var(--gold); color: var(--bg-deep); }
.pricing-cta.solid:hover { background: var(--gold-soft); }
.pricing-cta.outline { background: transparent; border: 1px solid var(--border-strong); color: var(--cream); }
.pricing-cta.outline:hover { border-color: var(--gold); color: var(--gold); }

.upsell-note {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: .85rem;
}
.upsell-note strong { color: var(--cream-dim); }
.upsell-tags {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: .75rem;
}
.upsell-tag {
  padding: 5px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  color: var(--cream-dim);
}
.upsell-contact { margin-top: .75rem; font-size: .82rem; }
.upsell-contact a { color: var(--gold); }

/* ---------- USP SECTION ---------- */
#usp {
  background: linear-gradient(180deg,
    transparent 0%, rgba(20,35,57,.45) 30%,
    rgba(20,35,57,.45) 70%, transparent 100%);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.usp-item {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: border-color .3s;
}
.usp-item:hover { border-color: var(--border-strong); }
.usp-icon  { font-size: 1.8rem; margin-bottom: .75rem; }
.usp-item h3 { font-family: var(--serif); font-size: 1.1rem; margin-bottom: .4rem; font-weight: 500; }
.usp-item p  { color: var(--cream-dim); font-size: .88rem; font-weight: 300; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-size: .98rem;
  font-weight: 500;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .3s;
}
.faq-question:hover      { color: var(--gold); }
.faq-question[aria-expanded="true"] { color: var(--gold); }
.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--gold);
  transition: transform .3s;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--cream-dim);
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.7;
}
.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.25rem;
}
.faq-answer a { color: var(--gold); text-decoration: underline; }

/* ---------- FOOTER ---------- */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
.footer-brand .logo   { font-size: 1.2rem; margin-bottom: .5rem; display: block; }
.footer-brand > p     { color: var(--cream-dim); font-size: .88rem; font-weight: 300; max-width: 280px; line-height: 1.6; }
.footer-kiku          { color: var(--muted); font-size: .82rem; margin-top: .6rem; }
.footer-kiku a        { color: var(--gold); font-style: italic; }

.footer-nav   { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.footer-col a  { color: var(--cream-dim); font-size: .88rem; font-weight: 300; transition: color .3s; }
.footer-col a:hover { color: var(--gold); }

.footer-transparency {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 600px;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  color: var(--muted);
  font-size: .78rem;
}
.footer-bottom .kiku-sig { color: var(--gold); font-style: italic; }

/* ---------- DANKE PAGE ---------- */
.danke-main { min-height: 70vh; display: flex; align-items: center; padding: 4rem 0; }
.danke-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.danke-icon { font-size: 3rem; color: var(--gold); margin-bottom: 1.5rem; }
.danke-box h1 { font-family: var(--serif); font-size: clamp(1.9rem, 3.5vw, 2.6rem); font-weight: 500; margin-bottom: 1rem; }
.danke-sub { color: var(--cream-dim); font-size: 1.05rem; font-weight: 300; margin-bottom: 2.5rem; }

.danke-steps {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.danke-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step-marker {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--cream-dim);
}
.step-marker.active { background: var(--gold); border-color: var(--gold); color: var(--bg-deep); }
.danke-step strong  { display: block; font-weight: 600; color: var(--cream); margin-bottom: .2rem; }
.danke-step p       { color: var(--cream-dim); font-size: .9rem; font-weight: 300; }

.btn-briefing {
  display: inline-block;
  font-size: 1.05rem;
  padding: 16px 36px;
  margin-bottom: 1rem;
}
.danke-note { color: var(--muted); font-size: .82rem; font-weight: 300; }

/* ---------- LEGAL PAGES ---------- */
.legal-main { padding: 4rem 0; }
.legal-box  { max-width: 720px; margin: 0 auto; }
.legal-box h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  margin-bottom: .5rem;
}
.legal-meta { color: var(--muted); font-size: .85rem; margin-bottom: 3rem; }
.legal-box h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--cream);
  margin: 2rem 0 .75rem;
}
.legal-box h3 { font-size: 1rem; font-weight: 600; color: var(--cream); margin: 1.5rem 0 .5rem; }
.legal-box p  { color: var(--cream-dim); font-size: .92rem; font-weight: 300; line-height: 1.8; margin-bottom: .75rem; }
.legal-box ul { color: var(--cream-dim); font-size: .92rem; font-weight: 300; line-height: 1.8; margin-bottom: .75rem; padding-left: 1.5rem; }
.legal-box a  { color: var(--gold); text-decoration: underline; }
.placeholder  { background: rgba(212,165,71,.12); border: 1px dashed var(--gold); border-radius: 6px;
                padding: 4px 10px; color: var(--gold-soft); font-size: .88rem; }

/* ---------- SCROLL ANIMATION ---------- */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,22,40,.98);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li   { width: 100%; }
  .nav-links .nav-cta { display: block; text-align: center; padding: 12px 20px; }
}
@media (max-width: 640px) {
  .hero { padding: 3.5rem 0 3rem; }
  section { padding: 3.5rem 0; }
  .cta-row { flex-direction: column; align-items: center; }
  .cta-row a, .cta-row button { width: 100%; max-width: 300px; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .audio-grid   { grid-template-columns: 1fr; }
  .usp-grid     { grid-template-columns: 1fr 1fr; }
  .footer-main  { flex-direction: column; }
  .footer-nav   { gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .danke-steps  { padding: 1.5rem; }
}

/* Shared JS nav helper */
header { position: relative; }
header .nav-links { position: static; }
@media (max-width: 768px) {
  header { position: sticky; }
  header .nav-links { position: absolute; }
}
