:root {
  --bg: #F8F4EF;
  --bg-warm: #F0EAE2;
  --fg: #1A1A18;
  --fg-muted: #6B6560;
  --accent: #D4A843;
  --accent-dark: #B8912E;
  --green: #1B3D2F;
  --green-light: #2D5A44;
  --cream-dark: #E5DED6;
}

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

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

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(212,168,67,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-bg-shape::before {
  content: '';
  position: absolute;
  top: 20%;
  right: 5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(27,61,47,0.08);
}

.hero-bg-shape::after {
  content: '';
  position: absolute;
  top: 35%;
  right: 15%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(27,61,47,0.06);
}

.hero-inner {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(72px, 12vw, 120px);
  font-weight: 500;
  line-height: 0.9;
  color: var(--green);
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(27,61,47,0.08);
  padding: 6px 12px;
  border-radius: 2px;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--green);
  color: #fff;
  padding: 120px 48px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 600px;
}

.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 72px;
  font-weight: 300;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.step-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.step-body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

/* ── PHILOSOPHY ── */
.philosophy {
  padding: 120px 48px;
  background: var(--bg);
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.philosophy-quote {
  max-width: 800px;
  margin: 0 auto 80px;
  text-align: center;
}

.philosophy-quote blockquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--green);
  margin-bottom: 20px;
}

.philosophy-quote cite {
  font-size: 13px;
  color: var(--fg-muted);
  font-style: normal;
  letter-spacing: 0.05em;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar {
  padding: 32px;
  background: var(--bg-warm);
  border: 1px solid var(--cream-dark);
}

.pillar-icon {
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.pillar h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.pillar p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ── RITUALS / PLATFORM ── */
.rituals {
  padding: 120px 48px;
  background: var(--bg-warm);
}

.rituals-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rituals-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.rituals-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--green);
  margin-bottom: 56px;
}

.rituals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ritual-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  transition: transform 0.2s ease;
}

.ritual-card-accent {
  border-color: var(--green);
  border-width: 2px;
}

.ritual-card-inner {
  padding: 36px 32px;
}

.ritual-product {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}

.ritual-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 16px;
}

.ritual-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-weight: 300;
}

.ritual-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ritual-specs li {
  font-size: 13px;
  color: var(--fg);
  padding-left: 16px;
  position: relative;
}

.ritual-specs li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ── CLOSING ── */
.closing {
  padding: 140px 48px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.closing-leaf {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  opacity: 0.6;
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green);
  margin-bottom: 24px;
}

.closing-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 520px;
  margin: 0 auto 48px;
  font-weight: 300;
}

.closing-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--cream-dark);
  padding: 40px 48px;
  background: var(--bg);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--green);
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .steps, .philosophy-pillars, .rituals-grid { grid-template-columns: 1fr; }
  .how-it-works, .philosophy, .rituals, .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .footer-meta { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .hero-bg-shape { display: none; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 64px; }
  .closing-headline { font-size: 28px; }
}
