:root {
  --bg: #faf7f2;
  --bg-warm: #f3ede4;
  --bg-deep: #2c2420;
  --fg: #2c2420;
  --fg-light: #6b5e54;
  --fg-muted: #9a8d82;
  --accent: #c4804e;
  --accent-glow: #e8a66d;
  --cream: #fdf9f3;
  --sage: #8a9a7b;
  --sage-light: #c5d4b8;
  --blush: #d4a0a0;
  --gold: #c9a84c;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  background: linear-gradient(175deg, var(--bg) 0%, var(--bg-warm) 50%, #ece3d5 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 600px 400px at 15% 20%, rgba(196, 128, 78, 0.08), transparent),
    radial-gradient(ellipse 500px 500px at 85% 70%, rgba(138, 154, 123, 0.1), transparent);
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  position: relative;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 1.1;
  max-width: 800px;
  color: var(--fg);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero .lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--fg-light);
  max-width: 560px;
  margin-bottom: 3rem;
  position: relative;
}

.hero-shop-btn {
  display: inline-block;
  margin-bottom: 2.5rem;
  padding: 1rem 2.5rem;
  background: var(--bg-deep);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-radius: 10px;
  position: relative;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(44, 36, 32, 0.15);
}
.hero-shop-btn:hover {
  background: #3d3330;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(44, 36, 32, 0.2);
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto;
  position: relative;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 7rem 2rem;
  background: var(--bg-deep);
  color: var(--cream);
  text-align: center;
}

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

.manifesto blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
  color: var(--cream);
}

.manifesto .attr {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-glow);
}

/* ─── Pillars ─── */
.pillars {
  padding: 7rem 2rem;
  background: var(--bg);
}

.pillars-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.pillars-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.pillars-header p {
  color: var(--fg-light);
  font-size: 1.1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.pillar {
  padding: 2.5rem 2rem;
  border-radius: 16px;
  background: var(--cream);
  border: 1px solid rgba(44, 36, 32, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(44, 36, 32, 0.08);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.pillar-icon.sage { background: rgba(138, 154, 123, 0.15); }
.pillar-icon.accent { background: rgba(196, 128, 78, 0.15); }
.pillar-icon.blush { background: rgba(212, 160, 160, 0.15); }

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pillar p {
  color: var(--fg-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── Journey ─── */
.journey {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}

.journey-inner {
  max-width: 900px;
  margin: 0 auto;
}

.journey h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 4rem;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.journey-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--fg-light);
  font-size: 0.95rem;
}

/* ─── Closing ─── */
.closing {
  padding: 7rem 2rem;
  background: var(--bg-deep);
  color: var(--cream);
  text-align: center;
}

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

.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing p {
  font-size: 1.1rem;
  color: rgba(253, 249, 243, 0.75);
  line-height: 1.8;
}

.closing .brand-mark {
  margin-top: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-glow);
}

/* ─── Footer ─── */
footer {
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-deep);
  border-top: 1px solid rgba(253, 249, 243, 0.08);
  color: rgba(253, 249, 243, 0.4);
  font-size: 0.85rem;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 90vh;
  }

  .manifesto, .pillars, .journey, .closing {
    padding: 5rem 1.5rem;
  }

  .journey-step {
    grid-template-columns: 48px 1fr;
    gap: 1rem;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}