/* =========================================================
   SLS HOMESTAY
   Premium Minimal Website
   ========================================================= */


/* =========================================================
   1. RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #faf9f6;
    color: #172338;
    line-height: 1.6;

    overflow-x: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}


/* =========================================================
   2. DESIGN VARIABLES
   ========================================================= */

:root {
    --navy: #172d4d;
    --navy-dark: #10233d;

    --gold: #b38a3c;
    --gold-light: #d2b26b;

    --ivory: #faf9f6;
    --white: #ffffff;

    --text: #172338;
    --muted: #697386;

    --border: #e8e4dc;

    --section-padding: clamp(70px, 9vw, 125px);

    --max-width: 1200px;

    --radius: 6px;
}


/* =========================================================
   3. GLOBAL UTILITIES
   ========================================================= */

.section {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin-inline: auto;

    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
}

.eyebrow {
    font-size: 0.82rem;

    letter-spacing: 0.24em;

    text-transform: uppercase;

    color: var(--gold);

    font-weight: 700;

    margin-bottom: 16px;
}

.section-heading {
    max-width: 720px;

    margin-bottom: 55px;
}

.section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(2.2rem, 4vw, 3.5rem);

    line-height: 1.12;

    font-weight: 400;

    color: var(--navy);

    margin-bottom: 18px;
}

.section-heading > p:last-child {
    color: var(--muted);

    font-size: 1rem;

    max-width: 620px;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.site-header {
    position: relative;

    width: 100%;

    z-index: 20;

    background: #142B4A;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.07);

    box-shadow:
        0 4px 18px rgba(8, 20, 35, 0.12);
}


/* ---------------------------------------------------------
   HEADER INNER
--------------------------------------------------------- */

.header-inner {
    width: min(
        calc(100% - 120px),
        1600px
    );

    height: 108px;

    margin-inline: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


/* ---------------------------------------------------------
   BRAND
--------------------------------------------------------- */

.brand {
    display: flex;

    align-items: center;

    gap: 16px;

    color: white;

    flex-shrink: 0;
}


/* ---------------------------------------------------------
   LOGO
--------------------------------------------------------- */

.brand-logo {
    width: 92px;

    height: 92px;

    object-fit: contain;

    flex-shrink: 0;
}


/* ---------------------------------------------------------
   BRAND TEXT
--------------------------------------------------------- */

.brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1;
}


.brand-name {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 2.3rem;

    font-weight: 400;

    letter-spacing: 0.14em;

    white-space: nowrap;

    color: white;
}


.brand-subtitle {
    margin-top: 7px;

    font-size: 0.98rem;

    font-weight: 400;

    letter-spacing: 0.34em;

    color: rgba(255, 255, 255, 0.78);

    white-space: nowrap;
}


/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */

.main-nav {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 36px;

    color: white;

    font-size: 0.94rem;

    font-weight: 500;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   NAVIGATION LINKS
--------------------------------------------------------- */

.main-nav > a:not(.nav-book-button) {
    position: relative;

    color: rgba(255, 255, 255, 0.88);

    transition:
        color 0.25s ease,
        opacity 0.25s ease;
}


/*
   Elegant gold underline on hover.
*/




/* ---------------------------------------------------------
   BOOK NOW
--------------------------------------------------------- */

.nav-book-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    padding:
        0 23px;

    background: #ffffff;

    color: #172d4d;

    border:
        1px solid rgba(255, 255, 255, 0.85);

    border-radius: 3px;

    font-size: 0.82rem;

    font-weight: 600;

    letter-spacing: 0.02em;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.nav-book-button:hover {
    background: #f5f1e8;

    color: #10233d;

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.16);
}


/* =========================================================
   5. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 720px;

    height: min(90vh, 850px);

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #182b43;
}

.hero-image-wrapper {
    position: absolute;

    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}


/*
   The image remains the main visual.
   Only a light left-to-right shade is used
   so the hero text remains readable.
*/

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(9, 22, 39, 0.30) 0%,
            rgba(9, 22, 39, 0.24) 38%,
            rgba(9, 22, 39, 0.08) 72%,
            rgba(9, 22, 39, 0.02) 100%
        );
}

.hero-content {
    position: relative;

    z-index: 2;

    width: min(
        calc(100% - 40px),
        760px
    );

    margin-inline: auto;

    padding-top: 0;

    transform: translateY(-70px);

    color: white;

    max-width: 760px;
}


/*
   Very subtle background support behind text.
   This is NOT an opaque rectangle.
   The living-room remains clearly visible.
*/

.hero-content::before {
    content: "";

    position: absolute;

    z-index: -1;

    left: -80px;
    right: -80px;

    top: -55px;
    bottom: -55px;

    background:
        radial-gradient(
            ellipse at center,
            rgba(8, 20, 35, 0.30) 0%,
            rgba(8, 20, 35, 0.16) 38%,
            rgba(8, 20, 35, 0.05) 62%,
            rgba(8, 20, 35, 0) 78%
        );

    pointer-events: none;
}

.hero-content .eyebrow {
    color: #fdd571;

    font-size: 0.88rem;

    font-weight: 700;

    letter-spacing: 0.28em;

    margin-bottom: 20px;

    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.35);
}
.hero-content h1 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        3.3rem,
        7vw,
        6.6rem
    );

    font-weight: 400;

    line-height: 0.98;

    letter-spacing: -0.035em;

    margin-bottom: 28px;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.30);
}

.hero-description {
    font-size: clamp(
        1rem,
        1.6vw,
        1.2rem
    );

    max-width: 520px;

    color: rgba(255, 255, 255, 0.94);

    margin-top: -15px;

    margin-bottom: 34px;

    text-shadow:
        0 1px 4px rgba(0, 0, 0, 0.30);
}

.hero-actions {
    display: flex;
    transform: translateY(50px);
    gap: 12px;  

    flex-wrap: wrap;
    
    margin-top: 100px;
}

.primary-button,
.secondary-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 0 25px;

    border-radius: 4px;

    font-size: 0.9rem;

    font-weight: 600;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.primary-button {
    background: white;

    color: var(--navy);
}

.secondary-button {
    color: white;

   border: 1px solid #183152;
    background: #183152;
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.secondary-button:hover {
     background: #24466f;
    border-color: #24466f;
    color: white;
}


/* =========================================================
   6. QUICK HIGHLIGHTS
   ========================================================= */

.quick-highlights {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin: -45px auto 0;

    position: relative;

    z-index: 5;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: white;

    box-shadow:
        0 15px 45px rgba(20, 34, 50, 0.10);

    border: 1px solid rgba(0,0,0,0.03);
}

.highlight-item {
    padding: 28px 24px;

    border-right: 1px solid var(--border);
}

.highlight-item:last-child {
    border-right: none;
}

.highlight-item strong {
    display: block;

    color: var(--navy);

    font-size: 0.92rem;

    margin-bottom: 4px;
}

.highlight-item span {
    color: var(--muted);

    font-size: 0.78rem;
}


/* =========================================================
   7. ROOMS
   ========================================================= */

.rooms-section {
    padding-top: 90px;
    padding-bottom: 110px;
}

.room-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.room-card {
    background: white;

    border: 1px solid var(--border);

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.room-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 45px rgba(20, 34, 50, 0.09);
}

.room-card-image {
    height: 360px;

    overflow: hidden;

    background: #eeece7;
}

.room-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.room-card:hover .room-card-image img {
    transform: scale(1.025);
}

.empty-room-image {
    background:
        linear-gradient(
            135deg,
            #eeece7,
            #f6f4ef
        );
}

.room-card-content {
    padding: 32px;
}

.room-number {
    font-size: 0.7rem;

    color: var(--gold);

    letter-spacing: 0.16em;

    margin-bottom: 10px;
}

.room-card h3 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.85rem;

    font-weight: 400;

    color: var(--navy);

    margin-bottom: 10px;
}

.room-description {
    color: var(--muted);

    font-size: 0.9rem;

    min-height: 70px;
}

.room-details {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    padding: 18px 0;

    margin-top: 10px;

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);

    color: var(--muted);

    font-size: 0.78rem;
}

.room-details span:last-child {
    color: var(--navy);

    font-weight: 700;
}

.room-button {
    display: flex;

    justify-content: center;
    align-items: center;

    min-height: 48px;

    margin-top: 20px;

    background:white;

    color: var(--navy);

    border-radius: 4px;

    font-size: 0.84rem;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.room-button:hover {
    background: var(--navy-dark);

    transform: translateY(-1px);
}

.room-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 20px;
}

.room-actions .room-button,
.room-book-button {
    width: 100%;

    min-height: 50px;

    margin-top: 0;

    border: 1px solid var(--navy);

    border-radius: 4px;

    cursor: pointer;

    font-size: 0.82rem;

    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.room-actions .room-button {
   background: white;
    color: var(--navy);
}

.room-book-button {
    background:var(--navy);

    color:  white; 
}

.room-actions .room-button:hover,
.room-book-button:hover {
    transform: translateY(-2px);
}

.room-book-button:hover {
    background: var(--navy);

    color: white;
}

/* =========================================================
   8. PROPERTY INTRODUCTION
   ========================================================= */

.property-introduction {
    width: min(
        calc(100% - 40px),
        1280px
    );

    margin: 110px auto 0;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(0, 0.92fr);

    background: white;

    box-shadow:
        0 12px 35px rgba(20, 34, 50, 0.06);
}

.property-image {
    min-height: 560px;

    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.property-content {
    padding:
        clamp(45px, 5vw, 75px);

    display: flex;

    justify-content: center;

    flex-direction: column;
}

.property-content h2 {
    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(
        2.4rem,
        4vw,
        3.8rem
    );

    font-weight: 400;

    line-height: 1.06;

    letter-spacing: -0.025em;

    color: var(--navy);

    margin-bottom: 24px;
}

.property-content p:not(.eyebrow) {
    color: var(--muted);

    max-width: 520px;

    margin-bottom: 20px;

    font-size: 0.94rem;

    line-height: 1.8;
}

.experience-section {
    padding-top: 75px;
}

/* =========================================================
   9. EXPERIENCE GALLERY
   ========================================================= */

.experience-grid {
    display: grid;

    grid-template-columns:
        1.45fr 1fr 1fr;

    grid-template-rows:
        330px 260px;

    gap: 14px;
}

.experience-large {
    grid-row: span 2;
    min-height: 0;
}

.experience-large,
.experience-small {
    position: relative;

    overflow: hidden;

    background: #e9e7e2;
}

.experience-large img,
.experience-small img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;
}

.experience-large:hover img,
.experience-small:hover img {
    transform: scale(1.035);
}

.experience-caption {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding:
        55px 24px 22px;

    color: white;

    background:
        linear-gradient(
            to top,
            rgba(8, 20, 35, 0.78),
            rgba(8, 20, 35, 0.24) 55%,
            transparent
        );
}

.experience-caption span {
    display: block;

    font-size: 0.70rem;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    opacity: 0.88;

    margin-bottom: 4px;
}

.experience-caption strong {
    display: block;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.42rem;

    line-height: 1.15;

    font-weight: 400;
}


/* =========================================================
   10. FACILITIES
   ========================================================= */

.facilities-section {
    width: min(
        calc(100% - 40px),
        var(--max-width)
    );

    margin: 0 auto 70px;

    background: white;

    padding:
        var(--section-padding)
        40px;

    box-shadow:
        0 12px 35px rgba(20, 34, 50, 0.06);
}

.facilities-section .section-heading {
    width:  100%;

    margin-inline: auto;
}

.facility-list {
    width: 100%;

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    border-top: 1px solid var(--border);
}

.facility {
    display: flex;

    gap: 18px;

    padding: 28px 10px;

    border-bottom: 1px solid var(--border);
}

.facility:nth-child(odd) {
    border-right: 1px solid var(--border);

    padding-right: 35px;
}

.facility:nth-child(even) {
    padding-left: 35px;
}

.facility-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f1eee6;

    color: var(--gold);

    font-weight: 700;
}

.facility strong {
    display: block;

    color: var(--navy);

    margin-bottom: 4px;
}

.facility p {
    color: var(--muted);

    font-size: 0.83rem;
}


/* =========================================================
   11. SIGNATURE VIEW / TERRACE
   ========================================================= */

.signature-view {
    position: relative;

    width: 100%;

    margin-bottom: 70px;

    overflow: hidden;

    background: var(--navy);
}

.signature-view > img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;

    object-position: center;
}

.signature-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to right,
            rgba(8, 20, 35, 0.72),
            rgba(8, 20, 35, 0.05)
        );
}




/* =========================================================
   12. PROPERTY DETAILS
   ========================================================= */

.property-details-section {
    background: white;

    margin-bottom: 70px;

    box-shadow:
        0 12px 35px rgba(20, 34, 50, 0.06);
}

.details-grid {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 70px;

    align-items: stretch;
}

.detail-image {
    height: 100%;

    overflow: hidden;
}

.detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.detail-content h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        2.2rem,
        4vw,
        3.7rem
    );

    line-height: 1.1;

    font-weight: 400;

    color: var(--navy);

    margin-bottom: 22px;
}

.detail-content > p:not(.eyebrow) {
    color: var(--muted);

    max-width: 500px;

    margin-bottom: 28px;
}

.detail-content ul {
    list-style: none;
}

.detail-content li {
    padding: 14px 0;

    border-bottom: 1px solid var(--border);

    color: var(--navy);

    font-size: 0.9rem;

    line-height: 1.5;
}

.detail-content li strong {
    display: block;

    font-weight: 600;

    margin-bottom: 5px;
}

.detail-content li span {
    display: block;

    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.5;
}


/* =========================================================
   13. LOCATION
   ========================================================= */

.location-section {
    text-align: center;

    background: white;

    margin-bottom: 70px;

    box-shadow:
        0 12px 35px rgba(20, 34, 50, 0.06);
}

.location-section .section-heading {
    margin-inline: auto;
}

.location-links {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 10px;
    padding-inline: 12px;

    box-sizing: border-box;
}

.location-category-button {
    border: 1px solid #cdbb96;

    background: white;

    padding: 13px 20px;

    border-radius: 4px;

    color: var(--navy);

    font-family: inherit;

    font-size: 0.85rem;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.location-category-button:hover {
    border-color: #a98238;

    background: #f8f5ee;

    transform: translateY(-2px);
}

.location-category-button.active {
    background: var(--navy);

    border-color: var(--navy);

    color: white;
}

.location-panel {
    width: min(
        100%,
        950px
    );

    margin:
        28px auto
        0;

    background: white;

    border: 1px solid var(--border);

    text-align: left;

    padding: 30px;

    display: none;

    box-shadow:
        0 12px 35px rgba(20, 34, 50, 0.06);
}

.location-panel.is-visible {
    display: block;
}

.location-panel-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.location-panel-title {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.65rem;

    font-weight: 400;
}

.location-panel-subtitle {
    margin: 5px 0 0;

    color: var(--muted);

    font-size: 0.8rem;
}

.location-panel-groups {
    display: grid;

    gap: 22px;
}

.location-group-title {
    margin: 0 0 8px;

    color: var(--gold-dark, #a98238);

    font-size: 0.68rem;

    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}

.location-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    border: none;
}

.location-place {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    min-width: 0;

    min-height: 72px;

    padding: 16px 18px;

    border: 1px solid var(--border);

    background: #ffffff;

    border-radius: 4px;

    color: var(--navy);

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.location-place:hover {
    background: #faf8f3;

    border-color: var(--gold-light);

    box-shadow:
        0 8px 22px rgba(20, 34, 50, 0.07);

    transform: translateY(-2px);
}

.location-place-name {
    min-width: 0;

    color: var(--navy);

    font-size: 0.88rem;

    line-height: 1.45;
}

.location-place-note {
    display: block;

    margin-top: 4px;

    color: var(--muted);

    font-size: 0.72rem;

    line-height: 1.45;
}

.location-map-link {
    flex-shrink: 0;

    color: var(--navy);

    font-size: 0.72rem;

    font-weight: 600;

    white-space: nowrap;
}

.location-more {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid var(--border);

    text-align: center;
}

.location-more-link {
    color: var(--navy);

    font-size: 0.8rem;

    font-weight: 600;

    text-decoration: none;
}

.location-more-link:hover {
    color: var(--gold-dark, #a98238);
}

/* =========================================================
   ABOUT / CONTACT
   ========================================================= */

.contact-section {
    background: white;

    padding-top: 55px;
    padding-bottom: 70px;
     margin-bottom: 60px;

    box-shadow:
        0 12px 35px rgba(20, 34, 50, 0.06);
}

.contact-inner {
    display: block;

    max-width: 1100px;
     margin: 0 auto;
}

/* 
.contact-intro {
    padding-top: 8px;
}

.contact-intro h2 {
    max-width: 520px;

    margin:
        18px 0 26px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        2.2rem,
        4vw,
        4rem
    );

    font-weight: 400;

    line-height: 1.08;
}

.contact-intro-text {
    max-width: 500px;

    margin: 0 0 14px;

    color: var(--muted);

    font-size: 0.9rem;

    line-height: 1.8;
}
*/

.contact-heading {
    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 28px;
}

.contact-heading span {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        10px 22px;

    background: #f5f0e7;

    color: #b3832f;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.22em;

    text-transform: uppercase;
}

.contact-details {
    border-top: none;
}

.contact-item {
    display: grid;

    grid-template-columns:
        110px 1fr auto;

    gap: 24px;

    align-items: start;

    padding: 22px 0;

    border-bottom: 1px solid var(--border);

    color: inherit;

    text-decoration: none;

    transition:
        padding-left 0.2s ease,
        background 0.2s ease;
}


.contact-item:hover {
    padding-left: 8px;
}

.contact-label {
    color: var(--navy);

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.contact-value {
    color: var(--muted);

    font-size: 0.84rem;

    line-height: 1.7;
}

.contact-action {
    color: var(--navy);

    font-size: 0.72rem;

    font-weight: 600;

    white-space: nowrap;
}

.contact-item:hover .contact-action {
    color: var(--gold-dark, #a98238);
}

.contact-actions {
    display: flex;

    gap: 12px;

    margin-top: 26px;
}

.contact-primary-button,
.contact-secondary-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding:
        0 22px;

    border: 1px solid var(--navy);

    border-radius: 3px;

    font-size: 0.76rem;

    font-weight: 600;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.contact-primary-button {
    background: var(--navy);

    color: white;
}

.contact-primary-button:hover {
    background: #132b49;

    transform: translateY(-1px);
}

.contact-secondary-button {
    background: white;

    color: var(--navy);
}

.contact-secondary-button:hover {
    background: #faf8f3;

    border-color: var(--gold-light);

    transform: translateY(-1px);
}   

/* =========================================================
   14. BOOKING
   ========================================================= */

.booking-section {
    background: var(--navy);

    color: white;

    padding:
        70px 20px 55px;
}

.booking-inner {
    width: min(
        100%,
        1100px
    );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        0.85fr
        1.15fr;

    gap: 80px;

    align-items: start;
}

.booking-heading {
    position: sticky;

    top: 40px;
}

.booking-heading .eyebrow {
    color: #e4c987;
}

.booking-heading h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        2.8rem,
        5vw,
        4.8rem
    );

    font-weight: 400;

    line-height: 1;

    margin-bottom: 25px;
}

.booking-heading > p:last-child {
    color: rgba(255,255,255,0.72);

    max-width: 400px;
}

.booking-form {
    background: white;

    color: var(--text);

    padding: clamp(
        25px,
        5vw,
        45px
    );

    border-radius: 4px;
}

.form-group {
    margin-bottom: 20px;
}
.booking-form-subheading {
    margin: 28px 0 18px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.25rem;

    font-weight: 400;

    line-height: 1.2;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 0.78rem;

    font-weight: 600;

    color: var(--navy);
}

.children-age-note {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--muted);
    margin-left: 4px;
    white-space: nowrap;
}
.form-group input,
.form-group select {
    width: 100%;

    height: 48px;

    padding: 0 13px;

    border: 1px solid #ddd9d1;

    border-radius: 3px;

    background: white;

    color: var(--text);

    outline: none;

    box-sizing: border-box;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

/* =====================================================
   CLICKABLE FORM CONTROLS
   ===================================================== */

/* Date fields */
#checkIn,
#checkOut {
    cursor: pointer;
}

/* All dropdown/select fields */
.form-group select {
    cursor: pointer;
}

/* =====================================================
   DATE FIELD HOVER / INTERACTION
   ===================================================== */

#checkIn:hover,
#checkOut:hover {
    background: #f8f5ee;

    border-color: var(--gold-light);

    box-shadow:
        0 0 0 3px rgba(
            179,
            138,
            60,
            0.08
        );
}


/* Keep the highlighted state while focused */

#checkIn:focus,
#checkOut:focus {
    background: #f8f5ee;

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(
            179,
            138,
            60,
            0.10
        );

    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(
            179,
            138,
            60,
            0.10
        );
}



.form-group.field-error input,
.form-group.field-error select {
    border-color: #c94b4b;

    box-shadow:
        0 0 0 3px rgba(201, 75, 75, 0.10);
}

.form-error-message {
    display: block;

    margin-top: 6px;

    color: #c94b4b;

    font-size: 0.72rem;

    line-height: 1.4;
}

.booking-capacity-message {
    margin-top: 7px;

    color: var(--muted);

    font-size: 0.72rem;

    line-height: 1.4;
}

.booking-capacity-message.capacity-error {
    color: #c94b4b;
}

.form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}



.booking-note {
    padding: 16px;

    margin: 5px 0 22px;

    background: #f7f4ec;

    border-left: 3px solid var(--gold);
}

.booking-note strong {
    display: block;

    color: var(--navy);

    font-size: 0.82rem;

    margin-bottom: 4px;
}

.booking-note p {
    color: var(--muted);

    font-size: 0.76rem;
}

.booking-submit {
    width: 100%;

    min-height: 52px;

    border: none;

    border-radius: 3px;

    cursor: pointer;

    background: var(--navy);

    color: white;

    font-weight: 600;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.booking-submit:hover {
    background: var(--navy-dark);

    transform: translateY(-1px);
}

/* =========================================================
   14A. PRICE BREAKDOWN
   ========================================================= */

.price-breakdown {
    display: none;

    margin-top: 18px;

    padding: 18px 20px;

    background: #f8f6f0;

    border: 1px solid #e5dfd2;

    border-left: 3px solid #c99a3a;

    font-size: 0.86rem;

    color: var(--muted);
}

.price-breakdown.visible {
    display: block;
}

.price-breakdown-title {
    margin-bottom: 12px;

    font-size: 0.9rem;

    font-weight: 600;

    color: var(--navy);
}

.price-breakdown-row {
    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 6px 0;
}

.price-breakdown-label {
    color: var(--muted);
}

.price-breakdown-value {
    color: var(--navy);

    font-weight: 600;

    white-space: nowrap;
}

.price-breakdown-extra {
    color: #b47d16;
}

.price-breakdown-total {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 10px;

    padding-top: 12px;

    border-top: 1px solid #ddd6c9;

    font-size: 0.98rem;

    font-weight: 700;

    color: var(--navy);
}


/* =========================================================
   15. FOOTER
   ========================================================= */

.site-footer {
    background: #0d1b2e;

    color: white;

    padding:
        55px 20px 25px;
}

.footer-inner {
    width: min(
        100%,
        var(--max-width)
    );

    margin-inline: auto;
}

.footer-brand {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 40px;
}

.footer-brand img {
    width: 72px;
    height: 72px;

    object-fit: contain;

    flex-shrink: 0;
}

.footer-brand strong {
    display: block;

    letter-spacing: 0.16em;

    font-size: 1.15rem;
}

.footer-brand span {
    display: block;

    color: rgba(255,255,255,0.5);

    font-size: 0.84rem;

    margin-top: 5px;
}

.footer-links {
    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    padding-bottom: 30px;

    border-bottom:
        1px solid
        rgba(255,255,255,0.10);

    color: rgba(255,255,255,0.72);

    font-size: 0.8rem;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    color: rgba(255,255,255,0.4);

    font-size: 0.7rem;
}


/* =========================================================
   16. WHATSAPP
   ========================================================= */

.whatsapp-button {
    position: fixed;

    right: 22px;
    bottom: 22px;

    z-index: 30;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #20c76a;

    color: white;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.18);

    text-decoration: none;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.whatsapp-icon {
    width: 30px;
    height: 30px;

    display: block;
}

.whatsapp-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 11px 30px rgba(0,0,0,0.22);
}

/* =========================================================
   17. TABLET
   ========================================================= */

@media (max-width: 900px) {

   .header-inner {
    width: calc(100% - 50px);

    height: 92px;
}

.brand-logo {
    width: 78px;

    height: 78px;
}

.brand-name {
    font-size: 1.8rem;
}

.brand-subtitle {
    font-size: 0.78rem;

    letter-spacing: 0.28em;
}

.main-nav {
    gap: 20px;
}

    .main-nav > a:not(.nav-book-button) {
        display: none;
    }

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

    .highlight-item:nth-child(2) {
        border-right: none;
    }

    .highlight-item:nth-child(-n+2) {
        border-bottom:
            1px solid var(--border);
    }

           .room-grid {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    .room-card {
        display: block;
    }

    .room-card-image {
        height: 300px;

        min-height: 0;
    }

    .property-introduction {
        grid-template-columns: 1fr;
    }

    .property-image {
        min-height: 500px;
    }

    .experience-grid {
    grid-template-columns:
        1fr 1fr;

    grid-template-rows:
        330px
        235px
        235px;

    gap: 14px;
    }

    .experience-large {
        grid-column: span 2;

        grid-row: span 1;
    }

    .details-grid {
        gap: 40px;
    }

    .booking-inner {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .booking-heading {
        position: static;
    }
}


/* =========================================================
   18. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .booking-form-subheading {
    margin-top: 24px;

    margin-bottom: 16px;

    font-size: 1.15rem;
    }

    .eyebrow {
        font-size: 0.74rem;

        letter-spacing: 0.20em;

        margin-bottom: 13px;
    }

    .section {
        width: min(
            calc(100% - 30px),
            var(--max-width)
        );
    }


    /* -----------------------------------------------------
       MOBILE HEADER
       ----------------------------------------------------- */

    .header-inner {
    width: calc(100% - 30px);

    height: 78px;

    gap: 12px;
}


.brand {
    gap: 9px;

    min-width: 0;
}


.brand-logo {
    width: 58px;

    height: 58px;
}


.brand-name {
    font-size: 1.18rem;

    letter-spacing: 0.11em;
}


.brand-subtitle {
    margin-top: 4px;

    font-size: 0.62rem;

    letter-spacing: 0.25em;
}


.nav-book-button {
    min-height: 40px;

    padding:
        0 15px;

    font-size: 0.78rem;

    flex-shrink: 0;
}


    /* -----------------------------------------------------
       MOBILE HERO
       ----------------------------------------------------- */

    .hero {
        min-height: 650px;

        height: 82vh;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(9, 22, 39, 0.40),
                rgba(9, 22, 39, 0.12)
            );
    }

    .hero-content {
        width: calc(100% - 30px);

        padding-top: 60px;

        /*
           No large dark rectangle.
           A subtle glow is used instead.
        */
    }

    .hero-content::before {
        left: -30px;
        right: -30px;

        top: -35px;
        bottom: -35px;

        background:
            radial-gradient(
                ellipse at center,
                rgba(8, 20, 35, 0.34) 0%,
                rgba(8, 20, 35, 0.17) 42%,
                rgba(8, 20, 35, 0.04) 68%,
                rgba(8, 20, 35, 0) 82%
            );
    }
    
    .hero-content .eyebrow {
        color: #fdd571;
        font-size: 0.74rem;

        letter-spacing: 0.20em;

        margin-bottom: 16px;

        text-shadow:
            0 1px 5px rgba(0, 0, 0, 0.45);
    }
   
    .hero-content h1 {
        font-size: clamp(
            3.1rem,
            14vw,
            4.8rem
        );

        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;

        max-width: 450px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;

        max-width: 300px;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }


    /* -----------------------------------------------------
       MOBILE QUICK HIGHLIGHTS
       ----------------------------------------------------- */

    .quick-highlights {
        width: calc(100% - 30px);

        margin-top: -25px;

        grid-template-columns: 1fr;
    }

    .highlight-item,
    .highlight-item:nth-child(2) {
        border-right: none;

        border-bottom:
            1px solid var(--border);
    }

    .highlight-item:last-child {
        border-bottom: none;
    }


    /* -----------------------------------------------------
       MOBILE ROOMS
       ----------------------------------------------------- */

    .rooms-section {
    padding-top: 65px;
    padding-bottom: 70px;
    }

    .experience-section {
    padding-top: 55px;
    }

       .room-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .room-card {
        display: block;
    }

    .room-card-image {
        height: 320px;

        min-height: 0;
    }

    .room-card-content {
        padding: 23px;
    }

    .room-description {
        min-height: auto;

        margin-bottom: 15px;
    }


    /* -----------------------------------------------------
       MOBILE PROPERTY INTRODUCTION
       ----------------------------------------------------- */

    .property-introduction {
    width: 100%;

    margin: 75px 0 85px;

    border-left: none;
    border-right: none;

    box-shadow:
        0 12px 35px rgba(20, 34, 50, 0.06);
    }

    .property-image {   
        min-height: 380px;
    }

    .property-content {
        padding:
            45px 25px 50px;
    }

    .property-content h2 {
    font-size: clamp(
        2.2rem,
        10vw,
        3rem
    );

        line-height: 1.08;
    }

    .property-content p:not(.eyebrow) {
        font-size: 0.92rem;
        line-height: 1.75;
}
    /* -----------------------------------------------------
       MOBILE EXPERIENCE GALLERY
       ----------------------------------------------------- */

    .experience-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows:
            300px
            repeat(4, 225px);

        gap: 12px;
    }
    
    .experience-large {
        grid-column: auto;
        grid-row: auto;
    }

    .experience-caption {
    padding:
        45px 18px 18px;
    }

    .experience-caption span {
        font-size: 0.64rem;

        letter-spacing: 0.14em;
    }

    .experience-caption strong {
        font-size: 1.18rem;
    }

    /* -----------------------------------------------------
       MOBILE FACILITIES
       ----------------------------------------------------- */

    .facilities-section {
    width: calc(100% - 30px);

    padding:
        55px 18px;
}

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

    .facility:nth-child(odd) {
        border-right: none;

        padding-right: 10px;
    }

    .facility:nth-child(even) {
        padding-left: 10px;
    }


    /* -----------------------------------------------------
       MOBILE TERRACE
       ----------------------------------------------------- */

    .signature-view {
    height: auto;

    min-height: 0;
    }



   


    /* -----------------------------------------------------
       MOBILE PROPERTY DETAILS
       ----------------------------------------------------- */

       .details-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .detail-image {
        height: 380px;
    }


        .detail-content {
        padding-inline: 10px;
    }

    .facilities-section {
        margin-bottom: 60px;
    }

    .signature-view {
        margin-bottom: 60px;
    }

    .property-details-section {
        margin-bottom: 60px;
    }

    .location-section {
        margin-bottom: 60px;
    }


    /* -----------------------------------------------------
       MOBILE ABOUT / CONTACT
       ----------------------------------------------------- */

    .contact-section {
        padding-top: 35px;

        padding-bottom: 75px;
        margin-bottom: 60px;
    }

    .contact-inner {
        grid-template-columns: 1fr;

        gap: 55px;
        padding-inline: 18px;
    }

    .contact-intro h2 {
        font-size: 2.25rem;
    }

    .contact-item {
        grid-template-columns: 1fr;

        gap: 6px;

        padding: 18px 0;
    }

    .contact-action {
        margin-top: 3px;
    }

    .contact-actions {
        flex-direction: column;

        gap: 10px;
    }

    .contact-primary-button,
    .contact-secondary-button {
        width: 100%;
    }

    /* -----------------------------------------------------
       MOBILE BOOKING
       ----------------------------------------------------- */

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;

    }

    .children-age-note {
        font-size: 0.68rem;
    }

    .price-breakdown {
        margin-top: 16px;

        padding: 16px;
    }

    .price-breakdown-row {
        gap: 12px;
    }

    .booking-section {
    padding-top: 55px;

    padding-right: 15px;

    padding-bottom: 45px;

    padding-left: 15px;
}

    .booking-form {
        padding: 22px 18px;
    }

    .location-links {
        display: grid;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 8px;

        width: calc(100% - 16px);

        margin-inline: auto;

        box-sizing: border-box;
    }

    .location-category-button {
        width: 100%;

        min-width: 0;

        box-sizing: border-box;

        padding:
            12px 8px;

        border-radius: 4px;

        font-size: 0.78rem;
    }

    .location-panel {
        padding: 22px 18px;
    }

    .location-panel-header {
        align-items: flex-start;

        flex-direction: column;

        gap: 4px;
    }

    .location-panel-title {
        font-size: 1.4rem;
    }

    .location-list {
        grid-template-columns: 1fr;
    }

    .location-place {
    min-height: 68px;

    padding: 14px 15px;
    }

    /* -----------------------------------------------------
       MOBILE FOOTER
       ----------------------------------------------------- */

    .footer-brand {
        gap: 14px;
    }

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

    .footer-brand strong {
        font-size: 1rem;

        letter-spacing: 0.13em;
    }

    .footer-brand span {
        font-size: 0.78rem;
    }

    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }


    /* -----------------------------------------------------
       MOBILE WHATSAPP
       ----------------------------------------------------- */

    .whatsapp-button {
        width: 52px;
        height: 52px;

        right: 16px;
        bottom: 16px;
    }


}

/* =========================================================
   ROOM GALLERY
========================================================= */

.room-gallery-card {
    cursor: pointer;
}

.room-gallery-card:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 4px;
}


/* ---------------------------------------------------------
   MODAL
--------------------------------------------------------- */

.room-gallery-modal {
    position: fixed;

    inset: 0;

    z-index: 100;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    background:
        rgba(8, 20, 35, 0.82);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.room-gallery-modal.is-open {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;
}


/* ---------------------------------------------------------
   BACKDROP
--------------------------------------------------------- */

.room-gallery-backdrop {
    position: absolute;

    inset: 0;
}


/* ---------------------------------------------------------
   DIALOG
--------------------------------------------------------- */

.room-gallery-dialog {
    position: relative;

    z-index: 2;

    width: min(
        1050px,
        100%
    );

    max-height: calc(100vh - 60px);

    display: flex;

    flex-direction: column;

    background: #ffffff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.30);

    transform:
        translateY(12px)
        scale(0.985);

    transition:
        transform 0.25s ease;
}

.room-gallery-modal.is-open
.room-gallery-dialog {
    transform:
        translateY(0)
        scale(1);
}


/* ---------------------------------------------------------
   CLOSE
--------------------------------------------------------- */

.room-gallery-close {
    position: absolute;

    top: 16px;
    right: 18px;

    z-index: 5;

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.94);

    color: var(--navy);

    font-size: 1.8rem;

    line-height: 1;

    cursor: pointer;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.room-gallery-close:hover {
    transform: scale(1.05);

    background: white;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.room-gallery-header {
    padding:
        27px
        70px
        20px
        30px;
}

.room-gallery-header .eyebrow {
    margin-bottom: 7px;
}

.room-gallery-header h2 {
    margin: 0;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        1.8rem,
        3vw,
        2.5rem
    );

    font-weight: 400;
}


/* ---------------------------------------------------------
   MAIN IMAGE
--------------------------------------------------------- */

.room-gallery-viewer {
    position: relative;

    width: 100%;

    height: min(
        58vh,
        590px
    );

    background:
        #111b27;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.room-gallery-viewer img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* ---------------------------------------------------------
   ARROWS
--------------------------------------------------------- */

.room-gallery-arrow {
    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 3;

    width: 48px;
    height: 48px;

    border: none;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.92);

    color: var(--navy);

    font-size: 2rem;

    line-height: 1;

    cursor: pointer;

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.room-gallery-arrow:hover {
    background: white;

    transform:
        translateY(-50%)
        scale(1.06);
}

.room-gallery-prev {
    left: 18px;
}

.room-gallery-next {
    right: 18px;
}


/* ---------------------------------------------------------
   COUNTER + CAPTION
--------------------------------------------------------- */

.room-gallery-counter {
    padding-top: 13px;

    text-align: center;

    color: var(--muted);

    font-size: 0.78rem;
}

.room-gallery-caption {
    padding-top: 4px;

    text-align: center;

    color: var(--navy);

    font-size: 0.9rem;

    font-weight: 600;
}


/* ---------------------------------------------------------
   FOOTER / BOOKING
--------------------------------------------------------- */

.room-gallery-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding:
        18px
        30px
        24px;
}

.room-gallery-price {
    color: var(--navy);

    font-size: 1rem;

    font-weight: 600;
}

.room-gallery-book {
    min-height: 48px;

    padding:
        0 28px;

    border: none;

    border-radius: 4px;

    background:
        var(--navy);

    color: white;

    font-size: 0.88rem;

    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.room-gallery-book:hover {
    transform:
        translateY(-2px);

    background:
        #102b4d;
}


/* ---------------------------------------------------------
   PREVENT BACKGROUND SCROLL
--------------------------------------------------------- */

body.room-gallery-open {
    overflow: hidden;
}


/* =========================================================
   ROOM GALLERY — MOBILE
========================================================= */

@media (max-width: 900px) {

    .room-gallery-modal {
        padding: 0;
    }

    .room-gallery-dialog {
        width: 100%;

        height: 100%;

        max-height: none;

        border-radius: 0;
    }

    .room-gallery-header {
        padding:
            22px
            60px
            15px
            20px;
    }

    .room-gallery-header h2 {
        font-size: 1.65rem;
    }

    .room-gallery-viewer {
        height: 55vh;
    }

    .room-gallery-arrow {
        width: 42px;
        height: 42px;

        font-size: 1.7rem;
    }

    .room-gallery-prev {
        left: 10px;
    }

    .room-gallery-next {
        right: 10px;
    }

    .room-gallery-footer {
        padding:
            16px
            20px
            22px;
    }

    .room-gallery-book {
        padding:
            0 21px;
    }

    
}