@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@300;400;600;700&family=Rajdhani:wght@500;600;700&display=swap');

/* ─── Design Tokens ─────────────────────────────────────── */
:root {
  --bg:                #080000;
  --surface:           #0f0000;
  --surface-2:         #180808;
  --surface-3:         #200e0e;
  --text:              #f0ece4;
  --text-muted:        #b0a099;
  --text-faint:        #5a4040;
  --accent:            #e50014;
  --accent-dim:        #8a000c;
  --accent-glow:       rgba(229, 0, 20, 0.14);
  --accent-glow-strong:rgba(229, 0, 20, 0.32);
  --border:            rgba(229, 0, 20, 0.22);
  --divider:           rgba(229, 0, 20, 0.07);
  --white:             #f0ece4;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Nunito', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.68;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.75; }

h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

/* ─── Skip Link ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -200%;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  z-index: 9999;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
}
.skip-link:focus { top: 1rem; }

/* ─── Layout ─────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
