:root {
    --forest: #12352D;
    --forest-dark: #0B211C;
    --gold: #C8A96B;
    --gold-light: #DFC68F;
    --ivory: #F5F0E6;
    --beige: #DED5C5;
    --charcoal: #171A18;
    --white: #FFFFFF;
    --muted: #737A75;
    --border: rgba(18, 53, 45, 0.12);

    --container: 1200px;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ivory);
    color: var(--charcoal);

    font-family:
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;

    line-height: 1.6;

    overflow-x: hidden;

    animation:
        pageEnter 0.8s ease both;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(
        var(--container),
        calc(100% - 48px)
    );

    margin: 0 auto;
}


/* =========================================================
   GLOBAL ANIMATION
========================================================= */

@keyframes pageEnter {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes fadeUp {

    from {
        opacity: 0;
        transform:
            translateY(40px);
    }

    to {
        opacity: 1;
        transform:
            translateY(0);
    }
}


@keyframes imageReveal {

    from {
        opacity: 0;
        transform:
            scale(1.08);
    }

    to {
        opacity: 1;
        transform:
            scale(1);
    }
}


@keyframes float {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-10px);
    }
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    background:
        linear-gradient(
            to bottom,
            rgba(5, 18, 15, 0.72),
            rgba(5, 18, 15, 0)
        );

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);

    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease;
}


.site-header.scrolled {
    background:
        rgba(11, 33, 28, 0.94);

    backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid
        rgba(255,255,255,0.08);
}


.nav-wrapper {
    min-height: 88px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--white);
}


.brand-logo-placeholder {
    width: 47px;
    height: 47px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background:
        rgba(255,255,255,0.08);

    border:
        1px solid
        rgba(200,169,107,0.7);

    color:
        var(--gold);

    font-size: 8px;

    font-weight: 700;
}


.brand-text {
    display: flex;
    flex-direction: column;
}


.brand-text strong {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.35rem;

    font-weight: 500;

    line-height: 1.1;

    color:
        var(--white);
}


.brand-text span {
    color:
        var(--gold);

    font-size:
        0.52rem;

    letter-spacing:
        2px;

    margin-top:
        3px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}


.main-nav > a {
    position: relative;

    padding:
        31px 0;

    color:
        rgba(255,255,255,0.9);

    font-size:
        0.82rem;

    letter-spacing:
        0.3px;

    transition:
        color 0.25s ease;
}


.main-nav > a:hover,
.main-nav > a.active {
    color:
        var(--gold-light);
}


.main-nav > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 23px;

    width: 100%;
    height: 1px;

    background:
        var(--gold);

    transform:
        scaleX(0);

    transform-origin:
        center;

    transition:
        transform 0.25s ease;
}


.main-nav > a:hover::after,
.main-nav > a.active::after {
    transform:
        scaleX(1);
}


.nav-booking {
    padding:
        11px 19px !important;

    border:
        1px solid
        rgba(200,169,107,0.7);

    border-radius:
        999px;

    color:
        var(--gold-light) !important;
}


.nav-booking:hover {
    background:
        var(--gold);

    color:
        var(--forest-dark) !important;
}


.nav-booking::after {
    display:
        none;
}

/* =========================================================
   ACCOMMODATION DROPDOWN
========================================================= */

.nav-dropdown-trigger {
    position: relative;

    display: inline-flex;
    align-items: center;

    gap: 5px;
}


.dropdown-arrow {
    font-size: 0.7rem;

    transition:
        transform 0.25s ease;
}


.nav-dropdown {
    position: absolute;

    top: 76px;
    left: 50%;

    transform:
        translateX(-50%)
        translateY(8px);

    width: 190px;

    padding: 10px;

    display: none;
    flex-direction: column;

    background:
        rgba(11, 33, 28, 0.97);

    backdrop-filter:
        blur(18px);

    border:
        1px solid
        rgba(200, 169, 107, 0.25);

    border-radius:
        14px;

    box-shadow:
        0 20px 50px
        rgba(0, 0, 0, 0.25);

    opacity: 0;

    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}


.nav-dropdown a {
    display: block;

    padding:
        12px 14px;

    color:
        rgba(255,255,255,0.85);

    border-radius:
        9px;

    font-size:
        0.85rem;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        padding-left 0.2s ease;
}


.nav-dropdown a:hover {
    background:
        rgba(200, 169, 107, 0.12);

    color:
        var(--gold-light);

    padding-left:
        18px;
}


/* Show dropdown */

.nav-dropdown-trigger:hover + .nav-dropdown,
.nav-dropdown:hover {
    display:
        flex;

    opacity:
        1;

    transform:
        translateX(-50%)
        translateY(0);
}


/* Rotate arrow */

.nav-dropdown-trigger:hover .dropdown-arrow {
    transform:
        rotate(180deg);
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    background:
        transparent;

    border:
        1px solid
        rgba(255,255,255,0.4);

    border-radius:
        50%;

    cursor:
        pointer;
}


.mobile-menu-toggle span {
    display:
        block;

    width:
        18px;

    height:
        1px;

    margin:
        4px auto;

    background:
        var(--white);

    transition:
        0.25s ease;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height:
        100vh;

    display:
        flex;

    align-items:
        center;

    overflow:
        hidden;

    background:
        linear-gradient(
            110deg,
            rgba(8,28,23,0.88),
            rgba(8,28,23,0.48),
            rgba(8,28,23,0.2)
        ),
        url('/assets/images/hero/hero-main.jpg')
        center / cover no-repeat;

    color:
        var(--white);
}


.hero::before {
    content: "";

    position:
        absolute;

    inset:
        0;

    background:
        radial-gradient(
            circle at 75% 25%,
            rgba(200,169,107,0.15),
            transparent 30%
        );

    pointer-events:
        none;
}


.hero::after {
    content: "";

    position:
        absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height:
        180px;

    background:
        linear-gradient(
            to bottom,
            transparent,
            var(--ivory)
        );

    opacity:
        0.45;

    pointer-events:
        none;
}


.hero-content {
    position:
        relative;

    z-index:
        2;

    padding-top:
        100px;
}


.hero-eyebrow {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        12px;

    margin-bottom:
        22px;

    color:
        var(--gold-light);

    font-size:
        0.72rem;

    letter-spacing:
        4px;

    text-transform:
        uppercase;

    animation:
        fadeUp 1s 0.15s ease both;
}


.hero-eyebrow::before {
    content: "";

    width:
        45px;

    height:
        1px;

    background:
        var(--gold);
}


.hero h1 {
    max-width:
        900px;

    margin-bottom:
        25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            3.5rem,
            7vw,
            7rem
        );

    font-weight:
        400;

    line-height:
        0.98;

    letter-spacing:
        -3px;

    animation:
        fadeUp 1s 0.3s ease both;
}


.hero-description {
    max-width:
        670px;

    margin-bottom:
        38px;

    color:
        rgba(255,255,255,0.8);

    font-size:
        1.05rem;

    animation:
        fadeUp 1s 0.45s ease both;
}


.hero-actions {
    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    animation:
        fadeUp 1s 0.6s ease both;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height:
        52px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        0 28px;

    border-radius:
        999px;

    font-size:
        0.84rem;

    letter-spacing:
        0.5px;

    font-weight:
        700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}


.btn:hover {
    transform:
        translateY(-3px);
}


.btn-primary {
    background:
        var(--gold);

    color:
        var(--forest-dark);

    box-shadow:
        0 10px 30px
        rgba(200,169,107,0.18);
}


.btn-primary:hover {
    background:
        var(--gold-light);

    box-shadow:
        0 15px 40px
        rgba(200,169,107,0.25);
}


.btn-outline {
    border:
        1px solid
        rgba(255,255,255,0.65);

    color:
        var(--white);
}


.btn-outline:hover {
    background:
        rgba(255,255,255,0.12);

    border-color:
        var(--white);
}


/* =========================================================
   SECTIONS
========================================================= */

.section {
    padding:
        120px 0;
}


.section-light {
    background:
        var(--ivory);
}


.eyebrow {
    margin-bottom:
        14px;

    color:
        var(--gold);

    font-size:
        0.72rem;

    letter-spacing:
        4px;

    font-weight:
        700;

    text-transform:
        uppercase;
}


.section-heading h2,
.intro-section h2,
.booking-box h2 {
    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.8rem
        );

    font-weight:
        400;

    line-height:
        1.05;
}


.section-heading {
    max-width:
        700px;

    margin-bottom:
        55px;
}


.section-heading > p:last-child {
    margin-top:
        18px;

    color:
        var(--muted);

    font-size:
        1rem;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.intro-section {
    background:
        var(--ivory);
}


.intro-grid {
    display:
        grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap:
        100px;

    align-items:
        center;
}


.intro-grid h2 {
    max-width:
        600px;
}


.intro-grid > div:last-child {
    color:
        var(--muted);

    font-size:
        1.05rem;
}


.intro-grid > div:last-child p + p {
    margin-top:
        18px;
}


/* =========================================================
   UNIT CARDS
========================================================= */

.unit-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        28px;
}


.unit-card {
    position:
        relative;

    overflow:
        hidden;

    background:
        var(--white);

    border:
        1px solid
        rgba(18,53,45,0.10);

    border-radius:
        24px;

    box-shadow:
        0 25px 70px
        rgba(25,38,32,0.07);

    transform:
        translateY(0);

    transition:
        transform 0.5s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.5s ease;
}


.unit-card:hover {
    transform:
        translateY(-10px);

    box-shadow:
        0 35px 90px
        rgba(25,38,32,0.14);
}


.unit-image {
    position:
        relative;

    aspect-ratio:
        16 / 10;

    overflow:
        hidden;
}


.unit-image::after {
    content: "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            to top,
            rgba(11,33,28,0.65),
            transparent 45%
        );
}


.image-placeholder {
    width:
        100%;

    height:
        100%;

    display:
        grid;

    place-items:
        center;

    background:
        linear-gradient(
            135deg,
            #bfc8bf,
            #e5e0d6
        );

    color:
        rgba(255,255,255,0.85);

    font-family:
        Georgia,
        serif;

    font-size:
        2rem;

    transition:
        transform 0.8s
        cubic-bezier(.2,.8,.2,1);
}


.unit-card:hover
.image-placeholder {
    transform:
        scale(1.05);
}


.unit-content {
    padding:
        34px;
}


.unit-label {
    margin-bottom:
        10px;

    color:
        var(--gold);

    font-size:
        0.68rem;

    letter-spacing:
        3px;

    font-weight:
        700;
}


.unit-content h3 {
    margin-bottom:
        14px;

    font-family:
        Georgia,
        serif;

    font-size:
        2.3rem;

    font-weight:
        400;
}


.unit-content > p {
    margin-bottom:
        22px;

    color:
        var(--muted);
}


.unit-meta {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-bottom:
        25px;
}


.unit-meta span {
    padding:
        7px 13px;

    border:
        1px solid
        var(--border);

    border-radius:
        999px;

    color:
        var(--forest);

    font-size:
        0.78rem;
}


.text-link {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        7px;

    color:
        var(--forest);

    font-weight:
        700;

    transition:
        gap 0.25s ease,
        color 0.25s ease;
}


.text-link:hover {
    gap:
        12px;

    color:
        var(--gold);
}


/* =========================================================
   FACILITIES
========================================================= */

.facility-grid {
    display:
        grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        18px;
}


.facility-card {
    padding:
        34px;

    background:
        rgba(255,255,255,0.65);

    border:
        1px solid
        var(--border);

    border-radius:
        20px;

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease;
}


.facility-card:hover {
    transform:
        translateY(-8px);

    background:
        var(--white);

    border-color:
        rgba(200,169,107,0.45);
}


.facility-icon {
    width:
        46px;

    height:
        46px;

    display:
        grid;

    place-items:
        center;

    margin-bottom:
        20px;

    border:
        1px solid
        rgba(200,169,107,0.5);

    border-radius:
        50%;

    color:
        var(--gold);

    background:
        rgba(200,169,107,0.08);

    font-size:
        0.7rem;
}


.facility-card h3 {
    margin-bottom:
        8px;

    font-family:
        Georgia,
        serif;

    font-size:
        1.5rem;

    font-weight:
        400;
}


.facility-card p {
    color:
        var(--muted);

    font-size:
        0.9rem;
}


/* =========================================================
   BOOKING CTA
========================================================= */

.booking-section {
    position:
        relative;

    overflow:
        hidden;

    padding:
        110px 0;

    background:
        var(--forest-dark);

    color:
        var(--white);
}


.booking-section::before {
    content: "";

    position:
        absolute;

    width:
        500px;

    height:
        500px;

    right:
        -150px;

    top:
        -220px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(200,169,107,0.18),
            transparent 65%
        );
}


.booking-box {
    position:
        relative;

    z-index:
        1;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        35px;
}


.booking-box h2 {
    max-width:
        720px;
}


.booking-box p {
    color:
        rgba(255,255,255,0.6);

    margin-top:
        10px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background:
        #071611;

    color:
        var(--white);
}


.footer-grid {
    display:
        grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    gap:
        60px;

    padding:
        75px 0;
}


.footer-grid h3,
.footer-grid h4 {
    margin-bottom:
        15px;

    font-family:
        Georgia,
        serif;

    font-weight:
        400;
}


.footer-grid p {
    color:
        rgba(255,255,255,0.5);

    font-size:
        0.9rem;
}


.footer-links {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;
}


.footer-links a {
    color:
        rgba(255,255,255,0.55);

    transition:
        color 0.2s ease;
}


.footer-links a:hover {
    color:
        var(--gold);
}


.footer-bottom {
    padding:
        20px 0;

    border-top:
        1px solid
        rgba(255,255,255,0.07);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity:
        0;

    transform:
        translateY(50px);

    transition:
        opacity 0.8s ease,
        transform 0.8s
        cubic-bezier(.2,.8,.2,1);
}


.reveal.show {
    opacity:
        1;

    transform:
        translateY(0);
}


.reveal-delay-1 {
    transition-delay:
        0.1s;
}


.reveal-delay-2 {
    transition-delay:
        0.2s;
}


.reveal-delay-3 {
    transition-delay:
        0.3s;
}

/* =========================================================
   EXPERIENCE SECTION
========================================================= */

.experience-grid {
    display: grid;

    grid-template-columns:
        1.05fr
        0.95fr;

    gap: 90px;

    align-items: center;
}


.experience-image {
    position: relative;

    min-height: 620px;

    overflow: hidden;

    border-radius: 24px;

    background:
        var(--forest);
}


.experience-image img {
    width: 100%;
    height: 100%;

    min-height: 620px;

    object-fit: cover;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1);
}


.experience-image:hover img {
    transform:
        scale(1.04);
}


.experience-placeholder {
    min-height: 620px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            135deg,
            #153d34,
            #9b927f
        );

    color:
        rgba(255,255,255,0.8);

    font-family:
        Georgia,
        serif;

    font-size:
        2rem;

    letter-spacing:
        2px;
}


.experience-content h2 {
    max-width: 650px;

    margin-bottom: 25px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.8rem,
            5vw,
            5rem
        );

    font-weight:
        400;

    line-height:
        1.02;
}


.experience-content > p {
    max-width:
        580px;

    margin-bottom:
        18px;

    color:
        var(--muted);
}


.experience-content .btn {
    margin-top:
        16px;
}


/* =========================================================
   VISUAL GRID
========================================================= */

.visual-grid {
    display:
        grid;

    grid-template-columns:
        1.4fr
        0.8fr;

    gap:
        18px;
}


.visual-card {
    position:
        relative;

    min-height:
        480px;

    overflow:
        hidden;

    border-radius:
        24px;

    background:
        var(--forest);
}


.visual-card.large {
    min-height:
        580px;
}


.visual-card img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1);
}


.visual-card:hover img {
    transform:
        scale(1.06);
}


.visual-placeholder {
    width:
        100%;

    height:
        100%;

    min-height:
        480px;

    display:
        grid;

    place-items:
        center;

    background:
        linear-gradient(
            135deg,
            #1b4239,
            #8c806b
        );

    color:
        rgba(255,255,255,0.75);

    font-family:
        Georgia,
        serif;

    font-size:
        1.5rem;

    letter-spacing:
        2px;
}


.visual-card::after {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            to top,
            rgba(5,18,15,0.78),
            rgba(5,18,15,0.05)
        );

    pointer-events:
        none;
}


.visual-overlay {
    position:
        absolute;

    left:
        30px;

    right:
        30px;

    bottom:
        28px;

    z-index:
        2;

    color:
        var(--white);
}


.visual-overlay p {
    margin-bottom:
        7px;

    color:
        var(--gold-light);

    font-size:
        0.68rem;

    font-weight:
        700;

    letter-spacing:
        3px;
}


.visual-overlay h3 {
    font-family:
        Georgia,
        serif;

    font-size:
        clamp(
            1.8rem,
            4vw,
            2.8rem
        );

    font-weight:
        400;
}


/* =========================================================
   FINAL NOTE
========================================================= */

.final-note {
    text-align:
        center;

    background:
        var(--ivory);
}


.final-note-inner {
    max-width:
        900px;

    margin:
        0 auto;
}


.final-note-inner h2 {
    margin-bottom:
        20px;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(
            3rem,
            6vw,
            6rem
        );

    font-weight:
        400;

    line-height:
        0.98;
}


.final-note-inner > p:last-child {
    color:
        var(--muted);

    letter-spacing:
        2px;

    text-transform:
        uppercase;

    font-size:
        0.75rem;
}


@media (max-width: 900px) {

    .experience-grid {
        grid-template-columns:
            1fr;

        gap:
            45px;
    }


    .experience-image,
    .experience-image img,
    .experience-placeholder {
        min-height:
            500px;
    }


    .visual-grid {
        grid-template-columns:
            1fr;
    }


    .visual-card,
    .visual-card.large {
        min-height:
            480px;
    }

}


@media (max-width: 700px) {

    .experience-image,
    .experience-image img,
    .experience-placeholder {
        min-height:
            380px;
    }


    .visual-card,
    .visual-card.large {
        min-height:
            400px;
    }


    .final-note-inner h2 {
        font-size:
            3.1rem;
    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap:
            18px;
    }

    .main-nav > a {
        font-size:
            0.76rem;
    }

    .facility-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 900px) {

    .mobile-menu-toggle {
        display:
            block;
    }

    .main-nav {
        position:
            absolute;

        top:
            100%;

        left:
            0;

        right:
            0;

        display:
            none;

        flex-direction:
            column;

        align-items:
            stretch;

        gap:
            0;

        padding:
            12px;

        background:
            rgba(11,33,28,0.98);

        backdrop-filter:
            blur(18px);

        border-top:
            1px solid
            rgba(255,255,255,0.08);
    }

    .main-nav.mobile-open {
        display:
            flex;
    }

    .main-nav > a {
        padding:
            13px 10px;

        font-size:
            0.9rem;
    }

    .main-nav > a::after {
        display:
            none;
    }

    .nav-booking {
        text-align:
            center;

        margin-top:
            6px;
    }

    .intro-grid {
        grid-template-columns:
            1fr;

        gap:
            40px;
    }

}


@media (max-width: 700px) {

    .container {
        width:
            min(
                var(--container),
                calc(100% - 28px)
            );
    }

    .nav-wrapper {
        min-height:
            75px;
    }

    .hero {
        min-height:
            90vh;
    }

    .hero-content {
        padding-top:
            120px;
    }

    .hero h1 {
        font-size:
            3rem;

        letter-spacing:
            -1px;
    }

    .hero-description {
        font-size:
            0.95rem;
    }

    .hero-actions {
        flex-direction:
            column;

        align-items:
            stretch;

        max-width:
            290px;
    }

    .hero-actions .btn {
        width:
            100%;
    }

    .section {
        padding:
            85px 0;
    }

    .section-heading h2,
    .intro-section h2,
    .booking-box h2 {
        font-size:
            2.7rem;
    }

    .unit-grid,
    .facility-grid,
    .footer-grid {
        grid-template-columns:
            1fr;
    }

    .booking-box {
        flex-direction:
            column;

        align-items:
            flex-start;
    }

}

/* =========================================================
   UNIT PAGE
========================================================= */

.unit-page-hero {
    position: relative;

    min-height: 82vh;

    display: flex;

    align-items: flex-end;

    padding-bottom: 100px;

    background-position:
        center;

    background-size:
        cover;

    color:
        var(--white);

    overflow:
        hidden;
}


.unit-page-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,18,15,0.75),
            transparent 55%
        );
}


.unit-hero-content {
    position:
        relative;

    z-index: 2;

    max-width:
        850px;
}


.unit-hero-content h1 {
    margin-bottom:
        18px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            4rem,
            8vw,
            7rem
        );

    font-weight:
        400;

    line-height:
        0.95;
}


.unit-hero-content > p:not(.hero-eyebrow) {
    max-width:
        650px;

    color:
        rgba(255,255,255,0.78);

    font-size:
        1.05rem;

    margin-bottom:
        25px;
}


.unit-hero-meta {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        9px;
}


.unit-hero-meta span {
    padding:
        8px 15px;

    border:
        1px solid
        rgba(255,255,255,0.28);

    border-radius:
        999px;

    background:
        rgba(255,255,255,0.08);

    backdrop-filter:
        blur(8px);

    font-size:
        0.78rem;
}


/* =========================================================
   UNIT OVERVIEW
========================================================= */

.unit-overview {
    display:
        grid;

    grid-template-columns:
        1fr 0.9fr;

    gap:
        100px;

    align-items:
        center;
}


.unit-overview-heading h2 {
    max-width:
        650px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.8rem
        );

    font-weight:
        400;

    line-height:
        1.05;
}


.unit-overview-copy {
    color:
        var(--muted);

    font-size:
        1rem;
}


.unit-overview-copy p + p {
    margin-top:
        18px;
}


/* =========================================================
   LARGE FEATURE
========================================================= */

.large-feature {
    display:
        grid;

    grid-template-columns:
        1.25fr 0.75fr;

    gap:
        70px;

    align-items:
        center;
}


.large-feature-image {
    position:
        relative;

    min-height:
        610px;

    overflow:
        hidden;

    border-radius:
        24px;
}


.large-feature-image img {
    width:
        100%;

    height:
        610px;

    object-fit:
        cover;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1);
}


.large-feature-image:hover img {
    transform:
        scale(1.04);
}


.large-feature-content h2 {
    max-width:
        540px;

    margin-bottom:
        22px;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.8rem
        );

    font-weight:
        400;

    line-height:
        1.02;
}


.large-feature-content > p:not(.eyebrow) {
    max-width:
        510px;

    color:
        var(--muted);

    font-size:
        1rem;
}


/* =========================================================
   BEDROOMS
========================================================= */

.bedroom-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap:
        20px;
}


.bedroom-card {
    overflow:
        hidden;

    background:
        var(--white);

    border:
        1px solid
        var(--border);

    border-radius:
        20px;

    box-shadow:
        0 20px 60px
        rgba(25,38,32,0.06);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}


.bedroom-card:hover {
    transform:
        translateY(-8px);

    box-shadow:
        0 30px 70px
        rgba(25,38,32,0.12);
}


.bedroom-image {
    position:
        relative;

    aspect-ratio:
        4 / 3;

    overflow:
        hidden;
}


.bedroom-image img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 0.8s
        cubic-bezier(.2,.8,.2,1);
}


.bedroom-card:hover
.bedroom-image img {
    transform:
        scale(1.05);
}


.bedroom-number {
    position:
        absolute;

    top:
        16px;

    right:
        16px;

    width:
        42px;

    height:
        42px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(255,255,255,0.45);

    border-radius:
        50%;

    background:
        rgba(11,33,28,0.6);

    backdrop-filter:
        blur(8px);

    color:
        var(--white);

    font-size:
        0.75rem;
}


.bedroom-content {
    padding:
        28px;
}


.bedroom-content h3 {
    margin-bottom:
        12px;

    font-family:
        Georgia,
        serif;

    font-size:
        1.8rem;

    font-weight:
        400;
}


.bedroom-content > p:not(.unit-label) {
    color:
        var(--muted);

    font-size:
        0.9rem;

    margin-bottom:
        18px;
}


.room-features {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        7px;
}


.room-features span {
    padding:
        6px 9px;

    border:
        1px solid
        var(--border);

    border-radius:
        999px;

    color:
        var(--forest);

    font-size:
        0.72rem;
}


/* =========================================================
   KITCHEN / BATHROOM
========================================================= */

.space-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        20px;
}


.space-card {
    position:
        relative;

    overflow:
        hidden;

    min-height:
        520px;

    border-radius:
        22px;

    background:
        var(--forest);
}


.space-image,
.space-image img {
    width:
        100%;

    height:
        100%;

    min-height:
        520px;
}


.space-image img {
    object-fit:
        cover;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1);
}


.space-card:hover
.space-image img {
    transform:
        scale(1.05);
}


.space-card::after {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            to top,
            rgba(5,18,15,0.82),
            rgba(5,18,15,0.04)
        );
}


.space-content {
    position:
        absolute;

    left:
        30px;

    right:
        30px;

    bottom:
        30px;

    z-index:
        2;

    color:
        var(--white);
}


.space-content h3 {
    max-width:
        500px;

    font-family:
        Georgia,
        serif;

    font-size:
        2.2rem;

    font-weight:
        400;

    line-height:
        1.08;
}


/* =========================================================
   AMENITIES
========================================================= */

.amenity-grid {
    display:
        grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    border-top:
        1px solid
        var(--border);

    border-left:
        1px solid
        var(--border);
}


.amenity-item {
    min-height:
        250px;

    padding:
        30px;

    border-right:
        1px solid
        var(--border);

    border-bottom:
        1px solid
        var(--border);

    transition:
        background 0.35s ease,
        transform 0.35s ease;
}


.amenity-item:hover {
    background:
        rgba(200,169,107,0.07);

    transform:
        translateY(-4px);
}


.amenity-number {
    display:
        block;

    margin-bottom:
        28px;

    color:
        var(--gold);

    font-size:
        0.7rem;

    letter-spacing:
        2px;
}


.amenity-item h3 {
    margin-bottom:
        10px;

    font-family:
        Georgia,
        serif;

    font-size:
        1.45rem;

    font-weight:
        400;
}


.amenity-item p {
    color:
        var(--muted);

    font-size:
        0.86rem;
}


/* =========================================================
   UNIT BOOKING CTA
========================================================= */

.unit-booking-cta {
    padding:
        110px 0;

    background:
        var(--forest-dark);

    color:
        var(--white);
}


.unit-booking-inner {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        40px;
}


.unit-booking-inner h2 {
    max-width:
        700px;

    margin-bottom:
        15px;

    font-family:
        Georgia,
        serif;

    font-size:
        clamp(
            2.8rem,
            5vw,
            5rem
        );

    font-weight:
        400;

    line-height:
        1.02;
}


.unit-booking-inner > div > p:not(.eyebrow) {
    max-width:
        600px;

    color:
        rgba(255,255,255,0.6);
}


/* =========================================================
   UNIT PAGE RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .unit-overview {
        grid-template-columns:
            1fr;

        gap:
            40px;
    }


    .large-feature {
        grid-template-columns:
            1fr;

        gap:
            45px;
    }


    .bedroom-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .amenity-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .unit-page-hero {
        min-height:
            82vh;

        padding-bottom:
            65px;
    }


    .unit-hero-content h1 {
        font-size:
            4rem;
    }


    .bedroom-grid,
    .space-grid,
    .amenity-grid {
        grid-template-columns:
            1fr;
    }


    .large-feature-image,
    .large-feature-image img {
        min-height:
            400px;

        height:
            400px;
    }


    .space-card,
    .space-image,
    .space-image img {
        min-height:
            400px;
    }


    .unit-booking-inner {
        flex-direction:
            column;

        align-items:
            flex-start;
    }

}

/* =========================================================
   FACILITIES PAGE
========================================================= */

.facilities-hero {
    position: relative;

    min-height: 78vh;

    display: flex;

    align-items: flex-end;

    padding-bottom: 100px;

    background-position:
        center;

    background-size:
        cover;

    color:
        var(--white);

    overflow:
        hidden;
}


.facilities-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,18,15,0.82),
            transparent 55%
        );
}


.facilities-hero-content {
    position:
        relative;

    z-index: 2;

    max-width:
        850px;
}


.facilities-hero-content h1 {
    max-width:
        850px;

    margin-bottom:
        22px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            3.5rem,
            7vw,
            6.5rem
        );

    font-weight:
        400;

    line-height:
        0.98;
}


.facilities-hero-content > p:not(.hero-eyebrow) {
    max-width:
        680px;

    color:
        rgba(255,255,255,0.78);

    font-size:
        1.05rem;
}


/* =========================================================
   FACILITIES INTRO
========================================================= */

.facilities-intro {
    display:
        grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap:
        100px;

    align-items:
        center;
}


.facilities-intro h2 {
    max-width:
        680px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.8rem
        );

    font-weight:
        400;

    line-height:
        1.04;
}


.facilities-intro > div:last-child {
    color:
        var(--muted);

    font-size:
        1rem;
}


.facilities-intro > div:last-child p + p {
    margin-top:
        18px;
}


/* =========================================================
   FACILITY DETAIL CARD
========================================================= */

.facility-detail-card {
    display:
        grid;

    grid-template-columns:
        minmax(340px, 0.85fr)
        minmax(0, 1.15fr);

    min-height:
        560px;

    margin-bottom:
        28px;

    overflow:
        hidden;

    background:
        var(--white);

    border:
        1px solid
        var(--border);

    border-radius:
        24px;

    box-shadow:
        0 25px 70px
        rgba(25,38,32,0.06);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}


.facility-detail-card:hover {
    transform:
        translateY(-7px);

    box-shadow:
        0 35px 90px
        rgba(25,38,32,0.11);
}


/* =========================================================
   FACILITY IMAGE
========================================================= */

.facility-detail-image {
    position:
        relative;

    min-height:
        560px;

    overflow:
        hidden;

    background:
        var(--forest);
}


.facility-detail-image img {
    width:
        100%;

    height:
        100%;

    min-height:
        560px;

    object-fit:
        cover;

    transition:
        transform 1s
        cubic-bezier(.2,.8,.2,1);
}


.facility-detail-card:hover
.facility-detail-image img {
    transform:
        scale(1.05);
}


.facility-detail-placeholder {
    width:
        100%;

    height:
        100%;

    min-height:
        560px;

    display:
        grid;

    place-items:
        center;

    background:
        linear-gradient(
            135deg,
            #163c32,
            #9b927f
        );

    color:
        rgba(255,255,255,0.8);

    font-family:
        Georgia,
        serif;

    font-size:
        2rem;
}


.facility-detail-number {
    position:
        absolute;

    top:
        25px;

    left:
        25px;

    width:
        48px;

    height:
        48px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(255,255,255,0.4);

    border-radius:
        50%;

    background:
        rgba(11,33,28,0.58);

    backdrop-filter:
        blur(10px);

    color:
        var(--white);

    font-size:
        0.72rem;

    z-index:
        2;
}


/* =========================================================
   FACILITY CONTENT
========================================================= */

.facility-detail-content {
    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    padding:
        55px;
}


.facility-detail-heading {
    max-width:
        700px;

    margin-bottom:
        35px;
}


.facility-detail-heading h2 {
    margin-bottom:
        14px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2.4rem,
            4vw,
            4rem
        );

    font-weight:
        400;

    line-height:
        1.02;
}


.facility-detail-heading > p:last-child {
    color:
        var(--muted);

    font-size:
        0.95rem;
}


/* =========================================================
   FACILITY ITEM GRID
========================================================= */

.facility-item-grid {
    display:
        grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap:
        12px;
}


.facility-item {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        11px;

    padding:
        13px 0;

    border-bottom:
        1px solid
        rgba(18,53,45,0.08);
}


.facility-check {
    flex:
        0 0 auto;

    width:
        25px;

    height:
        25px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(200,169,107,0.45);

    border-radius:
        50%;

    color:
        var(--gold);

    background:
        rgba(200,169,107,0.07);

    font-size:
        0.68rem;

    font-weight:
        700;
}


.facility-item h3 {
    margin-bottom:
        2px;

    color:
        var(--forest);

    font-size:
        0.83rem;

    font-weight:
        700;

    line-height:
        1.35;
}


.facility-item p {
    color:
        var(--muted);

    font-size:
        0.75rem;
}


/* =========================================================
   FACILITIES RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .facilities-intro {
        grid-template-columns:
            1fr;

        gap:
            40px;
    }


    .facility-detail-card {
        grid-template-columns:
            1fr;
    }


    .facility-detail-image,
    .facility-detail-image img,
    .facility-detail-placeholder {
        min-height:
            450px;
    }

}


@media (max-width: 700px) {

    .facilities-hero {
        min-height:
            78vh;

        padding-bottom:
            65px;
    }


    .facilities-hero-content h1 {
        font-size:
            3.2rem;
    }


    .facility-detail-content {
        padding:
            32px 24px;
    }


    .facility-item-grid {
        grid-template-columns:
            1fr;
    }


    .facility-detail-image,
    .facility-detail-image img,
    .facility-detail-placeholder {
        min-height:
            350px;
    }

}

/* =========================================================
   FACILITY SUMMARY
========================================================= */

.facility-summary-grid {
    display:
        grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        18px;
}


.facility-summary-card {
    min-height:
        250px;

    padding:
        30px;

    background:
        var(--white);

    border:
        1px solid
        var(--border);

    border-radius:
        20px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.facility-summary-card:hover {
    transform:
        translateY(-8px);

    border-color:
        rgba(200,169,107,0.45);

    box-shadow:
        0 20px 50px
        rgba(25,38,32,0.08);
}


.facility-summary-card > span {
    display:
        inline-block;

    margin-bottom:
        25px;

    color:
        var(--gold);

    font-size:
        0.7rem;

    font-weight:
        700;

    letter-spacing:
        2px;
}


.facility-summary-card h3 {
    margin-bottom:
        10px;

    font-family:
        Georgia,
        serif;

    font-size:
        1.45rem;

    font-weight:
        400;

    line-height:
        1.15;
}


.facility-summary-card p {
    color:
        var(--muted);

    font-size:
        0.88rem;
}


@media (max-width: 1000px) {

    .facility-summary-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .facility-summary-grid {
        grid-template-columns:
            1fr;
    }

}

/* =========================================================
   GALLERY PAGE
========================================================= */

.gallery-hero {
    position:
        relative;

    min-height:
        78vh;

    display:
        flex;

    align-items:
        flex-end;

    padding-bottom:
        100px;

    background-position:
        center;

    background-size:
        cover;

    color:
        var(--white);

    overflow:
        hidden;
}


.gallery-hero::after {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            to top,
            rgba(5,18,15,0.82),
            transparent 55%
        );
}


.gallery-hero-content {
    position:
        relative;

    z-index:
        2;

    max-width:
        850px;
}


.gallery-hero-content h1 {
    margin-bottom:
        22px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            3.5rem,
            7vw,
            6.5rem
        );

    font-weight:
        400;

    line-height:
        0.98;
}


.gallery-hero-content > p:not(.hero-eyebrow) {
    max-width:
        650px;

    color:
        rgba(255,255,255,0.78);

    font-size:
        1.05rem;
}


/* =========================================================
   GALLERY HEADING
========================================================= */

.gallery-heading {
    max-width:
        700px;

    margin-bottom:
        45px;
}


.gallery-heading h2 {
    font-family:
        Georgia,
        serif;

    font-size:
        clamp(
            2.8rem,
            5vw,
            4.8rem
        );

    font-weight:
        400;

    line-height:
        1.05;
}


.gallery-heading > p:last-child {
    margin-top:
        18px;

    color:
        var(--muted);
}


/* =========================================================
   FILTER
========================================================= */

.gallery-filter {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        9px;

    margin-bottom:
        38px;
}


.gallery-filter-btn {
    padding:
        10px 18px;

    border:
        1px solid
        rgba(18,53,45,0.18);

    border-radius:
        999px;

    background:
        transparent;

    color:
        var(--forest);

    cursor:
        pointer;

    font-size:
        0.8rem;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}


.gallery-filter-btn:hover {
    transform:
        translateY(-2px);

    border-color:
        var(--gold);
}


.gallery-filter-btn.active {
    background:
        var(--forest);

    border-color:
        var(--forest);

    color:
        var(--white);
}


/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
    display:
        grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    grid-auto-rows:
        260px;

    gap:
        14px;
}


.gallery-item {
    position:
        relative;

    padding:
        0;

    border:
        0;

    border-radius:
        18px;

    overflow:
        hidden;

    background:
        var(--forest);

    cursor:
        pointer;

    text-align:
        left;

    opacity:
        1;

    transform:
        scale(1);

    transition:
        opacity 0.35s ease,
        transform 0.35s ease;
}


.gallery-item.hidden {
    display:
        none;
}


.gallery-item-large {
    grid-column:
        span 2;

    grid-row:
        span 2;
}


.gallery-item img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 0.8s
        cubic-bezier(.2,.8,.2,1),
        filter 0.5s ease;
}


.gallery-item::after {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            to top,
            rgba(5,18,15,0.78),
            transparent 55%
        );

    pointer-events:
        none;
}


.gallery-item:hover img {
    transform:
        scale(1.06);

    filter:
        saturate(1.08);
}


/* =========================================================
   GALLERY OVERLAY
========================================================= */

.gallery-overlay {
    position:
        absolute;

    left:
        20px;

    right:
        20px;

    bottom:
        18px;

    z-index:
        2;

    color:
        var(--white);

    transition:
        transform 0.3s ease;
}


.gallery-item:hover
.gallery-overlay {
    transform:
        translateY(-4px);
}


.gallery-overlay-label {
    display:
        block;

    margin-bottom:
        5px;

    color:
        var(--gold-light);

    font-size:
        0.63rem;

    letter-spacing:
        2.5px;

    font-weight:
        700;
}


.gallery-overlay strong {
    font-family:
        Georgia,
        serif;

    font-size:
        1.45rem;

    font-weight:
        400;
}


/* =========================================================
   LIGHTBOX
========================================================= */

.gallery-lightbox {
    position:
        fixed;

    inset:
        0;

    z-index:
        3000;

    display:
        none;

    align-items:
        center;

    justify-content:
        center;

    padding:
        40px;

    background:
        rgba(4,14,12,0.95);

    backdrop-filter:
        blur(12px);

    opacity:
        0;
}


.gallery-lightbox.open {
    display:
        flex;

    animation:
        lightboxIn 0.3s ease
        forwards;
}


@keyframes lightboxIn {

    from {
        opacity:
            0;
    }

    to {
        opacity:
            1;
    }

}


.gallery-lightbox-content {
    position:
        relative;

    max-width:
        min(1200px, 90vw);

    max-height:
        88vh;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        14px;
}


.gallery-lightbox-content img {
    max-width:
        100%;

    max-height:
        78vh;

    object-fit:
        contain;

    border-radius:
        12px;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,0.4);

    animation:
        lightboxImageIn 0.35s
        ease both;
}


@keyframes lightboxImageIn {

    from {
        opacity:
            0;

        transform:
            scale(0.96);
    }

    to {
        opacity:
            1;

        transform:
            scale(1);
    }

}


.gallery-lightbox-title {
    color:
        var(--white);

    font-family:
        Georgia,
        serif;

    font-size:
        1.4rem;

    text-align:
        center;
}


.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position:
        absolute;

    z-index:
        2;

    border:
        1px solid
        rgba(255,255,255,0.2);

    background:
        rgba(255,255,255,0.08);

    color:
        var(--white);

    cursor:
        pointer;

    border-radius:
        50%;

    backdrop-filter:
        blur(8px);

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background:
        rgba(200,169,107,0.25);

    transform:
        scale(1.06);
}


.gallery-lightbox-close {
    top:
        25px;

    right:
        30px;

    width:
        48px;

    height:
        48px;

    font-size:
        1.8rem;

    line-height:
        1;
}


.gallery-lightbox-prev,
.gallery-lightbox-next {
    top:
        50%;

    width:
        54px;

    height:
        54px;

    font-size:
        2rem;

    transform:
        translateY(-50%);
}


.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    transform:
        translateY(-50%)
        scale(1.06);
}


.gallery-lightbox-prev {
    left:
        25px;
}


.gallery-lightbox-next {
    right:
        25px;
}


/* =========================================================
   GALLERY RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .gallery-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        grid-auto-rows:
            230px;
    }


    .gallery-item-large {
        grid-column:
            span 2;

        grid-row:
            span 2;
    }

}


@media (max-width: 700px) {

    .gallery-hero {
        min-height:
            78vh;

        padding-bottom:
            65px;
    }


    .gallery-hero-content h1 {
        font-size:
            3.2rem;
    }


    .gallery-filter {
        overflow-x:
            auto;

        flex-wrap:
            nowrap;

        padding-bottom:
            5px;
    }


    .gallery-filter-btn {
        flex:
            0 0 auto;
    }


    .gallery-grid {
        grid-template-columns:
            1fr;

        grid-auto-rows:
            280px;
    }


    .gallery-item-large {
        grid-column:
            span 1;

        grid-row:
            span 1;
    }


    .gallery-lightbox {
        padding:
            20px;
    }


    .gallery-lightbox-prev,
    .gallery-lightbox-next {
        width:
            44px;

        height:
            44px;

        font-size:
            1.5rem;
    }


    .gallery-lightbox-prev {
        left:
            10px;
    }


    .gallery-lightbox-next {
        right:
            10px;
    }


    .gallery-lightbox-close {
        top:
            15px;

        right:
            15px;
    }

}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-hero,
.contact-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    background-position: center;
    background-size: cover;
    color: var(--white);
    overflow: hidden;
}

.about-hero::after,
.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,18,15,0.82),
        transparent 55%
    );
}

.about-hero-content,
.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.about-hero-content h1,
.contact-hero-content h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: .98;
}

.about-hero-content > p:not(.hero-eyebrow),
.contact-hero-content > p:not(.hero-eyebrow) {
    max-width: 680px;
    color: rgba(255,255,255,.78);
}


/* ABOUT INTRO */

.about-intro {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 100px;
    align-items: center;
}

.about-intro h2,
.location-content h2 {
    font-family: Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 400;
    line-height: 1.04;
}

.about-intro > div:last-child {
    color: var(--muted);
}

.about-intro > div:last-child p + p {
    margin-top: 18px;
}


/* ABOUT UNITS */

.about-unit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-unit-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    color: var(--white);
    background: var(--forest);
}

.about-unit-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.about-unit-card:hover img {
    transform: scale(1.05);
}

.about-unit-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,18,15,.85),
        transparent 60%
    );
}

.about-unit-card > div {
    position: absolute;
    z-index: 2;
    left: 30px;
    right: 30px;
    bottom: 30px;
}

.about-unit-card span {
    color: var(--gold-light);
    font-size: .68rem;
    letter-spacing: 3px;
    font-weight: 700;
}

.about-unit-card h3 {
    margin: 8px 0;
    font-family: Georgia, serif;
    font-size: 2.7rem;
    font-weight: 400;
}

.about-unit-card p {
    max-width: 480px;
    color: rgba(255,255,255,.72);
}


/* LOCATION */

.location-block,
.contact-location {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
    align-items: stretch;
}

.location-content address,
.contact-location address {
    margin: 25px 0;
    color: var(--muted);
    font-style: normal;
    line-height: 1.8;
}

.location-map {
    overflow: hidden;
    min-height: 420px;
    border-radius: 24px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

.contact-hours {
    margin-bottom: 25px;
    color: var(--muted);
}


/* POLICIES */

.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.policy-card {
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
}

.policy-card > span {
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: 2px;
}

.policy-card h3 {
    margin: 18px 0 10px;
    font-family: Georgia, serif;
    font-size: 1.45rem;
    font-weight: 400;
}

.policy-card p,
.policy-card li {
    color: var(--muted);
    font-size: .87rem;
}

.policy-card p + p {
    margin-top: 10px;
}

.policy-card ul {
    padding-left: 18px;
}

.damage-section {
    margin-top: 50px;
    padding: 45px;
    background: var(--forest-dark);
    color: var(--white);
    border-radius: 24px;
}

.damage-section h2 {
    max-width: 700px;
    margin-bottom: 28px;
    font-family: Georgia, serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-weight: 400;
}

.damage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.damage-grid > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    color: rgba(255,255,255,.7);
}

.damage-grid strong {
    color: var(--gold-light);
}


/* CONTACT */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-card {
    position: relative;
    padding: 38px;
    min-height: 250px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.contact-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 60px rgba(25,38,32,.1);
    border-color: rgba(200,169,107,.45);
}

.contact-card-number {
    position: absolute;
    right: 25px;
    top: 25px;
    color: var(--gold);
    font-size: .7rem;
}

.contact-card h2 {
    margin-bottom: 12px;
    font-family: Georgia, serif;
    font-weight: 400;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.contact-card > span:last-child {
    color: var(--muted);
    font-size: .85rem;
}


/* ATTRACTIONS */

.attractions-hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    background:
        linear-gradient(
            110deg,
            rgba(8,28,23,.88),
            rgba(8,28,23,.3)
        ),
        url('/assets/images/villa/villa-exterior-day.jpg')
        center / cover no-repeat;
    color: var(--white);
}

.attractions-hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.attractions-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,18,15,.78),
        transparent 55%
    );
}

.attractions-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: .98;
}

.attractions-hero-content > p:not(.hero-eyebrow) {
    max-width: 650px;
    margin-top: 22px;
    color: rgba(255,255,255,.78);
}

.attraction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.attraction-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
}

.attraction-image {
    position: relative;
    min-height: 330px;
    overflow: hidden;
}

.attraction-placeholder {
    height: 330px;
    display: grid;
    place-items: center;
    padding: 30px;
    background:
        linear-gradient(
            135deg,
            #153d34,
            #9b927f
        );
    color: rgba(255,255,255,.85);
    text-align: center;
    font-family: Georgia, serif;
    font-size: 2rem;
}

.attraction-number {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50%;
    background: rgba(11,33,28,.55);
    color: var(--white);
    font-size: .7rem;
}

.attraction-content {
    padding: 30px;
}

.attraction-content h3 {
    margin-bottom: 12px;
    font-family: Georgia, serif;
    font-size: 2.1rem;
    font-weight: 400;
}

.attraction-content > p:not(.eyebrow) {
    margin-bottom: 20px;
    color: var(--muted);
}

.explore-cta {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
}

.explore-cta h2 {
    margin-bottom: 28px;
    font-family: Georgia, serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .about-intro,
    .location-block,
    .contact-location {
        grid-template-columns: 1fr;
    }

    .policy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .damage-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 700px) {

    .about-hero,
    .contact-hero,
    .attractions-hero {
        min-height: 78vh;
        padding-bottom: 65px;
    }

    .about-hero-content h1,
    .contact-hero-content h1,
    .attractions-hero h1 {
        font-size: 3.2rem;
    }

    .about-unit-grid,
    .contact-grid,
    .policy-grid,
    .attraction-grid {
        grid-template-columns: 1fr;
    }

    .about-unit-card {
        min-height: 450px;
    }

    .damage-grid {
        grid-template-columns: 1fr;
    }

    .damage-section {
        padding: 30px 24px;
    }

}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 22px;
}

.footer-social a {
    color: var(--gold-light);
    font-size: .82rem;
}

.footer-social a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-contact a {
    color: rgba(255,255,255,.65);
}

.footer-contact a:hover {
    color: var(--gold);
}

/* =========================================================
   BOOKING PAGE
========================================================= */

.booking-page-hero {
    position: relative;

    min-height: 68vh;

    display: flex;

    align-items: flex-end;

    padding:
        110px 0 95px;

    background-position:
        center;

    background-size:
        cover;

    background-repeat:
        no-repeat;

    color:
        var(--white);

    overflow:
        hidden;
}


.booking-page-hero::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5,18,15,0.78),
            rgba(5,18,15,0.18)
        );

    pointer-events: none;
}


.booking-hero-content {
    position:
        relative;

    z-index:
        2;

    max-width:
        900px;
}


.booking-hero-content h1 {
    margin-bottom:
        22px;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            3.6rem,
            7vw,
            6.5rem
        );

    font-weight:
        400;

    line-height:
        0.96;

    letter-spacing:
        -0.025em;
}


.booking-hero-content > p:not(.hero-eyebrow) {
    max-width:
        650px;

    color:
        rgba(255,255,255,0.82);

    font-size:
        1.05rem;

    line-height:
        1.7;
}


@media (max-width: 700px) {

    .booking-page-hero {
        min-height:
            72vh;

        padding:
            90px 0 65px;

        background-position:
            58% center;
    }


    .booking-hero-content h1 {
        font-size:
            3.25rem;
    }

}

/* LAYOUT */

.booking-layout {
    display:
        grid;

    grid-template-columns:
        minmax(0, 1fr)
        340px;

    gap:
        25px;

    align-items:
        start;
}


.booking-main {
    display:
        flex;

    flex-direction:
        column;

    gap:
        20px;
}


/* CARDS */

.booking-card,
.booking-summary-card {
    padding:
        34px;

    background:
        var(--white);

    border:
        1px solid
        var(--border);

    border-radius:
        22px;

    box-shadow:
        0 20px 60px
        rgba(25,38,32,.055);
}


.booking-card-heading {
    margin-bottom:
        28px;
}


.booking-card-heading h2 {
    font-family:
        Georgia,
        serif;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    font-weight:
        400;
}


/* UNIT SELECTOR */

.booking-unit-selector {
    display:
        grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        12px;
}


.booking-unit-option {
    padding:
        20px;

    border:
        1px solid
        var(--border);

    border-radius:
        16px;

    background:
        transparent;

    text-align:
        left;

    cursor:
        pointer;

    transition:
        border-color .25s ease,
        background .25s ease,
        transform .25s ease;
}


.booking-unit-option:hover {
    transform:
        translateY(-3px);

    border-color:
        var(--gold);
}


.booking-unit-option.active {
    border-color:
        var(--forest);

    background:
        rgba(18,53,45,.06);
}


.booking-unit-option span {
    display:
        block;

    margin-bottom:
        7px;

    color:
        var(--forest);

    font-family:
        Georgia,
        serif;

    font-size:
        1.4rem;
}


.booking-unit-option small {
    color:
        var(--muted);
}


/* CALENDAR */

.calendar-header {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    margin-bottom:
        20px;
}


.calendar-header h3 {
    font-family:
        Georgia,
        serif;

    font-size:
        1.7rem;

    font-weight:
        400;
}


.calendar-nav {
    width:
        42px;

    height:
        42px;

    border:
        1px solid
        var(--border);

    border-radius:
        50%;

    background:
        var(--white);

    color:
        var(--forest);

    cursor:
        pointer;

    font-size:
        1.5rem;

    transition:
        background .2s ease;
}


.calendar-nav:hover {
    background:
        rgba(200,169,107,.1);
}


.calendar-weekdays,
.calendar-days {
    display:
        grid;

    grid-template-columns:
        repeat(7,1fr);

    gap:
        5px;
}


.calendar-weekdays span {
    padding:
        9px 0;

    color:
        var(--muted);

    text-align:
        center;

    font-size:
        .72rem;

    font-weight:
        700;

    text-transform:
        uppercase;
}


.calendar-day {
    position:
        relative;

    min-height:
        62px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        transparent;

    border-radius:
        12px;

    background:
        rgba(18,53,45,.035);

    color:
        var(--forest);

    cursor:
        pointer;

    font-size:
        .85rem;

    transition:
        background .2s ease,
        transform .2s ease,
        border-color .2s ease;
}


.calendar-day:hover {
    border-color:
        var(--gold);

    transform:
        translateY(-2px);
}


.calendar-day.empty {
    visibility:
        hidden;
}


.calendar-day.booked,
.calendar-day.blocked {
    cursor:
        not-allowed;

    background:
        rgba(80,80,80,.08);

    color:
        rgba(0,0,0,.28);

    text-decoration:
        line-through;
}


.calendar-day.selected {
    background:
        var(--forest);

    border-color:
        var(--forest);

    color:
        var(--white);
}


.calendar-day.in-range {
    background:
        rgba(200,169,107,.16);

    border-color:
        rgba(200,169,107,.25);
}


.calendar-day.price-weekend::after,
.calendar-day.price-weekday::after {
    content:
        attr(data-price);

    position:
        absolute;

    left:
        50%;

    bottom:
        5px;

    transform:
        translateX(-50%);

    font-size:
        .52rem;

    color:
        var(--gold);
}


/* LEGEND */

.calendar-legend {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        15px;

    margin-top:
        18px;

    color:
        var(--muted);

    font-size:
        .72rem;
}


.calendar-legend span {
    display:
        inline-flex;

    align-items:
        center;

    gap:
        6px;
}


.legend-dot {
    width:
        9px;

    height:
        9px;

    border-radius:
        50%;

    display:
        inline-block;
}


.legend-dot.available {
    background:
        #c9d9d4;
}

.legend-dot.selected {
    background:
        var(--forest);
}

.legend-dot.booked {
    background:
        #999;
}

.legend-dot.blocked {
    background:
        #b88962;
}


/* DATE SUMMARY */

.booking-date-summary {
    margin-top:
        18px;

    padding:
        15px;

    border-radius:
        12px;

    background:
        rgba(18,53,45,.05);

    color:
        var(--muted);

    font-size:
        .85rem;
}


/* GUESTS */

.guest-input-row {
    display:
        grid;

    grid-template-columns:
        180px 1fr;

    gap:
        20px;
}


.guest-input-row label {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;

    color:
        var(--forest);

    font-size:
        .8rem;

    font-weight:
        700;
}


.guest-input-row input,
.guest-input-row textarea {
    width:
        100%;

    padding:
        13px 14px;

    border:
        1px solid
        var(--border);

    border-radius:
        10px;

    outline:
        none;

    font-family:
        inherit;

    resize:
        vertical;
}


.guest-input-row input:focus,
.guest-input-row textarea:focus {
    border-color:
        var(--gold);
}


/* SUMMARY */

.booking-summary-card {
    position:
        sticky;

    top:
        110px;
}


.booking-summary-card h2 {
    margin-bottom:
        25px;

    font-family:
        Georgia,
        serif;

    font-size:
        2.3rem;

    font-weight:
        400;
}


.booking-summary-row {
    display:
        flex;

    justify-content:
        space-between;

    gap:
        15px;

    padding:
        13px 0;

    border-bottom:
        1px solid
        var(--border);

    font-size:
        .82rem;
}


.booking-summary-row span {
    color:
        var(--muted);
}


.booking-summary-row strong {
    color:
        var(--forest);

    text-align:
        right;
}


.booking-price-breakdown {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;

    margin:
        18px 0;
}


.price-breakdown-row {
    display:
        flex;

    justify-content:
        space-between;

    color:
        var(--muted);

    font-size:
        .8rem;
}


.booking-total {
    display:
        flex;

    justify-content:
        space-between;

    gap:
        15px;

    padding:
        18px 0;

    border-top:
        1px solid
        var(--forest);

    color:
        var(--forest);
}


.booking-total strong {
    color:
        var(--gold);
}


.booking-continue {
    width:
        100%;

    margin-top:
        10px;

    border:
        0;
}


.booking-continue:disabled {
    opacity:
        .45;

    cursor:
        not-allowed;
}


.booking-note {
    margin-top:
        15px;

    color:
        var(--muted);

    text-align:
        center;

    font-size:
        .72rem;
}


/* MOBILE */

@media (max-width: 900px) {

    .booking-layout {
        grid-template-columns:
            1fr;
    }


    .booking-summary-card {
        position:
            static;
    }

}


@media (max-width: 650px) {

    .booking-card,
    .booking-summary-card {
        padding:
            24px;
    }


    .booking-unit-selector {
        grid-template-columns:
            1fr;
    }


    .guest-input-row {
        grid-template-columns:
            1fr;
    }


    .calendar-day {
        min-height:
            48px;

        border-radius:
            9px;

        font-size:
            .76rem;
    }


    .calendar-day.price-weekend::after,
    .calendar-day.price-weekday::after {
        font-size:
            .44rem;
    }

}

/* =========================================================
   CHECKOUT
========================================================= */

.checkout-hero {
    position: relative;

    min-height:
        60vh;

    display:
        flex;

    align-items:
        flex-end;

    padding:
        100px 0 90px;

    background-position:
        center;

    background-size:
        cover;

    color:
        var(--white);

    overflow:
        hidden;
}


.checkout-hero::after {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            to top,
            rgba(5,18,15,.82),
            transparent 60%
        );
}


.checkout-hero-content {
    position:
        relative;

    z-index:
        2;

    max-width:
        850px;
}


.checkout-hero-content h1 {
    font-family:
        Georgia,
        serif;

    font-size:
        clamp(3.4rem, 7vw, 6rem);

    font-weight:
        400;

    line-height:
        .98;
}


.checkout-hero-content > p:not(.hero-eyebrow) {
    margin-top:
        20px;

    color:
        rgba(255,255,255,.78);
}


/* LAYOUT */

.checkout-layout {
    display:
        grid;

    grid-template-columns:
        minmax(0,1fr)
        360px;

    gap:
        25px;

    align-items:
        start;
}


.checkout-main {
    display:
        flex;

    flex-direction:
        column;

    gap:
        20px;
}


.checkout-card,
.checkout-summary {
    padding:
        34px;

    background:
        var(--white);

    border:
        1px solid
        var(--border);

    border-radius:
        22px;

    box-shadow:
        0 20px 60px
        rgba(25,38,32,.055);
}


.checkout-form {
    display:
        grid;

    grid-template-columns:
        repeat(2,1fr);

    gap:
        20px;
}


.checkout-form label {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;

    color:
        var(--forest);

    font-size:
        .78rem;

    font-weight:
        700;
}


.checkout-form input,
.checkout-form textarea {
    width:
        100%;

    padding:
        14px 15px;

    border:
        1px solid
        var(--border);

    border-radius:
        10px;

    outline:
        none;

    font-family:
        inherit;
}


.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color:
        var(--gold);
}


.checkout-form .full-width {
    grid-column:
        1 / -1;
}


.checkout-policy h2 {
    margin-bottom:
        25px;

    font-family:
        Georgia,
        serif;

    font-size:
        2.3rem;

    font-weight:
        400;
}


.terms-check {
    display:
        flex;

    align-items:
        flex-start;

    gap:
        12px;

    color:
        var(--muted);

    font-size:
        .85rem;

    cursor:
        pointer;
}


.terms-check input {
    margin-top:
        3px;
}


/* SUMMARY */

.checkout-summary {
    position:
        sticky;

    top:
        110px;
}


.checkout-summary h2 {
    margin:
        8px 0 25px;

    font-family:
        Georgia,
        serif;

    font-size:
        2.6rem;

    font-weight:
        400;
}


.checkout-summary-row {
    display:
        flex;

    justify-content:
        space-between;

    gap:
        15px;

    padding:
        13px 0;

    border-bottom:
        1px solid
        var(--border);

    font-size:
        .82rem;
}


.checkout-summary-row span {
    color:
        var(--muted);
}


.checkout-summary-row strong {
    color:
        var(--forest);

    text-align:
        right;
}


.checkout-breakdown {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;

    padding:
        18px 0;
}


.checkout-breakdown > div {
    display:
        flex;

    justify-content:
        space-between;

    gap:
        15px;

    color:
        var(--muted);

    font-size:
        .76rem;
}


.checkout-breakdown small {
    display:
        block;

    margin-top:
        2px;

    color:
        rgba(0,0,0,.45);

    font-size:
        .64rem;
}


.checkout-breakdown strong {
    color:
        var(--forest);
}


.checkout-total {
    display:
        flex;

    justify-content:
        space-between;

    padding:
        18px 0;

    border-top:
        1px solid
        var(--forest);

    font-size:
        .9rem;
}


.checkout-total strong {
    color:
        var(--gold);

    font-size:
        1.25rem;
}


.checkout-pay-button {
    width:
        100%;

    margin-top:
        10px;

    border:
        0;
}


.checkout-pay-button:disabled {
    opacity:
        .45;

    cursor:
        not-allowed;
}


.checkout-note {
    margin-top:
        15px;

    color:
        var(--muted);

    font-size:
        .7rem;

    text-align:
        center;

    line-height:
        1.5;
}


/* MOBILE */

@media (max-width: 900px) {

    .checkout-layout {
        grid-template-columns:
            1fr;
    }


    .checkout-summary {
        position:
            static;
    }

}


@media (max-width: 650px) {

    .checkout-card,
    .checkout-summary {
        padding:
            24px;
    }


    .checkout-form {
        grid-template-columns:
            1fr;
    }


    .checkout-form .full-width {
        grid-column:
            auto;
    }

}