@charset "utf-8";

/* =========================================================
   IASO HEADER / TABLET
   768px - 1180px
   Light full-screen drawer
========================================================= */

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

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

body.iaso-site .iaso-header,
body.iaso-site .iaso-header.is-scrolled {
    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,.76);
    border-bottom: 1px solid rgba(110,157,184,.12);
    -webkit-backdrop-filter: blur(18px) saturate(115%);
    backdrop-filter: blur(18px) saturate(115%);
    box-shadow: none;
}

body.iaso-site .iaso-header.is-scrolled {
    background: rgba(255,255,255,.95);
    box-shadow: 0 8px 26px rgba(76,112,132,.07);
}

body.iaso-site .iaso-header .iaso-header__inner {
    width: calc(100% - 44px);
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1fr) 44px;
    align-items: center;
    gap: 16px;
}

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

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

body.iaso-site .iaso-header .iaso-header__reservation {
    display: none;
}

body.iaso-site .iaso-header .iaso-header__toggle {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

body.iaso-site .iaso-header .iaso-header__toggle-icon {
    display: block;
    width: 26px;
    height: 19px;
    overflow: visible;
    color: #6E9DB8;
}

body.iaso-site .iaso-header .iaso-header__toggle-icon path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    vector-effect: non-scaling-stroke;
}


body.iaso-site.iaso-menu-open .iaso-header .iaso-header__toggle {
    opacity: 0;
    pointer-events: none;
}

/* FULL-SCREEN DRAWER */
body.iaso-site .iaso-header .iaso-header__nav {
    position: fixed;
    inset: 0;
    z-index: 1300;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100svh;
    max-height: none;
    margin: 0;
    padding:
        max(28px, env(safe-area-inset-top))
        max(42px, env(safe-area-inset-right))
        max(36px, env(safe-area-inset-bottom))
        max(42px, env(safe-area-inset-left));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--iaso-navy);
    background:
        radial-gradient(circle at 82% 12%, rgba(151,199,220,.25), transparent 31%),
        linear-gradient(155deg, #fbfefe 0%, #f4fafc 52%, #edf6f9 100%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

body.iaso-site.iaso-menu-open .iaso-header .iaso-header__nav {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

body.iaso-site .iaso-header .iaso-header__nav-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 980px;
    margin: 0 auto 28px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(24,50,71,.13);
    color: var(--iaso-blue);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .22em;
}

body.iaso-site .iaso-header .iaso-header__close {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0 0 2px;
    border: 1px solid rgba(24,50,71,.14);
    border-radius: 50%;
    color: var(--iaso-navy);
    background: rgba(255,255,255,.62);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

body.iaso-site .iaso-header .iaso-header__menu {
    max-width: 980px;
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 0 48px;
    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: 78px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    padding: 17px 34px 17px 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: 17px;
    font-weight: 500;
    line-height: 1.45;
}

body.iaso-site .iaso-header .iaso-header__menu small {
    color: var(--iaso-blue);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .16em;
}

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);
}

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: 5px 0 11px 18px;
    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: 11px 0;
    color: #536c7b;
    border-bottom: 1px solid rgba(24,50,71,.08);
    font-size: 13px;
    text-decoration: none;
}

body.iaso-site .iaso-header .iaso-header__mobile-actions {
    max-width: 980px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: minmax(220px,320px) minmax(220px,320px);
    gap: 12px;
}

body.iaso-site .iaso-header .iaso-header__mobile-actions .iaso-button {
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
}

body.iaso-site .iaso-header .iaso-header__mobile-actions .iaso-button--primary,
body.iaso-site .iaso-header .iaso-header__mobile-actions .iaso-button--primary:visited {
    color: #fff;
    background: var(--iaso-blue);
    border-color: var(--iaso-blue);
}

body.iaso-site .iaso-header .iaso-header__mobile-actions .iaso-button--ghost,
body.iaso-site .iaso-header .iaso-header__mobile-actions .iaso-button--ghost:visited {
    color: var(--iaso-navy);
    background: rgba(255,255,255,.72);
    border-color: rgba(24,50,71,.18);
}

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