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

:root {
  --cream:  #faf8f4;
  --ink:    #0d0c0a;
  --copper: #c87533;
  --copper-dark: #6b4a28;
  --stone:  #e5e0d8;
  --ash:    #b8b0a6;
  --text:   #1c1917;
  --text-muted: #6b6460;

  --font-display: 'Syne', sans-serif;
  --font-body:    'Instrument Sans', sans-serif;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  120px;
}

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--cream);
}

.nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid var(--copper);
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: var(--copper);
  color: var(--cream);
}

.nav-tagline {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--copper);
  font-weight: 500;
  text-transform: uppercase;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 80px 100px 80px;
  max-width: 680px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--ash);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--copper);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: #b5652a;
}

.btn-ghost {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ash);
  text-decoration: none;
  transition: color 0.2s ease;
}

.btn-ghost:hover {
  color: var(--cream);
}

.hero-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid var(--copper);
  border-opacity: 0.3;
  padding: 6px 14px;
  border-radius: 100px;
}

/* ─── Manifesto ───────────────────────────────────────────── */
.manifesto {
  background: var(--cream);
  padding: var(--space-xl) 80px;
}

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

.manifesto-label,
.outcomes-label,
.modules-label,
.process-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 32px;
}

.manifesto-statement {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 32px;
}

.manifesto-statement strong {
  color: var(--copper);
  font-weight: 800;
}

.manifesto-body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ─── Outcomes ─────────────────────────────────────────────── */
.outcomes {
  background: var(--stone);
  padding: var(--space-xl) 80px;
}

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

.outcomes-heading,
.modules-heading,
.process-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 56px;
}

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

.outcome-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 40px 40px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.outcome-card:nth-child(odd) {
  padding-right: 60px;
  border-right: 1px solid rgba(0,0,0,0.08);
}

.outcome-card:nth-child(even) {
  padding-left: 60px;
}

.outcome-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--copper);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  margin-top: 4px;
}

.outcome-text strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.outcome-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── Modules ───────────────────────────────────────────────── */
.modules {
  background: var(--cream);
  padding: var(--space-xl) 80px;
}

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

.modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}

.module-card {
  background: var(--cream);
  padding: 48px;
}

.module-icon {
  margin-bottom: 24px;
}

.module-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.module-card > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.module-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.module-card ul li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.module-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper);
}

/* ─── Process ───────────────────────────────────────────────── */
.process {
  background: var(--ink);
  padding: var(--space-xl) 80px;
}

.process-inner {
  max-width: 760px;
  margin: 0 auto;
}

.process .process-label { color: var(--copper); }

.process-heading {
  color: var(--cream);
}

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

.process-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--copper);
  flex-shrink: 0;
  margin-top: 4px;
  width: 28px;
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-body p {
  font-size: 16px;
  color: var(--ash);
  line-height: 1.65;
}

/* ─── Vision ────────────────────────────────────────────────── */
.vision {
  background: var(--cream);
  padding: var(--space-xl) 80px;
}

.vision-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.vision-decoration {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.01em;
}

/* ─── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  padding: 64px 80px;
}

.footer-inner {
  max-width: 760px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--ash);
  margin-bottom: 48px;
}

.footer-rule {
  width: 40px;
  height: 1px;
  background: var(--copper);
  margin-bottom: 48px;
}

.footer-built {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
}

.footer-links a {
  color: var(--ash);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--cream);
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content { padding: 120px 32px 80px; }
  .manifesto, .outcomes, .modules, .process, .vision, .footer { padding-left: 32px; padding-right: 32px; }
  .outcomes-grid, .modules-grid { grid-template-columns: 1fr; }
  .outcome-card:nth-child(odd) { border-right: none; padding-right: 0; }
  .outcome-card:nth-child(even) { padding-left: 0; }
  .module-card { padding: 32px; }
  .nav { padding: 20px 24px; }
}
