:root {
  --bg: #F7F4EE;
  --fg: #1A1A2E;
  --fg-muted: #5A5A72;
  --accent: #C8963E;
  --accent-dark: #A07828;
  --nav-bg: #1A1A2E;
  --nav-fg: #F7F4EE;
  --section-pad: 80px 24px;
  --max-width: 1080px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  background: var(--nav-bg);
  color: var(--nav-fg);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: rgba(247,244,238,0.5);
  font-weight: 300;
}
.nav-pipeline-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-pipeline-link:hover { background: rgba(200,150,62,0.15); }

/* Manifesto */
.manifesto {
  padding: 96px 24px 72px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.manifesto-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.manifesto-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 40px;
}
.manifesto-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.meta-pill {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(26,26,46,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}
.manifesto-rule {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.manifesto-rule::after {
  content: '';
  display: block;
  height: 1px;
  background: rgba(26,26,46,0.12);
  margin-top: 72px;
}

/* Section labels */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  max-width: 640px;
}

/* Process */
.process {
  padding: var(--section-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.process-step {}
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(26,26,46,0.08);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.step-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.process-delta {
  padding-top: 32px;
  border-top: 1px solid rgba(26,26,46,0.08);
}
.delta-line {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-weight: 500;
  font-size: 15px;
}

/* Services */
.services {
  padding: var(--section-pad);
  background: var(--fg);
  color: var(--bg);
}
.services .section-label { color: var(--accent); }
.services .section-title { color: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  background: rgba(247,244,238,0.04);
  padding: 36px;
}
.service-card--featured {
  background: rgba(200,150,62,0.12);
  border: 1px solid rgba(200,150,62,0.25);
}
.service-icon {
  color: var(--accent);
  margin-bottom: 24px;
}
.service-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  color: rgba(247,244,238,0.6);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: rgba(247,244,238,0.5);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* Proof */
.proof {
  padding: var(--section-pad);
  max-width: var(--max-width);
  margin: 0 auto;
}
.proof-desc {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}
.proof-tag {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(200,150,62,0.12);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid rgba(200,150,62,0.2);
}
.proof-cta {
  display: flex;
  gap: 24px;
}
.proof-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(26,26,46,0.3);
  transition: text-decoration-color 0.2s;
}
.proof-link:hover {
  text-decoration-color: var(--accent);
}

/* Trust */
.trust {
  padding: var(--section-pad);
  background: rgba(26,26,46,0.03);
}
.trust-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.2;
}
.trust-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.trust-icon {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}
.trust-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Closing */
.closing {
  padding: 96px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.closing-inner { max-width: 640px; }
.closing-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--fg-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.closing-text--bold { font-weight: 700; color: var(--fg); }

/* Footer */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 40px 24px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 500;
}
.footer-sub {
  font-size: 13px;
  color: rgba(247,244,238,0.4);
  margin-left: 12px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-link {
  font-size: 13px;
  color: rgba(247,244,238,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--bg); }

/* Responsive */
@media (max-width: 768px) {
  .process-grid,
  .services-grid,
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .manifesto { padding: 64px 24px 56px; }
  .proof-cta { flex-direction: column; gap: 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-tagline { display: none; }
}

@media (max-width: 480px) {
  .manifesto-headline { font-size: 36px; }
  .section-title { font-size: 28px; }
  .service-card { padding: 28px; }
}