@charset "utf-8";

/* =========================================================
   IASO HEADER / PC
   Header component only.
========================================================= */

:root {
    --iaso-header-height: 86px;
}

.iaso-skip-link {
    position: fixed;
    left: 12px;
    top: -64px;
    z-index: 9999;
    padding: 10px 16px;
    color: #fff;
    background: var(--iaso-navy);
    text-decoration: none;
    transition: top .2s ease;
}

.iaso-skip-link:focus {
    top: 12px;
}

.iaso-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    height: var(--iaso-header-height);
    color: var(--iaso-navy);
    background: rgba(250,253,254,.72);
    border-bottom: 1px solid rgba(110,157,184,.10);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    backdrop-filter: blur(18px) saturate(120%);
    transition:
        height .3s ease,
        background-color .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.iaso-header.is-scrolled {
    height: 72px;
    background: rgba(255,255,255,.94);
    border-bottom-color: rgba(110,157,184,.15);
    box-shadow: 0 8px 30px rgba(54,85,103,.08);
}

.iaso-header .iaso-header__inner {
    width: min(1480px, calc(100% - 64px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 200px minmax(0,1fr) 126px;
    align-items: center;
    gap: 28px;
}

.iaso-header .iaso-header__brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    text-decoration: none;
}

.iaso-header .iaso-header__brand img {
    display: block;
    width: 158px;
    height: auto;
}

.iaso-header .iaso-header__nav {
    min-width: 0;
}

.iaso-header .iaso-header__nav-head,
.iaso-header .iaso-header__toggle,
.iaso-header .iaso-header__mobile-actions {
    display: none;
}

.iaso-header .iaso-header__menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(15px,1.45vw,26px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.iaso-header .iaso-header__menu > li {
    position: relative;
}

.iaso-header .iaso-header__menu > li > a,
.iaso-header .iaso-header__menu > li > button {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 0 13px;
    border: 0;
    color: var(--iaso-navy);
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
    white-space: nowrap;
}

.iaso-header .iaso-header__menu span {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: .025em;
}

.iaso-header .iaso-header__menu small {
    color: #94a0a7;
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .14em;
}

.iaso-header .iaso-header__menu > li > a::after,
.iaso-header .iaso-header__menu > li > button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 5px;
    height: 1px;
    background: var(--iaso-blue);
    transition: right .25s ease;
}

.iaso-header .iaso-header__menu > li > a:hover::after,
.iaso-header .iaso-header__menu > li > a:focus-visible::after,
.iaso-header .iaso-header__menu > li > button:hover::after,
.iaso-header .iaso-header__menu > li > button:focus-visible::after,
.iaso-header .iaso-header__has-submenu.is-open > button::after {
    right: 0;
}

.iaso-header .iaso-header__menu > li > a:focus-visible,
.iaso-header .iaso-header__menu > li > button:focus-visible,
.iaso-header .iaso-header__reservation:focus-visible {
    outline: 2px solid rgba(110,157,184,.55);
    outline-offset: 5px;
    border-radius: 4px;
}

.iaso-header .iaso-header__has-submenu > button {
    padding-right: 18px;
}

.iaso-header .iaso-header__has-submenu > button::before {
    content: none;
}

.iaso-header .iaso-header__has-submenu > button::after {
    right: 18px;
}

.iaso-header .iaso-header__has-submenu > button {
    background-image:
        linear-gradient(45deg, transparent 50%, var(--iaso-blue) 50%),
        linear-gradient(135deg, var(--iaso-blue) 50%, transparent 50%);
    background-position:
        calc(100% - 4px) 27px,
        100% 27px;
    background-size: 4px 4px, 4px 4px;
    background-repeat: no-repeat;
}

.iaso-header .iaso-header__submenu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    width: 220px;
    transform: translateX(-50%) translateY(8px);
    margin: 0;
    padding: 12px;
    list-style: none;
    background: rgba(255,255,255,.99);
    border: 1px solid var(--iaso-line);
    border-radius: 14px;
    box-shadow: var(--iaso-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.iaso-header .iaso-header__has-submenu:hover .iaso-header__submenu,
.iaso-header .iaso-header__has-submenu:focus-within .iaso-header__submenu,
.iaso-header .iaso-header__has-submenu.is-open .iaso-header__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.iaso-header .iaso-header__submenu a {
    display: block;
    padding: 11px 12px;
    border-radius: 9px;
    color: var(--iaso-navy);
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
    transition: background-color .2s ease;
}

.iaso-header .iaso-header__submenu a:hover,
.iaso-header .iaso-header__submenu a:focus-visible {
    background: var(--iaso-blue-pale);
    outline: none;
}

.iaso-header .iaso-header__reservation {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    color: #fff;
    background: var(--iaso-blue);
    text-decoration: none;
    border: 1px solid var(--iaso-blue);
    border-radius: 999px;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.iaso-header .iaso-header__reservation:hover {
    color: #fff;
    transform: translateY(-2px);
    background: var(--iaso-blue-hover);
    box-shadow: 0 10px 24px rgba(110,157,184,.18);
}

.iaso-header .iaso-header__reservation small {
    color: rgba(255,255,255,.76);
    font-size: 8px;
    line-height: 1.2;
    letter-spacing: .16em;
}

.iaso-header .iaso-header__reservation span {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .07em;
}

.iaso-header-spacer {
    height: var(--iaso-header-height);
}

body.iaso-site.iaso-page-home .iaso-header-spacer { display: none; }
