/* =========================================================
   Conscient Elevate — landing page styles
   Organized by section, followed by responsive adjustments.
   Gotham uses an installed font; Arial is the fallback.
   ========================================================= */

@font-face {
    font-family: "Gotham";
    src: local("Gotham"), local("Gotham-Book");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gotham";
    src: local("Gotham Bold"), local("Gotham-Bold");
    font-weight: 600 700;
    font-style: normal;
    font-display: swap;
}

/* Design tokens
   --------------------------------------------------------- */
:root {
    --font-family: "Gotham","Helvetica Neue",Arial,sans-serif;
    --gold: #fede07;
    --dark: #181a2c;
    --cream: #202238;
    --ink: #f6f6fa;
    --muted: #b8bac9;
    --line: #3c3e52;
}

/* Base styles and typography
   --------------------------------------------------------- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font: 13px/1.85 var(--font-family);
}

button,input,select,textarea {
    font: inherit;
}

button,a {
    -webkit-tap-highlight-color: transparent;
}

button {
    cursor: pointer;
    color: inherit;
}

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

img {
    display: block;
    width: 100%;
    object-fit: cover;
}

h1,h2,h3,p {
    margin: 0;
}

h1,h2,h3 {
    font-family: var(--font-family);
    font-weight: 500;
    line-height: 1.12;
}

h2 {
    font-size: clamp(30px, 3.2vw, 35px);
    margin: 15px 0 25px;
}

h3 {
    font-size: 24px;
}

em {
    font-weight: 500;
    font-style: normal;
    color: var(--gold);
}

p+p {
    margin-top: 16px;
}

.eyebrow {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2.8px;
    color: var(--gold);
}

/* Shared section layout
   --------------------------------------------------------- */
.section {
    padding: 95px max(6vw,24px);
}

/* Header and brand
   --------------------------------------------------------- */
.header {
    height: 92px;
    padding: 0 4.5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    border-bottom: 1px solid #ffffff25;
    transition: background .25s ease, box-shadow .25s ease;
}

.header.is-scrolled {
    background: var(--dark);
    box-shadow: 0 4px 18px #0002;
}

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.2;
    color: var(--gold);
    min-width: 160px;
    text-align: center;
}

/* Compact header logo; preserve the image proportions. */
.header .brand {
    width: 190px;
    min-width: 0;
    flex-shrink: 0;
}

.header .brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.brand>span {
    font-size: 9px;
    letter-spacing: 1.7px;
}

.brand i {
    font-family: var(--font-family);
    font-style: normal;
    border-left: 1px solid var(--gold);
    margin-left: 5px;
    padding-left: 8px;
}

.brand strong {
    font-family: var(--font-family);
    font-size: 29px;
    letter-spacing: 5px;
    font-weight: 400;
    margin-top: 6px;
}

.brand strong span {
    font: 10px var(--font-family);
    letter-spacing: 0;
    vertical-align: top;
}

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

/* Buttons and links
   --------------------------------------------------------- */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    background: var(--gold);
    color: var(--dark);
    padding: 15px 24px;
    border: 1px solid var(--gold);
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background .2s;
}

.button:hover {
    background: #e6c906;
}

.button span {
    font-size: 20px;
    line-height: 1;
}

.button.light {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--cream);
}

.button.light:hover {
    background: var(--dark);
}

.text-button {
    padding: 10px 0;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--gold);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-size: 10px;
}

.text-button span {
    margin-left: 25px;
    font-size: 20px;
}

/* Main banner
   --------------------------------------------------------- */
.hero {
    min-height: 660px;
    height: 100svh;
    max-height: 900px;
    position: relative;
    color: white;
}

.hero-image,.hero-shade {
    position: absolute;
    inset: 0;
    height: 100%;
}

.hero-image {
    object-position: center;
}

.hero-shade {
    background: linear-gradient(90deg,rgba(24,26,44,.78),rgba(24,26,44,.24) 60%,rgba(24,26,44,.03)),linear-gradient(0deg,rgba(24,26,44,.48),transparent 35%);
}

.hero-content {
    position: relative;
    padding: 80px 7% 100px;
    max-width: 900px;
}

.hero .eyebrow {
    color: var(--gold);
}

.fine-line {
    width: 55px;
    height: 1px;
    background: var(--gold);
    margin: 23px 0;
}

.hero-intro {
    font-family: var(--font-family);
    font-size: 20px;
    font-style: normal;
    color: #efe5d1;
}

.hero h1 {
    font-size: clamp(52px,6vw,86px);
    margin: 12px 0 24px;
    line-height: 1.05;
    letter-spacing: -2px;
}

.hero-description {
    font-size: 13px;
    line-height: 1.9;
    color: #eee;
}

.hero .button {
    margin-top: 30px;
}

.scroll-cue {
    position: absolute;
    bottom: 30px;
    left: 7%;
    font-size: 9px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.scroll-cue span {
    border: 1px solid #ffffff60;
    border-radius: 50%;
    height: 33px;
    width: 33px;
    text-align: center;
    font-size: 17px;
}

.image-note {
    position: absolute;
    bottom: 22px;
    right: 25px;
    font-size: 9px;
    color: #eee;
}

/* Project facts
   --------------------------------------------------------- */
.quick-facts {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    padding: 32px 6%;
    background: var(--dark);
    border-bottom: 1px solid var(--line);
}

.quick-facts div {
    padding: 0 30px;
    border-right: 1px solid var(--line);
}

.quick-facts div:first-child {
    padding-left: 0;
}

.quick-facts div:last-child {
    border: 0;
}

.quick-facts small {
    display: block;
    font-size: 9px;
    letter-spacing: 1.7px;
    color: var(--gold);
}

.quick-facts strong {
    font: 21px/1.6 var(--font-family);
}

/* Project overview
   --------------------------------------------------------- */
.overview {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 9%;
    align-items: center;
}

.overview-copy>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.overview .text-button {
    margin-top: 25px;
}

.overview-image {
    position: relative;
    padding: 16px 16px 0 0;
    isolation: isolate;
    border-radius: 10px;
}

.overview-image:before {
    content: '';
    position: absolute;
    inset: 0 0 35px 25px;
    border: 1px solid var(--line);
    z-index: -1;
}

.overview-image img {
    height: 470px;
}

/* Keep About the Development clean and plain white. */
.overview {
    background-color: #fff;
    background-image: none;
}

/* The texture is reserved for About the Development. */
.overview {
    background-image: repeating-linear-gradient(45deg, transparent, transparent 13px, #181a2c04 13px, #181a2c04 14px),
        repeating-linear-gradient(-45deg, transparent, transparent 13px, #181a2c04 13px, #181a2c04 14px);
}

.image-caption {
    font-size: 8px;
    letter-spacing: 2px;
    display: block;
    padding: 16px 0;
    color: var(--gold);
}

.image-seal {
    position: absolute;
    bottom: 65px;
    left: -38px;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 26px;
    text-align: center;
    font: 22px/1.2 var(--font-family);
}

/* Project highlights
   --------------------------------------------------------- */
.highlights {
    background: var(--dark);
    color: #fff;
}

.section-heading {
    text-align: center;
    max-width: 740px;
    margin: 0 auto 50px;
}

.highlights .eyebrow,.highlights em {
    color: var(--gold);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 0 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.highlight-grid article {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 20px;
    align-items: start;
    padding: 22px 0;
    border-top: 1px solid #ffffff28;
}

.highlight-icon {
    display: grid;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    place-items: center;
    border: 1px solid var(--dark);
    color: var(--dark);
    font-size: 23px;
    line-height: 1;
}

.highlight-icon i {
    font-size: 20px;
}

.highlight-grid h3 {
    margin: 0 0 4px;
    color: #fff;
    font-size: 21px;
    font-weight: 500;
}

.highlight-grid p {
    color: #bdc2bb;
    font-size: 14px;
    line-height: 1.6;
}

/* Light highlight panel follows the supplied reference layout. */
.highlights {
    background-color: #fff;
    color: var(--dark);
    background-image: none;
}

.highlights .eyebrow,
.highlights em {
    color: var(--dark);
}

.highlights .highlight-grid article {
    border-color: #d9dae0;
}

.highlights .highlight-grid h3 {
    color: var(--dark);
}

.highlights .highlight-grid p {
    color: #4f5160;
}

/* Lifestyle banner
   --------------------------------------------------------- */
.lifestyle-banner {
    height: 460px;
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
}

.lifestyle-banner>img {
    position: absolute;
    inset: 0;
    height: 100%;
    filter: brightness(.48);
}

.lifestyle-banner>div {
    position: relative;
    padding: 25px;
}

.lifestyle-banner .eyebrow,.lifestyle-banner em {
    color: var(--gold);
}

.lifestyle-banner h2 {
    font-size: 48px;
}

/* Section headings
   --------------------------------------------------------- */
.heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    gap: 30px;
}

.heading-row h2 {
    margin-bottom: 0;
}

.heading-row>p {
    font-size: 11px;
    color: var(--muted);
    padding-bottom: 8px;
}

/* Amenities
   --------------------------------------------------------- */
.amenity-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.amenity-grid article {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.amenity-grid img {
    height: 330px;
    transition: transform .5s;
}

.amenity-grid article:hover img {
    transform: scale(1.04);
}

.amenity-grid article>div {
    position: absolute;
    inset: auto 0 0;
    padding: 60px 25px 24px;
    background: linear-gradient(transparent,#181a2ce8);
    color: #fff;
}

.amenity-grid span {
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--gold);
}

.amenity-grid h3 {
    font-size: 23px;
    margin-top: 10px;
}

.amenity-extra {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    padding: 25px 0;
}

.amenity-extra>span {
    font-size: 11px;
}

.amenity-extra>span:before {
    content: '✧';
    margin-right: 15px;
    color: var(--gold);
}

/* Full amenities list with clear, themed icons. */
.amenity-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 30px;
    padding: 24px;
    border-radius: 14px;
}

.amenity-list > span {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 13px;
    min-height: 128px;
    padding: 18px 10px;
    border: 0;
    border-radius: 10px;
    background: #fff;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    box-shadow: 0 5px 16px #181a2c0b;
    transition: transform .2s, box-shadow .2s;
}

.amenity-list > span:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 26px #181a2c18;
}

.amenity-list i {
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border-radius: 50%;
    background: #ffd400;
    color: var(--dark);
    font-size: 30px;
    text-align: center;
}

.amenity-list span > span {
    display: block;
    width: 100%;
    max-width: 155px;
}

@media (min-width: 901px) {
    .amenity-list > span:nth-last-child(3) {
        grid-column: 2;
    }
}

/* Center the Amenities introduction after removing image cards. */
.amenities .heading-row {
    display: block;
    max-width: 920px;
    margin: 0 auto 42px;
    text-align: center;
}

.amenities .heading-row > p {
    max-width: 900px;
    margin: 24px auto 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.8;
}

/* Residences and pricing
   --------------------------------------------------------- */
.residences {
    background: var(--dark);
}

/* Floor plan gallery: images reveal a clear enquiry CTA on hover. */
.floor-plan {
    background-color: var(--dark);
    color: #fff;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 13px, #ffffff08 13px, #ffffff08 14px),
        repeating-linear-gradient(-45deg, transparent, transparent 13px, #ffffff08 13px, #ffffff08 14px);
}

.floor-plan .eyebrow {
    color: var(--gold);
}

.floor-plan em {
    color: #fff;
}

.floor-plan .section-heading h2 {
    color: #fff;
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1250px;
    margin: 0 auto;
}

.floor-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #fff;
    border: 1px solid var(--dark);
    box-shadow: 0 12px 28px #181a2c1c;
    display: flex;
    flex-direction: column;
}

.floor-card-media {
    position: relative;
    height: 285px;
    overflow: hidden;
    background: #fff;
}

.floor-card-media img {
    width: 100%;
    height: 100%;
    padding: 12px;
    object-fit: contain;
    background: #fff;
    filter: blur(4px) brightness(.82);
    transition: filter .4s ease, transform .5s ease;
}

.floor-card:hover img,
.floor-card:focus-within img {
    filter: blur(4px) brightness(.52);
    transform: scale(1.04);
}

.floor-card-hover {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: #181a2c33;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
}

.floor-card:hover .floor-card-hover,
.floor-card:focus-within .floor-card-hover {
    opacity: 1;
    pointer-events: auto;
}

.floor-card-hover .button {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    padding: 13px 18px;
    font-size: 10px;
    gap: 18px;
}

.floor-card-hover .button:hover {
    background: #fff;
    border-color: #fff;
}

.floor-card > h3 {
    margin: 0;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    color: var(--dark);
    background: #fff;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Pricing table follows Amenities in the navigation flow. */
.pricing {
    background-color: var(--dark);
    color: #fff;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 13px, #ffffff08 13px, #ffffff08 14px),
        repeating-linear-gradient(-45deg, transparent, transparent 13px, #ffffff08 13px, #ffffff08 14px);
    background-size: auto;
    padding: 100px 0px;
}

.pricing .eyebrow,
.pricing em {
    color: var(--gold);
}

.pricing-heading h2 {
    color: #fff;
    font-weight: 500;
}

.pricing-heading h2,
.pricing-heading h2 a {
    color: #fff;
}

.pricing-heading > p:last-child {
    color: #c7c9d4;
}

.price-table {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1250px;
    margin: 0 auto;
    border-top: 0;
}

.price-row {
    display: flex;
    min-height: 340px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 34px 24px;
    border: 1px solid #dcbdb5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 9px 25px #181a2c0b;
    font-size: 12px;
    text-align: center;
}

.price-row strong:first-child {
    order: 1;
    color: var(--dark);
    font-size: 20px;
}

.price-row strong:first-child::before,
.price-row > span::before,
.price-row strong:nth-child(3)::before {
    display: block;
    margin-bottom: 6px;
    color: #7a7d8d;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.price-row strong:first-child::before {
    content: 'UNIT TYPE';
}

.price-row > span::before {
    content: 'UNIT SIZES';
}

.price-row strong:nth-child(3)::before {
    content: 'PRICE';
    color: #a45b42;
}

.price-row strong:nth-child(3) {
    order: 3;
    color: var(--dark);
    font-size: 18px;
    font-weight: 500;
}

.price-head {
    display: none;
}

.price-row > span {
    order: 2;
    width: 100%;
    padding: 14px 0;
    border-top: 1px solid #ead8d3;
    border-bottom: 1px solid #ead8d3;
    color: #454858;
    font-size: 18px;
}

.price-row .text-button {
    order: 4;
    justify-self: auto;
    margin-top: 8px;
    padding: 10px 20px;
    border: 1px solid var(--dark);
    color: var(--dark);
    font-size: 11px;
    font-weight: 700;
}

.pricing-heading {
    margin-bottom: 38px;
}

.pricing-heading h2 {
    margin-top: 8px;
    color: #fff;
    font-weight: 500;
}

.pricing-heading > p:last-child {
    color: #c7c9d4;
    font-size: 12px;
}

.residence-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1050px;
    margin: auto;
}

.residence-grid article {
    border: 1px solid var(--line);
    padding: 38px 40px;
    background: var(--dark);
}

.residence-grid h3 {
    font-size: 50px;
    color: var(--gold);
    margin: 22px 0 10px;
}

.area {
    font: 25px var(--font-family);
}

.area small {
    font-size: 16px;
}

.residence-grid article>p:not(.area) {
    font-size: 11px;
    color: var(--muted);
    margin-top: 20px;
}

.price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    margin-top: 30px;
    padding-top: 20px;
    gap: 15px;
}

.price>span {
    font-size: 9px;
    letter-spacing: 1px;
}

.footnote {
    font-size: 9px;
    color: var(--muted);
    margin-top: 20px;
}

.residences>.footnote {
    text-align: center;
}

/* Gallery
   --------------------------------------------------------- */
.gallery-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-controls button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--gold);
    font-size: 20px;
}

.gallery-controls button:hover {
    background: var(--dark);
}

.gallery-controls span {
    font-size: 10px;
    color: var(--gold);
    letter-spacing: 2px;
}

.gallery-main {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    position: relative;
    background: var(--dark);
}

.gallery-main img {
    height: 550px;
}

.gallery-main>span {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 11px 17px;
    color: white;
    background: #181a2cbb;
    font-size: 9px;
    letter-spacing: 2px;
}

/* Location
   --------------------------------------------------------- */
.location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7%;
    padding-top: 20px;
}

.location-image {
    position: relative;
    min-height: 560px;
}

.location-image>img {
    height: 100%;
    position: absolute;
    filter: brightness(.65);
}

.location-image>div {
    position: absolute;
    bottom: 40px;
    left: 35px;
    color: #fff;
}

.location-image .eyebrow,.location-image em {
    color: var(--gold);
}

.location-image h3 {
    font-size: 48px;
    margin: 20px 0 30px;
}

.location-copy>p:not(.eyebrow) {
    font-size: 11px;
    color: var(--muted);
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.location-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    gap: 20px;
}

.location-list small {
    font-size: 8px;
    letter-spacing: 1.5px;
    color: var(--gold);
}

.location-list h3 {
    font-size: 20px;
    margin-top: 7px;
}

.location-list li>span {
    white-space: nowrap;
    color: var(--gold);
    font-size: 11px;
}

/* Developer introduction
   --------------------------------------------------------- */
.developer {
    text-align: center;
    background: var(--dark);
    color: white;
    padding-top: 65px;
    padding-bottom: 65px;
}

.developer .eyebrow {
    color: var(--gold);
}

.developer h2 {
    font-size: 50px;
}

.developer h2 span {
    color: var(--gold);
    font-size: 30px;
    margin: 0 20px;
}

.developer>p:last-child {
    max-width: 730px;
    margin: auto;
    color: #c5c9c3;
    font-size: 12px;
}

/* Contact and enquiry forms
   --------------------------------------------------------- */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10%;
}

.contact>div>p:not(.eyebrow) {
    color: var(--muted);
    font-size: 12px;
}

.contact-address {
    display: flex;
    gap: 18px;
    align-items: center;
    margin-top: 40px;
}

.contact-address>span {
    font-size: 35px;
    color: var(--gold);
}

.contact-address p {
    font-size: 11px;
}

.enquiry-form {
    display: grid;
    gap: 20px;
}

.enquiry-form label {
    font-size: 10px;
    display: grid;
    gap: 6px;
    color: var(--muted);
}

input:not([type=checkbox]),select,textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    border-radius: 0;
    padding: 9px 0 12px;
    color: var(--ink);
    font-size: 12px;
    min-height: 43px;
}

textarea {
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #737583;
    opacity: 1;
}

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

.enquiry-form .consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 9px;
    line-height: 1.6;
}

.consent input {
    accent-color: var(--gold);
    margin: 2px 0 0;
    min-width: 14px;
}

.privacy-trigger {
    padding: 0;
    background: none;
    border: 0;
    text-decoration: underline;
    font: inherit;
}

.enquiry-form .button {
    justify-content: center;
}

.form-status {
    font-size: 12px;
    color: var(--gold);
    min-height: 20px;
}

/* Fixed right-side site-visit action. */
.site-visit-tab {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 18;
    padding: 14px 12px;
    border: 2px solid var(--gold);
    background: #fff;
    color: var(--dark);
    box-shadow: 0 6px 18px #0003;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
    transition: background .2s, color .2s;
}

.site-visit-tab:hover {
    background: var(--gold);
}

/* Footer
   --------------------------------------------------------- */
footer {
    padding: 45px 6% 20px;
    border-top: 1px solid var(--line);
    background: var(--dark);
}

/* Registration details supplied for the marketing campaign. */
.footer-registration {
    margin-bottom: 22px;
    font-size: 12px;
    line-height: 1.9;
}

.footer-registration strong {
    color: var(--gold);
    font-weight: 600;
}

.footer-registration span {
    display: inline-block;
    color: var(--ink);
}

.footer-registration p + p {
    margin-top: 8px;
}

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

.footer-top>p {
    font: 600 20px var(--font-family);
    color: var(--gold);
}

.back-top {
    font-size: 9px;
    letter-spacing: 1px;
}

.disclaimer {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    margin-top: 22px;
    font-size: 13px;
    color: var(--muted);
}

.footer-bottom .privacy-link {
    color: var(--gold);
    font-size: 13px;
    font-weight: 600;
}

/* Enquiry, gallery and privacy dialogs
   --------------------------------------------------------- */
dialog {
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    padding: 45px;
    width: min(540px,calc(100% - 30px));
    max-height: 90svh;
    overflow: auto;
}

dialog::backdrop {
    background: #181a2cb8;
    backdrop-filter: blur(4px);
}

dialog>p {
    font-size: 12px;
}

dialog h2 {
    font-size: 32px;
}

.dialog-close {
    position: absolute;
    right: 12px;
    top: 8px;
    border: 0;
    background: none;
    font-size: 28px;
}

.dialog-close:hover {
    color: var(--gold);
}

#modal-form {
    margin-top: 25px;
}

/* Two-column enquiry popup; it intentionally has no logo. */
#enquiry-dialog {
    width: min(960px, calc(100% - 36px));
    max-height: min(680px, 90svh);
    padding: 0;
    border: 0;
    background: var(--dark);
    color: #fff;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 10px;
}

#enquiry-dialog[open] {
    display: grid;
}

#enquiry-dialog .dialog-close {
    z-index: 2;
    top: 12px;
    right: 14px;
    color: #fff;
    font-size: 36px;
}

.enquiry-visual {
    min-height: 430px;
    padding: 24px;
    background: var(--dark);
}

.enquiry-visual img {
    height: 100%;
    object-position: center;
    border-radius: 12px;
}

.enquiry-content {
    padding: 45px 42px 32px;
    overflow-y: auto;
    background: var(--dark);
}

.enquiry-content .eyebrow {
    color: var(--dark);
    font-weight: 500;
}

.enquiry-content h2 {
    margin: 9px 0 8px;
    font-size: 32px;
    font-weight: 500;
}

.enquiry-content > p:not(.eyebrow) {
    color: #676979;
    font-size: 11px;
}

#enquiry-dialog .enquiry-form {
    gap: 15px;
}

#enquiry-dialog .enquiry-form label {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Popup fields use their placeholders; labels remain visible on the contact section. */
#enquiry-dialog .enquiry-form .form-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

#enquiry-dialog .enquiry-form input:not([type=checkbox]),
#enquiry-dialog .enquiry-form select,
#enquiry-dialog .enquiry-form textarea {
    padding: 11px 13px;
    border: 1px solid #d4d5db;
    background: #fff;
    color: #181a2c;
    caret-color: #181a2c;
}

#enquiry-dialog .enquiry-form .consent {
    color: #fff;
    font-size: 9px;
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0;
    text-transform: none;
}

#enquiry-dialog .enquiry-form .button {
    width: 100%;
    margin-top: 4px;
    color: var(--dark);
    font-weight: 700;
}

/* Navy blue visible around the popup, matching the project palette. */
#enquiry-dialog::backdrop {
    background: rgba(24, 26, 44, .9);
}

#enquiry-dialog .enquiry-content h2 {
    color: #fff;
}

#image-dialog {
    position: relative;
    box-sizing: border-box;
    width: min(1100px, 95vw);
    min-height: min(520px, 82svh);
    max-height: 92svh;
    padding: 52px 56px 24px;
    overflow: hidden;
    border: 1px solid #85899a;
    border-radius: 10px;
    background: var(--dark);
    box-shadow: 0 24px 70px #181a2c38;
}

#image-dialog .dialog-close {
    z-index: 3;
    color: #fff;
}

#image-dialog img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(92svh - 78px);
    margin: 0 auto;
    border: 0;
    object-fit: contain;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #ffffff80;
    border-radius: 50%;
    color: #fff;
    background: #181a2cde;
    font-size: 24px;
    line-height: 1;
    transform: translateY(-50%);
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
    border-color: var(--gold);
    color: var(--dark);
    background: var(--gold);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

/* Mobile action bar
   --------------------------------------------------------- */
.mobile-cta {
    display: none;
}

/* Accessibility
   --------------------------------------------------------- */
.skip-link {
    position: fixed;
    top: -100px;
    left: 10px;
    background: white;
    padding: 15px;
    z-index: 100;
}

.skip-link:focus {
    top: 10px;
}

:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 5px;
}

body.modal-open {
    position: fixed;
    top: calc(-1 * var(--modal-scroll-y, 0px));
    width: 100%;
    overflow: hidden;
}

/* Wide desktop layout
   --------------------------------------------------------- */
@media (min-width:1600px) {
    .section {
        padding-left: calc((100vw - 1400px)/2);
        padding-right: calc((100vw - 1400px)/2);
    }

}

/* Small desktop layout
   --------------------------------------------------------- */
@media (max-width:1100px) {
    .header {
        padding: 0 3%;
    }

    .overview {
        gap: 6%;
    }

    .highlight-grid article {
        padding: 22px 18px;
    }

    .number {
        font-size: 38px;
    }

    .location {
        gap: 5%;
    }

    .location-list h3 {
        font-size: 19px;
    }

}

/* Tablet layout
   --------------------------------------------------------- */
@media (max-width:800px) {
    .header {
        height: 76px;
        padding: 0 22px;
    }

    .brand {
        min-width: 145px;
    }

    .header .brand {
        width: 125px;
        min-width: 0;
    }

    .brand strong {
        font-size: 25px;
    }

    .hero {
        height: 740px;
        min-height: 0;
        max-height: none;
    }

    .hero-content {
        padding: 70px 6% 80px;
    }

    .hero h1 {
        font-size: 64px;
    }

    .hero-image {
        object-position: 60% center;
    }

    .quick-facts {
        padding: 25px 6%;
        grid-template-columns: 1fr 1fr;
        gap: 22px 0;
    }

    .quick-facts div {
        padding: 0 18px;
    }

    .quick-facts div:nth-child(odd) {
        padding-left: 0;
    }

    .quick-facts div:nth-child(even) {
        border: 0;
    }

    .quick-facts strong {
        font-size: 21px;
    }

    .section {
        padding: 65px 6%;
    }

    h2 {
        font-size: 30px;
    }

    .overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-image {
        max-width: 600px;
        margin-left: 22px;
    }

    .overview-image img {
        height: 430px;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .heading-row {
        align-items: start;
    }

    .heading-row>p br {
        display: none;
    }

    .heading-row>p {
        max-width: 240px;
    }

    .amenity-grid {
        gap: 14px;
    }

    .amenity-grid img {
        height: 280px;
    }

    .amenity-grid article>div {
        padding: 45px 15px 20px;
    }

    .amenity-grid h3 {
        font-size: 20px;
    }

    .amenity-extra {
        flex-wrap: wrap;
    }

    .residence-grid article {
        padding: 28px;
    }

    .price {
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    .gallery-main img {
        height: 420px;
    }

    .location {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .location-image {
        min-height: 420px;
    }

    .contact {
        gap: 6%;
    }

    .footer-top>p {
        display: none;
    }

    .mobile-cta {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 52px;
        z-index: 25;
        box-shadow: 0 -2px 10px #0002;
    }

    .mobile-cta>* {
        width: 50%;
        text-align: center;
        border: 0;
        border-top: 1px solid var(--line);
        background: var(--cream);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 1px;
        display: grid;
        place-items: center;
    }

    .mobile-cta button {
        background: var(--gold);
        color: var(--dark);
    }

    footer {
        padding-bottom: 75px;
    }

    html {
        scroll-padding-top: 76px;
    }

}

/* Mobile layout
   --------------------------------------------------------- */
@media (max-width:540px) {
    .hero-content {
        padding-top: 50px;
    }

    .hero {
        max-height: none;
        height: 640px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-intro {
        font-size: 17px;
    }

    .hero-description {
        font-size: 11px;
    }

    .hero .eyebrow {
        font-size: 9px;
    }

    .hero-shade {
        background: linear-gradient(90deg,#181a2cc9,#181a2c38),linear-gradient(0deg,#181a2c80,transparent);
    }

    .hero-image {
        object-position: 57% center;
    }

    .quick-facts strong {
        font-size: 18px;
    }

    .quick-facts small {
        font-size: 8px;
    }

    .section {
        padding: 58px 6%;
    }

    h2 {
        font-size: 23px;
    }

    .overview-image img {
        height: 340px;
    }

    .image-seal {
        left: -20px;
        padding: 20px;
        font-size: 20px;
    }

    .highlight-grid article {
        padding: 18px 0;
    }

    .highlight-grid p {
        font-size: 14px;
    }

    .highlight-grid h3 {
        font-size: 15px;
    }

    .number {
        font-size: 34px;
    }

    .lifestyle-banner {
        height: 370px;
    }

    .lifestyle-banner h2 {
        font-size: 34px;
    }

    .heading-row {
        display: block;
    }

    .heading-row>p {
        margin-top: 20px;
        max-width: none;
    }

    .amenity-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .amenity-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .amenity-list > span {
        min-height: 56px;
        flex-direction: row;
        align-items: center;
        padding: 17px 18px;
        font-size: 13px;
    }

    .amenity-grid img {
        height: 310px;
    }

    .amenity-grid h3 {
        font-size: 25px;
    }

    .amenity-extra {
        gap: 12px;
        font-size: 10px;
    }

    .amenity-extra>span:before {
        margin-right: 6px;
    }

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

    .price {
        flex-direction: row;
        align-items: center;
    }

    .gallery-controls {
        margin-top: 25px;
        justify-content: flex-end;
    }

    .gallery-main img {
        height: 300px;
    }

    .location-image {
        min-height: 380px;
    }

    .location-image>div {
        left: 25px;
        bottom: 28px;
    }

    .location-list h3 {
        font-size: 18px;
    }

    .developer h2 {
        font-size: 32px;
    }

    .developer h2 span {
        margin: 0 7px;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .contact-address {
        margin-top: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    dialog {
        padding: 38px 25px 25px;
    }

    .footer-bottom {
        gap: 20px;
        font-size: 12px;
    }

    .footer-bottom .privacy-link {
        font-size: 10px;
    }

    .footer-top .brand {
        min-width: 130px;
    }

    .back-top {
        font-size: 8px;
    }

    .eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
    }

}

/* Reduced motion preference
   --------------------------------------------------------- */
@media (prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto;
    }

    *,*:before,*:after {
        transition: none!important;
    }

}

/* Header controls and expandable navigation (all screen sizes)
   --------------------------------------------------------- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.phone-link,
.menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    background: transparent;
    color: var(--gold);
}

/* Filled circular call button alongside the bold menu toggle. */
.phone-link {
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    transition: background .2s;
}

.phone-link:hover {
    background: #e6c906;
}

.phone-link svg {
    width: 23px;
    height: 23px;
    stroke-width: 2;
}

.menu-toggle {
    flex-direction: column;
    gap: 6px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background: currentColor;
    transition: transform .2s, opacity .2s;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-9px) rotate(-45deg);
}

.header nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: fixed;
    top: 0;
    right: 0;
    width: var(--drawer-width);
    height: 100dvh;
    padding: 110px 35px 40px;
    overflow-y: auto;
    background: var(--dark);
    border-left: 1px solid var(--line);
    z-index: 40;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), visibility .45s;
}

.header nav.open {
    visibility: visible;
    transform: translateX(0);
}

.header nav a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

/* Full-height overlay drawer; the page stays in its original position. */
:root {
    --drawer-width: min(380px, 85vw);
}

body {
    overflow-x: clip;
}

.drawer-close {
    position: absolute;
    top: 22px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: var(--gold);
    font-size: 30px;
    line-height: 1;
}

/* White textured sections alternate with the navy project sections.
   Local tokens keep text, form fields and dividers readable on white. */
.overview,
.amenities,
.gallery,
.developer,
.contact {
    --cream: #ffffff;
    --ink: #181a2c;
    --muted: #636575;
    --line: #dddfe6;
    color: var(--ink);
    background-color: #fdfdfc;
    background-image: none;
}

/* Keep texture only on About Us. */
.overview {
    background-image: repeating-linear-gradient(45deg, transparent, transparent 13px, #181a2c04 13px, #181a2c04 14px),
        repeating-linear-gradient(-45deg, transparent, transparent 13px, #181a2c04 13px, #181a2c04 14px);
}

.overview .eyebrow,
.amenities .eyebrow,
.gallery .eyebrow,
.developer .eyebrow,
.contact .eyebrow,
.overview em,
.amenities em,
.gallery em,
.contact em,
.overview .text-button,
.amenities .text-button,
.gallery-controls,
.gallery-controls button,
.gallery-controls span,
.image-caption,
.contact .form-status {
    color: var(--dark);
}

.overview em,
.amenities em,
.gallery em,
.contact em {
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

.gallery-controls button:hover {
    background: var(--gold);
}

.developer > p:last-child {
    color: var(--muted);
}

.location {
    padding-top: 80px;
    background: var(--dark);
}

/* Contact follows the light developer introduction with a navy finish. */
.contact {
    --cream: #202238;
    --ink: #f6f6fa;
    --muted: #b8bac9;
    --line: #3c3e52;
    background: var(--dark);
}

.contact .eyebrow,
.contact em,
.contact .form-status {
    color: var(--gold);
}

/* Main banner: launch announcement, project highlights and enquiry CTA. */
.hero {
    height: auto;
    min-height: 790px;
    max-height: none;
}

.hero-content {
    padding: 125px 6% 85px;
    max-width: none;
}

.hero-shade {
    background: linear-gradient(90deg, #181a2c55, transparent 75%);
}

.banner-card {
    width: min(410px, 100%);
    overflow: hidden;
    background: #fff;
    color: var(--dark);
    border: 1px solid #ffffff70;
    border-radius: 18px;
    box-shadow: 0 20px 65px #0004;
    text-align: center;
}

.banner-status {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.banner-heading {
    padding: 0px 20px 10px;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, #181a2c05 10px, #181a2c05 11px);
}

.banner-heading .eyebrow {
    color: #686a77;
    font-size: 9px;
    letter-spacing: 1.7px;
}

.hero .banner-heading h1 {
    margin: 12px 0;
    font-size: clamp(23px, 2.1vw, 29px);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -.5px;
}

.banner-developer {
    font-size: 16px;
    font-weight: 600;
}

.banner-address {
    margin-top: 5px;
    color: #696b78;
    font-size: 14px;
}

.banner-features {
    margin: 0;
    padding: 6px 22px;
    list-style: none;
    background: var(--dark);
    color: #fff;
    border-top: 3px solid var(--gold);
    border-bottom: 3px solid var(--gold);
    text-align: left;
}


.banner-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    border-bottom: 1px solid #ffffff20;
}

.banner-features li:last-child {
    border-bottom: 0;
}

.banner-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    flex-shrink: 0;
    background: var(--gold);
    transform: rotate(45deg);
}

.banner-pricing {
    padding: 20px 24px 24px;
}

.banner-pricing > p {
    font-size: 15px;
    font-weight: 600;
}

.banner-pricing > strong {
    display: block;
    margin-top: 5px;
    font-size: 28px;
    font-weight: 700;
}

.hero .banner-pricing .button {
    width: 100%;
    margin-top: 17px;
    border-radius: 7px;
    font-weight: 700;
}

@media (max-width: 540px) {
    .hero {
        min-height: 0;
        height: auto;
    }

    .hero-content {
        padding: 100px 20px 80px;
    }

    .banner-card {
        margin: 0 auto;
    }

    .banner-heading {
        padding: 20px 15px;
    }

    .banner-features {
        padding: 6px 16px;
    }

    .location {
        padding-top: 58px;
    }

    .price-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px 15px;
        padding: 17px 5px;
    }

    .price-head {
        display: none;
    }

    .price-row .text-button {
        justify-self: start;
    }

    .site-visit-tab {
        top: auto;
        bottom: 65px;
        padding: 11px 10px;
        font-size: 9px;
    }

    #enquiry-dialog {
        grid-template-columns: 1fr;
        max-height: 92svh;
    }

    .enquiry-visual {
        display: none;
    }

    .enquiry-content {
        padding: 48px 25px 28px;
    }

    #enquiry-dialog .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (min-width: 541px) and (max-width: 900px) {
    .amenity-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 540px) {
    .amenity-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 14px;
    }

    .amenity-list > span {
        min-height: 112px;
        flex-direction: column;
        justify-content: center;
        padding: 14px 7px;
        font-size: 11px;
    }

    .amenity-list i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 1100px) {
    .floor-plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 540px) {
    .floor-plan-grid {
        grid-template-columns: 1fr;
    }

    .floor-card-media {
        height: 280px;
    }

    .floor-card > h3 {
        min-height: 46px;
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* Gallery thumbnails and lightbox entry points. */
.gallery .section-heading {
    text-align: center;
}

.gallery .section-heading h2 {
    color: var(--dark);
}

.gallery .section-heading em {
    text-decoration: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 1180px;
    margin: 0 auto;
}

.gallery-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 0;
    border: 1px solid #d9dbe2;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 10px 24px #181a2c14;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.gallery-thumb::after {
    content: 'VIEW IMAGE ↗';
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 9px 12px;
    color: #fff;
    background: #181a2cd9;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease, filter .3s ease;
}

.gallery-thumb > span {
    position: absolute;
    top: 12px;
    left: 12px;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid #d9dbe2;
    border-radius: 50%;
    color: var(--dark);
    background: var(--gold);
    font-size: 10px;
    font-weight: 700;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
    border-color: var(--dark);
    box-shadow: 0 16px 32px #181a2c2b;
    transform: translateY(-4px);
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
    filter: brightness(.78);
    transform: scale(1.05);
}

.gallery-thumb:hover::after,
.gallery-thumb:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 800px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 540px) {
    #image-dialog {
        width: calc(100% - 24px);
        min-height: 300px;
        padding: 48px 38px 18px;
    }

    #image-dialog img {
        max-height: calc(92svh - 70px);
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-thumb {
        aspect-ratio: 16 / 10;
    }
}

/* Location advantages: a clean, grouped proximity guide. */
.location-advantages {
    display: block;
    background: #fff;
    color: var(--dark);
    background-image: none;
}

.location-advantages .section-heading {
    text-align: center;
    margin-bottom: 42px;
}

.location-advantages .section-heading .eyebrow {
    color: var(--dark);
}

.location-advantages .section-heading h2 {
    color: var(--dark);
}

.location-advantages .section-heading em {
    color: var(--dark);
    text-decoration: none;
}

.location-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    max-width: 1120px;
    margin: 0 auto;
}

.location-group {
    padding: 24px 26px 12px;
    border: 1px solid #dfe1e7;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 10px 28px #181a2c0b;
}

.location-group:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    margin: 0 auto;
}

.location-group h3 {
    margin: 0 0 10px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.8px;
}

.location-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.location-group li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-top: 1px solid #ececf0;
    color: #424453;
    font-size: 14px;
    line-height: 1.45;
}

.location-group li span {
    min-width: 0;
}

.location-group li strong {
    flex: 0 0 auto;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.location-advantages > .footnote {
    max-width: 1120px;
    margin: 24px auto 0;
    color: #777a86;
    font-size: 11px;
    text-align: center;
}

@media (max-width: 700px) {
    .location-groups {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .location-group:last-child {
        grid-column: auto;
        width: 100%;
    }

    .location-group {
        padding: 20px 18px 10px;
    }

    .location-group li {
        font-size: 13px;
    }
}

/* Location map and category tabs. */
.location-advantages .location-map {
    width: min(1200px, 100%);
    height: 390px;
    margin: 0 auto 28px;
    overflow: hidden;
    border: 1px solid #d9dbe2;
    border-radius: 10px;
    background: #f4f5f7;
    box-shadow: 0 12px 30px #181a2c12;
}

.location-advantages .location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.location-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.location-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 10px 18px;
    border: 1px solid #d9dbe2;
    border-radius: 8px 8px 0 0;
    color: #555866;
    background: #f8f9fb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .4px;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.location-tab i {
    color: var(--dark);
    font-size: 16px;
}

.location-tab:hover,
.location-tab:focus-visible,
.location-tab.is-active {
    border-color: var(--dark);
    color: #fff;
    background: var(--dark);
}

.location-tab.is-active i,
.location-tab:hover i,
.location-tab:focus-visible i {
    color: var(--gold);
}

.location-panels {
    width: min(1200px, 100%);
    margin: 0 auto;
    border: 1px solid #d9dbe2;
    border-radius: 0 8px 8px 8px;
    background: #fff;
    box-shadow: 0 12px 28px #181a2c0b;
}

.location-panel {
    padding: 20px 28px;
}

.location-panel ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.location-panel li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #ececf0;
    color: #424453;
    font-size: 14px;
    line-height: 1.45;
}

.location-panel li:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.location-panel li strong {
    flex: 0 0 auto;
    color: var(--dark);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.location-advantages > .footnote {
    margin-top: 22px;
}

.location-enquiry {
    display: flex;
    min-width: 225px;
    margin: 28px auto 0;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 700px) {
    .location-advantages .location-map {
        height: 300px;
    }

    .location-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: thin;
    }

    .location-tab {
        flex: 0 0 auto;
        min-height: 44px;
        padding: 9px 14px;
        font-size: 12px;
    }

    .location-panels {
        border-radius: 0 0 8px 8px;
    }

    .location-panel {
        padding: 14px 18px;
    }

    .location-panel ul {
        grid-template-columns: 1fr;
    }

    .location-panel li:nth-last-child(-n + 2) {
        border-bottom: 1px solid #ececf0;
    }

    .location-panel li:last-child {
        border-bottom: 0;
    }
}

/* Stack all pricing cards on narrow screens for comfortable reading. */
@media (max-width: 540px) {
    .price-table {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .price-row {
        min-height: 320px;
        padding: 28px 22px;
    }
}

/* Match Location Advantages with the navy textured project sections. */
.location-advantages {
    color: #fff;
    background-color: var(--dark);
    background-image: repeating-linear-gradient(45deg, transparent, transparent 13px, #ffffff08 13px, #ffffff08 14px),
        repeating-linear-gradient(-45deg, transparent, transparent 13px, #ffffff08 13px, #ffffff08 14px);
}

.location-advantages .section-heading .eyebrow {
    color: var(--gold);
}

.location-advantages .section-heading h2,
.location-advantages .section-heading em {
    color: #fff;
}

/* Active location tab uses the project gold with navy text and icon. */
.location-tab.is-active,
.location-tab.is-active:hover,
.location-tab.is-active:focus-visible {
    border-color: var(--gold);
    color: var(--dark);
    background: var(--gold);
}

.location-tab.is-active i {
    color: var(--dark);
}

/* Contact section follows the light, textured About Development treatment. */
.contact {
    --cream: #ffffff;
    --ink: var(--dark);
    --muted: #636575;
    --line: #dddfe6;
    color: var(--dark);
    background-color: #fdfdfc;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 13px, #181a2c04 13px, #181a2c04 14px),
        repeating-linear-gradient(-45deg, transparent, transparent 13px, #181a2c04 13px, #181a2c04 14px);
}

.contact .eyebrow,
.contact h2,
.contact em {
    color: var(--dark);
}

.contact em {
    text-decoration-color: var(--gold);
}

.contact .enquiry-form {
    padding: 30px 32px;
    border: 1px solid #e0e2e8;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 30px #181a2c0c;
}

.contact .enquiry-form > label:not(.consent) {
    position: relative;
    display: block;
}

.contact .enquiry-form .form-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.contact .enquiry-form input:not([type=checkbox]),
.contact .enquiry-form textarea {
    color: var(--dark);
    border-bottom-color: #cfd2db;
}

.contact .enquiry-form input:not([type=checkbox]):focus,
.contact .enquiry-form textarea:focus {
    border-bottom-color: var(--dark);
    outline: 0;
}

.contact .enquiry-form .consent {
    color: #636575;
}

.contact .enquiry-form > .button {
    width: 100%;
    margin-top: 4px;
    justify-content: center;
    border-color: var(--gold);
    color: var(--dark);
    background: var(--gold);
    font-size: 11px;
    font-weight: 700;
}

.contact .enquiry-form > .button:hover {
    background: #e6c906;
}

/* Sticky mobile contact bar with direct call, enquiry and WhatsApp actions. */
.mobile-cta > * {
    width: 33.3333%;
    gap: 5px;
    min-height: 58px;
    border-top: 1px solid #ffffff30;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .8px;
}

.mobile-cta > * i {
    font-size: 16px;
}

.mobile-cta-call {
    color: #fff;
    background: var(--dark) !important;
}

.mobile-cta-enquire {
    color: var(--dark);
    background: var(--gold) !important;
}

.mobile-cta-whatsapp {
    color: #fff;
    background: #168b4b !important;
}

.mobile-cta-call:hover,
.mobile-cta-enquire:hover,
.mobile-cta-whatsapp:hover {
    filter: brightness(.94);
}

/* White wipe layer used by the GSAP image reveal animation. */
.gsap-image-frame {
    position: relative;
}

.gsap-image-wipe {
    position: absolute;
    inset: 0;
    z-index: 6;
    display: block;
    background: #fff;
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left center;
}

/* Keep the brand prominent on responsive header layouts. */
@media (max-width: 800px) {
    .header .brand {
        width: 170px;
    }

    .mobile-cta {
        height: 50px;
    }

    .mobile-cta > * {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        padding: 0 8px;
        gap: 7px;
    }

    .mobile-cta > * i {
        font-size: 15px;
    }
}

/* Center the contact introduction beside the form without a card border. */
.contact {
    align-items: center;
}

.contact > div:first-child h2 {
    max-width: 560px;
    font-size: 32px;
    line-height: 1.08;
}

.contact > div:first-child h2 em {
    text-decoration: none;
}

.contact > div:first-child > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.7;
}

.contact .form-heading {
    margin: 0 0 22px;
    color: var(--dark);
    font-size: 24px;
    line-height: 1.2;
}

#enquiry-dialog .form-heading {
    display: none;
}

.contact .enquiry-form {
    border: 0;
    background: transparent;
    box-shadow: none;
}

@media (max-width: 800px) {
    .contact > div:first-child h2 {
        font-size: 23px;
    }

    .contact .enquiry-form {
        padding: 24px 0 0;
    }
}

/* Consistent Gotham typography for the requested sections. */
.highlights .eyebrow,
.highlights h2,
.highlights h3,
.amenities .eyebrow,
.amenities h2,
.amenities h3,
.location-advantages .eyebrow,
.location-advantages h2,
.location-advantages h3 {
    font-family: var(--font-family);
    font-weight: 500;
    line-height: 1.3;
}

.highlights .eyebrow,
.amenities .eyebrow,
.location-advantages .section-heading .eyebrow {
    letter-spacing: 1px;
    font-size: 15px;
}

/* =========================================================
   2026 editorial redesign — distinct section personalities
   ========================================================= */
/* Disabled to restore the previously approved visual design. */
@media not all {
:root {
    --navy-950: #111322;
    --navy-900: #181a2c;
    --navy-800: #25283f;
    --paper: #f5f2ea;
    --white: #ffffff;
    --accent: #fede07;
    --soft-line: rgba(24, 26, 44, .14);
    --section-pad: clamp(72px, 8vw, 124px) max(5vw, 24px);
}

body {
    background: var(--navy-950);
}

.section {
    position: relative;
    padding: var(--section-pad);
    overflow: hidden;
}

.section > * {
    position: relative;
    z-index: 1;
}

.section-heading {
    margin-bottom: clamp(34px, 5vw, 64px);
}

.section-heading h2,
.overview h2,
.contact h2 {
    font-size: clamp(34px, 4.4vw, 62px);
    letter-spacing: -.045em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .2em !important;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: currentColor;
}

/* Hero — quieter glass card with stronger landscape presence. */
.hero {
    min-height: min(900px, 100svh);
}

.hero-image {
    filter: saturate(.86) contrast(1.04);
}

.hero-shade {
    background: linear-gradient(90deg, rgba(11, 13, 26, .86) 0%, rgba(11, 13, 26, .34) 47%, rgba(11, 13, 26, .08) 78%),
        linear-gradient(0deg, rgba(11, 13, 26, .62), transparent 42%);
}

.hero-content {
    align-items: flex-end;
    padding: 140px max(5vw, 24px) 86px;
}

.banner-card {
    width: min(440px, 100%);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 2px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 32px 90px rgba(0,0,0,.35);
    backdrop-filter: blur(16px);
}

.banner-heading {
    padding: 27px 30px 20px;
    text-align: left;
    background: none;
}

.hero .banner-heading h1 {
    font-size: clamp(31px, 3vw, 44px);
    letter-spacing: -.04em;
}

.banner-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 14px 28px;
    border: 0;
}

.banner-features li {
    padding: 10px 8px 10px 0;
    font-size: 12px;
    border: 0;
}

.banner-pricing {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 6px 20px;
    padding: 22px 28px 27px;
    text-align: left;
}

.banner-pricing > strong {
    grid-column: 1;
    font-size: 23px;
}

.hero .banner-pricing .button {
    grid-column: 2;
    grid-row: 1 / 3;
    width: auto;
    margin: 0;
    padding: 16px 18px;
    border-radius: 0;
}

/* Quick facts — floating index strip. */
.quick-facts {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 48px));
    margin: -34px auto 0;
    border: 0;
    background: var(--accent);
    color: var(--navy-950);
    box-shadow: 0 22px 50px rgba(0,0,0,.2);
}

.quick-facts > div {
    position: relative;
    padding: 25px 28px;
    border-color: rgba(24,26,44,.2);
}

.quick-facts small { color: rgba(24,26,44,.64); }

/* Overview — oversized image and inset reading panel. */
.overview {
    min-height: 720px;
    grid-template-columns: minmax(320px, .75fr) minmax(480px, 1.25fr);
    gap: 0;
    background: var(--paper);
}

.overview::after {
    content: '59';
    position: absolute;
    right: 2vw;
    bottom: -8vw;
    z-index: 0;
    color: rgba(24,26,44,.035);
    font-size: clamp(220px, 32vw, 520px);
    font-weight: 700;
    line-height: .8;
}

.overview-copy {
    z-index: 3;
    align-self: center;
    margin-right: -72px;
    padding: clamp(34px, 5vw, 68px);
    background: var(--white);
    box-shadow: 0 24px 70px rgba(24,26,44,.12);
}

.overview-image {
    height: 620px;
}

.overview-image::before { display: none; }
.overview-image img { height: 100%; }

/* Highlights — numbered horizontal editorial cards. */
.highlights {
    background: var(--navy-950);
}

.highlights::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 15%, rgba(254,222,7,.13), transparent 28%);
}

.highlight-grid {
    counter-reset: highlight;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.12);
}

.highlight-grid article {
    counter-increment: highlight;
    min-height: 250px;
    padding: 32px;
    border: 0;
    background: var(--navy-950);
}

.highlight-grid article::before {
    content: '0' counter(highlight);
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(255,255,255,.24);
    font-size: 12px;
    letter-spacing: .16em;
}

.highlight-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 42px;
    border: 1px solid rgba(254,222,7,.55);
    border-radius: 50%;
    background: transparent;
}

.highlight-grid h3 { font-size: 20px; }

/* Pricing — four clean product cards. */
.pricing {
    background: var(--accent);
    color: var(--navy-950);
}

.pricing .eyebrow,
.pricing h2 { color: var(--navy-950); }

.price-table {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    background: transparent;
}

.price-head { display: none; }

.price-row {
    display: flex;
    min-height: 330px;
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
    border: 0;
    background: var(--white);
    color: var(--navy-950);
    box-shadow: none;
}

.price-row > strong:first-child {
    min-height: 60px;
    font-size: 21px;
}

.price-row > span {
    margin-top: 32px;
    font-size: 28px;
    font-weight: 700;
}

.price-row > strong:nth-child(3) {
    margin-top: 8px;
    color: #696b77;
    font-size: 13px;
}

.price-row .text-button {
    margin-top: auto;
    color: var(--navy-950);
    border-color: var(--navy-950);
}

/* Amenities — compact pill-like grid on warm paper. */
.amenities {
    background: var(--paper);
}

.amenities .heading-row { justify-content: center; text-align: center; }

.amenity-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0;
    background: transparent;
}

.amenity-list > span {
    min-height: 132px;
    padding: 20px;
    border: 1px solid var(--soft-line);
    border-radius: 0;
    background: rgba(255,255,255,.58);
    box-shadow: none;
}

.amenity-list i {
    color: var(--navy-950);
    background: var(--accent);
}

/* Floor plans — staggered gallery on navy. */
.floor-plan { background: var(--navy-900); }

.floor-plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.floor-card {
    border: 0;
    background: transparent;
}

.floor-card:nth-child(even) { transform: translateY(56px); }

.floor-card-media {
    height: 390px;
    padding: 28px;
    background: #fff;
}

.floor-card > h3 {
    justify-content: flex-start;
    padding: 18px 0;
    color: #fff;
    background: transparent;
    font-size: 16px;
    text-align: left;
}

/* Gallery — asymmetric mosaic. */
.gallery { background: var(--white); }

.gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 165px;
    gap: 14px;
    max-width: 1300px;
}

.gallery-thumb {
    grid-column: span 4;
    height: 100%;
    border: 0;
    border-radius: 0;
    aspect-ratio: auto;
    box-shadow: none;
}

.gallery-thumb:nth-child(1),
.gallery-thumb:nth-child(6) { grid-column: span 6; grid-row: span 2; }
.gallery-thumb:nth-child(2),
.gallery-thumb:nth-child(5) { grid-column: span 3; }
.gallery-thumb:nth-child(3),
.gallery-thumb:nth-child(4) { grid-column: span 3; }

/* Location — map/list split as a single dark dashboard. */
.location-advantages {
    display: grid;
    grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.1fr);
    gap: 0 36px;
    background: var(--navy-950);
}

.location-advantages .section-heading {
    grid-column: 1 / -1;
    text-align: left;
}

.location-advantages .location-map {
    grid-column: 1;
    grid-row: 2 / 5;
    height: 100%;
    min-height: 430px;
    margin: 0;
    border: 0;
    border-radius: 0;
}

.location-tabs,
.location-panels {
    grid-column: 2;
    width: 100%;
}

.location-tabs { align-self: end; }
.location-tab { flex: 1 1 auto; border-radius: 0; }
.location-panels { border-radius: 0; }
.location-enquiry { grid-column: 2; }

/* Contact — framed concierge form. */
.contact {
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(48px, 8vw, 120px);
    background: var(--paper);
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 34%;
    height: 8px;
    background: var(--accent);
}

.contact .contact-address {
    padding-top: 22px;
    border-top: 1px solid var(--soft-line);
}

.contact .enquiry-form {
    padding: clamp(30px, 4vw, 52px);
    border: 1px solid var(--soft-line);
    background: var(--white);
}

.contact .enquiry-form input:not([type=checkbox]) {
    min-height: 54px;
    padding: 12px 0;
}

footer {
    border-top: 1px solid rgba(255,255,255,.12);
    background: var(--navy-950);
}

@media (max-width: 1000px) {
    .highlight-grid { grid-template-columns: repeat(2, 1fr); }
    .price-table { grid-template-columns: repeat(2, 1fr); }
    .amenity-list { grid-template-columns: repeat(3, 1fr); }
    .location-advantages { grid-template-columns: 1fr; }
    .location-advantages .location-map,
    .location-tabs,
    .location-panels,
    .location-enquiry { grid-column: 1; grid-row: auto; }
    .location-advantages .location-map { height: 360px; min-height: 0; margin-bottom: 24px; }
}

@media (max-width: 800px) {
    .overview { grid-template-columns: 1fr; }
    .overview-copy { margin: 0 0 -42px; padding: 34px 26px; }
    .overview-image { height: 440px; }
    .quick-facts { grid-template-columns: repeat(2, 1fr); }
    .amenity-list { grid-template-columns: repeat(2, 1fr); }
    .contact { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .gallery-thumb,
    .gallery-thumb:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-thumb:nth-child(1) { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
    .hero-content { padding: 100px 16px 70px; }
    .banner-heading { padding: 22px 20px 16px; }
    .banner-features { grid-template-columns: 1fr; padding: 10px 20px; }
    .banner-pricing { grid-template-columns: 1fr; padding: 18px 20px 22px; }
    .hero .banner-pricing .button { grid-column: 1; grid-row: auto; width: 100%; margin-top: 12px; }
    .quick-facts { width: calc(100% - 24px); margin-top: -24px; }
    .quick-facts > div { padding: 18px 15px; }
    .quick-facts strong { font-size: 13px; }
    .highlight-grid { grid-template-columns: 1fr; }
    .highlight-grid article { min-height: 210px; }
    .price-table { grid-template-columns: 1fr; }
    .price-row { min-height: 285px; }
    .amenity-list > span { min-height: 120px; }
    .floor-plan-grid { grid-template-columns: 1fr; }
    .floor-card:nth-child(even) { transform: none; }
    .floor-card-media { height: 300px; padding: 18px; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 230px; }
    .gallery-thumb:nth-child(n) { grid-column: 1; }
    .location-tabs { justify-content: flex-start; }
}
}
