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

/* ===== TOKENS ===== */
:root {
  --bg: #F8F4EE;
  --fg: #3D3530;
  --accent: #C9A89A;
  --accent-light: #E8D8D0;
  --accent-warm: #A87E72;
  --muted: #8C7E76;
  --cream: #FDFAF6;
  --header-height: 68px;
}

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

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

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: var(--bg);
  border-bottom: 1px solid var(--accent-light);
  z-index: 100;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.header-nav .nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--header-height) + 80px);
  padding-bottom: 80px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent-warm);
}
.hero-lede {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 420px;
}

/* ===== PLANNER MOCK ===== */
.hero-visual {
  display: flex;
  justify-content: center;
}
.planner-mock {
  width: 280px;
  background: var(--cream);
  border: 1px solid var(--accent-light);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 20px 60px rgba(61,53,48,0.10), 0 4px 12px rgba(61,53,48,0.06);
  font-size: 12px;
}
.mock-tab {
  background: var(--accent-light);
  color: var(--accent-warm);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 14px;
}
.mock-section {
  padding: 7px 0;
  color: var(--muted);
  font-size: 12px;
  border-bottom: 1px solid var(--accent-light);
  letter-spacing: 0.01em;
}
.mock-section:last-of-type { border-bottom: none; }
.mock-pages {
  margin-top: 20px;
  background: var(--bg);
  border-radius: 8px;
  padding: 16px;
}
.mock-page-label {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  color: var(--fg);
  font-weight: 500;
  margin-bottom: 10px;
  font-style: italic;
}
.mock-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.mock-row {
  display: flex;
  gap: 6px;
}
.mock-row span {
  height: 18px;
  flex: 1;
  background: var(--accent-light);
  border-radius: 4px;
}
.mock-row span:nth-child(2) { background: var(--accent); opacity: 0.5; }
.mock-today {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 6px;
  text-align: center;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 80px 40px;
  background: var(--cream);
  border-top: 1px solid var(--accent-light);
  border-bottom: 1px solid var(--accent-light);
}
.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-badge {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 28px;
}
.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.philosophy-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.philosophy-body em { color: var(--fg); font-style: normal; font-weight: 500; }

/* ===== PRODUCTS ===== */
.products { padding: 100px 40px; }
.products-inner { max-width: 1200px; margin: 0 auto; }
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 56px;
  letter-spacing: -0.01em;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.product-card {
  padding: 36px 32px;
  background: var(--cream);
  border: 1px solid var(--accent-light);
}
.card-icon {
  margin-bottom: 16px;
}
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 10px;
}
.product-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 40px;
  background: var(--fg);
  color: var(--cream);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  font-style: italic;
  color: var(--accent-light);
  margin-bottom: 64px;
  letter-spacing: -0.01em;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.manifesto-item {
  padding: 48px 48px 48px 0;
  border-top: 1px solid rgba(201,168,154,0.2);
  border-right: 1px solid rgba(201,168,154,0.2);
}
.manifesto-item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
  border-right: none;
}
.manifesto-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  font-weight: 500;
}
.manifesto-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}
.manifesto-item p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(253,250,246,0.55);
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 40px;
  background: var(--bg);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.closing-illustration {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
}
.plant-line {
  width: 80px;
  height: 100px;
  border-left: 2px solid var(--accent-light);
  border-top: 2px solid var(--accent-light);
  border-radius: 40px 0 0 0;
  position: relative;
}
.plant-line::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -2px;
  width: 40px;
  height: 60px;
  border: 2px solid var(--accent-light);
  border-radius: 40px 40px 0 0;
  border-bottom: none;
}
.desk-line {
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.book-spine {
  width: 40px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 3px;
}
.candle {
  width: 16px;
  height: 40px;
  background: linear-gradient(to top, var(--accent-light) 60%, var(--cream) 60%);
  border-radius: 2px;
}
.candle::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background: var(--accent-warm);
  border-radius: 50%;
  margin: -4px auto 0;
}
.closing-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  font-style: italic;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.closing-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 380px;
}

/* ===== PURCHASE ===== */
.purchase {
  padding: 100px 40px;
  background: var(--cream);
  border-top: 1px solid var(--accent-light);
}
.purchase-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.purchase-header {
  text-align: center;
  margin-bottom: 64px;
}
.purchase-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 16px;
}
.purchase-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.purchase-subhead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
}
.purchase-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.purchase-includes h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 28px;
}
.includes-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.includes-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.includes-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 11px;
  top: 4px;
}
.includes-list li strong { font-weight: 600; }
.includes-note {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  background: var(--bg);
  border: 1px solid var(--accent-light);
  border-radius: 8px;
  padding: 16px;
}
.purchase-card { position: sticky; top: 84px; }
.purchase-card-inner {
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
}
.product-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-warm);
  font-weight: 500;
  margin-bottom: 20px;
  background: var(--accent-light);
  padding: 6px 14px;
  border-radius: 20px;
}
.price-display { margin-bottom: 24px; }
.price-dollars {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}
.price-note { font-size: 13px; color: var(--muted); font-style: italic; }
.preview-mock {
  margin: 24px 0;
  display: flex;
  justify-content: center;
}
.preview-mock img {
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(61,53,48,0.12);
  border: 1px solid var(--accent-light);
}
.btn-purchase {
  display: block;
  width: 100%;
  background: var(--accent);
  color: white;
  padding: 18px 32px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.1s;
  box-sizing: border-box;
}
.btn-purchase:hover { background: var(--accent-warm); transform: translateY(-1px); }
.purchase-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: center;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 40px;
  background: var(--cream);
  border-top: 1px solid var(--accent-light);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
}
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-top: 4px;
}
.footer-note p {
  font-size: 13px;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-right { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-item { border-right: none; padding-left: 0; }
  .manifesto-item:nth-child(even) { padding-left: 0; }
  .closing-inner { grid-template-columns: 1fr; }
  .closing-visual { display: none; }
}

@media (max-width: 600px) {
  .hero-inner, .products-inner, .philosophy-inner {
    padding: 0 24px;
  }
  .hero { padding-top: calc(var(--header-height) + 48px); padding-bottom: 48px; }
  .products, .manifesto, .closing { padding: 60px 24px; }
  .philosophy { padding: 60px 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .header-inner { padding: 0 24px; }
}