:root {
  --cream: #f8f2ea;
  --paper: #fffaf4;
  --ink: #33262f;
  --ink-soft: #5e4f58;
  --clay: #a8573f;
  --clay-dark: #8c4431;
  --sage: #6f8069;
  --sage-light: #e4e9df;
  --blush: #f1dfd4;
  --line: #e6d9cc;
  --wa: #1f8f55;
  --wa-dark: #177345;
  --radius: 14px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1em; }
a { color: var(--clay-dark); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 720px; }

/* Header */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 10;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 20px; max-width: var(--max); margin: 0 auto; flex-wrap: wrap; }
.brand { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.6rem; font-weight: 600; color: var(--ink); text-decoration: none; letter-spacing: 0.01em; }
.brand span { color: var(--clay); }
.nav ul { list-style: none; display: flex; gap: 6px 22px; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a { text-decoration: none; color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--clay-dark); }

/* Sections */
section { padding: 72px 0; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600; color: var(--sage); margin-bottom: 14px; display: block; }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 640px; }

.hero { padding: 88px 0 80px; background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%); }
.hero h1 { max-width: 760px; }

.band-sage { background: var(--sage-light); }
.band-blush { background: var(--blush); }
.band-paper { background: var(--paper); }

/* Buttons */
.btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; transition: background .15s, color .15s, border-color .15s;
  min-height: 48px;
}
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); }
.btn-clay { background: var(--clay); color: #fff; }
.btn-clay:hover { background: var(--clay-dark); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn svg { width: 20px; height: 20px; flex: none; }

/* Grids and cards */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); align-items: center; gap: 40px; }

.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column;
}
.card p { color: var(--ink-soft); }
.card .btn { margin-top: auto; align-self: flex-start; }
.card-num { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.2rem; color: var(--clay); line-height: 1; margin-bottom: 10px; }

/* Products */
.product { padding: 0; overflow: hidden; }
.cover {
  aspect-ratio: 4 / 3; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; color: var(--paper);
}
.cover small { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.7rem; opacity: .85; }
.cover strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.9rem; font-weight: 600; line-height: 1.1; margin: 6px 0; }
.cover-journal { background: linear-gradient(145deg, #a8573f, #7b3a2a); }
.cover-deck { background: linear-gradient(145deg, #6f8069, #4b5a47); }
.cover-bundle { background: linear-gradient(145deg, #33262f, #5e4f58); }
.product-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.price { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; font-weight: 600; color: var(--ink); margin: 0 0 4px; }
.price .save { font-family: "DM Sans", sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--sage); background: var(--sage-light); padding: 3px 10px; border-radius: 999px; vertical-align: middle; margin-left: 6px; }
.price-note { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; }
.product .btn { width: 100%; margin-top: auto; }
.etsy { font-size: 0.85rem; margin-top: 12px; color: var(--ink-soft); }
.tag { position: absolute; }

/* Steps */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.steps li { background: var(--paper); border-radius: var(--radius); padding: 22px; border: 1px solid var(--line); position: relative; }
.steps li::before { counter-increment: step; content: counter(step); display: inline-flex; width: 34px; height: 34px; border-radius: 50%; background: var(--clay); color: #fff; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 10px; }
.steps strong { display: block; margin-bottom: 4px; }
.steps span { color: var(--ink-soft); font-size: 0.95rem; }

/* Lists */
.checks { list-style: none; padding: 0; margin: 0; }
.checks li { padding-left: 30px; position: relative; margin-bottom: 12px; }
.checks li::before { content: ""; position: absolute; left: 0; top: 9px; width: 14px; height: 8px; border-left: 2px solid var(--sage); border-bottom: 2px solid var(--sage); transform: rotate(-45deg); }
.crosses li::before { border: 0; width: 14px; height: 2px; background: var(--clay); top: 13px; transform: none; }

.quote {
  font-family: "Cormorant Garamond", Georgia, serif; font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.3; font-style: italic; color: var(--ink); border-left: 3px solid var(--clay); padding-left: 24px; margin: 0;
}

.panel { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; }
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; margin: 24px 0; }
.fact { background: var(--cream); border-radius: 10px; padding: 16px; text-align: center; }
.fact b { display: block; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.8rem; color: var(--clay-dark); line-height: 1.1; }
.fact span { font-size: 0.85rem; color: var(--ink-soft); }

/* Footer */
.site-footer { background: var(--ink); color: #e9dfe4; padding: 48px 0 32px; font-size: 0.92rem; }
.site-footer a { color: #fff; }
.footer-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-bottom: 28px; }
.site-footer h3 { color: #fff; font-size: 1.3rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.safety { border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; color: #cdbfc7; font-size: 0.85rem; }
.safety strong { color: #fff; }

@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 52px 0; }
  .hero { padding: 56px 0; }
  .nav { justify-content: center; text-align: center; }
  .nav ul { justify-content: center; }
  .btns .btn { width: 100%; }
  .panel { padding: 22px; }
}
