:root {
    --brand: #dec16b;
    --brand-2: #0b5d2a;
    --brand-dark: #5f4813;
    --ink: #192119;
    --muted: #646b62;
    --soft: #fffaf0;
    --panel: #ffffff;
    --line: rgba(222, 193, 107, 0.35);
    --shadow: 0 20px 50px rgba(95, 72, 19, 0.16);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1380px, calc(100% - 40px));
    margin: auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    /* background: rgb(255 255 255 / 0%); */
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.nav-wrap {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    width: 96px;
}

.brand img {
    width: 78px;
    height: 78px;
    object-fit: contain;
}

.menu {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--brand-dark);
    font-size: 14px;
    font-weight: 700;
}

.menu a {
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    color: #fff;
}

.menu a:hover {
    border-color: var(--brand);
}

.menu-toggle {
    display: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--brand-dark);
    background: #fff;
    font-weight: 800;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 800;
    transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #241c08;
    background: var(--brand);
    box-shadow: 0 12px 28px rgba(222, 193, 107, 0.32);
}

.btn-primary:hover {
    background: var(--brand-2);
    color: #fff;
}

.btn-light {
    color: #241c08;
    background: var(--brand);
    border-color: rgba(222, 193, 107, 0.55);
}

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.08);
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Playfair Display", Georgia, serif;
    line-height: 1.06;
    color: var(--brand-dark);
}

h1 {
    max-width: 660px;
    color: #fff;
    font-size: clamp(50px, 3.6vw, 86px);
    font-weight: 700;
}

h2 {
    font-size: clamp(32px, 2.0vw, 34px);
    font-weight: 650;
}

h3 {
    font-size: 25px;
}

p {
    margin: 0;
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

.eyebrow.light {
    color: #fff;
}

.hero {
    position: relative;
    min-height: 820px;
    overflow: hidden;
    color: #fff;
    background: var(--brand-2);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(35, 31, 18, 0.52) 0%, rgba(20, 31, 21, 0.28) 42%, rgba(11, 93, 42, 0) 100%), linear-gradient(180deg, rgba(1, 1, 1, 0), rgba(0, 0, 0, 0.38));
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    background: url("richmond-hero.webp") center / cover no-repeat;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.hero-grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 70px;
    align-items: end;
    min-height: 700px;
    padding-top: 63px;
    padding-bottom: 106px;
}

.hero-copy p {
    max-width: 620px;
    margin: 24px 0 32px;
    color: rgb(255, 255, 255);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.enquiry-card {
    margin-top: 0;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.card-label {
    margin-bottom: 4px;
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.enquiry-card > strong {
    display: block;
    color: var(--brand-2);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 42px;
    line-height: 1;
}

.enquiry-card > span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
}

.mini-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 22px 0;
}

.mini-facts div {
    padding: 13px;
    border: 1px solid rgba(222, 193, 107, 0.62);
    border-radius: var(--radius);
    background: #fff;
}

.mini-facts b {
    display: block;
    color: var(--brand-2);
    font-size: 24px;
    line-height: 1;
}

.mini-facts small {
    display: block;
    margin-top: 7px;
    color: var(--brand-dark);
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

.enquiry-card .btn {
    width: 100%;
}

section {
    padding: 80px 0;
}

.stats-band {
    position: relative;
    z-index: 4;
    padding: 80px 0 0px;
    margin-top: 0;
    background: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 0;
    border-radius: var(--radius);
    background: rgba(222, 193, 107, 0.17);
    /*! box-shadow: 0 18px 45px rgba(20, 31, 78, 0.12); */
}

.stat {
    position: relative;
    min-height: 136px;
    overflow: hidden;
    padding: 28px 30px;
    border-right: 1px solid rgba(37, 37, 37, 0.14);
    background: transparent;
    box-shadow: none;
}

.stat::after {
    content: "";
    position: absolute;
    right: 22px;
    bottom: 20px;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(222, 193, 107, 0.72);
    border-radius: 50%;
    background-color: #ffffff5c;
}

.stat:last-child {
    border-right: 0;
}

.stat-icon {
    position: absolute;
    right: 29px;
    bottom: 27px;
    z-index: 1;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    color: var(--brand-2);
}

.stat-icon svg {
    width: 31px;
    height: 31px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat strong {
    display: block;
    color: var(--brand-2);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 48px;
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 12px;
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.overview {
    background: #fff;
}

.split-grid {
    display: grid;
    grid-template-columns: 0.96fr 1.04fr;
    gap: 62px;
    align-items: center;
}

.image-stack {
    position: relative;
    min-height: 590px;
}

.main-image,
.wide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.main-image {
    min-height: 560px;
    box-shadow: var(--shadow);
}

.floating-image {
    position: absolute;
    right: -28px;
    bottom: 28px;
    width: 42%;
    min-height: 190px;
    object-fit: cover;
    border: 8px solid #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section-copy h2,
.section-head h2 {
    margin-top: 14px;
    line-height: 39px;
}

.section-copy p {
    margin-top: 18px;
    font-size: 16px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 30px;
}

.feature-list div,
.developer-note {
    padding: 20px;
    border-left: 3px solid var(--brand);
    background: var(--soft);
}

.feature-list strong,
.developer-note strong {
    display: block;
    color: var(--brand-2);
    font-weight: 900;
}

.feature-list span,
.developer-note p {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
    gap: 58px;
    align-items: end;
    margin-bottom: 38px;
}

.section-head p {
    font-size: 16px;
}

.residences {
    background: var(--soft);
}

.residence-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
}

.residence-grid::-webkit-scrollbar {
    display: none;
}

.residence-grid.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.floorplan-slider {
    overflow: hidden;
}

.slider-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.slider-top > span {
    color: var(--brand-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-btn {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--brand-dark);
    background: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: 0.22s ease;
}

.slider-btn:hover {
    color: #241c08;
    background: var(--brand);
}

.residence-viewport {
    overflow: hidden;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.slider-dot {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 50%;
    background: rgba(222, 193, 107, 0.42);
    cursor: pointer;
}

.slider-dot.active {
    width: 28px;
    border-radius: 999px;
    background: var(--brand);
}

.residence-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(95, 72, 19, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.residence-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.residence-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.residence-body {
    padding: 22px;
}

.residence-body > span {
    color: var(--brand-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.residence-body h3 {
    margin: 8px 0 10px;
}

.residence-body p {
    font-size: 14px;
}

.residence-body ul {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.residence-body li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.residence-body li span {
    color: var(--brand-2);
    font-weight: 900;
    text-align: right;
}

.amenities {
    color: #fff;
    background: #fff;
}

.amenities .container {
    padding: 0;
    border-radius: var(--radius);
    /*! background: var(--brand-2); */
}

.amenities h2,
.amenities .eyebrow,
.amenities .section-head p {
    color: var(--brand-dark);
}

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.amenity-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.amenity-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.amenity-card h3 {
    margin: 17px 18px 5px;
    color: var(--brand-2);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 17px;
    font-weight: 900;
}

.amenity-card p {
    /*! min-height: 62px; */
    margin: 0 18px 20px;
    color: rgb(73, 73, 73);
    font-size: 14px;
}

.interiors {
    background: #fff;
}

.interiors-grid {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 48px;
    align-items: center;
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 28px;
}

.detail-grid span {
    padding: 13px 15px;
    border: 1px solid var(--line);
    color: #434343;
    background: var(--soft);
    font-size: 14px;
    font-weight: 900;
}

.wide-image {
    min-height: 440px;
}

.wide-image img {
    box-shadow: var(--shadow);
}

.location {
    background: var(--soft);
}

.location-grid {
    display: grid;
    grid-template-columns: 0.82fr 1fr;
    gap: 56px;
    align-items: stretch;
}

.location .section-copy {
    padding: 46px;
    color: #fff;
    background:
        linear-gradient(155deg, rgba(11, 93, 42, 0.34), rgba(222, 193, 107, 0.16)), url("richmond-map.webp") center / cover no-repeat;
    border-radius: var(--radius);
    background-position: right;
}

.location .section-copy h2,
.location .section-copy p,
.location .section-copy .eyebrow {
    color: #fff;
}

.location-list {
    display: grid;
    gap: 12px;
}

.location-list div {
    display: grid;
    grid-template-columns: 104px 1fr;
    gap: 22px;
    align-items: center;
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.location-list strong {
    color: var(--brand-2);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 27px;
}

.location-list span {
    color: #6b6b6b;
    font-weight: 600;
}

.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 304px;
    gap: 12px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius);
    padding: 0;
    background: var(--soft);
    cursor: zoom-in;
}

.gallery-card.large {
    grid-row: auto;
    grid-column: auto;
}

.gallery-card.wide {
    grid-column: auto;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
}

.gallery-card::after {
    content: "View";
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--brand-dark);
    background: #fff;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.22s ease;
}

.gallery-card:hover img {
    transform: scale(1.04);
    filter: brightness(0.86);
}

.gallery-card:hover::after {
    opacity: 1;
    transform: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 36px;
    background: rgba(10, 31, 17, 0.95);
}

.gallery-lightbox.open {
    display: flex;
}

.gallery-lightbox-inner {
    position: relative;
    display: flex;
    width: min(1180px, 100%);
    height: min(82vh, 820px);
    align-items: center;
    justify-content: center;
}

.gallery-lightbox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.gallery-close,
.gallery-arrow {
    position: absolute;
    display: grid;
    place-items: center;
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    cursor: pointer;
}

.gallery-close {
    top: -8px;
    right: -8px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 30px;
    line-height: 1;
}

.gallery-arrow {
    top: 50%;
    width: 50px;
    height: 62px;
    border-radius: var(--radius);
    font-size: 34px;
    transform: translateY(-50%);
}

.gallery-prev {
    left: -68px;
}

.gallery-next {
    right: -68px;
}

.gallery-caption {
    position: absolute;
    bottom: -34px;
    left: 50%;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.08em;
    white-space: nowrap;
    transform: translateX(-50%);
}

body.lightbox-open {
    overflow: hidden;
}

.payment {
    background: var(--soft);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.payment-grid div {
    padding: 28px 24px;
    border-right: 1px solid var(--line);
}

.payment-grid div:last-child {
    border-right: 0;
}

.payment-grid strong {
    display: block;
    color: var(--brand-2);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 38px;
    line-height: 1;
}

.payment-grid span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.developer {
    background: #fff;
}

.developer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 44px;
    align-items: center;
}

.cta {
    color: #fff;
    background: var(--soft);
}

.cta-grid {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 60px;
    align-items: center;
}

.cta h2,
.cta p,
.cta .eyebrow {
    color: var(--brand-2);
    margin-bottom: 11px;
}

.cta p {
    margin-top: 18px;
    color: rgba(35, 35, 35, 0.76);
}

.form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form input,
.form select {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(222, 193, 107, 0.68);
    border-radius: var(--radius);
    padding: 14px 16px;
    color: var(--ink);
    background: #fff;
    outline: none;
}

.form input::placeholder {
    color: #3c3c3c;
}

.form select option {
    color: var(--ink);
}

.form .full {
    grid-column: 1 / -1;
}

.rs-project {
    background: #fff;
}

.section-head.compact {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.property-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 28px rgba(95, 72, 19, 0.08);
}

.property-image {
    display: block;
    height: 285px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.04);
}

.property-content {
    min-height: 125px;
    padding: 22px;
    border-bottom: 1px solid var(--line);
}

.property-content h3 {
    margin-bottom: 10px;
    color: #4b4b4b;
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 18px;
    font-weight: 900;
}

.property-content p {
    font-size: 14px;
}

.property-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 22px;
}

.property-footer strong,
.property-footer a {
    color: var(--brand-2);
    font-weight: 900;
}

.center-action {
    margin-top: 32px;
    text-align: center;
}

footer {
    padding: 17px 0;
    color: #fff;
    background: #000000;
}

.footer-grid {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
}

footer img {
    width: 92px;
    padding: 6px;
    border-radius: var(--radius);
    /* background: #fff; */
}

footer p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

footer span {
    color: rgb(255, 255, 255);
    font-size: 13px;
    white-space: nowrap;
}

.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: grid;
    gap: 10px;
}

.floating-actions a {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.22);
}

.floating-actions svg {
    width: 23px;
    height: 23px;
}

.wa {
    background: #25d366;
}

.call {
    background: var(--brand-2);
}

.reveal,
.reveal.visible {
    opacity: 1;
    transform: none;
}

@media (max-width: 1080px) {
    .hero {
        background: var(--brand-2);
    }

    .hero-media {
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        opacity: 0.42;
    }

    .hero-grid,
    .split-grid,
    .section-head,
    .interiors-grid,
    .location-grid,
    .developer-grid,
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 30px;
        min-height: auto;
        padding: 130px 0 76px;
    }

    .enquiry-card {
        max-width: 520px;
        margin-top: 0;
    }

    .amenity-grid,
    .payment-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-grid {
        grid-template-columns: 1fr 1fr;
    }

    .amenities .container {
        padding: 42px;
    }
}

@media (max-width: 860px) {
    .nav-wrap {
        min-height: 70px;
    }

    .brand {
        width: 82px;
    }

    .brand img {
        width: 64px;
        height: 64px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .nav-cta {
        display: none;
    }

    .menu {
        position: absolute;
        top: 70px;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
    }

    .menu.open {
        display: flex;
    }

    h1 {
        font-size: 46px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 220px;
    }

    .gallery-card.large,
    .gallery-card.wide {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    footer span {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    section {
        padding: 54px 0;
    }

    .hero-grid {
        padding: 106px 0 58px;
    }

    h1 {
        font-size: 39px;
    }

    h2 {
        font-size: 29px;
    }

    .hero-copy p {
        margin: 18px 0 24px;
        font-size: 15px;
    }

    .hero-actions,
    .form {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
    }

    .enquiry-card {
        padding: 20px;
    }

    .enquiry-card > strong {
        font-size: 34px;
    }

    .mini-facts {
        gap: 8px;
        margin: 16px 0;
    }

    .mini-facts div {
        padding: 10px;
    }

    .mini-facts b {
        font-size: 21px;
    }

    .mini-facts small {
        font-size: 10px;
        letter-spacing: 0;
    }

    .stats-grid,
    .amenity-grid,
    .payment-grid,
    .project-grid,
    .detail-grid,
    .feature-list {
        grid-template-columns: 1fr;
    }

    .residence-card {
        flex-basis: 100%;
    }

    .slider-top {
        align-items: flex-start;
    }

    .stat,
    .payment-grid div {
        border-right: 0;
    }

    .stat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .payment-grid div:last-child {
        border-bottom: 0;
    }

    .image-stack {
        min-height: auto;
    }

    .main-image {
        min-height: 320px;
    }

    .floating-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: calc(100% - 34px);
        min-height: 150px;
        margin: -54px auto 0;
    }

    .amenities .container,
    .location .section-copy {
        width: min(100% - 28px, 1180px);
        padding: 28px;
    }

    .wide-image {
        min-height: 285px;
    }

    .location-list div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .gallery-card.large,
    .gallery-card.wide {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-lightbox {
        padding: 14px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

    .gallery-close {
        top: 8px;
        right: 8px;
    }

    .gallery-caption {
        display: none;
    }

    .floating-actions {
        right: 14px;
        bottom: 14px;
    }

    .floating-actions a {
        width: 46px;
        height: 46px;
    }
}
