/* ── Tokens ── */
:root {
  --cream: #FDF6E9;
  --cream-dark: #F5EDD8;
  --forest: #1A3A2A;
  --forest-light: #2D5C3F;
  --sienna: #E07B39;
  --sienna-light: #E8945A;
  --ink: #1C1C1C;
  --muted: #6B6560;
  --border: #E2D9C8;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
}

/* ── HERO ── */
.hero {
  padding: 80px 40px 60px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 20px;
  border: 1.5px solid var(--sienna);
  padding: 4px 12px;
  border-radius: 2px;
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 19px;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

/* Workspace illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.workspace-illustration {
  width: 320px;
  height: 280px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.workspace-cards {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 180px;
  height: 120px;
}

.wc-card {
  position: absolute;
  width: 90px;
  height: 56px;
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(26,58,42,0.15);
}
.wc-card-1 { top: 0; left: 0; transform: rotate(-4deg); z-index: 1; background: var(--forest); }
.wc-card-2 { top: 16px; left: 40px; transform: rotate(3deg); z-index: 2; background: var(--sienna); }
.wc-card-3 { top: 32px; left: 80px; transform: rotate(-2deg); z-index: 3; background: var(--cream); border: 1px solid var(--border); }

.workspace-dice {
  position: absolute;
  bottom: 60px;
  right: 24px;
  display: flex;
  gap: 10px;
}

.dice {
  width: 44px;
  height: 44px;
  background: var(--forest-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-family: 'Fraunces', serif;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(26,58,42,0.2);
}

.workspace-sketch {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 80px;
}

.sketch-lines { display: flex; flex-direction: column; gap: 6px; }

.sl {
  height: 3px;
  background: var(--sienna);
  border-radius: 2px;
  opacity: 0.4;
}
.sl-1 { width: 80%; }
.sl-2 { width: 60%; }
.sl-3 { width: 45%; }

/* ── PLAYBOOK ── */
.playbook {
  padding: 80px 40px;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
}

.playbook-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 16px;
}

.playbook h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--forest);
  margin-bottom: 16px;
  max-width: 540px;
}

.playbook-desc {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

.playbook-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.step {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }

.step-number {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--cream-dark);
  line-height: 1;
  margin-bottom: 20px;
  -webkit-text-stroke: 1px var(--border);
}

.step-icon { margin-bottom: 20px; }

.step h3 {
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 40px;
  background: var(--forest);
  color: var(--cream);
}

.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.manifesto-quote blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-style: italic;
  color: var(--cream);
  line-height: 1.45;
  border-left: 3px solid var(--sienna);
  padding-left: 28px;
}

.manifesto-text h2 {
  font-size: clamp(24px, 3vw, 36px);
  color: var(--cream);
  margin-bottom: 20px;
}

.manifesto-text p {
  font-size: 16px;
  color: rgba(253,246,233,0.75);
  line-height: 1.75;
  margin-bottom: 16px;
}

.manifesto-text strong {
  color: var(--sienna-light);
  font-weight: 600;
}

/* ── OUTCOMES ── */
.outcomes {
  padding: 64px 40px;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.outcome {
  padding: 32px 40px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.outcome:last-child { border-right: none; }

.outcome-stat {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
}

.outcome-label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 80px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--forest);
  margin-bottom: 24px;
  line-height: 1.2;
}

.closing p {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  padding: 48px 40px 32px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  display: block;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.footer-links span {
  font-size: 14px;
  color: var(--muted);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner,
  .manifesto-inner,
  .footer-inner { grid-template-columns: 1fr; }
  .playbook-steps,
  .outcomes-inner { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .outcome { border-right: none; border-bottom: 1px solid var(--border); }
  .outcome:last-child { border-bottom: none; }
  .hero { padding: 56px 24px 48px; }
  .playbook, .manifesto, .outcomes, .closing { padding: 56px 24px; }
  .hero-visual { display: none; }
}