:root {
  --bg: #FBF8F3;
  --bg-alt: #F2EDE5;
  --fg: #1C1C2E;
  --fg-muted: #6B6B7A;
  --accent: #C84B31;
  --accent-warm: #E8876A;
  --border: #E2D9CC;
  --shadow: rgba(28,28,46,0.08);
  --radius: 12px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* HERO */
.hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.lede {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
  font-weight: 300;
}

/* BOOK MOCKUP */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.book-mockup { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.book-cover {
  width: 220px;
  height: 220px;
  position: relative;
  display: flex;
  box-shadow: 0 24px 64px rgba(28,28,46,0.18), 0 8px 24px rgba(28,28,46,0.1);
  border-radius: 4px 8px 8px 4px;
  transform: rotate(-3deg);
}
.cover-art {
  width: 185px;
  height: 100%;
  border-radius: 4px 0 0 4px;
  overflow: hidden;
  position: relative;
}
.cover-scene { width: 100%; height: 100%; position: relative; overflow: hidden; }
.scene-moon {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  background: #FFF8E7;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255,248,231,0.6);
}
.scene-stars { position: absolute; inset: 0; }
.star {
  position: absolute;
  width: 4px; height: 4px;
  background: #FFF8E7;
  border-radius: 50%;
}
.star:nth-child(1) { top: 15px; left: 30px; }
.star:nth-child(2) { top: 40px; left: 70px; width: 3px; height: 3px; }
.star:nth-child(3) { top: 12px; left: 110px; }
.star:nth-child(4) { top: 55px; left: 25px; width: 3px; height: 3px; }
.star:nth-child(5) { top: 30px; left: 140px; width: 3px; height: 3px; }
.scene-hills {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, #3D5A3A 0%, #5C7A52 100%);
  border-radius: 60% 60% 0 0 / 40px 40px 0 0;
}
.scene-hills::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50px;
  background: linear-gradient(to top, #2E4428 0%, transparent 100%);
  border-radius: 50% 50% 0 0 / 25px 25px 0 0;
}
.scene-deer {
  position: absolute;
  bottom: 15px; left: 40px;
  width: 28px; height: 35px;
  background: #D4A574;
  border-radius: 8px 8px 4px 4px;
}
.scene-deer::before {
  content: '';
  position: absolute;
  top: -18px; left: 6px;
  width: 16px; height: 18px;
  background: #D4A574;
  border-radius: 50% 50% 40% 40%;
}
.cover-spine {
  width: 20px;
  background: linear-gradient(to right, #B8895A, #C9A070);
  border-left: 1px solid rgba(0,0,0,0.1);
}
.cover-back {
  flex: 1;
  background: #F0E6D8;
  border-radius: 0 8px 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px;
  text-align: center;
}
.book-title-art {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  font-style: italic;
}
.book-subtitle-art {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.book-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.label-story {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--fg);
  font-weight: 300;
}
.label-meta {
  font-size: 11px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.hero-proof {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.proof-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}

/* HOW IT WORKS */
.how { padding: 80px 40px; background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.how-inner { max-width: 960px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.how h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step { padding: 0 24px; }
.step-num {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.step-connector {
  width: 1px;
  background: var(--border);
  height: 120px;
  margin-top: 20px;
}

/* SHOWCASE */
.showcase { padding: 80px 40px; border-bottom: 1px solid var(--border); }
.showcase-inner { max-width: 1140px; margin: 0 auto; }
.showcase h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.books {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.book-card { display: flex; flex-direction: column; gap: 0; }
.book-thumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px var(--shadow);
}
.thumb-scene { width: 100%; height: 100%; position: relative; overflow: hidden; }

/* Ocean scene */
.ocean-sun {
  position: absolute;
  top: 15px; right: 20px;
  width: 40px; height: 40px;
  background: #FFE566;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,229,102,0.5);
}
.ocean-waves { position: absolute; bottom: 0; left: 0; right: 0; }
.wave {
  position: absolute;
  bottom: 0; left: -10%; right: -10%;
  height: 60px;
  border-radius: 50% 50% 0 0;
}
.wave-1 { background: #3A7BB5; height: 70px; }
.wave-2 { background: #2A5F8A; height: 50px; }
.ocean-boat {
  position: absolute;
  bottom: 40px; left: 30%;
  width: 50px; height: 35px;
  background: #E8D4B8;
  border-radius: 4px 4px 50% 50%;
}
.ocean-boat::after {
  content: '';
  position: absolute;
  top: -30px; left: 20px;
  width: 2px; height: 30px;
  background: #8B7355;
}
.ocean-boat::before {
  content: '';
  position: absolute;
  top: -25px; left: 22px;
  width: 25px; height: 18px;
  background: #F5E6D0;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

/* Garden scene */
.garden-sun {
  position: absolute;
  top: 10px; left: 15px;
  width: 50px; height: 50px;
  background: #FFD166;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,209,102,0.5);
}
.garden-flowers { position: absolute; bottom: 0; left: 0; right: 0; height: 120px; }
.flower {
  position: absolute;
  bottom: 0;
  width: 24px; height: 60px;
  background: #5C8A3C;
  border-radius: 12px 12px 0 0;
}
.flower::before {
  content: '';
  position: absolute;
  top: -16px; left: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #E8876A;
}
.flower.f2 { left: 20%; bottom: 10px; height: 80px; }
.flower.f2::before { background: #F4A261; }
.flower.f3 { left: 40%; bottom: 5px; height: 70px; }
.flower.f3::before { background: #C84B31; }
.flower.f4 { left: 60%; bottom: 15px; height: 55px; }
.flower.f4::before { background: #E8876A; }
.flower.f5 { left: 80%; bottom: 8px; height: 75px; }
.flower.f5::before { background: #F4A261; }
.garden-butterfly {
  position: absolute;
  top: 30%; left: 55%;
  width: 20px; height: 14px;
  background: #C84B31;
  border-radius: 50%;
}
.garden-butterfly::before, .garden-butterfly::after {
  content: '';
  position: absolute;
  top: -4px;
  width: 14px; height: 18px;
  background: #C84B31;
  border-radius: 50% 50% 50% 50%;
  opacity: 0.7;
}
.garden-butterfly::before { left: -12px; transform: rotate(-30deg); }
.garden-butterfly::after { right: -12px; transform: rotate(30deg); }

/* Space scene */
.space-rocket {
  position: absolute;
  bottom: 20%; left: 35%;
  width: 28px; height: 55px;
  background: #E8E8E8;
  border-radius: 50% 50% 4px 4px;
}
.space-rocket::before {
  content: '';
  position: absolute;
  top: 50%; left: -8px;
  width: 12px; height: 12px;
  border-radius: 4px;
  background: #C84B31;
}
.space-rocket::after {
  content: '';
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: #FF9B5C;
  border-radius: 0 0 50% 50%;
  opacity: 0.8;
}
.space-planet {
  position: absolute;
  top: 20%; right: 15%;
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #B57BA8, #7B4F9C);
  border-radius: 50%;
  box-shadow: inset -8px -8px 16px rgba(0,0,0,0.2);
}
.space-stars { position: absolute; inset: 0; }
.sstar {
  position: absolute;
  width: 3px; height: 3px;
  background: white;
  border-radius: 50%;
}
.sstar:nth-child(1) { top: 10%; left: 15%; }
.sstar:nth-child(2) { top: 20%; left: 70%; width: 2px; height: 2px; }
.sstar:nth-child(3) { top: 40%; left: 25%; width: 4px; height: 4px; }
.sstar:nth-child(4) { top: 15%; left: 50%; }
.sstar:nth-child(5) { top: 60%; left: 10%; width: 2px; height: 2px; }
.sstar:nth-child(6) { top: 35%; left: 85%; }

.book-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,75,49,0.08);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.book-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}
.book-info p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.book-spec {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.7;
  letter-spacing: 0.03em;
}

/* MANIFESTO */
.manifesto {
  padding: 100px 40px;
  background: var(--fg);
  color: #F5F0E8;
}
.manifesto-inner { max-width: 720px; margin: 0 auto; }
blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 36px;
  color: #F5F0E8;
}
.manifesto p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245,240,232,0.75);
  margin-bottom: 20px;
  font-weight: 300;
}
.manifesto p:last-child {
  color: var(--accent-warm);
  font-weight: 500;
}

/* FOOTER */
footer { padding: 32px 40px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-note { font-size: 12px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .books { grid-template-columns: 1fr; }
  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .step-connector { display: none; }
  .step { padding: 0; }
  .hero-proof { gap: 16px; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 20px 40px; }
  .how, .showcase { padding: 60px 20px; }
  .manifesto { padding: 80px 20px; }
  footer { padding: 24px 20px; }
  .hero-proof { flex-direction: column; align-items: center; gap: 8px; }
}