:root {
    --navy: #08233f;
    --gold: #c9942f;
    --cream: #fff8ea;
    --coral: #ff7b62;
    --mint: #dff3e8;
    --ink: #17324d;
    --white: #fff;
    --shadow: 0 18px 50px rgba(8,35,63,.12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "DM Sans",sans-serif;
    color: var(--ink);
    background: #fff
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.site-header {
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px clamp(20px,5vw,80px);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 4px 20px rgba(8,35,63,.06)
}

.brand img {
    width: 165px;
    height: 70px;
    object-fit: contain
}

.site-header nav {
    display: flex;
    gap: 24px;
    align-items: center;
    font-weight: 600;
    font-size: .94rem
}

    .site-header nav a:hover {
        color: var(--gold)
    }

.menu-toggle {
    display: none;
    border: 0;
    background: none;
    font-size: 1.7rem
}

.hero {
    min-height: 680px;
    padding: 80px clamp(24px,8vw,130px);
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
    background: linear-gradient(120deg,var(--cream),#fff 56%,var(--mint))
}

    .hero h1, .page-hero h1, .confirmation h1 {
        font: 700 clamp(3rem,6vw,6.4rem)/.98 "Playfair Display",serif;
        color: var(--navy);
        margin: .2em 0
    }

    .hero p, .page-hero p {
        font-size: 1.15rem;
        line-height: 1.75;
        max-width: 700px
    }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    color: var(--gold);
    font-size: .8rem
}

.btn {
    display: inline-flex;
    border: 0;
    border-radius: 999px;
    padding: 15px 25px;
    background: var(--coral);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255,123,98,.28);
    margin-top: 12px
}

    .btn:hover {
        transform: translateY(-2px)
    }

    .btn.small {
        padding: 9px 16px;
        margin: 0
    }

.btn-light {
    background: #fff;
    color: var(--navy)
}

.hero-art {
    height: 480px;
    position: relative;
    display: grid;
    place-items: center
}

.sun {
    position: absolute;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background: #ffd76a
}

.house-card {
    position: relative;
    background: white;
    border-radius: 42% 42% 28px 28px;
    padding: 75px 45px;
    box-shadow: var(--shadow);
    transform: rotate(2deg)
}

    .house-card img {
        width: 360px
    }

.section {
    padding: 30px clamp(24px,8vw,130px)
}

.results {
    margin-top:30px;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px
}

.section h2, .apartment-card h2 {
    margin-block-start:0px;
    font: 700 clamp(2rem,4vw,3.5rem)/1.1 "Playfair Display",serif;
    color: var(--navy)
}

.benefits {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

.benefit {
    padding: 24px;
    border-radius: 18px;
    background: var(--cream);
    font-weight: 600
}

    .benefit span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--mint);
        margin-right: 10px
    }

.split-banner {
    margin: 0 clamp(24px,5vw,80px) 90px;
    padding: 80px;
    border-radius: 36px;
    background: var(--navy);
    color: white;
    min-height: 360px;
    display: flex;
    align-items: center
}

    .split-banner h2 {
        font: 700 clamp(2.7rem,5vw,5rem)/1 "Playfair Display",serif;
        margin: .25em 0;
        max-width: 700px
    }

.page-hero {
    padding: 30px clamp(24px,8vw,130px) 30px;
    background: var(--cream)
}

    .page-hero form {
        display: inline
    }

.apartment-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px
}

.apartment-card {
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow)
}

    .apartment-card img {
        width: 100%;
        aspect-ratio: 16/10;
        object-fit: cover;
        background: var(--mint)
    }

    .apartment-card div {
        padding: 28px
    }

    .apartment-card span {
        color: var(--gold);
        font-weight: 700
    }

    .apartment-card h2 {
        font-size: 2rem
    }

.text-link {
    font-weight: 700;
    color: var(--coral);
    border: 0;
    background: none;
    cursor: pointer
}

.property {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--mint)
}

    .property img {
        border-radius: 24px
    }

.map-wrap iframe {
    width: 100%;
    height: 520px;
    border: 0
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 26px
}

    .location-grid article {
        background: #fff;
        border-radius: 24px;
        box-shadow: var(--shadow);
        overflow: hidden
    }

    .location-grid img {
        height: 300px;
        width: 100%;
        object-fit: cover
    }

    .location-grid h3, .location-grid p {
        margin-left: 24px;
        margin-right: 24px
    }

    .location-grid p {
        padding-bottom: 18px;
        line-height: 1.65
    }

.booking-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 45px;
    align-items: start
}

.form-card, .contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    box-shadow: var(--shadow)
}

.contact-card {
    min-height:421px;
}

label {
    display: grid;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 18px
}

input, select, textarea {
    width: 100%;
    border: 1px solid #ccd5dd;
    border-radius: 12px;
    padding: 13px 14px;
    font: inherit;
    background: #fff
}

textarea {
    min-height: 120px
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0 18px
}

.contact-card {
    background: var(--navy);
    color: #fff;
    display: grid;
    gap: 16px;
    position: sticky;
    top: 120px
}

.results article {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid #e9eef2
}

    .results article span {
        display: block;
        color: #718093;
        margin-top: 4px
    }

.alert {
    color: #a11;
    margin: 12px 0
}

.success {
    padding: 14px;
    border-radius: 12px;
    background: var(--mint);
    color: #185c38
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(8,35,63,.65);
    z-index: 50;
    padding: 30px;
    overflow: auto
}

.modal-card {
    max-width: 760px;
    margin: auto;
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    position: relative
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    border: 0;
    background: none;
    font-size: 2rem
}

.selected-name {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px
}

.check {
    display: flex;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    font-weight: 500
}

    .check input {
        width: auto;
        margin-top: 4px
    }

.narrow {
    max-width: 900px;
    margin: auto
}

.prose {
    line-height: 1.75
}

    .prose h2 {
        font-size: 2rem;
        margin-top: 2em
    }

.consent {
    padding: 20px;
    background: var(--cream);
    border-radius: 16px
}

.confirmation {
    min-height: 70vh;
    text-align: center;
    display: grid;
    place-items: center;
    align-content: center;
    padding: 50px
}

    .confirmation > div {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--mint);
        font-size: 2rem
    }

    .confirmation p {
        max-width: 700px;
        line-height: 1.7
    }

.admin-head {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.table-wrap {
    overflow: auto;
    margin-bottom: 50px
}

table {
    border-collapse: collapse;
    width: 100%;
    min-width: 900px
}

th, td {
    text-align: left;
    padding: 14px;
    border-bottom: 1px solid #dde4e9;
    vertical-align: top
}

th {
    background: var(--navy);
    color: white
}

footer {
    background: var(--navy);
    color: white;
    padding: 55px clamp(24px,8vw,130px);
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px
}

    footer img {
        width: 180px;
        background: white;
        border-radius: 12px;
        padding: 5px
    }

    footer p {
        line-height: 1.6;
        color: #d9e3ec
    }

@media(max-width:900px) {
    .site-header nav {
        display: none;
        position: absolute;
        top: 94px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 24px;
        flex-direction: column
    }

        .site-header nav.open {
            display: flex
        }

    .menu-toggle {
        display: block
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 55px
    }

    .hero-art {
        height: 330px
    }

    .sun {
        width: 280px;
        height: 280px
    }

    .house-card {
        padding: 45px 25px
    }

    .benefits, .location-grid {
        grid-template-columns: 1fr 1fr
    }

    .booking-layout, .property {
        grid-template-columns: 1fr
    }

    .contact-card {
        position: static
    }

    .apartment-grid {
        grid-template-columns: 1fr
    }

    footer {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .hero h1, .page-hero h1 {
        font-size: 3rem
    }

    .benefits, .location-grid, .form-grid, footer {
        grid-template-columns: 1fr
    }

    .section {
        padding: 30px 20px
    }

    .page-hero {
        padding: 30px 20px
    }

    .split-banner {
        padding: 45px 25px
    }

    .site-header {
        padding: 10px 18px
    }

    .brand img {
        width: 135px
    }

    .hero {
        padding: 55px 20px
    }

    .hero-art {
        display: none
    }
}


/* =========================================================
   Guest registration / Tally integration
   ========================================================= */

.guest-registration-hero {
    padding-bottom: 3rem;
}

.guest-registration-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.tally-form-card {
    width: min(100%, 960px);
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(26, 48, 66, 0.1);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(26, 48, 66, 0.12);
}

.tally-form-header {
    padding: 2.5rem 3rem 1.5rem;
    text-align: center;
}

    .tally-form-header h2 {
        margin: 0.5rem 0 0.75rem;
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .tally-form-header p {
        max-width: 650px;
        margin: 0 auto;
        color: var(--text-muted, #65717b);
        line-height: 1.7;
    }

.tally-embed-wrapper {
    width: 100%;
    min-height: 700px;
    padding: 0 1.5rem 2rem;
}

    .tally-embed-wrapper iframe {
        display: block;
        width: 100%;
        min-height: 700px;
        border: 0;
        border-radius: 18px;
        background: transparent;
    }

.tally-noscript {
    padding: 2rem 3rem 3rem;
    text-align: center;
}

    .tally-noscript p {
        margin-bottom: 1rem;
    }

/* Tablet */

@media (max-width: 768px) {
    .guest-registration-section {
        padding-top: 1rem;
        padding-bottom: 4rem;
    }

    .tally-form-card {
        border-radius: 20px;
    }

    .tally-form-header {
        padding: 2rem 1.5rem 1rem;
    }

    .tally-embed-wrapper {
        padding: 0 0.5rem 1rem;
    }
}

/* Smartphone */

@media (max-width: 480px) {
    .tally-form-card {
        border-radius: 16px;
    }

    .tally-form-header {
        padding: 1.5rem 1rem 0.75rem;
    }

        .tally-form-header h2 {
            font-size: 1.65rem;
        }

        .tally-form-header p {
            font-size: 0.95rem;
        }

    .tally-embed-wrapper {
        padding-right: 0;
        padding-left: 0;
    }
}

/* =========================================================
   Apartment detail page
   ========================================================= */

.apartment-detail-hero {
    /*display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 3rem;*/
    align-items: center;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4rem 0;
}

.apartment-detail-hero__content {
    /*max-width: 650px;*/
}

.apartment-back-link {
    display: inline-flex;
    margin-bottom: 2rem;
    color: inherit;
    font-weight: 700;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 180ms ease, transform 180ms ease;
}

    .apartment-back-link:hover {
        opacity: 1;
        transform: translateX(-4px);
    }

.apartment-detail-hero h1 {
    margin: 0.65rem 0 1.25rem;
    font-size: clamp(2.4rem, 5vw, 4.7rem);
    line-height: 1.05;
}

.apartment-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

    .apartment-detail-meta span {
        display: inline-flex;
        align-items: center;
        padding: 0.65rem 1rem;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(25, 45, 60, 0.1);
        border-radius: 999px;
        font-size: 0.95rem;
        font-weight: 700;
    }

.apartment-availability-button {
    display: inline-flex;
}

.apartment-detail-cover {
    position: relative;
    width: 100%;
    min-height: 480px;
    padding: 0;
    overflow: hidden;
    cursor: zoom-in;
    background: #f2f2ee;
    border: 0;
    border-radius: 30px;
    box-shadow: 0 22px 60px rgba(25, 45, 60, 0.15);
}

    .apartment-detail-cover img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 480px;
        object-fit: cover;
        transition: transform 500ms ease;
    }

    .apartment-detail-cover:hover img {
        transform: scale(1.025);
    }

.apartment-detail-cover__hint {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    padding: 0.75rem 1rem;
    color: #182a35;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}

.apartment-detail-cover--empty {
    display: grid;
    place-items: center;
    min-height: 380px;
    padding: 2rem;
    cursor: default;
    text-align: center;
}

    .apartment-detail-cover--empty div {
        display: grid;
        gap: 0.75rem;
    }

    .apartment-detail-cover--empty strong {
        font-size: 1.4rem;
    }

    .apartment-detail-cover--empty span {
        color: rgba(25, 45, 60, 0.7);
    }

.apartment-detail-section {
    padding-top: 2rem;
    padding-bottom: 6rem;
}

.apartment-detail-heading {
    display: flex;
    gap: 2rem;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 2rem;
}

    .apartment-detail-heading h2 {
        margin: 0.5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.25rem);
    }

.apartment-image-count {
    flex: 0 0 auto;
    padding: 0.7rem 1rem;
    background: rgba(25, 45, 60, 0.07);
    border-radius: 999px;
    font-weight: 700;
}

.apartment-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.apartment-gallery-item {
    position: relative;
    min-height: 260px;
    padding: 0;
    overflow: hidden;
    cursor: zoom-in;
    background: #ecece7;
    border: 0;
    border-radius: 22px;
}

    .apartment-gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 2;
        min-height: 545px;
    }

    .apartment-gallery-item img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: inherit;
        object-fit: cover;
        transition: transform 400ms ease, filter 400ms ease;
    }

    .apartment-gallery-item:hover img,
    .apartment-gallery-item:focus-visible img {
        transform: scale(1.04);
        filter: brightness(0.82);
    }

.apartment-gallery-item__overlay {
    position: absolute;
    left: 50%;
    bottom: 1rem;
    padding: 0.65rem 0.9rem;
    color: #172a35;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 800;
    opacity: 0;
    transform: translate(-50%, 10px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.apartment-gallery-item:hover
.apartment-gallery-item__overlay,
.apartment-gallery-item:focus-visible
.apartment-gallery-item__overlay {
    opacity: 1;
    transform: translate(-50%, 0);
}

.apartment-empty-gallery {
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(25, 45, 60, 0.045);
    border: 1px dashed rgba(25, 45, 60, 0.2);
    border-radius: 24px;
}

    .apartment-empty-gallery h3 {
        margin-top: 0;
        font-size: 1.6rem;
    }

/* =========================================================
   Apartment lightbox
   ========================================================= */

body.lightbox-open {
    overflow: hidden;
}

.apartment-lightbox {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
}

    .apartment-lightbox.is-open {
        visibility: visible;
        opacity: 1;
    }

.apartment-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 14, 18, 0.94);
    backdrop-filter: blur(10px);
}

.apartment-lightbox__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    gap: 1rem;
    align-items: center;
    width: min(1400px, 100%);
    height: min(900px, calc(100vh - 3rem));
}

.apartment-lightbox__figure {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 1rem;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
}

    .apartment-lightbox__figure img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 0;
        object-fit: contain;
    }

    .apartment-lightbox__figure figcaption {
        color: #fff;
        font-size: 0.95rem;
        font-weight: 700;
        text-align: center;
    }

.apartment-lightbox__close,
.apartment-lightbox__arrow {
    display: grid;
    place-items: center;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: background 180ms ease, transform 180ms ease;
}

    .apartment-lightbox__close:hover,
    .apartment-lightbox__arrow:hover {
        background: rgba(255, 255, 255, 0.23);
    }

    .apartment-lightbox__close:focus-visible,
    .apartment-lightbox__arrow:focus-visible {
        outline: 3px solid #fff;
        outline-offset: 4px;
    }

.apartment-lightbox__close {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    line-height: 1;
}

.apartment-lightbox__arrow {
    width: 58px;
    height: 58px;
    font-size: 3rem;
    line-height: 1;
}

.apartment-lightbox__arrow--previous:hover {
    transform: translateX(-3px);
}

.apartment-lightbox__arrow--next:hover {
    transform: translateX(3px);
}

/* =========================================================
   Responsive apartment gallery
   ========================================================= */

@media (max-width: 950px) {
    .apartment-detail-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-top: 2.5rem;
    }

    .apartment-detail-cover,
    .apartment-detail-cover img {
        min-height: 420px;
    }

    .apartment-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .apartment-gallery-item:first-child {
        min-height: 450px;
    }
}

@media (max-width: 700px) {
    .apartment-detail-hero {
        width: min(100% - 1.25rem, 1180px);
    }

    .apartment-detail-cover {
        min-height: 330px;
        border-radius: 22px;
    }

        .apartment-detail-cover img {
            min-height: 330px;
        }

    .apartment-detail-heading {
        display: block;
    }

    .apartment-image-count {
        display: inline-flex;
        margin-top: 1rem;
    }

    .apartment-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .apartment-gallery-item,
    .apartment-gallery-item:first-child {
        grid-column: auto;
        grid-row: auto;
        min-height: 190px;
        border-radius: 16px;
    }

        .apartment-gallery-item:first-child {
            grid-column: span 2;
            min-height: 310px;
        }

    .apartment-lightbox {
        padding: 0.75rem;
    }

    .apartment-lightbox__content {
        display: block;
        height: calc(100vh - 1.5rem);
        padding: 3.5rem 0 4.5rem;
    }

    .apartment-lightbox__figure {
        height: 100%;
    }

    .apartment-lightbox__close {
        top: 0;
        right: 0;
    }

    .apartment-lightbox__arrow {
        position: absolute;
        z-index: 3;
        bottom: 0;
        width: 48px;
        height: 48px;
        font-size: 2.5rem;
    }

    .apartment-lightbox__arrow--previous {
        left: calc(50% - 58px);
    }

    .apartment-lightbox__arrow--next {
        right: calc(50% - 58px);
    }
}

@media (max-width: 430px) {
    .apartment-detail-meta {
        display: grid;
    }

        .apartment-detail-meta span {
            justify-content: center;
        }

    .apartment-availability-button {
        width: 100%;
        justify-content: center;
    }

    .apartment-gallery-item,
    .apartment-gallery-item:first-child {
        grid-column: span 2;
        min-height: 260px;
    }
}

.apartment-card h2 a {
    color: inherit;
    text-decoration: none;
}

    .apartment-card h2 a:hover {
        text-decoration: underline;
    }

.apartment-card-image-link {
    display: block;
    overflow: hidden;
}

    .apartment-card-image-link img {
        transition: transform 350ms ease;
    }

    .apartment-card-image-link:hover img {
        transform: scale(1.035);
    }

.nightly-prices {
    margin-top: 0.75rem;
}

    .nightly-prices summary {
        cursor: pointer;
        font-weight: 700;
    }

    .nightly-prices ul {
        display: grid;
        gap: 0.35rem;
        padding: 0;
        margin: 0.75rem 0 0;
        list-style: none;
    }

    .nightly-prices li {
        display: flex;
        gap: 1rem;
        justify-content: space-between;
    }

/* =========================================================
   Property section
   ========================================================= */

.property-section {
    padding-top: 5rem;
    padding-bottom: 6rem;
}

.property-header {
    width: min(850px, 100%);
    margin: 0 auto 4rem;
    text-align: center;
}

    .property-header h2 {
        margin: 0.6rem 0 1.5rem;
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        line-height: 1.1;
    }

    .property-header p {
        margin: 0 auto 1.25rem;
        color: var(--text-muted, #65717b);
        font-size: 1.05rem;
        line-height: 1.8;
    }

.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

    .property-features span {
        display: inline-flex;
        align-items: center;
        padding: 0.7rem 1rem;
        background: #ffffff;
        border: 1px solid rgba(25, 45, 60, 0.1);
        border-radius: 999px;
        font-size: 0.92rem;
        font-weight: 700;
        box-shadow: 0 8px 24px rgba(25, 45, 60, 0.07);
    }

.property-gallery-heading {
    margin-bottom: 2rem;
}

@media (max-width: 700px) {
    .property-section {
        padding-top: 3.5rem;
        padding-bottom: 4rem;
    }

    .property-header {
        margin-bottom: 3rem;
        text-align: left;
    }

    .property-features {
        justify-content: flex-start;
    }

        .property-features span {
            width: 100%;
            justify-content: center;
        }
}