:root {
    --navy-950: #3A2A22;
    --navy-900: #4A372C;
    --navy-800: #5A4434;
    --navy-700: #6B5240;
    --ivory: #FAF7F0;
    --ivory-dim: #F2ECDD;
    --sand: #EDE6D5;
    --gold: #D7B06A;
    --gold-bright: #E8C78A;
    --gold-deep: #B8925A;
    --ink: #241B17;
    --ink-soft: #8A7A6E;
    --bg: #FAF7F2;
    --headline: #241B17;
    --body-text: #666666;
    --body-text-soft: #999999;
    --ease-luxe: cubic-bezier(.22, 1, .36, 1);
    --max-w: 1240px
}

*,*:before,*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

* {
    cursor: none;
    min-width: 0 /* FIX: prevents flex/grid children forcing horizontal overflow */
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden /* FIX: mobile right-side gap */
}

body {
    font-family: Inter,sans-serif;
    background: var(--bg);
    color: var(--body-text);
    overflow-x: hidden;
    width: 100%;
    max-width: 100%; /* FIX */
    -webkit-font-smoothing: antialiased;
    line-height: 1.5
}

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

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

button {
    font-family: inherit;
    border: none;
    background: none;
    color: inherit
}

input,textarea,select {
    font-family: inherit;
    font-size: inherit
}

::selection {
    background: #d7b06a4d;
    color: var(--ivory)
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-bright)
}

.container {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px
    }
}

.section {
    position: relative;
    padding: 50px 0
}

@media (min-width: 768px) {
    .section {
        padding: 70px 0
    }
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--gold)
}

.eyebrow-row {
    display: flex;
    align-items: center;
    gap: 8px
}

.eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--gold)
}

.eyebrow-line-sm {
    width: 32px
}

.section-head {
    max-width: max-content
}

.section-title {
    font-family: Fraunces,serif;
    font-size: clamp(1rem,3.5vw,2.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--headline);
    margin-top: 20px
}

.section-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--body-text);
    margin-top: 20px
}

/* Dark sections (hero/footer/final CTA family) keep light headline & body text */
.final-cta-card .section-title {
    color: var(--ivory)
}

.final-cta-card .section-desc {
    color: #faf7f0b3
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 9999px;
    background: var(--gold);
    padding: 14px 28px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--navy-950);
    transition: all .5s var(--ease-luxe)
}

.btn-gold:hover {
    background: var(--gold-bright);
    box-shadow: 0 0 40px -8px #d7b06a99;
    transform: translateY(-2px)
}

.btn-gold:disabled {
    opacity: .6;
    cursor: none
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 9999px;
    border: 1px solid rgba(215,176,106,.5);
    padding: 14px 28px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--headline);
    transition: all .5s var(--ease-luxe)
}

.btn-ghost:hover {
    border-color: var(--gold);
    background: #d7b06a1a
}

/* Hero sits on a dark photo, so its ghost button needs light text */
.hero-actions .btn-ghost {
    color: var(--ivory)
}

.btn-full {
    width: 100%
}

.cursor-dot {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    transform: translate(-50%,-50%);
    transition: opacity .0s;
    opacity: 0
}

.cursor-ring {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(215,176,106,.5);
    pointer-events: none;
    transform: translate(-50%,-50%);
    transition: width .3s var(--ease-luxe),height .3s var(--ease-luxe),opacity .3s,background-color .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0
}

.cursor-ring span {
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--gold);
    white-space: nowrap
}

@media (max-width: 768px) {
    .urgency-section {display:none;}
    .hero {    min-height: 84vh!important;}
    .hero-bg-img {background-image: url(mob.webp) !important; background-size: contain !important;}
    
    * {
        cursor: auto
    }
    a,button,input,textarea,select {
        cursor: pointer
    }
    .cursor-dot,.cursor-ring {
        display: none
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-luxe),transform 1s var(--ease-luxe);
    will-change: opacity,transform
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0)
}

.reveal-delay-1 {
    transition-delay: .1s
}

.reveal-delay-2 {
    transition-delay: .2s
}

.reveal-delay-3 {
    transition-delay: .3s
}

.reveal-delay-4 {
    transition-delay: .4s
}

@keyframes slow-zoom {
    0% {
        transform: scale(1)
    }
    to {
        transform: scale(1.12)
    }
}

.animate-slow-zoom {
    animation: slow-zoom 20s ease-out forwards
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }
    to {
        background-position: 200% center
    }
}

.text-shimmer {
    background: linear-gradient(90deg,#d7b06a,#e8c78a 30%,#f5e8c9,#e8c78a 70%,#d7b06a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite
}

@keyframes float {
    0%,to {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-12px)
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 #d7b06a66
    }
    70% {
        box-shadow: 0 0 0 18px #d7b06a00
    }
    to {
        box-shadow: 0 0 #d7b06a00
    }
}

.pulse-ring {
    animation: pulse-ring 2.5s ease-out infinite
}

@keyframes bounce {
    0%,to {
        transform: translateY(0)
    }
    50% {
        transform: translateY(6px)
    }
}

.animate-bounce {
    animation: bounce 1.5s ease-in-out infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.animate-spin {
    animation: spin .8s linear infinite
}

.gold-border {
    position: relative
}

.gold-border:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,#d7b06a80,#d7b06a0d 40%,#d7b06a0d 60%,#d7b06a4d);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none
}

.header {
    background: #3a2a22;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 10px 0;
    width: 100%; /* FIX: keep header from overshooting on mobile */
    max-width: 100vw;
    transition: all .7s var(--ease-luxe)
}

.header.scrolled {
    background: #3a2a22d9;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(215,176,106,.1);
    padding: 12px 0
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0 /* FIX: allow logo text to shrink instead of pushing width */
}

.logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(215,176,106,.4);
    font-family: Fraunces,serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold)
}

.logo-text {
    font-family: Fraunces,serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--ivory);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis /* FIX: long project name won't force overflow on small screens */
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex
    }
}

.nav-link {
    position: relative;
    font-size: .875rem;
    font-weight: 500;
    color: #faf7f0b3;
    transition: color .3s
}

.nav-link:hover {
    color: var(--ivory)
}

.nav-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--gold);
    transition: width .5s var(--ease-luxe)
}

.nav-link:hover .nav-underline {
    width: 100%
}

.header-actions {
    display: none;
    align-items: center;
    gap: 16px
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex
    }
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    font-weight: 500;
    color: #faf7f0b3;
    transition: color .3s
}

.header-phone:hover {
    color: var(--gold)
}

.mobile-toggle {
    display: block;
    color: var(--ivory);
    flex-shrink: 0 /* FIX */
}

@media (min-width: 1024px) {
    .mobile-toggle {
        display: none
    }
}

.mobile-menu {
    display: none;
    margin-top: 16px
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none!important
    }
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-radius: 16px;
    border: 1px solid rgba(215,176,106,.1);
    background: #4a372cf2;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 16px
}

.mobile-link {
    border-radius: 8px;
    padding: 10px 12px;
    font-size: .875rem;
    font-weight: 500;
    color: #faf7f0cc;
    transition: all .3s
}

.mobile-link:hover {
    background: #d7b06a1a;
    color: var(--gold)
}

.mt-2 {
    margin-top: 8px
}

.hero {
    position: relative;
    min-height: 102vh;
    overflow: hidden;
    width: 100%; /* FIX */
    max-width: 100vw; /* FIX */
    margin-top: 96px;
}
a.logo img {
    max-width: 80px !important;
}
.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(skb.webp);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
}

.hero-overlay-v {
    position: absolute;
    display: none!important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom,#3a2a22b3,#3a2a2299,#3a2a22)
}

.hero-overlay-h {
    display: none!important;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right,rgba(58,42,34,.8),transparent,rgba(58,42,34,.4))
}

.hero-content {
    display: none!important;
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 112px 24px 80px
}

@media (min-width: 768px) {
    .hero-content {
        padding: 150px 40px 80px
    }
}

.hero-text {
    max-width: 768px
}

.hero-title {
    font-family: Fraunces,serif;
    font-size: clamp(2rem,7vw,4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--ivory);
    margin-top: 24px
}

.hero-desc {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #faf7f0b3;
    margin-top: 28px;
    max-width: 576px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 36px
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    max-width: 640px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(215,176,106,.15)
}

.stat-val {
    font-family: Fraunces,serif;
    font-size: clamp(1.875rem,4vw,2.5rem);
    font-weight: 600;
    color: var(--gold)
}

.stat-label {
    margin-top: 4px;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: #faf7f080
}

.hero-loc-badge {
    position: absolute;
    bottom: 32px;
    left: 24px;
    z-index: 10;
    display: none;
    align-items: center;
    gap: 8px;
    color: #faf7f080
}

.hero-loc-badge svg {
    color: var(--gold)
}

.hero-loc-badge span {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .22em
}

@media (min-width: 768px) {
    .hero-loc-badge {
        display: flex;
        left: 40px
    }
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    right: 24px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #faf7f066;
    transition: color .3s
}

.hero-scroll:hover {
    color: var(--gold)
}

.hero-scroll span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .22em
}

@media (min-width: 768px) {
    .hero-scroll {
        right: 40px
    }
}

.overview-grid {
    display: grid;
    gap: 40px;
    margin-top: 56px
}

@media (min-width: 1024px) {
    .overview-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center
    }
}

.floor-plate-card {
    border-radius: 24px;
    background: linear-gradient(to bottom right,var(--navy-900),var(--navy-950));
    padding: 32px
}

@media (min-width: 768px) {
    .floor-plate-card {
        padding: 48px
    }
}

.floor-plate-label {
    text-align: center;
    margin-bottom: 24px
}

.floor-diagram {
    position: relative;
    margin: 0 auto;
    aspect-ratio: 1;
    max-width: 384px
}

.fd-outline {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 16px;
    border: 2px solid rgba(215,176,106,.3)
}

.fd-cross-h {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 1px;
    width: 100%;
    transform: translateY(-50%);
    background: #d7b06a26
}

.fd-cross-v {
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    transform: translate(-50%);
    background: #d7b06a26
}

.fd-flat {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 44%;
    height: 44%;
    border-radius: 12px;
    border: 1px solid rgba(215,176,106,.4);
    background: #d7b06a0a;
    transition: background .5s
}

.fd-flat:hover {
    background: #d7b06a1a
}

.fd-nw {
    top: 8px;
    left: 8px
}

.fd-ne {
    top: 8px;
    right: 8px
}

.fd-sw {
    bottom: 8px;
    left: 8px
}

.fd-se {
    bottom: 8px;
    right: 8px
}

.fd-type {
    font-family: Fraunces,serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gold)
}

.fd-sub {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: #faf7f066
}

.fd-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 64px;
    height: 64px;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(215,176,106,.3);
    background: var(--navy-950);
    text-align: center;
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: #faf7f066;
    line-height: 1.4
}

.floor-plate-note {
    margin-top: 24px;
    text-align: center;
    font-size: .875rem;
    color: #faf7f080
}

.features-grid {
    display: grid;
    gap: 20px
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr 1fr
    }
}

.feature-card {
    border-radius: 16px;
    border: 1px solid rgba(36,27,23,.08);
    background: rgba(36,27,23,.02);
    padding: 24px;
    transition: all .5s var(--ease-luxe)
}

.feature-card:hover {
    border-color: #d7b06a4d;
    background: rgba(215,176,106,.07)
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #d7b06a1a;
    color: var(--gold);
    margin-bottom: 16px;
    transition: background .5s
}

.feature-card:hover .feature-icon {
    background: #d7b06a33
}

.feature-title {
    font-family: Fraunces,serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--headline)
}

.feature-desc {
    margin-top: 8px;
    font-size: .875rem;
    line-height: 1.6;
    color: var(--body-text)
}

.residences-grid {
    display: grid;
    gap: 32px;
    margin-top: 56px
}

@media (min-width: 1024px) {
    .residences-grid {
        grid-template-columns: 1fr 1fr 1fr
    }
}

.residence-card {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(36,27,23,.08);
    background: rgba(36,27,23,.02);
    transition: all .5s var(--ease-luxe)
}

.residence-card:hover {
    border-color: #d7b06a4d
}

.residence-img-wrap {
    position: relative;
    height: 256px;
    overflow: hidden
}

.residence-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-luxe)
}

.residence-card:hover .residence-img-wrap img {
    transform: scale(1.05)
}

.residence-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top,var(--navy-950),rgba(58,42,34,.3),transparent)
}

.residence-badge {
    position: absolute;
    bottom: 16px;
    left: 24px;
    border-radius: 9999px;
    background: #d7b06ae6;
    padding: 4px 12px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--navy-950)
}

.residence-body {
    padding: 28px
}

.residence-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
    font-size: .875rem;
    color: var(--body-text)
}

.residence-meta span {
    display: flex;
    align-items: center;
    gap: 6px
}

.residence-meta svg {
    color: var(--gold)
}

.residence-price {
    margin-top: 20px;
    font-family: Fraunces,serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold)
}

.residence-features {
    margin-top: 20px;
    display: grid;
    gap: 10px
}

@media (min-width: 640px) {
    .residence-features {
        grid-template-columns: 1fr 1fr
    }
}

.residence-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .875rem;
    color:#333;
    list-style: none
}
.reveal.gold-border.final-cta-card.in-view li {
    color: #fff;
}
.residence-features svg {
    flex-shrink: 0;
    color: var(--gold)
}

.residence-btn {
    margin-top: 28px;
    width: 100%
}

.residences-note {
    margin-top: 32px;
    text-align: center;
    font-size: .75rem;
    color: var(--body-text-soft)
}

.gallery-head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px
}

.gallery-nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
    margin-top: 20px;
}

.gallery-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(215,176,106,.3);
    color: var(--gold);
    transition: background .3s
}

.gallery-btn:hover {
    background: #d7b06a1a
}

.gallery-viewport {
    margin-top: 48px;
    overflow: hidden
}

.gallery-track {
    display: flex;
    transition: transform .7s var(--ease-luxe)
}

.gallery-slide {
    position: relative;
    height: 60vh;
    min-height: 420px;
    width: 100%;
    flex-shrink: 0
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.gallery-slide-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top,var(--navy-950),rgba(58,42,34,.2),transparent)
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 40px
}

.gallery-caption h3 {
    font-family: Fraunces,serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ivory)
}

.gallery-caption p {
    margin-top: 4px;
    font-size: .875rem;
    color: var(--gold)
}

@media (min-width: 768px) {
    .gallery-caption h3 {
        font-size: 1.875rem
    }
}

.gallery-dots {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 10px
}

.gallery-dot {
    height: 6px;
    width: 6px;
    border-radius: 9999px;
    background: rgba(36,27,23,.15);
    transition: all .5s;
    border: none;
    padding: 0
}

.gallery-dot.active {
    width: 32px;
    background: var(--gold)
}

.amenities-section {
    position: relative
}

.amenities-bg {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom,var(--bg),rgba(215,176,106,.08),var(--bg))
}

.amenities-content {
    position: relative
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
    margin-top: 56px
}

@media (min-width: 640px) {
    .amenities-grid {
        grid-template-columns: repeat(3,1fr)
    }
}

@media (min-width: 768px) {

    .amenities-grid {
        grid-template-columns: repeat(5,1fr)
    }
}

.amenity-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    border: 1px solid rgba(36,27,23,.08);
    background: rgba(36,27,23,.02);
    padding: 24px;
    text-align: center;
    transition: all .5s var(--ease-luxe)
}

.amenity-card:hover {
    border-color: #d7b06a4d;
    background: #d7b06a0f
}

@media (min-width: 768px) {
    .amenity-card {
        padding: 32px
    }
}

.amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #d7b06a1a;
    color: var(--gold);
    transition: all .5s
}

.amenity-card:hover .amenity-icon {
    transform: scale(1.1);
    background: #d7b06a33
}

.amenity-card span {
    font-size: .875rem;
    font-weight: 500;
    color: var(--headline);
    transition: color .5s
}

.amenity-card:hover span {
    color: var(--headline)
}

.location-grid {
    display: grid;
    gap: 32px;
    margin-top: 56px
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1fr
    }
}

.location-map {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-radius: 24px
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.location-map-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #3a2a2266
}

.location-map-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    background: #3a2a22cc;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 8px 16px
}

.location-map-badge svg {
    color: var(--gold)
}

.location-map-badge span {
    font-size: .875rem;
    font-weight: 500;
    color: var(--ivory)
}

.pois-grid {
    display: grid;
    gap: 12px
}

@media (min-width: 640px) {
    .pois-grid {
        grid-template-columns: 1fr 1fr
    }
}

.poi-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border-radius: 16px;
    border: 1px solid rgba(36,27,23,.08);
    background: rgba(36,27,23,.02);
    padding: 20px;
    transition: all .5s
}

.poi-card:hover {
    border-color: #d7b06a4d;
    background: rgba(215,176,106,.07)
}

.poi-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #d7b06a1a;
    color: var(--gold)
}

.poi-text {
    min-width: 0
}

.poi-label {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: .875rem;
    font-weight: 500;
    color: var(--headline)
}

.poi-time {
    font-size: .75rem;
    color: var(--gold)
}

.about-grid {
    display: grid;
    gap: 48px;
    align-items: center
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr
    }
}

.about-img-col {
    position: relative
}

.about-img-wrap {
    overflow: hidden;
    border-radius: 24px
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-badge {
    position: absolute;
    bottom: -24px;
    right: -8px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid rgba(215,176,106,.2);
    background: #4a372ce6;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    max-width: calc(100% - 16px) /* FIX: negative right offset can push element past viewport on mobile */
}

@media (min-width: 768px) {
    .about-badge {
        right: -24px
    }
}

.about-badge svg {
    color: var(--gold)
}

.about-badge-title {
    font-family: Fraunces,serif;
    font-size: .875rem;
    font-weight: 600;
    color: var(--ivory)
}

.about-badge-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: #faf7f080
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px
}

@media (min-width: 640px) {
    .about-stats {
        grid-template-columns: repeat(4,1fr)
    }
}

.about-stats>div svg {
    color: var(--gold);
    margin-bottom: 8px
}

.about-stat-val {
    font-family: Fraunces,serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--headline)
}

.about-stat-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--body-text-soft)
}

.urgency-section {
    position: relative;
    padding: 48px 0
}

.urgency-card {
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(to right,var(--navy-900),var(--navy-800),var(--navy-900));
    padding: 24px
}

@media (min-width: 768px) {
    .urgency-card {
        padding: 24px 40px
    }
}

.urgency-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

@media (min-width: 768px) {
    .urgency-inner {
        flex-direction: row
    }
}

.urgency-left {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%; /* FIX: was 70% causing awkward layout/overflow with content on mobile */
}

@media (min-width: 768px) {
    .urgency-left {
        width: 70%
    }
}

.urgency-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #d7b06a26;
    color: var(--gold)
}

.urgency-title {
    font-family: Fraunces,serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ivory)
}

.urgency-sub {
    font-size: .875rem;
    color: #faf7f08c
}

.urgency-right {
    text-align: center
}

@media (min-width: 768px) {
    .urgency-right {
        text-align: right
    }
}

.urgency-price {
    font-family: Fraunces,serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold)
}

.urgency-price-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: #faf7f073
}

.faq-list {
    max-width: 768px;
    margin: 48px auto 0
}

.faq-item {
    border-bottom: 1px solid rgba(36,27,23,.1)
}

.faq-q {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    text-align: left
}

.faq-q span:first-child {
    font-family: Fraunces,serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--headline)
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(215,176,106,.3);
    color: var(--gold);
    transition: transform .3s
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

.faq-a-wrap {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows .5s var(--ease-luxe),opacity .5s var(--ease-luxe)
}

.faq-item.open .faq-a-wrap {
    grid-template-rows: 1fr;
    opacity: 1
}

.faq-a-inner {
    overflow: hidden
}

.faq-a-inner p {
    padding-bottom: 24px;
    padding-right: 48px;
    font-size: .875rem;
    line-height: 1.7;
    color: var(--body-text)
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(to bottom right,var(--navy-900),var(--navy-950));
    padding: 32px
}

@media (min-width: 768px) {
    .final-cta-card {
        padding: 56px
    }
}

@media (min-width: 1024px) {
    .final-cta-card {
        padding: 80px
    }
}

.final-cta-glow-1 {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background: #d7b06a1a;
    filter: blur(80px);
    pointer-events: none
}

.final-cta-glow-2 {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    background: #d7b06a0d;
    filter: blur(80px);
    pointer-events: none
}

.final-cta-grid {
    position: relative;
    display: grid;
    gap: 48px;
    align-items: center
}

@media (min-width: 1024px) {
    .final-cta-grid {
        grid-template-columns: 1fr 1fr
    }
}

.final-cta-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px
}

.fcs-val {
    font-family: Fraunces,serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold)
}

.fcs-label {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: #faf7f073
}

.final-cta-form-card {
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background: #ffffff08;
    padding: 24px
}

@media (min-width: 768px) {
    .final-cta-form-card {
        padding: 32px
    }
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.form-row {
    display: grid;
    gap: 16px
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr
    }
}

.label-luxe {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: #d7b06acc
}

.input-luxe {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.1);
    background: #ffffff08;
    padding: 12px 16px;
    font-size: .875rem;
    color: var(--ivory);
    transition: border-color .3s,box-shadow .3s
}

.input-luxe::placeholder {
    color: var(--ink-soft)
}

.input-luxe:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 1px #d7b06a4d
}

.input-luxe option {
    background: var(--navy-900);
    color: var(--ivory)
}

.textarea-luxe {
    resize: none
}

.form-disclaimer {
    text-align: center;
    font-size: 11px;
    color: #faf7f059
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 48px 0;
    text-align: center
}

.form-success-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #d7b06a26;
    color: var(--gold)
}

.form-success h3 {
    font-family: Fraunces,serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ivory)
}

.form-success p {
    max-width: 384px;
    font-size: .875rem;
    color: #faf7f099
}

.form-error {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 12px;
    border: 1px solid rgba(239,68,68,.3);
    background: #ef44441a;
    padding: 12px 16px;
    font-size: .875rem;
    color: #fca5a5
}

.footer {
    position: relative;
    border-top: 1px solid rgba(215,176,106,.1);
    background: var(--navy-950);
    padding: 64px 0;
    width: 100%; /* FIX */
    max-width: 100vw /* FIX */
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr
    }
}

.footer-desc {
    margin-top: 16px;
    max-width: 384px;
    font-size: .875rem;
    line-height: 1.7;
    color: #faf7f080
}

.footer-social {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap /* FIX: prevent icon row from overflowing on very narrow screens */
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    color: #faf7f080;
    transition: all .3s
}

.footer-social a:hover {
    border-color: #d7b06a66;
    color: var(--gold)
}

.footer-contact {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: .875rem;
    color: #faf7f08c
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 8px
}

.footer-contact svg {
    color: var(--gold);
    flex-shrink: 0
}

.footer-links {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: .875rem
}

.footer-links a {
    color: #faf7f08c;
    transition: color .3s
}

.footer-links a:hover {
    color: var(--gold)
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    font-size: .75rem;
    color: #faf7f059
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between
    }
}

.footer-bottom a {
    transition: color .3s
}

.footer-bottom a:hover {
    color: var(--gold)
}

.sticky-cta {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translate(-50%);
    z-index: 40;
    transition: all .5s var(--ease-luxe);
    opacity: 0;
    transform: translate(-50%,80px);
    max-width: calc(100vw - 32px) /* FIX: keeps floating CTA from overflowing on narrow screens */
}

.sticky-cta.show {
    opacity: 1;
    transform: translate(-50%)
}

.sticky-cta .btn-gold {
    box-shadow: 0 25px 50px -12px #d7b06a33
}

.modal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px
}

.modal-overlay.open {
    display: flex
}

.modal-backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #3a2a22cc;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px)
}

.modal-panel {
    position: relative;
    z-index: 10;
    max-height: 90vh;
    width: 100%;
    max-width: 512px;
    overflow-y: auto;
    border-radius: 24px;
    background: linear-gradient(to bottom right,var(--navy-900),var(--navy-950));
    padding: 32px;
    box-shadow: 0 25px 50px -12px #00000080
}

@media (min-width: 768px) {
    .modal-panel {
        padding: 40px
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.1);
    color: #faf7f099;
    transition: all .3s
}

.modal-close:hover {
    border-color: #d7b06a66;
    color: var(--gold)
}

.modal-head {
    margin-bottom: 28px
}

.modal-title {
    font-family: Fraunces,serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ivory);
    margin-top: 16px
}

.modal-sub {
    margin-top: 8px;
    font-size: .875rem;
    color: #faf7f08c
}

.sticky-cta-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #3a2a22d9;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(215,176,106,.2);
    border-radius: 9999px;
    padding: 10px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.5)
}

.sticky-cta-text {
    display: none;
    font-size: .8rem;
    font-weight: 500;
    color: var(--ivory);
    white-space: nowrap
}

@media (min-width: 640px) {
    p.reveal.reveal-delay-2.in-view {
        font-size: 16px !important;
    }
    .reveal.reveal-delay-2.hero-desc.in-view {
        font-size: 13px;
    }
    .sticky-cta-text {
        display: inline;
        margin-left: 14px
    }
    .sticky-cta-inner {
        padding: 10px 10px 10px 24px
    }
}