:root {
  --bg: #FDF8F5;
  --bg-alt: #F5E6E0;
  --fg: #2D1810;
  --fg-muted: #6B4E47;
  --accent: #C4A99A;
  --accent-soft: #E8B4B8;
  --sage: #8B9E7C;
  --border: rgba(196,169,154,0.3);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Manifesto ── */
.manifesto {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: center;
  min-height: 90vh;
  padding: 80px 8vw;
  background: linear-gradient(160deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,180,184,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.manifesto__inner { max-width: 580px; }

.manifesto__eyebrow {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.manifesto__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 24px;
}

.manifesto__headline em {
  font-style: italic;
  color: var(--accent-soft);
}

.manifesto__sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.manifesto__rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 20px;
}

.manifesto__tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--accent);
}

.manifesto__bloom {
  opacity: 0.7;
}

.manifesto__bloom svg { width: 100%; height: auto; }

/* ── Section Label ── */
.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ── Ritual ── */
.ritual {
  padding: 100px 8vw;
  background: var(--fg);
  color: var(--bg);
}

.ritual__header { text-align: center; margin-bottom: 64px; }
.ritual__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
}

.ritual__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.ritual__step { position: relative; }

.ritual__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 16px;
  line-height: 1;
}

.ritual__step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  font-style: italic;
  color: var(--bg);
  margin-bottom: 12px;
}

.ritual__step-body {
  font-size: 0.9rem;
  color: rgba(253,248,245,0.6);
  line-height: 1.7;
}

/* ── Products ── */
.products {
  padding: 100px 8vw;
  background: var(--bg);
}

.products__header { text-align: center; margin-bottom: 64px; }
.products__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 16px;
}
.products__sub { color: var(--fg-muted); font-size: 1.05rem; }

.products__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 860px;
  margin: 0 auto;
}

.product-card {
  padding: 40px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(45,24,16,0.08);
}

.product-card__icon { margin-bottom: 20px; }

.product-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 12px;
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 8vw;
  background: var(--bg-alt);
}

.testimonials__inner { max-width: 720px; margin: 0 auto; text-align: center; }

.testimonials__quote {
  margin-bottom: 64px;
}

.testimonials__quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonials__attr {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.testimonials__pillars {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
}

.pillar { text-align: center; }

.pillar__num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent-soft);
  margin-bottom: 8px;
}

.pillar__label {
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
  display: block;
}

/* ── Closing ── */
.closing {
  padding: 120px 8vw;
  background: var(--fg);
  color: var(--bg);
}

.closing__inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.closing__bloom { margin-bottom: 48px; }
.closing__bloom svg { width: 280px; }

.closing__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--bg);
  margin-bottom: 28px;
}

.closing__headline em {
  font-style: italic;
  color: var(--accent-soft);
}

.closing__body {
  font-size: 1rem;
  color: rgba(253,248,245,0.65);
  line-height: 1.8;
  max-width: 540px;
}

/* ── Footer ── */
.footer {
  padding: 48px 8vw;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  display: block;
  margin-bottom: 6px;
}

.footer__tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .manifesto {
    grid-template-columns: 1fr;
    padding: 60px 6vw;
    min-height: auto;
  }
  .manifesto__bloom { display: none; }

  .ritual__steps { grid-template-columns: 1fr; gap: 40px; }

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

  .testimonials__pillars { gap: 32px; }

  .footer__inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .manifesto__headline { font-size: 2.8rem; }
  .ritual { padding: 80px 6vw; }
  .products { padding: 80px 6vw; }
  .testimonials { padding: 80px 6vw; }
  .closing { padding: 80px 6vw; }
}
