:root {
  --bg: #FAF3E8;
  --bg-alt: #F0E6D6;
  --fg: #1A1209;
  --fg-muted: #6B5E4E;
  --accent: #3D1A4A;
  --accent-light: #5C2E6E;
  --gold: #D4A843;
  --gold-light: #E8C76A;
  --white: #FFFFFF;
  --border: rgba(61, 26, 74, 0.1);
}

* { 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.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 28px 48px;
  display: flex;
  align-items: center;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--accent);
}

/* HERO */
.hero {
  padding: 80px 48px 100px;
  max-width: 860px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

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

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 36px;
}

.stat {
  padding: 0 40px 0 0;
}

.stat:first-child { padding-left: 0; }

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 120px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 40px;
}

/* MANIFESTO */
.manifesto {
  background: var(--accent);
  color: var(--white);
  padding: 100px 48px;
}

.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

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

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.manifesto-body {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
}

.manifesto-right { display: flex; flex-direction: column; gap: 20px; }

.manifesto-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px;
}

.manifesto-card--accent {
  background: rgba(212,168,67,0.15);
  border-color: var(--gold);
}

.manifesto-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.manifesto-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}

/* FEATURES */
.features {
  padding: 100px 48px;
}

.features-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.features-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--accent);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.features-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 1100px;
}

.feature-card {
  background: var(--bg);
  padding: 40px 36px;
}

.feature-card--large {
  grid-row: span 2;
  padding: 48px 44px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.feature-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 12px;
}

.feature-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PROCESS */
.process {
  background: var(--bg-alt);
  padding: 100px 48px;
}

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

.process-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 64px;
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
}

.step { flex: 1; }

.step-number {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 12px;
}

.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.step-connector {
  padding: 0 24px;
  display: flex;
  align-items: center;
  margin-bottom: 48px;
}

/* WHO FOR IT */
.whoforit {
  padding: 100px 48px;
}

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

.whoforit-headline h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--accent);
  margin-bottom: 52px;
}

.whoforit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.whoforit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.whoforit-item--no {
  background: var(--bg-alt);
  opacity: 0.7;
}

.whoforit-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.whoforit-item--no .whoforit-icon {
  background: var(--fg-muted);
}

.whoforit-item p {
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}

.whoforit-item--no p { color: var(--fg-muted); }

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 100px 48px;
  text-align: center;
}

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

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 28px;
}

.closing-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

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

.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav, .hero, .manifesto, .features, .process, .whoforit, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero { padding-top: 40px; padding-bottom: 60px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-row: auto; }
  .process-steps { flex-direction: column; align-items: flex-start; gap: 40px; }
  .step-connector { padding: 0; transform: rotate(90deg); }
  .whoforit-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .stat-divider { display: none; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}