
    /* === Header === */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255,255,255,0.92);
      transition: var(--transition);
      box-shadow: 0 2px 20px rgba(0,0,0,0.05);
      backdrop-filter: blur(10px);
      height: 100px;
      display: flex;
      align-items: center;
    }

    .nav-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0;
      height: 100%;
      gap: 0;
    }

    .logo {
      flex: 0 0 auto;
      min-width: 120px;
      max-width: 160px;
      margin-right: 32px;
      transition: transform 0.4s ease;
      position: relative;
      z-index: 10;
    }

    .logo:hover {
      transform: scale(1.03);
    }

    .header-logo {
      width: 100%;
      height: auto;
      max-width: 160px;
      max-height: 90px;
      object-fit: contain;
      display: block;
      filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    }

    #desktop-nav {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    #desktop-nav a {
      margin-left: 35px;
      text-decoration: none;
      color: var(--rifle-green);
      font-weight: 500;
      font-size: 1.05rem;
      transition: var(--transition);
      position: relative;
      padding: 8px 0;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    #desktop-nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--rifle-green);
      transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    #desktop-nav a:hover::after {
      width: 100%;
    }

    #desktop-nav a:hover {
      color: var(--rifle-green);
      font-weight: 600;
    }

    #desktop-nav a.active {
      color: var(--rifle-green);
      font-weight: 600;
    }

    #desktop-nav a.active::after {
      width: 100%;
      background: var(--rifle-green);
    }

    #menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.8rem;
      color: var(--rifle-green);
      cursor: pointer;
      z-index: 101;
      transition: var(--transition);
      margin-left: 24px;
    }

    #menu-toggle:hover {
      color: var(--light-moss);
    }

    /* Mobile nav */
    #mobile-nav {
      display: none;
      flex-direction: column;
      background: var(--white);
      text-align: center;
      padding: 1rem;
      position: absolute;
      top: 100px;
      left: 0;
      width: 100%;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      opacity: 0;
      transform: translateY(-20px);
      transition: opacity 0.4s, transform 0.4s;
    }

    #mobile-nav.show {
      display: flex;
      opacity: 1;
      transform: translateY(0);
    }

    #mobile-nav a {
      padding: 1.2rem 0;
      text-decoration: none;
      color: var(--rifle-green);
      font-weight: 500;
      transition: var(--transition);
      border-bottom: 1px solid rgba(72,74,60,0.1);
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.95rem;
    }

    #mobile-nav a:last-child {
      border-bottom: none;
    }

    #mobile-nav a:hover {
      color: var(--rifle-green);
      background: rgba(72, 74, 60, 0.1);
      font-weight: 600;
    }

    #mobile-nav a.active {
      color: var(--rifle-green);
      font-weight: 600;
    }

    @media (max-width: 768px) {
      .nav-wrapper {
        gap: 0;
        justify-content: space-between; /* Distribute logo left, menu right */
        align-items: center;
      }
      .logo {
        margin-right: 0;
        flex: 0 0 auto;
        min-width: 100px;
        max-width: 140px;
      }
      #desktop-nav {
        display: none;
      }
      #menu-toggle {
        display: block;
        margin-left: 0;
        margin-right: 0;
        flex: 0 0 auto;
      }
      .container.nav-wrapper {
        margin: 0;
        width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
      }
      .nav-wrapper {
        width: 100%;
        justify-content: space-between;
        align-items: center;
      }
      .logo {
        margin-right: 0;
        flex: 0 0 auto;
        min-width: 100px;
        max-width: 140px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
      }
      #menu-toggle {
        display: block;
        margin-left: 0;
        margin-right: 0;
        flex: 0 0 auto;
      }
    }
