:root {
  --bg: #f7f4ef;
  --fg: #1a1814;
  --accent: #b85c2a;
  --accent-light: #d4783f;
  --muted: #6b6560;
  --surface: #ffffff;
  --border: #e0dbd4;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.brand-mark {
  color: var(--accent);
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 96px 48px 80px;
  max-width: 900px;
}

.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}

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

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

.hero-value {
  display: flex;
}

.value-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
}

.value-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.value-amount {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.value-note {
  font-size: 12px;
  color: var(--muted);
}

/* How it works */
.how {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.how-header {
  margin-bottom: 56px;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--fg);
}

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

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  letter-spacing: -0.03em;
}

.step-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Benefits */
.benefits {
  padding: 80px 48px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.benefit-card {
  background: var(--bg);
  padding: 40px 40px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.benefit-card:hover {
  background: var(--surface);
}

.benefit-icon {
  color: var(--accent);
  width: 24px;
  height: 24px;
}

.benefit-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.benefit-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* Testimonial */
.testimonial {
  padding: 80px 48px;
  background: var(--fg);
}

.testimonial-inner {
  max-width: 680px;
}

.quote {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--bg);
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.quote-attribution {
  border-left: 2px solid var(--accent);
  padding-left: 20px;
}

.quote-meta {
  font-size: 14px;
  font-weight: 500;
  color: #a0948a;
}

.quote-context {
  font-size: 12px;
  color: #6b6560;
  margin-top: 6px;
  font-style: italic;
}

/* Closing */
.closing {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}

.closing-statement {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--fg);
  max-width: 720px;
}

.closing-statement em {
  font-style: italic;
  color: var(--accent);
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
}

.footer-note {
  font-size: 12px;
  color: var(--muted);
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  
  .hero { padding: 60px 24px 60px; }
  .hero-headline { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  
  .how { padding: 60px 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  
  .benefits { padding: 60px 24px; }
  .benefits-grid { grid-template-columns: 1fr; }
  
  .testimonial { padding: 60px 24px; }
  
  .closing { padding: 60px 24px; }
  .closing-statement { font-size: 26px; }
  
  .footer { padding: 32px 24px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 20px; }
  .hero-headline { font-size: 30px; }
  .steps { gap: 28px; }
  .benefit-card { padding: 28px 24px; }
}