@media (max-width: 1139px) {
  #desNav {
    display: none;
  }
  #mobileNav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    background: transparent;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 20px;
    justify-content: space-between;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }
  #mobileNav.nav-hidden {
    transform: translateY(-100%);
  }
  #mobileNav.active .hamburger span {
    background: var(--black);
  }
  #mobileNav.nav-on-light .hamburger span {
    background: var(--primary);
  }
  #mobileNav .hamburger {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  #mobileNav .hamburger span {
    display: block;
    position: relative;
    width: 24px;
    height: 2px;
    background: rgba(255, 236, 225, 0.7);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease;
  }
  #mobileNav .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  #mobileNav .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  #mobileNav .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  #mobileNav .logo {
    position: absolute;
    left: 69px;
    z-index: 2;
  }
  #mobileNav .logo img {
    width: 68px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #mobileNav .button {
    position: relative;
    z-index: 2;
    border: 0;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 20px;
    color: var(--primary);
    background: var(--orange);
    font-size: 14px;
    transition: opacity 0.2s ease;
  }
  #mobileNav .button:hover, #mobileNav .button:focus-visible {
    opacity: 0.85;
  }
  #mobileNav .button i {
    font-size: 13px;
  }
  #mobileNav #sidebar {
    position: fixed;
    inset: 0;
    height: 100dvh;
    width: 100%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 110px 24px 40px;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.03);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.5s;
  }
  #mobileNav #sidebar.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
  }
  #mobileNav #sidebar .sidebar-links {
    display: flex;
    flex-direction: column;
  }
  #mobileNav #sidebar .sidebar-links .sidebar-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
  }
  #mobileNav #sidebar .sidebar-links .sidebar-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 2px;
    border-bottom: 1px solid rgba(31, 31, 31, 0.1);
    font-size: 20px;
    color: var(--primary);
    text-decoration: none;
    opacity: 0;
    transform: translateY(-26px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.25s ease;
  }
  #mobileNav #sidebar .sidebar-links .sidebar-link:first-of-type {
    border-top: 1px solid rgba(31, 31, 31, 0.1);
  }
  #mobileNav #sidebar .sidebar-links .sidebar-link i {
    font-size: 16px;
    color: var(--primary);
    flex-shrink: 0;
  }
  #mobileNav #sidebar .sidebar-links .sidebar-link:hover, #mobileNav #sidebar .sidebar-links .sidebar-link:focus-visible, #mobileNav #sidebar .sidebar-links .sidebar-link:active {
    color: var(--primary);
  }
  #mobileNav #sidebar .sidebar-links .sidebar-link.in {
    opacity: 1;
    transform: translateY(0);
  }
  #mobileNav #sidebar .sidebar-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    opacity: 0;
    transform: translateY(-18px);
    transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }
  #mobileNav #sidebar .sidebar-footer .event-chip {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    background: rgba(0, 72, 118, 0.06);
    border: 1px solid rgba(0, 72, 118, 0.2);
    border-radius: 30px;
    padding: 6px 14px;
  }
  #mobileNav #sidebar .sidebar-footer .button {
    border: 0;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 22px;
    color: var(--cream);
    background: var(--primary);
    font-size: 14px;
    width: 100%;
    margin-top: 35px;
    transition: opacity 0.2s ease;
  }
  #mobileNav #sidebar .sidebar-footer .button:hover, #mobileNav #sidebar .sidebar-footer .button:focus-visible {
    opacity: 0.85;
  }
  #mobileNav #sidebar .sidebar-footer .button i {
    font-size: 13px;
    margin-left: 4px;
  }
  #mobileNav #sidebar .sidebar-footer.in {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  #sidebar,
  #sidebar .sidebar-link,
  #sidebar .sidebar-footer,
  .hamburger span,
  #mobileNav,
  #desNav {
    transition: none !important;
  }
}
@media only screen and (min-width: 1140px) {
  #mobileNav {
    display: none;
  }
  #desNav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 75px;
    background: transparent;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }
  #desNav.nav-hidden {
    transform: translateY(-100%);
  }
  #desNav .content {
    position: relative;
    width: 100%;
    height: 75px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0px 35px;
    max-width: 1460px;
    margin-inline: auto;
  }
  #desNav .content .links {
    grid-column: 2;
    justify-self: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  #desNav .content .links a, #desNav .content .links summary {
    text-decoration: none;
    color: var(--cream);
    font-size: 17px;
    font-weight: 400;
    transition: color 0.3s ease, opacity 0.2s ease;
  }
  #desNav .content .links a:hover, #desNav .content .links a:focus-visible, #desNav .content .links summary:hover, #desNav .content .links summary:focus-visible {
    opacity: 0.75;
  }
  #desNav .content .nav-dropdown {
    position: relative;
  }
  #desNav .content .nav-dropdown summary {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    list-style: none;
  }
  #desNav .content .nav-dropdown summary::-webkit-details-marker {
    display: none;
  }
  #desNav .content .nav-dropdown summary i {
    font-size: 11px;
    transition: transform 0.25s ease;
  }
  #desNav .content .nav-dropdown[open] summary i {
    transform: rotate(180deg);
  }
  #desNav .content .nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    min-width: 200px;
    padding: 10px;
    border-radius: 10px;
    background: var(--cream);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  }
  #desNav .content .nav-dropdown-panel a, #desNav .content .nav-dropdown-panel span {
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease;
  }
  #desNav .content .nav-dropdown-panel a:hover, #desNav .content .nav-dropdown-panel a:focus-visible {
    background: rgba(70, 11, 47, 0.07);
  }
  #desNav .content .logo {
    grid-column: 1;
  }
  #desNav .content .logo img {
    display: block;
    width: 100px;
    transform: translateY(6px);
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #desNav .content .nav-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
  }
  #desNav .content .language-select {
    position: relative;
  }
  #desNav .content .language-select summary {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    list-style: none;
    padding: 8px 18px;
    border: 1px solid rgba(255, 236, 225, 0.6);
    border-radius: 30px;
    color: var(--cream);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease, border-color 0.3s ease, opacity 0.2s ease;
  }
  #desNav .content .language-select summary::-webkit-details-marker {
    display: none;
  }
  #desNav .content .language-select summary:hover, #desNav .content .language-select summary:focus-visible {
    opacity: 0.75;
  }
  #desNav .content .language-select summary i {
    font-size: 11px;
    transition: transform 0.25s ease;
  }
  #desNav .content .language-select[open] summary i {
    transform: rotate(180deg);
  }
  #desNav .content .language-select .nav-dropdown-panel {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  #desNav .content .language-select .language-panel {
    width: calc(100% + 28px);
    min-width: 0;
    gap: 4px;
    padding: 6px;
    border-radius: 14px;
  }
  #desNav .content .language-select .lang-option {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 6px 10px;
    border: 2px solid transparent;
    border-radius: 30px;
    background: transparent;
    color: var(--primary);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
  }
  #desNav .content .language-select .lang-option:hover, #desNav .content .language-select .lang-option:focus-visible {
    background: rgba(70, 11, 47, 0.07);
  }
  #desNav .content .language-select .lang-option.is-active {
    border-color: var(--primary);
    background: transparent;
  }
  #desNav .content .language-select .lang-name {
    padding: 0;
    border-radius: 0;
    font-size: 13px;
    font-weight: 500;
    color: inherit;
    margin-right: auto;
  }
  #desNav .content .language-select .lang-flag {
    padding: 0;
    display: block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 0 0 1px rgba(31, 31, 31, 0.12) inset;
  }
  #desNav .content .language-select .lang-flag svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  #desNav .content .button {
    border: 0;
    border-radius: 30px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 36px;
    color: var(--primary);
    background: var(--orange);
    font-size: 15px;
    transition: opacity 0.2s ease;
  }
  #desNav .content .button:hover, #desNav .content .button:focus-visible {
    opacity: 0.85;
  }
  #desNav .content .button i {
    font-size: 14px;
    margin-left: 4px;
  }
  #desNav.nav-on-light .content .links a, #desNav.nav-on-light .content .links summary {
    color: var(--primary);
  }
  #desNav.nav-on-light .content .language-select summary {
    color: var(--primary);
    border-color: rgba(70, 11, 47, 0.35);
  }
}/*# sourceMappingURL=nav.css.map */