:root {
  --bg-primary: #0C0A09;
  --bg-secondary: #1C1917;
  --bg-accent: #292524;
  --fg-primary: #FAFAF9;
  --fg-secondary: #A8A29E;
  --fg-muted: #78716C;
  --accent: #D97706;
  --accent-light: #F59E0B;
  --rule: #44403C;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg-primary);
  color: var(--fg-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* === SECTION LABEL === */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(217,119,6,0.06) 0%, transparent 60%),
    var(--bg-primary);
}

.hero-masthead {
  text-align: center;
  margin-bottom: 4rem;
}

.hero-edition {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--fg-primary);
  margin: 0.5rem 0;
}

.hero-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 1.5rem auto;
}

.hero-date {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
}

.hero-headline {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* === MANIFESTO === */
.manifesto {
  padding: 6rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg-secondary);
}

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

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--fg-primary);
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin-bottom: 3rem;
}

.manifesto-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.manifesto-col p {
  font-size: 1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
}

/* === FEATURES === */
.features {
  padding: 6rem 2rem;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--rule);
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
}

.feature-card--large {
  grid-column: 1 / -1;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--bg-accent);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg-primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-secondary);
  line-height: 1.7;
  max-width: 500px;
}

/* === NUMBERS === */
.numbers {
  padding: 6rem 2rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background:
    radial-gradient(ellipse at 80% 50%, rgba(217,119,6,0.04) 0%, transparent 60%),
    var(--bg-secondary);
}

.numbers-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.number-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.number-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(217,119,6,0.08) 0%, transparent 50%),
    var(--bg-primary);
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.closing-text {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  line-height: 1.8;
}

/* === FOOTER === */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--rule);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--fg-primary);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

.footer-location {
  font-size: 0.85rem;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 2rem 1.5rem;
    min-height: 90vh;
  }

  .hero-masthead {
    margin-bottom: 3rem;
  }

  .manifesto {
    padding: 4rem 1.5rem;
  }

  .manifesto-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .features {
    padding: 4rem 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--large {
    grid-column: 1;
  }

  .numbers {
    padding: 4rem 1.5rem;
  }

  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}