@media (max-width: 992px) {
  .mobile-nav { display: none !important; }
  .paris-header .hamburger { display: none !important; }

  .paris-header .container { position: relative; justify-content: center; }
  .paris-header .logo { padding-left: 0; }

  .kjc-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
    padding: 0;
  }

  .kjc-mobile-toggle.is-open {
    position: fixed;
    top: 18px;
    left: 16px;
    transform: none;
  }

  .kjc-mobile-toggle span,
  .kjc-mobile-toggle span::before,
  .kjc-mobile-toggle span::after {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    transition: transform 0.3s ease, opacity 0.2s ease;
  }

  .kjc-mobile-toggle span {
    position: relative;
  }

  .kjc-mobile-toggle span::before,
  .kjc-mobile-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
  }

  .kjc-mobile-toggle span::before { top: -7px; }
  .kjc-mobile-toggle span::after { top: 7px; }

  .kjc-mobile-toggle.is-open span { background: transparent; }
  .kjc-mobile-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
  .kjc-mobile-toggle.is-open span::after { top: 0; transform: rotate(-45deg); }

  .kjc-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .kjc-mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .kjc-mobile-overlay nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .kjc-mobile-overlay .kjc-mob-link {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    transition: color 0.2s ease;
  }

  .kjc-mobile-overlay .kjc-mob-link:hover,
  .kjc-mobile-overlay .kjc-mob-link.is-active {
    color: var(--accent);
  }

  .kjc-mobile-overlay .kjc-mob-sub-toggle {
    background: none;
    border: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 20px;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .kjc-mobile-overlay .kjc-mob-sub-toggle:hover {
    color: var(--accent);
  }

  .kjc-mobile-overlay .kjc-mob-sub-toggle .kjc-mob-caret {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.25s ease;
    margin-top: -3px;
  }

  .kjc-mobile-overlay .kjc-mob-sub-toggle.is-expanded .kjc-mob-caret {
    transform: rotate(-135deg);
    margin-top: 3px;
  }

  .kjc-mobile-overlay .kjc-mob-submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .kjc-mobile-overlay .kjc-mob-submenu.is-expanded {
    max-height: 500px;
  }

  .kjc-mobile-overlay .kjc-mob-submenu a {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 10px 20px;
    transition: color 0.2s ease;
  }

  .kjc-mobile-overlay .kjc-mob-submenu a:hover {
    color: var(--accent);
  }
}

@media (min-width: 993px) {
  .kjc-mobile-toggle { display: none !important; }
  .kjc-mobile-overlay { display: none !important; }
}
