:root {
  --bg: #FAF7F2;
  --surface: #F3EDE3;
  --accent: #7B2234;
  --accent-light: #9E2F46;
  --text: #3D2B29;
  --text-muted: #7A6860;
  --text-light: #A89B91;
  --border: #E0D6C8;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  align-items: center;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(123,34,52,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  width: 100%;
  text-align: left;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  opacity: 0.85;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-division {
  display: flex;
  align-items: center;
  gap: 20px;
}

.div-line {
  flex: 0 0 48px;
  height: 1px;
  background: var(--border);
}

.div-text {
  font-size: 13px;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Pain ── */
.pain {
  background: var(--surface);
  padding: 100px 40px;
}

.pain-inner {
  max-width: 920px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.pain-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 56px;
  line-height: 1.2;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
}

.pain-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.pain-marker {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.pain-item p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
}

/* ── Product ── */
.product {
  background: var(--bg);
  padding: 100px 40px;
}

.product-inner {
  max-width: 960px;
  margin: 0 auto;
}

.product-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 64px;
  line-height: 1.25;
}

.days-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.day {
  padding: 36px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.day-num {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.day-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.day-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

.product-includes {
  margin-top: 64px;
  padding: 48px;
  background: var(--surface);
  border-radius: 2px;
}

.includes-headline {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 28px;
}

.includes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.include-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  border-radius: 2px;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--accent);
  padding: 100px 40px;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 48px;
  opacity: 0.95;
}

.manifesto-body p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 24px;
  font-weight: 300;
}

.manifesto-body p:last-child { margin-bottom: 0; }

/* ── Testimonials ── */
.testimonials {
  background: var(--surface);
  padding: 100px 40px;
}

.testimonials-inner {
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}

.testimonial {
  background: var(--bg);
  padding: 36px 32px;
  border-radius: 2px;
  border: 1px solid var(--border);
}

.testimonial-text {
  font-size: 16px;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-attr {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ── About ── */
.about {
  background: var(--bg);
  padding: 100px 40px;
}

.about-inner {
  max-width: 760px;
  margin: 0 auto;
}

.about-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.25;
}

.about-text p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

.about-text p:last-child { margin-bottom: 0; }

/* ── Closing ── */
.closing {
  background: var(--surface);
  padding: 120px 40px;
  text-align: center;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.15;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.closing-note {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--accent);
  opacity: 0.85;
}

/* ── Footer ── */
.site-footer {
  background: var(--accent);
  padding: 64px 40px;
  text-align: center;
}

.footer-inner { max-width: 480px; margin: 0 auto; }

.footer-brand {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero, .pain, .product, .manifesto, .testimonials, .about, .closing, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero { padding-top: 100px; padding-bottom: 80px; }

  .pain-grid { grid-template-columns: 1fr; gap: 24px; }

  .days-grid { grid-template-columns: 1fr; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .product-includes { padding: 32px 24px; }

  .hero-division .div-line { flex: 0 0 32px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .site-nav { padding: 20px 24px; }
}