/* Base */
:root {
  --bg: #F5F1EA;
  --surface: #FDFCF9;
  --teal: #1B6B5A;
  --teal-mid: #237A62;
  --amber: #C97B1E;
  --amber-light: #F0A84A;
  --ink: #1C1A17;
  --muted: #6B6560;
  --muted-light: #A8A29A;
  --border: #DDD8CE;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Header */
.site-header {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}

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

.wordmark {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  background: var(--surface);
  padding: 96px 48px 80px;
  border-bottom: 1px solid var(--border);
}

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

.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 700px;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 48px;
}

.stat-number {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 130px;
  line-height: 1.4;
}

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

/* Proof strip */
.proof {
  background: var(--ink);
  padding: 48px 48px;
}

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

.proof-label {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #F0EBE3;
  max-width: 760px;
  line-height: 1.45;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* How it works */
.howitworks {
  background: var(--bg);
  padding: 96px 48px;
}

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

.section-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

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

.step {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}

.step-number {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-body {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

/* Offer */
.offer {
  background: var(--surface);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}

.offer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.offer-card {
  max-width: 640px;
  width: 100%;
}

.offer-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.offer-headline {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}

.offer-features {
  list-style: none;
  margin-bottom: 32px;
}

.offer-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.offer-features li:last-child {
  border-bottom: none;
}

.check {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.offer-note {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  background: var(--teal);
  padding: 80px 48px;
}

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

.closing-statement {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  color: #F0EBE3;
  max-width: 680px;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

/* Footer */
.site-footer {
  background: var(--ink);
  padding: 36px 48px;
}

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

.footer-brand {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F0EBE3;
}

.footer-copy {
  font-size: 0.8125rem;
  color: var(--muted-light);
}

/* Responsive */
@media (max-width: 768px) {
  .site-header { padding: 20px 24px; }
  .hero { padding: 56px 24px 48px; }
  .proof { padding: 40px 24px; }
  .howitworks { padding: 64px 24px; }
  .offer { padding: 64px 24px; }
  .closing { padding: 56px 24px; }
  .site-footer { padding: 28px 24px; }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .stat-divider { display: none; }

  .steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 1.875rem; }
  .stat-number { font-size: 1.75rem; }
}