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

/* ============================================================
   COLOUR SYSTEM
   ─────────────────────────────────────────────────────────────
   Deep premium dark palette — not flat black, but layered navy.
   Red is vivid crimson. Gold is warm and precious.
   Every surface has depth. Every accent has punch.
   ============================================================ */
:root {
  /* ── Brand ── */
  --red:          #E8192C;       /* Sharp vivid crimson — up from dull #EF4444 */
  --red-dark:     #C0101F;
  --red-glow:     rgba(232,25,44,0.18);
  --gold:         #F0C040;       /* Warm rich gold — up from muted #D4AF37 */
  --gold-dark:    #C9960C;
  --gold-glow:    rgba(240,192,64,0.12);

  /* ── Backgrounds — layered, never flat ── */
  --black:        #080B14;       /* Deep navy-black — replaces flat #050505 */
  --slate:        #0F1623;       /* Rich navy slate — replaces grey #111827 */
  --slate-mid:    #162032;       /* Mid-layer card background */
  --slate-light:  #1E2D45;       /* Elevated card surface */

  /* ── Borders ── */
  --border:       rgba(255,255,255,0.07);
  --border-gold:  rgba(240,192,64,0.18);
  --border-red:   rgba(232,25,44,0.2);

  /* ── Text ── */
  --white:        #FFFFFF;
  --gray-light:   #CBD5E1;
  --gray:         #8896A8;
  --gray-dim:     #4A5568;

  /* ── Fonts — EXACT V1 ── */
  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* ── System ── */
  --transition:   0.25s ease;
  --radius:       6px;
  --radius-lg:    10px;

  /* ── Shadows ── */
  --shadow:       0 4px 20px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.2);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.55), 0 4px 12px rgba(0,0,0,0.3);
  --shadow-red:   0 6px 28px rgba(232,25,44,0.35);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }
h1,h2,h3,h4 { line-height: 1.15; }

/* ── Layout ── */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ── Section title — V1 EXACT ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 3rem;
}
.section-title span { color: var(--gold); }

/* ── Tag pill — V1 EXACT ── */
.tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.2rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* ── Buttons — V1 EXACT, sharper colours ── */
.btn {
  display: inline-block;
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(232,25,44,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ── NAVBAR — V1 EXACT, richer bg ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,11,20,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  height: 68px;
  display: flex;
  align-items: center;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.6); }
.navbar .container {
  display: flex; align-items: center;
  justify-content: space-between;
  width: 90%; max-width: 1200px; margin: 0 auto;
}
.navbar-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: var(--white);
}
.navbar-logo span { color: var(--red); }

.navbar-links { display: flex; gap: 2rem; align-items: center; }
.navbar-links a {
  font-family: var(--font-cond);
  font-size: 0.95rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gray-light);
  position: relative; padding-bottom: 2px;
}
.navbar-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}
.navbar-links a:hover { color: var(--white); }
.navbar-links a:hover::after { width: 100%; }
.navbar-links a.active { color: var(--gold); }
.navbar-links a.active::after { width: 100%; }
.navbar-links .btn { padding: 0.4rem 1.2rem; font-size: 0.85rem; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed; top: 68px; left: 0; right: 0;
  background: rgba(8,11,20,0.98);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.5rem 5%; z-index: 99;
  flex-direction: column; gap: 1.2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-cond); font-size: 1.2rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-light);
  border-bottom: 1px solid var(--border); padding-bottom: 0.8rem;
}
.mobile-nav a:hover { color: var(--gold); }

/* ── FOOTER — V1 EXACT, richer bg ── */
footer {
  background: var(--slate);
  border-top: 1px solid var(--border-gold);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .navbar-logo { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.footer-brand p { color: var(--gray); font-size: 0.9rem; max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-cond); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: var(--gray); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { color: var(--gray); font-size: 0.85rem; }
.footer-bottom span { color: var(--gold); }

/* ── PAGE HERO — V1 EXACT ── */
.page-hero {
  padding: 9rem 0 5rem;
  background: var(--slate);
  border-bottom: 1px solid var(--border-gold);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.04em; max-width: 700px;
}
.page-hero h1 span { color: var(--red); }
.page-hero p { margin-top: 1.2rem; color: var(--gray); font-size: 1.05rem; max-width: 550px; }

/* ── CARDS — V1 EXACT, richer bg ── */
.card {
  background: var(--slate-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.card-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1; margin-bottom: 0.5rem;
}
.card h3 {
  font-family: var(--font-cond);
  font-size: 1.2rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.6rem;
}
.card h3.red  { color: var(--red); }
.card h3.gold { color: var(--gold); }
.card p { color: var(--gray); font-size: 0.92rem; line-height: 1.7; }

/* ── DIVIDER — V1 EXACT ── */
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  margin: 0 auto 3rem;
}
.divider.left { margin-left: 0; }

/* ── SCROLL REVEAL — V1 EXACT ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE — V1 EXACT ── */
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) {
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
