/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Variables ── */
:root {
  --cream: #FDF8F0;
  --cream-dark: #F5EFE4;
  --navy: #1A2744;
  --navy-light: #2D3B5C;
  --coral: #E8624A;
  --coral-light: #F28A73;
  --gold: #C9943A;
  --text: #2A2A2A;
  --text-mid: #5A5A5A;
  --text-light: #8A8A8A;
  --radius: 4px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
section { padding: 80px 0; }
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 48px;
}

/* ── NAV ── */
.nav {
  padding: 24px 0;
  border-bottom: 1px solid rgba(26,39,68,0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.nav-tagline {
  font-size: 0.875rem;
  color: var(--text-mid);
  font-weight: 300;
}

/* ── HERO ── */
.hero { padding: 80px 0 96px; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy);
  margin-bottom: 20px;
}
.hero-headline em { font-style: italic; color: var(--coral); }
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}
.hero-detail { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--cream-dark);
  border: 1px solid rgba(26,39,68,0.12);
  border-radius: 100px;
  padding: 6px 14px;
  color: var(--navy-light);
}

/* Book mockup */
.hero-visual { position: relative; }
.book-mockup {
  display: flex;
  align-items: stretch;
  gap: 6px;
  filter: drop-shadow(0 24px 48px rgba(26,39,68,0.15));
}
.book-spine {
  width: 18px;
  background: var(--navy);
  border-radius: 2px 0 0 2px;
  flex-shrink: 0;
}
.book-pages {
  display: flex;
  gap: 4px;
}
.book-page {
  width: 140px;
  background: white;
  border-radius: 0 4px 4px 0;
  padding: 16px 14px;
  box-shadow: inset -2px 0 4px rgba(0,0,0,0.05), 0 2px 8px rgba(26,39,68,0.08);
}
.book-page-2 { border-radius: 0; }
.page-art {
  width: 100%;
  height: 90px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.page-art-1 { background: linear-gradient(135deg, #B8D9C8 0%, #8EC5A0 100%); }
.page-art-2 { background: linear-gradient(135deg, #F5D5C8 0%, #E8A88C 100%); }
.text-line {
  height: 7px;
  background: var(--cream-dark);
  border-radius: 3px;
  margin-bottom: 6px;
}
.text-line-1 { width: 85%; }
.text-line-2 { width: 70%; }
.text-line-3 { width: 60%; }
.text-line-4 { width: 75%; }

.book-nameplate {
  position: absolute;
  bottom: -8px;
  right: 20px;
  background: var(--coral);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.hero-price-tag {
  position: absolute;
  top: -20px;
  right: 0;
  text-align: right;
}
.price-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.price-sub {
  font-size: 0.8rem;
  color: var(--text-mid);
}

/* ── HOW IT WORKS ── */
.how { background: var(--cream-dark); }
.how-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26,39,68,0.12);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }

/* ── MANIFESTO ── */
.manifesto {
  background: var(--navy);
  color: white;
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 32px;
  text-align: center;
}
.manifesto-mark {
  font-size: 1.5rem;
  color: var(--coral);
  margin-bottom: 24px;
}
.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(253,248,240,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── SAMPLES ── */
.samples { background: var(--cream); }
.samples-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sample-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(26,39,68,0.08);
  background: white;
}
.sample-art {
  width: 100%;
  height: 180px;
}
.sample-art-forest { background: linear-gradient(160deg, #C8E6C9 0%, #81C784 50%, #2E7D32 100%); }
.sample-art-space { background: linear-gradient(160deg, #1A237E 0%, #3949AB 40%, #0D1B4B 100%); }
.sample-art-dino { background: linear-gradient(160deg, #FFAB91 0%, #FF7043 40%, #BF360C 100%); }
.sample-info { padding: 20px; }
.sample-theme {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.sample-desc { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

/* ── PRICING ── */
.pricing { background: var(--cream-dark); }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; text-align: center; }
.pricing-card {
  display: inline-block;
  background: white;
  border-radius: 16px;
  padding: 48px 56px;
  text-align: left;
  box-shadow: 0 8px 32px rgba(26,39,68,0.08);
  max-width: 420px;
}
.pricing-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 0.9rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid rgba(26,39,68,0.06);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── CLOSING ── */
.closing {
  background: var(--cream);
  text-align: center;
  padding: 96px 0;
}
.closing-inner { max-width: 680px; margin: 0 auto; padding: 0 32px; }
.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(253,248,240,0.5);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  display: block;
  margin-bottom: 6px;
}
.footer-desc { font-size: 0.8rem; }
.footer-meta { font-size: 0.8rem; font-style: italic; }

/* ── SIGNUP ── */
.signup-section {
  background: var(--cream);
  padding: 96px 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}
.signup-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 32px;
}
.signup-header { text-align: center; margin-bottom: 40px; }
.signup-headline {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.signup-sub {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.signup-form {
  background: var(--cream-dark);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.form-group input {
  padding: 12px 14px;
  border: 1px solid rgba(26,39,68,0.15);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.form-group input:focus { border-color: var(--coral); }
.btn-signup {
  background: var(--coral);
  color: #fff;
  border: none;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.btn-signup:hover { background: var(--coral-light); }
.btn-signup:disabled { opacity: 0.6; cursor: not-allowed; }
.form-note {
  font-size: 0.75rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -8px;
}
.signup-success {
  text-align: center;
  padding: 40px;
}
.success-check {
  font-size: 2.5rem;
  color: var(--coral);
  margin-bottom: 16px;
}
.signup-success p {
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 500;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .book-mockup { justify-content: center; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .sample-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 32px 28px; }
}
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .hero { padding: 56px 0 64px; }
  .nav-tagline { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}