/* Typography */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --bg: #faf8f5;
  --fg: #1a1a1a;
  --accent: #b5853a;
  --accent-light: #d4a75a;
  --muted: #6b6560;
  --surface: #f0ece4;
  --border: #e0d9cf;
}

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

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

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

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

/* ── Manifesto ── */
.manifesto {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(181,133,58,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(181,133,58,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.manifesto__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.manifesto__eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.manifesto__headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.manifesto__body {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
}

.manifesto__hero-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(26,26,26,0.12);
}

.manifesto__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── Approach ── */
.approach {
  background: var(--fg);
  color: var(--bg);
  padding: 6rem 2rem;
}

.approach__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.approach__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.approach__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
}

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

.approach__step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

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

.approach__step-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--accent);
  padding-top: 0.1rem;
}

.approach__step-content h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 0.5rem;
}

.approach__step-content p {
  font-size: 0.95rem;
  color: rgba(250,248,245,0.6);
  line-height: 1.6;
}

/* ── Outcomes ── */
.outcomes {
  padding: 6rem 2rem;
  background: var(--surface);
}

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

.outcomes__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.outcomes__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4rem;
  max-width: 400px;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.outcome {
  padding: 2.5rem 3rem 2.5rem 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.outcome:nth-child(even) {
  border-right: none;
  padding-left: 3rem;
}

.outcome:nth-last-child(-n+2) {
  border-bottom: none;
}

.outcome__icon {
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.outcome h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.outcome p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 340px;
}

/* ── Closing ── */
.closing {
  padding: 8rem 2rem;
  background: var(--bg);
  text-align: center;
}

.closing__inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing__quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 1.5rem;
  position: relative;
}

.closing__quote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  top: -1.5rem;
  left: -2rem;
  line-height: 1;
  font-family: var(--font-display);
}

.closing__attribution {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
}

.closing__stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.stat {
  text-align: center;
}

.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Footer ── */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 3rem 2rem;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer__logo {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer__tagline {
  font-size: 0.8rem;
  color: rgba(250,248,245,0.5);
}

.footer__meta p {
  font-size: 0.8rem;
  color: rgba(250,248,245,0.5);
  line-height: 1.5;
}

.footer__os a {
  color: var(--accent);
  text-decoration: none;
}

.footer__os a:hover {
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .manifesto__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .manifesto__headline {
    font-size: 2.5rem;
  }

  .manifesto__hero-image {
    order: -1;
  }

  .approach__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .outcomes__grid {
    grid-template-columns: 1fr;
  }

  .outcome {
    border-right: none;
    padding-left: 0 !important;
    padding-right: 0;
  }

  .outcome:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

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

  .closing__stats {
    gap: 2rem;
  }

  .closing__quote::before {
    display: none;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .manifesto, .approach, .outcomes, .closing {
    padding: 4rem 1.5rem;
  }

  .closing__stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    justify-content: center;
  }

  .stat__number {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
}