:root {
  --bg: #f7f4ef;
  --bg-dark: #141210;
  --fg: #1a1714;
  --fg-muted: #6b6259;
  --fg-light: #f7f4ef;
  --accent: #c9a84c;
  --accent-dim: rgba(201, 168, 76, 0.15);
  --border: rgba(26, 23, 20, 0.12);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
}

/* HERO */
.hero {
  background: var(--bg-dark);
  color: var(--fg-light);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 80px 64px 64px;
}

.hero-inner {
  flex: 1;
}

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

.hero h1 {
  font-size: clamp(56px, 8vw, 120px);
  color: var(--fg-light);
  margin-bottom: 40px;
}

.lede {
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(247, 244, 239, 0.7);
  max-width: 560px;
  font-weight: 300;
}

.hero-accent {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 80px;
}

.hero-accent-line {
  width: 48px;
  height: 1px;
  background: var(--accent);
}

.hero-accent-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-style: italic;
}

/* SHARED SECTION LABEL */
.section-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 600;
}

/* PROBLEM */
.problem {
  padding: 100px 64px;
  background: var(--bg);
}

.problem-inner {
  max-width: 900px;
}

.problem-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
}

.problem-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
}

.problem-text p {
  color: var(--fg-muted);
  margin-bottom: 20px;
  font-size: 18px;
}

.problem-text p:last-child {
  color: var(--fg);
  font-weight: 600;
}

/* SOLUTION */
.solution {
  padding: 100px 64px;
  background: var(--bg-dark);
  color: var(--fg-light);
}

.solution-inner {
  max-width: 900px;
}

.solution .section-label {
  color: var(--accent);
}

.solution h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--fg-light);
  margin-bottom: 24px;
}

.solution-sub {
  color: rgba(247, 244, 239, 0.6);
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 72px;
}

.solution-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar { border-left: 1px solid rgba(247, 244, 239, 0.1); padding-left: 24px; }

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.pillar h3 {
  font-size: 20px;
  color: var(--fg-light);
  margin-bottom: 12px;
}

.pillar p {
  font-size: 15px;
  color: rgba(247, 244, 239, 0.55);
  line-height: 1.6;
}

/* HOW */
.how {
  padding: 100px 64px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.how-inner {
  max-width: 900px;
}

.how-steps {
  margin-top: 64px;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.step:last-of-type { border-bottom: none; }

.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.step-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 17px;
}

.how-note {
  margin-top: 56px;
  padding: 24px 32px;
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
}

.how-note p {
  font-size: 15px;
  color: var(--fg);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

/* MANIFESTO */
.manifesto {
  background: var(--fg);
  color: var(--fg-light);
  padding: 120px 64px;
}

.manifesto-inner {
  max-width: 760px;
}

.manifesto blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-style: italic;
  font-weight: 400;
  color: var(--fg-light);
  line-height: 1.3;
  margin-bottom: 24px;
}

.manifesto cite {
  display: block;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 64px;
  font-style: normal;
}

.manifesto-rule {
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 48px;
}

.manifesto-body {
  font-size: 18px;
  color: rgba(247, 244, 239, 0.65);
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background: #0d0b09;
  color: var(--fg-light);
  padding: 56px 64px;
}

.footer-inner {
  max-width: 900px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg-light);
}

.footer-tagline {
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.footer-info p {
  font-size: 13px;
  color: rgba(247, 244, 239, 0.4);
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 48px 24px 40px; }
  .problem { padding: 72px 24px; }
  .solution { padding: 72px 24px; }
  .how { padding: 72px 24px; }
  .manifesto { padding: 72px 24px; }
  footer { padding: 48px 24px; }

  .problem-grid { grid-template-columns: 1fr; gap: 24px; }
  .solution-pillars { grid-template-columns: 1fr; }
  .step { grid-template-columns: 1fr; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}