﻿/*
 * ACS Bloom Blossom -- White / Dark-Blue / Gold Theme
 * public_html_ready/assets/css/style.css
 */

:root {
    --navy: #1a2c5b;
    --navy-dk: #0f1b3c;
    --navy-lt: #2a3f7e;
    --gold: #c9a84c;
    --gold-lt: #e8c96a;
    --gold-dk: #a07832;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light-blue: #eef2fb;
    --text: #1a2c5b;
    --muted: #5a6889;
    --lighter: #8895b3;
    --border: rgba(26, 44, 91, .12);
    --card-s: 0 4px 24px rgba(26, 44, 91, .10);
    --card-sh: 0 12px 48px rgba(26, 44, 91, .18);
    --r: 14px;
    --r-sm: 8px;
    --r-pill: 999px;
}

/* RESET */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Nunito', system-ui, sans-serif;
    background: #fff;
    color: var(--navy);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none
}

ul {
    list-style: none
}

.container {
    width: min(1200px, 94%);
    margin: 0 auto
}

/* TYPOGRAPHY */
.sec-kicker {
    display: inline-block;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gold-dk);
    background: rgba(201, 168, 76, .1);
    border: 1px solid rgba(201, 168, 76, .3);
    padding: 5px 14px;
    border-radius: var(--r-pill);
    margin-bottom: 14px
}

.sec-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--navy-dk);
    margin-bottom: 36px;
    line-height: 1.15
}

.gold-text {
    color: var(--gold)
}

.teal-text {
    color: var(--navy-lt)
}

/* BUTTONS */
.btn-gold {
    background: #1a6ed8;
    color: #fff;
    font-size: .84rem;
    font-weight: 900;
    padding: 12px 26px;
    border-radius: var(--r-pill);
    letter-spacing: .03em;
    white-space: nowrap;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(26, 110, 216, .35);
    display: inline-block;
    text-align: center
}

.btn-gold:hover {
    background: #1558b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(26, 110, 216, .45)
}

.btn-teal {
    background: var(--navy);
    color: #fff;
    font-size: .84rem;
    font-weight: 900;
    padding: 12px 26px;
    border-radius: var(--r-pill);
    transition: background .2s, transform .15s;
    display: inline-block;
    text-align: center
}

.btn-teal:hover {
    background: var(--navy-dk);
    transform: translateY(-2px)
}

.btn-outline-gold {
    border: 2px solid #1a6ed8;
    color: #1a6ed8;
    background: transparent;
    font-size: .88rem;
    font-weight: 800;
    padding: 11px 26px;
    border-radius: var(--r-pill);
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-outline-gold:hover {
    background: #1a6ed8;
    color: #fff
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 min(5%, 40px);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 16px rgba(26, 44, 91, .08);
    transition: height .3s
}

.navbar.scrolled {
    height: 58px
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--gold-lt);
    flex-shrink: 0
}

.logo-tt {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dk);
    line-height: 1.1
}

.logo-st {
    font-size: .58rem;
    font-weight: 700;
    color: var(--lighter);
    text-transform: uppercase;
    letter-spacing: .12em
}

.nav-links {
    display: flex;
    gap: 2px
}

@media(max-width:960px) {
    .nav-links {
        display: none
    }
}

.nav-link {
    color: var(--muted);
    font-weight: 700;
    font-size: .76rem;
    padding: 8px 11px;
    border-radius: 8px;
    transition: color .2s, background .2s
}

.nav-link:hover {
    color: var(--navy);
    background: var(--light-blue)
}

.hamburger {
    display: none;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 8px 11px;
    color: var(--navy);
    font-size: 1rem;
    align-items: center
}

@media(max-width:960px) {
    .hamburger {
        display: flex
    }
}

/* MOBILE MENU */
.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    pointer-events: none
}

.mob-menu.open {
    pointer-events: auto
}

.mob-menu-inner {
    position: absolute;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 85vw);
    background: #fff;
    padding: 28px 24px;
    overflow-y: auto;
    transition: right .3s ease;
    box-shadow: -8px 0 40px rgba(26, 44, 91, .15);
    border-left: 4px solid var(--gold)
}

.mob-menu.open .mob-menu-inner {
    right: 0
}

.mob-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(26, 44, 91, .45);
    opacity: 0;
    transition: opacity .3s;
    backdrop-filter: blur(4px)
}

.mob-menu.open .mob-backdrop {
    opacity: 1
}

.mob-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: .9rem
}

.mob-nav {
    display: flex;
    flex-direction: column;
    margin-top: 12px
}

.mob-link {
    padding: 13px 0;
    font-size: .95rem;
    font-weight: 700;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .2s
}

.mob-link:hover {
    color: var(--navy)
}

.mob-link i {
    color: var(--gold);
    width: 18px
}

/* HERO */
.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    grid-template-columns: 60fr 40fr;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0
}

.hero-bg picture,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top
}

.hero-ov {
    display: none
}

.hero-left {
    position: relative;
    z-index: 2;
    padding: 100px 0 80px max(5%, calc((100vw - 1200px)/2 + 24px))
}

.hero-left-hidden {
    display: none
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(201, 168, 76, .5);
    border-radius: var(--r-pill);
    padding: 5px 14px;
    margin-bottom: 20px;
    background: rgba(201, 168, 76, .12)
}

.hero-eyebrow span {
    color: var(--gold-lt);
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em
}

.hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 8px
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--gold-lt);
    margin-bottom: 16px
}

.hero-price {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(201, 168, 76, .3);
    border-radius: 12px;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 22px
}

.hero-price span {
    color: rgba(255, 255, 255, .65);
    font-size: .85rem
}

.hero-price strong {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900
}

.hero-price em {
    color: var(--gold-lt);
    font-style: normal;
    font-size: .85rem
}

.hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px
}

.chip {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--r-pill);
    padding: 5px 13px;
    color: #e8e8f0;
    font-size: .76rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px
}

.chip i {
    color: var(--gold-lt);
    font-size: .72rem
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-right {
    position: relative;
    z-index: 2;
    padding: 90px 5% 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%
}

.lead-card {
    background: rgba(255, 255, 255, .97);
    border-radius: 20px;
    padding: 30px 26px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 24px 64px rgba(15, 27, 60, .35), 0 0 0 1px rgba(201, 168, 76, .2)
}

.lead-h {
    font-family: 'Cormorant Garamond', serif;
    color: var(--navy-dk);
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3px
}

.lead-sh {
    color: var(--muted);
    font-size: .75rem;
    text-align: center;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px
}

.fi {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px
}

.fi input,
.fi select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--off-white);
    color: var(--navy);
    font-family: inherit;
    font-size: .88rem;
    outline: none;
    transition: border-color .2s
}

.fi input::placeholder {
    color: var(--lighter)
}

.fi select {
    color: var(--navy)
}

.fi select option {
    background: #fff;
    color: var(--navy)
}

.fi input:focus,
.fi select:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .12)
}

.consent {
    color: #9aaac9;
    font-size: .66rem;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.5
}

.lead-btn {
    width: 100%;
    background: #1a6ed8;
    color: #fff;
    font-size: .92rem;
    font-weight: 900;
    padding: 13px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(26, 110, 216, .3);
    transition: background .2s, transform .2s
}

.lead-btn:hover {
    background: #1558b8;
    transform: translateY(-1px)
}


/* ABOUT */
.about-sec {
    padding: 90px 0;
    background: #fff
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start
}

@media(max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

.about-lead {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dk);
    line-height: 1.6;
    margin-bottom: 14px
}

.about-body {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.75;
    margin-bottom: 28px
}

.about-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px
}

.abt-badge {
    background: var(--off-white);
    border-radius: var(--r);
    padding: 16px 15px;
    border-left: 3px solid var(--gold);
    transition: box-shadow .2s
}

.abt-badge:hover {
    box-shadow: var(--card-s)
}

.abt-b-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-lt);
    font-size: .9rem;
    margin-bottom: 8px
}

.abt-badge h4 {
    font-size: .88rem;
    font-weight: 800;
    color: var(--navy-dk);
    margin-bottom: 4px
}

.abt-badge p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.5
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    background: var(--navy);
    border-radius: var(--r);
    padding: 22px 16px
}

@media(max-width:600px) {
    .about-stats-row {
        grid-template-columns: repeat(2, 1fr)
    }
}

.astat-d {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3px
}

.anum {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--gold-lt)
}

.albl {
    font-size: .68rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    text-transform: uppercase;
    letter-spacing: .08em
}

.about-imgs {
    position: relative
}

.about-img-main {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--card-sh);
    position: relative
}

.about-img-main img {
    width: 100%;
    height: 300px;
    object-fit: cover
}

.about-badge-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(15, 27, 60, .9), transparent);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: 28px 14px 12px
}

.about-img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px
}

.about-img-sm {
    border-radius: 12px;
    overflow: hidden
}

.about-img-sm img {
    width: 100%;
    height: 130px;
    object-fit: cover
}

/* FLOOR PLANS */
.plans-sec {
    padding: 90px 0;
    background: var(--light-blue)
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

@media(max-width:900px) {
    .plans-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:580px) {
    .plans-grid {
        grid-template-columns: 1fr
    }
}

.plan-card {
    background: #fff;
    border-radius: var(--r);
    box-shadow: var(--card-s);
    overflow: hidden;
    transition: all .3s;
    border: 1px solid var(--border)
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-sh)
}

.plan-img-wrap {
    position: relative;
    overflow: hidden
}

.plan-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s
}

.plan-card:hover .plan-img-wrap img {
    transform: scale(1.06)
}

.plan-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 60, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s
}

.plan-card:hover .plan-overlay {
    opacity: 1
}

.plan-overlay-btn {
    background: var(--gold);
    color: var(--navy-dk);
    font-size: .82rem;
    font-weight: 900;
    padding: 10px 22px;
    border-radius: var(--r-pill);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform .2s
}

.plan-overlay-btn:hover {
    transform: scale(1.05)
}

.plan-body {
    padding: 20px
}

.plan-tag {
    display: inline-block;
    background: var(--navy);
    color: var(--gold-lt);
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    margin-bottom: 10px
}

.plan-name {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy-dk);
    margin-bottom: 12px
}

.plan-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem
}

.plan-table tr {
    border-bottom: 1px solid var(--border)
}

.plan-table td {
    padding: 7px 4px
}

.plan-table td:first-child {
    color: var(--muted);
    font-weight: 600;
    width: 42%
}

.plan-table td:last-child {
    color: var(--navy-dk);
    font-weight: 700
}

/* LOCATION */
.loc-sec {
    padding: 90px 0;
    background: #fff
}

.loc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

@media(max-width:900px) {
    .loc-grid {
        grid-template-columns: 1fr
    }
}

.loc-lead {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 24px
}

.loc-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.loc-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--off-white);
    border-radius: var(--r-sm);
    padding: 13px 15px;
    border: 1px solid var(--border);
    transition: box-shadow .2s
}

.loc-list li:hover {
    box-shadow: var(--card-s)
}

.loc-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-lt);
    font-size: .85rem
}

.loc-list div {
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.5
}

.loc-list strong {
    color: var(--navy);
    font-weight: 800;
    display: block;
    font-size: .9rem
}

.map-wrap {
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: var(--card-s)
}

.map-wrap iframe {
    display: block
}

.map-label {
    padding: 12px 16px;
    background: var(--navy-dk);
    color: #fff;
    font-size: .8rem;
    font-weight: 700
}

/* AMENITIES */
.amenities-sec {
    padding: 90px 0;
    background: var(--light-blue)
}

.am-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

@media(max-width:800px) {
    .am-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:540px) {
    .am-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.am-card {
    background: #fff;
    border-radius: var(--r);
    padding: 22px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all .25s;
    box-shadow: var(--card-s)
}

.am-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-sh);
    border-color: rgba(201, 168, 76, .4)
}

.am-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--gold-lt)
}

.am-name {
    font-size: .82rem;
    font-weight: 800;
    color: var(--navy-dk)
}

.am-hint {
    font-size: .68rem;
    color: var(--lighter)
}

/* HIGHLIGHTS */
.highlights-sec {
    padding: 90px 0;
    background: #fff
}

.accord {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.acc-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: box-shadow .3s
}

.acc-item:hover {
    box-shadow: var(--card-s)
}

.acc-item.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 168, 76, .2)
}

.acc-head {
    width: 100%;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    cursor: pointer
}

.acc-head span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy-dk)
}

.acc-ico {
    color: var(--gold);
    font-size: 1rem
}

.acc-arrow {
    color: var(--muted);
    font-size: .75rem;
    transition: transform .3s
}

.acc-item.active .acc-arrow {
    transform: rotate(180deg)
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease
}

.acc-item.active .acc-body {
    max-height: 1000px
}

.acc-inner {
    padding: 0 20px 20px
}

.acc-inner ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px
}

.acc-inner li {
    padding: 10px 14px;
    background: var(--off-white);
    border-radius: var(--r-sm);
    border-left: 3px solid var(--gold);
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.5
}

.acc-inner p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.8;
    padding-top: 4px
}

.faq-ans {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.8
}

.faq-ans strong {
    color: var(--navy-dk)
}

.faq-ans a {
    color: var(--gold-dk);
    font-weight: 700
}

/* GALLERY */
.gallery-sec {
    padding: 90px 0;
    background: var(--navy-dk)
}

.gallery-sec .sec-kicker {
    color: var(--gold-lt);
    background: rgba(201, 168, 76, .1);
    border-color: rgba(201, 168, 76, .3)
}

.gallery-sec .sec-h2 {
    color: #fff
}

.gallery-sec .gold-text {
    color: var(--gold-lt)
}

.gallery-grid {
    columns: 3;
    gap: 16px
}

@media(max-width:800px) {
    .gallery-grid {
        columns: 2
    }
}

@media(max-width:480px) {
    .gallery-grid {
        columns: 1
    }
}

.gal-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    border: 1px solid rgba(255, 255, 255, .08);
    position: relative
}

.gal-item img {
    width: 100%;
    display: block;
    transition: transform .4s
}

.gal-item:hover img {
    transform: scale(1.04)
}

.gal-caption {
    position: absolute;
    inset: 0;
    background: rgba(15, 27, 60, .7);
    display: flex;
    align-items: flex-end;
    padding: 14px;
    opacity: 0;
    transition: opacity .3s;
    color: #fff;
    font-size: .78rem;
    font-weight: 700
}

.gal-item:hover .gal-caption {
    opacity: 1
}

/* CONTACT */
.contact-sec {
    padding: 90px 0;
    background: var(--light-blue)
}

.con-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px
}

@media(max-width:900px) {
    .con-grid {
        grid-template-columns: 1fr
    }
}

.con-intro {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 28px
}

.con-items {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.con-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border-radius: var(--r-sm);
    padding: 14px 16px;
    border: 1px solid var(--border)
}

.con-ico {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-lt);
    font-size: .9rem
}

.con-itl {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--lighter);
    margin-bottom: 2px
}

.con-itv {
    font-weight: 700;
    color: var(--navy-dk);
    font-size: .9rem
}

.con-itv a {
    color: var(--navy-dk)
}

.con-itv a:hover {
    color: var(--gold-dk)
}

.con-form {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--card-s);
    border: 1px solid var(--border)
}

.con-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy-dk);
    margin-bottom: 20px
}

.con-desc {
    color: var(--muted)
}

/* OTHER PROJECTS */
.otherproj-sec {
    padding: 90px 0;
    background: #fff
}

.op-sub {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.75;
    max-width: 600px;
    margin-bottom: 40px
}

.op-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

@media(max-width:1100px) {
    .op-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:580px) {
    .op-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:580px) {
    .op-grid {
        grid-template-columns: 1fr
    }
}

.op-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    box-shadow: var(--card-s);
    transition: all .3s
}

.op-card:hover {
    box-shadow: var(--card-sh);
    transform: translateY(-6px)
}

.op-img-wrap {
    position: relative;
    overflow: hidden
}

.op-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform .4s
}

.op-card:hover .op-img-wrap img {
    transform: scale(1.05)
}

.op-status {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: .7rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 5px 12px;
    border-radius: var(--r-pill)
}

.op-status.ongoing {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--navy-dk)
}

.op-status.completed {
    background: var(--navy);
    color: var(--gold-lt)
}

.op-status.upcoming {
    background: var(--off-white);
    border: 1px solid var(--border);
    color: var(--navy-lt)
}

.op-body {
    padding: 22px
}

.op-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy-dk);
    margin-bottom: 8px
}

.op-loc {
    color: var(--muted);
    font-size: .8rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px
}

.op-loc i {
    color: var(--gold)
}

.op-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 16px
}

.op-chips span {
    background: var(--off-white);
    border: 1px solid var(--border);
    color: var(--muted);
    font-size: .72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--r-pill)
}

.op-cta {
    width: 100%;
    text-align: center;
    display: block;
    font-size: .82rem
}

/* FAQ */
.faq-sec {
    padding: 90px 0;
    background: var(--light-blue)
}

.faq-sub {
    color: var(--muted);
    font-size: .95rem;
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 40px
}

.faq-tel {
    color: var(--gold-dk);
    font-weight: 800
}

.faq-tel:hover {
    text-decoration: underline
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
    margin-bottom: 40px
}

@media(max-width:900px) {
    .faq-grid {
        grid-template-columns: 1fr
    }
}

.faq-accord .acc-item {
    background: #fff
}

.faq-cta {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: #fff;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: var(--card-s)
}

.faq-cta p {
    color: var(--muted);
    font-size: .95rem;
    font-weight: 700
}

/* FOOTER */
.site-footer {
    background: var(--navy-dk);
    padding: 60px 0 28px
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 44px;
    margin-bottom: 40px
}

@media(max-width:800px) {
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }
}

.foot-desc {
    color: rgba(255, 255, 255, .55);
    font-size: .88rem;
    line-height: 1.7;
    margin-top: 12px
}

.foot-socials {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.foot-soc {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: .9rem;
    transition: all .2s
}

.foot-soc:hover {
    background: var(--gold);
    color: var(--navy-dk);
    border-color: var(--gold)
}

.foot-h {
    font-size: .9rem;
    font-weight: 900;
    color: var(--gold-lt);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.foot-links {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.foot-link {
    font-size: .87rem;
    color: rgba(255, 255, 255, .55);
    padding: 4px 0;
    text-align: left;
    transition: color .2s
}

.foot-link:hover {
    color: var(--gold-lt)
}

.foot-contact {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.fci {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .87rem;
    color: rgba(255, 255, 255, .55)
}

.fci i {
    color: var(--gold-lt);
    flex-shrink: 0;
    margin-top: 2px
}

.fci a {
    color: rgba(255, 255, 255, .55)
}

.fci a:hover {
    color: var(--gold-lt)
}

.fci span {
    color: rgba(255, 255, 255, .55)
}

.foot-copy {
    text-align: center;
    font-size: .77rem;
    color: rgba(255, 255, 255, .3);
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 24px
}

.foot-copy a {
    color: var(--gold-lt)
}

.foot-logo-nav .logo-ico {
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    color: var(--navy-dk)
}

.foot-logo-nav .logo-tt {
    color: #fff
}

.foot-logo-nav .logo-st {
    color: rgba(255, 255, 255, .4)
}

/* MOBILE BAR */
.mob-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    background: var(--navy-dk);
    border-top: 2px solid var(--gold);
    padding: 10px 12px;
    gap: 8px
}

@media(max-width:768px) {
    .mob-bar {
        display: flex
    }
}

.mob-bar a,
.mob-bar button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: .65rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .06em;
    border-radius: 8px;
    padding: 6px
}

.mob-bar a i,
.mob-bar button i {
    font-size: 1rem
}

.mob-bar .mob-cta-wa {
    background: #25d366;
    color: #fff;
    border-radius: 8px
}

.mob-bar .mob-cta-call {
    color: var(--gold-lt)
}

.mob-bar .mob-cta-book {
    background: var(--gold);
    color: var(--navy-dk);
    border-radius: 8px
}

/* MODALS */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 15, 35, .8);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal-overlay.open {
    display: flex;
    animation: modalIn .25s ease
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.96)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.modal-box {
    background: #fff;
    border-radius: 20px;
    max-width: 680px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(15, 27, 60, .35);
    border-top: 4px solid var(--gold)
}

.modal-head {
    padding: 22px 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border)
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-dk)
}

.modal-close {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .8rem;
    transition: background .2s
}

.modal-close:hover {
    background: var(--light-blue);
    color: var(--navy)
}

.modal-body {
    padding: 22px 24px
}

.modal-img {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px
}

.modal-img img {
    width: 100%
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px
}

.modal-det-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .88rem;
    color: var(--muted);
    padding: 6px 0;
    border-bottom: 1px solid var(--border)
}

.modal-det-row i {
    color: var(--gold);
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px
}

.modal-det-row strong {
    color: var(--navy-dk);
    margin-right: 4px
}

.modal-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.modal-body ul li {
    padding: 8px 12px;
    background: var(--off-white);
    border-radius: var(--r-sm);
    border-left: 3px solid var(--gold);
    color: var(--muted);
    font-size: .88rem;
    margin-bottom: 6px;
    line-height: 1.5
}

.modal-body ul li strong {
    color: var(--navy-dk)
}

.modal-body p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 12px
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

/* TOAST */
#toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 3000;
    background: var(--navy-dk);
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--r-pill);
    font-size: .88rem;
    font-weight: 700;
    border-left: 4px solid var(--gold);
    box-shadow: 0 8px 24px rgba(15, 27, 60, .25);
    opacity: 0;
    transition: opacity .3s, transform .3s;
    pointer-events: none;
    white-space: nowrap
}

#toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0)
}

/* MISC */
#otherprojects,
#faq {
    scroll-margin-top: 75px
}

.gold {
    color: var(--gold)
}

.container-pad {
    padding: 0 min(5%, 40px)
}

/* ===================== CRITICAL CSS OVERRIDE (body/base in inline style) ===================== */
/* Override inline critical CSS vars to match new theme */
body {
    background: #fff;
    color: var(--navy)
}


/* ================================================================
   HERO — DESKTOP (>= 901px): form in RIGHT column
   ================================================================ */
@media(min-width:901px) {
    .hero {
        grid-template-columns: 60fr 40fr;
        align-items: start
    }

    .hero-ov {
        display: none
    }

    .hero-right {
        grid-column: 2;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        padding-top: 110px;
        padding-right: max(4%, calc((100vw - 1200px)/2 + 24px));
        padding-left: 16px;
        width: 100%;
    }

    .hero-right .lead-card {
        max-width: 400px;
        width: 100%
    }
}

/* ================================================================
   HERO — MOBILE (<= 900px): image first, form below
   ================================================================ */
@media(max-width:900px) {
    .hero {
        display: block;
        min-height: auto;
        overflow: hidden
    }

    .hero-bg {
        position: relative;
        inset: unset;
        width: 100%;
        height: 58vh;
        padding-top: 64px
    }

    .hero-bg picture {
        display: block;
        width: 100%;
        height: 100%
    }

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block
    }

    .hero-ov {
        display: none
    }

    .hero-left {
        display: none
    }

    .hero-right {
        position: relative;
        z-index: 1;
        background: #f4f6fb;
        padding: 18px 16px 75px;
        display: block;
        width: 100%;
        box-shadow: 0 -4px 20px rgba(10, 20, 50, .10)
    }

    .hero-right .lead-card {
        max-width: 480px;
        margin: 0 auto
    }
}

/* ================================================================
   FLOOR PLAN & AMENITY MODALS — modal-card / modal-content
   (these classes are used in floor plan and amenity modals)
   ================================================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 15, 35, .82);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal-overlay.open {
    display: flex;
    animation: modalIn .25s ease
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(.95)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.modal-card {
    background: #fff;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(15, 27, 60, .35);
    border-top: 4px solid var(--gold);
    position: relative
}

.modal-wide {
    max-width: 680px
}

.modal-x {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: .85rem;
    z-index: 2;
    border: none;
    cursor: pointer;
    transition: background .2s
}

.modal-x:hover {
    background: var(--light-blue);
    color: var(--navy)
}

.modal-img-top {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    display: block
}

.modal-content {
    padding: 24px 28px 28px
}

.modal-ico-big {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--navy), var(--navy-lt));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-lt);
    font-size: 1.6rem;
    margin: 16px auto 14px
}

.modal-content .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy-dk);
    text-align: center;
    margin-bottom: 10px
}

.modal-content p {
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.8;
    margin-bottom: 18px;
    text-align: center
}

.modal-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.modal-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    cursor: pointer
}