:root {
    --navy: #092b51;
    --deep: #061f3b;
    --blue: #69a9d7;
    --color-gold: #b89b5e;
    --color-gold-light: #d4b97a;
    --color-white: #fff;
    --color-navy: #092b51;
    --color-navy-mid: #174a77;
    --color-cream: #f5f3ee;
    --radius: 4px;
    --ink: #14263c;
    --muted: #657181;
    --paper: #f5f6f7;
    --white: #fff;
    --line: #dce2e8;
    --shadow: 0 18px 50px rgba(7,34,63,.12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: #fff;
    font-family: "Montserrat",Arial,sans-serif;
    line-height: 1.6
}

    body.modal-open {
        overflow: hidden
    }

img {
    display: block;
    max-width: 100%
}

a {
    color: inherit
}

button, input, select {
    font: inherit
}

button {
    cursor: pointer
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    color: #fff;
    background: var(--navy);
    transform: translateY(-150%)
}

    .skip-link:focus {
        transform: none
    }

.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    height: 82px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 1px 0 rgba(8,43,81,.08);
    backdrop-filter: blur(14px)
}

.header-inner {
    width: min(1240px,calc(100% - 48px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand, .brand img {
    display: block;
    width: 92px
}

    .brand img {
        height: 64px;
        object-fit: contain
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px,2.4vw,38px)
}

.menu-toggle {
    display: none
}

.nav-dropdown {
    position: relative
}

.nav-dropdown-toggle {
    padding: 12px 0;
    border: 0;
    color: var(--ink);
    background: transparent;
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase
}

    .nav-dropdown-toggle i {
        margin-left: 5px;
        font-size: .67rem;
        transition: transform .2s
    }

.nav-dropdown.is-open .nav-dropdown-toggle i {
    transform: rotate(180deg)
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    right: 0;
    width: 245px;
    padding: 9px 0;
    display: none;
    background: #fff;
    box-shadow: 0 16px 38px rgba(7,34,63,.17)
}

.nav-dropdown.is-open .nav-dropdown-menu {
    display: block
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--ink);
    font-size: .72rem;
    font-weight: 500;
    text-decoration: none
}

    .nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible {
        color: var(--color-gold);
        background: var(--paper)
    }

.button {
    display: inline-flex;
    min-height: 50px;
    padding: 0 28px;
    border: 1px solid var(--navy);
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: var(--navy);
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
    transition: .2s
}

    .button:hover, .button:focus-visible {
        border-color: var(--color-gold);
        color: var(--color-gold);
        background: #fff;
        transform: translateY(-2px)
    }

.button-small {
    min-height: 42px;
    padding: 0 22px
}

.hero {
    position: relative;
    min-height: 760px;
    padding: 160px 24px 80px;
    display: grid;
    place-items: center;
    color: #fff;
    text-align: center;
    background: linear-gradient(90deg,rgba(5,25,47,.62),rgba(5,25,47,.28)),url("../images/hero-vm-hotels.jpg") center 56%/cover no-repeat
}

.hero-content {
    max-width: 800px
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--color-gold);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase
}

.hero h1 {
    margin: 0;
    font-size: clamp(3.5rem,8vw,7.2rem);
    font-weight: 400;
    letter-spacing: .04em;
    line-height: .95;
    text-transform: uppercase
}

.hero .eyebrow {
    color: var(--color-gold-light)
}

.hero-tagline {
    margin: 18px 0 8px;
    font-size: clamp(1.35rem,2.6vw,2rem);
    font-weight: 500
}

.hero-copy {
    max-width: 640px;
    margin: 0 auto 32px
}

.hero .button {
    border-color: #fff;
    background: rgba(9,43,81,.9)
}

    .hero .button:hover {
        border-color: var(--color-gold-light);
        color: var(--color-gold);
        background: #fff
    }

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .66rem;
    letter-spacing: .14em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%)
}

.section {
    width: 100%;
    min-width: 0;
    padding: 96px max(24px,calc((100vw - 1240px)/2))
}

.section-heading {
    margin: 0 auto 42px;
    text-align: center
}

    .section-heading h2, .legal-page h1 {
        margin: 0;
        color: var(--navy);
        font-size: clamp(2rem,4vw,3.1rem);
        font-weight: 400;
        letter-spacing: .08em;
        line-height: 1.15;
        text-transform: uppercase
    }

    .section-heading h2::after {
        width: 48px;
        height: 2px;
        margin: 16px auto 0;
        display: block;
        content: "";
        background: var(--color-gold)
    }


.accommodations {
    background: var(--paper)
}

.hotel-grid {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 24px
}

.hotel-card {
    width: 100%;
    min-width: 0;
    display: block;
    border-top: 3px solid var(--color-gold);
    background: #fff;
    box-shadow: var(--shadow)
}

.hotel-image {
    width: 100%;
    min-width: 0;
    display: block;
    overflow: hidden;
    aspect-ratio: 9/7
}

    .hotel-image img {
        width: 100%;
        min-width: 0;
        height: 100%;
        object-fit: cover;
        transition: transform .55s
    }

.hotel-card:hover img {
    transform: scale(1.04)
}

.hotel-content {
    width: 100%;
    min-width: 0;
    padding: 27px 28px 30px
}

.hotel-location {
    margin: 0 0 9px;
    color: var(--muted);
    font-size: .69rem;
    letter-spacing: .08em;
    text-transform: uppercase
}

    .hotel-location i {
        color: var(--color-gold)
    }

.hotel-content h3 {
    margin: 0 0 11px;
    color: var(--navy);
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase
}

    .hotel-content h3 span {
        font-size: .64rem;
        vertical-align: middle
    }

.hotel-content > p:not(.hotel-location) {
    min-height: 52px;
    margin: 0 0 18px;
    color: #3c4652;
    font-size: .88rem
}

.text-link {
    color: var(--navy);
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none
}

    .text-link i {
        margin-left: 7px;
        color: var(--color-gold);
        transition: .2s
    }

    .text-link:hover, .text-link:focus-visible {
        color: var(--color-gold)
    }

    .text-link:hover i {
        margin-left: 12px
    }

.experience-grid {
    display: grid;
    width: 100%;
    min-width: 0;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 18px
}

.experience-card {
    width: 100%;
    min-width: 0;
    text-align: center
}

    .experience-card img {
        width: 100%;
        aspect-ratio: 7/5.44;
        object-fit: cover
    }

    .experience-card h3 {
        display: inline-block;
        margin: 17px 0 0;
        padding-bottom: 7px;
        border-bottom: 2px solid var(--color-gold);
        color: var(--navy);
        font-size: .88rem;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase
    }

.benefits {
    padding: 80px max(24px,calc((100vw - 1240px)/2));
    color: #fff;
    background: linear-gradient(125deg,var(--deep),var(--navy))
}

.section-heading.light h2 {
    color: #fff;
    font-size: clamp(1.7rem,3vw,2.3rem)
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr)
}

    .benefit-grid article {
        min-height: 150px;
        padding: 10px 18px;
        border-right: 1px solid rgba(255,255,255,.2);
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        text-align: center
    }

        .benefit-grid article:last-child {
            border: 0
        }

    .benefit-grid i {
        margin-bottom: 17px;
        color: var(--color-gold-light);
        font-size: 2.25rem
    }

    .benefit-grid h3 {
        margin: 0;
        font-size: .68rem;
        font-weight: 600;
        letter-spacing: .05em;
        line-height: 1.45;
        text-transform: uppercase
    }

.final-cta {
    min-height: 490px;
    padding: 80px 24px;
    display: grid;
    place-items: center;
    color: #fff;
    text-align: center;
    background: linear-gradient(rgba(6,31,59,.14),rgba(6,31,59,.12)),url("../images/cta-vm-hotels.jpg") center/cover no-repeat
}

.final-cta-content img {
    width: 145px;
    height: 105px;
    margin: 0 auto 16px;
    filter: drop-shadow(0 2px 7px rgba(0,0,0,.25));
    object-fit: contain
}

.final-cta h2 {
    margin: 0 0 28px;
    font-size: clamp(1.7rem,4vw,2.65rem);
    font-weight: 400
}

.site-footer {
    padding: 27px 24px 18px;
    color: rgba(255,255,255,.9);
    background: var(--navy)
}

.footer-inner {
    width: min(1240px,100%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px
}

.social-links {
    display: flex;
    gap: 20px
}

    .social-links a {
        text-decoration: none
    }

        .social-links a:hover, .social-links a:focus-visible,
        .footer-links a:hover, .footer-links a:focus-visible {
            color: var(--color-gold-light)
        }

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px
}

    .footer-links a, .footer-links button {
        padding: 0;
        border: 0;
        color: inherit;
        background: none;
        font-size: .61rem;
        letter-spacing: .08em;
        text-decoration: none;
        text-transform: uppercase
    }

.footer-language {
    justify-self: end;
    font-size: .65rem
}

.copyright {
    margin: 16px 0 0;
    color: rgba(255,255,255,.52);
    font-size: .62rem;
    text-align: center
}

.booking-modal {
    position: fixed;
    z-index: 1500;
    inset: 0;
    display: none
}

    .booking-modal.is-open {
        display: grid;
        place-items: center
    }

.booking-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3,19,36,.76);
    backdrop-filter: blur(4px)
}

.booking-dialog {
    position: relative;
    z-index: 1;
    width: min(650px,calc(100% - 32px));
    max-height: calc(100vh - 32px);
    padding: 40px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0,0,0,.3)
}

.booking-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    border: 0;
    color: var(--navy);
    background: transparent;
    font-size: 1.2rem
}

    .booking-close:hover, .booking-close:focus-visible {
        color: var(--color-gold)
    }

.booking-logo {
    width: 90px;
    height: 64px;
    margin-bottom: 14px;
    object-fit: contain
}

.booking-dialog h2 {
    margin: 0 0 6px;
    color: var(--navy);
    font-size: 2rem;
    font-weight: 500
}

.booking-dialog > p:not(.eyebrow):not(.booking-note) {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: .88rem
}

.booking-fields {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px
}

.field-wide {
    grid-column: 1/-1
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.field input, .field select {
    width: 100%;
    height: 49px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 0;
    color: var(--ink);
    background: #fff;
    outline: 0
}

.field input:focus, .field select:focus {
        border-color: var(--color-gold);
        box-shadow: 0 0 0 3px rgba(184,155,94,.18)
    }

.select-wrap {
    position: relative
}

    .select-wrap select {
        padding-right: 38px;
        appearance: none
    }

    .select-wrap i {
        position: absolute;
        top: 50%;
        right: 14px;
        pointer-events: none;
        transform: translateY(-50%)
    }

.booking-submit {
    width: 100%;
    margin-top: 24px
}

.booking-note {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: .7rem;
    text-align: center
}

    .booking-note i {
        color: var(--color-gold)
    }

.booking-error {
    margin: 0 0 20px;
    padding: 12px 14px;
    color: #8b2431;
    background: #fff0f2;
    font-size: .78rem
}

.legal-page {
    min-height: calc(100vh - 190px);
    padding-top: 150px
}

    .legal-page .container-xl {
        width: min(900px, calc(100% - 48px));
        margin-right: auto;
        margin-left: auto
    }

    .legal-page .section-heading {
        text-align: left
    }

    .legal-page > p {
        width: min(780px,100%)
    }

@media(max-width:980px) {
    .site-header {
        height: 72px
    }

    .header-inner {
        width: calc(100% - 32px)
    }

    .brand, .brand img {
        width: 78px
    }

        .brand img {
            height: 55px
        }

    .menu-toggle {
        width: 44px;
        height: 44px;
        padding: 10px;
        border: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: transparent
    }

        .menu-toggle span {
            width: 100%;
            height: 2px;
            background: var(--navy);
            transition: .2s
        }

        .menu-toggle.is-open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg)
        }

        .menu-toggle.is-open span:nth-child(2) {
            opacity: 0
        }

        .menu-toggle.is-open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg)
        }

    .main-nav {
        position: absolute;
        top: 72px;
        right: 0;
        left: 0;
        padding: 24px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 18px;
        background: #fff;
        box-shadow: 0 15px 30px rgba(7,34,63,.12)
    }

        .main-nav.is-open {
            display: flex
        }

    .nav-dropdown-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left
    }

    .nav-dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 5px;
        box-shadow: none;
        border-left: 2px solid var(--color-gold)
    }

        .nav-dropdown-menu a {
            padding: 10px 16px
        }

    .hero {
        min-height: 680px;
        padding-top: 130px
    }

    .hotel-grid {
        width: 100%;
        grid-template-columns: minmax(0,1fr);
        max-width: 690px;
        margin-right: auto;
        margin-left: auto
    }

    .hotel-card {
        display: block
    }

    .hotel-image {
        height: auto;
        aspect-ratio: 9/7
    }

    .experience-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 34px 18px
    }

    .benefit-grid {
        grid-template-columns: repeat(3,1fr)
    }

        .benefit-grid article:nth-child(3) {
            border-right: 0
        }

        .benefit-grid article:nth-child(-n+3) {
            border-bottom: 1px solid rgba(255,255,255,.2)
        }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center
    }

    .social-links, .footer-links {
        justify-content: center
    }

    .footer-language {
        justify-self: center
    }
}

@media(max-width:620px) {
    .hero {
        min-height: 560px;
        padding: 125px 18px 72px;
        background-position: 54% center
    }

    .hero-copy {
        font-size: .88rem
    }

    .section {
        padding-top: 72px;
        padding-bottom: 72px
    }

    .hotel-card {
        display: block
    }

    .hotel-image {
        aspect-ratio: 9/7
    }

        .hotel-image img {
            object-position: center center
        }

    .hotel-card:hover .hotel-image img {
        transform: none
    }

    .experience-grid {
        width: 100%;
        max-width: 520px;
        margin-right: auto;
        margin-left: auto;
        grid-template-columns: minmax(0,1fr);
        gap: 36px
    }

    .experience-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 700/544;
        object-position: center center
    }

    .experience-card h3 {
        margin-top: 12px;
        font-size: .74rem
    }

    .benefit-grid {
        grid-template-columns: repeat(2,1fr)
    }

        .benefit-grid article:nth-child(3) {
            border-right: 1px solid rgba(255,255,255,.2)
        }

        .benefit-grid article:nth-child(2n) {
            border-right: 0
        }

        .benefit-grid article:nth-child(-n+4) {
            border-bottom: 1px solid rgba(255,255,255,.2)
        }

    .final-cta {
        min-height: 400px;
        padding: 64px 20px;
        background-position: 70% center
    }

    .footer-links {
        flex-direction: column;
        gap: 13px
    }

    .booking-dialog {
        padding: 34px 22px 26px
    }

        .booking-dialog h2 {
            font-size: 1.65rem
        }

    .booking-fields {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .field-wide {
        grid-column: auto
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *, *:before, *:after {
        transition-duration: .01ms !important
    }
}
