/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0a;
  --bg-2: #111111;
  --gold: #D4A843;
  --gold-dim: #8a6d2f;
  --white: #f0ede6;
  --gray: #6b6b6b;
  --gray-light: #2a2a2a;
}

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

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  border-bottom: 1px solid var(--gray-light);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }

/* HERO */
.hero {
  padding: 80px 48px 64px;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 520px;
}

/* MECHANICS */
.mechanics {
  padding: 72px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.mech-rule {
  width: 32px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}

.mech-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  margin-bottom: 48px;
}

.mech-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.mech-item { text-align: center; }

.mech-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(48px, 6vw, 72px);
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.mech-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
}

.mech-sep {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--gold-dim);
  margin-top: -16px;
}

.mech-detail {
  font-size: 15px;
  color: var(--gray);
  max-width: 480px;
  line-height: 1.7;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.manifesto-pull {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  color: var(--gold);
  line-height: 1.3;
  padding-top: 8px;
}

.manifesto-col-right p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-col-right p:last-child { margin-bottom: 0; }

/* COUNTER */
.counter {
  padding: 80px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  text-align: center;
}

.counter-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--gray);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.counter-number {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(96px, 14vw, 160px);
  color: var(--gold);
  line-height: 1;
}

.counter-total {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--gray-dim, #444);
  display: inline;
}

.counter-bar-wrap {
  max-width: 480px;
  margin: 40px auto 24px;
  height: 3px;
  background: var(--gray-light);
  border-radius: 2px;
}

.counter-bar {
  height: 3px;
  width: 8.8%;
  background: var(--gold);
  border-radius: 2px;
}

.counter-sub {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gray);
  text-transform: uppercase;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  text-align: center;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
}

.closing-body {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* FOOTER */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-logo { opacity: 0.6; }

.footer-info {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
}

.footer-info a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-info a:hover { color: var(--gold); }

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 56px 24px 48px; }
  .mechanics { padding: 56px 24px; }
  .mech-grid { gap: 24px; }
  .manifesto { padding: 56px 24px; grid-template-columns: 1fr; gap: 36px; }
  .counter { padding: 56px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
}