:root {
  --navy: #12213B;
  --navy-mid: #1B2D4A;
  --cream: #F7F0E5;
  --cream-soft: #FFF8EC;
  --orange: #FF6230;
  --blue: #00B4D8;
  --gold: #FFC857;
  --text-dark: #10203A;
  --text-muted: rgba(16,32,58,0.72);
  --card-bg: #142C55;
  --white: #F7F0E5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text-dark);
  font-family: 'DM Sans', sans-serif;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 84px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--orange);
}

.nav-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

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

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: all 0.2s;
}

.nav-cta,
.btn-primary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--orange);
  padding: 12px 24px;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  display: inline-block;
}

.btn-secondary {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--blue);
  padding: 12px 24px;
  text-decoration: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  display: inline-block;
}

.nav-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
  background: var(--gold);
}

footer {
  background: var(--navy);
  color: rgba(247,240,229,0.65);
  padding: 44px 24px;
  text-align: center;
  font-size: 0.82rem;
}

footer a {
  color: rgba(247,240,229,0.75);
  text-decoration: none;
  margin: 0 8px;
}

footer a:hover {
  color: var(--orange);
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px;
  }

  .nav-cta {
    order: 2;
    font-size: 0.75rem;
    padding: 9px 16px;
  }

  .nav-hamburger {
    order: 3;
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: rgba(18,33,59,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    border-bottom: 1px solid rgba(247,240,229,0.08);
    z-index: 99;
  }

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

  .nav-links li a {
    display: block;
    padding: 14px 24px;
  }

  .nav-logo {
    font-size: 1.35rem;
  }
}
