@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,400&display=swap');

:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-glow: rgba(204,0,0,0.2);
  --black: #080808;
  --dark: #0E0E0E;
  --card: #131313;
  --card2: #1A1A1A;
  --border: #222;
  --border2: #2E2E2E;
  --text: #E8E8E8;
  --text2: #A0A0A0;
  --muted: #606060;
  --gold: #C9A84C;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,8,8,0);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.nav.scrolled {
  background: rgba(8,8,8,0.97);
  border-color: var(--border);
  backdrop-filter: blur(20px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-box {
  width: 38px; height: 38px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 700;
  color: white; letter-spacing: 0.5px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: white; }
.nav-links a.active { color: var(--red); }

.nav-cta {
  padding: 9px 22px;
  background: var(--red);
  color: white !important;
  font-family: 'Oswald', sans-serif;
  font-size: 11px !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s ease !important;
  border: 1px solid var(--red);
}

.nav-cta:hover {
  background: transparent !important;
  color: var(--red) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  transition: all 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  border-bottom: 1px solid var(--border);
  padding: 24px 32px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  backdrop-filter: blur(20px);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-family: 'Oswald', sans-serif;
  font-size: 14px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text2);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-mobile a:hover { color: white; }
.nav-mobile a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav { padding: 0 20px; }
}

/* ── SHARED COMPONENTS ── */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  border: none; transition: all 0.25s ease;
  position: relative; overflow: hidden;
}

.btn-red {
  background: var(--red);
  color: white;
  border: 1px solid var(--red);
}

.btn-red:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(204,0,0,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  color: white;
  transform: translateY(-2px);
}

.eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 14px; display: block;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700; text-transform: uppercase;
  color: white; line-height: 0.95;
  margin-bottom: 16px;
}

.section-title .accent { color: var(--red); }

.section-sub {
  font-size: 15px; color: var(--text2);
  max-width: 520px; line-height: 1.7;
  margin-bottom: 48px;
}

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px 32px 32px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (max-width: 640px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}

.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: white; margin-bottom: 8px;
}

.footer-brand-tag {
  font-size: 12px; color: var(--muted);
  line-height: 1.6;
}

.footer-heading {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}

.footer-links a {
  font-size: 13px; color: var(--text2);
  text-decoration: none; transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 12px; color: var(--muted);
}

.footer-social {
  display: flex; gap: 16px;
}

.footer-social a {
  font-family: 'Oswald', sans-serif;
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}

.footer-social a:hover { color: var(--red); }

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
