:root {
    --navy: #09253b;
    --navy-glass: rgba(5, 24, 40, 0.72);
    --blue: #2c82d8;
    --blue-dark: #1f65b9;
    --teal: #0f3d3e;
    --gold: #c7954a;
    --ink: #142233;
    --muted: #667789;
    --line: #dbe5ee;
    --surface: #f5f8fb;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(21, 42, 65, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: "Prompt", "Sarabun", system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

html:lang(th) body {
    line-height: 1.68;
    text-rendering: optimizeLegibility;
}

html:lang(th) .nav-menu a,
html:lang(th) .btn,
html:lang(th) button,
html:lang(th) input,
html:lang(th) textarea,
html:lang(th) .hotel-card-body,
html:lang(th) .policy-card,
html:lang(th) .site-footer {
    font-family: "Prompt", "Sarabun", system-ui, sans-serif;
}

html:lang(th) .nav-menu a,
html:lang(th) .btn {
    font-weight: 500;
    line-height: 1.45;
}

html:lang(th) .hero-description,
html:lang(th) .card-highlight,
html:lang(th) .footer-brand p,
html:lang(th) address,
html:lang(th) .policy-card li {
    line-height: 1.72;
}

html:lang(th) .inner-hero h1,
html:lang(th) .detail-hero h1,
html:lang(th) .contact-hero-copy h1 {
    font-family: "Prompt", "Sarabun", system-ui, sans-serif;
    font-weight: 600;
    line-height: 1.16;
}

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

.global-preloader[hidden] {
    display: none;
}

.global-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(199,149,74,.18), transparent 25%),
        linear-gradient(135deg, rgba(3, 16, 30, .96), rgba(8, 38, 65, .92));
    opacity: 1;
    transition: opacity 220ms ease, visibility 220ms ease;
}

.global-preloader.is-leaving {
    visibility: hidden;
    opacity: 0;
}

.moon-loader {
    display: grid;
    justify-items: center;
    gap: 14px;
    color: #fff;
}

.moon-loader-orb {
    position: relative;
    display: block;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff6dc, var(--gold));
    box-shadow: 0 0 34px rgba(199,149,74,.52);
    animation: moonPulse 1.6s ease-in-out infinite;
}

.moon-loader-orb::after {
    position: absolute;
    top: -3px;
    right: -8px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #05223a;
    content: "";
}

.moon-loader-wave {
    position: relative;
    display: block;
    width: 74px;
    height: 12px;
    overflow: hidden;
}

.moon-loader-wave::before,
.moon-loader-wave::after {
    position: absolute;
    inset: 0;
    border-top: 2px solid rgba(255,255,255,.72);
    border-radius: 50%;
    content: "";
    transform: translateX(-18px);
    animation: waveSlide 1.8s ease-in-out infinite;
}

.moon-loader-wave::after {
    border-color: rgba(199,149,74,.82);
    animation-delay: .25s;
}

@keyframes moonPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .9;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

@keyframes waveSlide {
    0%, 100% {
        transform: translateX(-18px);
    }
    50% {
        transform: translateX(18px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .global-preloader,
    .moon-loader-orb,
    .moon-loader-wave::before,
    .moon-loader-wave::after {
        animation: none;
        transition: none;
    }
}

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

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

.site-hero {
    min-height: 520px;
    position: relative;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(5, 23, 42, 0.48) 42%, rgba(5, 23, 42, 0.1) 100%),
        linear-gradient(180deg, rgba(5, 23, 42, 0.18) 0%, rgba(5, 23, 42, 0.4) 100%);
    overflow: visible;
}

.hero-rotator {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--navy);
}

.hero-rotator::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(5, 23, 42, 0.48) 42%, rgba(5, 23, 42, 0.1) 100%),
        linear-gradient(180deg, rgba(5, 23, 42, 0.18) 0%, rgba(5, 23, 42, 0.4) 100%);
    content: "";
    pointer-events: none;
}

.hero-rotator-frame {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1200ms ease;
}

.hero-rotator-frame.is-active {
    opacity: 1;
}

.site-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.95));
    pointer-events: none;
}

.resort-nav {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 86px;
    padding: 18px clamp(20px, 4vw, 52px);
    background: linear-gradient(90deg, rgba(3, 16, 30, 0.82), rgba(8, 38, 65, 0.66));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.brand {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: min(220px, 28vw);
    color: var(--white);
}

.brand img {
    width: clamp(180px, 18vw, 220px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.28));
}

.nav-panel {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    width: 100%;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 12px 15px;
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    letter-spacing: 0;
    border-radius: 6px;
}

.nav-menu > li > a.active,
.nav-menu > li > a:hover,
.nav-menu > li:hover > a {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-menu > li > a.active::after {
    content: "";
    display: block;
    width: 28px;
    height: 2px;
    margin: 8px auto -8px;
    background: var(--gold);
}

.has-submenu > a::after {
    content: "⌄";
    margin-left: 6px;
    font-size: 12px;
}

.has-submenu ul {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 160px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: rgba(7, 29, 49, 0.94);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    box-shadow: 0 16px 35px rgba(0,0,0,0.22);
}

.has-submenu:hover ul,
.has-submenu:focus-within ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 3px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 8px;
    background: rgba(10, 46, 75, 0.54);
}

.language-options {
    display: inline-flex;
    align-items: center;
}

.language-switch a {
    display: grid;
    place-items: center;
    width: 44px;
    height: 34px;
    font-size: 20px;
    border-radius: 6px;
    filter: saturate(0.82);
}

.language-switch a.active {
    background: #3aa1dc;
    filter: saturate(1.15);
    box-shadow: 0 8px 18px rgba(58, 161, 220, 0.28);
}

.language-current,
.language-code {
    display: none;
}

.mobile-language-switch {
    display: none;
}

.mobile-menu-contact {
    display: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 8px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #ffffff;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: min(760px, calc(100% - 40px));
    padding: clamp(54px, 10vw, 116px) clamp(24px, 5vw, 64px) 84px;
}

.hero-copy h1 {
    margin: 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 74px);
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
    text-shadow: 0 10px 34px rgba(0,0,0,0.35);
}

.script {
    margin: 8px 0 20px;
    color: #66c7ff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 3.2vw, 35px);
    font-style: italic;
}

.hero-description {
    max-width: 430px;
    margin: 0 0 28px;
    font-size: 19px;
    color: rgba(255,255,255,0.98);
}

.hero-actions,
.section-row,
.map-head,
.footer-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 7px;
    font-weight: 700;
    letter-spacing: 0;
    border: 1px solid transparent;
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(180deg, #338be2, var(--blue-dark));
    box-shadow: 0 12px 26px rgba(44, 130, 216, 0.26);
}

.btn-ghost {
    color: #ffffff;
    border-color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.08);
}

.btn-outline {
    color: var(--blue-dark);
    border-color: var(--blue-dark);
    background: #ffffff;
}

.btn.full {
    width: 100%;
}

.btn-pdf {
    gap: 8px;
}

.btn-pdf span {
    font-size: 15px;
    line-height: 1;
}

.section-wrap {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.stay-styles {
    padding: 34px 0 28px;
}

.section-title {
    margin-bottom: 24px;
}

.section-title.centered {
    text-align: center;
}

.section-icon {
    display: inline-block;
    color: var(--blue);
    font-size: 31px;
    line-height: 1;
}

h2 {
    margin: 0;
    color: #19304a;
    font-size: clamp(25px, 3vw, 31px);
    letter-spacing: 0;
}

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

.style-card {
    position: relative;
    min-height: 272px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    isolation: isolate;
}

.style-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.72));
}

.style-card img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.style-card > div {
    position: absolute;
    z-index: 2;
    inset: auto 18px 18px;
    color: #ffffff;
}

.style-card h3,
.stay-card h3,
.selected-stay h3 {
    margin: 0 0 4px;
    font-size: 22px;
}

.style-card p {
    margin: 4px 0 0;
    font-size: 14px;
}

.style-card .subtitle {
    font-size: 17px;
    font-weight: 700;
}

.line-icon {
    display: block;
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    color: currentColor;
}

.line-icon::before {
    display: block;
    font-size: 42px;
    line-height: 1;
}

.waves::before { content: "≋"; }
.tree::before { content: "♧"; }
.users::before { content: "♙"; }
.grill::before { content: "♨"; }
.palm::before { content: "⌁"; }
.pool::before { content: "♒"; }
.wifi::before { content: "◠"; }
.car::before { content: "▱"; }
.food::before { content: "♬"; }

.map-section {
    padding: 46px 0 42px;
}

.map-head {
    justify-content: space-between;
    margin-bottom: 12px;
}

.map-head p {
    margin: 4px 0 0;
    color: var(--muted);
}

.map-legend {
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

.map-legend span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.map-legend i {
    width: 14px;
    height: 14px;
    border-radius: 50%;
}

.blue { background: #4a9be4; }
.green { background: #79a963; }
.gold { background: #e6b34a; }
.coral { background: #eb746e; }

.map-layout {
    display: grid;
    grid-template-columns: minmax(0, 2.25fr) minmax(270px, 0.9fr);
    gap: 20px;
    align-items: stretch;
}

.map-layout-full {
    grid-template-columns: 1fr;
}

.resort-map {
    position: relative;
    align-self: start;
    margin: 0;
    overflow: visible;
}

.resort-map__image-frame {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #e9f4ef;
    box-shadow: 0 8px 22px rgba(21,42,65,0.08);
}

.resort-map__image-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.resort-map__markers {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: visible;
    pointer-events: none;
}

.resort-map__marker {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translate(-50%, -100%);
    transform-origin: 50% 100%;
    pointer-events: auto;
    touch-action: manipulation;
    transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.resort-map__marker:focus-visible {
    outline: 3px solid rgba(199,149,74,.72);
    outline-offset: 4px;
    border-radius: 999px;
}

.resort-map__thumb {
    display: block;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    overflow: hidden;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,.24);
}

.resort-map__thumb img,
.resort-map__label-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resort-map__label {
    display: grid;
    gap: 3px;
    min-width: 44px;
    min-height: 31px;
    padding: 6px 11px;
    overflow: visible;
    border: 1px solid rgba(255,255,255,.74);
    border-radius: 999px;
    color: #ffffff;
    background: #1d6f74;
    box-shadow: 0 7px 15px rgba(20,57,65,.22), inset 0 1px 0 rgba(255,255,255,.22);
    line-height: 1.15;
    text-align: left;
    transform: translateX(var(--marker-label-shift, 0px));
    transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.resort-map__label strong,
.resort-map__label small {
    display: block;
    overflow: visible;
    white-space: nowrap;
}

.resort-map__label strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.resort-map__marker.room-count-1 .resort-map__label {
    background: linear-gradient(180deg, #20887d, #156467);
}

.resort-map__marker.room-count-2 .resort-map__label {
    background: linear-gradient(180deg, #d39443, #a76524);
}

.resort-map__marker.room-count-3 .resort-map__label {
    background: linear-gradient(180deg, #2f73a5, #1f527f);
}

.resort-map__marker.room-count-unknown .resort-map__label {
    background: linear-gradient(180deg, #68747b, #46535a);
}

.resort-map__marker:hover {
    z-index: 3;
    transform: translate(-50%, -100%) scale(1.08);
    filter: drop-shadow(0 8px 15px rgba(21,42,65,.24));
}

.resort-map__label small {
    display: none;
    color: #526778;
    font-size: 12px;
    font-weight: 700;
}

.resort-map__detail-link {
    display: none;
}

.resort-map__special {
    display: none;
}

.resort-map__label-thumb {
    display: none;
}

.resort-map__marker.is-muted {
    opacity: .58;
    filter: saturate(.75);
}

.resort-map__marker.is-active {
    z-index: 4;
    opacity: 1;
    transform: translate(-50%, -100%) scale(1.04);
    filter: drop-shadow(0 10px 22px rgba(21,42,65,.24));
}

.resort-map__marker.is-active .resort-map__label {
    min-width: 170px;
    max-width: min(320px, calc(100vw - 24px));
    padding: 10px 12px;
    border-radius: 8px;
    background: #fff;
    border-color: rgba(199,149,74,.65);
    box-shadow: 0 14px 28px rgba(21,42,65,.2);
}

.resort-map__marker.is-active .resort-map__label strong {
    color: #082943;
    text-align: left;
}

.resort-map__marker.is-active .resort-map__label small {
    display: block;
    white-space: normal;
}

.resort-map__marker.is-active .resort-map__thumb {
    border-color: #f5d28f;
    box-shadow: 0 0 0 5px rgba(199,149,74,.22), 0 14px 26px rgba(0,0,0,.28);
}

.resort-map__marker.is-active .resort-map__special {
    display: block;
    margin-top: 5px;
    padding: 8px;
    border-radius: 7px;
    color: #24364a;
    background: linear-gradient(135deg, #fff7df, #eef5f7);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
    white-space: normal;
}

.resort-map__marker.is-active .resort-map__special b {
    display: block;
    margin-bottom: 2px;
    color: #15304b;
}

.resort-map__coords {
    margin-top: 4px;
    padding: 2px 5px;
    border-radius: 5px;
    color: #fff;
    background: rgba(3,16,30,.82);
    font-size: 10px;
    white-space: nowrap;
}

.marker-coordinate-panel {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 5;
    display: grid;
    gap: 4px;
    max-width: min(320px, calc(100% - 24px));
    max-height: 180px;
    overflow: auto;
    padding: 10px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 8px;
    color: #fff;
    background: rgba(3,16,30,.84);
    box-shadow: 0 14px 30px rgba(0,0,0,.22);
    font-size: 12px;
}

.marker-coordinate-panel code {
    color: #f4d29a;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (min-width: 761px) and (max-width: 1180px) {
    .resort-map__markers {
        z-index: 3;
    }

    .resort-map__marker {
        z-index: 2;
    }

    .resort-map__marker:hover {
        transform: translate(-50%, -100%) scale(1.04);
    }

    .resort-map__thumb {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        border-width: 2px;
        box-shadow: 0 8px 18px rgba(0,0,0,.22);
    }

    .resort-map__label {
        min-width: 40px;
        min-height: 29px;
        padding: 5px 9px;
    }

    .resort-map__label strong {
        font-size: 14px;
    }

    .resort-map__marker.is-active {
        z-index: 8;
    }

    .resort-map__marker.is-active .resort-map__thumb {
        display: none;
    }

    .resort-map__marker.is-active .resort-map__label {
        min-width: 160px;
        max-width: min(260px, calc(100vw - 24px));
        padding: 9px 10px;
    }

    .resort-map__marker.is-active .resort-map__label-thumb {
        display: block;
        width: 100%;
        height: 76px;
        margin: 3px 0 4px;
        overflow: hidden;
        border: 2px solid rgba(255,255,255,.86);
        border-radius: 7px;
        background: #f6f1e6;
        box-shadow: 0 8px 16px rgba(21,42,65,.12);
    }

    .resort-map__marker.is-active .resort-map__detail-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        margin-top: 4px;
        padding: 0 10px;
        border-radius: 7px;
        color: #ffffff;
        background: linear-gradient(180deg, #338be2, var(--blue-dark));
        font-size: 12px;
        font-weight: 800;
        white-space: nowrap;
        box-shadow: 0 8px 16px rgba(44, 130, 216, .22);
    }
}

@media (min-width: 761px) and (max-width: 860px) {
    .resort-map__thumb {
        display: none;
    }

    .resort-map__marker.is-active .resort-map__label {
        min-width: 150px;
        max-width: min(220px, calc(100vw - 24px));
    }
}

.selected-stay,
.stay-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 12px 26px rgba(21,42,65,0.1);
}

.selected-stay img {
    width: 100%;
    height: 164px;
    object-fit: cover;
}

.selected-stay > div {
    padding: 18px;
}

.selected-stay ul {
    padding: 0;
    margin: 14px 0 12px;
    list-style: none;
    color: #2f4154;
}

.selected-stay li + li {
    margin-top: 6px;
}

.suggestion-stay-summary,
.suggestion-rules-summary {
    display: grid;
    gap: 7px;
    margin: 12px 0 16px;
    padding: 12px;
    border: 1px solid rgba(199,149,74,.24);
    border-radius: 8px;
    color: #536779;
    background: #fffaf1;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.suggestion-stay-summary p,
.suggestion-rules-summary h4 {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 0;
}

.suggestion-stay-summary span,
.suggestion-rules-summary h4 span {
    color: var(--gold);
    font-weight: 900;
}

.suggestion-rules-summary h4 {
    align-items: center;
    color: var(--navy);
    font-size: 14px;
    font-weight: 800;
}

.suggestion-rules-summary h4 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(180deg, var(--gold), #b8792d);
    font-size: 12px;
}

.suggestion-rules-summary ul {
    display: grid;
    gap: 6px;
    margin: 2px 0 0;
    padding-left: 18px;
}

.suggestion-rules-summary li {
    margin: 0;
}

.suggestion-rules-summary li + li {
    margin-top: 0;
}

.map-special-note {
    margin: 13px 0 15px;
    padding: 12px 13px;
    border: 1px solid rgba(199,149,74,.42);
    border-radius: 8px;
    color: #22354a;
    background:
        linear-gradient(135deg, rgba(255,248,226,.98), rgba(247,250,250,.95)),
        #fff7df;
    box-shadow: 0 10px 22px rgba(21,42,65,.08), inset 3px 0 0 rgba(199,149,74,.72);
}

.map-special-note h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 7px;
    color: #1d3651;
    font-size: 14px;
    line-height: 1.2;
}

.map-special-note h4 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(180deg, var(--gold), #a56a24);
    font-family: Georgia, serif;
    font-size: 13px;
    font-weight: 900;
}

.map-special-note p {
    margin: 0;
    color: #4d5d6d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.map-special-note ul {
    display: grid;
    gap: 5px;
    margin: 0;
    padding-left: 0;
    list-style: none;
    color: #4d5d6d;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.42;
}

.map-special-note li {
    position: relative;
    padding-left: 14px;
}

.map-special-note li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
}

.is-hidden {
    display: none !important;
}

.map-amenities-card {
    align-self: stretch;
    padding: 22px;
    border: 1px solid rgba(199,149,74,.28);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,250,250,.94)),
        #ffffff;
    box-shadow: 0 12px 26px rgba(21,42,65,0.1);
}

.map-amenities-card h3 {
    margin: 0 0 16px;
    color: #19304a;
    font-size: 22px;
    line-height: 1.35;
}

.map-amenity-list {
    display: grid;
    gap: 10px;
}

.map-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #2f4154;
    background: rgba(255,255,255,.82);
    font-weight: 700;
}

.map-amenity-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    border-radius: 50%;
    color: #ffffff;
    background: linear-gradient(180deg, var(--gold), #b8792d);
    font-size: 13px;
    box-shadow: 0 8px 16px rgba(199,149,74,.22);
}

.stay-policy-block {
    width: 100%;
}

.stay-policy-head {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.stay-policy-head p {
    max-width: 720px;
    margin: 6px 0 0;
    color: var(--muted);
}

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

.policy-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 22px rgba(21,42,65,.06);
}

.policy-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 18px;
}

.policy-card ul {
    padding-left: 18px;
    margin: 0;
    color: #425870;
}

.policy-card li + li {
    margin-top: 6px;
}

.stay-summary-card {
    border-color: rgba(199,149,74,.34);
    background: linear-gradient(180deg, #fff, #fffaf1);
}

.stay-summary-list {
    display: grid;
    gap: 10px;
    margin: 0;
}

.stay-summary-list div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(219,229,238,.8);
}

.stay-summary-list div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.stay-summary-list dt {
    color: var(--muted);
    font-weight: 700;
}

.stay-summary-list dd {
    margin: 0;
    color: var(--navy);
    font-weight: 800;
    text-align: right;
}

.stay-policy-block-compact .policy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stay-policy-block-compact .policy-card {
    padding: 16px;
}

.stay-policy-block-compact .policy-card h3 {
    font-size: 17px;
}

.stay-policy-block-compact .policy-card li {
    font-size: 14px;
}

.suggestion-label {
    margin: 0 0 6px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 700;
}

.suggestion-detail {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.popular {
    padding: 0 0 34px;
}

.section-row {
    justify-content: space-between;
    margin-bottom: 14px;
}

.section-row a,
.stay-body a {
    color: var(--blue-dark);
    font-weight: 700;
}

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

.stay-card {
    box-shadow: 0 8px 20px rgba(21,42,65,0.08);
}

.stay-image {
    position: relative;
}

.stay-image img {
    width: 100%;
    height: 122px;
    object-fit: cover;
}

.stay-image span {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 5px;
    color: #ffffff;
    background: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.stay-body {
    padding: 13px 14px 14px;
}

.stay-body h3 {
    font-size: 17px;
}

.stay-body p {
    min-height: 42px;
    margin: 8px 0 10px;
    color: var(--muted);
    font-size: 14px;
}

.facilities {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 22px;
    align-items: center;
    padding: 20px 24px;
    margin-bottom: 24px;
    border-radius: 8px;
    background: linear-gradient(90deg, #f0f6fb, #e9f0f6);
}

.facility-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.facility-list div {
    display: grid;
    justify-items: center;
    text-align: center;
    color: #20496b;
}

.facility-list .line-icon {
    width: 42px;
    height: 42px;
    margin: 0 0 4px;
}

.facility-list .line-icon::before {
    font-size: 35px;
}

.facility-list p {
    margin: 0;
    font-size: 14px;
    color: #19304a;
}

.facility-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.facility-photos img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 7px;
}

.site-footer {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 32px clamp(24px, 5vw, 64px) 22px;
    color: rgba(255,255,255,.86);
    background:
        radial-gradient(circle at 12% 0%, rgba(199,149,74,.14), transparent 32%),
        linear-gradient(90deg, rgba(3, 16, 30, .96), rgba(8, 38, 65, .92));
    border-top: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 -18px 40px rgba(21,42,65,.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(220px, .8fr) minmax(260px, 1fr);
    gap: 32px;
    align-items: start;
    width: min(1160px, 100%);
    margin: 0 auto;
}

.footer-brand img {
    width: clamp(130px, 15vw, 168px);
    height: auto;
    margin-bottom: 14px;
    opacity: .94;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
}

.footer-brand h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 21px;
}

.footer-brand p,
address {
    margin: 0;
    color: rgba(255,255,255,.84);
    font-style: normal;
}

.site-footer address strong {
    display: inline-block;
    margin-bottom: 8px;
    color: #f4d29a;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    min-height: 44px;
    margin-top: 9px;
    color: rgba(255,255,255,.82);
    font-weight: 500;
}

.footer-contact-link span {
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    height: 24px;
    padding: 0 6px;
    border-radius: 5px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
}

.footer-line span {
    background: #06c755;
}

.footer-facebook span {
    background: #1877f2;
    font-family: Arial, sans-serif;
    font-size: 17px;
}

.footer-map-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin-top: 12px;
    padding: 8px 13px 8px 9px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 9px;
    color: #ffffff;
    background:
        linear-gradient(135deg, rgba(55,152,219,.22), rgba(40,142,96,.18)),
        rgba(255,255,255,.08);
    box-shadow: 0 12px 24px rgba(0,0,0,.14);
    font-weight: 800;
    line-height: 1.25;
    transition: transform 180ms ease, opacity 180ms ease, filter 180ms ease;
}

.footer-map-button::after {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0 34%, rgba(255,255,255,.1) 34% 36%, transparent 36%),
        linear-gradient(0deg, transparent 0 55%, rgba(255,255,255,.08) 55% 57%, transparent 57%);
    content: "";
    opacity: .62;
    pointer-events: none;
}

.footer-map-button > span {
    position: relative;
    z-index: 1;
}

.footer-map-icon {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 8px;
    color: #09253b;
    background:
        radial-gradient(circle at 66% 34%, #2c82d8 0 16%, transparent 17%),
        linear-gradient(145deg, #f4d29a, #c7954a);
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 8px 16px rgba(199,149,74,.22);
}

.footer-map-button:hover,
.footer-map-button:focus-visible {
    border-color: rgba(244,210,154,.45);
    background:
        linear-gradient(135deg, rgba(55,152,219,.3), rgba(40,142,96,.24)),
        rgba(255,255,255,.11);
    box-shadow: 0 16px 30px rgba(0,0,0,.18), 0 0 0 4px rgba(199,149,74,.12);
    transform: translateY(-2px);
}

.footer-map-button:focus-visible {
    outline: 3px solid rgba(244,210,154,.72);
    outline-offset: 3px;
}

.footer-line-qr-wrap {
    display: grid;
    justify-items: center;
    gap: 6px;
    width: fit-content;
    margin-top: 14px;
}

.footer-line-qr {
    width: 112px;
    height: auto;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 8px;
    background: #fff;
    padding: 6px;
}

.footer-line-qr-label {
    color: rgba(255,246,220,.86);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 18px;
    width: min(1160px, 100%);
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 16px;
}

.copyright {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.32);
    border-radius: 999px;
    color: #ffffff;
    background:
        radial-gradient(circle at 35% 28%, rgba(245,210,143,.5), transparent 32%),
        linear-gradient(145deg, rgba(8,38,65,.96), rgba(3,16,30,.92));
    box-shadow: 0 14px 30px rgba(3,16,30,.26), inset 0 1px 0 rgba(255,255,255,.22);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(.96);
    transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
}

.back-to-top span {
    display: block;
    color: #f5d28f;
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-1px);
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    box-shadow: 0 18px 34px rgba(3,16,30,.34), 0 0 0 4px rgba(199,149,74,.2);
    transform: translateY(-2px) scale(1.02);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(245,210,143,.82);
    outline-offset: 3px;
}

@media (max-width: 1080px) {
    .resort-nav {
        align-items: flex-start;
        flex-wrap: wrap;
    }

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

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

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

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

    .nav-panel {
        display: none;
        width: 100%;
        padding-top: 12px;
    }

    .nav-panel.open {
        display: block;
    }

    .nav-menu {
        display: block;
    }

    .nav-menu a {
        min-height: 44px;
        padding: 12px 0;
    }

    .has-submenu ul {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 6px 18px;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .nav-panel > .language-switch {
        display: none;
    }

    .mobile-menu-contact {
        display: grid;
        gap: 8px;
        margin-top: 16px;
        padding: 14px;
        border: 1px solid rgba(255,255,255,.16);
        border-radius: 10px;
        color: #ffffff;
        background:
            linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.04)),
            rgba(4, 20, 34, .72);
        box-shadow: 0 14px 28px rgba(0,0,0,.18);
    }

    .mobile-menu-contact strong {
        color: #f5d28f;
        font-size: 13px;
        line-height: 1.25;
    }

    .mobile-menu-contact a {
        display: flex;
        align-items: center;
        gap: 9px;
        min-height: 44px;
        padding: 8px 10px;
        border-radius: 8px;
        color: rgba(255,255,255,.92);
        background: rgba(255,255,255,.07);
        font-size: 13px;
        font-weight: 700;
        line-height: 1.35;
    }

    .mobile-menu-contact a span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 30px;
        height: 24px;
        border-radius: 999px;
        color: #fff;
        background: rgba(199,149,74,.82);
        font-size: 10px;
        font-weight: 900;
    }

    .mobile-language-switch {
        display: inline-block;
        margin-left: auto;
    }

    .language-switch.is-enhanced {
        display: inline-block;
        min-width: 104px;
        padding: 0;
        border-color: rgba(255,255,255,.32);
        border-radius: 10px;
        background: rgba(10, 46, 75, .72);
    }

    .language-current {
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        width: 100%;
        min-height: 44px;
        padding: 7px 10px;
        border: 0;
        border-radius: 10px;
        color: #ffffff;
        background: rgba(255,255,255,.1);
        font: inherit;
        font-weight: 800;
        cursor: pointer;
    }

    .language-current span {
        font-size: 18px;
    }

    .language-current strong,
    .language-code {
        display: inline;
        font-size: 13px;
        letter-spacing: .02em;
    }

    .language-current i {
        color: rgba(255,255,255,.74);
        font-style: normal;
        font-size: 12px;
    }

    .language-switch.is-enhanced .language-options {
        position: absolute;
        top: calc(100% + 6px);
        right: 0;
        z-index: 30;
        display: none;
        min-width: 104px;
        padding: 5px;
        border: 1px solid rgba(255,255,255,.18);
        border-radius: 10px;
        background: rgba(7, 29, 49, .96);
        box-shadow: 0 16px 30px rgba(0,0,0,.24);
    }

    .language-switch.is-enhanced.is-open .language-options {
        display: grid;
        gap: 4px;
    }

    .language-switch.is-enhanced a {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
        height: 44px;
        padding: 0 9px;
        font-size: 18px;
        border-radius: 8px;
    }

    .language-switch.is-enhanced a.active {
        display: none;
    }

    .style-grid,
    .popular-grid,
    .policy-grid,
    .stay-policy-block-compact .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-bottom {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .site-hero {
        min-height: 620px;
    }

    .brand {
        min-width: min(150px, 46vw);
    }

    .brand img {
        width: clamp(140px, 42vw, 160px);
    }

    .hero-copy {
        padding-top: 58px;
    }

    .hero-copy h1 {
        font-size: clamp(38px, 8vw, 56px);
    }

    .section-wrap {
        width: min(100% - 28px, 1160px);
    }

    .style-grid,
    .popular-grid,
    .map-layout,
    .policy-grid,
    .stay-policy-block-compact .policy-grid {
        grid-template-columns: 1fr;
    }

    .style-card {
        min-height: 240px;
    }

    .resort-map__label {
        min-width: 38px;
        min-height: 28px;
        padding: 5px 9px;
    }

    .resort-map__label strong {
        font-size: 13px;
    }

    .resort-map__thumb {
        display: none;
    }

    .resort-map__marker.is-active .resort-map__label {
        min-width: 150px;
        max-width: min(220px, calc(100vw - 24px));
    }

    .resort-map__marker.is-active .resort-map__label-thumb {
        display: block;
        width: 100%;
        height: 72px;
        margin: 3px 0 4px;
        overflow: hidden;
        border: 2px solid rgba(255,255,255,.86);
        border-radius: 7px;
        background: #f6f1e6;
        box-shadow: 0 8px 16px rgba(21,42,65,.12);
    }

    .resort-map__marker.is-active .resort-map__detail-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 32px;
        margin-top: 4px;
        padding: 0 10px;
        border-radius: 7px;
        color: #ffffff;
        background: linear-gradient(180deg, #338be2, var(--blue-dark));
        font-size: 12px;
        font-weight: 800;
        white-space: nowrap;
        box-shadow: 0 8px 16px rgba(44, 130, 216, .22);
    }

    .map-special-note {
        padding: 11px 12px;
    }

    .map-special-note ul {
        gap: 4px;
        font-size: 11px;
        line-height: 1.35;
    }

    .facility-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-line-qr-wrap {
        margin-left: auto;
        margin-right: auto;
    }

    .back-to-top {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(18px, env(safe-area-inset-bottom));
        width: 42px;
        height: 42px;
    }

    .back-to-top span {
        font-size: 22px;
    }
}

@media (max-width: 460px) {
    .resort-nav {
        padding: 14px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-copy h1 {
        white-space: normal;
    }

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

    .facility-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .facility-photos {
        grid-template-columns: 1fr;
    }
}
