:root {
  --navy: #1A1A2E;
  --navy-mid: #252540;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --rose: #E8D5C4;
  --sage: #8B9D77;
  --text-dark: #1A1A2E;
  --text-mid: #4A4A6A;
  --text-light: #7A7A9A;
  --white: #FFFFFF;
  --radius: 4px;
  --radius-lg: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
.display { font-family: 'Cormorant Garant', serif; }

h1, h2, h3 { font-family: 'Cormorant Garant', serif; font-weight: 400; line-height: 1.15; letter-spacing: -0.02em; }

h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

p { font-size: 1rem; line-height: 1.75; color: var(--text-mid); }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 1.5rem; }

section { padding: 5rem 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: #b8973e; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.3); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(26,26,46,0.3);
}
.btn-outline-dark:hover { border-color: var(--navy); }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}
nav.scrolled {
  background: rgba(26,26,46,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: none; }
@media(min-width:768px){ .nav-cta { display: inline-flex; } }
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 0.4rem;
}
@media(max-width:767px){
  .nav-links { display: none; }
  .nav-mobile-btn { display: block; }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(26,26,46,0.98);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu button {
  font-family: 'Cormorant Garant', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 1rem 2rem;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
}
.mobile-menu button:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 1.4rem; right: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.4rem;
  opacity: 0.7;
}
.mobile-menu-close:hover { opacity: 1; }
.mobile-menu-cta {
  margin-top: 1.5rem;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em !important;
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.9rem 2.2rem !important;
  border-radius: 2px;
}

/* ═══ HERO ═══ */
#hero {
  min-height: 100svh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 30%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(232,213,196,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.hero-waveform {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 140px;
  pointer-events: none;
  opacity: 0.12;
}
.hero-waveform svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media(min-width:900px){ .hero-content { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.hero-text { color: var(--white); }

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-style: italic;
}
.hero-text h1 em { font-style: normal; color: var(--gold); }

.hero-subhead {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-proof-item { text-align: center; }
.hero-proof-num {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
}
.hero-proof-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; }
.hero-proof-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* Gift card visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gift-card {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #1e1e38 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 340px;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.gift-card-tag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}
.gift-card-occasion {
  font-family: 'Cormorant Garant', serif;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.gift-card-title {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.gift-card-waveform {
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 3px;
}
.wave-bar {
  flex: 1;
  border-radius: 2px;
  background: linear-gradient(to top, rgba(201,168,76,0.3), rgba(201,168,76,0.8));
  animation: wave-pulse 1.4s ease-in-out infinite;
  animation-play-state: paused;
}
.wave-bar.playing { animation-play-state: running; }
@keyframes wave-pulse {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}
.hero-progress-wrap {
  margin-bottom: 1.25rem;
}
.hero-progress-wrap .audio-progress {
  margin-top: 0;
  height: 5px;
}
.hero-duration {
  display: block;
  text-align: right;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}
.gift-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gift-card-from {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.gift-card-from strong { color: rgba(255,255,255,0.85); display: block; font-weight: 400; }
.play-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.play-btn:hover { transform: scale(1.08); box-shadow: 0 4px 16px rgba(201,168,76,0.4); }
.play-btn.error { background: #c0392b; cursor: not-allowed; }
.play-btn svg { width: 16px; height: 16px; fill: var(--navy); margin-left: 2px; }

/* ═══ TRUST SECTION ═══ */
#trust {
  background: var(--cream);
  padding: 5rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3.5rem;
}
@media(min-width:600px){ .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:900px){ .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
  background: var(--white);
  border: 1px solid rgba(26,26,46,0.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow 0.2s;
}
.trust-card:hover { box-shadow: 0 8px 32px rgba(26,26,46,0.08); }
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.trust-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.trust-card p { font-size: 0.9rem; }
.trust-microcopy {
  font-size: 0.78rem;
  color: var(--sage);
  font-style: italic;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--cream-dark);
}

/* ═══ HOW IT WORKS ═══ */
#how {
  background: var(--navy);
  color: var(--white);
}
#how h2 { color: var(--white); }
#how .eyebrow { color: var(--gold); }

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
}
@media(min-width:768px){ .steps { grid-template-columns: repeat(3, 1fr); } }

.step {
  padding: 2.5rem;
  position: relative;
  text-align: center;
}
.step::after {
  content: '';
  position: absolute;
  top: 50%; right: 0;
  width: 1px;
  height: 60px;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
}
@media(max-width:767px){
  .step::after { top: auto; bottom: 0; left: 10%; right: 10%; width: auto; height: 1px; transform: none; }
}
.step:last-child::after { display: none; }

.step-number {
  font-family: 'Cormorant Garant', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.75rem; }
.step p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.step-detail {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

/* ═══ AUDIO EXAMPLES ═══ */
#examples {
  background: var(--cream);
}
.audio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}
@media(min-width:600px){ .audio-grid { grid-template-columns: repeat(2, 1fr); } }

.audio-card {
  background: var(--white);
  border: 1px solid rgba(26,26,46,0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.audio-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform 0.25s ease;
  transform-origin: bottom;
}
.audio-card:hover::before, .audio-card.active::before { transform: scaleY(1); }
.audio-card:hover { box-shadow: 0 8px 32px rgba(26,26,46,0.08); transform: translateY(-2px); }

/* Coming soon state */
.audio-card.coming-soon { cursor: default; }
.audio-card.coming-soon:hover { box-shadow: none; transform: none; }
.audio-card.coming-soon:hover::before { transform: scaleY(0); }
.audio-card.coming-soon .audio-play {
  background: var(--cream-dark);
  cursor: not-allowed;
  pointer-events: none;
}
.audio-card.coming-soon .audio-play svg { fill: var(--text-light); margin-left: 2px; }
.coming-soon-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  background: var(--cream-dark);
  border: 1px solid rgba(26,26,46,0.1);
  border-radius: 20px;
  padding: 0.2rem 0.65rem;
  margin-top: 0.4rem;
}

.audio-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.audio-card-genre {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.audio-card h3 { font-size: 1.25rem; }
.audio-card-desc { font-size: 0.85rem; color: var(--text-light); }

.audio-play {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.audio-play:hover { background: var(--gold); }
.audio-play svg { width: 16px; height: 16px; fill: white; margin-left: 2px; }
.audio-play:hover svg { fill: var(--navy); }

.audio-waveform {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-top: 1rem;
}
.aw-bar {
  border-radius: 2px;
  background: var(--cream-dark);
  transition: background 0.2s;
  animation: wave-pulse 1.4s ease-in-out infinite;
  animation-play-state: paused;
}
.audio-card.active .aw-bar { background: linear-gradient(to top, rgba(201,168,76,0.5), rgba(201,168,76,1)); }
.audio-card.active .aw-bar.playing { animation-play-state: running; }

.audio-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-light);
}
.audio-duration { margin-left: auto; }

/* ═══ OCCASIONS ═══ */
#occasions {
  background: var(--navy);
}
#occasions h2 { color: var(--white); }
#occasions .eyebrow { color: var(--gold); }
#occasions .section-sub { color: rgba(255,255,255,0.6); }

.occasions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media(min-width:768px){ .occasions-grid { grid-template-columns: repeat(3, 1fr); } }

.occasion-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.occasion-card:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-2px);
}
.occasion-emoji { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.occasion-card h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.occasion-card p { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ═══ WHY DIFFERENT ═══ */
#why {
  background: var(--cream);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media(min-width:768px){ .why-layout { grid-template-columns: 1fr 1fr; } }

.why-features { display: flex; flex-direction: column; gap: 1.5rem; }

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.why-feature-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.why-feature-text h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.why-feature-text p { font-size: 0.88rem; }

.why-visual {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--white);
}
.why-quote {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.why-quote em { color: var(--gold); font-style: normal; }
.why-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.why-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}
.why-checklist li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

/* ═══ PRICING ═══ */
#pricing {
  background: var(--cream-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}
@media(min-width:768px){ .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.pricing-card {
  background: var(--white);
  border: 1px solid rgba(26,26,46,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 12px 40px rgba(26,26,46,0.1); }

.pricing-card.featured {
  background: var(--navy);
  border-color: transparent;
  position: relative;
}
.pricing-featured-tag {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-card.featured h3 { color: var(--white); }
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.6); }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
.pricing-card.featured .pricing-feature::before { color: var(--gold); }

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pricing-price {
  font-family: 'Cormorant Garant', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price sup { font-size: 1.5rem; vertical-align: super; }
.pricing-period { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; }
.pricing-desc { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 1.5rem; }
.pricing-divider { height: 1px; background: var(--cream-dark); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; flex: 1; }
.pricing-feature {
  font-size: 0.88rem;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pricing-feature::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ═══ FAQ ═══ */
#faq { background: var(--cream); }

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid rgba(26,26,46,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item {
  background: var(--white);
  border-bottom: 1px solid rgba(26,26,46,0.06);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Cormorant Garant', serif;
  font-size: 1.15rem;
  color: var(--navy);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--cream); }
.faq-question.open { background: var(--cream); }
.faq-chevron {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-question.open .faq-chevron { transform: rotate(180deg); background: var(--gold); }
.faq-chevron svg { width: 12px; height: 12px; stroke: var(--navy); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ═══ FINAL CTA ═══ */
#final-cta {
  background: var(--navy);
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
#final-cta h2 { color: var(--white); margin-bottom: 1rem; }
#final-cta .final-sub {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.final-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final-promise {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* FOOTER */
footer {
  background: #111122;
  padding: 3rem 0;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.6);
}
.footer-logo span { color: var(--gold); }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 0; }
.section-header h2 { margin-bottom: 1rem; }
.section-sub {
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
  color: var(--text-mid);
}

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* AUDIO PLAYER PROGRESS */
.audio-progress {
  height: 4px;
  background: var(--cream-dark);
  cursor: pointer;
  border-radius: 2px;
  margin-top: 0.75rem;
  overflow: hidden;
}
.audio-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.1s linear;
}
.audio-card.active .audio-progress { background: rgba(201,168,76,0.2); }

@media (prefers-reduced-motion: reduce) {
  .wave-bar, .aw-bar.playing { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
