:root {
  --bg: #FDF8F4;
  --surface: #F5EDE6;
  --fg: #1A1A1A;
  --fg-muted: #6B6560;
  --accent: #C4827A;
  --accent-warm: #D4A574;
  --border: #E8DDD6;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── Header ── */
.site-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--fg);
}

.site-header .tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
  font-style: italic;
  font-family: var(--font-display);
}

/* ── Manifesto ── */
.manifesto {
  padding: 8rem 3rem 7rem;
  max-width: 780px;
  margin: 0 auto;
}

.overline {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2.5rem;
  color: var(--fg);
}

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

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  max-width: 580px;
}

/* ── Wrapped Preview ── */
.wrapped-preview {
  background: var(--surface);
  padding: 5rem 3rem;
  text-align: center;
}

.preview-label {
  margin-bottom: 2.5rem;
}

.label-text {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
}

.wrapped-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.wrapped-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: transform 0.2s ease;
}

.wrapped-card:hover { transform: translateY(-4px); }

.card-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.card-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 0.4rem;
}

.card-sub {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 300;
}

.preview-caption {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--fg-muted);
}

/* ── How It Works ── */
.how-it-works {
  padding: 7rem 3rem;
  max-width: 860px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 4rem;
  color: var(--fg);
}

.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--surface);
  line-height: 1;
  -webkit-text-stroke: 1.5px var(--border);
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.step p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ── Features ── */
.features {
  background: var(--fg);
  padding: 7rem 3rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 5rem;
  max-width: 860px;
  margin: 0 auto;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.75rem;
}

.feature p {
  font-size: 0.9rem;
  color: rgba(253, 248, 244, 0.6);
  line-height: 1.7;
}

.feature-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  margin-bottom: 1rem;
}

/* ── Closing ── */
.closing {
  padding: 7rem 3rem;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--fg);
  line-height: 1.45;
  margin-bottom: 2rem;
  quotes: none;
}

.closing-statement::before { content: ''; }
.closing-statement::after { content: ''; }

.closing-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand { display: flex; align-items: baseline; gap: 0.75rem; }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); font-style: italic; font-family: var(--font-display); }
.footer-note { font-size: 0.75rem; color: var(--fg-muted); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-header { padding: 1.5rem; }
  .manifesto { padding: 5rem 1.5rem 4rem; }
  .wrapped-preview { padding: 4rem 1.5rem; }
  .wrapped-cards { grid-template-columns: repeat(2, 1fr); }
  .how-it-works { padding: 5rem 1.5rem; }
  .step { grid-template-columns: 52px 1fr; gap: 1rem; }
  .step-num { font-size: 2rem; }
  .features { padding: 5rem 1.5rem; }
  .feature-grid { grid-template-columns: 1fr; gap: 2rem; }
  .closing { padding: 5rem 1.5rem; }
  .site-footer { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 480px) {
  .wrapped-cards { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .card-stat { font-size: 1.8rem; }
  .manifesto-headline { font-size: 2rem; }
}