/* ── NAV BAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  background: #0f0f0f;
  border-bottom: 3px solid #d10000;
}

.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 3px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand span { color: #d10000; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: #d10000; }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #d10000;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none;
  transition: background .2s;
  flex-shrink: 0;
}
.nav-cta:hover { background: #ff1a1a; }

/* ── DESKTOP DROPDOWNS ── */
.has-drop { position: relative; }
.nav-drop {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1e1e1e;
  border-top: 2px solid #d10000;
  min-width: 230px;
  list-style: none;
  display: none;
  flex-direction: column;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  margin: 0;
  padding: 0;
}
.nav-drop a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  text-decoration: none;
  padding: 12px 18px;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .15s, background .15s;
}
.nav-drop a:hover { color: #fff; background: rgba(255,255,255,.05); }

/* ── HAMBURGER BUTTON ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: transform .25s, opacity .25s;
}

/* ── MOBILE FULL-SCREEN MENU ── */
.nav-mobile {
  display: none;
  position: fixed;
  top: 66px;
  left: 0; right: 0; bottom: 0;
  background: #0f0f0f;
  z-index: 98;
  overflow-y: auto;
  flex-direction: column;
  padding: 8px 0 40px;
}
.nav-mobile.is-open { display: flex; }

.nm-item { border-bottom: 1px solid rgba(255,255,255,.07); }

.nm-row {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ccc;
  text-decoration: none;
  padding: 16px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
  text-align: left;
}
.nm-row:hover { color: #fff; }
.nm-arrow { font-size: .65rem; color: #555; transition: transform .2s; flex-shrink: 0; }

.nm-sub {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,.03);
  padding: 4px 0 8px;
}
.nm-sub.is-open { display: flex; }

.nm-sub a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  padding: 11px 6% 11px calc(6% + 16px);
  border-left: 2px solid transparent;
  transition: color .15s;
  display: block;
}
.nm-sub a:hover { color: #d10000; border-left-color: #d10000; }

.nm-cta {
  margin: 24px 6% 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #d10000;
  color: #fff;
  padding: 16px;
  text-decoration: none;
  display: block;
  text-align: center;
}
.nm-cta:hover { background: #ff1a1a; }

/* ── BREAKPOINTS ── */
@media (max-width: 899px) {
  .nav-links { display: none !important; }
  .nav-toggle { display: flex; }
  .nav-cta    { display: none; }
}
@media (min-width: 900px) {
  .nav-mobile { display: none !important; }
  .nav-toggle { display: none !important; }
}
