:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --text-primary: #1c1917;
  --text-secondary: #78716c;
  --accent: #c9a87c;
  --accent-warm: #e8b89a;
  --sage: #87a889;
  --dusty-rose: #c4908a;
  --cream: #f5ede6;
  --border: #e8e2da;
}

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

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav__logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
}
.nav__tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

/* HERO */
.hero {
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dusty-rose);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}
.hero__sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 440px;
  line-height: 1.7;
}
.hero__visual {
  position: relative;
  height: 340px;
}
.hero__card--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  padding: 1.75rem;
  transform: rotate(-3deg);
  border: 1px solid var(--border);
}
.hero__card--secondary {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--cream);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  border: 1px solid var(--border);
}
.hero__badge {
  font-size: 0.85rem;
  color: var(--dusty-rose);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.card-mock__month {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.card-mock__day {
  font-size: 0.65rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
}
.card-mock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 1rem;
}
.card-mock__cell {
  height: 32px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid var(--border);
}
.card-mock__cell--filled {
  background: var(--accent-warm);
  border-color: var(--accent-warm);
}
.card-mock__label {
  font-size: 0.7rem;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__shape--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,124,0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero__shape--2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(135,168,137,0.12) 0%, transparent 70%);
  bottom: -80px;
  left: 200px;
}

/* SECTIONS shared */
.section__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 1rem;
}
.section__headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 2.5rem;
}

/* PRODUCTS */
.products {
  padding: 5rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.products__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.product-card {
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: box-shadow 0.2s ease;
}
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.product-card__icon {
  color: var(--dusty-rose);
  margin-bottom: 1.25rem;
}
.product-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.product-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 6rem 2rem;
}
.how__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.how__body {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.how__stats {
  display: flex;
  gap: 2.5rem;
}
.stat__value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}
.stat__label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.25rem;
}
.stack-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.stack-card__step {
  font-size: 1rem;
  color: var(--text-primary);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}
.stack-card__step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  color: var(--dusty-rose);
  font-weight: 700;
  min-width: 2rem;
}

/* CLOSING */
.closing {
  padding: 6rem 2rem 5rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.closing__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing__blob {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,124,0.2) 0%, transparent 70%);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.closing__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.65;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}
.closing__signature {
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

/* FOOTER */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--text-primary);
}
.footer__divider {
  color: var(--border);
}
.footer__tagline {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { height: 220px; }
  .hero__card--main { width: 220px; padding: 1.25rem; }
  .hero__card--secondary { bottom: 10px; right: 10px; }
  .hero__headline { font-size: 2rem; }
  .hero__sub { font-size: 1rem; }
  .products { padding: 3.5rem 1.5rem; }
  .products__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .how { padding: 4rem 1.5rem; }
  .how__inner { grid-template-columns: 1fr; gap: 3rem; }
  .how__stats { gap: 1.5rem; }
  .closing { padding: 4rem 1.5rem 3rem; }
  .nav { padding: 1.25rem 1.5rem; }
}