:root {
  --bg: #FDF8F3;
  --surface: #fff;
  --accent: #B5457A;
  --accent-warm: #E8A0A0;
  --plum: #4A1942;
  --text: #1a0f1a;
  --text-muted: #6b5a6e;
  --border: #e8d5d5;
}

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

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

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
}
.nav-link:hover { text-decoration: underline; }

/* HERO */
.hero {
  padding: 80px 40px 64px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--plum);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
}
.hero-card-stack {
  position: relative;
  width: 260px;
  height: 280px;
}
.hero-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 32px rgba(74,25,66,0.08);
}
.hero-card-1 {
  top: 0; left: 0;
  width: 200px;
}
.hero-card-2 {
  top: 80px; right: 0;
  width: 180px;
}
.hero-card-3 {
  bottom: 0; left: 30px;
  width: 200px;
}
.card-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.dot-pink { background: var(--accent); }
.dot-plum { background: var(--plum); }
.dot-cream { background: var(--accent-warm); }
.card-line {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  margin-bottom: 8px;
}
.card-line.long { width: 90%; }
.card-line.medium { width: 70%; }
.card-line.short { width: 50%; }
.card-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.metric-label { font-size: 12px; color: var(--text-muted); }
.metric-value { font-size: 16px; font-weight: 600; color: var(--accent); }
.card-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
}
.bar {
  flex: 1;
  background: var(--border);
  border-radius: 3px;
}
.bar.active { background: var(--accent); }
.card-check {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* MANIFESTO */
.manifesto {
  padding: 72px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.manifesto-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  font-style: italic;
  color: var(--plum);
  margin-bottom: 28px;
  line-height: 1.4;
}
.manifesto-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* PILLARS */
.pillars {
  padding: 72px 40px;
  border-bottom: 1px solid var(--border);
}
.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.pillar {
  padding: 40px;
  border: 1px solid var(--border);
  margin: -1px 0 0 -1px;
}
.pillar-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.pillar-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--plum);
  margin-bottom: 12px;
}
.pillar-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* OUTRO */
.outro {
  padding: 80px 40px;
  background: var(--plum);
}
.outro-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}
.outro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  color: #FDF8F3;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

/* FOOTER */
.footer {
  padding: 28px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--plum);
}
.footer-note {
  font-size: 13px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { justify-content: flex-start; }
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .nav, .hero, .manifesto, .pillars, .outro, .footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}