:root {
  --bg: #f5f1ea;
  --surface: #fffdf9;
  --surface-2: #efe8de;
  --ink: #1f1d1a;
  --muted: #6f675d;
  --line: #ddd2c4;
  --accent: #ff8d1a;
  --accent-soft: #ece2d4;
  --shadow: 0 14px 34px rgba(31, 29, 26, 0.08);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(940px, calc(100% - 40px)); }
.section { padding: 88px 0; }
.section-alt { background: rgba(255,255,255,0.42); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245,241,234,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,29,26,0.06);
}
.header-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { height: 68px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 700;
  transition: transform .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark {
  background: var(--ink);
  color: white;
}
.button-accent {
  background: var(--accent);
  color: white;
}
.button-light {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero {
  padding: 56px 0 84px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1, .section-head h2, .form-copy h1, .centered-text h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.intro {
  max-width: 540px;
  margin: 22px 0 0;
  font-size: 22px;
  line-height: 1.45;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0 24px;
  flex-wrap: wrap;
}
.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 16px;
}
.hero-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 10px;
}

.hero-visual {
  position: relative;
  min-height: 470px;
}
.hero-stack {
  position: absolute;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--surface);
}
.hero-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-stack span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}
.stack-back {
  width: 330px;
  height: 430px;
  right: 18px;
  top: 10px;
}
.stack-back span {
  background: var(--accent);
  color: white;
}
.stack-front {
  width: 290px;
  height: 390px;
  left: 12px;
  bottom: 0;
  transform: rotate(-4deg);
}
.stack-front span {
  background: white;
  color: var(--ink);
}

.section-head { margin-bottom: 34px; }
.section-head h2 {
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 8px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  max-width: 720px;
}
.section-head.centered { text-align: center; }
.section-head.centered p { margin: 0 auto; }

.two-col, .month-grid, .pricing-grid, .faq-row, .form-wrap {
  display: grid;
  gap: 24px;
}
.two-col { grid-template-columns: repeat(2, 1fr); }
.month-grid { grid-template-columns: repeat(2, 1fr); }
.pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.faq-row { grid-template-columns: 0.8fr 1.2fr; align-items: center; }
.form-wrap { grid-template-columns: 0.9fr 1.1fr; align-items: start; }

.choice-card, .price-card, .book-card, .signup-form, details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.choice-card {
  padding: 30px;
}
.choice-card h3, .book-copy h3, .price-card h3 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.choice-card p, .book-copy p, .price-card p, .faq-row p, .form-copy p, .signup-form label, details p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}
.choice-label, .pill {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 18px;
}
.accent, .pill-accent { background: var(--accent); color: white; }
.soft, .pill-soft { background: var(--accent-soft); color: #7a4d15; }

.book-card {
  overflow: hidden;
}
.book-media {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--surface-2);
}
.book-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.book-copy {
  padding: 28px;
}
.book-copy .meta {
  margin-top: 2px;
  font-size: 16px;
}

.price-card {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  min-height: 270px;
}
.price-card .price {
  font-size: 78px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin: 14px 0 18px;
}
.price-card.featured {
  border: 2px solid var(--accent);
}
.featured-tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 800;
}
.pricing-note {
  text-align: center;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
}
.pricing-note p { margin: 8px 0; }
.center-button { text-align: center; margin-top: 28px; }

.mini-faq { padding-top: 70px; padding-bottom: 70px; }

.faq-list {
  display: grid;
  gap: 14px;
}
details { padding: 22px 24px; }
summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 20px;
}
details p { margin-bottom: 0; }

.signup-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.signup-form label {
  display: grid;
  gap: 8px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 700;
}
input, select {
  width: 100%;
  border: 1px solid var(--line);
  background: white;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--ink);
}
.thanks-page { min-height: 100vh; display: grid; align-items: center; }
.centered-text { text-align: center; }
.centered-text p { color: var(--muted); font-size: 19px; }

.site-footer {
  padding: 30px 0 40px;
  border-top: 1px solid rgba(31,29,26,0.06);
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 980px) {
  .hero-grid, .month-grid, .pricing-grid, .faq-row, .form-wrap, .two-col {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .nav a:not(.button) { display: none; }
  .brand img { height: 56px; }
  .hero { padding-top: 34px; }
  .wrap { width: min(100% - 24px, 1180px); }
  .hero-visual { min-height: 340px; }
  .stack-back { width: 240px; height: 310px; right: 0; }
  .stack-front { width: 210px; height: 285px; left: 0; }
  .book-media { grid-template-columns: 1fr 1fr; }
  .price-card .price { font-size: 62px; }
}
