:root {
  --bg: #1a0f14;
  --surface: #241619;
  --cream: #f5f0ea;
  --cream-dim: rgba(245, 240, 234, 0.55);
  --gold: #c9a96e;
  --gold-dim: rgba(201, 169, 110, 0.3);
  --blush: #e8d4c8;
  --blush-dim: rgba(232, 212, 200, 0.15);
  --text: #f5f0ea;
  --text-muted: rgba(245, 240, 234, 0.5);
  --text-dim: rgba(245, 240, 234, 0.25);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Manifesto ── */
.manifesto {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.manifesto-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.manifesto-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  position: relative;
  z-index: 1;
}

.manifesto-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
}

.manifesto-name {
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 40px;
}

.manifesto-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.4;
  margin-bottom: 48px;
}

.manifesto-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-dim);
  margin-bottom: 32px;
}

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

.manifesto-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 80px 80px 40px;
}

.visual-frame {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  position: relative;
  border: 1px solid var(--gold-dim);
}

.visual-silhouette {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(160deg, var(--surface) 0%, #130c10 100%);
  overflow: hidden;
}

.silhouette-shape {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 95%;
  background: radial-gradient(ellipse at 50% 60%, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
  border-radius: 50% 50% 45% 45% / 40% 40% 35% 35%;
}

.silhouette-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(26, 15, 20, 0.5) 100%);
}

.silhouette-text {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-dim);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

/* ── Insight ── */
.insight {
  background: var(--surface);
  padding: 120px 80px;
  position: relative;
}

.insight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.insight-inner {
  max-width: 900px;
}

.insight-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.insight-quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--cream);
  border: none;
  padding: 0;
  margin-bottom: 24px;
}

.insight-attr {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 64px;
  padding-left: 2px;
}

.insight-strip {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.strip-mark {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Void ── */
.void {
  padding: 120px 80px;
}

.void-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
}

.void-number {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 32px;
}

.void-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 32px;
}

.void-body {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.void-frame {
  background: var(--surface);
  border: 1px solid var(--gold-dim);
  padding: 56px 48px;
  position: relative;
}

.void-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 40px;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.void-content {}

.void-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  line-height: 1.5;
  color: var(--cream);
  text-align: center;
}

/* ── Closing ── */
.closing {
  background: var(--surface);
  padding: 140px 80px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 80px;
  right: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dim), transparent);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing-badge {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 48px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 32px;
  line-height: 1.1;
}

.closing-sub {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 56px;
  font-style: italic;
}

.closing-platforms {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-tag {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--text-dim);
  padding: 10px 24px;
}

/* ── Footer ── */
.footer {
  padding: 48px 80px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--cream);
}

.footer-by {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-nav a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-note {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .manifesto {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .manifesto-inner {
    padding: 80px 32px 60px;
    order: 1;
  }

  .manifesto-visual {
    padding: 0 32px 80px;
    order: 2;
  }

  .visual-frame {
    max-width: 280px;
    margin: 0 auto;
  }

  .insight {
    padding: 80px 32px;
  }

  .insight-strip {
    gap: 24px;
  }

  .void {
    padding: 80px 32px;
  }

  .void-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .closing {
    padding: 100px 32px;
  }

  .footer {
    padding: 40px 32px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-note {
    text-align: center;
  }
}

@media (max-width: 375px) {
  body { font-size: 16px; }
  .manifesto-name { font-size: 64px; }
  .insight-strip { flex-direction: column; gap: 16px; }
  .closing-headline { font-size: 42px; }
}