:root {
    --bg: #eeefef;
    --deep: #0b575f;
    --ink: #0c1a21;
    --muted: #6a7275;
    --light: #ffffff;
    --gold: #b8a26a;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--ink);
    background: var(--bg);
    scroll-behavior: smooth;
}

.container {
    width: min(1240px, 90%);
    margin: 0 auto;
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", serif;
    line-height: 1.1;
    margin: 0 0 14px;
}

.section { padding: 90px 0; }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1f6e74;
    margin-bottom: 8px;
    font-size: 0.8rem;
}

.side-rail {
    position: fixed;
    right: 0;
    top: 112px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.rail-btn {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border: 0;
    text-decoration: none;
    cursor: pointer;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 10px;
}

.menu-btn {
    background: #f7f7f7;
    color: #000;
}

.talk-btn {
    background: var(--deep);
    color: #fff;
}

.round-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0f7b81;
    color: #fff;
    text-decoration: none;
}

.round-btn img {
    width: 19px;
    height: 19px;
    object-fit: contain;
}

.quick-contact-stack {
    position: fixed;
    right: 18px;
    bottom: 72px;
    z-index: 220;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-wa { background: #1ebea5; }
.quick-call { background: #b69a6a; }

.quick-btn:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.33);
}

.quick-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.menu-panel {
    position: fixed;
    inset: 0;
    z-index: 260;
    background: rgba(4, 26, 31, 0.76);
    display: none;
}

.menu-panel.is-open { display: block; }

.menu-inner {
    margin-left: auto;
    width: min(520px, 100%);
    height: 100%;
    background: rgba(11, 87, 95, 0.95);
    color: #fff;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.menu-inner a {
    color: #fff;
    text-decoration: none;
    font-family: "Playfair Display", serif;
    font-size: 2.1rem;
}

.menu-close {
    align-self: flex-end;
    background: transparent;
    color: #fff;
    border: 0;
    font-size: 1.4rem;
    cursor: pointer;
}

.menu-contact {
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
}

.menu-phone {
    font-size: 3rem;
    color: var(--gold);
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.is-active { opacity: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.slide.is-active img {
    animation: heroKenBurns 7.5s ease-out forwards;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.28));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding-top: 12vh;
    animation: heroContentIn 1s ease-out;
}

.brand-box {
    margin: 0 auto 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 220px;
    height: 90px;
    display: grid;
    place-items: center;
    padding: 10px;
}

.hero-logo {
    max-width: 100%;
    max-height: 58px;
    object-fit: contain;
}

h1 { font-size: clamp(2.4rem, 6.2vw, 5.3rem); }
h2 { font-size: clamp(1rem, 2.3vw, 2rem); font-weight: 500; }
h3 { font-size: clamp(2rem, 3.8vw, 3.5rem); }
h4 { font-size: 2rem; }

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

.slider-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.slider-arrow:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.slide-count { font-size: 1.1rem; }

.resort-hero {
    position: relative;
    min-height: 68vh;
    overflow: hidden;
}

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

.resort-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding-top: 20vh;
}

.resort-hero-content p {
    margin: 6px 0 0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.resort-brand-box {
    width: 230px;
    height: 96px;
    margin-bottom: 28px;
    border-color: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(1px);
}

.resort-brand-box .hero-logo {
    max-height: 62px;
    filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.55));
}

.resort-intro {
    max-width: 960px;
    text-align: center;
}

.resort-intro p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #314047;
}

.resort-amenities {
    margin-top: 24px;
}

.resort-stats {
    text-align: center;
}

.stats-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: #fff;
    border: 1px solid #d9e0e2;
    border-radius: 14px;
    padding: 26px 14px;
}

.stat-card h4 {
    margin: 0;
    font-size: 2.8rem;
    color: #0c6a78;
}

.stat-card p {
    margin: 8px 0 0;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a6468;
}

.resort-spaces {
    background: #f8f8f8;
}

.resort-spaces-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.resort-spaces-grid p {
    line-height: 1.9;
    color: #39454c;
}

.resort-spaces-grid img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 14px;
}

.resort-indulge .feature-copy h3,
.resort-amenities-section h3,
.resort-rooms-section h3,
.resort-dine-section h3,
.resort-spaces h3 {
    color: #0a5f6c;
}

.resort-amenities-section {
    background: #f7f7f5;
    padding-top: 40px;
}

.resort-amenities-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr 1fr;
    gap: 34px;
    align-items: center;
}

.amenities-card {
    background: #fbfbfa;
    border: 1px solid #e1e2de;
    box-shadow: 0 18px 46px rgba(16, 26, 31, 0.1);
    padding: 34px;
}

.amenities-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid #d5d9d5;
}

.amenity-tile {
    min-height: 92px;
    border-right: 1px solid #d5d9d5;
    border-bottom: 1px solid #d5d9d5;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 10px 8px;
}

.amenity-tile:nth-child(4n) {
    border-right: none;
}

.amenity-tile:nth-last-child(-n + 4) {
    border-bottom: none;
}

.amenity-icon {
    font-size: 1.2rem;
    color: #2d3d45;
    line-height: 1;
    margin-bottom: 6px;
}

.amenity-tile p {
    margin: 0;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    color: #1f2b30;
    font-weight: 600;
}

.amenities-visual img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.amenities-copy h3 {
    margin-bottom: 0;
}

.resort-rooms-section {
    padding-top: 36px;
}

.resort-rooms-layout {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 28px;
    align-items: start;
}

.rooms-hero-wrap {
    position: relative;
}

.rooms-hero-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.rooms-stat-stack {
    position: absolute;
    left: -24px;
    top: 115px;
    display: grid;
    gap: 12px;
}

.room-stat-tile {
    width: 112px;
    min-height: 132px;
    background: #efefeb;
    border: 1px solid #d9dbd7;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 12px 10px;
}

.room-stat-icon {
    font-size: 1.25rem;
    color: #1a2429;
    line-height: 1;
}

.room-stat-tile strong {
    font-size: 1.4rem;
    color: #111d22;
    line-height: 1;
}

.room-stat-tile p {
    margin: 0;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e2c32;
    font-weight: 600;
}

.rooms-copy {
    padding-top: 14px;
}

.rooms-counter {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin: 10px 0 22px;
    color: #1e2d34;
}

.rooms-counter .arrow {
    font-size: 1.6rem;
    line-height: 1;
}

.rooms-secondary-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.resort-dine-section {
    padding-top: 24px;
}

.resort-dine-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.25fr 0.9fr;
    gap: 14px;
    align-items: end;
}

.dine-copy h3 {
    margin-bottom: 0;
}

.dine-main-img,
.dine-side-img {
    width: 100%;
    object-fit: cover;
}

.dine-main-img {
    height: 390px;
}

.dine-side-img {
    height: 495px;
}

.resort-spaces {
    background: #fff;
    padding-top: 34px;
}

.resort-spaces-shell {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    align-items: stretch;
}

.resort-spaces-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.resort-spaces-copy {
    background: #fff;
    border: 1px solid #dce1df;
    padding: 38px 34px;
}

.resort-spaces-copy p {
    color: #2f3e44;
    line-height: 1.85;
}

.resort-spaces-thumbs {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.resort-spaces-thumbs button {
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.resort-spaces-thumbs button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(8, 20, 26, 0.22);
    transition: background-color 0.2s ease;
}

.resort-spaces-thumbs button.is-active::after,
.resort-spaces-thumbs button:hover::after {
    background: rgba(8, 20, 26, 0.04);
}

.resort-spaces-thumbs img {
    width: 100%;
    height: 225px;
    object-fit: cover;
    display: block;
}

.resort-spaces-nav {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding-top: 10px;
}

.resort-spaces-nav button {
    border: none;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: #1c2a30;
}

.experiences-hero {
    min-height: 62vh;
}

.gallery-hero {
    min-height: 62vh;
}

.contact-hero {
    min-height: 62vh;
}

.contact-address {
    font-weight: 600;
}

.contact-support-heading {
    margin-bottom: 16px;
}

.contact-support-heading h3 {
    margin-bottom: 0;
    color: #0d5f71;
}

.sihina-support {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    border: 1px solid #d5dde0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 14px 30px rgba(10, 22, 29, 0.08);
}

.section.container.sihina-support {
    padding-top: 44px;
    padding-bottom: 44px;
}

.support-card-top-title {
    grid-column: 1 / -1;
    padding: 18px 24px 14px;
    border-bottom: 1px solid #e2e6e8;
    background: #fff;
}

.support-card-top-title p {
    margin: 0 0 4px;
    font-size: 0.73rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #8da0a8;
    font-weight: 600;
}

.support-card-top-title h3 {
    margin: 0;
    color: #0d5f71;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    line-height: 1.12;
}

.sihina-support-copy {
    padding: 26px 24px;
    background: #ffffff;
    border-right: 1px solid #e2e6e8;
}

.sihina-support-copy h3 {
    color: #0d5f71;
    max-width: 460px;
    margin: 0;
    font-size: 2rem;
}

.sihina-support-map {
    min-height: 430px;
}

.support-role {
    margin: 6px 0 0;
    color: #5e6970;
    font-size: 0.95rem;
}

.support-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

.support-actions a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    color: #0f5f70;
    border: 1px solid #d2dce0;
    background: #f9fbfc;
}

.support-actions a:first-child {
    background: #0b79be;
    border-color: #0b79be;
    color: #fff;
}

.support-actions img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.support-list {
    margin-top: 18px;
    border-top: 1px solid #e7ecef;
}

.support-list p {
    margin: 0;
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #e7ecef;
    color: #1f2d33;
    line-height: 1.45;
}

.support-list p:last-child {
    border-bottom: none;
}

.support-list img {
    width: 17px;
    height: 17px;
    object-fit: contain;
    margin-top: 2px;
    opacity: 0.9;
}

.support-list span {
    flex: 1;
}

.support-map {
    background: #f3f5f6;
    padding: 0 14px 0 0;
}

.sihina-support-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


.refined-form {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    border: 1px solid #d7dfe1;
}

.refined-form > img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.refined-form-wrap {
    padding: 44px 40px;
    background: #fff;
}

.refined-form-wrap h3 {
    color: #0d5f71;
}

.contact-form {
    display: grid;
    gap: 10px;
}

.form-flash-messages {
    display: grid;
    gap: 8px;
    margin: 4px 0 12px;
}

.form-flash {
    margin: 0;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.92rem;
}

.form-flash.success {
    background: #e7f6ed;
    color: #20653a;
    border: 1px solid #b9e2c8;
}

.form-flash.error {
    background: #fdeaea;
    color: #8d2b2b;
    border: 1px solid #f3c2c2;
}

.two-col-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.modern-form input,
.modern-form textarea {
    border: 0;
    border-bottom: 1px solid #b8c2c6;
    border-radius: 0;
    padding: 12px 2px;
    background: transparent;
}

.modern-form .country-select {
    width: 100%;
}

.modern-form .country-select .country-list {
    width: max-content;
    min-width: 100%;
    max-width: min(560px, 92vw);
    max-height: 240px;
    z-index: 500;
    white-space: nowrap;
}

.modern-form button {
    margin-left: auto;
    background: transparent;
    color: #111;
    border-radius: 0;
    border-bottom: 1px solid #b79e66;
    padding: 8px 0;
}

.indulgence-block {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    border: 1px solid #d7dfe1;
    border-radius: 14px;
    overflow: hidden;
}

.indulgence-copy {
    padding: 30px 28px;
    background: linear-gradient(rgba(28, 55, 34, 0.7), rgba(28, 55, 34, 0.7)), url("/static/exterior/03d57ca0.b3eb3334aff9.jpg") center / cover no-repeat;
    color: #fff;
}

.indulgence-copy h3 {
    color: #f3f9fa;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.indulgence-copy .eyebrow {
    color: #d8c693;
}

.indulgence-copy p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 430px;
}

.calendar-card {
    padding: 22px 20px;
    background: linear-gradient(180deg, #ffffff, #f7fbfc);
    border-left: 1px solid #d9e3e5;
}

.calendar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.calendar-card h4 {
    margin: 0;
    font-size: 1.7rem;
    color: #1f4a2a;
}

.calendar-arrows {
    display: inline-flex;
    gap: 6px;
}

.calendar-arrows button {
    border: 0;
    background: transparent;
    color: #4f5a61;
    font-size: 1.3rem;
    cursor: pointer;
    width: 26px;
    height: 26px;
    line-height: 1;
    border-radius: 50%;
}

.calendar-arrows button:hover {
    background: rgba(31, 74, 42, 0.14);
}

.calendar-arrows button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: transparent;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.82rem;
    color: #5c666b;
    font-weight: 600;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-grid span {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #2e6a3d, #214f2d);
    color: #fff;
    min-height: 34px;
    font-size: 0.82rem;
    border-radius: 4px;
    box-shadow: 0 6px 14px rgba(33, 79, 45, 0.25);
}

.calendar-grid span.off {
    background: transparent;
    box-shadow: none;
}

.calendar-legend {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
}

.calendar-legend span {
    font-size: 0.82rem;
    color: #364147;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.calendar-legend i {
    width: 10px;
    height: 10px;
    display: inline-block;
}

.calendar-legend .available { background: linear-gradient(135deg, #2e6a3d, #214f2d); }
.calendar-legend .booked-m { background: linear-gradient(135deg, #8aa178, #d4b470); }
.calendar-legend .booked-e { background: linear-gradient(135deg, #6f8f60, #b69758); }
.calendar-legend .booked-f { background: linear-gradient(135deg, #d9b979, #b79251); }

.faq-modern {
    text-align: center;
}

.faq-title-top {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.2rem, 5.2vw, 4rem);
    line-height: 0.95;
    letter-spacing: 0.03em;
    color: #2a8ea2;
    font-weight: 500;
}

.faq-title-sub {
    margin: 8px 0 0;
    color: #0d5f71;
    font-size: clamp(1.9rem, 3.5vw, 3rem);
    font-weight: 600;
}

.faq-modern .faq-list {
    text-align: left;
    margin-top: 40px;
    max-width: 78%;
    margin-left: auto;
    margin-right: auto;
}

.faq-lines details {
    border: 0;
    border-bottom: 1px solid #e2e8ea;
    border-radius: 0;
    background: transparent;
    padding: 6px 0;
}

.faq-lines summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    list-style: none;
    min-height: 58px;
}

.faq-lines summary::-webkit-details-marker {
    display: none;
}

.faq-no {
    color: #0e6977;
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    min-width: 60px;
    line-height: 1;
}

.faq-lines .plus {
    font-size: 0;
    min-width: 24px;
    text-align: right;
}

.faq-lines .plus::before {
    content: "+";
    font-size: 2rem;
    color: #0d5f71;
}

.faq-lines details[open] .plus::before {
    content: "-";
}

.faq-lines summary span:nth-child(2) {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-lines details p {
    margin: 0 0 14px 76px;
    padding-right: 34px;
    line-height: 1.75;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ccd6d9;
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
}

.contact-form button {
    border: 0;
    border-radius: 999px;
    background: #0c6a78;
    color: #fff;
    padding: 12px 18px;
    font-weight: 600;
    cursor: pointer;
    width: fit-content;
}

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

.faq-list details {
    border: 1px solid #d8e1e3;
    border-radius: 12px;
    padding: 14px 16px;
    background: #fff;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: #18333a;
}

.faq-list p {
    margin: 10px 0 0;
    color: #465359;
    line-height: 1.7;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.gallery-filters button {
    border: 1px solid #cfd8db;
    background: #fff;
    color: #1d2b31;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.gallery-filters button:hover,
.gallery-filters button.is-active {
    border-color: #0c6a78;
    color: #0c6a78;
    background: #e8f4f6;
}

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

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item.is-hidden {
    display: none;
}

.gallery-load-wrap {
    margin-top: 22px;
    text-align: center;
}

.gallery-load-btn {
    border: 0;
    background: transparent;
    border-bottom: 1px solid #bda772;
    padding: 0 0 6px;
    font-weight: 600;
    cursor: pointer;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.84);
    z-index: 400;
    display: none;
    grid-template-columns: 56px 1fr 56px;
    grid-template-rows: 1fr 88px;
    align-items: center;
}

.gallery-lightbox.is-open {
    display: grid;
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 22px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
}

.lightbox-stage {
    grid-column: 2;
    margin: 0;
    text-align: center;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.lightbox-stage img {
    max-width: min(1220px, 86vw);
    max-height: calc(100vh - 170px);
    margin: 0 auto;
    object-fit: contain;
}

.lightbox-stage figcaption {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.9rem;
    letter-spacing: 0.04em;
}

.lightbox-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    justify-self: center;
}

.lightbox-nav.prev {
    grid-column: 1;
}

.lightbox-nav.next {
    grid-column: 3;
}

.lightbox-thumbs {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    gap: 8px;
    align-items: center;
    overflow-x: auto;
    padding: 10px 12px 14px;
    background: rgba(0, 0, 0, 0.5);
}

.lightbox-thumbs button {
    border: 1px solid transparent;
    padding: 0;
    background: none;
    cursor: pointer;
    border-radius: 4px;
    flex: 0 0 auto;
}

.lightbox-thumbs img {
    width: 72px;
    height: 56px;
    object-fit: cover;
    display: block;
    opacity: 0.65;
}

.lightbox-thumbs button.is-active {
    border-color: #fff;
}

.lightbox-thumbs button.is-active img {
    opacity: 1;
}

.experience-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.experiences-showcase {
    padding-top: 30px;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.showcase-tabs button {
    border: 1px solid #d6dde0;
    background: #fff;
    padding: 12px 34px;
    cursor: pointer;
    font-weight: 500;
}

.showcase-tabs button.is-active {
    background: #2f2b28;
    color: #fff;
}

.showcase-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 26px;
    align-items: center;
}

.showcase-main img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.showcase-copy h3 {
    color: #0d5f71;
    margin-bottom: 12px;
}

.showcase-copy p {
    color: #4d585d;
    line-height: 1.8;
}

.showcase-thumbs {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.showcase-thumbs img {
    width: 100%;
    height: 128px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #d5e1e4;
    box-shadow: 0 8px 16px rgba(15, 47, 55, 0.12);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.showcase-thumbs img:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: #2f6a3f;
    box-shadow: 0 14px 22px rgba(15, 47, 55, 0.18);
}

.showcase-list {
    display: grid;
    gap: 26px;
}

.showcase-item {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: start;
    padding: 14px;
    border: 1px solid #dfe7e9;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(18, 45, 53, 0.06);
}

.showcase-item .showcase-main {
    grid-template-columns: 1fr;
    gap: 10px;
}

.showcase-item .showcase-main img {
    height: 360px;
    border-radius: 12px;
}

.showcase-item:nth-child(even) .showcase-main {
    order: 2;
}

.showcase-item:nth-child(even) .showcase-copy {
    order: 1;
}

.showcase-item .showcase-copy {
    align-self: center;
    padding: 8px 4px;
}

.experience-column {
    background: #fff;
    border: 1px solid #d8e0e2;
    border-radius: 14px;
    padding: 24px 22px;
}

.experience-column h4 {
    margin-bottom: 12px;
    font-size: 1.9rem;
    color: #0e4049;
}

.experience-column ul {
    margin: 0;
    padding-left: 18px;
}

.experience-column li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #354147;
}

.feature { background: #fff; }

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stacked-images {
    position: relative;
    min-height: 620px;
}

.stacked-images img {
    object-fit: cover;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.img-a {
    width: 58%;
    height: 500px;
}

.img-b {
    width: 56%;
    height: 560px;
    position: absolute;
    left: 42%;
    top: 48px;
}

.feature-copy .lead {
    color: #7d8487;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 20px;
}

.feature-copy p {
    line-height: 1.8;
    color: #3f484d;
}

.text-link {
    color: #0d2028;
    text-decoration: none;
    border-bottom: 1px solid #b8a26a;
    padding-bottom: 4px;
    display: inline-block;
    margin-top: 10px;
    transition: letter-spacing 0.2s ease, color 0.2s ease;
}

.text-link:hover {
    letter-spacing: 0.03em;
    color: #0c6a78;
}

.moments {
    background: #f7f7f7;
}

.moments-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 24px;
    align-items: center;
}

.moment-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 470px;
}

.moment-copy {
    background: #0f6d73;
    color: #fff;
    padding: 44px 34px;
}

.moment-copy h4 { font-size: 2.2rem; }

.moment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.moments-intro {
    padding-right: 20px;
}

.moments-intro h3 {
    margin-bottom: 30px;
    color: #0a5f6c;
}

.home-moment-card {
    border: 1px solid #d7dcdf;
    background: #fff;
}

.home-moment-copy {
    background: linear-gradient(180deg, rgba(9, 118, 130, 0.95), rgba(10, 85, 96, 0.95));
    color: #fff;
    padding: 44px 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.home-moment-copy h4 {
    font-size: 2.15rem;
    margin: 0 0 12px;
}

.home-moment-copy p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.8;
}

.home-moment-controls {
    margin-top: 26px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.home-moment-controls .slider-arrow {
    border-color: rgba(255, 255, 255, 0.55);
}

.compact {
    justify-content: flex-start;
    margin-top: 20px;
}

.amenities-band {
    background: #091015;
    color: #fff;
}

.amenities-band .eyebrow { color: #77abb0; }

.band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.band-grid img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.band-copy p { color: #d0d5d8; }

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

.amenity-item {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.gallery-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.testimonials {
    background: #f7f7f7;
}

.testimonial-wrap {
    margin-top: 20px;
}

.testimonial-card {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    min-height: 520px;
    background: #fff;
}

.testimonial-copy {
    padding: 48px 38px;
}

.quote-mark {
    font-family: "Playfair Display", serif;
    font-size: 4rem;
    color: #8ea1a6;
    line-height: 1;
}

#testimonialQuote {
    line-height: 1.8;
    color: #3b474c;
    min-height: 190px;
}

#testimonialName {
    margin-top: 28px;
    font-size: 1.2rem;
}

#testimonialLocation {
    color: #6f7679;
    margin: 0;
}

.slider-arrow.dark {
    border-color: rgba(0, 0, 0, 0.25);
    color: #122026;
}

.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.is-hidden {
    display: none;
}

.cta-band {
    background: linear-gradient(90deg, #05677b, #0f8ca6);
    color: #fff;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.85fr;
    align-items: center;
    gap: 26px;
    padding: 0 0 0 34px;
    min-height: 280px;
}

.cta-copy h3 { font-size: 2.6rem; margin-bottom: 18px; }
.cta-copy p { margin: 0; text-transform: uppercase; letter-spacing: 0.08em; }
.big-phone { font-size: clamp(2rem, 4vw, 3.3rem); color: var(--gold); margin-top: 8px; }

.cta-links > a:not(.cta-link-btn) {
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 10px 0;
}

.cta-band img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.home-cta-band {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 22px 48px rgba(5, 30, 42, 0.28);
    background:
        linear-gradient(118deg, rgba(4, 104, 123, 0.96) 0%, rgba(9, 137, 163, 0.94) 56%, rgba(14, 150, 174, 0.9) 100%);
}

.home-cta-band .cta-glow {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 220, 128, 0.28) 0%, rgba(255, 220, 128, 0) 72%);
    top: -150px;
    left: -110px;
    pointer-events: none;
}

.home-cta-band .cta-copy,
.home-cta-band .cta-links,
.home-cta-band img {
    position: relative;
    z-index: 2;
}

.home-cta-band .cta-copy h3 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    margin-bottom: 14px;
    max-width: 560px;
}

.home-cta-band .cta-copy p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.88);
}

.home-cta-band .big-phone {
    display: inline-block;
    text-decoration: none;
    font-size: clamp(2.1rem, 3.8vw, 3.5rem);
    color: #dbc77f;
    line-height: 1.02;
    margin-top: 9px;
    letter-spacing: 0.03em;
    transition: color 0.2s ease, transform 0.2s ease;
}

.home-cta-band .big-phone:hover {
    color: #f0dc93;
    transform: translateY(-1px);
}

.home-cta-band .cta-links {
    display: grid;
    gap: 12px;
    align-content: center;
    justify-items: start;
}

.cta-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 172px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.96rem;
    line-height: 1;
    white-space: nowrap;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cta-link-btn.primary {
    background: #ffffff;
    color: #0d5f71;
    box-shadow: 0 10px 18px rgba(8, 35, 48, 0.18);
}

.cta-link-btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.56);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

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

.cta-link-btn.primary:hover {
    box-shadow: 0 14px 24px rgba(8, 35, 48, 0.24);
    background: #f7fbfc;
}

.cta-link-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.72);
}

.home-cta-band img {
    height: 100%;
    min-height: 280px;
}

.site-footer {
    background: #f1f1f1;
    padding-top: 70px;
    padding-bottom: 0;
}

/* Scroll reveal system for Sihina-like section motion */
.reveal-up {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

.footer-top-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 30px;
    position: relative;
}

.footer-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, transparent, #d8d8d8 12%, #d8d8d8 88%, transparent);
}

.footer-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-content: start;
    max-width: none;
    width: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(146, 162, 168, 0.28);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 14px 28px rgba(12, 106, 120, 0.08);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.footer-links:hover {
    border-color: rgba(12, 106, 120, 0.32);
    box-shadow: 0 0 18px rgba(12, 106, 120, 0.18), 0 18px 34px rgba(12, 106, 120, 0.14);
}

.footer-links a {
    text-decoration: none;
    color: #122026;
    font-size: 1.2rem;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-block-title {
    margin: 0 0 8px;
    grid-column: 1 / -1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.72rem;
    color: #6b7478;
    font-weight: 700;
}

.footer-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(12, 106, 120, 0.2);
    background: rgba(255, 255, 255, 0.35);
    color: #0c6a78;
    box-shadow: 0 10px 20px rgba(10, 37, 45, 0.08);
}

.link-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #ecf2f3;
    color: #0c6a78;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.footer-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.12));
    border: 1px solid rgba(146, 162, 168, 0.28);
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28), 0 14px 28px rgba(12, 106, 120, 0.08);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.footer-contact:hover {
    border-color: rgba(12, 106, 120, 0.32);
    box-shadow: 0 0 18px rgba(12, 106, 120, 0.18), 0 18px 34px rgba(12, 106, 120, 0.14);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(12, 106, 120, 0.14);
    border-radius: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.35);
}

.contact-item.full {
    grid-column: span 2;
}

.contact-item img,
.text-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    margin-top: 2px;
}

.text-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0c6a78;
    font-size: 0.95rem;
    font-weight: 700;
}

.contact-item p {
    margin: 0;
    line-height: 1.6;
    color: #273136;
    font-size: 0.92rem;
}

.status-strip {
    margin-top: 20px;
    padding: 10px 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-col {
    display: flex;
    align-items: baseline;
}

.status-strip #footerTemp,
.status-strip #footerTime {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: #09616f;
}

.status-meta {
    margin-left: 10px;
    color: #4f5659;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1.2;
}

.status-social {
    display: flex;
    gap: 10px;
}

.status-social a {
    width: 34px;
    height: 34px;
    border: 1px solid #5f6a70;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-decoration: none;
    color: #193943;
    font-size: 0.95rem;
    background: #fff;
    transition: all 0.2s ease;
}

.status-social a img {
    width: 17px;
    height: 17px;
    object-fit: contain;
}

.status-social a:hover {
    background: #0c6a78;
    color: #fff;
    border-color: #0c6a78;
    transform: translateY(-1px);
}

.footer-bottom-bar {
    background: linear-gradient(90deg, #025d74, #0d7991);
    color: #fff;
}

.bottom-bar-grid {
    min-height: 58px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 14px;
}

.bottom-bar-grid p {
    margin: 0;
    font-size: 0.78rem;
    text-align: center;
}

.cohost-logo {
    width: 110px;
    max-width: 100%;
    margin-bottom: 2px;
    object-fit: contain;
}

@media (max-width: 1080px) {
    .feature-grid,
    .moments-grid,
    .band-grid,
    .cta-band,
    .footer-grid,
    .resort-spaces-grid,
    .stats-grid,
    .experience-lists,
    .sihina-support,
    .refined-form,
    .indulgence-block,
    .showcase-main,
    .showcase-item {
        grid-template-columns: 1fr;
    }

    .resort-amenities-layout,
    .resort-rooms-layout,
    .resort-dine-layout,
    .resort-spaces-shell {
        grid-template-columns: 1fr;
    }

    .amenities-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .amenity-tile:nth-child(4n) {
        border-right: 1px solid #d5d9d5;
    }

    .amenity-tile:nth-last-child(-n + 4) {
        border-bottom: 1px solid #d5d9d5;
    }

    .amenity-tile:nth-child(3n) {
        border-right: none;
    }

    .amenities-visual img {
        height: 360px;
    }

    .rooms-hero-img,
    .rooms-secondary-img,
    .dine-main-img,
    .dine-side-img,
    .resort-spaces-main img {
        height: 340px;
    }

    .rooms-stat-stack {
        position: static;
        margin-top: 12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        display: grid;
    }

    .room-stat-tile {
        width: 100%;
        min-height: 96px;
    }

    .resort-spaces-thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .two-col-inputs {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid::before {
        display: none;
    }

    .sihina-support-copy {
        border-right: none;
        border-bottom: 1px solid #e2e6e8;
    }

    .section.container.sihina-support {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .support-actions {
        flex-wrap: wrap;
    }

    .support-map {
        padding-right: 0;
    }

    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .moment-card { grid-template-columns: 1fr; }
    .testimonial-card { grid-template-columns: 1fr; }
    .band-grid img { height: 420px; }
    .cta-band { padding: 30px; }
    .home-cta-band {
        padding: 26px;
        border-radius: 14px;
    }
    .home-cta-band .cta-glow {
        width: 260px;
        height: 260px;
        left: -90px;
        top: -120px;
    }
    .home-cta-band .cta-links {
        margin-top: 10px;
        justify-items: start;
    }
    .home-cta-band img {
        min-height: 240px;
        border-radius: 12px;
    }
    .status-strip {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .footer-links a {
        font-size: 1rem;
    }

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

    .footer-contact p:last-child {
        grid-column: auto;
    }

    .bottom-bar-grid {
        grid-template-columns: 1fr;
        padding: 12px 0;
    }
}

@keyframes heroContentIn {
    from {
        opacity: 0;
        transform: translateY(26px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroKenBurns {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
