/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy: #0d1b3e;
  --navy-mid: #162247;
  --navy-light: #1e2f5a;
  --red: #d63018;
  --red-bright: #e8341a;
  --white: #f8f9fc;
  --grey-light: #f4f5f7;
  --grey-text: #8892a4;
  --font-display: 'Bebas Neue', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--navy); color: var(--white); min-height: 100vh; }

/* ── LUCIDE ICONS — global defaults ── */
svg.lucide { display: block; flex-shrink: 0; }
/* Inline icons (inside <a>, <span> with text) */
a svg.lucide, button svg.lucide { display: inline-block; vertical-align: middle; }


/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 68px; padding: 0 4vw;
  display: flex; align-items: center; gap: 2rem;
  background: rgba(8,15,35,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 42px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.nav-links {
  display: flex; gap: 0; list-style: none; flex: 1;
}
.nav-links li a {
  font-family: var(--font-condensed); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(248,249,252,0.65); text-decoration: none;
  padding: 0.4rem 0.9rem; position: relative; transition: color 0.2s; white-space: nowrap;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0.9rem; right: 0.9rem;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform 0.25s; transform-origin: left;
}
.nav-links li a:hover,
.nav-links li a.active { color: var(--white); }
.nav-links li a.active::after,
.nav-links li a:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex; align-items: center; gap: 1rem; margin-left: auto; flex-shrink: 0;
}
.nav-cta {
  font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white); background: var(--red);
  padding: 0.5rem 1.1rem; text-decoration: none; white-space: nowrap; transition: background 0.2s;
}
.nav-cta:hover { background: var(--red-bright); }

/* ── HAMBURGER BUTTON ── */
.nav-burger {
  display: none;
  position: relative;
  width: 28px; height: 20px;
  background: none; border: none; cursor: pointer; padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; position: absolute; left: 0; width: 100%; height: 2px;
  background: var(--white); border-radius: 1px;
  transition: top 0.25s ease 0.1s, transform 0.25s ease, opacity 0.2s ease;
}
.nav-burger span:nth-child(1) { top: 0; }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { top: 100%; transform: translateY(-100%); }

/* X state — all three meet at center, then rotate */
.nav-burger.is-active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); transition: top 0.25s ease, transform 0.25s ease 0.1s; }
.nav-burger.is-active span:nth-child(2) { opacity: 0; transform: translateY(-50%) scaleX(0); }
.nav-burger.is-active span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); transition: top 0.25s ease, transform 0.25s ease 0.1s; }


/* ── BUTTONS ── */
.btn-primary {
  font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2.2rem;
  background: var(--red); color: var(--white); text-decoration: none;
  display: inline-block; border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(214,48,24,0.3);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--red-bright); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(214,48,24,0.45); }
.btn-ghost {
  font-family: var(--font-condensed); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 0.9rem 2.2rem;
  background: transparent; color: var(--white); text-decoration: none;
  display: inline-block; border: 1.5px solid rgba(248,249,252,0.3); cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }

/* ── SECTION LABEL ── */
.section-label {
  font-family: var(--font-condensed); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 10px; margin-bottom: 0.8rem;
}
.section-label::before { content: ''; width: 22px; height: 2px; background: var(--red); flex-shrink: 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  letter-spacing: 0.02em; line-height: 1;
}

/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: 68px; min-height: 100vh; display: flex; flex-direction: column; }

/* ── PAGE HERO (inner pages) ── */
.page-hero { padding: 8rem 5vw 4rem; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 5rem); line-height: 0.95; margin-bottom: 1.5rem; }
.page-hero h1 em { color: var(--red); font-style: normal; }
.page-hero p { font-size: 1rem; font-weight: 300; color: rgba(248,249,252,0.68); max-width: 520px; line-height: 1.75; }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s, transform 0.7s; }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal-right.visible { opacity: 1; transform: none; }

/* ── MOBILE NAV OVERLAY ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: #060d1d;
  flex-direction: column;
  padding: 2rem 5vw 3rem;
  overflow-y: auto;
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.is-open { transform: none; }
.mobile-nav-links { list-style: none; flex: 1; }
.mobile-nav-links li a {
  font-family: var(--font-condensed); font-size: 1.25rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(248,249,252,0.75); text-decoration: none;
  display: block; padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-nav-links li a:hover,
.mobile-nav-links li a.active { color: var(--white); }
.mobile-nav-cta { display: inline-block; margin-top: 2rem; }

/* ── FOOTER ── */
.site-footer { background: #060d1d; padding: 3.5rem 5vw 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top {
  display: grid; grid-template-columns: 2fr 2fr 1.5fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.07); margin-bottom: 1.5rem;
}
.footer-nav-group { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-brand p { font-size: 0.85rem; font-weight: 300; color: var(--grey-text); line-height: 1.7; margin-top: 0.8rem; max-width: 240px; }
.footer-col-title { font-family: var(--font-condensed); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--red); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.84rem; color: var(--grey-text); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 0.84rem; color: var(--grey-text); line-height: 1.8; }
.footer-contact strong { color: var(--white); }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social-btn {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-text); text-decoration: none; font-size: 0.8rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { background: var(--red); border-color: var(--red); color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem; }
.footer-copy { font-size: 0.75rem; color: var(--grey-text); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.75rem; color: var(--grey-text); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: var(--white); }


/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */

/* ── Tablet ── */
@media (max-width: 1024px) {
  .nav-links li a { padding: 0.4rem 0.6rem; font-size: 0.76rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ── Mobile nav breakpoint ── */
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .nav-links { display: none; }
  .mobile-nav { display: flex; }
  .nav-cta { font-size: 0.68rem; padding: 0.45rem 0.9rem; }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-nav-group { grid-template-columns: 1fr 1fr; }
  .footer-socials { gap: 0.5rem; }
  .page-hero { padding: 6rem 5vw 3rem; }
}
