:root {
  --bg-deep: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #1a1a1a;
  --gold: #c9a84c;
  --gold-dim: #8a7233;
  --gold-bright: #e4c15a;
  --text-primary: #e8e4dc;
  --text-secondary: #9a948a;
  --text-muted: #5a5650;
  --border: #222222;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Space Grotesk', sans-serif;
}

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

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

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.03) 0%, transparent 50%),
              var(--bg-deep);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1rem;
  font-weight: 300;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-dim), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}

.manifesto-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold-dim);
  opacity: 0.4;
  line-height: 1;
}

.manifesto-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.manifesto-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.manifesto-accent {
  color: var(--gold) !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem !important;
}

/* ===== REPORTS / INVESTIGATIONS ===== */
.reports {
  padding: 8rem 2rem;
  background: var(--bg-card);
}

.reports-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reports-header {
  margin-bottom: 4rem;
}

.reports-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.reports-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text-primary);
}

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

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

.report-card:hover {
  border-color: var(--gold-dim);
}

.report-card-number {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.report-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.report-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ===== METHOD ===== */
.method {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
}

.method-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.method-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.method-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-primary);
}

.method-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.method-dash {
  width: 20px;
  height: 1px;
  background: var(--gold-dim);
  margin-top: 0.75rem;
  flex-shrink: 0;
}

.method-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 300;
}

/* ===== CLOSING ===== */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%),
              var(--bg-deep);
  border-top: 1px solid var(--border);
}

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

.closing-mark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold-dim);
  margin-bottom: 3rem;
}

.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 2rem;
}

.closing-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--gold);
}

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

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-right {
  text-align: right;
}

.footer-link {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 300;
}

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-copyright {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 300;
}

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

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

  .manifesto-number {
    font-size: 2.5rem;
  }

  .reports {
    padding: 5rem 1.5rem;
  }

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

  .method-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-right {
    text-align: left;
  }
}