/* =============================================================
   1. TOKENS
   ============================================================= */
:root {
  --gold:        #c9a961;
  --gold-light:  #e4c98a;
  --gold-dark:   #9a7d40;
  --brown:       #2a1a0e;
  --brown-mid:   #3d2410;
  --black:       #080808;
  --dark:        #0f0b09;
  --dark-card:   #141008;
  --white:       #ffffff;
  --cream:       #f5f0e8;
  --text:        #c8bfb0;
  --text-muted:  #7a6e60;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --top-bar-h:   88px;
  --nav-h:       60px;
  --offset:      calc(var(--top-bar-h) + var(--nav-h));
}

/* =============================================================
   2. RESET & BASE
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--black);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; }
::selection { background: var(--gold-dark); color: var(--cream); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -200px; left: 1rem;
  padding: .5rem 1rem; background: var(--cream); color: var(--black);
  z-index: 9999; border-radius: 6px; font-size: .85rem;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. TOP BAR
   ============================================================= */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #1a0d04 0%, #2a1500 50%, #1a0d04 100%);
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
  height: var(--top-bar-h);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.top-bar__track {
  flex: 1;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
}

.top-bar__text {
  display: inline-block;
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold-light);
  text-transform: uppercase;
  animation: marquee 20s linear infinite;
  padding-left: 100%;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.top-bar__timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 36px;
  padding: 0 1rem;
  background: rgba(0,0,0,.4);
}

.top-bar__timer-label {
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.top-bar__countdown {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .1em;
}

/* =============================================================
   4. NAVIGATION
   ============================================================= */
.nav {
  position: fixed;
  top: var(--top-bar-h);
  left: 0; right: 0;
  z-index: 999;
  background: rgba(8,8,8,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.15);
  height: var(--nav-h);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 1.25rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  letter-spacing: .18em;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
}

.nav__logo-dot { color: var(--gold-light); font-size: .65rem; }

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-right: -.5rem;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: transform .35s var(--ease-out), opacity .25s;
  transform-origin: center;
}

.nav__hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__menu {
  position: fixed;
  top: var(--offset);
  left: 0; right: 0;
  background: rgba(8,8,8,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,97,.15);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height .45s var(--ease-out), opacity .3s;
  z-index: 998;
}

.nav__menu.is-open {
  max-height: 400px;
  opacity: 1;
  pointer-events: auto;
}

.nav__menu ul {
  list-style: none;
  padding: 1.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.nav__link {
  display: block;
  padding: .85rem 1rem;
  font-size: 1rem;
  font-family: var(--serif);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: .06em;
  border-bottom: 1px solid rgba(201,169,97,.08);
  transition: color .2s, padding-left .25s var(--ease-out);
}

.nav__link:hover {
  color: var(--gold);
  padding-left: 1.5rem;
}

/* =============================================================
   5. SECTION COMMON
   ============================================================= */
section {
  padding: 5rem 1.5rem 4rem;
  scroll-margin-top: var(--offset);
}

section:first-of-type {
  padding-top: calc(var(--offset) + 3rem);
}

.section-label {
  font-size: .65rem;
  letter-spacing: .22em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* =============================================================
   6. REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }
.reveal[data-delay="5"] { transition-delay: .40s; }
.reveal[data-delay="6"] { transition-delay: .48s; }

/* =============================================================
   7. HERO
   ============================================================= */
.hero {
  background: radial-gradient(ellipse at 50% 0%, #1e1000 0%, var(--black) 70%);
  text-align: center;
  padding-bottom: 3rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Ccircle cx='20' cy='20' r='.5' fill='%23c9a961' fill-opacity='.06'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__ornament {
  font-size: .6rem;
  letter-spacing: .15em;
  color: var(--gold-dark);
  margin: 1rem 0;
  opacity: .6;
}

.hero__eyebrow {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: .75rem;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 10vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}

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

.hero__subtitle {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero__body {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.hero__body strong { color: var(--cream); }

/* BOOK 3D */
.hero__book-wrap {
  position: relative;
  width: 200px;
  margin: 0 auto 2.5rem;
  perspective: 800px;
}

.book-3d {
  position: relative;
  width: 175px;
  height: 240px;
  transform-style: preserve-3d;
  transform: rotateY(-25deg) rotateX(5deg);
  margin: 0 auto;
  transition: transform .6s var(--ease-out);
  animation: bookFloat 4s ease-in-out infinite;
}

@keyframes bookFloat {
  0%, 100% { transform: rotateY(-25deg) rotateX(5deg) translateY(0); }
  50%       { transform: rotateY(-25deg) rotateX(5deg) translateY(-8px); }
}

.book-3d__front {
  position: absolute;
  inset: 0;
  border-radius: 3px 6px 6px 3px;
  overflow: hidden;
  box-shadow:
    8px 12px 40px rgba(0,0,0,.8),
    2px 4px 12px rgba(201,169,97,.15);
  background: #0d1020;
}
.book-3d__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px 6px 6px 3px;
}

.book-3d__spine {
  position: absolute;
  top: 0; left: -24px;
  width: 24px; height: 100%;
  background: linear-gradient(180deg, #1a1424 0%, #0d0b18 100%);
  transform: rotateY(90deg);
  transform-origin: right center;
  border-radius: 3px 0 0 3px;
  box-shadow: inset -3px 0 6px rgba(0,0,0,.5);
}

.book-3d__back {
  position: absolute;
  inset: 0;
  background: #0d0b18;
  transform: translateZ(-4px);
  border-radius: 3px 6px 6px 3px;
}

.book-3d__top, .book-3d__bottom {
  position: absolute;
  left: 0; right: 0;
  height: 8px;
  background: linear-gradient(90deg, #2a2030 0%, #1a1428 100%);
}
.book-3d__top { top: 0; transform: rotateX(90deg); transform-origin: top center; }
.book-3d__bottom { bottom: 0; transform: rotateX(-90deg); transform-origin: bottom center; }

.book-3d__shadow {
  position: absolute;
  bottom: -20px; left: 50%;
  transform: translateX(-40%) scaleY(.3) rotateX(70deg);
  width: 160px; height: 60px;
  background: radial-gradient(ellipse, rgba(0,0,0,.6) 0%, transparent 70%);
  filter: blur(8px);
}

.hero__book-wrap:hover .book-3d {
  animation-play-state: paused;
  transform: rotateY(-15deg) rotateX(5deg) translateY(-4px);
}

/* Social proof */
.hero__social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  background: rgba(201,169,97,.06);
  border: 1px solid rgba(201,169,97,.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
}

.social-proof__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
}

.social-proof__text {
  font-size: .85rem;
  color: var(--text);
  text-align: center;
}
.social-proof__text strong { color: var(--cream); }

/* =============================================================
   8. ABOUT
   ============================================================= */
.about {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
  text-align: center;
}

.about__photo-main {
  position: relative;
  width: 200px;
  margin: 0 auto 2rem;
}

.about__photo-main img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--gold-dark);
  box-shadow: 0 8px 40px rgba(0,0,0,.6), 0 0 0 4px rgba(201,169,97,.08);
}

.about__photo-frame {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,97,.2);
  pointer-events: none;
}

.about__name {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: -.01em;
  margin-bottom: .5rem;
}

.about__divider {
  font-size: .7rem;
  color: var(--gold-dark);
  letter-spacing: .12em;
  margin-bottom: 1.5rem;
  opacity: .7;
}

.about__intro {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.about__text {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: .75rem;
  text-align: left;
}
.about__text strong { color: var(--cream); }

.about__photo-secondary {
  position: relative;
  margin-top: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
}

.about__photo-secondary img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid rgba(201,169,97,.15);
}

.about__badge {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,.85);
  border: 1px solid rgba(201,169,97,.3);
  border-radius: 999px;
  padding: .35rem 1rem;
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  white-space: nowrap;
}

/* =============================================================
   9. GUIDE
   ============================================================= */
.guide {
  background: var(--dark);
  text-align: center;
}

.guide__title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.guide__title em { color: var(--gold); font-style: italic; }

.guide__divider {
  font-size: .65rem;
  color: var(--gold-dark);
  letter-spacing: .12em;
  margin-bottom: 2rem;
  opacity: .6;
}

/* Preview images */
.guide__previews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.guide__preview-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(201,169,97,.15);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  transition: transform .3s var(--ease-out), box-shadow .3s;
}
.guide__preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.6), 0 0 0 1px rgba(201,169,97,.25);
}
.guide__preview-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Distribution */
.guide__distribution {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: rgba(201,169,97,.05);
  border: 1px solid rgba(201,169,97,.12);
  border-radius: 14px;
}

.guide__dist-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}

.guide__dist-pct {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.guide__dist-label {
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.guide__dist-divider {
  font-size: 1.5rem;
  color: var(--gold-dark);
  opacity: .5;
}

/* Topics grid */
.guide__topics { margin-bottom: 2.5rem; }

.guide__topics-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}

.guide__topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}

.topic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  padding: .85rem .5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,169,97,.1);
  border-radius: 10px;
  transition: background .2s, border-color .2s, transform .25s var(--ease-out);
}

.topic-card:hover {
  background: rgba(201,169,97,.07);
  border-color: rgba(201,169,97,.3);
  transform: translateY(-2px);
}

.topic-card__icon { font-size: 1.3rem; }
.topic-card__name {
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* Benefits list */
.guide__benefits {
  background: rgba(0,0,0,.3);
  border: 1px solid rgba(201,169,97,.12);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}

.guide__benefits-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-align: center;
}

.benefits-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }

.benefits-list__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text);
  line-height: 1.5;
}
.benefits-list__item strong { color: var(--cream); }

.check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: rgba(201,169,97,.12);
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  color: var(--gold);
  margin-top: 1px;
}

/* CTA in guide */
.guide__cta { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.guide__cta-sub {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .08em;
}

/* =============================================================
   10. BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: transform .25s var(--ease-out), box-shadow .25s, background .2s;
  cursor: pointer;
  text-decoration: none;
}

.btn--gold {
  background: linear-gradient(135deg, #c9a961 0%, #a8863d 50%, #c9a961 100%);
  background-size: 200% 200%;
  color: var(--black);
  box-shadow: 0 4px 20px rgba(201,169,97,.35);
}
.btn--gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,97,.5);
}

.btn--large {
  padding: 1rem 2rem;
  font-size: .85rem;
  min-width: 280px;
}

.btn--xl {
  padding: 1.15rem 2.25rem;
  font-size: .9rem;
  min-width: 300px;
  width: 100%;
  max-width: 360px;
}

.btn--outline {
  padding: .85rem 1.75rem;
  border: 1px solid rgba(201,169,97,.4);
  color: var(--gold);
  font-size: .8rem;
}
.btn--outline:hover {
  background: rgba(201,169,97,.08);
  border-color: var(--gold);
}

.btn__arrow {
  font-size: 1.1rem;
  transition: transform .25s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* =============================================================
   11. TESTIMONIALS
   ============================================================= */
.testimonials {
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  text-align: center;
}

.testimonials__title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.testimonials__title em { color: var(--gold); font-style: italic; }

.testimonials__divider {
  font-size: .65rem;
  color: var(--gold-dark);
  letter-spacing: .12em;
  margin-bottom: 2rem;
  opacity: .6;
}

.testimonials__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,169,97,.12);
  border-radius: 14px;
  padding: 1.5rem;
  text-align: left;
  transition: border-color .25s, transform .25s var(--ease-out);
}
.testimonial-card:hover {
  border-color: rgba(201,169,97,.3);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

.testimonial-card__text {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-card__text strong { color: var(--cream); font-style: normal; }

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--brown));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}

.testimonial-card__author div {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.testimonial-card__author strong {
  font-size: .85rem;
  color: var(--cream);
}
.testimonial-card__author span {
  font-size: .72rem;
  color: var(--text-muted);
}

/* =============================================================
   12. OFFER
   ============================================================= */
.offer {
  background: linear-gradient(180deg, var(--black) 0%, #0f0800 50%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.offer__bg-ornament {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40vw;
  color: rgba(201,169,97,.02);
  pointer-events: none;
  line-height: 1;
}

.offer__title {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.offer__title em { color: var(--gold); font-style: italic; }

.offer__timer {
  background: rgba(0,0,0,.5);
  border: 1px solid rgba(201,169,97,.2);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
}

.offer__timer-label {
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: .4rem;
}

.offer__countdown {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .15em;
  font-family: var(--sans);
}

.offer__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: .4rem 1.25rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.offer__price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  margin-bottom: 2rem;
}

.offer__price-old {
  font-size: 1.5rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--serif);
  opacity: .6;
}

.offer__price-current {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}

.offer__price-sub {
  font-size: .7rem;
  color: var(--text-muted);
  letter-spacing: .1em;
}

.offer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.offer__security {
  font-size: .72rem;
  color: var(--text-muted);
  letter-spacing: .06em;
}

.offer__guarantee {
  display: flex;
  gap: 1rem;
  background: rgba(201,169,97,.05);
  border: 1px solid rgba(201,169,97,.15);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: left;
}

.offer__guarantee-icon { font-size: 2rem; flex-shrink: 0; }

.offer__guarantee-content strong {
  display: block;
  color: var(--cream);
  margin-bottom: .4rem;
  font-size: .9rem;
}
.offer__guarantee-content p {
  font-size: .8rem;
  color: var(--text);
  line-height: 1.65;
}
.offer__guarantee-content p strong {
  display: inline;
  color: var(--gold-light);
}

.offer__book {
  max-width: 160px;
  margin: 0 auto;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.7));
  transition: transform .3s var(--ease-out);
}
.offer__book:hover { transform: translateY(-4px) rotate(-2deg); }
.offer__book img { border-radius: 4px; }

/* =============================================================
   13. CONTACT
   ============================================================= */
.contact {
  background: var(--dark);
  text-align: center;
}

.contact__title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1rem;
}

.contact__divider {
  font-size: .65rem;
  color: var(--gold-dark);
  letter-spacing: .12em;
  margin-bottom: 1.5rem;
  opacity: .6;
}

.contact__text {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.contact__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,169,97,.12);
  border-radius: 12px;
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s, transform .25s var(--ease-out);
}
.contact__link:hover {
  background: rgba(201,169,97,.07);
  border-color: rgba(201,169,97,.3);
  color: var(--gold);
  transform: translateY(-1px);
}

.contact__link-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(201,169,97,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background .2s;
}
.contact__link:hover .contact__link-icon {
  background: rgba(201,169,97,.2);
}

.contact__link-text {
  font-size: .875rem;
  font-weight: 500;
}

.contact__cta { margin-top: 1rem; }

/* =============================================================
   14. FOOTER
   ============================================================= */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,169,97,.1);
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

.footer__ornament {
  font-size: .6rem;
  color: var(--gold-dark);
  letter-spacing: .15em;
  margin-bottom: 1.5rem;
  opacity: .5;
}

.footer__logo {
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__copy {
  font-size: .75rem;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

.footer__legal {
  font-size: .65rem;
  color: var(--text-muted);
  opacity: .5;
  max-width: 280px;
  margin: 0 auto;
  line-height: 1.5;
}

/* =============================================================
   15. REDUCED MOTION (only intrusive effects)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .book-3d { animation: none; }
  .top-bar__text { animation-play-state: paused; }
}

/* =============================================================
   16. DESKTOP SAFEGUARD (minimal — site is mobile-first)
   ============================================================= */
@media (min-width: 480px) {
  .guide__topics-grid { grid-template-columns: repeat(4, 1fr); }
  .btn--xl { max-width: 400px; }
}

.testimonial-card__avatar--photo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  flex-shrink: 0;
  border: 1px solid rgba(201,169,97,.2);
}

/* =============================================================
   NUEVAS SECCIONES CRO
   ============================================================= */

/* DOLOR */
.pain {
  background: linear-gradient(180deg, var(--black) 0%, #0a0500 100%);
  text-align: center;
  padding: 5rem 1.5rem 4rem;
}
.pain__title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.pain__divider {
  font-size: .65rem;
  color: var(--gold-dark);
  letter-spacing: .12em;
  margin-bottom: 2rem;
  opacity: .6;
}
.pain__list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-bottom: 2rem;
  text-align: left;
}
.pain__item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,169,97,.08);
  border-radius: 12px;
  padding: 1rem 1.15rem;
}
.pain__icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.pain__item p { font-size: .875rem; color: var(--text); line-height: 1.6; }
.pain__item p strong { color: var(--cream); }
.pain__conclusion {
  background: rgba(201,169,97,.06);
  border: 1px solid rgba(201,169,97,.2);
  border-radius: 14px;
  padding: 1.5rem;
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
}
.pain__conclusion strong { color: var(--gold-light); }

/* PARA QUIÉN */
.forwho {
  background: var(--dark);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.forwho__title {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.forwho__title--no { margin-top: .5rem; }
.forwho__divider {
  font-size: .65rem; color: var(--gold-dark);
  letter-spacing: .12em; margin-bottom: 1.5rem; opacity: .6;
}
.forwho__divider2 {
  font-size: .65rem; color: var(--gold-dark);
  letter-spacing: .12em; margin: 2rem 0 1.5rem; opacity: .6;
}
.forwho__list {
  display: flex; flex-direction: column; gap: .75rem;
  text-align: left; margin-bottom: 1rem;
}
.forwho__item {
  display: flex; align-items: flex-start; gap: .85rem;
  border-radius: 12px; padding: .9rem 1.15rem;
}
.forwho__item--yes {
  background: rgba(201,169,97,.05);
  border: 1px solid rgba(201,169,97,.15);
}
.forwho__item--no {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.06);
}
.forwho__item span:first-child { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.forwho__item p { font-size: .875rem; color: var(--text); line-height: 1.6; }
.forwho__item p strong { color: var(--cream); }

/* Lo que recibirás */
.guide__receive {
  background: rgba(201,169,97,.04);
  border: 1px solid rgba(201,169,97,.15);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
}
.guide__receive-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  text-align: center;
}
.guide__receive-note {
  margin-top: 1.25rem;
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  border-top: 1px solid rgba(201,169,97,.1);
  padding-top: 1rem;
}
.guide__receive-note strong { color: var(--text); font-style: normal; }

/* Texto edad */
.about__text--age {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201,169,97,.1);
  font-style: italic;
  color: var(--text-muted);
}
.about__text--age strong { color: var(--gold-light); font-style: normal; }

/* FAQ */
.faq {
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  scroll-margin-top: var(--offset);
}
.faq__title {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.faq__title em { color: var(--gold); font-style: italic; }
.faq__divider {
  font-size: .65rem; color: var(--gold-dark);
  letter-spacing: .12em; margin-bottom: 2rem; opacity: .6;
}
.faq__list {
  display: flex; flex-direction: column; gap: .6rem;
  text-align: left;
}
.faq__item {
  border: 1px solid rgba(201,169,97,.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
  transition: border-color .2s;
}
.faq__item.is-open { border-color: rgba(201,169,97,.3); }
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--cream);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
}
.faq__icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform .3s var(--ease-out);
  line-height: 1;
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .3s;
  padding: 0 1.25rem;
}
.faq__item.is-open .faq__answer {
  max-height: 200px;
  padding: 0 1.25rem 1.1rem;
}
.faq__answer p {
  font-size: .85rem;
  color: var(--text);
  line-height: 1.75;
  border-top: 1px solid rgba(201,169,97,.08);
  padding-top: .75rem;
}
