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

:root {
  --ink: #2b2116;
  --ink-soft: #4a3d2c;
  --parchment: #f2e9d8;
  --parchment-dark: #e8dcc4;
  --dark-bg: #221a12;
  --dark-bg-2: #1a1409;
  --gold: #b6913c;
  --gold-light: #d4af6a;
  --cream-text: #eee3c8;
  --muted: #7a6c53;
}

body {
  font-family: 'EB Garamond', Georgia, serif;
  background: var(--parchment);
  color: var(--ink);
  line-height: 1.75;
  font-size: 1.08rem;
  overflow-x: hidden;
}

.container { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 660px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.gold { color: var(--gold); font-style: italic; }
.gold-text { color: var(--gold-light); }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-family: 'EB Garamond', serif;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  line-height: 1.35;
  margin-bottom: 24px;
  color: var(--ink);
}
.section-dark .section-title,
.section-offer .section-title { color: var(--cream-text); }

p { margin-bottom: 18px; }
.lead { font-size: 1.2rem; }
.lead-quote {
  font-style: italic;
  font-size: 1.15rem;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  color: var(--ink-soft);
}
.section-dark .lead-quote { color: var(--cream-text); border-color: var(--gold-light); }
.emphasis { font-weight: 600; font-size: 1.15rem; }
.callout {
  text-align: center;
  font-style: italic;
  font-size: 1.2rem;
  margin: 28px 0;
  color: var(--gold);
}
.intro-p { max-width: 560px; margin-left: auto; margin-right: auto; }

.escalation-list { margin: 24px 0; }
.escalation-list p {
  margin-bottom: 10px;
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}
.section-dark .escalation-list p { border-color: var(--gold-light); }

/* CTA BUTTON */
.cta-wrap { display: flex; justify-content: center; margin: 30px 0 10px; }
.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-bg-2);
  font-family: 'EB Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 18px 36px;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  border: 1px solid var(--gold);
  transition: all 0.25s ease;
  max-width: 420px;
}
.btn-cta:hover {
  background: transparent;
  color: var(--gold-light);
  box-shadow: 0 0 0 1px var(--gold-light) inset;
}
.btn-cta-final { max-width: 480px; }

/* ================= HERO ================= */
.hero {
  background: linear-gradient(180deg, var(--dark-bg-2) 0%, var(--dark-bg) 100%);
  padding: 70px 0 60px;
  text-align: center;
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { color: var(--gold-light); }
.hero-title {
  color: var(--cream-text);
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  line-height: 1.3;
  margin-bottom: 22px;
  max-width: 640px;
}
.hero-sub {
  color: #c9bc9c;
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 34px;
  line-height: 1.8;
}
.hero-image-wrap { max-width: 340px; margin-bottom: 12px; }
.hero-book-img {
  width: 100%; height: auto;
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.5));
}

/* ================= SECTIONS ================= */
.section { padding: 70px 0; }
.section-cream { background: var(--parchment); }
.section-dark { background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-2) 100%); color: var(--cream-text); }
.section-dark p { color: #d8cba9; }
.section-dark .emphasis { color: var(--cream-text); }

/* ================= FEATURES ================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0 40px;
}
.feature-card {
  background: rgba(182,145,60,0.08);
  border: 1px solid rgba(182,145,60,0.3);
  border-radius: 6px;
  padding: 22px 20px;
}
.feature-icon { color: var(--gold-light); font-size: 1rem; display: block; margin-bottom: 10px; }
.feature-card p { margin-bottom: 0; font-size: 0.98rem; color: #d8cba9; }

.book-flatlay-wrap { margin: 40px auto; max-width: 620px; text-align: center; }
.book-flatlay-wrap img { width: 100%; height: auto; border-radius: 6px; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

/* ================= CHECK LIST ================= */
.check-list { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; align-items: flex-start; gap: 12px; text-align: left; }
.check-mark {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); color: var(--dark-bg-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700; flex-shrink: 0; margin-top: 2px;
}

/* ================= VISUAL SECTION ================= */
.visual-section { padding: 50px 0; }
.visual-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.visual-grid img { width: 100%; height: auto; border-radius: 6px; box-shadow: 0 20px 40px rgba(0,0,0,0.4); }

/* ================= OFFER ================= */
.section-offer {
  background: linear-gradient(180deg, var(--dark-bg-2) 0%, #150f08 100%);
  color: var(--cream-text);
  padding: 80px 0;
}
.section-offer p { color: #d8cba9; }
.offer-box {
  background: rgba(182,145,60,0.06);
  border: 1px solid rgba(182,145,60,0.35);
  border-radius: 10px;
  padding: 40px 32px;
  margin: 36px 0;
  text-align: left;
}
.offer-box-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--cream-text);
  margin-bottom: 20px;
  text-align: center;
}
.offer-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.offer-item { display: flex; align-items: flex-start; gap: 12px; }
.offer-item span:last-child { color: #e6dab8; }
.offer-cta-lead {
  text-align: center;
  font-style: italic;
  font-size: 1.05rem;
  margin: 24px 0;
  color: var(--gold-light);
}
.price-area { text-align: center; margin: 30px 0 10px; }
.price-label { font-size: 1rem; color: #c9bc9c; margin-bottom: 6px; }
.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.price-note { font-size: 0.95rem; color: #b8ab8c; max-width: 420px; margin: 0 auto; }

.final-line { margin: 40px 0 10px; color: #c9bc9c; font-size: 1.05rem; }

/* ================= FOOTER ================= */
.footer { background: #150f08; padding: 40px 0; text-align: center; }
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold-light); margin-bottom: 12px; }
.footer-legal { font-size: 0.78rem; color: #6b5f47; line-height: 1.6; margin-bottom: 10px; }
.footer-copy { font-size: 0.8rem; color: #59503d; }

/* ================= PURCHASE NOTIFICATION ================= */
.purchase-notification {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f8f2e3;
  border: 1px solid rgba(182,145,60,0.4);
  border-radius: 8px;
  padding: 14px 18px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  transform: translateY(140%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  pointer-events: none;
}
.purchase-notification.show {
  transform: translateY(0);
  opacity: 1;
}
.purchase-notification-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1409;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.purchase-notification-text p { margin-bottom: 0; }
.purchase-notification-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
}
.purchase-notification-detail {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .purchase-notification {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 14px;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .features-grid { grid-template-columns: 1fr; }
  .visual-grid { grid-template-columns: 1fr; }
  .hero { padding: 50px 0 44px; }
  .section { padding: 54px 0; }
  .offer-box { padding: 28px 20px; }
  .price-value { font-size: 2.4rem; }
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.hero-inner > * { animation: fadeInUp 0.6s ease both; }
.hero-inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.15s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.25s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.35s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.45s; }
