/* ==========================================================================
   Font Face Definitions — Givonic
   ========================================================================== */
@font-face {
    font-family: 'Givonic';
    src: url('fonts/Givonic-Font/Givonic-Thin.otf') format('opentype'),
         url('fonts/Givonic-Font/Givonic-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Givonic';
    src: url('fonts/Givonic-Font/Givonic-Light.otf') format('opentype'),
         url('fonts/Givonic-Font/Givonic-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Givonic';
    src: url('fonts/Givonic-Font/Givonic-Regular.otf') format('opentype'),
         url('fonts/Givonic-Font/Givonic-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Givonic';
    src: url('fonts/Givonic-Font/Givonic-Regular.otf') format('opentype'),
         url('fonts/Givonic-Font/Givonic-Regular.ttf') format('truetype');
    font-weight: 450;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Givonic';
    src: url('fonts/Givonic-Font/Givonic-SemiBold.otf') format('opentype'),
         url('fonts/Givonic-Font/Givonic-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Givonic';
    src: url('fonts/Givonic-Font/Givonic-Bold.otf') format('opentype'),
         url('fonts/Givonic-Font/Givonic-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Givonic';
    src: url('fonts/Givonic-Font/Givonic-Black.otf') format('opentype'),
         url('fonts/Givonic-Font/Givonic-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    --navy: #122949;
    --gold: #b79454;
    --gold-light: #d6c19b;
    --gold-dark: #734f39;
    --blue-link: #1b4e8d;
    --slate-navy: #39416f;
    --text-dark: #464555;
    --white: #ffffff;
    --off-white: #fffdf4;
    --beige: #eee7dd;
    --warm-beige: #f4efe3;
    --text-grey: #727272;
    --hero-dark: #050f1d;
    --font-serif: 'Cormorant', serif;
    --font-sans: 'Givonic', 'Jost', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    color: #333;
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 100;
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    padding: 10px 60px;
    max-width: 1920px;
    margin: 0 auto;
}

.header-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header-nav a {
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--white);
    transition: width 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-nav a:hover::after {
    width: 100%;
}

.logo-center {
    display: flex;
    justify-content: center;
}

.header-logo-img {
    width: 201px;
    height: 80px;
    object-fit: contain;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.btn-reservation {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 259px;
    height: 48px;
    border: 0.5px solid var(--white);
    color: var(--white);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    background: transparent;
    cursor: pointer;
    transition: background-color 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-reservation:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 1000px;
    background-color: var(--hero-dark);
    overflow: hidden;
}

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

.hero-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 321px;
    background: linear-gradient(180deg, rgba(5, 15, 29, 0.85) 0%, rgba(5, 15, 29, 0) 100%);
    pointer-events: none;
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 379px;
    background: linear-gradient(0deg, rgba(5, 15, 29, 0.9) 0%, rgba(5, 15, 29, 0) 100%);
    pointer-events: none;
}

.hero-text-overlay {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 785px;
    max-width: 90%;
    text-align: center;
    z-index: 3;
}

.hero-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 60px;
    line-height: 60px;
    color: var(--white);
    text-transform: uppercase;
}

/* ==========================================================================
   Heritage / About Section (Fluid Desktop Layout — Zero Overlap)
   ========================================================================== */
.heritage-section {
    position: relative;
    width: 100%;
    background-color: var(--warm-beige);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: 800px;
}

.heritage-img-left {
    position: relative;
    width: 24%;
    max-width: 435px;
    height: auto;
    aspect-ratio: 435 / 570;
    margin-top: 180px;
    flex-shrink: 0;
}

.heritage-img-left img,
.heritage-img-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heritage-content {
    position: relative;
    width: 38%;
    max-width: 626px;
    margin-top: 242px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    flex-shrink: 0;
}

.heritage-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 60px;
    line-height: 62px;
    color: var(--navy);
    text-transform: capitalize;
}

.heritage-desc {
    font-family: var(--font-sans);
    font-weight: 450;
    font-size: 18px;
    line-height: 24px;
    color: var(--text-grey);
    max-width: 552px;
}

.heritage-img-right {
    position: relative;
    width: 23%;
    max-width: 415px;
    height: auto;
    aspect-ratio: 415 / 544;
    margin-top: 75px;
    flex-shrink: 0;
}

/* ==========================================================================
   Suites Slider Section (Fluid Desktop Scaling)
   ========================================================================== */
.suites-section {
    position: relative;
    width: 100%;
    min-height: 796px;
    background-color: var(--off-white);
    padding-bottom: 60px;
}

.suites-header {
    text-align: center;
    padding-top: 60px;
}

.suites-subtitle {
    display: block;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.92px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.suites-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 60px;
    line-height: 62px;
    letter-spacing: -2.4px;
    color: var(--navy);
    text-transform: capitalize;
}

.suites-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 1496px;
    margin: 40px auto 0;
    padding: 0 20px;
}

.suites-track {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: center;
}

.suite-card {
    flex: 1;
    max-width: 738px;
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.suite-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.suite-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suite-image-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 207px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.image-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.image-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
}

.image-dots .dot.mid {
    background-color: rgba(255, 255, 255, 0.6);
}

.image-dots .dot.active {
    background-color: var(--white);
}

.suite-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.suite-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suite-text h3 {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 32px;
    line-height: 32px;
    letter-spacing: -0.64px;
    color: var(--navy);
    text-transform: capitalize;
}

.suite-text p {
    font-family: var(--font-sans);
    font-weight: 450;
    font-size: 18px;
    line-height: 20px;
    color: var(--text-grey);
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    color: var(--blue-link);
    text-transform: uppercase;
    position: relative;
    padding-bottom: 2px;
    transition: transform 0.3s ease-out, color 0.3s ease-out;
}

.cta-link:hover {
    animation: kf_1_30_translate_0 0.3s linear forwards;
}

.cta-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease-out;
}

.cta-link:hover svg {
    animation: kf_1_31_translate_0 0.3s linear forwards;
}

@keyframes kf_1_30_translate_0 {
    0% {
        animation-timing-function: ease-out;
        transform: translate(0px, 0px);
    }
    100% {
        transform: translate(-1px, 0px);
    }
}

@keyframes kf_1_31_translate_0 {
    0% {
        animation-timing-function: ease-out;
        transform: translate(0px, 0px);
    }
    100% {
        transform: translate(3px, 0px);
    }
}

.slider-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: opacity 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    opacity: 0.7;
}

.slider-arrow.prev { left: 40px; }
.slider-arrow.next { right: 40px; }

/* ==========================================================================
   Dining Section (Fluid Desktop Grid)
   ========================================================================== */
.dining-section {
    max-width: 1426px;
    width: calc(100% - 80px);
    margin: 100px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.dining-content {
    width: 42%;
    max-width: 528px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

.dining-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.dining-subtitle {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.92px;
    color: var(--gold-light);
    text-transform: uppercase;
}

.dining-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 60px;
    line-height: 62px;
    letter-spacing: -2.4px;
    color: var(--navy);
    text-transform: capitalize;
}

.dining-circle-img {
    width: 184px;
    height: 184px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.dining-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dining-desc {
    font-family: var(--font-sans);
    font-weight: 450;
    font-size: 18px;
    line-height: 24px;
    color: var(--text-grey);
    max-width: 528px;
}

.dining-feature-img {
    width: 54%;
    max-width: 758px;
    height: auto;
    aspect-ratio: 758 / 600;
    flex-shrink: 0;
}

.dining-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Living Spaces Section
   ========================================================================== */
.living-spaces-section {
    position: relative;
    width: calc(100% - 80px);
    max-width: 1800px;
    height: 800px;
    margin: 100px auto 0;
    overflow: hidden;
}

.living-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.living-gradient-top,
.living-gradient-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 321px;
    pointer-events: none;
}

.living-gradient-top {
    top: 0;
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.6) 0%, rgba(30, 30, 30, 0) 100%);
}

.living-gradient-bottom {
    bottom: 0;
    background: linear-gradient(0deg, rgba(30, 30, 30, 0.6) 0%, rgba(30, 30, 30, 0) 100%);
}

.living-overlay-dark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 232px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.living-text-top {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1.28px;
    color: var(--white);
    text-transform: uppercase;
    z-index: 5;
}

.living-text-bottom {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: 60px;
    line-height: 62px;
    letter-spacing: -2.4px;
    color: var(--white);
    text-transform: capitalize;
    white-space: nowrap;
    z-index: 5;
}

.living-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border: none;
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.living-arrow:hover {
    opacity: 0.7;
}

.living-arrow.prev { left: 24px; }
.living-arrow.next { right: 24px; }

/* ==========================================================================
   Private Villa Bookings (Fluid Desktop Grid)
   ========================================================================== */
.villa-section {
    max-width: 1360px;
    width: calc(100% - 80px);
    margin: 100px auto 0;
    display: flex;
    min-height: 680px;
}

.villa-content {
    width: 50%;
    background-color: var(--beige);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 4vw;
    flex-shrink: 0;
}

.villa-content-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 442px;
}

.villa-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 30px;
}

.villa-subtitle {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 1.92px;
    color: var(--gold-dark);
    text-transform: uppercase;
}

.villa-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 60px;
    line-height: 62px;
    letter-spacing: -2.4px;
    color: var(--navy);
    text-transform: capitalize;
}

.villa-offer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.villa-offer .promo-title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: 32px;
    line-height: 36px;
    color: var(--slate-navy);
}

.villa-offer .promo-date {
    font-family: var(--font-sans);
    font-weight: 450;
    font-size: 18px;
    line-height: 22px;
    color: var(--text-dark);
}

.villa-desc {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 18px;
    line-height: 22px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.villa-cta {
    margin-bottom: 36px;
}

.villa-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.villa-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.villa-counter .current {
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 24px;
    color: var(--slate-navy);
}

.villa-counter .total {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 15.6px;
    line-height: 20.8px;
    color: var(--slate-navy);
}

.villa-divider {
    flex: 1;
    height: 1px;
    background-color: var(--slate-navy);
    opacity: 0.4;
}

.villa-arrows {
    display: flex;
    gap: 16px;
}

.villa-arrow-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.villa-arrow-btn:hover {
    opacity: 0.7;
}

.villa-feature-img {
    width: 50%;
    height: auto;
    aspect-ratio: 1 / 1;
    flex-shrink: 0;
}

.villa-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    margin-top: 100px;
}

.footer-navy-box {
    background-color: var(--navy);
    max-width: 1800px;
    width: calc(100% - 80px);
    margin: 0 auto;
    padding: 60px 80px;
    position: relative;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.footer-logo-img {
    width: 252px;
    height: 100px;
    object-fit: contain;
}

.footer-socials {
    display: flex;
    gap: 18px;
    align-items: center;
}

.footer-socials a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    border: 0.9px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    color: var(--white);
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-socials a:hover {
    background-color: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.footer-socials a svg {
    width: 48px;
    height: 48px;
    display: block;
}

.footer-socials a svg path {
    fill: currentColor;
    transition: fill 0.3s ease;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-nav-list a {
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: var(--white);
    display: inline-block;
    transition: color 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-nav-list a:hover {
    color: var(--gold-light);
    transform: translateX(6px);
}

.footer-nav-list a:hover {
    color: var(--gold);
}

.contact-list {
    display: flex;
    flex-direction: column;
}

.contact-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item p,
.contact-item a {
    font-family: var(--font-sans);
    font-weight: 450;
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    opacity: 0.92;
    display: block;
}

.contact-item a:hover {
    color: var(--gold);
}

.footer-bottom-bar {
    max-width: 1800px;
    width: calc(100% - 80px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.footer-bottom-bar p {
    font-family: var(--font-sans);
    font-weight: 450;
    font-size: 16px;
    line-height: 24px;
    color: var(--navy);
}

.footer-bottom-bar .credits a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-bar .credits a:hover {
    color: var(--gold);
}

.footer-bottom-bar .credits strong {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Laptop Scaling (1440px - 1680px) */
@media (max-width: 1680px) {
    .heritage-section {
        padding: 0 30px;
    }
    .heritage-img-left {
        width: 22%;
        margin-top: 180px;
    }
    .heritage-img-right {
        width: 21%;
        margin-top: 75px;
    }
    .heritage-content {
        width: 42%;
        margin-top: 220px;
    }
    .suites-carousel-wrapper {
        width: 100%;
        max-width: 1300px;
    }
    .slider-arrow.prev { left: 20px; }
    .slider-arrow.next { right: 20px; }
}

@media (max-width: 1440px) {
    .heritage-title,
    .suites-title,
    .dining-title,
    .villa-title {
        font-size: 48px;
        line-height: 52px;
    }
    .dining-section {
        gap: 40px;
    }
    .villa-section {
        margin: 80px auto 0;
    }
}

/* Tablets Portrait & Medium Devices (<1024px) */
@media (max-width: 1024px) {
    .hero-section {
        height: 700px;
    }
    .hero-title {
        font-size: 44px;
        line-height: 48px;
    }

    .heritage-section {
        height: auto;
        padding: 80px 24px;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .heritage-img-left,
    .heritage-img-right,
    .heritage-content {
        width: 100%;
        max-width: 600px;
        margin-top: 0;
    }
    .heritage-title {
        font-size: 42px;
        line-height: 46px;
    }

    .suites-section {
        height: auto;
        padding-bottom: 80px;
    }
    .suites-carousel-wrapper {
        width: 100%;
        padding: 0 24px;
        margin-top: 40px;
    }
    .suites-track {
        flex-direction: column;
        align-items: center;
    }
    .suite-card {
        width: 100%;
        max-width: 600px;
    }
    .slider-arrow {
        display: none;
    }

    .dining-section {
        flex-direction: column;
        padding: 80px 24px 0;
        gap: 40px;
        width: 100%;
    }
    .dining-content,
    .dining-feature-img {
        width: 100%;
        max-width: 600px;
    }

    .living-spaces-section {
        width: calc(100% - 32px);
        height: 550px;
    }
    .living-text-bottom {
        font-size: 38px;
        line-height: 42px;
        bottom: 30px;
        white-space: normal;
    }
    .living-arrow {
        width: 50px;
        height: 50px;
    }
    .living-arrow.prev { left: 16px; }
    .living-arrow.next { right: 16px; }

    .villa-section {
        flex-direction: column;
        height: auto;
        margin: 60px 16px 0;
        width: calc(100% - 32px);
    }
    .villa-content,
    .villa-feature-img {
        width: 100%;
        height: auto;
    }
    .villa-feature-img {
        aspect-ratio: 1 / 1;
    }

    .footer-navy-box {
        width: calc(100% - 32px);
        padding: 40px 24px;
    }
    .footer-flex {
        flex-direction: column;
        gap: 40px;
        align-items: flex-start;
    }
    .footer-bottom-bar {
        width: calc(100% - 32px);
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Mobile Phones (<768px) */
@media (max-width: 768px) {
    .site-header {
        height: 80px;
    }
    .header-container {
        padding: 10px 16px;
        grid-template-columns: 1fr auto 1fr;
    }
    .header-nav {
        gap: 16px;
    }
    .header-nav a {
        font-size: 12px;
    }
    .btn-reservation {
        width: auto;
        padding: 0 14px;
        height: 38px;
        font-size: 13px;
    }
    .header-logo-img {
        width: 120px;
        height: auto;
    }
    .hero-section {
        height: 500px;
    }
    .hero-title {
        font-size: 32px;
        line-height: 36px;
    }
    .heritage-title,
    .suites-title,
    .dining-title,
    .villa-title {
        font-size: 34px;
        line-height: 38px;
    }
    .suite-image-wrapper {
        height: 250px;
    }
    .suite-text h3 {
        font-size: 24px;
        line-height: 28px;
    }
    .villa-content {
        padding: 30px 16px;
    }
    .villa-offer .promo-title {
        font-size: 24px;
        line-height: 28px;
    }
    .villa-controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .villa-divider {
        display: none;
    }
    .footer-logo-img {
        width: 180px;
    }
}

/* Very Small Mobile Phones (<480px) */
@media (max-width: 480px) {
    .site-header {
        height: 70px;
    }
    .header-container {
        padding: 6px 8px;
    }
    .header-nav {
        gap: 8px;
    }
    .header-nav a {
        font-size: 11px;
        padding-bottom: 2px;
    }
    .btn-reservation {
        padding: 0 6px;
        height: 32px;
        font-size: 9.5px;
        white-space: nowrap;
        letter-spacing: 0.2px;
    }
    .header-logo-img {
        width: 85px;
    }
}

