:root {
    --ocean: #071D2B;
    --navy: #0A2538;
    --teal: #0E7C78;
    --aqua: #40C7C1;
    --pale: #DDF4F1;
    --pearl: #F7F5F0;
    --coral: #EF806B;
    --champagne: #D8BE8B;
    --charcoal: #18252D;
    --white: #fff;
    --muted: #617078;
    --line: rgba(24, 37, 45, .12);
    --shadow: 0 24px 70px rgba(7, 29, 43, .13);
    --shadow-soft: 0 12px 35px rgba(7, 29, 43, .09);
    --radius-xl: 48px;
    --radius-lg: 36px;
    --radius-md: 24px;
    --container: min(1320px, calc(100% - 48px));
    --transition: .35s cubic-bezier(.2, .75, .2, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--charcoal);
    background: var(--pearl);
    line-height: 1.65;
    overflow-x: hidden
}

body.no-scroll {
    overflow: hidden
}

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

a {
    color: inherit;
    text-decoration: none
}

button,
input,
select,
textarea {
    font: inherit
}

button {
    cursor: pointer
}

p {
    margin: 0 0 1em
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.08;
    letter-spacing: -.035em
}

h1 {
    font-size: clamp(2.7rem, 5vw, 5.2rem)
}

h2 {
    font-size: clamp(1.9rem, 3vw, 3.5rem)
}

h3 {
    font-size: 1.45rem
}

em {
    font-family: "Playfair Display", serif;
    font-weight: 600
}

.container {
    width: var(--container);
    margin-inline: auto
}

.section {
    padding: 120px 0
}

.skip-link {
    position: fixed;
    left: 20px;
    top: -80px;
    z-index: 9999;
    padding: 14px 20px;
    border-radius: 100px;
    background: var(--white);
    color: var(--ocean);
    font-weight: 700;
    transition: .2s
}

.skip-link:focus {
    top: 18px
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-weight: 700;
    color: var(--teal)
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor
}

.eyebrow.light {
    color: var(--aqua)
}

.section-heading {
    margin-bottom: 54px
}

.section-heading.max-width {
    max-width: 930px
}

.section-heading.split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
    align-items: end;
    gap: 70px
}

.section-heading.split>p {
    max-width: 560px;
    color: var(--muted);
    font-size: 1.04rem
}

.section-heading.centered {
    text-align: center;
    max-width: 880px;
    margin-inline: auto
}

.section-heading.centered .eyebrow {
    justify-content: center
}

.section-heading.light,
.section-heading.light>p {
    color: var(--white)
}

.section-heading.light h2 {
    color: var(--white)
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 14px 25px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap
}

.button:hover {
    transform: translateY(-2px)
}

.button i {
    transition: transform var(--transition)
}

.button:hover i {
    transform: translateX(4px)
}

.button-dark {
    background: var(--ocean);
    color: var(--white)
}

.button-dark:hover {
    background: var(--teal)
}

.button-aqua {
    background: var(--aqua);
    color: var(--ocean)
}

.button-aqua:hover {
    background: #67d7d2
}

.button-coral {
    background: var(--coral);
    color: var(--white)
}

.button-coral:hover {
    background: #f09280
}

.button-light {
    background: var(--white);
    border-color: var(--line);
    color: var(--charcoal)
}

.button-glass {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    border-color: rgba(255, 255, 255, .34);
    backdrop-filter: blur(15px)
}

.button-glass:hover {
    background: rgba(255, 255, 255, .18)
}

.button-text {
    background: transparent;
    color: var(--charcoal);
    padding-inline: 12px
}

.button-full {
    width: 100%
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--teal);
    border: 0;
    background: none;
    padding: 0
}

.text-link i {
    transition: transform var(--transition)
}

.text-link:hover i {
    transform: translateX(5px)
}


.site-header {
    position: fixed;
    z-index: 1000;
    top: 18px;
    left: 0;
    width: 100%;
    padding: 0 24px;
    transition: var(--transition)
}

.header-shell {
    width: min(1460px, 100%);
    height: 82px;
    margin: auto;
    padding: 10px 12px 10px 18px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(7, 29, 43, .58);
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--white);
    transition: var(--transition);
    box-shadow: 0 12px 35px rgba(3, 20, 30, .12)
}

.site-header.scrolled {
    top: 10px
}

.site-header.scrolled .header-shell {
    height: 68px;
    background: rgba(255, 255, 255, .94);
    border-color: rgba(24, 37, 45, .08);
    color: var(--charcoal);
    box-shadow: var(--shadow-soft)
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: max-content
}

.brand img {
    width: 42px;
    height: 42px;
    border-radius: 14px
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand-copy strong {
    font-size: .95rem
}

.brand-copy small {
    font-size: .74rem;
    margin-top: 4px;
    opacity: .74
}

.region-badge {
    font-size: .68rem;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    opacity: .85
}

.site-header.scrolled .region-badge {
    border-color: var(--line)
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1
}

.nav-link {
    padding: 12px 11px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 600;
    opacity: .82;
    transition: .25s
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, .1);
    opacity: 1
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    background: var(--pale);
    color: var(--teal)
}

.nav-dropdown {
    position: relative
}

.dropdown-toggle {
    border: 0;
    background: transparent;
    color: inherit
}

.dropdown-toggle i {
    font-size: .65rem;
    margin-left: 5px
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translate(-50%, 10px);
    width: 260px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .25s;
    color: var(--charcoal)
}

.nav-dropdown.open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}

.dropdown-menu a {
    display: flex;
    justify-content: space-between;
    padding: 13px 14px;
    border-radius: 14px;
    font-weight: 700
}

.dropdown-menu a:hover {
    background: var(--pale);
    color: var(--teal)
}

.dropdown-menu span {
    font-size: .72rem;
    color: var(--muted);
    font-weight: 500
}

.header-cta {
    min-height: 48px;
    padding-inline: 20px;
    font-size: .85rem
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    padding: 13px
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: currentColor;
    margin: 5px 0
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: var(--ocean);
    color: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: var(--transition);
    overflow: auto
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    transform: none
}

.mobile-menu-inner {
    min-height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    font-weight: 700
}

.mobile-menu-close {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background: transparent;
    color: var(--white);
    font-size: 1.2rem
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 25px 0
}

.mobile-menu nav>a,
.mobile-submenu-toggle {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    background: transparent;
    color: var(--white);
    font-size: clamp(1.55rem, 6vw, 2.35rem);
    font-weight: 600;
    text-align: left
}

.mobile-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mobile-stays {
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease
}

.mobile-stays.open {
    max-height: 420px;
    padding: 15px 0
}

.mobile-stays a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px;
    background: rgba(255, 255, 255, .07);
    border-radius: 20px;
    margin-bottom: 10px
}

.mobile-stays img {
    width: 76px;
    height: 62px;
    object-fit: cover;
    border-radius: 14px
}

.mobile-stays span {
    display: flex;
    flex-direction: column
}

.mobile-stays small {
    color: var(--aqua)
}

.mobile-contact {
    margin-top: auto;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: rgba(255, 255, 255, .72);
    font-size: .88rem
}


.home-hero,
.hotel-hero,
.page-hero {
    position: relative;
    color: var(--white);
    background-size: cover;
    background-position: center;
    overflow: hidden
}

.home-hero {
    min-height: 100vh;
    margin: 0 16px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 165px 0 150px;
    display: flex;
    align-items: center
}

.bg-home-hero {
    background-image: url('assets/images/home-hero.jpg')
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(7, 29, 43, .94) 0%, rgba(7, 29, 43, .72) 45%, rgba(14, 124, 120, .25) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 1%;
    margin-top: -25px
}

.hero-content h1 {
    max-width: 900px;
    font-size: clamp(3rem, 5vw, 5.4rem)
}

.hero-content p {
    max-width: 690px;
    font-size: 1.12rem;
    color: rgba(255, 255, 255, .78);
    margin: 25px 0 32px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.glass-card {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .26);
    backdrop-filter: blur(22px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, .18)
}

.booking-card {
    position: absolute;
    right: max(4vw, 32px);
    top: 20%;
    z-index: 3;
    transform: translateY(-46%);
    width: min(420px, 33vw);
    padding: 25px;
    border-radius: 32px
}

.booking-card-title {
    display: flex;
    flex-direction: column;
    margin-bottom: 18px
}

.booking-card-title span {
    font-size: 1.35rem;
    font-weight: 700
}

.booking-card-title small {
    color: rgba(255, 255, 255, .66)
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.booking-grid label:first-child {
    grid-column: 1/-1
}

.booking-card label,
.mini-booking label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .65);
    font-weight: 700
}

.booking-card input,
.booking-card select,
.mini-booking input,
.mini-booking select {
    width: 100%;
    height: 48px;
    margin-top: 6px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    background: rgba(5, 25, 35, .48);
    color: var(--white);
    outline: none;
    color-scheme: dark
}

.booking-card option,
.mini-booking option {
    color: var(--charcoal);
    background: var(--white)
}

.booking-card .button {
    margin-top: 17px
}

.field-error {
    display: block;
    min-height: 16px;
    margin-top: 3px;
    color: #ffd6ce;
    font-size: .7rem;
    text-transform: none;
    letter-spacing: 0
}

.form-status {
    margin: 10px 0 0;
    font-size: .84rem;
    font-weight: 600
}

.hero-tabs {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 230px;
    gap: 6px;
    padding: 8px;
    border-radius: 26px;
    background: rgba(7, 29, 43, .46);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(20px)
}

.hero-tab {
    min-width: 0;
    padding: 14px 18px;
    border: 0;
    border-radius: 20px;
    background: transparent;
    color: rgba(255, 255, 255, .66);
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px
}

.hero-tab span {
    grid-row: 1/3;
    color: var(--aqua);
    font-size: .7rem
}

.hero-tab b {
    color: var(--white)
}

.hero-tab small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.hero-tab.active {
    background: rgba(255, 255, 255, .13)
}

.hero-preview-link {
    position: relative;
    overflow: hidden;
    border-radius: 19px;
    min-height: 72px
}

.hero-preview-link img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-preview-link:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 29, 43, .7), transparent)
}

.hero-preview-link span {
    position: absolute;
    z-index: 2;
    left: 15px;
    bottom: 12px;
    font-size: .78rem;
    font-weight: 700
}


.intro-section {
    background: var(--white)
}

.intro-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 80px;
    align-items: center
}

.prose p {
    color: #54636b;
    margin-bottom: 20px;
    font-size: 1.03rem
}

.intro-visual {
    position: relative;
    min-height: 650px
}

.intro-visual>img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 48px 180px 48px 48px
}

.floating-stat {
    position: absolute;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 22px;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: .82rem
}

.floating-stat b {
    font-size: 1.45rem;
    color: var(--teal)
}

.floating-stat i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pale);
    color: var(--teal)
}

.stat-one {
    left: -40px;
    top: 60px
}

.stat-two {
    right: -25px;
    top: 170px
}

.stat-three {
    left: 35px;
    bottom: 40px
}

.stat-four {
    right: -20px;
    bottom: 100px
}

.featured-section {
    background: var(--pearl)
}

.featured-layout {
    display: grid;
    grid-template-columns: 1.38fr .82fr;
    gap: 20px;
    min-height: 790px
}

.stay-card-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px
}

.stay-card {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    min-height: 380px;
    color: var(--white)
}

.stay-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease
}

.stay-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 29, 43, .05) 20%, rgba(7, 29, 43, .92) 100%);
    transition: .4s
}

.stay-card:hover img {
    transform: scale(1.05)
}

.stay-card:hover .stay-overlay {
    background: linear-gradient(180deg, rgba(7, 29, 43, .2), rgba(7, 29, 43, .96))
}

.stay-card-content {
    position: absolute;
    inset: auto 0 0;
    padding: 32px
}

.stay-card h3 {
    font-size: clamp(1.65rem, 2.1vw, 2.6rem);
    margin: 16px 0 12px
}

.stay-card p {
    color: rgba(255, 255, 255, .72);
    max-width: 680px
}

.location-pill {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px);
    font-size: .72rem;
    font-weight: 700
}

.stay-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    padding: 0;
    margin: 14px 0 23px;
    list-style: none;
    font-size: .82rem
}

.stay-card li:before {
    content: "•";
    margin-right: 8px;
    color: var(--aqua)
}

.stay-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 18px;
    font-size: .76rem
}

.stay-bottom a {
    font-weight: 700
}

.stay-bottom a i {
    transition: .3s
}

.stay-card:hover .stay-bottom a i {
    transform: translateX(6px)
}

.stay-card-stack .stay-card-content {
    padding: 24px
}

.stay-card-stack .stay-card h3 {
    font-size: 1.85rem
}

.stay-card-stack .stay-card p,
.stay-card-stack .stay-card ul {
    font-size: .78rem
}

.stay-finder {
    background: var(--white)
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.filter-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: var(--charcoal);
    font-weight: 700;
    transition: .25s
}

.filter-button i {
    color: var(--teal)
}

.filter-button.active {
    background: var(--ocean);
    color: var(--white);
    border-color: var(--ocean)
}

.filter-result {
    display: none;
    grid-template-columns: .75fr 1.25fr;
    min-height: 440px;
    border-radius: 42px;
    overflow: hidden;
    background: var(--pale)
}

.filter-result.active {
    display: grid;
    animation: fadeIn .45s ease
}

.filter-result>div {
    padding: 60px;
    align-self: center
}

.filter-result>div>span {
    color: var(--teal);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-weight: 700
}

.filter-result h3 {
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    margin: 15px 0
}

.filter-result p {
    color: var(--muted);
    max-width: 560px
}

.filter-result img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.packages-section {
    position: relative;
    margin: 0 16px;
    border-radius: var(--radius-xl);
    background-color: var(--ocean);
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden
}

.bg-packages {
    background-image: linear-gradient(rgba(7, 29, 43, .88), rgba(7, 29, 43, .94)), url('assets/images/packages-background.jpg')
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px
}

.package-grid article {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 28px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
    transition: .35s
}

.package-grid article:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .1)
}

.package-grid article>i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--aqua);
    color: var(--ocean);
    font-size: 1.2rem
}

.package-grid article>span {
    display: block;
    margin: 28px 0 10px;
    color: var(--aqua);
    font-size: .72rem
}

.package-grid h3 {
    font-size: 1.65rem
}

.package-grid p,
.package-grid li {
    color: rgba(255, 255, 255, .68);
    font-size: .88rem
}

.package-grid ul {
    padding-left: 18px;
    min-height: 145px
}

.package-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-weight: 700
}

.destination-panels {
    display: flex;
    height: 610px;
    gap: 12px
}

.destination-panel {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    border-radius: 36px;
    color: var(--white);
    transition: flex .7s cubic-bezier(.2, .8, .2, 1)
}

.destination-panel:hover,
.destination-panel.active {
    flex: 2.2
}

.destination-panel img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.destination-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(7, 29, 43, .94))
}

.destination-panel>div:last-child {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 34px;
    width: min(560px, 90%)
}

.destination-panel h3 {
    font-size: clamp(1.9rem, 3vw, 3.5rem);
    margin: 8px 0
}

.destination-panel p {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: .45s
}

.destination-panel:hover p,
.destination-panel.active p {
    max-height: 160px;
    opacity: 1
}

.destination-panel a {
    display: inline-flex;
    margin-top: 10px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 999px;
    font-weight: 700
}

.dining-section {
    background: var(--white)
}

.dining-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center
}

.dining-visual {
    position: relative
}

.dining-visual img {
    width: 100%;
    height: 760px;
    object-fit: cover;
    border-radius: 48px 48px 180px 48px
}

.floating-icon {
    position: absolute;
    right: -30px;
    bottom: 60px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow)
}

.floating-icon i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--pale);
    color: var(--teal)
}

.dining-copy p {
    color: var(--muted)
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 24px;
    margin: 25px 0 30px;
    padding: 0;
    list-style: none
}

.feature-list li {
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 600
}

.feature-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--teal);
    margin-right: 10px
}

.wellness-section {
    background: var(--pale)
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.wellness-grid article {
    padding: 38px;
    border-radius: 32px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .8);
    box-shadow: var(--shadow-soft)
}

.wellness-number {
    display: block;
    color: var(--teal);
    font-size: .76rem;
    margin-bottom: 50px
}

.wellness-grid h3 {
    font-size: 2rem
}

.wellness-grid p {
    color: var(--muted)
}

.wellness-grid a {
    font-weight: 700;
    color: var(--teal)
}

.responsible-section {
    margin: 0 16px;
    padding: 70px 0;
    border-radius: var(--radius-xl);
    background: var(--ocean);
    color: var(--white)
}

.responsible-inner {
    display: grid;
    grid-template-columns: auto 1.25fr .85fr auto;
    gap: 40px;
    align-items: center
}

.adult-symbol {
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border: 2px solid var(--aqua);
    border-radius: 50%;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--aqua)
}

.responsible-inner h2 {
    font-size: clamp(1.85rem, 2.6vw, 3.15rem)
}

.responsible-inner p,
.responsible-inner li {
    color: rgba(255, 255, 255, .72)
}

.responsible-inner ul {
    margin: 0;
    padding-left: 18px
}

.reviews-section {
    background: var(--white)
}

.review-slider {
    max-width: 980px;
    margin: auto;
    outline: none
}

.review-track {
    position: relative;
    min-height: 430px
}

.review-slide {
    position: absolute;
    inset: 0;
    padding: 58px;
    border-radius: 40px;
    background: var(--pearl);
    opacity: 0;
    transform: translateX(30px);
    pointer-events: none;
    transition: .45s
}

.review-slide.active {
    opacity: 1;
    transform: none;
    pointer-events: auto
}

.review-slide>i {
    font-size: 2.4rem;
    color: var(--aqua)
}

.stars {
    color: var(--champagne);
    letter-spacing: .12em;
    margin: 18px 0
}

.review-slide>p {
    font-size: clamp(1.2rem, 2vw, 1.65rem);
    line-height: 1.5
}

.review-slide footer {
    display: flex;
    flex-direction: column;
    margin-top: 30px
}

.review-slide footer span {
    color: var(--muted)
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 25px
}

.slider-controls>button {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white)
}

.slider-dots {
    display: flex;
    gap: 7px
}

.slider-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c8d0d2
}

.slider-dots button.active {
    width: 27px;
    border-radius: 99px;
    background: var(--teal)
}

.newsletter-section {
    padding: 30px 16px 80px;
    background: var(--white)
}

.newsletter-inner {
    padding: 70px;
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, var(--teal), var(--navy));
    color: var(--white);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center
}

.newsletter-inner h2 {
    font-size: clamp(2rem, 3vw, 3.6rem)
}

.newsletter-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.newsletter-main label {
    font-size: .78rem;
    font-weight: 700
}

.newsletter-main label:nth-child(3),
.newsletter-main .checkbox-row,
.newsletter-main .checkbox-error,
.newsletter-main .button,
.newsletter-main .form-status {
    grid-column: 1/-1
}

.newsletter-main input,
.newsletter-main select {
    width: 100%;
    height: 52px;
    margin-top: 6px;
    padding: 0 15px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 15px;
    background: rgba(255, 255, 255, .11);
    color: var(--white);
    outline: none
}

.newsletter-main option {
    color: var(--charcoal)
}

.checkbox-row {
    display: flex !important;
    align-items: flex-start;
    gap: 11px;
    font-weight: 400 !important
}

.checkbox-row input {
    width: 20px !important;
    height: 20px !important;
    min-width: 20px;
    margin-top: 2px !important
}

.checkbox-row a {
    text-decoration: underline
}


.page-hero {
    min-height: 760px;
    margin: 0 16px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    display: flex;
    align-items: flex-end;
    padding: 180px 0 90px
}

.bg-about-hero {
    background-image: url('assets/images/about-hero.jpg')
}

.page-hero-content {
    position: relative;
    z-index: 2
}

.page-hero-content>p {
    max-width: 700px;
    font-size: 1.12rem;
    color: rgba(255, 255, 255, .76)
}

.breadcrumb {
    display: flex;
    gap: 9px;
    align-items: center;
    margin-bottom: 28px;
    font-size: .8rem;
    color: inherit;
    opacity: .76
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 55px;
    padding: 8px;
    border-radius: 26px;
    background: rgba(7, 29, 43, .42);
    border: 1px solid rgba(255, 255, 255, .15);
    backdrop-filter: blur(16px)
}

.hero-stats div {
    padding: 18px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08)
}

.hero-stats b {
    display: block;
    font-size: 1.8rem;
    color: var(--aqua)
}

.hero-stats span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7)
}

.approach-section {
    background: var(--white)
}

.approach-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start
}

.approach-grid h2 {
    margin-bottom: 45px
}

.rounded-image {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 42px 130px 42px 42px
}

.approach-grid blockquote {
    margin: 40px 0 0;
    padding: 30px;
    border-left: 4px solid var(--aqua);
    border-radius: 0 24px 24px 0;
    background: var(--pale);
    font-family: "Playfair Display", serif;
    font-size: 1.7rem
}

.journey-section {
    background: var(--pearl)
}

.journey-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px;
    align-items: start
}

.journey-visual {
    position: sticky;
    top: 110px
}

.journey-visual img {
    height: 700px;
    width: 100%;
    object-fit: cover;
    border-radius: 42px
}

.journey-list {
    border-left: 2px solid rgba(14, 124, 120, .18)
}

.journey-step {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 30px 0 40px 35px;
    position: relative;
    opacity: .45;
    transition: .35s
}

.journey-step:before {
    content: "";
    position: absolute;
    left: -8px;
    top: 38px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #bed3d1;
    border: 4px solid var(--pearl)
}

.journey-step.active {
    opacity: 1
}

.journey-step.active:before {
    background: var(--teal)
}

.journey-step>span {
    font-weight: 800;
    color: var(--teal)
}

.journey-step h3 {
    font-size: 1.75rem
}

.journey-step p {
    color: var(--muted)
}

.definition-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.definition-grid article {
    position: relative;
    padding: 36px;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    transition: .3s
}

.definition-grid article:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-soft)
}

.definition-grid article>span {
    position: absolute;
    top: 24px;
    right: 25px;
    color: #a5b2b6;
    font-size: .72rem
}

.definition-grid i {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: var(--pale);
    color: var(--teal);
    font-size: 1.3rem;
    margin-bottom: 28px
}

.definition-grid p {
    color: var(--muted)
}

.values-section {
    margin: 0 16px;
    border-radius: var(--radius-xl);
    background-size: cover;
    background-position: center;
    color: var(--white)
}

.bg-about-values {
    background-image: linear-gradient(rgba(7, 29, 43, .92), rgba(7, 29, 43, .94)), url('assets/images/about-values.jpg')
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.values-grid article {
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 28px;
    background: rgba(255, 255, 255, .05)
}

.values-grid p {
    color: rgba(255, 255, 255, .66)
}

.complete-stay {
    background: var(--white)
}

.stay-orbit {
    position: relative;
    width: min(850px, 90vw);
    aspect-ratio: 1;
    margin: 0 auto;
    border: 1px dashed rgba(14, 124, 120, .28);
    border-radius: 50%
}

.orbit-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 270px;
    height: 270px;
    border-radius: 50%;
    background: var(--ocean);
    color: var(--white);
    display: grid;
    place-content: center;
    text-align: center;
    padding: 25px;
    box-shadow: var(--shadow)
}

.orbit-center span {
    font-size: 2.2rem;
    font-weight: 700
}

.orbit-center p {
    font-size: .85rem;
    color: rgba(255, 255, 255, .68)
}

.stay-orbit button {
    position: absolute;
    width: 135px;
    height: 135px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--pearl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    transition: .3s
}

.stay-orbit button:hover,
.stay-orbit button.active {
    background: var(--aqua);
    transform: scale(1.08)
}

.stay-orbit button i {
    font-size: 1.3rem
}

.stay-orbit button:nth-of-type(1) {
    left: 50%;
    top: -55px;
    transform: translateX(-50%)
}

.stay-orbit button:nth-of-type(2) {
    right: 3%;
    top: 18%
}

.stay-orbit button:nth-of-type(3) {
    right: 3%;
    bottom: 18%
}

.stay-orbit button:nth-of-type(4) {
    left: 50%;
    bottom: -55px;
    transform: translateX(-50%)
}

.stay-orbit button:nth-of-type(5) {
    left: 3%;
    bottom: 18%
}

.stay-orbit button:nth-of-type(6) {
    left: 3%;
    top: 18%
}

.about-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.about-review-grid article {
    padding: 38px;
    border-radius: 32px;
    background: var(--white);
    box-shadow: var(--shadow-soft)
}

.about-review-grid p {
    font-size: 1.05rem
}

.about-review-grid footer {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 20px
}

.about-review-grid footer span {
    color: var(--muted)
}

.final-cta,
.hotel-cta {
    padding: 85px 0;
    background: var(--teal);
    color: var(--white)
}

.final-cta .container,
.hotel-cta .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.final-cta .container>div:last-child,
.hotel-cta .container>div:last-child {
    display: flex;
    gap: 12px
}


.hotel-hero {
    min-height: 880px;
    margin: 0 16px;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
    padding: 190px 0 140px;
    display: flex;
    align-items: center
}

.bg-azure-hero {
    background-image: url('assets/images/azure-reef-hero.jpg')
}

.bg-velvet-hero {
    background-image: url('assets/images/velvet-harbour-hero.jpg')
}

.bg-golden-hero {
    background-image: url('assets/images/golden-wattle-hero.jpg')
}

.hotel-hero-content {
    position: relative;
    z-index: 2;
    padding-right: 36%
}

.hotel-hero-content h1 {
    font-size: clamp(3rem, 5vw, 5.2rem);
    max-width: 950px
}

.hotel-hero-content>p {
    max-width: 680px;
    color: rgba(255, 255, 255, .76);
    font-size: 1.12rem
}

.hotel-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none
}

.hotel-facts li {
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    font-size: .76rem
}

.mini-booking {
    position: absolute;
    z-index: 3;
    right: max(6vw, 48px);
    bottom: 90px;
    width: 330px;
    padding: 25px;
    border-radius: 30px
}

.mini-booking h2 {
    font-size: 1.45rem;
    margin-bottom: 16px
}

.mini-booking label {
    display: block;
    margin-bottom: 10px
}

.hotel-feature {
    background: var(--white)
}

.hotel-feature-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 75px;
    align-items: center
}

.hotel-feature-grid.reverse {
    grid-template-columns: 1.2fr .8fr
}

.hotel-feature-grid.reverse .hotel-feature-copy {
    order: 2
}

.hotel-feature-copy p {
    font-size: 1.08rem;
    color: var(--muted)
}

.hotel-feature-image img {
    width: 100%;
    height: 630px;
    object-fit: cover;
    border-radius: 44px 140px 44px 44px
}

.hotel-feature-grid.reverse img {
    border-radius: 140px 44px 44px 44px
}

.room-grid,
.lifestyle-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 45px
}

.room-grid article,
.lifestyle-card-grid article {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--pearl)
}

.room-grid article>span {
    color: var(--teal);
    font-size: .72rem
}

.room-grid h3 {
    font-size: 1.75rem;
    margin: 25px 0 15px
}

.room-grid ul {
    padding-left: 18px;
    color: var(--muted);
    min-height: 95px
}

.casino-section {
    margin: 0 16px;
    border-radius: var(--radius-xl);
    background: var(--ocean);
    color: var(--white)
}

.casino-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center
}

.casino-image img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 44px
}

.casino-copy p {
    color: rgba(255, 255, 255, .68)
}

.age-notice {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    padding: 18px;
    border: 1px solid rgba(64, 199, 193, .4);
    border-radius: 18px;
    background: rgba(64, 199, 193, .09)
}

.age-notice i {
    color: var(--aqua)
}

.responsible-note {
    padding: 18px;
    margin-bottom: 25px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .74)
}

.lifestyle-section {
    background: var(--pale)
}

.lifestyle-card-grid article {
    background: rgba(255, 255, 255, .72)
}

.lifestyle-card-grid i {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--aqua);
    margin-bottom: 24px
}

.lifestyle-card-grid p {
    color: var(--muted)
}

.hotel-dining {
    background: var(--white)
}

.dining-hotel-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 80px;
    align-items: center
}

.hotel-dining-image img {
    height: 720px;
    width: 100%;
    object-fit: cover;
    border-radius: 150px 44px 44px 44px
}

.restaurant-list article {
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 10px 18px;
    padding: 25px 0;
    border-bottom: 1px solid var(--line)
}

.restaurant-list article>span {
    grid-row: 1/3;
    color: var(--teal);
    font-size: .72rem
}

.restaurant-list p {
    color: var(--muted);
    margin: 0
}

.hotel-info {
    background: var(--pearl)
}

.info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px
}

.info-list {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 32px;
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-soft)
}

.info-list div {
    padding: 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.info-list dt {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--teal);
    font-weight: 700
}

.info-list dd {
    margin: 6px 0 0
}

.info-list a {
    font-weight: 700
}

.map-wrap {
    min-height: 620px;
    border-radius: 32px;
    overflow: hidden
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.simple-modal {
    position: relative;
    width: min(540px, calc(100% - 32px));
    padding: 45px;
    border-radius: 34px;
    background: var(--white);
    box-shadow: var(--shadow)
}


.compact-hero {
    min-height: 600px
}

.bg-contact-hero {
    background-image: url('assets/images/contact-hero.jpg')
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.contact-cards article {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-soft)
}

.contact-cards i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    background: var(--pale);
    color: var(--teal);
    margin-bottom: 30px
}

.contact-cards h2 {
    font-size: 1.4rem
}

.contact-cards p {
    color: var(--muted)
}

.contact-form-section {
    background: var(--white)
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 25px;
    align-items: start
}

.contact-form {
    padding: 45px;
    border: 1px solid var(--line);
    border-radius: 38px;
    background: var(--pearl)
}

.contact-form h2 {
    margin-bottom: 35px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.form-grid label {
    font-size: .8rem;
    font-weight: 700
}

.form-grid input,
.form-grid select,
.form-grid textarea {
    width: 100%;
    margin-top: 6px;
    padding: 13px 14px;
    border: 1px solid #ccd5d7;
    border-radius: 14px;
    background: var(--white);
    outline: none
}

.form-grid input,
.form-grid select {
    height: 52px
}

.form-grid textarea {
    resize: vertical
}

.full-width {
    grid-column: 1/-1
}

.contact-form .button {
    margin-top: 20px
}

.contact-form .field-error {
    color: #bd4b3a
}

.contact-panel {
    position: sticky;
    top: 100px;
    padding: 42px;
    border-radius: 38px;
    background: var(--ocean);
    color: var(--white)
}

.contact-panel h2 {
    margin-bottom: 30px
}

.contact-panel>div:not(.socials) {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .11)
}

.contact-panel>div>i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .09);
    color: var(--aqua)
}

.contact-panel span {
    display: flex;
    flex-direction: column;
    color: rgba(255, 255, 255, .68)
}

.contact-panel b {
    color: var(--white)
}

.socials {
    display: flex;
    gap: 9px;
    margin: 25px 0
}

.socials a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%
}

.faq-section {
    background: var(--pale)
}

.faq-list {
    max-width: 900px;
    margin: auto
}

.faq-item {
    border-bottom: 1px solid rgba(24, 37, 45, .14)
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    border: 0;
    background: transparent;
    font-weight: 700;
    text-align: left;
    font-size: 1.08rem
}

.faq-item button i {
    transition: .3s
}

.faq-item.open button i {
    transform: rotate(45deg)
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: .35s
}

.faq-answer p {
    overflow: hidden;
    color: var(--muted);
    margin: 0
}

.faq-item.open .faq-answer {
    grid-template-rows: 1fr
}

.faq-item.open .faq-answer p {
    padding-bottom: 25px
}


.legal-hero {
    padding: 190px 0 90px;
    background: var(--pale)
}

.legal-hero h1 {
    font-size: clamp(2.6rem, 4.5vw, 4.6rem)
}

.legal-hero>div>p {
    max-width: 800px;
    font-size: 1.15rem;
    color: var(--muted)
}

.legal-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 30px
}

.legal-meta span {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--white);
    font-size: .75rem
}

.legal-section {
    background: var(--white)
}

.legal-layout {
    display: grid;
    grid-template-columns: 270px 1fr;
    gap: 65px;
    align-items: start
}

.legal-layout aside {
    position: sticky;
    top: 105px;
    padding: 25px;
    border-radius: 24px;
    background: var(--pearl)
}

.legal-layout aside h2 {
    font-size: 1.1rem;
    margin-bottom: 15px
}

.legal-layout aside a {
    display: block;
    padding: 7px 0;
    color: var(--muted);
    font-size: .84rem
}

.legal-layout aside a:hover {
    color: var(--teal)
}

.legal-content {
    max-width: 850px
}

.legal-content>section {
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid var(--line)
}

.legal-content h2 {
    font-size: 2rem;
    margin-bottom: 15px
}

.legal-content p,
.legal-content li {
    color: var(--muted)
}

.info-callout {
    display: flex;
    gap: 20px;
    padding: 30px;
    border-radius: 28px;
    background: var(--pale)
}

.info-callout>i {
    font-size: 1.5rem;
    color: var(--teal)
}

.info-callout h2 {
    font-size: 1.5rem
}

.responsible-hero {
    padding: 200px 0 100px;
    background: var(--ocean);
    color: var(--white)
}

.responsible-hero .adult-symbol {
    margin-bottom: 30px
}

.responsible-hero p {
    max-width: 730px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .68)
}

.responsible-guide {
    background: var(--pale)
}

.responsible-callouts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 60px
}

.responsible-callouts div {
    padding: 30px;
    border-radius: 28px;
    background: var(--white);
    border-left: 5px solid var(--aqua);
    font-size: 1.25rem;
    font-weight: 700
}

.responsible-topic-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.responsible-topic-list article {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 15px;
    padding: 30px;
    border-radius: 28px;
    background: var(--white)
}

.responsible-topic-list article>span {
    color: var(--teal);
    font-weight: 700
}

.responsible-topic-list h2 {
    font-size: 1.45rem
}

.responsible-topic-list p {
    color: var(--muted)
}

.support-panel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
    margin-top: 50px;
    padding: 38px;
    border-radius: 32px;
    background: var(--ocean);
    color: var(--white)
}

.support-panel>i {
    font-size: 2rem;
    color: var(--aqua)
}

.support-panel h2 {
    font-size: 1.8rem
}

.support-panel p {
    color: rgba(255, 255, 255, .68);
    margin: 0
}


.site-footer {
    padding: 90px 0 28px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    background: var(--ocean);
    color: var(--white)
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding-bottom: 55px;
    border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.brand-footer img {
    width: 58px;
    height: 58px
}

.brand-footer .brand-copy strong {
    font-size: 1.2rem
}

.footer-brand>p {
    max-width: 560px;
    color: rgba(255, 255, 255, .62);
    margin-top: 22px
}

.footer-newsletter label {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px
}

.inline-form {
    display: flex;
    gap: 8px
}

.inline-form input {
    flex: 1;
    min-width: 0;
    height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    outline: none
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1.2fr .9fr 1.5fr;
    gap: 35px;
    padding: 55px 0
}

.footer-grid h3 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--aqua);
    margin-bottom: 16px
}

.footer-grid a,
.footer-grid p,
.footer-link {
    display: block;
    margin: 8px 0;
    color: rgba(255, 255, 255, .64);
    font-size: .84rem
}

.footer-grid a:hover,
.footer-link:hover {
    color: var(--white)
}

.footer-link {
    padding: 0;
    border: 0;
    background: transparent
}

.adult-block {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 28px;
    background: rgba(255, 255, 255, .05)
}

.adult-block>span {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    border: 2px solid var(--aqua);
    border-radius: 50%;
    color: var(--aqua);
    font-size: 1.4rem;
    font-weight: 800;
    flex: none
}

.adult-block h3 {
    font-size: 1.15rem
}

.adult-block p {
    margin: 5px 0 0;
    color: rgba(255, 255, 255, .6)
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 28px;
    color: rgba(255, 255, 255, .45);
    font-size: .76rem
}

.scroll-top {
    position: fixed;
    z-index: 800;
    right: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--coral);
    color: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: none
}

.toast {
    position: fixed;
    z-index: 1600;
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 20px);
    padding: 14px 20px;
    border-radius: 999px;
    background: var(--ocean);
    color: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    text-align: center
}

.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}

.cookie-banner {
    position: fixed;
    z-index: 1400;
    left: 24px;
    right: 24px;
    bottom: 20px;
    max-width: 1120px;
    margin: auto;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center
}

.cookie-banner[hidden] {
    display: none
}

.cookie-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--pale);
    color: var(--teal);
    font-size: 1.2rem
}

.cookie-banner p {
    margin: 0;
    font-size: .84rem
}

.cookie-banner a {
    font-size: .78rem;
    color: var(--teal);
    font-weight: 700
}

.cookie-actions {
    display: flex;
    gap: 6px
}

.cookie-actions .button {
    min-height: 44px;
    padding: 10px 15px;
    font-size: .76rem
}

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1500;
    padding: 25px;
    background: rgba(3, 17, 25, .72);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.modal-overlay.open {
    opacity: 1;
    visibility: visible
}

.cookie-modal {
    position: relative;
    width: min(720px, 100%);
    max-height: calc(100vh - 50px);
    overflow: auto;
    padding: 45px;
    border-radius: 38px;
    background: var(--white);
    box-shadow: var(--shadow)
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white)
}

.cookie-modal>p {
    color: var(--muted)
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

.cookie-option h3 {
    font-size: 1.1rem
}

.cookie-option p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: .82rem
}

.always-active {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--pale);
    color: var(--teal);
    font-size: .72rem;
    font-weight: 700;
    white-space: nowrap
}

.switch {
    position: relative;
    flex: none
}

.switch input {
    position: absolute;
    opacity: 0
}

.switch span {
    display: block;
    width: 50px;
    height: 29px;
    border-radius: 99px;
    background: #c9d0d2;
    transition: .25s
}

.switch span:before {
    content: "";
    position: absolute;
    left: 4px;
    top: 4px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
    transition: .25s
}

.switch input:checked+span {
    background: var(--teal)
}

.switch input:checked+span:before {
    transform: translateX(21px)
}

.switch b {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.modal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px
}


.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .75s ease, transform .75s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

:focus-visible {
    outline: 3px solid var(--coral);
    outline-offset: 3px
}

input.invalid,
select.invalid,
textarea.invalid {
    border-color: #d25d49 !important;
    background: #fff8f6 !important
}

.parallax-image {
    will-change: transform
}


@media(max-width:1180px) {
    :root {
        --container: min(100% - 36px, 1100px)
    }

    .desktop-nav {
        display: none
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        color: inherit
    }

    .header-cta {
        display: none
    }

    .hero-content {
        padding-right: 39%
    }

    .booking-card {
        width: 360px;
        right: 35px
    }

    .hero-tabs {
        grid-template-columns: repeat(3, 1fr);
        overflow-x: auto
    }

    .hero-preview-link {
        display: none
    }

    .package-grid {
        grid-template-columns: 1fr 1fr
    }

    .responsible-inner {
        grid-template-columns: auto 1fr
    }

    .responsible-inner ul {
        grid-column: 2
    }

    .responsible-inner .button {
        grid-column: 2;
        justify-self: start
    }

    .contact-cards {
        grid-template-columns: 1fr 1fr
    }

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

    .hotel-hero-content {
        padding-right: 31%
    }

    .mini-booking {
        right: 35px
    }
}

@media(max-width:900px) {
    :root {
        --container: calc(100% - 30px)
    }

    .section {
        padding: 90px 0
    }

    .section-heading.split {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .home-hero {
        min-height: 900px;
        padding: 150px 0 330px;
        align-items: flex-start
    }

    .hero-content {
        padding-right: 0
    }

    .hero-content h1 {
        font-size: clamp(2.7rem, 7vw, 4.4rem)
    }

    .booking-card {
        left: 30px;
        right: 30px;
        top: auto;
        bottom: 118px;
        width: auto;
        transform: none
    }

    .hero-tabs {
        bottom: 18px
    }

    .intro-grid,
    .dining-grid,
    .approach-grid,
    .journey-grid,
    .hotel-feature-grid,
    .hotel-feature-grid.reverse,
    .casino-grid,
    .dining-hotel-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .intro-visual {
        min-height: 540px
    }

    .intro-visual>img {
        height: 540px
    }

    .featured-layout {
        grid-template-columns: 1fr;
        min-height: 0
    }

    .stay-card-large {
        min-height: 620px
    }

    .stay-card-stack {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .filter-result {
        grid-template-columns: 1fr
    }

    .filter-result>div {
        padding: 40px
    }

    .filter-result img {
        height: 380px
    }

    .destination-panels {
        height: 650px
    }

    .dining-visual img {
        height: 600px
    }

    .wellness-grid,
    .definition-grid,
    .values-grid,
    .about-review-grid,
    .room-grid,
    .lifestyle-card-grid,
    .responsible-topic-list {
        grid-template-columns: 1fr 1fr
    }

    .responsible-inner {
        grid-template-columns: auto 1fr
    }

    .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr
    }

    .journey-visual {
        position: relative;
        top: 0
    }

    .journey-visual img {
        height: 480px
    }

    .stay-orbit {
        transform: scale(.82);
        margin-block: -60px
    }

    .hotel-hero {
        min-height: 960px;
        padding: 160px 0 380px;
        align-items: flex-start
    }

    .hotel-hero-content {
        padding-right: 0
    }

    .mini-booking {
        left: 30px;
        right: 30px;
        bottom: 60px;
        width: auto
    }

    .hotel-feature-grid.reverse .hotel-feature-copy {
        order: 0
    }

    .hotel-feature-image img,
    .hotel-feature-grid.reverse img,
    .hotel-dining-image img {
        height: 520px;
        border-radius: 40px
    }

    .info-layout {
        grid-template-columns: 1fr
    }

    .map-wrap {
        min-height: 460px
    }

    .contact-panel {
        position: relative;
        top: 0
    }

    .legal-layout {
        grid-template-columns: 1fr
    }

    .legal-layout aside {
        position: relative;
        top: 0;
        display: none
    }

    .support-panel {
        grid-template-columns: auto 1fr
    }

    .support-panel .button {
        grid-column: 2;
        justify-self: start
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px
    }

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

@media(max-width:680px) {
    :root {
        --container: calc(100% - 24px)
    }

    .section {
        padding: 72px 0
    }

    h1 {
        font-size: clamp(2.35rem, 10vw, 3.5rem)
    }

    h2 {
        font-size: clamp(1.75rem, 8vw, 2.75rem)
    }

    .site-header {
        top: 10px;
        padding: 0 10px
    }

    .header-shell {
        height: 64px;
        padding: 8px 10px 8px 12px;
        border-radius: 22px
    }

    .brand img {
        width: 38px;
        height: 38px
    }

    .brand-copy strong {
        font-size: .82rem
    }

    .brand-copy small {
        font-size: .65rem
    }

    .region-badge {
        display: none
    }

    .menu-toggle {
        width: 43px;
        height: 43px
    }

    .home-hero,
    .hotel-hero,
    .page-hero {
        margin: 0 6px;
        border-radius: 0 0 34px 34px
    }

    .home-hero {
        min-height: 930px;
        padding: 135px 0 400px
    }

    .hero-content p {
        font-size: 1rem
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr
    }

    .booking-card {
        left: 12px;
        right: 12px;
        bottom: 132px;
        padding: 18px;
        border-radius: 24px
    }

    .booking-grid {
        grid-template-columns: 1fr 1fr
    }

    .booking-card input,
    .booking-card select {
        height: 45px
    }

    .hero-tabs {
        width: calc(100% - 24px);
        bottom: 12px;
        display: flex;
        padding: 6px;
        border-radius: 21px
    }

    .hero-tab {
        min-width: 155px;
        padding: 11px
    }

    .hero-tab small {
        font-size: .65rem
    }

    .intro-grid {
        gap: 35px
    }

    .intro-visual {
        min-height: 440px
    }

    .intro-visual>img {
        height: 440px;
        border-radius: 30px 90px 30px 30px
    }

    .floating-stat {
        padding: 10px 12px;
        border-radius: 16px;
        font-size: .68rem
    }

    .stat-one {
        left: -5px;
        top: 25px
    }

    .stat-two {
        right: -4px;
        top: 130px
    }

    .stat-three {
        left: 10px;
        bottom: 25px
    }

    .stat-four {
        right: -4px;
        bottom: 85px
    }

    .featured-layout {
        gap: 12px
    }

    .stay-card,
    .stay-card-large {
        min-height: 510px;
        border-radius: 28px
    }

    .stay-card-stack {
        grid-template-columns: 1fr
    }

    .stay-card-content,
    .stay-card-stack .stay-card-content {
        padding: 22px
    }

    .stay-card h3,
    .stay-card-stack .stay-card h3 {
        font-size: 1.85rem
    }

    .stay-card ul {
        display: block
    }

    .stay-bottom {
        align-items: flex-end;
        gap: 10px
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px
    }

    .filter-button {
        white-space: nowrap
    }

    .filter-result {
        border-radius: 28px
    }

    .filter-result>div {
        padding: 28px
    }

    .filter-result img {
        height: 270px
    }

    .packages-section,
    .values-section,
    .casino-section,
    .responsible-section {
        margin: 0 6px;
        border-radius: 34px
    }

    .package-grid {
        grid-template-columns: 1fr
    }

    .destination-panels {
        display: grid;
        height: auto;
        gap: 10px
    }

    .destination-panel,
    .destination-panel:hover,
    .destination-panel.active {
        height: 390px;
        flex: none;
        border-radius: 28px
    }

    .destination-panel p {
        max-height: 150px;
        opacity: 1
    }

    .dining-visual img {
        height: 450px;
        border-radius: 30px 30px 90px 30px
    }

    .floating-icon {
        right: 10px;
        bottom: 20px
    }

    .feature-list {
        grid-template-columns: 1fr
    }

    .wellness-grid,
    .definition-grid,
    .values-grid,
    .about-review-grid,
    .room-grid,
    .lifestyle-card-grid,
    .responsible-topic-list {
        grid-template-columns: 1fr
    }

    .responsible-inner {
        grid-template-columns: 1fr;
        text-align: left
    }

    .responsible-inner ul,
    .responsible-inner .button {
        grid-column: auto
    }

    .adult-symbol {
        width: 72px;
        height: 72px
    }

    .review-track {
        min-height: 590px
    }

    .review-slide {
        padding: 30px;
        border-radius: 28px
    }

    .newsletter-section {
        padding-inline: 6px
    }

    .newsletter-inner {
        padding: 35px 22px;
        border-radius: 34px
    }

    .newsletter-main {
        grid-template-columns: 1fr
    }

    .newsletter-main label {
        grid-column: 1/-1
    }

    .page-hero {
        min-height: 650px;
        padding: 145px 0 55px
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr
    }

    .hero-stats div {
        padding: 13px
    }

    .rounded-image {
        height: 480px;
        border-radius: 30px 90px 30px 30px
    }

    .journey-step {
        grid-template-columns: 75px 1fr;
        padding-left: 24px
    }

    .stay-orbit {
        width: 630px;
        max-width: none;
        left: 50%;
        transform: translateX(-50%) scale(.56);
        margin-block: -160px
    }

    .final-cta .container,
    .hotel-cta .container {
        flex-direction: column;
        align-items: flex-start
    }

    .final-cta .container>div:last-child,
    .hotel-cta .container>div:last-child {
        width: 100%;
        flex-direction: column
    }

    .hotel-hero {
        min-height: 980px;
        padding: 145px 0 405px
    }

    .hotel-hero-content h1 {
        font-size: clamp(2.5rem, 9vw, 3.7rem)
    }

    .hotel-facts {
        gap: 6px
    }

    .mini-booking {
        left: 12px;
        right: 12px;
        bottom: 45px
    }

    .hotel-feature-image img,
    .hotel-feature-grid.reverse img,
    .hotel-dining-image img,
    .casino-image img {
        height: 420px;
        border-radius: 30px
    }

    .info-list {
        grid-template-columns: 1fr
    }

    .map-wrap {
        min-height: 400px
    }

    .contact-cards {
        grid-template-columns: 1fr
    }

    .contact-form {
        padding: 26px;
        border-radius: 28px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .form-grid label {
        grid-column: 1
    }

    .contact-panel {
        padding: 28px;
        border-radius: 28px
    }

    .responsible-callouts {
        grid-template-columns: 1fr
    }

    .support-panel {
        grid-template-columns: 1fr
    }

    .support-panel .button {
        grid-column: auto;
        justify-self: stretch
    }

    .legal-hero {
        padding: 145px 0 65px
    }

    .legal-section {
        padding-top: 70px
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        grid-template-columns: auto 1fr;
        padding: 14px;
        border-radius: 22px
    }

    .cookie-actions {
        grid-column: 1/-1;
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .cookie-actions .button:last-child {
        grid-column: 1/-1
    }

    .cookie-modal {
        padding: 32px 20px;
        border-radius: 28px
    }

    .cookie-option {
        align-items: flex-start
    }

    .modal-actions {
        display: grid
    }

    .footer-top {
        gap: 25px
    }

    .inline-form {
        flex-direction: column
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .adult-block {
        align-items: flex-start
    }

    .footer-bottom {
        flex-direction: column
    }

    .site-footer {
        border-radius: 34px 34px 0 0
    }

    .scroll-top {
        right: 14px;
        bottom: 14px
    }
}

@media(max-width:420px) {
    .booking-grid {
        grid-template-columns: 1fr 1fr
    }

    .booking-card-title {
        margin-bottom: 10px
    }

    .booking-card {
        bottom: 125px
    }

    .hero-tab {
        min-width: 145px
    }

    .home-hero {
        min-height: 960px
    }

    .hotel-hero {
        min-height: 1030px
    }

    .mini-booking {
        bottom: 38px
    }

    .hero-stats span {
        font-size: .68rem
    }

    .cookie-banner p {
        font-size: .76rem
    }
}

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

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .parallax-image {
        transform: none !important
    }
}


.legal-content p {
    margin: 0 0 16px;
    line-height: 1.82
}

.legal-content .legal-list {
    margin: 20px 0 0;
    padding: 22px 26px 22px 46px;
    border-radius: 22px;
    background: var(--pearl)
}

.legal-content .legal-list li {
    margin: 8px 0;
    line-height: 1.65
}

.legal-content .legal-list li::marker {
    color: var(--teal)
}

.legal-content>section {
    scroll-margin-top: 130px
}

.responsible-intro {
    max-width: 920px;
    margin: 0 auto 50px;
    padding: 36px 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .9)
}

.responsible-intro h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    margin-bottom: 16px
}

.responsible-intro p {
    color: var(--muted);
    line-height: 1.75
}

.responsible-topic-list {
    grid-template-columns: 1fr
}

.responsible-topic-list article {
    grid-template-columns: 70px 1fr;
    padding: 38px 42px
}

.responsible-topic-list article>span {
    font-size: 1rem;
    padding-top: 4px
}

.responsible-topic-list h2 {
    font-size: 1.7rem;
    margin-bottom: 14px
}

.responsible-topic-list p {
    line-height: 1.78;
    margin: 0 0 14px
}

.responsible-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px 24px;
    margin: 20px 0 0;
    padding: 22px 24px 22px 44px;
    border-radius: 20px;
    background: var(--pale)
}

.responsible-checklist li {
    color: var(--charcoal);
    line-height: 1.55
}

.responsible-checklist li::marker {
    color: var(--teal)
}

@media(max-width:680px) {
    .legal-content p {
        line-height: 1.72
    }

    .legal-content .legal-list {
        padding: 18px 18px 18px 36px
    }

    .responsible-intro {
        padding: 26px 24px;
        margin-bottom: 34px
    }

    .responsible-topic-list article {
        grid-template-columns: 42px 1fr;
        padding: 26px 22px
    }

    .responsible-topic-list h2 {
        font-size: 1.4rem
    }

    .responsible-checklist {
        grid-template-columns: 1fr;
        padding: 18px 18px 18px 36px
    }
}