/* ── TOP BAR ── */
.topbar {
  background: var(--black);
  border-bottom: 1px solid var(--gray-border);
  box-shadow: inset 0 -2px 0 var(--orange);
  padding: 8px 0;
  font-size: 13px;
  color: var(--gray);
  display: flex;
  justify-content: flex-end;
}
.topbar a { color: var(--gray); text-decoration: none; }
  .topbar a:hover { color: var(--yellow); }
  .topbar .container { display: flex; gap: 24px; align-items: center; }

  /* ── HEADER / NAV ── */
  header {
    background: rgba(17, 18, 20, 0.92);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-border);
    backdrop-filter: blur(12px);
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 84px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 14px;
    padding: 8px 0;
  }

  .logo-img {
    display: block;
    height: 100px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    flex-shrink: 0;
  }

  .logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
    white-space: nowrap;
  }

  .logo-accent {
    color: var(--yellow);
  }

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

  .nav-links > li { position: relative; }

  .nav-links > li > a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    display: block;
    transition: color .2s;
  }
  .nav-links > li > a:hover { color: var(--yellow); }

  .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black);
    border: 1px solid #333;
    min-width: 220px;
    z-index: 100;
    padding: 8px 0;
  }
  .nav-links > li:hover .dropdown { display: block; }
  .dropdown a {
    display: block;
    padding: 10px 20px;
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .5px;
    transition: all .2s;
  }
  .dropdown a:hover { color: var(--yellow); background: #1a1a1a; padding-left: 26px; }

  .nav-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    margin-left: 8px;
    line-height: 1;
    flex-shrink: 0;
  }

  .dropdown a.nav-link--featured {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
  }

  .nav-cta {
    background: var(--yellow);
    color: var(--black) !important;
    padding: 10px 22px !important;
    font-weight: 700 !important;
    transition: background .2s !important;
  }
  .nav-cta:hover { background: var(--yellow-dim) !important; color: var(--black) !important; }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 26px; height: 2px; background: var(--white); transition: .3s; }

  /* ── CONTAINER ── */
  .container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 88vh;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
