/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --bg: #F9F4EE;
  --bg-warm: #F2EBE1;
  --fg: #1C1713;
  --fg-muted: #6B5E52;
  --accent: #7A2E50;
  --accent-warm: #C4956A;
  --border: #DDD3C5;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

/* ─── Site Header ────────────────────────────────────── */
.site-header {
  padding: 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: baseline;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.wordmark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.tagline {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 4rem 6rem;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--fg);
  max-width: 18ch;
  margin-bottom: 3rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-body {
  max-width: 42ch;
}
.hero-body p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.hero-body p:last-child {
  font-size: 1.15rem;
  color: var(--fg);
  font-weight: 400;
  margin-top: 2rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 5rem;
  max-width: 28rem;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ─── Manifesto ───────────────────────────────────────── */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 8rem 4rem;
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 3rem;
}
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  font-style: italic;
  color: var(--bg);
  border: none;
  padding: 0;
  margin-bottom: 4rem;
  position: relative;
}
.manifesto-quote::before {
  content: '';
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--accent-warm);
  margin-bottom: 2rem;
}
.manifesto-sub p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(249,244,238,0.7);
  max-width: 55ch;
  margin-bottom: 1.5rem;
}
.manifesto-sub p:last-child {
  color: var(--bg);
  font-weight: 400;
}

/* ─── Framework ───────────────────────────────────────── */
.framework {
  padding: 8rem 4rem;
  background: var(--bg);
}
.framework-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.framework-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4rem;
}
.framework-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 5rem;
}
.step {
  background: var(--bg);
  padding: 3rem 2.5rem;
}
.step-number {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--accent);
  opacity: 0.35;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.step-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--fg);
}
.step-body {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.7;
}
.framework-callout {
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
}
.framework-callout p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--fg-muted);
  line-height: 1.8;
}
.framework-callout p:last-child {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  margin-top: 1rem;
}

/* ─── Outcomes ────────────────────────────────────────── */
.outcomes {
  padding: 8rem 4rem;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 900px;
  margin: 0 auto;
}
.outcomes-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.outcome-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.outcome-item:nth-child(odd) {
  padding-right: 3rem;
  border-right: 1px solid var(--border);
}
.outcome-item:nth-child(even) {
  padding-left: 3rem;
}
.outcome-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.outcome-icon {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 0.1rem;
}
.outcome-item p {
  font-size: 0.97rem;
  font-weight: 300;
  color: var(--fg);
  line-height: 1.6;
}

/* ─── Closing ─────────────────────────────────────────── */
.closing {
  padding: 10rem 4rem;
  background: var(--accent);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-statement {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--bg);
  line-height: 1.2;
  margin-bottom: 3rem;
}
.closing-attribution {
  border-top: 1px solid rgba(249,244,238,0.3);
  padding-top: 2.5rem;
}
.closing-byline {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(249,244,238,0.6);
  line-height: 1.7;
}

/* ─── Footer ──────────────────────────────────────────── */
.site-footer {
  padding: 3rem 4rem;
  background: var(--fg);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--bg);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(249,244,238,0.4);
  margin-bottom: 2rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(249,244,238,0.25);
  letter-spacing: 0.05em;
}

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
  .site-header { padding: 1.5rem 2rem; }
  .hero { padding: 5rem 2rem 4rem; }
  .manifesto { padding: 5rem 2rem; }
  .framework { padding: 5rem 2rem; }
  .framework-steps { grid-template-columns: 1fr; }
  .step { padding: 2rem; }
  .outcomes { padding: 5rem 2rem; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .outcome-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .outcome-item:nth-child(even) { padding-left: 0; }
  .closing { padding: 6rem 2rem; }
  .site-footer { padding: 2.5rem 2rem; }
}

@media (max-width: 480px) {
  .header-inner { flex-direction: column; gap: 0.3rem; }
  .hero-headline { font-size: 2.5rem; }
}