/* ============ Tokens (Velvet x Sunset — Florian approved 2026-05-27) ============ */
:root {
  --bg: #FDF7F0;
  --bg-card: #FFFFFF;
  --bg-soft: #F4E9DC;
  --accent: #C7553F;
  --accent-hover: #A8442F;
  --accent-soft: rgba(199, 85, 63, 0.12);
  --accent-tint: rgba(199, 85, 63, 0.06);
  --accent-tint-border: rgba(199, 85, 63, 0.18);
  --accent-warm: #C7553F;
  --logo-gradient: linear-gradient(135deg, #C7553F, #E89972);
  --text: #3E2E25;
  --text-soft: #6E5D54;
  --border: #E6D6C0;
  --shadow-card: 0 1px 3px rgba(0,0,0,0.05), 0 4px 12px rgba(0,0,0,0.04);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: "Libre Caslon Text", Georgia, serif;
  --font-body: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

/* ============ Layout ============ */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }
.section { padding: 56px 0; }
@media (min-width: 768px) { .section { padding: 80px 0; } }
.section-light { background: var(--bg-soft); }

/* ============ Promo Bar ============ */
.promo-bar {
  background: #1a1814;
  color: #f1e9dd;
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
}
.promo-bar a { color: var(--accent); font-weight: 600; margin-left: 4px; }

/* ============ Header ============ */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; line-height: 1.1; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--logo-gradient);
  position: relative; flex: 0 0 38px;
}
.logo-mark::after {
  content: "♪"; color: #fff; font-size: 22px;
  position: absolute; inset: 0; display: grid; place-items: center;
}
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--text); }
.logo-text em { font-style: italic; font-weight: 400; color: var(--text-soft); }
.logo-sub { color: var(--accent); }

.nav-desktop { display: none; gap: 28px; }
.nav-desktop a { color: var(--text); font-size: 14px; font-weight: 500; }
.nav-desktop a:hover { color: var(--accent); }
@media (min-width: 768px) { .nav-desktop { display: flex; } }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  font-weight: 600; padding: 14px 28px; border-radius: 999px;
  font-size: 15px; transition: background 0.15s, transform 0.05s;
  white-space: nowrap;
}
.btn:hover { background: var(--accent-hover); }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-with-icon { gap: 10px; }
.btn-with-icon svg { width: 18px; height: 18px; }

.hero-bullets {
  display: flex; gap: 28px; justify-content: center;
  margin-top: 20px; flex-wrap: wrap;
}
.hero-bullets span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; color: var(--text-soft); font-weight: 500;
}
.hero-bullets i {
  width: 8px; height: 8px; background: #4ade80;
  border-radius: 50%; display: inline-block;
}

/* ============ Hero ============ */
.hero { padding: 56px 0 64px; text-align: center; }
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero-media { position: relative; margin: 0 auto 32px; max-width: 460px; }
.placeholder { background: linear-gradient(135deg, #d4c8b8 0%, #c4b8a8 100%); }
.placeholder-video {
  width: 100%; aspect-ratio: 5 / 4; border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.hero-img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  display: block;
}
.btn-listen {
  position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
  background: #fff; color: var(--text);
  padding: 14px 24px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-card);
}
.play-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent);
  display: inline-grid; place-items: center; color: #fff; font-size: 10px;
}
.play-icon::before { content: "▶"; color: #fff; font-size: 10px; }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px;
  color: var(--text-soft); font-weight: 600; margin-top: 32px;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 5vw, 52px); line-height: 1.1;
  margin: 16px 0;
}
.accent { color: var(--accent-warm); }
.hero-sub { color: var(--text-soft); font-size: 16px; max-width: 540px; margin: 0 auto 24px; }

.trust-row {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-top: 12px;
}
.trust-avatars { display: flex; }
.avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, #d4c8b8, #c4b8a8);
  flex-shrink: 0;
  object-fit: cover;
}
.avatar:not(:first-child) { margin-left: -8px; }
.avatar-initials {
  display: grid; place-items: center;
  color: #fff; font-size: 11px; font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 0;
}
.avatar-a { background: #d4a574; }
.avatar-b { background: #c47e6a; }
.placeholder-logo { width: 56px; height: 22px; border-radius: 4px; }
.stars { color: var(--accent-warm); font-size: 18px; letter-spacing: 2px; margin-top: 28px; }
.trust-text { font-size: 13px; color: var(--text-soft); }

/* ============ Section Headers ============ */
.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(28px, 4vw, 40px); text-align: center; line-height: 1.15;
}
.section-sub {
  text-align: center; color: var(--text-soft); font-size: 16px;
  margin: 12px auto 48px; max-width: 540px;
}

/* ============ How It Works ============ */
.steps-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-card);
  position: relative; text-align: left;
}
.step-num {
  position: absolute; top: 14px; right: 22px;
  font-family: var(--font-display); font-size: 42px;
  color: var(--accent-warm); opacity: 0.35; font-weight: 700;
  line-height: 1;
}
.placeholder-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent-soft);
  margin-bottom: 18px;
}

/* Icon container for inline SVGs (replaces placeholder-icon when ready) */
.icon-box {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.icon-box svg { width: 18px; height: 18px; }
.step-icon.icon-box { margin-bottom: 18px; }
.occasion-icon.icon-box { margin: 0 auto 14px; }
.step-card h3 { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.step-card p { color: var(--text-soft); font-size: 14px; }

/* ============ Testimonials ============ */
.testimonials-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-card);
}
.quote-mark {
  font-family: var(--font-display); font-size: 48px; line-height: 0.8;
  color: var(--accent-warm); opacity: 0.3; margin-bottom: 4px;
}
.quote { font-size: 15px; line-height: 1.6; color: var(--text); font-style: italic; }
.author { margin-top: 18px; font-weight: 600; font-size: 14px; }
.author-meta { font-size: 12px; color: var(--text-soft); }

/* ============ Occasions ============ */
.occasions-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .occasions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .occasions-grid { grid-template-columns: repeat(3, 1fr); } }
.occasion-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 24px; box-shadow: var(--shadow-card);
  text-align: center;
}
.occasion-icon { margin: 0 auto 14px; }
.occasion-card h4 { font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.occasion-card p { color: var(--text-soft); font-size: 13px; }

/* ============ Features (What You'll Get) ============ */
.features-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feature-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 12px 0;
}
.feature-icon { flex: 0 0 32px; }
.feature-row h4 { font-family: var(--font-display); font-size: 17px; margin-bottom: 4px; }
.feature-row p { color: var(--text-soft); font-size: 14px; }

/* ============ Player ============ */
.player-wrap {
  display: flex; flex-direction: column; gap: 32px; align-items: center;
}
@media (min-width: 768px) {
  .player-wrap { flex-direction: row; justify-content: center; gap: 48px; }
}
.vinyl {
  width: 340px; height: 340px; border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center,
      #1a1410 0px, #1a1410 2px,
      #2a2418 3px, #2a2418 5px),
    #1a1410;
  position: relative;
  box-shadow: var(--shadow-card);
}
@media (max-width: 600px) { .vinyl { width: 260px; height: 260px; } }
.vinyl::before {
  content: ""; position: absolute; inset: 50%;
  width: 110px; height: 110px; margin: -55px;
  border-radius: 50%; background: var(--accent-warm);
  display: grid; place-items: center;
}
.vinyl::after {
  content: "▶"; position: absolute; inset: 50%;
  margin: -10px -8px; color: #fff; font-size: 20px;
}
.player-card {
  background: #1a1410; color: #f1e9dd;
  border-radius: var(--radius); padding: 24px;
  width: 100%; max-width: 320px; text-align: center;
}
.player-title { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.player-subtitle { color: #b9ad9c; font-size: 13px; margin-bottom: 18px; }
.player-controls { display: flex; justify-content: center; gap: 12px; margin-bottom: 18px; }
.player-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: #2a2418; color: #f1e9dd; font-size: 18px;
}
.player-play { background: var(--accent); color: #fff; }
.player-tabs { display: flex; gap: 6px; }
.player-tab {
  flex: 1; padding: 10px 8px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  background: #2a2418; color: #f1e9dd;
}
.player-tab.active { background: var(--accent); color: #fff; }
.tab-free { background: #fff; color: #1a1410; }

/* ============ Mid CTA ============ */
.cta-box {
  background: var(--accent-tint);
  border: 1px solid var(--accent-tint-border);
  border-radius: var(--radius); padding: 40px 28px;
  text-align: center; max-width: 600px; margin: 0 auto;
}
.cta-box h3 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 28px); margin-bottom: 8px; }
.cta-box p { color: var(--text-soft); margin-bottom: 24px; }

/* ============ FAQ ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.faq-item {
  background: var(--bg-card); border-radius: var(--radius-sm);
  padding: 18px 22px; box-shadow: var(--shadow-card);
  cursor: pointer;
}
.faq-item summary {
  list-style: none; font-weight: 500; font-size: 15px;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; color: var(--accent); font-size: 22px; font-weight: 300;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--text-soft); font-size: 14px; padding-top: 12px; }
.faq-help { text-align: center; font-size: 14px; color: var(--text-soft); }
.faq-help a { color: var(--accent); }

/* ============ Footer ============ */
.site-footer {
  background: #1a1410; color: #b9ad9c;
  padding: 56px 0 24px; margin-top: 0;
}
.footer-inner {
  display: grid; gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-col h5 {
  color: #f1e9dd; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 14px; padding: 4px 0; color: #b9ad9c; }
.footer-col a:hover { color: var(--accent); }
.footer-col .logo { margin-bottom: 14px; }
.footer-col .logo-text { color: #f1e9dd; }
.footer-col .logo-text em { color: #b9ad9c; }
.footer-tag { font-size: 14px; line-height: 1.55; max-width: 360px; }
.footer-bottom {
  border-top: 1px solid #2a2418; margin-top: 40px;
  padding-top: 20px; font-size: 12px; text-align: center;
  color: #6b6359;
}

/* ============ Legal Pages ============ */
.legal-hero { padding: 48px 0 24px; text-align: center; }
.legal-hero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(30px, 4vw, 44px); color: var(--text);
}
.legal-hero .updated { color: var(--text-soft); font-size: 14px; margin-top: 10px; }
.legal-content { max-width: 760px; margin: 0 auto; padding: 16px 24px 72px; }
.legal-content h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px; color: var(--text);
  margin: 36px 0 12px;
}
.legal-content p, .legal-content li {
  color: var(--text-soft); font-size: 15px; line-height: 1.7;
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 22px; margin-bottom: 12px; }
.legal-content li { margin-bottom: 6px; }
.legal-content a { color: var(--accent); }
.legal-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-size: 14px; font-weight: 600;
  margin-bottom: 8px;
}

/* ============ Quiz Overlay ============ */
.quiz-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: var(--bg);
  display: none;
  height: 100vh; height: 100dvh;
}
.quiz-overlay.open { display: flex; flex-direction: column; }
body.quiz-open { overflow: hidden; }
.quiz-form { flex: 1 1 auto; display: flex; flex-direction: column; min-height: 0; }
.quiz-body {
  flex: 1 1 auto; min-height: 0; overflow-y: auto;
  -webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}

.quiz-topbar {
  flex: 0 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.logo-quiz .logo-text { font-size: 15px; }
.quiz-close {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--text-soft); background: var(--bg-soft);
}
.quiz-close:hover { color: var(--text); background: var(--border); }
.quiz-close svg { width: 20px; height: 20px; }

.quiz-shell { max-width: 880px; margin: 0 auto; padding: 28px 24px 40px; }

/* Progress */
.quiz-progress {
  height: 6px; background: var(--bg-soft);
  border-radius: 999px; overflow: hidden; margin-bottom: 22px;
}
.quiz-progress-fill {
  height: 100%; width: 17%; background: var(--accent);
  border-radius: 999px; transition: width 0.35s ease;
}

/* Stepper */
.quiz-steps { display: flex; justify-content: space-between; gap: 4px; }
.quiz-stepitem {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  flex: 1 1 0; min-width: 0;
}
.quiz-stepdot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-soft); color: var(--text-soft);
  display: grid; place-items: center;
  transition: background 0.25s, color 0.25s;
}
.quiz-stepdot svg { width: 18px; height: 18px; }
.quiz-stepitem.active .quiz-stepdot,
.quiz-stepitem.done .quiz-stepdot { background: var(--accent); color: #fff; }
.quiz-steplabel { font-size: 12px; color: var(--text-soft); white-space: nowrap; }
.quiz-stepitem.active .quiz-steplabel { color: var(--text); font-weight: 700; }
@media (max-width: 600px) {
  .quiz-steplabel { display: none; }
  .quiz-stepdot { width: 34px; height: 34px; }
  .quiz-stepdot svg { width: 16px; height: 16px; }
}

/* Meta row */
.quiz-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 14px; color: var(--text-soft);
  margin: 14px 0 26px;
}
.quiz-meta .pct { font-weight: 700; color: var(--text); }

/* Step title + card */
.quiz-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 4vw, 36px); line-height: 1.15;
  margin-bottom: 22px;
}
.quiz-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-card);
}
@media (max-width: 600px) { .quiz-card { padding: 22px 18px; } }
.quiz-intro { color: var(--text-soft); font-size: 16px; margin-bottom: 22px; }
.quiz-field { margin-bottom: 22px; }
.quiz-field:last-child { margin-bottom: 0; }
.quiz-label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 10px; }
.quiz-label .req { color: var(--accent); }
.quiz-help { color: var(--text-soft); font-size: 13px; margin: -2px 0 12px; }

.quiz-input, .quiz-textarea {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 14px 16px; font: inherit; color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.quiz-input::placeholder, .quiz-textarea::placeholder { color: #b3a394; }
.quiz-input:focus, .quiz-textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.quiz-textarea { min-height: 132px; resize: vertical; line-height: 1.55; }

/* Chips */
.quiz-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.quiz-chip {
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg);
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.quiz-chip:hover { border-color: var(--accent); }
.quiz-chip.selected { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Nav */
.quiz-error {
  color: var(--accent); font-size: 14px; font-weight: 500;
  margin: 0 0 10px; display: none;
}
.quiz-error.show { display: block; }
.quiz-foot {
  flex: 0 0 auto;
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
  box-shadow: 0 -4px 16px rgba(0,0,0,0.05);
}
.quiz-foot-inner { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.quiz-nav { display: flex; gap: 14px; }
.quiz-back {
  flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text);
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
}
.quiz-back:hover { background: var(--bg-soft); }
.quiz-back svg { width: 18px; height: 18px; }
.quiz-back[hidden] { display: none; }
.quiz-next {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: background 0.15s, transform 0.05s;
}
.quiz-next:hover { background: var(--accent-hover); }
.quiz-next:active { transform: translateY(1px); }
.quiz-next:disabled { opacity: 0.65; cursor: default; }
.quiz-next svg { width: 18px; height: 18px; }

/* Confirmation */
.quiz-done { flex: 1 1 auto; min-height: 0; overflow-y: auto; text-align: center; max-width: 560px; margin: 0 auto; padding: 56px 20px; }
.quiz-done[hidden] { display: none; }
.quiz-done-icon {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin: 0 auto 22px;
}
.quiz-done-icon svg { width: 32px; height: 32px; }
.quiz-done h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 34px); margin-bottom: 14px; }
.quiz-done p { color: var(--text-soft); font-size: 16px; margin-bottom: 28px; }

/* ============ Hero video + Samples ============ */
.hero-video {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  display: block; background: #1a1410;
}
.samples-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 768px) { .samples-grid { grid-template-columns: repeat(2, 1fr); } }
.sample-card {
  background: var(--bg-card); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: var(--shadow-card);
}
.sample-title { font-family: var(--font-display); font-size: 18px; margin-bottom: 2px; }
.sample-style { font-size: 13px; color: var(--text-soft); margin-bottom: 14px; }
.sample-card audio { width: 100%; }

/* ============ Hero video sound (swipe-page mechanic) ============ */
.hero-sound-cta {
  position: absolute; bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 11px;
  padding: 7px 18px 7px 7px; border-radius: 999px; cursor: pointer;
  background: rgba(253,247,240,0.94); color: var(--text);
  box-shadow: 0 6px 22px rgba(26,20,16,0.28);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.12s;
}
.hero-sound-cta:hover { transform: translateY(-1px); }
.hero-sound-cta.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.hsc-icon {
  position: relative; width: 38px; height: 38px; border-radius: 50%;
  background: var(--logo-gradient); display: grid; place-items: center; flex: 0 0 auto;
  box-shadow: 0 3px 10px rgba(199,85,63,0.45);
}
.hsc-icon svg { width: 16px; height: 16px; color: #fff; position: relative; z-index: 2; margin-left: 2px; }
.hero-sound-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(199,85,63,0.6);
  animation: heroPulse 2.1s ease-out infinite;
}
.hero-sound-ring.ring-2 { animation-delay: 1.05s; }
@keyframes heroPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
.hero-sound-label { font-size: 14px; font-weight: 600; }
.hero-mute-toggle {
  position: absolute; bottom: 12px; right: 12px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(26,20,16,0.62); color: #fff;
  display: grid; place-items: center; transition: background 0.15s;
}
.hero-mute-toggle:hover { background: rgba(26,20,16,0.88); }
.hero-mute-toggle[hidden] { display: none; }
.hero-mute-toggle svg { width: 20px; height: 20px; }
.hero-mute-toggle .ic-off { display: none; }
.hero-mute-toggle.is-muted .ic-on { display: none; }
.hero-mute-toggle.is-muted .ic-off { display: block; }

/* ============ Vinyl players (premium, prayersong-style) ============ */
.vinyl-player {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 30px 26px 24px; color: var(--text);
  box-shadow: 0 2px 6px rgba(62,46,37,0.05), 0 18px 40px rgba(62,46,37,0.09);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vinyl-player:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(62,46,37,0.07), 0 28px 56px rgba(62,46,37,0.13);
}
.vp-deck { position: relative; width: 100%; max-width: 220px; aspect-ratio: 1 / 1; margin: 0 auto 22px; }
.vp-platter { position: absolute; inset: 0; border-radius: 50%; display: grid; place-items: center; background: transparent; }
.vinyl-disc {
  position: relative; width: 100%; height: 100%; border-radius: 50%;
  background:
    repeating-radial-gradient(circle at center, #100d0a 0 1px, #1c1813 1px 3.5px),
    #100d0a;
  box-shadow: 0 0 0 1px #000, 0 14px 32px rgba(0,0,0,0.32);
  animation: vinylSpin 4s linear infinite; animation-play-state: paused;
}
.vinyl-player.playing .vinyl-disc { animation-play-state: running; }
@keyframes vinylSpin { to { transform: rotate(360deg); } }
.vinyl-grooves {
  position: absolute; inset: 7%; border-radius: 50%; pointer-events: none;
  background: repeating-radial-gradient(circle at center, rgba(255,255,255,0.05) 0 1px, transparent 1px 5px);
}
.vinyl-shine {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background: conic-gradient(from 210deg,
    rgba(255,255,255,0) 0deg, rgba(255,255,255,0.16) 26deg, rgba(255,255,255,0) 66deg,
    rgba(255,255,255,0) 196deg, rgba(255,255,255,0.09) 224deg, rgba(255,255,255,0) 268deg);
}
.vinyl-label {
  position: absolute; top: 50%; left: 50%; width: 46%; height: 46%;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, var(--accent), #9a3f2c);
  display: grid; place-items: center;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.32), inset 0 1px 5px rgba(255,255,255,0.28);
}
.vinyl-label-text {
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; line-height: 1.12; text-align: center; color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.45); padding: 0 6px;
}
.vinyl-hole {
  position: absolute; top: 50%; left: 50%; width: 9px; height: 9px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: #faf4ec; box-shadow: 0 0 0 2px rgba(0,0,0,0.5); z-index: 3;
}
.vp-arm { display: none; }
/* Controls */
.vp-body { text-align: center; }
.vp-title { font-family: var(--font-display); font-size: 18px; color: var(--text); }
.vp-style {
  font-size: 11px; color: var(--text-soft);
  letter-spacing: 0.1em; text-transform: uppercase; margin: 3px 0 18px;
}
.vp-controls { display: flex; align-items: center; gap: 14px; }
.vp-play {
  flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%;
  background: var(--logo-gradient); color: #fff; display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(199,85,63,0.4), inset 0 1px 1px rgba(255,255,255,0.45);
  transition: transform 0.1s, box-shadow 0.15s;
}
.vp-play:hover { box-shadow: 0 9px 24px rgba(199,85,63,0.5), inset 0 1px 1px rgba(255,255,255,0.45); }
.vp-play:active { transform: scale(0.94); }
.vp-play svg { width: 22px; height: 22px; margin-left: 1px; }
.vp-play .ic-pause { display: none; margin-left: 0; }
.vinyl-player.playing .vp-play .ic-play { display: none; }
.vinyl-player.playing .vp-play .ic-pause { display: block; }
.vp-track {
  flex: 1; position: relative; height: 6px; border-radius: 999px;
  background: rgba(62,46,37,0.12); cursor: pointer; outline: none;
}
.vp-track:focus-visible { box-shadow: 0 0 0 3px rgba(199,85,63,0.35); }
.vp-track-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; border-radius: 999px; background: var(--accent); }
.vp-track-knob {
  position: absolute; top: 50%; left: 0; width: 13px; height: 13px; border-radius: 50%;
  background: var(--accent); transform: translate(-50%, -50%); box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.vp-time {
  flex: 0 0 auto; min-width: 36px; text-align: right;
  font-size: 12px; color: var(--text-soft); font-variant-numeric: tabular-nums;
}

/* ============ Quiz: reviews step ============ */
.quiz-rating {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px; border-bottom: 1px solid var(--border); margin-bottom: 18px;
}
.quiz-rating-stars { color: var(--accent-warm); font-size: 22px; letter-spacing: 2px; }
.quiz-rating-score { font-family: var(--font-display); font-weight: 700; font-size: 19px; }
.quiz-rating-sub { font-size: 13px; color: var(--text-soft); }
.quiz-reviews { display: flex; flex-direction: column; gap: 14px; }
.quiz-review { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 18px; }
.quiz-review-stars { color: var(--accent-warm); font-size: 14px; letter-spacing: 1px; margin-bottom: 6px; }
.quiz-review-quote { font-size: 14px; font-style: italic; color: var(--text); line-height: 1.55; }
.quiz-review-author { font-size: 12px; color: var(--text-soft); margin-top: 8px; font-weight: 600; }
.quiz-reviews-foot { font-size: 13px; color: var(--text-soft); text-align: center; margin-top: 18px; }

/* ============ Quiz: thank-you timeline ============ */
.quiz-done-timeline {
  text-align: left; max-width: 420px; margin: 8px auto 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.qd-step { display: flex; gap: 14px; align-items: flex-start; }
.qd-num {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent); font-weight: 700;
  display: grid; place-items: center; font-size: 14px;
}
.qd-copy .qd-t { font-weight: 600; font-size: 15px; }
.qd-copy .qd-d { font-size: 13px; color: var(--text-soft); }
.quiz-done-note { font-size: 13px; color: var(--text-soft); margin-bottom: 20px; }
.quiz-done-note a { color: var(--accent); }

/* order details box + spam note (proper thank-you) */
.quiz-order-box {
  text-align: left; max-width: 420px; margin: 0 auto 26px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 6px 18px; box-shadow: 0 2px 12px rgba(62, 46, 37, 0.05);
}
.qd-row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.qd-row:last-child { border-bottom: 0; }
.qd-row-k { font-size: 13px; color: var(--text-soft); }
.qd-row-v { font-size: 14px; font-weight: 600; color: var(--text); text-align: right; word-break: break-word; }
.qd-row-accent { color: var(--accent); }
.qd-steps-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: var(--text) !important; margin: 0 auto 4px !important; max-width: 420px; text-align: left;
}
.quiz-spam-note {
  text-align: left; max-width: 420px; margin: 0 auto 24px;
  background: var(--accent-tint); border: 1px solid var(--accent-tint-border); border-radius: 12px;
  padding: 14px 16px; font-size: 13px; color: var(--text-soft); line-height: 1.5;
}
.quiz-spam-note strong { color: var(--text); }

/* ============ Standalone thank-you page ============ */
.thanks { text-align: center; max-width: 560px; margin: 0 auto; padding: 24px 0; }
.thanks-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.thanks-sub { color: var(--text-soft); font-size: 16px; max-width: 460px; margin: 0 auto 28px; }

/* ============ Reviews page ============ */
.reviews-hero { text-align: center; padding-bottom: 12px; }
.reviews-hero h1 { font-family: var(--font-display); font-size: clamp(30px, 5vw, 46px); margin: 6px 0 22px; }
.reviews-score {
  display: inline-flex; align-items: center; gap: 18px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 16px 26px; box-shadow: 0 8px 26px rgba(62,46,37,0.07);
}
.rs-num { font-family: var(--font-display); font-weight: 700; font-size: 52px; line-height: 1; color: var(--accent); }
.rs-right { text-align: left; }
.rs-stars { color: #E0A33E; font-size: 20px; letter-spacing: 2px; }
.rs-meta { font-size: 13px; color: var(--text-soft); margin-top: 4px; }
.reviews-masonry { columns: 1; column-gap: 22px; }
@media (min-width: 640px) { .reviews-masonry { columns: 2; } }
@media (min-width: 1000px) { .reviews-masonry { columns: 3; } }
.review-card {
  break-inside: avoid; margin: 0 0 22px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 22px 18px; box-shadow: 0 2px 6px rgba(62,46,37,0.05), 0 14px 30px rgba(62,46,37,0.06);
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
  display: grid; place-items: center; font-size: 16px;
}
.review-name { font-weight: 600; font-size: 15px; }
.review-date { font-size: 12px; color: var(--text-soft); }
.review-stars { color: #E0A33E; font-size: 15px; letter-spacing: 1.5px; margin-bottom: 10px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.55; margin-bottom: 12px; }
.review-verified {
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 5px;
}
.review-verified::before {
  content: ""; width: 13px; height: 13px; border-radius: 50%;
  background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C7553F' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/9px no-repeat;
}
.reviews-cta {
  text-align: center; max-width: 540px; margin: 26px auto 0;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 40px 28px;
}
.reviews-cta h2 { font-family: var(--font-display); font-size: clamp(24px, 4vw, 32px); margin-bottom: 10px; }
.reviews-cta p { color: var(--text-soft); font-size: 16px; max-width: 420px; margin: 0 auto 24px; }

/* secondary button + reviews link on home */
.btn-secondary {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent-tint-border);
}
.btn-secondary:hover { background: var(--accent-soft); }
.reviews-link { text-align: center; margin-top: 36px; }

/* ============ Email double-check (thank-you) ============ */
.email-confirm {
  max-width: 440px; margin: 0 auto 22px; text-align: center;
  background: var(--accent-tint); border: 1px solid var(--accent-tint-border);
  border-radius: 16px; padding: 22px 22px 20px;
}
.ec-q { font-size: 14px; color: var(--text-soft); margin-bottom: 6px; }
.ec-email { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text); word-break: break-word; }
.ec-email.ec-updated { color: var(--accent); }
.ec-fix { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--text-soft); text-decoration: underline; text-underline-offset: 2px; }
.ec-fix:hover { color: var(--accent); }
.ec-edit { margin-top: 16px; text-align: left; }
.ec-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; }
.ec-row { display: flex; gap: 8px; }
.ec-input { flex: 1; min-width: 0; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; font: inherit; background: #fff; color: var(--text); }
.ec-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.ec-row .btn { padding: 12px 20px; }
.ec-msg { font-size: 13px; margin-top: 8px; min-height: 1em; color: var(--text-soft); }
.ec-msg.ec-err { color: #b3402a; }
@media (max-width: 440px) { .ec-row { flex-direction: column; } }
