@charset "utf-8";

/* =========================================================
   IASO HEADER / SP
   RESPONSIBILITY: header / hamburger / drawer only
========================================================= */
:root { --iaso-header-height: 56px; }

body.iaso-menu-open { overflow: hidden; }

body.iaso-site .iaso-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1200;
    width: 100%;
    height: var(--iaso-header-height);
    color: var(--iaso-navy);
    background: rgba(255,255,255,.82);
    border-bottom: 1px solid rgba(110,157,184,.12);
    -webkit-backdrop-filter: blur(16px) saturate(112%);
    backdrop-filter: blur(16px) saturate(112%);
    transition: background-color .25s ease, box-shadow .25s ease;
}
body.iaso-site .iaso-header.is-scrolled {
    background: rgba(255,255,255,.97);
    box-shadow: 0 6px 20px rgba(76,112,132,.07);
}
body.iaso-site .iaso-header .iaso-header__inner {
    width: calc(100% - 28px);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
body.iaso-site .iaso-header .iaso-header__brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}
body.iaso-site .iaso-header .iaso-header__brand img {
    display: block;
    width: 124px;
    height: auto;
}
body.iaso-site .iaso-header .iaso-header__reservation { display: none; }

body.iaso-site .iaso-header .iaso-header__toggle {
    position: relative;
    z-index: 1401;
    display: grid;
    place-items: center;
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
    color: #6E9DB8;
    background: transparent;
    cursor: pointer;
}
body.iaso-site .iaso-header .iaso-header__toggle-icon {
    display: block;
    width: 28px;
    height: 20px;
    color: currentColor;
    overflow: visible;
}
body.iaso-site .iaso-header .iaso-header__toggle-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}

body.iaso-site .iaso-header .iaso-header__nav {
    position: fixed;
    inset: 0;
    z-index: 1300;
    width: 100%;
    height: 100dvh;
    padding:
        max(18px, env(safe-area-inset-top))
        max(20px, env(safe-area-inset-right))
        max(28px, env(safe-area-inset-bottom))
        max(20px, env(safe-area-inset-left));
    overflow-y: auto;
    color: var(--iaso-navy);
    background:
        radial-gradient(circle at 84% 7%, rgba(151,199,220,.22), transparent 30%),
        linear-gradient(160deg,#fcfefe 0%,#f5fafc 56%,#edf6f9 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
}
body.iaso-site.iaso-menu-open .iaso-header .iaso-header__nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}
body.iaso-site.iaso-menu-open .iaso-header .iaso-header__toggle {
    opacity: 0;
    pointer-events: none;
}
body.iaso-site .iaso-header .iaso-header__nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(24,50,71,.13);
    color: var(--iaso-blue);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
}
body.iaso-site .iaso-header .iaso-header__close {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0 0 2px;
    border: 1px solid rgba(24,50,71,.14);
    border-radius: 50%;
    color: var(--iaso-navy);
    background: rgba(255,255,255,.72);
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}
body.iaso-site .iaso-header .iaso-header__menu {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}
body.iaso-site .iaso-header .iaso-header__menu > li > a,
body.iaso-site .iaso-header .iaso-header__menu > li > button {
    position: relative;
    width: 100%;
    min-height: 63px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 3px;
    padding: 12px 32px 12px 0;
    border: 0;
    border-bottom: 1px solid rgba(24,50,71,.12);
    color: var(--iaso-navy);
    background: transparent;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
    font: inherit;
}
body.iaso-site .iaso-header .iaso-header__menu span {
    color: var(--iaso-navy);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}
body.iaso-site .iaso-header .iaso-header__menu small {
    color: var(--iaso-blue);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .14em;
}
body.iaso-site .iaso-header .iaso-header__has-submenu > button::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 6px;
    width: 8px;
    height: 8px;
    border-right: 1px solid rgba(24,50,71,.55);
    border-bottom: 1px solid rgba(24,50,71,.55);
    transform: translateY(-65%) rotate(45deg);
    transition: transform .2s ease;
}
body.iaso-site .iaso-header .iaso-header__has-submenu.is-open > button::after {
    transform: translateY(-30%) rotate(225deg);
}
body.iaso-site .iaso-header .iaso-header__submenu {
    position: static;
    display: none;
    width: 100%;
    margin: 0;
    padding: 3px 0 8px 16px;
    list-style: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
}
body.iaso-site .iaso-header .iaso-header__has-submenu.is-open .iaso-header__submenu {
    display: block;
}
body.iaso-site .iaso-header .iaso-header__submenu a {
    display: block;
    padding: 10px 0;
    color: #536c7b;
    border-bottom: 1px solid rgba(24,50,71,.08);
    font-size: 12px;
    text-decoration: none;
}
body.iaso-site .iaso-header .iaso-header__mobile-actions {
    display: grid;
    gap: 9px;
    margin-top: 18px;
    padding-bottom: 12px;
}
body.iaso-site .iaso-header .iaso-header__mobile-actions .iaso-button {
    width: 100%;
    min-width: 0;
}

/*
   SP GLOBAL HEADER RULE
   The fixed header overlays the first section on every renewal page.
   HERO/page CSS owns its own top breathing room.
   No page-specific spacer exceptions are necessary.
*/
body.iaso-site .iaso-header-spacer {
    display: none;
    height: 0;
}
