:root {
  --bg: #FAF8F5;
  --ink: #1a1814;
  --ink-muted: #6b6560;
  --accent: #c8601a;
  --accent-light: #f5ede5;
  --surface: #ffffff;
  --border: #e8e3dc;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Nav */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 400;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}
.hero-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 19px;
  color: var(--ink-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 28px 0 0;
}
.hero-meta-item:first-child { padding-left: 0; }
.hero-meta-value {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.hero-meta-label {
  font-size: 12px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin-right: 28px;
}
.hero-bg-texture {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40%;
  background: linear-gradient(135deg, var(--accent-light) 0%, transparent 60%);
  pointer-events: none;
}

/* What */
.what {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.what-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.what-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.what-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 480px;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.what-card {
  padding: 32px 32px 32px 0;
  border-right: 1px solid var(--border);
  padding-right: 32px;
}
.what-card:first-child { padding-left: 0; }
.what-card:nth-child(2) { padding-left: 32px; }
.what-card:last-child { border-right: none; padding-left: 32px; }
.what-card-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.what-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}
.what-card p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* How */
.how {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.how-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}
.how-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.how-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.how-step-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  min-width: 60px;
  padding-top: 2px;
}
.how-step-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}
.how-step-body p {
  font-size: 16px;
  color: var(--ink-muted);
  max-width: 520px;
  line-height: 1.6;
}

/* Outcomes */
.outcomes {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.outcomes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 16px;
}
.outcomes-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.outcomes-body {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
}
.outcomes-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.outcome-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--ink);
}
.outcome-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Closing */
.closing {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.closing-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-ornament {
  width: 1px;
  height: 40px;
  background: var(--accent);
  margin: 0 auto 32px;
}
.closing-quote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 28px;
}
.closing-byline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Footer */
.footer {
  padding: 40px 0;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}
.footer-tagline {
  font-size: 14px;
  color: var(--ink-muted);
}
.footer-meta {
  margin-left: auto;
  font-size: 12px;
  color: var(--ink-muted);
}

/* Responsive */
@media (max-width: 768px) {
  .what-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .what-card {
    border-right: none;
    padding: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 32px;
  }
  .what-card:last-child { border-bottom: none; }
  .outcomes-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-headline br { display: none; }
  .footer-inner { flex-direction: column; gap: 12px; }
  .footer-meta { margin-left: 0; }
  .hero-meta { flex-wrap: wrap; gap: 16px; }
  .hero-meta-divider { display: none; }
}