/* =========================================================
   PREMIUM HERO
========================================================= */
.hotel-hero {
    position: relative;
    min-height: 100svh;
    height: 900px;
    max-height: 1000px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--secondary);
    color: var(--white);
}

/* =========================================================
   HERO MEDIA
========================================================= */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Poster Image */
.hero-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    animation: heroPosterReveal 1.4s var(--transition-smooth) forwards;
}

@keyframes heroPosterReveal {
    from {
        opacity: 0;
        transform: scale(1.08);
    }

    to {
        opacity: 1;
        transform: scale(1.03);
    }
}

/* =========================================================
   HERO VIDEO
========================================================= */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.03);
    transition:
        opacity 1.6s ease,
        transform 8s ease;
    pointer-events: none;
}

/*
    JS adds .video-ready after the video
    becomes available.
*/
.hero-video.video-ready {
    opacity: 1;
    transform: scale(1);
}

/* =========================================================
   CINEMATIC OVERLAY
========================================================= */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg,
            rgba(20, 11, 7, 0.82) 0%,
            rgba(20, 11, 7, 0.60) 35%,
            rgba(20, 11, 7, 0.25) 68%,
            rgba(20, 11, 7, 0.48) 100%),
        linear-gradient(180deg,
            rgba(20, 11, 7, 0.30) 0%,
            transparent 35%,
            rgba(20, 11, 7, 0.55) 100%);
    pointer-events: none;
}

/* =========================================================
   SUBTLE GOLD ATMOSPHERIC LIGHT
========================================================= */
.hero-light {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
    opacity: 0.65;
}

.hero-light-one {
    width: 380px;
    height: 380px;
    right: -160px;
    top: 18%;
    background:
        radial-gradient(circle,
            rgba(221, 181, 106, 0.20),
            transparent 68%);
    animation:
        heroLightOne 10s ease-in-out infinite;
}

.hero-light-two {
    width: 280px;
    height: 280px;
    left: 38%;
    bottom: -180px;
    background:
        radial-gradient(circle,
            rgba(201, 148, 46, 0.16),
            transparent 68%);
    animation:
        heroLightTwo 12s ease-in-out infinite;
}

@keyframes heroLightOne {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            translate3d(-50px, 30px, 0);
    }
}

@keyframes heroLightTwo {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0);
    }

    50% {
        transform:
            translate3d(60px, -30px, 0);
    }
}

/* =========================================================
   HERO CONTENT
========================================================= */
.hotel-hero .container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    width: min(760px, 100%);
    padding-top: 70px;
    animation:
        heroContentReveal 1s var(--transition-smooth) both;
}

@keyframes heroContentReveal {
    from {
        opacity: 0;
        transform:
            translateY(30px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}

/* =========================================================
   EYEBROW
========================================================= */
.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    color: var(--primary-light);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero-eyebrow-line {
    width: 38px;
    height: 1px;
    background: var(--primary-light);
    flex-shrink: 0;
}

/* =========================================================
   HERO TITLE
========================================================= */
.hero-title {
    max-width: 750px;
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--fs-hero);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--white);
}

.hero-title span {
    display: block;
    color: var(--primary-light);
    font-style: italic;
    margin-left: 0.08em;
}

/* =========================================================
   DESCRIPTION
========================================================= */
.hero-description {
    max-width: 510px;
    margin:
        28px 0 0;
    color:
        rgba(255, 255, 255, 0.78);
    font-size: var(--fs-md);
    font-weight: var(--fw-light);
    line-height: 1.8;
}

/* =========================================================
   HERO ACTIONS
========================================================= */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
}

/* Primary */
.hero-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 54px;
    padding:
        0 22px;
    border:
        1px solid var(--primary);
    border-radius:
        var(--radius-sm);
    background:
        var(--primary);
    color:
        var(--white);
    font-size:
        var(--fs-sm);
    font-weight:
        var(--fw-medium);
    transition:
        transform var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.hero-primary-btn i {
    transition:
        transform var(--transition);
}

.hero-primary-btn:hover {
    color: var(--white);
    background:
        var(--primary-dark);
    transform:
        translateY(-3px);
    box-shadow:
        0 14px 35px rgba(201, 148, 46, 0.25);
}

.hero-primary-btn:hover i {
    transform:
        translateX(5px);
}

/* Secondary */
.hero-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding:
        0 10px;
    color:
        rgba(255, 255, 255, 0.82);
    font-size:
        var(--fs-sm);
    font-weight:
        var(--fw-medium);
    transition:
        color var(--transition);
}

.hero-secondary-btn i {
    font-size:
        var(--fs-xs);
    color:
        var(--primary-light);
    transition:
        transform var(--transition);
}

.hero-secondary-btn:hover {
    color:
        var(--white);
}

.hero-secondary-btn:hover i {
    transform:
        translateY(4px);
}

/* =========================================================
   HERO INFO GLASS CARD
========================================================= */
.hero-info-card {
    width: fit-content;
    max-width: 100%;
    display: flex;
    align-items: center;
    margin-top: 55px;
    padding:
        13px 18px;
    background:
        rgba(255, 255, 255, 0.10);
    border:
        1px solid rgba(255, 255, 255, 0.20);
    border-radius:
        var(--radius-md);
    backdrop-filter:
        blur(18px);
    -webkit-backdrop-filter:
        blur(18px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Info Item */
.hero-info-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding:
        4px 12px;
}

.hero-info-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border:
        1px solid rgba(221, 181, 106, 0.35);
    border-radius:
        50%;
    color:
        var(--primary-light);
    font-size:
        var(--fs-xs);
}

.hero-info-item small {
    display: block;
    margin-bottom: 2px;
    font-size:
        0.62rem;
    font-weight:
        var(--fw-medium);
    letter-spacing:
        0.12em;
    color:
        rgba(255, 255, 255, 0.48);
}

.hero-info-item strong {
    display: block;
    white-space: nowrap;
    font-size:
        var(--fs-xs);
    font-weight:
        var(--fw-medium);
    color:
        rgba(255, 255, 255, 0.90);
}

/* Divider */
.hero-info-divider {
    width: 1px;
    height: 35px;
    background:
        rgba(255, 255, 255, 0.15);
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */
.hero-scroll {
    position: absolute;
    z-index: 3;
    right: 38px;
    bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color:
        rgba(255, 255, 255, 0.60);
    font-size:
        0.60rem;
    letter-spacing:
        0.18em;
    writing-mode:
        vertical-rl;
    transition:
        color var(--transition);
}

.hero-scroll i {
    color:
        var(--primary-light);
    animation:
        scrollArrow 2s ease-in-out infinite;
}

@keyframes scrollArrow {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(7px);
    }
}

.hero-scroll:hover {
    color:
        var(--white);
}

/* =========================================================
   CORNER BRAND DETAIL
========================================================= */
.hero-corner-detail {
    position: absolute;
    z-index: 3;
    right: 40px;
    top: 50%;
    transform:
        translateY(-50%) rotate(90deg);
    display: flex;
    align-items: center;
    gap: 12px;
    color:
        rgba(255, 255, 255, 0.35);
    font-size:
        0.58rem;
    letter-spacing:
        0.20em;
}

.hero-corner-detail div {
    width: 35px;
    height: 1px;
    background:
        rgba(221, 181, 106, 0.50);
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991.98px) {
    .hotel-hero {
        height: auto;
        min-height: 100svh;
        max-height: none;
        align-items: flex-end;
    }

    .hotel-hero .container {
        min-height: 100svh;
        align-items: center;
    }

    .hero-content {
        padding:
            150px 0 90px;
        width: 100%;
    }

    .hero-title {
        font-size:
            clamp(3rem, 9vw, 5rem);
        line-height:
            1.02;
    }

    .hero-description {
        max-width:
            470px;
        font-size:
            var(--fs-base);
        line-height:
            1.7;
    }

    .hero-info-card {
        margin-top:
            40px;
    }

    .hero-corner-detail {
        display: none;
    }

    .hero-scroll {
        right: 22px;
        bottom: 28px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767.98px) {
    .hotel-hero {
        min-height:
            100svh;
    }

    /*
       Slightly different mobile overlay.
       More darkness behind text.
    */
    .hero-overlay {
        background:
            linear-gradient(180deg,
                rgba(20, 11, 7, 0.25) 0%,
                rgba(20, 11, 7, 0.28) 30%,
                rgba(20, 11, 7, 0.80) 72%,
                rgba(20, 11, 7, 0.94) 100%);
    }

    .hotel-hero .container {
        min-height:
            85svh;
        padding-left:
            20px;
        padding-right:
            20px;
    }

    .hero-content {
        padding:
            00px 0 42px;
    }

    .hero-eyebrow {
        margin-bottom:
            18px;
        gap:
            9px;
        font-size:
            0.62rem;
        letter-spacing:
            0.16em;
    }

    .hero-eyebrow-line {
        width:
            25px;
    }

    .hero-title {
        font-size:
            clamp(2.9rem, 14vw, 4.5rem);
        line-height:
            0.98;
        letter-spacing:
            -0.04em;
    }

    .hero-title span {
        margin-top:
            5px;
    }

    .hero-description {
        max-width:
            330px;
        margin-top:
            20px;
        font-size:
            var(--fs-sm);
        line-height:
            1.7;
        color:
            rgba(255, 255, 255, 0.72);
    }

    /* ==============================
       MOBILE CTA
    ============================== */
    .hero-actions {
        width:
            100%;
        margin-top:
            27px;
        gap:
            13px;
    }

    .hero-primary-btn {
        min-height:
            50px;
        padding:
            0 17px;
        font-size:
            var(--fs-xs);
    }

    .hero-secondary-btn {
        min-height:
            50px;
        padding:
            0 5px;
        font-size:
            var(--fs-xs);
    }

    /* ==============================
       MOBILE INFO
    ============================== */
    .hero-info-card {
        width:
            100%;
        margin-top:
            30px;
        padding:
            10px;
        display:
            grid;
        grid-template-columns:
            1fr 1fr;
        gap:
            5px;
        border-radius:
            var(--radius-md);
    }

    .hero-info-item {
        padding:
            7px;
        gap:
            8px;
    }

    .hero-info-item:last-child {
        grid-column:
            1 / -1;
        border-top:
            1px solid rgba(255, 255, 255, 0.10);
        padding-top:
            10px;
    }

    .hero-info-divider {
        display:
            none;
    }

    .hero-info-icon {
        width:
            28px;
        height:
            28px;
    }

    .hero-info-item small {
        font-size:
            0.55rem;
    }

    .hero-info-item strong {
        font-size:
            0.66rem;
        white-space:
            normal;
        line-height:
            1.35;
    }

    /* ==============================
       SCROLL
    ============================== */
    .hero-scroll {
        display:
            none;
    }

    /* ==============================
       LIGHTS
    ============================== */
    .hero-light-one {
        width:
            240px;
        height:
            240px;
        right:
            -130px;
    }

    .hero-light-two {
        width:
            200px;
        height:
            200px;
    }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */
@media (max-width: 380px) {
    .hero-content {
        padding-bottom:
            28px;
    }

    .hero-title {
        font-size:
            2.7rem;
    }

    .hero-description {
        font-size:
            0.78rem;
    }

    .hero-actions {
        flex-wrap:
            wrap;
    }

    .hero-primary-btn {
        width:
            100%;
    }

    .hero-secondary-btn {
        width:
            100%;
        justify-content:
            center;
    }

    .hero-info-card {
        margin-top:
            22px;
    }
}

/* =========================================================
   WHY THIS HOTEL
========================================================= */
.why-hotel-section {
    position: relative;
    padding:
        var(--space-section) 0;
    background:
        var(--ivory);
    overflow: hidden;
    isolation: isolate;
}

/* =========================================================
   BACKGROUND ATMOSPHERE
========================================================= */
.why-bg-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(2px);
}

.why-bg-glow-one {
    width: 500px;
    height: 500px;
    top: -250px;
    right: -180px;
    background:
        radial-gradient(circle,
            rgba(201, 148, 46, 0.09),
            transparent 68%);
}

.why-bg-glow-two {
    width: 420px;
    height: 420px;
    bottom: -250px;
    left: -200px;
    background:
        radial-gradient(circle,
            rgba(36, 21, 14, 0.05),
            transparent 68%);
}

/* =========================================================
   SECTION HEADING
========================================================= */
.why-section-heading {
    margin-bottom:
        clamp(45px, 7vw, 80px);
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    color:
        var(--primary-dark);
    font-size:
        var(--fs-xs);
    font-weight:
        var(--fw-medium);
    letter-spacing:
        0.20em;
    text-transform:
        uppercase;
}

.section-eyebrow-line {
    width: 34px;
    height: 1px;
    background:
        var(--primary);
}

.why-heading-row {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: end;
    gap: 50px;
}

.why-section-title {
    margin: 0;
    color:
        var(--secondary);
    font-family:
        var(--font-display);
    font-size:
        clamp(3rem, 6vw, 5.8rem);
    font-weight:
        var(--fw-regular);
    line-height:
        0.92;
    letter-spacing:
        -0.045em;
}

.why-section-title em {
    display: block;
    margin-left:
        0.10em;
    color:
        var(--primary);
    font-style:
        italic;
}

.why-section-intro {
    max-width: 410px;
    margin: 0;
    color:
        var(--text);
    font-size:
        var(--fs-md);
    font-weight:
        var(--fw-light);
    line-height:
        1.85;
}

/* =========================================================
   MAIN EXPERIENCE GRID
========================================================= */
.why-experience {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr) minmax(380px, 0.85fr);
    align-items: center;
    gap: 0;
    margin-top: 20px;
}

/* =========================================================
   IMAGE
========================================================= */
.why-image-wrapper {
    position: relative;
    min-height: 620px;
    padding:
        0 55px 55px 0;
}

.why-image-frame {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    border-radius:
        var(--radius-lg);
    background:
        var(--cream);
    box-shadow:
        var(--shadow-lg);
    transform:
        perspective(1200px) rotateY(1.5deg);
    transition:
        transform 0.7s var(--transition-smooth);
}

.why-image-wrapper:hover .why-image-frame {
    transform:
        perspective(1200px) rotateY(0deg) translateY(-4px);
}

.why-hotel-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform:
        scale(1.035);
    transition:
        transform 1.2s var(--transition-smooth);
}

.why-image-wrapper:hover .why-hotel-image {
    transform:
        scale(1.065);
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */
.why-image-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            transparent 55%,
            rgba(20, 11, 7, 0.48) 100%);
    pointer-events: none;
}

.why-image-label {
    position: absolute;
    z-index: 2;
    left: 25px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    color:
        rgba(255, 255, 255, 0.75);
    font-size:
        0.60rem;
    letter-spacing:
        0.18em;
}

.why-image-label div {
    width: 30px;
    height: 1px;
    background:
        var(--primary-light);
}

/* =========================================================
   FLOATING BADGE
========================================================= */
.why-floating-badge {
    position: absolute;
    z-index: 6;
    right: 20px;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 230px;
    padding:
        14px 17px;
    background:
        rgba(250, 248, 243, 0.76);
    border:
        1px solid rgba(255, 255, 255, 0.80);
    border-radius:
        var(--radius-md);
    backdrop-filter:
        blur(20px);
    -webkit-backdrop-filter:
        blur(20px);
    box-shadow:
        0 20px 50px rgba(36, 21, 14, 0.14);
    animation:
        whyBadgeFloat 5s ease-in-out infinite;
}

@keyframes whyBadgeFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }
}

.badge-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius:
        50%;
    border:
        1px solid rgba(201, 148, 46, 0.35);
    color:
        var(--primary);
    font-size:
        var(--fs-xs);
}

.why-floating-badge small {
    display: block;
    margin-bottom: 3px;
    color:
        var(--text-light);
    font-size:
        0.58rem;
    letter-spacing:
        0.15em;
    font-weight:
        var(--fw-medium);
}

.why-floating-badge strong {
    display: block;
    color:
        var(--secondary);
    font-size:
        var(--fs-xs);
    letter-spacing:
        0.04em;
    font-weight:
        var(--fw-semibold);
}

/* =========================================================
   CONTENT / GLASS CARD
========================================================= */
.why-content-wrapper {
    position: relative;
    z-index: 5;
    margin-left:
        -65px;
}

.why-glass-card {
    position: relative;
    padding:
        38px 40px 40px;
    background:
        rgba(255, 255, 255, 0.76);
    border:
        1px solid rgba(255, 255, 255, 0.90);
    border-radius:
        var(--radius-lg);
    backdrop-filter:
        blur(22px);
    -webkit-backdrop-filter:
        blur(22px);
    box-shadow:
        0 30px 80px rgba(36, 21, 14, 0.13);
    overflow: hidden;
}

/* Subtle gold light inside card */
.why-glass-card::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    top: -190px;
    right: -100px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(201, 148, 46, 0.13),
            transparent 68%);
    pointer-events: none;
}

/* =========================================================
   CARD TOP
========================================================= */
.why-card-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom:
        20px;
    border-bottom:
        1px solid var(--border);
}

.why-card-number {
    color:
        var(--primary-dark);
    font-size:
        0.60rem;
    font-weight:
        var(--fw-semibold);
    letter-spacing:
        0.18em;
}

.why-card-mark {
    color:
        rgba(36, 21, 14, 0.15);
    font-family:
        var(--font-display);
    font-size:
        var(--fs-lg);
    font-weight:
        var(--fw-bold);
    letter-spacing:
        0.08em;
}

/* =========================================================
   CARD HEADING
========================================================= */
.why-card-title {
    position: relative;
    margin:
        28px 0 14px;
    max-width:
        430px;
    color:
        var(--secondary);
    font-family:
        var(--font-display);
    font-size:
        clamp(2rem, 3vw, 2.8rem);
    font-weight:
        var(--fw-regular);
    line-height:
        1.05;
    letter-spacing:
        -0.025em;
}

.why-card-title span {
    display: block;
    color:
        var(--primary);
    font-style:
        italic;
}

.why-card-description {
    max-width:
        470px;
    margin:
        0 0 27px;
    color:
        var(--text);
    font-size:
        var(--fs-sm);
    line-height:
        1.8;
}

/* =========================================================
   REASONS
========================================================= */
.why-reasons {
    border-top:
        1px solid var(--border);
}

.why-reason {
    display: flex;
    gap: 15px;
    padding:
        18px 0;
    border-bottom:
        1px solid var(--border);
}

.why-reason-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid rgba(201, 148, 46, 0.25);
    border-radius:
        50%;
    color:
        var(--primary);
    font-size:
        var(--fs-xs);
}

.why-reason-content {
    flex: 1;
}

.why-reason-heading {
    display: flex;
    align-items: center;
    gap: 9px;
}

.why-reason-heading span {
    color:
        var(--primary);
    font-size:
        0.58rem;
    font-weight:
        var(--fw-semibold);
    letter-spacing:
        0.08em;
}

.why-reason-heading h4 {
    margin: 0;
    color:
        var(--secondary);
    font-size:
        var(--fs-sm);
    font-weight:
        var(--fw-semibold);
}

.why-reason-content p {
    margin:
        5px 0 0;
    color:
        var(--text-light);
    font-size:
        0.72rem;
    line-height:
        1.55;
}

/* =========================================================
   CTA
========================================================= */
.why-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top:
        28px;
    color:
        var(--secondary);
    font-size:
        var(--fs-sm);
    font-weight:
        var(--fw-semibold);
}

.why-btn-icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:
        1px solid var(--border);
    border-radius:
        50%;
    color:
        var(--primary);
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.why-explore-btn:hover {
    color:
        var(--primary-dark);
}

.why-explore-btn:hover .why-btn-icon {
    background:
        var(--primary);
    color:
        var(--white);
    transform:
        translate(3px, -3px);
}

/* =========================================================
   BOTTOM DETAILS
========================================================= */
.why-bottom-details {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top:
        75px;
}

.why-detail-line {
    flex: 1;
    height: 1px;
    background:
        var(--border);
}

.why-detail-text {
    display: flex;
    align-items: center;
    gap: 25px;
    color:
        var(--text-light);
    font-size:
        0.58rem;
    letter-spacing:
        0.17em;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991.98px) {
    .why-heading-row {
        grid-template-columns:
            1fr;
        gap:
            22px;
    }

    .why-section-title {
        font-size:
            clamp(3rem, 9vw, 5rem);
    }

    .why-section-intro {
        max-width:
            520px;
    }

    .why-experience {
        grid-template-columns:
            1fr;
        gap:
            0;
    }

    .why-image-wrapper {
        min-height:
            560px;
        padding:
            0 35px 45px 0;
    }

    .why-image-frame {
        height:
            560px;
    }

    .why-content-wrapper {
        margin-left:
            35px;
        margin-top:
            -90px;
    }

    .why-glass-card {
        max-width:
            620px;
    }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767.98px) {
    .why-hotel-section {
        padding:
            70px 0;
    }

    .why-section-heading {
        margin-bottom:
            40px;
    }

    .section-eyebrow {
        font-size:
            0.60rem;
        letter-spacing:
            0.15em;
    }

    .why-section-title {
        font-size:
            clamp(2.9rem, 14vw, 4rem);
        line-height:
            0.94;
    }

    .why-section-intro {
        font-size:
            var(--fs-sm);
        line-height:
            1.75;
    }

    /* ==============================
       IMAGE
    ============================== */
    .why-image-wrapper {
        min-height:
            390px;
        padding:
            0 18px 35px 0;
    }

    .why-image-frame {
        height:
            390px;
        border-radius:
            var(--radius-md);
        transform:
            none;
    }

    .why-image-wrapper:hover .why-image-frame {
        transform:
            translateY(-2px);
    }

    .why-floating-badge {
        right:
            0;
        bottom:
            5px;
        min-width:
            195px;
        padding:
            11px 13px;
    }

    .badge-icon {
        width:
            32px;
        height:
            32px;
    }

    .why-floating-badge strong {
        font-size:
            0.62rem;
    }

    /* ==============================
       GLASS CARD
    ============================== */
    .why-content-wrapper {
        margin:
            -55px 0 0 15px;
        position:
            relative;
    }

    .why-glass-card {
        padding:
            27px 22px 28px;
        border-radius:
            var(--radius-md);
        backdrop-filter:
            blur(18px);
        -webkit-backdrop-filter:
            blur(18px);
    }

    .why-card-title {
        margin-top:
            23px;
        font-size:
            2rem;
    }

    .why-card-description {
        font-size:
            var(--fs-xs);
        line-height:
            1.75;
    }

    /* ==============================
       REASONS
    ============================== */
    .why-reason {
        padding:
            15px 0;
    }

    .why-reason-icon {
        width:
            34px;
        height:
            34px;
    }

    .why-reason-content p {
        font-size:
            0.68rem;
    }

    /* ==============================
       CTA
    ============================== */
    .why-explore-btn {
        margin-top:
            23px;
        font-size:
            var(--fs-xs);
    }

    /* ==============================
       BOTTOM DETAILS
    ============================== */
    .why-bottom-details {
        margin-top:
            45px;
    }

    .why-detail-text {
        gap:
            12px;
        font-size:
            0.50rem;
        letter-spacing:
            0.10em;
        white-space:
            nowrap;
    }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */
@media (max-width: 380px) {
    .why-image-wrapper {
        min-height:
            340px;
    }

    .why-image-frame {
        height:
            340px;
    }

    .why-content-wrapper {
        margin-left:
            8px;
    }

    .why-glass-card {
        padding:
            24px 18px;
    }

    .why-detail-text span:nth-child(3),
    .why-detail-text span:nth-child(4) {
        display:
            none;
    }
}

/* =========================================================
   ROOMS & STAY
========================================================= */

.rooms-section {

    position: relative;

    padding:
        var(--space-section) 0;

    background:
        var(--cream);

    overflow: hidden;

    isolation: isolate;
}

/* =========================================================
   BACKGROUND ORBS
========================================================= */

.rooms-bg-orb {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;

    filter: blur(2px);
}

.rooms-bg-orb-one {

    width: 480px;
    height: 480px;

    top: -240px;
    right: -150px;

    background:
        radial-gradient(circle,
            rgba(201, 148, 46, 0.08),
            transparent 68%);
}

.rooms-bg-orb-two {

    width: 380px;
    height: 380px;

    bottom: -200px;
    left: -160px;

    background:
        radial-gradient(circle,
            rgba(36, 21, 14, 0.045),
            transparent 68%);
}

/* =========================================================
   HEADER
========================================================= */

.rooms-header {

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr) minmax(300px, 0.9fr);

    align-items: end;

    gap: 60px;

    margin-bottom:
        clamp(45px, 6vw, 70px);
}

.rooms-header-left {

    min-width: 0;
}

.rooms-title {

    margin: 0;

    color:
        var(--secondary);

    font-family:
        var(--font-display);

    font-size:
        clamp(3.2rem, 6vw, 5.8rem);

    font-weight:
        var(--fw-regular);

    line-height:
        0.90;

    letter-spacing:
        -0.045em;
}

.rooms-title em {

    display: block;

    margin-left:
        0.10em;

    color:
        var(--primary);

    font-style:
        italic;
}

.rooms-header-right {

    max-width:
        440px;

    justify-self:
        end;
}

.rooms-intro {

    margin:
        0 0 22px;

    color:
        var(--text);

    font-size:
        var(--fs-md);

    font-weight:
        var(--fw-light);

    line-height:
        1.8;
}

.rooms-view-all {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        12px;

    color:
        var(--secondary);

    font-size:
        var(--fs-sm);

    font-weight:
        var(--fw-semibold);
}

.rooms-view-icon {

    width:
        34px;

    height:
        34px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid rgba(201, 148, 46, 0.35);

    border-radius:
        50%;

    color:
        var(--primary);

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.rooms-view-all:hover {

    color:
        var(--primary-dark);
}

.rooms-view-all:hover .rooms-view-icon {

    background:
        var(--primary);

    color:
        var(--white);

    transform:
        translateX(4px);
}

/* =========================================================
   SHOWCASE
========================================================= */

.rooms-showcase {

    display:
        grid;

    grid-template-columns:
        minmax(0, 1.35fr) minmax(320px, 0.65fr);

    gap:
        24px;

    align-items:
        start;
}

/* =========================================================
   FEATURED ROOM
========================================================= */

.featured-room {

    position:
        relative;
}

.room-image-link {

    position:
        relative;

    display:
        block;

    width:
        100%;

    height:
        620px;

    overflow:
        hidden;

    border-radius:
        var(--radius-lg);

    background:
        var(--secondary);

    box-shadow:
        var(--shadow-lg);

    transform:
        perspective(1400px) rotateY(-1deg);

    transition:
        transform 0.7s var(--transition-smooth),
        box-shadow 0.7s var(--transition-smooth);
}

.featured-room:hover .room-image-link {

    transform:
        perspective(1400px) rotateY(0deg) translateY(-5px);

    box-shadow:
        0 35px 90px rgba(36, 21, 14, 0.20);
}

/* =========================================================
   ROOM IMAGE
========================================================= */

.room-image {

    width:
        100%;

    height:
        100%;

    display:
        block;

    object-fit:
        cover;

    object-position:
        center;

    transform:
        scale(1.025);

    transition:
        transform 1.2s var(--transition-smooth);
}

.room-image-link:hover .room-image {

    transform:
        scale(1.065);
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.room-image-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(180deg,
            rgba(20, 11, 7, 0.06) 30%,
            rgba(20, 11, 7, 0.60) 100%);
}

/* =========================================================
   IMAGE NUMBER
========================================================= */

.room-image-number {

    position:
        absolute;

    top:
        22px;

    left:
        24px;

    color:
        rgba(255, 255, 255, 0.72);

    font-size:
        0.62rem;

    letter-spacing:
        0.18em;

    font-weight:
        var(--fw-medium);
}

/* =========================================================
   FEATURED GLASS TAG
========================================================= */

.room-glass-tag {

    position:
        absolute;

    left:
        24px;

    bottom:
        24px;

    display:
        inline-flex;

    align-items:
        center;

    gap:
        9px;

    padding:
        10px 14px;

    background:
        rgba(250, 248, 243, 0.14);

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius:
        50px;

    backdrop-filter:
        blur(16px);

    -webkit-backdrop-filter:
        blur(16px);

    color:
        rgba(255, 255, 255, 0.85);

    font-size:
        0.58rem;

    letter-spacing:
        0.16em;
}

.room-tag-dot {

    width:
        6px;

    height:
        6px;

    border-radius:
        50%;

    background:
        var(--primary-light);

    box-shadow:
        0 0 10px rgba(221, 181, 106, 0.7);
}

/* =========================================================
   IMAGE ARROW
========================================================= */

.room-image-arrow {

    position:
        absolute;

    right:
        24px;

    bottom:
        24px;

    width:
        46px;

    height:
        46px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid rgba(255, 255, 255, 0.45);

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, 0.10);

    backdrop-filter:
        blur(10px);

    -webkit-backdrop-filter:
        blur(10px);

    color:
        var(--white);

    font-size:
        var(--fs-xs);

    transition:
        background var(--transition),
        transform var(--transition);
}

.room-image-link:hover .room-image-arrow {

    background:
        var(--primary);

    border-color:
        var(--primary);

    transform:
        translate(3px, -3px);
}

/* =========================================================
   FEATURED INFO
========================================================= */

.featured-room-info {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        30px;

    padding:
        23px 3px 0;
}

.room-category {

    display:
        block;

    margin-bottom:
        6px;

    color:
        var(--primary-dark);

    font-size:
        0.58rem;

    font-weight:
        var(--fw-semibold);

    letter-spacing:
        0.17em;
}

.featured-room-info h3,
.secondary-room-info h3 {

    margin:
        0;

    color:
        var(--secondary);

    font-family:
        var(--font-display);

    font-size:
        var(--fs-xl);

    font-weight:
        var(--fw-regular);
}

.room-features {

    display:
        flex;

    align-items:
        center;

    gap:
        18px;

    flex-wrap:
        wrap;

    justify-content:
        flex-end;
}

.room-features span,
.secondary-room-meta span {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        6px;

    color:
        var(--text-light);

    font-size:
        0.65rem;

    white-space:
        nowrap;
}

.room-features i,
.secondary-room-meta i {

    color:
        var(--primary);

    font-size:
        0.62rem;
}

/* =========================================================
   SECONDARY ROOMS
========================================================= */

.secondary-rooms {

    display:
        flex;

    flex-direction:
        column;

    gap:
        24px;
}

.secondary-room {

    display:
        grid;

    grid-template-columns:
        145px 1fr;

    gap:
        18px;

    padding:
        0 0 24px;

    border-bottom:
        1px solid rgba(201, 148, 46, 0.18);
}

.secondary-room:last-child {

    padding-bottom:
        0;

    border-bottom:
        none;
}

/* =========================================================
   SECONDARY IMAGE
========================================================= */

.secondary-room-image {

    position:
        relative;

    display:
        block;

    width:
        145px;

    height:
        175px;

    overflow:
        hidden;

    border-radius:
        var(--radius-md);

    background:
        var(--secondary);
}

.secondary-room-image img {

    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    display:
        block;

    transition:
        transform 0.8s var(--transition-smooth);
}

.secondary-room:hover .secondary-room-image img {

    transform:
        scale(1.08);
}

.secondary-room-overlay {

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(180deg,
            transparent 45%,
            rgba(20, 11, 7, 0.45));
}

.secondary-room-number {

    position:
        absolute;

    top:
        11px;

    left:
        12px;

    color:
        rgba(255, 255, 255, 0.75);

    font-size:
        0.55rem;

    letter-spacing:
        0.12em;
}

.secondary-room-arrow {

    position:
        absolute;

    right:
        10px;

    bottom:
        10px;

    width:
        30px;

    height:
        30px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid rgba(255, 255, 255, 0.4);

    border-radius:
        50%;

    background:
        rgba(255, 255, 255, 0.10);

    backdrop-filter:
        blur(8px);

    color:
        var(--white);

    font-size:
        0.58rem;

    transition:
        background var(--transition),
        transform var(--transition);
}

.secondary-room:hover .secondary-room-arrow {

    background:
        var(--primary);

    border-color:
        var(--primary);

    transform:
        translate(2px, -2px);
}

/* =========================================================
   SECONDARY INFO
========================================================= */

.secondary-room-info {

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    min-width:
        0;
}

.secondary-room-info h3 {

    font-size:
        var(--fs-lg);
}

.secondary-room-info p {

    margin:
        11px 0 15px;

    color:
        var(--text-light);

    font-size:
        0.68rem;

    line-height:
        1.6;
}

.secondary-room-meta {

    display:
        flex;

    align-items:
        center;

    gap:
        13px;

    flex-wrap:
        wrap;
}

/* =========================================================
   BOTTOM CTA
========================================================= */

.rooms-bottom {

    display:
        flex;

    align-items:
        center;

    gap:
        24px;

    margin-top:
        70px;
}

.rooms-bottom-line {

    flex:
        1;

    height:
        1px;

    background:
        rgba(201, 148, 46, 0.18);
}

.rooms-bottom-content {

    display:
        flex;

    align-items:
        center;

    gap:
        25px;
}

.rooms-bottom-content>span {

    color:
        var(--text-light);

    font-size:
        0.58rem;

    letter-spacing:
        0.17em;
}

.rooms-bottom-btn {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    color:
        var(--secondary);

    font-size:
        var(--fs-sm);

    font-weight:
        var(--fw-semibold);

    transition:
        color var(--transition);
}

.rooms-bottom-btn i {

    color:
        var(--primary);

    transition:
        transform var(--transition);
}

.rooms-bottom-btn:hover {

    color:
        var(--primary-dark);
}

.rooms-bottom-btn:hover i {

    transform:
        translateX(5px);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .rooms-header {

        grid-template-columns:
            1fr;

        gap:
            22px;
    }

    .rooms-header-right {

        justify-self:
            start;

        max-width:
            560px;
    }

    .rooms-showcase {

        grid-template-columns:
            1fr;

        gap:
            45px;
    }

    .room-image-link {

        height:
            560px;

        transform:
            none;
    }

    .featured-room:hover .room-image-link {

        transform:
            translateY(-3px);
    }

    .secondary-rooms {

        display:
            grid;

        grid-template-columns:
            1fr 1fr;

        gap:
            24px;
    }

    .secondary-room {

        display:
            block;

        padding:
            0 0 20px;

        border-bottom:
            1px solid rgba(201, 148, 46, 0.18);
    }

    .secondary-room-image {

        width:
            100%;

        height:
            300px;

        margin-bottom:
            18px;
    }

    .secondary-room-info p {

        max-width:
            400px;
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .rooms-section {

        padding:
            70px 0;
    }

    .rooms-header {

        margin-bottom:
            40px;
    }

    .rooms-title {

        font-size:
            clamp(3rem, 14vw, 4.2rem);
    }

    .rooms-intro {

        font-size:
            var(--fs-sm);

        line-height:
            1.75;
    }

    .rooms-view-all {

        font-size:
            var(--fs-xs);
    }

    /* ==============================
       FEATURED ROOM
    ============================== */

    .room-image-link {

        height:
            430px;

        border-radius:
            var(--radius-md);
    }

    .room-image-number {

        top:
            17px;

        left:
            17px;
    }

    .room-glass-tag {

        left:
            17px;

        bottom:
            17px;

        padding:
            9px 12px;

        font-size:
            0.52rem;
    }

    .room-image-arrow {

        right:
            17px;

        bottom:
            17px;

        width:
            40px;

        height:
            40px;
    }

    .featured-room-info {

        display:
            block;

        padding-top:
            18px;
    }

    .featured-room-info h3 {

        font-size:
            var(--fs-lg);
    }

    .room-features {

        justify-content:
            flex-start;

        gap:
            12px;

        margin-top:
            14px;
    }

    /* ==============================
       SECONDARY ROOMS
    ============================== */

    .secondary-rooms {

        display:
            flex;

        gap:
            32px;
    }

    .secondary-room {

        display:
            grid;

        grid-template-columns:
            125px 1fr;

        gap:
            15px;

        padding-bottom:
            25px;
    }

    .secondary-room-image {

        width:
            125px;

        height:
            160px;

        margin:
            0;
    }

    .secondary-room-info {

        justify-content:
            center;
    }

    .secondary-room-info h3 {

        font-size:
            var(--fs-md);
    }

    .secondary-room-info p {

        margin:
            8px 0 12px;

        font-size:
            0.65rem;
    }

    .secondary-room-meta {

        gap:
            9px;
    }

    .secondary-room-meta span {

        font-size:
            0.58rem;
    }

    /* ==============================
       BOTTOM
    ============================== */

    .rooms-bottom {

        margin-top:
            45px;
    }

    .rooms-bottom-content {

        gap:
            12px;
    }

    .rooms-bottom-content>span {

        display:
            none;
    }

    .rooms-bottom-btn {

        font-size:
            var(--fs-xs);
    }

}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .room-image-link {

        height:
            380px;
    }

    .secondary-room {

        grid-template-columns:
            105px 1fr;

        gap:
            12px;
    }

    .secondary-room-image {

        width:
            105px;

        height:
            145px;
    }

    .secondary-room-info h3 {

        font-size:
            0.95rem;
    }

    .secondary-room-info p {

        font-size:
            0.60rem;
    }

}

/* =========================================================
   AMENITIES SECTION
========================================================= */

.amenities-section {
    position: relative;
    overflow: hidden;
    padding: var(--space-section) 0;
    background: var(--secondary);
    color: var(--white);
}

/* ---------------------------------------------------------
   BACKGROUND GLOW
--------------------------------------------------------- */

.amenities-bg-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    opacity: 0.12;
}

.amenities-bg-glow-one {
    top: -180px;
    right: -100px;
    background: var(--primary);
}

.amenities-bg-glow-two {
    bottom: -220px;
    left: -160px;
    background: var(--accent);
}

/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.amenities-header {
    position: relative;
    z-index: 2;
    margin-bottom: var(--space-3xl);
}

.amenities-eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.amenities-eyebrow .section-eyebrow-line {
    background: var(--primary);
}

.amenities-heading-row {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: var(--space-3xl);
    align-items: end;
}

.amenities-title {
    max-width: 850px;
    margin: var(--space-lg) 0 0;
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 5.5vw, 5.5rem);
    font-weight: var(--fw-regular);
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--white);
}

.amenities-title em {
    display: block;
    color: var(--primary-light);
    font-style: italic;
    font-weight: var(--fw-regular);
}

.amenities-heading-right {
    padding-bottom: 0.4rem;
}

.amenities-heading-right p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: var(--fs-base);
    font-weight: var(--fw-light);
    line-height: 1.9;
}

/* ---------------------------------------------------------
   AMENITIES GRID
--------------------------------------------------------- */

.amenities-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

/* ---------------------------------------------------------
   AMENITY ITEM
--------------------------------------------------------- */

.amenity-item {
    position: relative;
    min-height: 300px;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.015);
    overflow: hidden;
    transition:
        background var(--transition),
        transform var(--transition-smooth);
}

/* subtle gold glow */

.amenity-item::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -80px;
    right: -70px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(70px);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

/* hover */

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-5px);
}

.amenity-item:hover::before {
    opacity: 0.14;
}

/* ---------------------------------------------------------
   TOP
--------------------------------------------------------- */

.amenity-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.amenity-number {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    color: var(--primary-light);
    font-weight: var(--fw-regular);
}

.amenity-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(201, 148, 46, 0.32);
    border-radius: 50%;
    color: var(--primary-light);
    font-size: 1rem;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition-smooth);
}

.amenity-item:hover .amenity-icon {
    background: var(--primary);
    color: var(--secondary);
    transform: rotate(-8deg) scale(1.08);
}

/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.amenity-content {
    position: relative;
    z-index: 2;
    padding-right: var(--space-lg);
}

.amenity-content h3 {
    margin: 0 0 var(--space-sm);
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-regular);
    color: var(--white);
}

.amenity-content p {
    max-width: 310px;
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: var(--fs-sm);
    line-height: 1.8;
}

/* ---------------------------------------------------------
   ARROW
--------------------------------------------------------- */

.amenity-arrow {
    position: absolute;
    right: var(--space-xl);
    bottom: var(--space-xl);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition-smooth);
}

.amenity-item:hover .amenity-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--secondary);
    transform: translateX(5px);
}

/* ---------------------------------------------------------
   BOTTOM DETAILS
--------------------------------------------------------- */

.amenities-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.amenities-bottom-line {
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.amenities-bottom-content {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.4);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    letter-spacing: 0.16em;
}

.amenities-bottom-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .amenities-heading-row {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .amenities-title {
        max-width: 700px;
    }

    .amenities-heading-right p {
        max-width: 600px;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .amenity-item {
        min-height: 280px;
    }

}

@media (max-width: 575.98px) {

    .amenities-section {
        padding: 4.5rem 0;
    }

    .amenities-header {
        margin-bottom: var(--space-2xl);
    }

    .amenities-title {
        font-size: clamp(2.5rem, 12vw, 3.6rem);
        line-height: 1;
    }

    .amenities-heading-right p {
        font-size: var(--fs-sm);
        line-height: 1.8;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .amenity-item {
        min-height: 250px;
        padding: var(--space-lg);
    }

    .amenity-arrow {
        right: var(--space-lg);
        bottom: var(--space-lg);
    }

    .amenities-bottom {
        gap: var(--space-sm);
    }

    .amenities-bottom-content {
        gap: 0.5rem;
        letter-spacing: 0.1em;
        white-space: nowrap;
    }

}

/* =========================================================
   PRIVATE STAY / COUPLE-FRIENDLY SECTION
========================================================= */

.private-stay-section {
    position: relative;
    overflow: hidden;
    padding: var(--space-section) 0;
    background: var(--ivory);
    color: var(--text-dark);
}

/* ---------------------------------------------------------
   BACKGROUND
--------------------------------------------------------- */

.private-stay-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    right: -250px;
    top: 10%;
    border-radius: 50%;
    background: var(--primary-light);
    filter: blur(150px);
    opacity: 0.10;
    pointer-events: none;
}

/* ---------------------------------------------------------
   MAIN WRAPPER
--------------------------------------------------------- */

.private-stay-wrapper {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);

    gap: clamp(3rem, 7vw, 8rem);

    align-items: center;
}

/* =========================================================
   IMAGE
========================================================= */

.private-stay-visual {
    position: relative;
    padding: 0 var(--space-lg) var(--space-xl) 0;
}

.private-stay-image-frame {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    border-radius: var(--radius-xl);

    box-shadow: var(--shadow-lg);

    transform: perspective(1400px) rotateY(2deg);

    transition:
        transform 0.8s var(--transition-smooth);
}

.private-stay-image-frame:hover {
    transform:
        perspective(1400px) rotateY(0deg) translateY(-6px);
}

.private-stay-image {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;

    transform: scale(1.02);

    transition:
        transform 1.2s var(--transition-smooth);
}

.private-stay-image-frame:hover .private-stay-image {
    transform: scale(1.06);
}

/* Image overlay */

.private-stay-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(36, 21, 14, 0.05) 30%,
            rgba(36, 21, 14, 0.60) 100%);

    pointer-events: none;
}

/* Image label */

.private-stay-image-label {
    position: absolute;

    left: var(--space-xl);
    bottom: var(--space-xl);

    display: flex;
    align-items: center;
    gap: var(--space-sm);

    color: rgba(255, 255, 255, 0.78);

    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);

    letter-spacing: 0.15em;
}

.private-stay-image-label span:first-child {
    color: var(--primary-light);

    font-family: var(--font-display);

    font-size: var(--fs-lg);

    letter-spacing: 0;
}

.private-stay-image-label div {
    width: 35px;
    height: 1px;

    background: var(--primary-light);
}

/* =========================================================
   FLOATING BADGE
========================================================= */

.private-stay-badge {
    position: absolute;

    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;

    gap: var(--space-sm);

    padding: var(--space-md) var(--space-lg);

    background: var(--glass-bg);

    border: 1px solid rgba(255, 255, 255, 0.8);

    border-radius: var(--radius-md);

    backdrop-filter: blur(var(--glass-blur));

    box-shadow: var(--glass-shadow);

    z-index: 3;
}

.private-stay-badge-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--secondary);

    color: var(--primary-light);

    font-size: 0.85rem;
}

.private-stay-badge small {
    display: block;

    margin-bottom: 2px;

    color: var(--text-light);

    font-size: 0.62rem;

    letter-spacing: 0.14em;

    font-weight: var(--fw-medium);
}

.private-stay-badge strong {
    display: block;

    color: var(--text-dark);

    font-size: var(--fs-xs);

    letter-spacing: 0.08em;

    font-weight: var(--fw-semibold);
}

/* =========================================================
   CONTENT
========================================================= */

.private-stay-content {
    max-width: 590px;
}

.private-stay-title {
    margin: var(--space-lg) 0 var(--space-lg);

    font-family: var(--font-display);

    font-size: clamp(3rem, 5vw, 5rem);

    line-height: 0.98;

    letter-spacing: -0.035em;

    font-weight: var(--fw-regular);

    color: var(--text-dark);
}

.private-stay-title em {
    display: block;

    color: var(--primary);

    font-style: italic;

    font-weight: var(--fw-regular);
}

.private-stay-intro {
    max-width: 520px;

    margin: 0 0 var(--space-2xl);

    color: var(--text);

    font-size: var(--fs-base);

    line-height: 1.9;
}

/* =========================================================
   EXPERIENCE POINTS
========================================================= */

.private-stay-points {
    border-top: 1px solid var(--border);
}

.private-stay-point {
    position: relative;

    display: grid;

    grid-template-columns: 42px 48px 1fr;

    gap: var(--space-md);

    align-items: center;

    padding: var(--space-lg) 0;

    border-bottom: 1px solid var(--border);

    transition:
        padding var(--transition),
        background var(--transition);
}

.private-stay-point:hover {
    padding-left: var(--space-sm);
}

/* Number */

.private-stay-point-number {
    color: var(--text-light);

    font-family: var(--font-display);

    font-size: var(--fs-sm);
}

/* Icon */

.private-stay-point-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--border);

    border-radius: 50%;

    color: var(--primary);

    font-size: 0.85rem;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition-smooth);
}

.private-stay-point:hover .private-stay-point-icon {
    background: var(--primary);

    color: var(--white);

    transform: scale(1.08);
}

/* Text */

.private-stay-point-content h3 {
    margin: 0 0 4px;

    font-family: var(--font-display);

    font-size: var(--fs-lg);

    font-weight: var(--fw-regular);

    color: var(--text-dark);
}

.private-stay-point-content p {
    max-width: 400px;

    margin: 0;

    color: var(--text-light);

    font-size: var(--fs-sm);

    line-height: 1.65;
}

/* =========================================================
   BUTTON
========================================================= */

.private-stay-btn {
    display: inline-flex;

    align-items: center;

    gap: var(--space-md);

    margin-top: var(--space-2xl);

    padding: 5px 5px 5px var(--space-lg);

    color: var(--white);

    background: var(--secondary);

    border: 1px solid var(--secondary);

    border-radius: 100px;

    text-decoration: none;

    font-size: var(--fs-sm);

    font-weight: var(--fw-medium);

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition-smooth);
}

.private-stay-btn:hover {
    color: var(--white);

    background: var(--primary-dark);

    border-color: var(--primary-dark);

    transform: translateY(-3px);
}

.private-stay-btn-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--secondary);

    transition:
        transform var(--transition-smooth);
}

.private-stay-btn:hover .private-stay-btn-icon {
    transform: translateX(3px);
}

/* =========================================================
   BOTTOM DETAILS
========================================================= */

.private-stay-bottom {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: var(--space-lg);

    margin-top: var(--space-3xl);
}

.private-stay-bottom-line {
    flex: 1;

    height: 1px;

    background: var(--border);
}

.private-stay-bottom-text {
    display: flex;

    align-items: center;

    gap: var(--space-lg);

    color: var(--text-light);

    font-size: var(--fs-xs);

    font-weight: var(--fw-medium);

    letter-spacing: 0.16em;

    white-space: nowrap;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .private-stay-wrapper {
        grid-template-columns: 1fr;

        gap: var(--space-3xl);
    }

    .private-stay-content {
        max-width: 700px;
    }

    .private-stay-image-frame {
        min-height: 560px;

        transform: none;
    }

    .private-stay-image-frame:hover {
        transform: translateY(-5px);
    }

    .private-stay-intro {
        max-width: 650px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .private-stay-section {
        padding: 4.5rem 0;
    }

    .private-stay-wrapper {
        gap: var(--space-2xl);
    }

    .private-stay-visual {
        padding-right: 0;

        padding-bottom: 2rem;
    }

    .private-stay-image-frame {
        min-height: 460px;

        border-radius: var(--radius-lg);
    }

    .private-stay-image-label {
        left: var(--space-lg);
        bottom: var(--space-lg);
    }

    .private-stay-badge {
        right: 0;
        bottom: 0;

        padding: var(--space-sm) var(--space-md);
    }

    .private-stay-badge-icon {
        width: 36px;
        height: 36px;
    }

    .private-stay-title {
        font-size: clamp(2.7rem, 12vw, 3.7rem);
    }

    .private-stay-intro {
        font-size: var(--fs-sm);

        line-height: 1.8;
    }

    .private-stay-point {
        grid-template-columns: 30px 42px 1fr;

        gap: var(--space-sm);

        padding: var(--space-md) 0;
    }

    .private-stay-point-icon {
        width: 38px;
        height: 38px;
    }

    .private-stay-point-content h3 {
        font-size: var(--fs-md);
    }

    .private-stay-point-content p {
        font-size: 0.76rem;
    }

    .private-stay-bottom {
        gap: var(--space-sm);
    }

    .private-stay-bottom-text {
        gap: 0.55rem;

        letter-spacing: 0.08em;
    }

}

/* =========================================================
   HOTEL GALLERY SECTION
========================================================= */

.hotel-gallery-section {
    position: relative;
    overflow: hidden;

    padding: var(--space-section) 0;

    background: var(--cream);

    color: var(--text-dark);
}

/* ---------------------------------------------------------
   BACKGROUND GLOW
--------------------------------------------------------- */

.gallery-bg-glow {
    position: absolute;

    width: 450px;
    height: 450px;

    top: -180px;
    right: -180px;

    border-radius: 50%;

    background: var(--primary-light);

    filter: blur(140px);

    opacity: 0.12;

    pointer-events: none;
}

/* =========================================================
   HEADER
========================================================= */

.gallery-header {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);

    gap: var(--space-3xl);

    align-items: end;

    margin-bottom: var(--space-3xl);
}

.gallery-title {
    max-width: 800px;

    margin: var(--space-lg) 0 0;

    font-family: var(--font-display);

    font-size: clamp(2.8rem, 5.5vw, 5.5rem);

    line-height: 0.98;

    letter-spacing: -0.035em;

    font-weight: var(--fw-regular);

    color: var(--text-dark);
}

.gallery-title em {
    display: block;

    color: var(--primary);

    font-style: italic;

    font-weight: var(--fw-regular);
}

.gallery-header-right {
    padding-bottom: 0.35rem;
}

.gallery-header-right p {
    max-width: 430px;

    margin: 0 0 var(--space-lg);

    color: var(--text);

    font-size: var(--fs-base);

    line-height: 1.85;
}

/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.gallery-view-all {
    display: inline-flex;

    align-items: center;

    gap: var(--space-md);

    padding: 5px 5px 5px var(--space-lg);

    border: 1px solid var(--secondary);

    border-radius: 100px;

    background: var(--secondary);

    color: var(--white);

    font-family: var(--font-primary);

    font-size: var(--fs-sm);

    font-weight: var(--fw-medium);

    cursor: pointer;

    transition:
        transform var(--transition-smooth),
        background var(--transition),
        border-color var(--transition);
}

.gallery-view-all:hover {
    transform: translateY(-3px);

    background: var(--primary-dark);

    border-color: var(--primary-dark);
}

.gallery-view-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--secondary);

    transition:
        transform var(--transition-smooth);
}

.gallery-view-all:hover .gallery-view-icon {
    transform: translateX(3px);
}

/* =========================================================
   GALLERY GRID
========================================================= */

.hotel-gallery-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        1.25fr 0.75fr 0.75fr;

    grid-template-rows:
        280px 280px;

    gap: var(--space-md);
}

/* =========================================================
   GALLERY ITEM
========================================================= */

.gallery-item {
    position: relative;

    display: block;

    width: 100%;
    height: 100%;

    padding: 0;

    overflow: hidden;

    border: 0;

    border-radius: var(--radius-lg);

    background: var(--secondary);

    cursor: pointer;

    text-align: left;

    isolation: isolate;
}

.gallery-item img {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.01);

    transition:
        transform 0.9s var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.07);
}

/* ---------------------------------------------------------
   ITEM POSITIONS
--------------------------------------------------------- */

.gallery-item-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.gallery-item-two {
    grid-column: 2;
    grid-row: 1;
}

.gallery-item-three {
    grid-column: 3;
    grid-row: 1;
}

.gallery-item-four {
    grid-column: 2 / 4;
    grid-row: 2;
}

/* ---------------------------------------------------------
   OVERLAY
--------------------------------------------------------- */

.gallery-image-overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(180deg,
            rgba(36, 21, 14, 0.02) 25%,
            rgba(36, 21, 14, 0.68) 100%);

    opacity: 0.65;

    transition:
        opacity var(--transition);
}

.gallery-item:hover .gallery-image-overlay {
    opacity: 0.85;
}

/* ---------------------------------------------------------
   IMAGE NUMBER
--------------------------------------------------------- */

.gallery-image-number {
    position: absolute;

    top: var(--space-lg);
    left: var(--space-lg);

    z-index: 3;

    color: rgba(255, 255, 255, 0.82);

    font-family: var(--font-display);

    font-size: var(--fs-lg);

    font-weight: var(--fw-regular);
}

/* ---------------------------------------------------------
   IMAGE INFO
--------------------------------------------------------- */

.gallery-image-info {
    position: absolute;

    left: var(--space-lg);
    bottom: var(--space-lg);

    z-index: 3;

    display: flex;

    flex-direction: column;

    gap: 4px;
}

.gallery-image-info small {
    color: var(--primary-light);

    font-size: 0.65rem;

    font-weight: var(--fw-medium);

    letter-spacing: 0.16em;
}

.gallery-image-info strong {
    color: var(--white);

    font-family: var(--font-display);

    font-size: var(--fs-lg);

    font-weight: var(--fw-regular);
}

/* ---------------------------------------------------------
   EXPAND ICON
--------------------------------------------------------- */

.gallery-expand {
    position: absolute;

    right: var(--space-lg);
    bottom: var(--space-lg);

    z-index: 3;

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.35);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);

    color: var(--white);

    backdrop-filter: blur(12px);

    font-size: 0.75rem;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition-smooth);
}

.gallery-item:hover .gallery-expand {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--secondary);

    transform: rotate(8deg) scale(1.08);
}

/* =========================================================
   BOTTOM DETAILS
========================================================= */

.gallery-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: var(--space-lg);

    margin-top: var(--space-2xl);
}

.gallery-bottom-line {
    flex: 1;

    height: 1px;

    background: var(--border);
}

.gallery-bottom-content {
    display: flex;

    align-items: center;

    gap: var(--space-md);

    color: var(--text-light);

    font-size: var(--fs-xs);

    font-weight: var(--fw-medium);

    letter-spacing: 0.15em;

    white-space: nowrap;
}

.gallery-bottom-dot {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--primary);
}

/* =========================================================
   LIGHTBOX
========================================================= */

.gallery-lightbox {
    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: var(--space-lg);

    visibility: hidden;

    opacity: 0;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}

.gallery-lightbox.is-open {
    visibility: visible;

    opacity: 1;
}

.gallery-lightbox-backdrop {
    position: absolute;

    inset: 0;

    background: rgba(15, 9, 6, 0.94);

    backdrop-filter: blur(18px);
}

/* ---------------------------------------------------------
   LIGHTBOX CONTAINER
--------------------------------------------------------- */

.gallery-lightbox-container {
    position: relative;

    z-index: 2;

    width: min(1200px, 100%);

    max-height: 94vh;

    display: flex;

    flex-direction: column;

    align-items: center;
}

/* ---------------------------------------------------------
   TOP
--------------------------------------------------------- */

.gallery-lightbox-top {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: var(--space-md);
}

.gallery-lightbox-counter {
    display: flex;

    align-items: center;

    gap: 6px;

    color: rgba(255, 255, 255, 0.55);

    font-size: var(--fs-sm);

    letter-spacing: 0.08em;
}

.gallery-lightbox-counter span:first-child {
    color: var(--primary-light);

    font-family: var(--font-display);

    font-size: var(--fs-lg);
}

.gallery-lightbox-close {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    color: var(--white);

    cursor: pointer;

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition-smooth);
}

.gallery-lightbox-close:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--secondary);

    transform: rotate(90deg);
}

/* ---------------------------------------------------------
   IMAGE
--------------------------------------------------------- */

.gallery-lightbox-image-wrap {
    position: relative;

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
}

.gallery-lightbox-image {
    display: block;

    max-width: calc(100% - 120px);

    max-height: 72vh;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: var(--radius-md);

    box-shadow:
        0 30px 100px rgba(0, 0, 0, 0.45);

    user-select: none;
}

/* ---------------------------------------------------------
   LIGHTBOX NAVIGATION
--------------------------------------------------------- */

.gallery-lightbox-nav {
    position: absolute;

    top: 50%;

    z-index: 5;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.22);

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: var(--white);

    cursor: pointer;

    transform: translateY(-50%);

    backdrop-filter: blur(12px);

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition-smooth);
}

.gallery-lightbox-prev {
    left: 10px;
}

.gallery-lightbox-next {
    right: 10px;
}

.gallery-lightbox-nav:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--secondary);
}

.gallery-lightbox-prev:hover {
    transform: translate(-3px, -50%);
}

.gallery-lightbox-next:hover {
    transform: translate(3px, -50%);
}

/* ---------------------------------------------------------
   CAPTION
--------------------------------------------------------- */

.gallery-lightbox-caption {
    width: 100%;

    text-align: center;

    padding-top: var(--space-lg);
}

.gallery-lightbox-caption span {
    color: var(--primary-light);

    font-size: var(--fs-xs);

    font-weight: var(--fw-medium);

    letter-spacing: 0.16em;
}

.gallery-lightbox-caption h3 {
    margin: 5px 0 0;

    color: var(--white);

    font-family: var(--font-display);

    font-size: var(--fs-xl);

    font-weight: var(--fw-regular);
}

/* =========================================================
   LIGHTBOX ANIMATION
========================================================= */

.gallery-lightbox-image {
    animation: galleryImageIn 0.4s var(--transition-smooth);
}

@keyframes galleryImageIn {

    from {
        opacity: 0;

        transform: scale(0.96);
    }

    to {
        opacity: 1;

        transform: scale(1);
    }

}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .gallery-header {
        grid-template-columns: 1fr;

        gap: var(--space-lg);
    }

    .gallery-header-right p {
        max-width: 600px;
    }

    .hotel-gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows:
            340px 240px 240px;
    }

    .gallery-item-large {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .gallery-item-two {
        grid-column: 1;
        grid-row: 2;
    }

    .gallery-item-three {
        grid-column: 2;
        grid-row: 2;
    }

    .gallery-item-four {
        grid-column: 1;
        grid-row: 3;
    }

    .gallery-item-five {
        grid-column: 2;
        grid-row: 3;
    }

    .gallery-item-six {
        display: none;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .hotel-gallery-section {
        padding: 4.5rem 0;
    }

    .gallery-header {
        margin-bottom: var(--space-2xl);
    }

    .gallery-title {
        font-size: clamp(2.6rem, 12vw, 3.7rem);
    }

    .gallery-header-right p {
        font-size: var(--fs-sm);

        line-height: 1.8;
    }

    .hotel-gallery-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(5, 240px);

        gap: var(--space-sm);
    }

    .gallery-item-large,
    .gallery-item-two,
    .gallery-item-three,
    .gallery-item-four,
    .gallery-item-five {
        grid-column: 1;
    }

    .gallery-item-large {
        grid-row: 1;
    }

    .gallery-item-two {
        grid-row: 2;
    }

    .gallery-item-three {
        grid-row: 3;
    }

    .gallery-item-four {
        grid-row: 4;
    }

    .gallery-item-five {
        grid-row: 5;
    }

    .gallery-item-six {
        display: none;
    }

    .gallery-image-number {
        top: var(--space-md);
        left: var(--space-md);
    }

    .gallery-image-info {
        left: var(--space-md);
        bottom: var(--space-md);
    }

    .gallery-expand {
        right: var(--space-md);
        bottom: var(--space-md);
    }

    .gallery-bottom {
        margin-top: var(--space-xl);

        gap: var(--space-sm);
    }

    .gallery-bottom-content {
        gap: 0.5rem;

        letter-spacing: 0.08em;
    }

    /* Lightbox */

    .gallery-lightbox {
        padding: var(--space-sm);
    }

    .gallery-lightbox-image {
        max-width: 100%;

        max-height: 68vh;
    }

    .gallery-lightbox-nav {
        width: 42px;
        height: 42px;
    }

    .gallery-lightbox-prev {
        left: 5px;
    }

    .gallery-lightbox-next {
        right: 5px;
    }

    .gallery-lightbox-caption {
        padding-top: var(--space-md);
    }

    .gallery-lightbox-caption h3 {
        font-size: var(--fs-lg);
    }

}

/* =========================================================
   LOCATION & CONNECTIVITY SECTION
========================================================= */

.location-section {
    position: relative;
    overflow: hidden;

    padding: var(--space-section) 0;

    background: var(--secondary);

    color: var(--white);
}

/* ---------------------------------------------------------
   BACKGROUND GLOW
--------------------------------------------------------- */

.location-bg-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    right: -220px;
    bottom: -250px;

    border-radius: 50%;

    background: var(--primary);

    filter: blur(150px);

    opacity: 0.10;

    pointer-events: none;
}

/* =========================================================
   HEADER
========================================================= */

.location-header {
    position: relative;
    z-index: 2;

    margin-bottom: var(--space-3xl);
}

.location-eyebrow {
    color: rgba(255, 255, 255, 0.58);
}

.location-eyebrow .section-eyebrow-line {
    background: var(--primary);
}

.location-heading-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr) minmax(280px, 0.75fr);

    gap: var(--space-3xl);

    align-items: end;
}

.location-title {
    max-width: 800px;

    margin: var(--space-lg) 0 0;

    font-family: var(--font-display);

    font-size: clamp(2.8rem, 5.5vw, 5.5rem);

    font-weight: var(--fw-regular);

    line-height: 0.98;

    letter-spacing: -0.035em;

    color: var(--white);
}

.location-title em {
    display: block;

    color: var(--primary-light);

    font-style: italic;

    font-weight: var(--fw-regular);
}

.location-intro {
    max-width: 430px;

    margin: 0 0 0 auto;

    color: rgba(255, 255, 255, 0.55);

    font-size: var(--fs-base);

    font-weight: var(--fw-light);

    line-height: 1.9;
}

/* =========================================================
   LOCATION EXPERIENCE
========================================================= */

.location-experience {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.3fr) minmax(360px, 0.7fr);

    min-height: 620px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    background: rgba(255, 255, 255, 0.025);
}

/* =========================================================
   MAP
========================================================= */

.location-map-wrapper {
    min-height: 620px;

    padding: var(--space-md);

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.location-map {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 588px;

    overflow: hidden;

    background: #ddd;

    border-radius: var(--radius-md);
}

.location-map iframe {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    border: 0;

    filter:
        grayscale(0.85) contrast(0.9) brightness(0.78);

    transition:
        filter 0.6s ease;
}

.location-map:hover iframe {
    filter:
        grayscale(0.25) contrast(0.95) brightness(0.85);
}

/* Map overlay */

.location-map-overlay {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background:
        linear-gradient(180deg,
            rgba(36, 21, 14, 0.15),
            transparent 35%,
            rgba(36, 21, 14, 0.32));
}

/* Map label */

.location-map-label {
    position: absolute;

    left: var(--space-lg);
    bottom: var(--space-lg);

    z-index: 3;

    display: flex;

    align-items: center;

    gap: var(--space-sm);

    padding: var(--space-sm) var(--space-md);

    border: 1px solid rgba(255, 255, 255, 0.30);

    border-radius: var(--radius-md);

    background: rgba(36, 21, 14, 0.72);

    backdrop-filter: blur(16px);

    box-shadow: var(--shadow-md);
}

.location-map-pin {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    color: var(--secondary);

    font-size: 0.8rem;
}

.location-map-label small {
    display: block;

    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.6rem;

    font-weight: var(--fw-medium);

    letter-spacing: 0.14em;
}

.location-map-label strong {
    display: block;

    color: var(--white);

    font-family: var(--font-display);

    font-size: var(--fs-sm);

    font-weight: var(--fw-regular);
}

/* =========================================================
   INFORMATION PANEL
========================================================= */

.location-info {
    display: flex;

    flex-direction: column;

    padding: clamp(2rem, 4vw, 4rem);
}

/* Top */

.location-info-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: auto;
}

.location-number {
    color: var(--primary-light);

    font-family: var(--font-display);

    font-size: var(--fs-xl);
}

.location-mark {
    color: rgba(255, 255, 255, 0.22);

    font-family: var(--font-display);

    font-size: var(--fs-lg);

    letter-spacing: 0.08em;
}

/* Address block */

.location-address-block {
    margin-top: var(--space-3xl);
}

.location-label {
    display: block;

    margin-bottom: var(--space-md);

    color: var(--primary-light);

    font-size: var(--fs-xs);

    font-weight: var(--fw-medium);

    letter-spacing: 0.16em;
}

.location-address-block h3 {
    max-width: 400px;

    margin: 0 0 var(--space-md);

    font-family: var(--font-display);

    font-size: clamp(2rem, 3vw, 3.1rem);

    font-weight: var(--fw-regular);

    line-height: 1.05;

    color: var(--white);
}

.location-address-block h3 span {
    color: var(--primary-light);

    font-style: italic;
}

.location-address-block p {
    max-width: 400px;

    margin: 0;

    color: rgba(255, 255, 255, 0.50);

    font-size: var(--fs-sm);

    line-height: 1.8;
}

/* =========================================================
   LOCATION POINTS
========================================================= */

.location-points {
    margin-top: var(--space-2xl);

    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.location-point {
    display: grid;

    grid-template-columns: 42px 1fr;

    gap: var(--space-md);

    align-items: center;

    padding: var(--space-md) 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.location-point-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 148, 46, 0.30);

    border-radius: 50%;

    color: var(--primary-light);

    font-size: 0.75rem;
}

.location-point strong {
    display: block;

    margin-bottom: 3px;

    color: rgba(255, 255, 255, 0.88);

    font-size: var(--fs-sm);

    font-weight: var(--fw-medium);
}

.location-point div span {
    display: block;

    color: rgba(255, 255, 255, 0.40);

    font-size: 0.72rem;

    line-height: 1.5;
}

/* =========================================================
   ADDRESS
========================================================= */

.location-address {
    display: flex;

    align-items: center;

    gap: var(--space-sm);

    margin-top: var(--space-lg);

    color: rgba(255, 255, 255, 0.42);
}

.location-address i {
    color: var(--primary-light);

    font-size: 0.8rem;
}

.location-address p {
    margin: 0;

    font-size: 0.75rem;
}

/* =========================================================
   DIRECTIONS BUTTON
========================================================= */

.location-directions-btn {
    display: inline-flex;

    align-items: center;

    justify-content: space-between;

    gap: var(--space-md);

    width: 100%;

    margin-top: var(--space-xl);

    padding: 6px 6px 6px var(--space-lg);

    border: 1px solid var(--primary);

    border-radius: 100px;

    background: var(--primary);

    color: var(--secondary);

    text-decoration: none;

    font-size: var(--fs-sm);

    font-weight: var(--fw-semibold);

    transition:
        background var(--transition),
        border-color var(--transition),
        transform var(--transition-smooth);
}

.location-directions-btn:hover {
    background: var(--primary-light);

    border-color: var(--primary-light);

    color: var(--secondary);

    transform: translateY(-3px);
}

.location-btn-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--secondary);

    color: var(--primary-light);

    transition:
        transform var(--transition-smooth);
}

.location-directions-btn:hover .location-btn-icon {
    transform: translate(2px, -2px);
}

/* =========================================================
   BOTTOM
========================================================= */

.location-bottom {
    position: relative;
    z-index: 2;

    display: flex;

    align-items: center;

    gap: var(--space-lg);

    margin-top: var(--space-2xl);
}

.location-bottom-line {
    flex: 1;

    height: 1px;

    background: rgba(255, 255, 255, 0.12);
}

.location-bottom-content {
    display: flex;

    align-items: center;

    gap: var(--space-md);

    color: rgba(255, 255, 255, 0.36);

    font-size: var(--fs-xs);

    font-weight: var(--fw-medium);

    letter-spacing: 0.15em;

    white-space: nowrap;
}

.location-bottom-dot {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .location-heading-row {
        grid-template-columns: 1fr;

        gap: var(--space-lg);
    }

    .location-intro {
        max-width: 650px;

        margin: 0;
    }

    .location-experience {
        grid-template-columns: 1fr;
    }

    .location-map-wrapper {
        min-height: 500px;

        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .location-map {
        min-height: 468px;
    }

    .location-info {
        min-height: 600px;
    }

}

@media (max-width: 575.98px) {

    .location-section {
        padding: 4.5rem 0;
    }

    .location-title {
        font-size: clamp(2.6rem, 12vw, 3.7rem);
    }

    .location-intro {
        font-size: var(--fs-sm);

        line-height: 1.8;
    }

    .location-experience {
        display: block;
    }

    .location-map-wrapper {
        min-height: 380px;

        padding: var(--space-sm);
    }

    .location-map {
        min-height: 350px;
    }

    .location-map-label {
        left: var(--space-sm);
        bottom: var(--space-sm);
    }

    .location-info {
        min-height: auto;

        padding: var(--space-xl);
    }

    .location-address-block {
        margin-top: var(--space-2xl);
    }

    .location-address-block h3 {
        font-size: 2.2rem;
    }

    .location-point {
        grid-template-columns: 38px 1fr;

        gap: var(--space-sm);
    }

    .location-bottom {
        gap: var(--space-sm);
    }

    .location-bottom-content {
        gap: 0.5rem;

        letter-spacing: 0.08em;
    }

}

/* =========================================================
   GUEST REVIEWS SECTION
========================================================= */

.reviews-section {
    position: relative;
    overflow: hidden;

    padding: var(--space-section) 0;

    background: var(--ivory);

    color: var(--text-dark);
}

/* =========================================================
   BACKGROUND GLOW
========================================================= */

.reviews-bg-glow {
    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    filter: blur(140px);

    pointer-events: none;

    opacity: 0.09;
}

.reviews-bg-glow-one {
    top: -180px;
    left: -180px;

    background: var(--primary-light);
}

.reviews-bg-glow-two {
    right: -200px;
    bottom: -220px;

    background: var(--accent);
}

/* =========================================================
   HEADER
========================================================= */

.reviews-header {
    position: relative;
    z-index: 2;

    margin-bottom: var(--space-3xl);
}

.reviews-eyebrow .section-eyebrow-line {
    background: var(--primary);
}

.reviews-heading-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr) minmax(280px, 0.8fr);

    gap: var(--space-3xl);

    align-items: end;
}

.reviews-title {
    max-width: 750px;

    margin: var(--space-lg) 0 0;

    font-family: var(--font-display);

    font-size: clamp(3rem, 5.5vw, 5.5rem);

    font-weight: var(--fw-regular);

    line-height: 0.98;

    letter-spacing: -0.035em;

    color: var(--text-dark);
}

.reviews-title em {
    display: block;

    color: var(--primary);

    font-style: italic;

    font-weight: var(--fw-regular);
}

.reviews-header-right {
    padding-bottom: 0.3rem;
}

.reviews-header-right>p {
    max-width: 430px;

    margin: 0 0 var(--space-lg);

    color: var(--text);

    font-size: var(--fs-base);

    line-height: 1.85;
}

/* =========================================================
   RATING SUMMARY
========================================================= */

.reviews-rating-summary {
    display: flex;

    align-items: center;

    gap: var(--space-md);
}

.reviews-stars {
    display: flex;

    align-items: center;

    gap: 4px;

    color: var(--primary);
}

.reviews-stars i {
    font-size: 0.72rem;
}

.reviews-rating-summary>span {
    color: var(--text-light);

    font-size: var(--fs-xs);

    letter-spacing: 0.08em;
}

/* =========================================================
   SLIDER
========================================================= */

.reviews-slider-wrapper {
    position: relative;
    z-index: 2;
}

.reviews-swiper {
    width: 100%;

    overflow: visible;
}

.review-slide {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;

    padding:
        clamp(2.5rem, 6vw, 5rem) clamp(2rem, 7vw, 7rem);

    overflow: hidden;

    border:
        1px solid rgba(201, 148, 46, 0.16);

    border-radius: var(--radius-xl);

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.88),
            rgba(243, 238, 229, 0.72));

    box-shadow:
        0 25px 80px rgba(36, 21, 14, 0.08);
}

/* =========================================================
   SLIDE NUMBER
========================================================= */

.review-slide-number {
    position: absolute;

    top: var(--space-xl);
    left: var(--space-xl);

    color: var(--text-light);

    font-family: var(--font-display);

    font-size: var(--fs-sm);

    letter-spacing: 0.04em;
}

/* =========================================================
   QUOTE MARK
========================================================= */

.review-quote-mark {
    position: absolute;

    top: 0;

    right: clamp(2rem, 7vw, 7rem);

    color: rgba(201, 148, 46, 0.10);

    font-family: var(--font-display);

    font-size: clamp(12rem, 22vw, 20rem);

    line-height: 0.7;

    pointer-events: none;

    user-select: none;
}

/* =========================================================
   REVIEW CONTENT
========================================================= */

.review-content {
    position: relative;

    z-index: 2;

    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.review-content .review-stars {
    justify-content: center;

    margin-bottom: var(--space-xl);
}

.review-content blockquote {
    max-width: 850px;

    margin: 0 auto var(--space-2xl);

    color: var(--text-dark);

    font-family: var(--font-display);

    font-size: clamp(1.8rem, 3.5vw, 3.4rem);

    font-weight: var(--fw-regular);

    line-height: 1.25;

    letter-spacing: -0.02em;
}

/* =========================================================
   REVIEW AUTHOR
========================================================= */

.review-author {
    display: inline-flex;

    align-items: center;

    gap: var(--space-sm);

    text-align: left;
}

.review-author-avatar {
    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--secondary);

    color: var(--primary-light);

    font-family: var(--font-display);

    font-size: var(--fs-md);
}

.review-author strong {
    display: block;

    color: var(--text-dark);

    font-size: var(--fs-sm);

    font-weight: var(--fw-semibold);
}

.review-author span {
    display: block;

    margin-top: 2px;

    color: var(--text-light);

    font-size: 0.68rem;

    letter-spacing: 0.05em;
}

/* =========================================================
   CH MARK
========================================================= */

.review-slide-mark {
    position: absolute;

    right: var(--space-xl);
    bottom: var(--space-lg);

    color: rgba(36, 21, 14, 0.10);

    font-family: var(--font-display);

    font-size: var(--fs-xl);

    letter-spacing: 0.08em;
}

/* =========================================================
   CONTROLS
========================================================= */

.reviews-controls {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: var(--space-xl);
}

/* Progress */

.reviews-progress {
    display: flex;

    align-items: center;

    gap: var(--space-sm);

    min-width: 220px;
}

.reviews-current {
    color: var(--primary-dark);

    font-family: var(--font-display);

    font-size: var(--fs-lg);
}

.reviews-total {
    color: var(--text-light);

    font-size: var(--fs-xs);
}

.reviews-progress-line {
    position: relative;

    width: 100px;
    height: 1px;

    overflow: hidden;

    background: var(--border);
}

.reviews-progress-line span {
    position: absolute;

    left: 0;
    top: 0;

    width: 25%;
    height: 100%;

    background: var(--primary);

    transition:
        width 0.5s var(--transition-smooth);
}

/* Navigation */

.reviews-navigation {
    display: flex;

    gap: var(--space-sm);
}

.reviews-nav-btn {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid var(--border);

    border-radius: 50%;

    background: transparent;

    color: var(--text-dark);

    cursor: pointer;

    transition:
        background var(--transition),
        border-color var(--transition),
        color var(--transition),
        transform var(--transition-smooth);
}

.reviews-nav-btn:hover {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--secondary);

    transform: translateY(-3px);
}

/* =========================================================
   BOTTOM DETAILS
========================================================= */

.reviews-bottom {
    display: flex;

    align-items: center;

    gap: var(--space-lg);

    margin-top: var(--space-2xl);
}

.reviews-bottom-line {
    flex: 1;

    height: 1px;

    background: var(--border);
}

.reviews-bottom-content {
    display: flex;

    align-items: center;

    gap: var(--space-md);

    color: var(--text-light);

    font-size: var(--fs-xs);

    font-weight: var(--fw-medium);

    letter-spacing: 0.15em;

    white-space: nowrap;
}

.reviews-bottom-dot {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--primary);
}

/* =========================================================
   SLIDE ANIMATION
========================================================= */

.reviews-swiper .swiper-slide {
    opacity: 0.45;

    transform: scale(0.96);

    transition:
        opacity 0.6s ease,
        transform 0.7s var(--transition-smooth);
}

.reviews-swiper .swiper-slide-active {
    opacity: 1;

    transform: scale(1);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

    .reviews-heading-row {
        grid-template-columns: 1fr;

        gap: var(--space-lg);
    }

    .reviews-header-right>p {
        max-width: 650px;
    }

    .review-slide {
        min-height: 460px;
    }

}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .reviews-section {
        padding: 4.5rem 0;
    }

    .reviews-title {
        font-size: clamp(2.7rem, 12vw, 3.8rem);
    }

    .reviews-header-right>p {
        font-size: var(--fs-sm);

        line-height: 1.8;
    }

    .review-slide {
        min-height: 470px;

        padding:
            3rem 1.4rem 2.5rem;

        border-radius: var(--radius-lg);
    }

    .review-slide-number {
        top: var(--space-md);
        left: var(--space-md);
    }

    .review-quote-mark {
        right: 1rem;

        font-size: 10rem;
    }

    .review-content blockquote {
        font-size: 1.65rem;

        line-height: 1.35;
    }

    .review-content .review-stars {
        margin-bottom: var(--space-lg);
    }

    .reviews-controls {
        align-items: flex-end;
    }

    .reviews-progress {
        min-width: 150px;
    }

    .reviews-progress-line {
        width: 60px;
    }

    .reviews-nav-btn {
        width: 43px;
        height: 43px;
    }

    .reviews-bottom {
        gap: var(--space-sm);
    }

    .reviews-bottom-content {
        gap: 0.5rem;

        letter-spacing: 0.08em;
    }

}