:root {
    --ink: #0a1118;
    --navy: #0e1b28;
    --navy-2: #142638;
    --gold: #caa45a;
    --gold-light: #ead39f;
    --sand: #f3ecdf;
    --paper: #fbf8f2;
    --ocean: #4a878c;
    --white: #fff;
    --muted: #aeb7c1;
    --text: #27313a;
    --border: rgba(202, 164, 90, .32);
    --shadow: 0 24px 70px rgba(8, 16, 24, .15);
    --radius: 22px;
    --container: min(1180px, calc(100% - 40px));
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: var(--paper);
    line-height: 1.7;
    overflow-x: hidden
}

body.modal-open {
    overflow: hidden
}

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

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

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

button {
    cursor: pointer
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", Georgia, serif;
    line-height: 1.08;
    margin: 0 0 20px;
    color: var(--ink)
}

h1 {
    font-size: clamp(3.4rem, 6vw, 5.7rem);
    font-weight: 600;
    letter-spacing: -.035em
}

h2 {
    font-size: clamp(2.4rem, 3vw, 3rem);
    font-weight: 600;
    letter-spacing: -.02em
}

h3 {
    font-size: 1.65rem
}

p {
    margin: 0 0 18px
}

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

.section {
    padding: 110px 0
}

.section-soft {
    background: var(--sand)
}

.section-dark {
    background: var(--ink);
    color: #dce3e8
}

.section-dark h2,
.section-dark h3 {
    color: #fff
}

.section-heading {
    max-width: 760px;
    margin-bottom: 52px
}

.section-heading>p {
    font-size: 1.08rem
}

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

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

.skip-link {
    position: fixed;
    top: -60px;
    left: 20px;
    z-index: 2000;
    background: #fff;
    color: #000;
    padding: 12px 16px;
    border-radius: 8px
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    transition: .35s ease;
    border-bottom: 1px solid transparent
}

.site-header.scrolled {
    background: rgba(10, 17, 24, .95);
    backdrop-filter: blur(16px);
    border-color: rgba(255, 255, 255, .08);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .18)
}

.header-inner {
    height: 92px;
    display: flex;
    align-items: center;
    gap: 28px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff
}

.brand-mark {
    width: 44px;
    height: 44px;
    object-fit: contain
}

.brand-text {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1
}

.brand-text span {
    display: block;
    color: var(--gold);
    font-size: .95rem;
    letter-spacing: .08em
}

.primary-nav {
    margin-left: auto
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none
}

.primary-nav a,
.dropdown-toggle {
    color: #fff;
    background: none;
    border: 0;
    padding: 12px 0;
    font-size: .92rem;
    font-weight: 600;
    position: relative
}

.primary-nav a:after,
.dropdown-toggle:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 6px;
    height: 1px;
    background: var(--gold);
    transition: .25s
}

.primary-nav a:hover:after,
.primary-nav a.active:after,
.dropdown-toggle:hover:after {
    right: 0
}

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

.nav-dropdown {
    position: relative
}

.dropdown-menu {
    position: absolute !important;
    top: calc(100% + 18px);
    left: -24px;
    min-width: 290px;
    display: block !important;
    padding: 12px !important;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s
}

.dropdown-menu:before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 24px
}

.dropdown-menu li a {
    display: block;
    color: var(--ink);
    padding: 12px 14px;
    border-radius: 10px
}

.dropdown-menu li a:hover {
    background: var(--sand);
    color: var(--ink)
}

.dropdown-menu a:after {
    display: none
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none
}

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

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 4px auto;
    transition: .25s
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 52px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 700;
    letter-spacing: .02em;
    transition: .25s
}

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

.btn-gold {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 12px 30px rgba(202, 164, 90, .2)
}

.btn-gold:hover {
    background: var(--gold-light)
}

.btn-outline {
    border-color: rgba(255, 255, 255, .55);
    color: #fff;
    background: rgba(255, 255, 255, .04)
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .11)
}

.btn-dark {
    background: var(--ink);
    color: #fff
}

.btn-outline-dark {
    border-color: var(--ink);
    color: var(--ink)
}

.btn-text {
    background: transparent;
    color: inherit;
    border-color: transparent
}

.btn-sm {
    min-height: 46px;
    padding: 10px 20px
}

.hero,
.inner-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    color: #fff
}

.hero {
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    padding: 180px 0 90px
}

.hotel-hero {
    min-height: 86svh
}

.inner-hero {
    min-height: 570px;
    display: flex;
    align-items: flex-end;
    padding: 170px 0 82px
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 12, 19, .88) 0%, rgba(5, 12, 19, .58) 48%, rgba(5, 12, 19, .28) 100%), linear-gradient(0deg, rgba(5, 12, 19, .72), transparent 55%)
}

.hero-content,
.inner-hero-content {
    position: relative;
    z-index: 1;
    max-width: 890px
}

.hero h1,
.inner-hero h1 {
    color: #fff
}

.hero p,
.inner-hero p {
    max-width: 740px;
    color: #e2e6e9;
    font-size: 1.08rem
}

.hero-actions,
.cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px
}

.hero-facts {
    display: flex;
    gap: 42px;
    flex-wrap: wrap;
    margin-top: 52px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .24)
}

.hero-facts div {
    display: flex;
    align-items: center;
    gap: 12px
}

.hero-facts strong {
    font-size: 1.25rem;
    color: var(--gold-light)
}

.hero-facts i {
    color: var(--gold);
    font-size: 1.15rem
}

.hero-facts span {
    font-size: .82rem;
    color: #d9e0e4
}

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

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

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

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

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

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

.breadcrumb {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    font-size: .84rem;
    color: #d4dbe0
}

.breadcrumb a:hover {
    color: var(--gold-light)
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: center
}

.split-reverse .content-block {
    order: 1
}

.split-reverse .image-frame {
    order: 2
}

.image-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    min-height: 540px
}

.image-frame img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    object-fit: cover;
    transition: transform .7s
}

.image-frame:hover img {
    transform: scale(1.035)
}

.image-frame:after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 14px;
    pointer-events: none
}

.image-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    background: var(--ink);
    color: #fff;
    padding: 17px 22px;
    border-left: 3px solid var(--gold)
}

.image-badge span,
.image-badge strong {
    display: block
}

.content-block>p {
    font-size: 1.02rem
}

.icon-list {
    list-style: none;
    margin: 28px 0 34px;
    padding: 0;
    display: grid;
    gap: 14px
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.icon-list i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(202, 164, 90, .16);
    color: #a47928;
    font-size: .75rem;
    flex: 0 0 auto
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 80px;
    border-top: 1px solid rgba(10, 17, 24, .15);
    border-bottom: 1px solid rgba(10, 17, 24, .15)
}

.stats-grid div {
    padding: 32px;
    border-right: 1px solid rgba(10, 17, 24, .15)
}

.stats-grid div:last-child {
    border-right: 0
}

.stats-grid strong,
.stats-grid span {
    display: block
}

.stats-grid strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.7rem;
    color: var(--gold)
}

.stats-grid span {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

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

.hotel-card {
    background: var(--navy-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s
}

.hotel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .28)
}

.card-image-link {
    position: relative;
    display: block;
    height: 310px;
    overflow: hidden
}

.card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

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

.card-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    background: rgba(10, 17, 24, .85);
    color: var(--gold-light);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: .7rem;
    letter-spacing: .1em;
    text-transform: uppercase
}

.hotel-card-body {
    padding: 30px
}

.location {
    color: var(--gold-light);
    font-size: .78rem
}

.hotel-card h3 {
    margin-top: 12px
}

.hotel-card p {
    color: #c7d0d7
}

.amenity-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 24px 0
}

.amenity-list li {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    color: #d5dce1;
    font-size: .72rem
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold);
    font-weight: 700;
    font-size: .86rem
}

.text-link i {
    transition: .25s
}

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

.text-link.light {
    color: var(--gold-light)
}

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

.package-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(10, 17, 24, .09);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: 0 16px 45px rgba(10, 17, 24, .06)
}

.package-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    transition: .3s
}

.package-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sand);
    color: #9b742a;
    font-size: 1.25rem;
    margin-bottom: 22px
}

.package-card p {
    font-size: .92rem
}

.package-card ul {
    padding-left: 20px;
    margin: 12px 0 28px
}

.package-card .btn {
    margin-top: auto
}

.experience-section {
    background: linear-gradient(135deg, #eef2ed, #e7eee9)
}

.destination-tabs {
    display: grid;
    gap: 10px;
    margin-top: 30px
}

.destination-tabs a {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(10, 17, 24, .15)
}

.destination-tabs strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem
}

.destination-tabs span {
    text-align: right;
    font-size: .82rem
}

.feature-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 34px 0
}

.feature-points div {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .2)
}

.feature-points i {
    color: var(--gold);
    font-size: 1.25rem
}

.feature-points h3 {
    font-size: 1.25rem;
    margin: 12px 0 8px
}

.feature-points p {
    font-size: .8rem;
    color: #bfc8ce
}

.newsletter-section {
    background: var(--ocean)
}

.newsletter-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--ink);
    color: #fff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: var(--shadow)
}

.newsletter-card h2 {
    color: #fff
}

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

.form-inline input {
    flex: 1
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    font-size: .8rem
}

.checkbox-label input {
    margin-top: 5px;
    accent-color: var(--gold)
}

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

.form-message {
    margin-top: 14px;
    font-weight: 600
}

.form-message.success {
    color: #91d7b7
}

.form-message.error {
    color: #ffb2a9
}

.timeline {
    position: relative;
    max-width: 920px
}

.timeline:before {
    content: "";
    position: absolute;
    left: 88px;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: rgba(10, 17, 24, .2)
}

.timeline-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 45px;
    margin-bottom: 45px
}

.timeline-item>span {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: #9c752c
}

.timeline-item>div {
    position: relative;
    padding-left: 20px
}

.timeline-item>div:before {
    content: "";
    position: absolute;
    left: -52px;
    top: 8px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 7px var(--sand)
}

.timeline-item h3 {
    margin-bottom: 8px
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 30px
}

.values-grid div {
    padding: 20px;
    border: 1px solid rgba(10, 17, 24, .12);
    border-radius: 14px
}

.values-grid h3 {
    font-size: 1.2rem;
    margin-bottom: 6px
}

.values-grid p {
    font-size: .82rem;
    margin: 0
}

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

.benefit-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .035)
}

.benefit-card i {
    color: var(--gold);
    font-size: 1.4rem
}

.benefit-card h3 {
    margin: 18px 0 10px
}

.benefit-card p {
    color: #bdc7ce
}

.review-card {
    background: #fff;
    border: 1px solid rgba(10, 17, 24, .09);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 15px 45px rgba(10, 17, 24, .07)
}

.review-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 24px
}

.avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: var(--gold-light);
    font-weight: 700
}

.review-head h3,
.review-head p {
    margin: 0
}

.review-head h3 {
    font-size: 1.15rem
}

.review-head p {
    font-size: .75rem
}

.stars {
    color: #d29c30;
    letter-spacing: 2px;
    font-size: .72rem
}

.cta-section {
    background: var(--navy)
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    color: #fff
}

.cta-card h2 {
    color: #fff;
    max-width: 760px
}

.cta-card p {
    color: #c8d0d6
}

.room-grid,
.experience-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 60px
}

.room-card,
.experience-card {
    padding: 30px;
    border: 1px solid rgba(10, 17, 24, .12);
    border-radius: var(--radius);
    background: #fff
}

.room-card>span {
    color: var(--gold);
    font-size: .72rem;
    letter-spacing: .16em
}

.room-card h3,
.experience-card h3 {
    margin: 10px 0
}

.responsible-note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin: 30px 0;
    padding: 22px;
    border: 1px solid var(--border);
    background: rgba(202, 164, 90, .08);
    border-radius: 16px
}

.responsible-note i {
    color: var(--gold);
    font-size: 1.35rem
}

.responsible-note strong {
    color: #fff
}

.responsible-note p {
    font-size: .85rem;
    margin: 4px 0 0
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(10, 17, 24, .12);
    border: 1px solid rgba(10, 17, 24, .12);
    border-radius: var(--radius);
    overflow: hidden
}

.info-grid div {
    display: flex;
    flex-direction: column;
    background: var(--paper);
    padding: 25px
}

.info-grid span {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #7c6740;
    margin-bottom: 6px
}

.info-grid strong,
.info-grid a {
    font-size: .88rem
}

.map-wrap {
    height: 460px;
    margin-top: 35px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow)
}

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

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

.contact-card {
    padding: 30px;
    border: 1px solid rgba(10, 17, 24, .12);
    border-radius: var(--radius);
    background: #fff
}

.contact-card>i {
    font-size: 1.35rem;
    color: #a77b2e
}

.contact-card h2 {
    font-size: 1.5rem;
    margin: 18px 0 10px
}

.contact-card p {
    font-size: .87rem
}

.contact-card a {
    font-weight: 700;
    color: #8c6420
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px
}

.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 35px 0 0;
    display: grid;
    gap: 20px
}

.contact-details li {
    display: flex;
    gap: 16px
}

.contact-details li>i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: #9c752c
}

.contact-details span {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.contact-details p {
    margin: 0
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

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

.form-group {
    display: flex;
    flex-direction: column
}

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

.form-group label:not(.checkbox-label) {
    font-weight: 700;
    font-size: .8rem;
    margin-bottom: 8px
}

.form-group input,
.form-group select,
.form-group textarea,
.form-inline input {
    width: 100%;
    border: 1px solid rgba(10, 17, 24, .18);
    background: #fff;
    border-radius: 12px;
    padding: 14px 15px;
    color: var(--ink);
    outline: none;
    transition: .2s
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-inline input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(202, 164, 90, .15)
}

.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
    border-color: #b84a3d
}

.field-error {
    min-height: 18px;
    font-size: .72rem;
    color: #b84a3d;
    margin-top: 4px
}

.faq-list {
    max-width: 900px
}

.faq-item {
    border-bottom: 1px solid rgba(10, 17, 24, .15)
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0;
    background: none;
    border: 0;
    text-align: left;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--ink)
}

.faq-item button i {
    font-size: .9rem;
    color: #a47727;
    transition: .25s
}

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

.faq-answer>p {
    overflow: hidden;
    margin: 0
}

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

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

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

.policy-hero {
    padding: 180px 0 75px;
    background: var(--navy);
    color: #fff
}

.policy-hero h1 {
    color: #fff;
    font-size: clamp(3rem, 6vw, 5.5rem)
}

.policy-hero p {
    max-width: 760px;
    color: #cbd4da
}

.policy-date {
    font-size: .78rem;
    color: var(--gold-light)
}

.policy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    padding: 85px 0 110px
}

.policy-sidebar {
    position: sticky;
    top: 125px;
    height: max-content;
    padding: 25px;
    background: var(--sand);
    border-radius: 18px
}

.policy-sidebar h2 {
    font-size: 1.25rem
}

.policy-sidebar nav {
    display: grid;
    gap: 8px
}

.policy-sidebar a {
    font-size: .78rem;
    color: #5b6166
}

.policy-sidebar a:hover {
    color: #8f6724
}

.policy-section {
    padding-bottom: 34px;
    margin-bottom: 34px;
    border-bottom: 1px solid rgba(10, 17, 24, .12)
}

.policy-section h2 {
    font-size: 2rem
}

.responsible-hero {
    background: linear-gradient(135deg, #13232f, #203745)
}

.responsible-alerts {
    padding: 40px 0;
    background: #e8ddc6
}

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

.alert-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px;
    background: #fff;
    border-left: 3px solid var(--gold);
    border-radius: 12px
}

.alert-card i {
    color: #9b7228
}

.site-footer {
    background: #071019;
    color: #bfc8cf;
    padding-top: 85px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px
}

.footer-column h2 {
    font-family: Inter, sans-serif;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: #fff;
    margin-bottom: 22px
}

.footer-column>a,
.footer-link-button {
    display: block;
    color: #bfc8cf;
    margin: 10px 0;
    font-size: .82rem
}

.footer-column>a:hover,
.footer-link-button:hover {
    color: var(--gold-light)
}

.footer-link-button {
    background: none;
    border: 0;
    padding: 0;
    text-align: left
}

.footer-brand {
    margin-bottom: 22px
}

.footer-brand-column p {
    font-size: .86rem
}

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

.social-links a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    transition: .2s
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold)
}

.footer-contact p,
.footer-contact a {
    display: flex;
    gap: 9px;
    align-items: flex-start
}

.adult-notice {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-top: 65px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(202, 164, 90, .05)
}

.age-badge {
    width: 82px;
    height: 82px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-light)
}

.adult-notice h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 8px
}

.adult-notice p {
    margin: 0;
    font-size: .86rem
}

.footer-bottom {
    margin-top: 55px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px
}

.footer-bottom p {
    margin: 0;
    font-size: .72rem
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    z-index: 800;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .25s
}

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

.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 1500;
    display: none
}

.cookie-banner.show {
    display: block
}

.cookie-banner-content {
    max-width: 1180px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
    background: #fff;
    color: var(--ink);
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 22px 80px rgba(0, 0, 0, .28);
    border: 1px solid rgba(10, 17, 24, .1)
}

.cookie-banner h2 {
    font-size: 1.3rem;
    margin-bottom: 7px
}

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

.cookie-banner p a {
    text-decoration: underline
}

.cookie-actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto
}

.cookie-actions .btn {
    min-height: 44px;
    padding: 10px 16px
}

.cookie-actions .btn-outline {
    color: var(--ink);
    border-color: rgba(10, 17, 24, .28)
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 1800;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal.open {
    display: flex
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 8, 12, .72);
    backdrop-filter: blur(5px)
}

.modal-dialog {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: calc(100svh - 40px);
    overflow: auto;
    background: #fff;
    padding: 38px;
    border-radius: 22px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .4)
}

.modal-close {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: var(--sand)
}

.cookie-preference-list {
    display: grid;
    gap: 12px;
    margin: 28px 0
}

.cookie-preference-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px;
    border: 1px solid rgba(10, 17, 24, .12);
    border-radius: 14px
}

.cookie-preference-row h3 {
    font-family: Inter, sans-serif;
    font-size: .9rem;
    margin: 0 0 5px
}

.cookie-preference-row p {
    font-size: .76rem;
    margin: 0
}

.always-active {
    color: #688b73;
    font-size: .75rem;
    font-weight: 700
}

.switch {
    position: relative;
    width: 50px;
    height: 28px;
    flex: 0 0 auto
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0
}

.slider {
    position: absolute;
    inset: 0;
    background: #c8cdd0;
    border-radius: 999px;
    transition: .2s
}

.slider:before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: .2s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .25)
}

.switch input:checked+.slider {
    background: var(--ocean)
}

.switch input:checked+.slider:before {
    transform: translateX(22px)
}

.modal-actions {
    display: flex;
    gap: 9px;
    flex-wrap: wrap
}

.modal-actions .btn-outline {
    color: var(--ink);
    border-color: rgba(10, 17, 24, .25)
}

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

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

:focus-visible {
    outline: 3px solid var(--gold-light);
    outline-offset: 4px
}

@media(max-width:1100px) {
    .header-cta {
        display: none
    }

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

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

    .hotel-card:last-child {
        grid-column: 1/-1;
        max-width: 560px
    }

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

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

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

@media(max-width:900px) {
    :root {
        --container: min(100% - 32px, 760px)
    }

    .section {
        padding: 80px 0
    }

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

    .primary-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(420px, 88vw);
        background: var(--ink);
        padding: 110px 28px 35px;
        transform: translateX(100%);
        transition: .3s;
        overflow: auto
    }

    .primary-nav.open {
        transform: none
    }

    .primary-nav ul {
        display: block
    }

    .primary-nav li {
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .primary-nav a,
    .dropdown-toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 17px 0
    }

    .dropdown-menu {
        position: static !important;
        min-width: 0;
        background: transparent;
        box-shadow: none;
        padding: 0 0 12px 14px !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none !important
    }

    .nav-dropdown.open .dropdown-menu {
        display: block !important
    }

    .dropdown-menu li a {
        color: #d8e0e5;
        padding: 12px 0
    }

    .split-layout,
    .contact-layout,
    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .split-reverse .content-block,
    .split-reverse .image-frame {
        order: initial
    }

    .image-frame,
    .image-frame img {
        min-height: 480px
    }

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

    .stats-grid div:nth-child(2) {
        border-right: 0
    }

    .stats-grid div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(10, 17, 24, .15)
    }

    .benefit-grid,
    .review-grid,
    .room-grid,
    .experience-card-grid {
        grid-template-columns: 1fr 1fr
    }

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

    .cta-card {
        align-items: flex-start;
        flex-direction: column
    }

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

    .footer-brand-column {
        grid-column: 1/-1
    }

    .footer-bottom-inner {
        flex-direction: column
    }

    .cookie-banner-content {
        align-items: flex-start;
        flex-direction: column
    }

    .cookie-actions {
        flex-wrap: wrap
    }

    .policy-layout {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .policy-sidebar {
        position: static
    }

    .policy-sidebar nav {
        grid-template-columns: 1fr 1fr
    }

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

    .contact-layout {
        gap: 40px
    }
}

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

    .header-inner {
        height: 76px
    }

    .brand-mark {
        width: 38px;
        height: 38px
    }

    .brand-text {
        font-size: 1.15rem
    }

    .hero {
        padding: 135px 0 60px;
        min-height: 780px
    }

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

    .inner-hero {
        min-height: 500px;
        padding: 130px 0 60px
    }

    h1 {
        font-size: clamp(3rem, 14vw, 4.5rem)
    }

    h2 {
        font-size: clamp(2.25rem, 11vw, 3.3rem)
    }

    .hero-facts {
        gap: 18px
    }

    .hero-facts div {
        width: 100%
    }

    .hero-actions .btn {
        width: 100%
    }

    .hotel-grid,
    .package-grid,
    .benefit-grid,
    .review-grid,
    .room-grid,
    .experience-card-grid,
    .contact-cards,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hotel-card:last-child {
        grid-column: auto
    }

    .image-frame,
    .image-frame img {
        min-height: 400px
    }

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

    .stats-grid div {
        border-right: 0 !important;
        border-bottom: 1px solid rgba(10, 17, 24, .15)
    }

    .stats-grid div:last-child {
        border-bottom: 0
    }

    .destination-tabs a {
        flex-direction: column;
        gap: 4px
    }

    .destination-tabs span {
        text-align: left
    }

    .newsletter-card {
        padding: 34px 24px
    }

    .form-inline {
        flex-direction: column
    }

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

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

    .timeline:before {
        left: 13px
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 5px;
        padding-left: 38px
    }

    .timeline-item>div {
        padding-left: 0
    }

    .timeline-item>div:before {
        left: -32px
    }

    .timeline-item>span {
        font-size: 1.4rem
    }

    .review-head {
        grid-template-columns: auto 1fr
    }

    .stars {
        grid-column: 1/-1
    }

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

    .contact-form {
        padding: 26px 20px
    }

    .policy-sidebar nav {
        grid-template-columns: 1fr
    }

    .adult-notice {
        align-items: flex-start;
        flex-direction: column
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px
    }

    .cookie-banner-content {
        padding: 20px
    }

    .cookie-actions {
        width: 100%
    }

    .cookie-actions .btn {
        width: 100%
    }

    .modal {
        padding: 10px
    }

    .modal-dialog {
        padding: 32px 20px;
        max-height: calc(100svh - 20px)
    }

    .cookie-preference-row {
        align-items: flex-start
    }

    .modal-actions .btn {
        width: 100%
    }

    .footer-bottom p {
        font-size: .68rem
    }

    .site-footer {
        padding-top: 65px
    }
}

/* Expanded legal and responsible-information pages */
.policy-content {
    min-width: 0
}

.policy-content p {
    max-width: 900px
}

.policy-content a {
    text-decoration: underline;
    text-decoration-color: rgba(164, 121, 40, .45);
    text-underline-offset: 3px
}

.policy-content a:hover {
    color: #8f6724;
    text-decoration-color: currentColor
}

.policy-list {
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 11px
}

.policy-list li {
    position: relative;
    padding-left: 28px
}

.policy-list li:before {
    content: "";
    position: absolute;
    left: 2px;
    top: .72em;
    width: 9px;
    height: 9px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    transform: translateY(-50%)
}

.policy-note {
    margin: 24px 0;
    padding: 22px 24px;
    border-left: 4px solid var(--gold);
    border-radius: 0 14px 14px 0;
    background: var(--sand);
    box-shadow: 0 12px 34px rgba(10, 17, 24, .05)
}

.policy-note p:last-child,
.policy-note-strong p:last-child {
    margin-bottom: 0
}

.policy-note-strong {
    background: #13232f;
    color: #e7edf0;
    border-left-color: var(--gold-light)
}

.policy-note-strong strong,
.policy-note-strong a {
    color: var(--gold-light)
}

.policy-contact,
.support-panel {
    margin: 24px 0;
    padding: 24px 26px;
    border: 1px solid rgba(10, 17, 24, .12);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(10, 17, 24, .06)
}

.policy-contact p,
.support-panel p {
    margin-bottom: 10px
}

.policy-contact p:last-child,
.support-panel p:last-child {
    margin-bottom: 0
}

.support-panel h3 {
    font-size: 1.7rem;
    margin-bottom: 10px
}

.policy-sidebar {
    max-height: calc(100svh - 150px);
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent
}

.policy-sidebar nav a {
    padding: 2px 0
}

.policy-section {
    scroll-margin-top: 120px
}

.policy-section h2 {
    max-width: 850px
}

.policy-section h3 {
    margin-top: 26px
}

.responsible-hero+.responsible-alerts {
    border-bottom: 1px solid rgba(10, 17, 24, .08)
}

@media(max-width:900px) {
    .policy-sidebar {
        max-height: none;
        overflow: visible
    }

    .policy-note,
    .policy-contact,
    .support-panel {
        padding: 20px
    }

    .policy-section {
        scroll-margin-top: 95px
    }
}

@media(max-width:650px) {

    .policy-content p,
    .policy-list li {
        font-size: .94rem
    }

    .policy-section {
        padding-bottom: 30px;
        margin-bottom: 30px
    }

    .policy-section h2 {
        font-size: 2rem
    }

    .policy-note,
    .policy-contact,
    .support-panel {
        margin: 20px 0;
        padding: 18px
    }

    .support-panel h3 {
        font-size: 1.5rem
    }
}