:root {
  --bg: #F9F6F1;
  --bg-alt: #F0EBE3;
  --fg: #1C1916;
  --fg-muted: #6B6259;
  --accent: #9B7D5A;
  --accent-light: #C4A882;
  --border: #DDD6CC;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  padding: 100px 60px 90px;
  max-width: 1100px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}
.hero-overline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-lede {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}
.hero-right {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 90px 60px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 36px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 28px;
  border: none;
  padding: 0;
}
.manifesto-attribution {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}
.manifesto-name {
  font-weight: 500;
  font-size: 14px;
}
.manifesto-title {
  font-size: 13px;
  color: var(--fg-muted);
}
.manifesto-title::before {
  content: '·';
  margin-right: 8px;
  color: var(--border);
}
.manifesto-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* ── SECTION COMMON ── */
.section-overline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 0;
}

/* ── PROCESS ── */
.process {
  padding: 90px 60px;
  border-bottom: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}
.process .section-header {
  margin-bottom: 64px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  padding: 40px 36px 40px 0;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step + .step { padding-left: 36px; }
.step-num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 20px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 14px;
  line-height: 1.2;
}
.step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── NETWORK ── */
.network {
  padding: 90px 60px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.network-intro {
  max-width: 600px;
  margin-bottom: 64px;
}
.network-intro .section-title { margin-bottom: 20px; }
.network-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}
.network-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}
.network-col-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.network-col-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--fg);
}
.network-col-subtitle {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.network-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.network-list li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
  font-weight: 300;
  line-height: 1.5;
}
.network-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 1px;
  background: var(--accent);
}
.network-credentials {
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.network-cred-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.network-cred-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 4px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 300;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.dot { color: var(--accent-light); }

/* ── MODEL ── */
.model {
  padding: 90px 60px;
  border-bottom: 1px solid var(--border);
  max-width: 1100px;
  margin: 0 auto;
}
.model-header { margin-bottom: 56px; }
.model-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.model-card {
  padding: 44px 44px 40px;
  border: 1px solid var(--border);
  position: relative;
}
.model-card--brand { background: var(--bg); }
.model-card--agency { background: var(--fg); color: var(--bg); }
.model-card--agency .model-card-label { color: var(--accent-light); }
.model-card--agency .model-card-features li { color: rgba(249,246,241,0.65); }
.model-card-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.model-card-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 8px;
  color: inherit;
}
.model-card-tagline {
  font-size: 14px;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.model-card--agency .model-card-tagline { color: rgba(249,246,241,0.5); }
.model-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.model-card-features li {
  font-size: 13px;
  color: var(--fg-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.model-card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 1px;
  background: var(--accent);
}

/* ── CLOSING ── */
.closing {
  padding: 120px 60px;
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 48px;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.closing-sub {
  font-size: 16px;
  color: rgba(249,246,241,0.55);
  line-height: 1.65;
  font-weight: 300;
}

/* ── FOOTER ── */
.footer {
  padding: 40px 60px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--border);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  flex: 1;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 20px 28px; }
  .hero { grid-template-columns: 1fr; padding: 60px 28px; gap: 40px; }
  .hero-right { display: none; }
  .hero-headline { font-size: 44px; }
  .manifesto { padding: 60px 28px; }
  .manifesto-quote { font-size: 22px; }
  .process { padding: 60px 28px; }
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .step + .step { padding-left: 0; }
  .step:last-child { border-bottom: none; }
  .network { padding: 60px 28px; }
  .network-columns { grid-template-columns: 1fr; gap: 32px; }
  .network-col-divider { display: none; }
  .model { padding: 60px 28px; }
  .model-cards { grid-template-columns: 1fr; }
  .closing { padding: 80px 28px; }
  .closing-headline { font-size: 36px; }
  .footer { flex-direction: column; align-items: flex-start; gap: 8px; padding: 32px 28px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .section-title { font-size: 32px; }
  .closing-headline { font-size: 28px; }
}