/* =============================================================
   V2 Landing Page — scoped under .v2-page so existing CSS is untouched.
   Mobile-first. Breakpoints: 640px (sm), 960px (md), 1200px (lg).
   ============================================================= */

/* ---------- Tokens ---------- */
.v2-page {
    --v2-primary: #b67e0f;
    --v2-primary-dark: #8a5e08;
    --v2-text: #2a2418;
    --v2-text-soft: #5a4f3a;
    --v2-bg-cream: #fcf6eb;
    --v2-bg-sand: #efe2c9;
    --v2-bg-tan: #ddc89d;
    --v2-white: #ffffff;
    --v2-line: #d6c9a8;
    --v2-radius: 12px;
    --v2-radius-lg: 24px;
    --v2-shadow: 0 8px 28px rgba(60, 45, 12, 0.08);
    --v2-font-body: "Nunito Sans", "Inter", system-ui, sans-serif;
    --v2-font-display: "Playfair Display", "Nunito Sans", serif;
    --v2-container: 1240px;
    --v2-pad-x: clamp(16px, 4vw, 64px);
    --v2-section-y: clamp(40px, 7vw, 96px);
}

/* ---------- Reset / base ---------- */
.v2-page,
.v2-page * {
    box-sizing: border-box;
}

.v2-page {
    margin: 0;
    color: var(--v2-text);
    font-family: var(--v2-font-body);
    font-size: 16px;
    line-height: 1.5;
    background: var(--v2-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.v2-page img {
    max-width: 100%;
    height: auto;
    display: block;
    /* Copyright protection: block drag-to-desktop + iOS long-press save */
    -webkit-user-drag: none;
    user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
}

.v2-page h1, .v2-page h2, .v2-page h3, .v2-page h4 {
    font-family: var(--v2-font-display);
    color: var(--v2-text);
    margin: 0;
    line-height: 1.15;
    font-weight: 600;
}

/* ---------- Unified section-title spacing ---------- */
.v2-experience__title,
.v2-usps__title,
.v2-masterplan__title,
.v2-floorplans__title,
.v2-form__title {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    margin-bottom: clamp(24px, 3.5vw, 40px);
}
/* visit title excluded — has own sizing + gold color */

.v2-page p { margin: 0; }
.v2-page ul, .v2-page ol, .v2-page dl { margin: 0; padding: 0; list-style: none; }
.v2-page a { color: inherit; text-decoration: none; }
.v2-page a:focus-visible,
.v2-page button:focus-visible,
.v2-page input:focus-visible {
    outline: 2px solid var(--v2-primary);
    outline-offset: 2px;
}

.v2-container {
    width: 100%;
    max-width: var(--v2-container);
    margin: 0 auto;
    padding-left: var(--v2-pad-x);
    padding-right: var(--v2-pad-x);
}

.v2-visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--v2-primary); color: #fff;
    padding: 8px 12px; z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- Buttons ---------- */
.v2-btn {
    display: inline-flex; align-items: center; gap: 10px;
    border: 1px solid transparent;
    padding: 12px 22px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.v2-btn:hover { transform: translateY(-1px); }
.v2-btn--dark {
    background: var(--v2-primary);
    color: #fff;
}
.v2-btn--dark:hover { background: var(--v2-primary-dark); }
.v2-btn--primary {
    background: var(--v2-primary);
    color: #fff;
    padding: 14px 32px;
}
.v2-btn--ghost {
    background: transparent;
    color: var(--v2-primary);
    border-color: var(--v2-primary);
}
.v2-btn--ghost:hover {
    background: var(--v2-primary);
    color: #fff;
}

/* ---------- Header ---------- */
.v2-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--v2-bg-cream);
    border-bottom: 1px solid var(--v2-line);
    transition: box-shadow 0.3s ease;
}
.v2-header.is-scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.v2-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 10px; padding-bottom: 10px;
    gap: 16px;
}
.v2-header__brand img { height: 44px; width: auto; }
@media (min-width: 640px) {
    .v2-header__brand img { height: 52px; }
}

/* Desktop nav links */
.v2-header__nav { display: none; }
@media (min-width: 960px) {
    .v2-header__nav { display: flex; align-items: center; }
}
.v2-header__links {
    display: flex; align-items: center;
    gap: 2rem; list-style: none; margin: 0; padding: 0;
}
.v2-header__link {
    font-family: var(--v2-font-body);
    font-size: 14px; font-weight: 500;
    color: var(--v2-text);
    text-decoration: none;
    letter-spacing: 0.03em;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}
.v2-header__link:hover,
.v2-header__link.is-active {
    color: var(--v2-primary);
    border-bottom-color: var(--v2-primary);
}

/* Right side actions */
.v2-header__actions {
    display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}

/* Hamburger — mobile only */
.v2-header__hamburger {
    display: flex; flex-direction: column; justify-content: center;
    gap: 5px; width: 32px; height: 32px;
    background: transparent; border: 0; cursor: pointer; padding: 4px;
}
@media (min-width: 960px) {
    .v2-header__hamburger { display: none; }
}
.v2-header__bar {
    display: block; width: 100%; height: 2px;
    background: var(--v2-primary);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
/* Hamburger → X when open */
.v2-header__hamburger[aria-expanded="true"] .v2-header__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.v2-header__hamburger[aria-expanded="true"] .v2-header__bar:nth-child(2) {
    opacity: 0;
}
.v2-header__hamburger[aria-expanded="true"] .v2-header__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile dropdown */
.v2-header__mobile-menu {
    display: none;
    background: #0f1a2e;
    padding: 12px 0 20px;
    overflow: hidden;
}
.v2-header__mobile-menu.is-open { display: block; }
.v2-header__mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.v2-page .v2-header__mobile-link {
    display: block;
    padding: 14px 24px;
    color: #fff !important;
    font-family: var(--v2-font-body);
    font-size: 15px; font-weight: 500;
    letter-spacing: 0.03em;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.2s;
}
.v2-page .v2-header__mobile-link:hover { background: rgba(255,255,255,0.06); }
.v2-page .v2-header__mobile-link--cta {
    color: var(--v2-primary) !important;
    font-weight: 700;
    border-bottom: 0;
    margin-top: 8px;
}

/* Smooth scroll + scroll-margin for sticky header offset */
html { scroll-behavior: smooth; }

#overview, #amenities, #location, #floor-plans, #faq, #contact {
    scroll-margin-top: 72px;
}
@media (min-width: 640px) {
    #overview, #amenities, #location, #floor-plans, #faq, #contact {
        scroll-margin-top: 80px;
    }
}

/* ---------- Hero ---------- */
.v2-hero {
    background: var(--v2-bg-cream);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 60vh;
}
@media (min-width: 960px) {
    .v2-hero { grid-template-columns: 1.4fr 1fr; min-height: 80vh; }
}
.v2-hero__media {
    background: var(--v2-bg-cream);
    display: flex; align-items: center; justify-content: center;
    padding: 32px;
}
.v2-hero__media img { width: 100%; max-width: 640px; object-fit: contain; }
.v2-hero__panel {
    background: var(--v2-bg-cream);
    padding: clamp(28px, 6vw, 64px) clamp(20px, 5vw, 80px);
    display: flex; flex-direction: column; gap: 14px;
    text-align: center; align-items: center;
}
.v2-hero__eyebrow {
    letter-spacing: 0.15em; font-weight: 700; color: var(--v2-text);
    font-size: 0.95rem;
}
.v2-hero__brandblock {
    display: flex; align-items: center; gap: 12px; justify-content: center;
    flex-wrap: wrap;
}
.v2-hero__emblem { width: 220px; height: auto; max-width: 100%; }
@media (min-width: 640px) { .v2-hero__emblem { width: 320px; } }
.v2-hero__title {
    font-size: clamp(2rem, 6vw, 3.4rem);
    color: var(--v2-text); letter-spacing: 0.04em; font-weight: 500;
}
.v2-hero__title span { display: block; color: var(--v2-text); }
.v2-hero__subtitle {
    letter-spacing: 0.2em; font-size: 0.75rem; color: var(--v2-text-soft);
    border-top: 1px solid var(--v2-text); padding-top: 4px;
}
.v2-hero__config {
    font-weight: 700; color: var(--v2-text);
    font-size: clamp(1rem, 2vw, 1.25rem);
    letter-spacing: 0.1em;
}
.v2-hero__badge {
    background: var(--v2-primary); color: #fff;
    padding: 10px 28px; font-weight: 700; letter-spacing: 0.12em;
    font-size: clamp(1rem, 2vw, 1.25rem);
    border-radius: 4px;
}
.v2-hero__location {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--v2-primary); font-weight: 600;
    font-size: 1.05rem;
}
.v2-hero__price strong {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    color: var(--v2-primary);
}
.v2-hero__possession {
    font-size: 0.95rem; color: var(--v2-text-soft);
}
.v2-hero__certs {
    display: flex; gap: 18px; align-items: center; justify-content: center;
    margin-top: 8px;
    flex-wrap: wrap;
    max-width: 360px;
}
.v2-page .v2-hero__cert-img {
    height: 68px !important; width: auto !important;
    max-width: 160px;
    object-fit: contain;
}
.v2-page .v2-hero__cert-img--wide {
    height: 36px !important;
    max-width: 140px;
}
.v2-hero__cert-divider {
    width: 1px; height: 48px;
    background: var(--v2-line);
    display: inline-block;
    flex-shrink: 0;
}
.v2-hero__rera {
    font-size: 0.75rem; color: var(--v2-text-soft); letter-spacing: 0.05em;
}
.v2-hero__disclaimer {
    font-size: 0.7rem; color: var(--v2-text-soft); opacity: 0.85;
    max-width: 460px; line-height: 1.4;
}

/* ---------- Experience ---------- */
/* ══════════════════════════════════════════════════════════════════
   Experience section — fluid layout 360px → 2560px
   Breakpoints: 480px (small phone) | 768px (mobile→tablet) | 1024px (tablet) | 1800px (wide)
   ══════════════════════════════════════════════════════════════════ */

/* Base: full-viewport section, no horizontal overflow */
.v2-experience {
    background: var(--v2-bg-sand);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden; /* prevent collage overflow on small screens */
}

/* Container: breaks 1240px global cap on wide screens */
.v2-experience > .v2-container {
    max-width: min(92vw, 1800px);
    flex: 1;
    display: flex;
    align-items: stretch;
    width: 100%;
    /* mobile: 40px 20px | scales up on larger screens */
    padding-top:    clamp(40px, 7vh, 96px);
    padding-bottom: clamp(40px, 7vh, 96px);
    padding-left:   clamp(20px, 4vw, 64px);
    padding-right:  clamp(20px, 4vw, 64px);
}

/* Grid — mobile-first single column, two columns at 768px+ */
.v2-experience__grid {
    flex: 1;
    display: grid !important;
    grid-template-columns: 1fr !important; /* MOBILE: single column — force over any conflict */
    gap: 32px;
    align-items: start;
    width: 100%;
}

/* 768px+ — side by side */
@media (min-width: 768px) {
    .v2-experience__grid {
        grid-template-columns: 1.1fr 1fr !important;
        gap: clamp(40px, 5vw, 96px);
        align-items: center;
    }
}

/* 1024px+ — wider gap */
@media (min-width: 1024px) {
    .v2-experience__grid {
        gap: clamp(48px, 5vw, 96px);
    }
}

/* ── "Every" row ── */
.v2-experience__every {
    display: flex;
    gap: clamp(12px, 2vw, 32px);
    align-items: flex-start;
}

/*
 * "Every" heading:
 *   480px  → 48px (clamp min)
 *   768px  → ~77px (10vw)
 *   1440px → ~115px (8vw after breakpoint)
 *   1920px → ~154px
 *   2560px → 160px (10rem cap)
 */
.v2-experience__every-word {
    font-family: var(--v2-font-display);
    font-style: italic;
    font-weight: 700;
    font-size: clamp(48px, 10vw, 120px);  /* mobile readable, desktop commanding */
    color: var(--v2-primary);
    line-height: 1;
}
@media (min-width: 768px) {
    .v2-experience__every-word {
        font-size: clamp(64px, 8vw, 160px); /* wider range on tablet+ */
    }
}

/*
 * Word list: clamp(14px, 2vw, 20px)
 */
.v2-experience__time-words {
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 0.8vh, 10px);
    color: var(--v2-text);
    font-size: clamp(14px, 2vw, 20px);
    padding-top: clamp(6px, 1.2vh, 18px);
    line-height: 1.6;
}

/* Gold divider rules — full width of container on mobile */
.v2-experience__rule {
    border: 0;
    border-top: 2px solid var(--v2-primary);
    margin: clamp(16px, 2.5vh, 36px) 0;
    width: 100%;
    opacity: 0.75;
}

/*
 * H2: clamp(20px, 4vw, 42px)
 * white-space: normal on mobile so it wraps if needed
 */
.v2-experience__title {
    font-size: clamp(20px, 4vw, 42px) !important;
    margin: 0 !important;
    display: block;
    white-space: normal;       /* allow wrap on small screens */
    line-height: 1.2;
}
@media (min-width: 768px) {
    .v2-experience__title {
        white-space: nowrap;   /* single line on tablet+ */
    }
}

/*
 * Italic body lines: clamp(13px, 1.8vw, 18px)
 */
.v2-experience__list {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 0.8vh, 12px);
    color: var(--v2-text-soft);
    font-style: italic;
    margin-top: 4px;
    margin-bottom: clamp(16px, 2vh, 28px);
    font-size: clamp(13px, 1.8vw, 18px);
    line-height: 1.8;
}

/*
 * Bold closing line: clamp(14px, 2vw, 20px)
 */
.v2-experience__lede {
    font-weight: 700;
    color: var(--v2-text);
    font-size: clamp(14px, 2vw, 20px);
    line-height: 1.6;
}

/* SEO brand story paragraph — crawlable keyword content */
.brand-story-seo {
    font-size: 15px !important;
    color: var(--v2-text) !important;
    line-height: 1.8;
    max-width: 600px;
    margin: 24px 0 0 !important;
    text-align: left;
    opacity: 0.75;
}
.brand-story-seo a {
    color: var(--v2-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.brand-story-seo a:hover {
    border-bottom-color: var(--v2-primary);
}

/* ── Collage column ── */
.v2-experience__collage {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
}

/* Desktop collage: fills column height */
.v2-experience__collage img {
    width: 100%;
    height: auto;
    max-height: calc(100vh - 120px);
    object-fit: contain;
}

/* ── MOBILE: force collage below text, centered, full width ── */
@media (max-width: 767px) {
    .v2-experience__copy {
        grid-column: 1 / -1 !important;
        width: 100%;
    }

    .v2-experience__collage {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        max-width: 360px;
        margin: 0 auto;
        align-self: auto;
    }

    .v2-experience__collage img {
        width: 100% !important;
        max-height: 320px;
        object-fit: contain;
    }

    /* Remove nowrap so heading wraps on small screens */
    .v2-experience__title {
        white-space: normal !important;
    }
}

/* ── @media 480px — small phone ── */
@media (max-width: 480px) {
    .v2-experience > .v2-container {
        padding-top:    40px;
        padding-bottom: 40px;
        padding-left:   20px;
        padding-right:  20px;
    }

    .v2-experience__grid {
        gap: 28px;
    }

    .v2-experience__collage {
        max-width: 300px;
    }
}

/* ---------- Lifestyle Showcase ---------- */
/* ══════════════════════════════════════════════════════════════════
   Lifestyle Showcase — fluid, 360px → 2560px
   Mobile: image top, panel below | 768px+: image left, panel right
   ══════════════════════════════════════════════════════════════════ */

/* Section fills full viewport */
.v2-lifestyle {
    background: var(--v2-bg-cream);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Grid stretches to fill section height */
.v2-lifestyle__grid {
    flex: 1;
    display: grid !important;
    grid-template-columns: 1fr !important; /* mobile: stack */
    min-height: 100vh;
}

/* 768px+ — image left (55%), panel right (45%) */
@media (min-width: 768px) {
    .v2-lifestyle__grid {
        grid-template-columns: 1.2fr 1fr !important;
    }
}

/* Left — image fills full cell height */
.v2-lifestyle__image {
    overflow: hidden;
    background: var(--v2-bg-cream);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 40vh; /* mobile: image gets decent height */
}
@media (min-width: 768px) {
    .v2-lifestyle__image {
        min-height: 100vh;
    }
}

.v2-lifestyle__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* Right — vertical stack, vertically centered, scales padding with vw */
.v2-lifestyle__panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(16px, 2.5vh, 32px);
    padding: clamp(40px, 6vw, 96px) clamp(24px, 5vw, 80px);
    background: var(--v2-bg-cream);
}

/* "Introducing" label */
.v2-lifestyle__introducing {
    font-size: clamp(0.8rem, 1.1vw, 1.1rem);
    color: var(--v2-text-soft);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

/* Logo — scales with viewport width */
.v2-page .v2-lifestyle__logo {
    width: clamp(160px, 22vw, 340px) !important;
    height: auto !important;
    max-width: 100%;
    display: block;
}

/* "+" separator */
.v2-lifestyle__plus {
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--v2-text);
    font-weight: 300;
    line-height: 1;
    margin: 0;
}

/* "an expansion" + word list row */
.v2-lifestyle__expansion {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 1.5vw, 24px);
    flex-wrap: wrap;
}

/* "an expansion" — scales from mobile to 4K */
.v2-lifestyle__expansion-word {
    font-family: var(--v2-font-display);
    font-size: clamp(1.6rem, 4vw, 4.5rem);
    font-weight: 700;
    color: var(--v2-text);
    line-height: 1.1;
    margin: 0;
    white-space: nowrap;
}

/* "of thought / of life / of being" list */
.v2-lifestyle__expansion-list {
    display: flex;
    flex-direction: column;
    gap: clamp(2px, 0.4vh, 6px);
    font-size: clamp(0.75rem, 1.1vw, 1.1rem);
    color: var(--v2-text-soft);
    padding-top: clamp(4px, 0.8vh, 10px);
    line-height: 1.6;
}

/* Closing copy */
.v2-lifestyle__copy {
    font-size: clamp(0.9rem, 1.3vw, 1.2rem);
    color: var(--v2-text);
    max-width: 480px;
    line-height: 1.7;
    margin: 0;
}

/* ── Mobile overrides (< 768px) ── */
@media (max-width: 767px) {
    /* Kill 100vh min-height on mobile — let content dictate height */
    .v2-lifestyle,
    .v2-lifestyle__grid {
        min-height: unset !important;
    }

    .v2-lifestyle__grid {
        grid-template-rows: auto auto; /* image row = natural height, panel = auto */
    }

    .v2-lifestyle__image {
        grid-row: 1;
        height: 64vw;
        max-height: 300px;
        min-height: unset;
        justify-content: center; /* center the img element horizontally */
    }

    .v2-lifestyle__image img {
        object-fit: cover;
        object-position: 30% center; /* crop right empty canvas, center on island */
    }

    .v2-lifestyle__panel {
        grid-row: 2;
        padding: 36px 24px 48px;
        gap: 18px;
        justify-content: flex-start; /* top-align on mobile */
    }

    .v2-lifestyle__expansion-word {
        white-space: normal;
        font-size: clamp(1.4rem, 6vw, 2rem);
    }

    .v2-lifestyle__plus {
        font-size: clamp(1.6rem, 6vw, 2.4rem);
    }

    .v2-page .v2-lifestyle__logo {
        width: clamp(140px, 50vw, 220px) !important;
    }
}

/* ── Small phone (< 480px) ── */
@media (max-width: 480px) {
    .v2-lifestyle__image {
        height: 68vw;
        max-height: 260px;
    }

    .v2-lifestyle__panel {
        padding: 28px 20px 40px;
        gap: 14px;
    }
}

/* ---------- Gallery Slider ---------- */
.v2-gallery {
    background: var(--v2-bg-sand);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}
.v2-gallery > .v2-container {
    max-width: min(92vw, 1800px);
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: clamp(40px, 7vh, 96px);
    padding-bottom: clamp(32px, 5vh, 72px);
    padding-left: clamp(20px, 4vw, 64px);
    padding-right: clamp(20px, 4vw, 64px);
}
.v2-gallery__track {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.v2-gallery__slide {
    display: none;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    flex: 1;
}
.v2-gallery__slide.is-active { display: grid; }
@media (min-width: 768px) {
    .v2-gallery__slide.is-active {
        grid-template-columns: 1.2fr 1fr;
        gap: clamp(40px, 5vw, 96px);
        align-items: center;
    }
}
.v2-gallery__slide-media {
    display: flex;
    align-items: center;
    justify-content: center;
}
.v2-gallery__slide-media img {
    width: 100%;
    max-width: min(560px, 100%);
    margin: 0 auto;
    border-radius: var(--v2-radius);
}
.v2-gallery__slide-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 22px);
    justify-content: center;
}
.v2-gallery__slide-copy h3 {
    font-size: clamp(1.4rem, 3.2vw, 2.6rem);
    line-height: 1.2;
    white-space: normal;
}
@media (min-width: 1024px) {
    .v2-gallery__slide-copy h3 { white-space: nowrap; }
}
.v2-gallery__slide-copy p {
    color: var(--v2-text-soft);
    font-size: clamp(0.9rem, 1.4vw, 1.05rem);
}
.v2-gallery__next {
    background: transparent; border: 0; cursor: pointer;
    color: var(--v2-text); margin-top: 8px; align-self: flex-start;
}
.v2-gallery__next svg { width: clamp(32px, 3.5vw, 48px); height: clamp(32px, 3.5vw, 48px); }
.v2-gallery__dots {
    display: flex; gap: 10px; justify-content: center;
    margin-top: clamp(20px, 3vh, 40px);
}
.v2-gallery__dot {
    width: 10px; height: 10px; border-radius: 50%;
    border: 0; background: var(--v2-text-soft); opacity: 0.4;
    cursor: pointer; padding: 0;
}
.v2-gallery__dot.is-active { background: var(--v2-primary); opacity: 1; }

/* Gallery mobile */
@media (max-width: 767px) {
    .v2-gallery { min-height: unset; }
    .v2-gallery__slide-media { max-width: 340px; width: 100%; margin: 0 auto; }
    .v2-gallery__slide-copy h3 { white-space: normal !important; }
}

/* ---------- Configuration ---------- */
.v2-config {
    background: var(--v2-bg-cream);
}

.v2-config__banner {
    position: relative;
    width: 100%;
}
.v2-config__banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Stats row — pull up to overlap banner */
.v2-config__stats-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: -60px;        /* overlap banner — desktop only */
    position: relative; z-index: 2;
    padding-bottom: 24px;
}
@media (max-width: 639px) {
    .v2-config__stats-row { margin-top: 0; }   /* no overlap on mobile */
}
@media (min-width: 640px) {
    .v2-config__stats-row { grid-template-columns: repeat(3, 1fr); }
}

/* Config cards row — centered 2-col */
.v2-config__cfg-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding-bottom: 48px;
}
@media (min-width: 640px) {
    .v2-config__cfg-row {
        grid-template-columns: repeat(2, minmax(0, 460px));
        justify-content: center;
    }
}

/* Shared card style */
.v2-config__card {
    display: flex;
    align-items: stretch;
    background: var(--v2-white);
    border: 1px solid var(--v2-line);
    overflow: hidden;
}

/* Gold left bar with rotated label */
.v2-config__card-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    background: var(--v2-primary);
    color: var(--v2-white);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 14px 10px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Card content area */
.v2-config__card-body {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.v2-config__card-body--note {
    justify-content: center;
    font-size: 1rem;
    color: var(--v2-text);
    line-height: 1.5;
}

/* Numbers */
.v2-config__num {
    font-family: var(--v2-font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--v2-primary);
    line-height: 1.1;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.v2-config__num small {
    font-family: var(--v2-font-body);
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    font-weight: 500;
    color: var(--v2-text);
    line-height: 1.3;
}
.v2-config__num--lg {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

/* ---------- USPs ---------- */
.v2-usps {
    background: var(--v2-bg-cream);
    padding: var(--v2-section-y) 0;
}
.v2-usps__title {
    text-align: center;
    padding-bottom: clamp(24px, 3.5vw, 40px);
    margin-bottom: 0 !important;
}
.v2-usps__title + .v2-usps__grid {
    margin-top: 0 !important;
}
.v2-usps__grid {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
    max-width: 980px; margin: 0 auto;
}
.v2-usp {
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.85rem; font-weight: 600;
    line-height: 1.25;
}
.v2-usp--exclusive {
    background: var(--v2-primary); color: #fff;
}
.v2-usp--common {
    background: transparent; color: var(--v2-text);
    border: 1px solid var(--v2-line);
}
.v2-usps__legend {
    display: flex; gap: 32px; justify-content: center;
    margin-top: 64px !important;
    flex-wrap: wrap;
    font-size: 0.9rem;
    font-weight: 500;
    padding-top: 32px;
}
.v2-usps__legend li { display: flex; gap: 8px; align-items: center; }
.v2-usps__swatch {
    width: 14px; height: 14px; border-radius: 3px; display: inline-block;
}
.v2-usps__swatch--exclusive { background: var(--v2-primary); }
.v2-usps__swatch--common { background: transparent; border: 1px solid var(--v2-line); }

/* ---------- Amenities ---------- */
.v2-amenities { position: relative; padding: var(--v2-section-y) 0; }
.v2-amenities__bg {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
}
.v2-amenities__bg img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.38);
}
.v2-amenities__inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1fr; gap: 28px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 4px rgba(0,0,0,0.8);
}
@media (min-width: 960px) {
    .v2-amenities__inner { grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; }
}
.v2-amenities__list { display: flex; flex-direction: column; gap: 10px; font-size: 0.95rem; }
.v2-amenities__list li::before { content: "• "; color: #fff; }
.v2-amenities__center { text-align: center; }
.v2-amenities__count {
    font-size: clamp(4rem, 9vw, 7rem);
    font-family: var(--v2-font-display);
    color: #fff; line-height: 1; font-weight: 600;
}
.v2-amenities__count span { color: var(--v2-primary); }
.v2-amenities__head {
    color: #fff !important;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 0 4px rgba(0,0,0,0.8);
}

/* ---------- Amenities Gallery ---------- */
.amenities-gallery {
    background: var(--v2-bg-cream);
    padding: 80px 0 50px;
    overflow: hidden;
    width: 100%;
}

/* Header */
.amenities-gallery__header {
    text-align: center;
    padding: 0 var(--v2-pad-x);
    margin-bottom: 48px;
}
.amenities-gallery__overline {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--v2-primary);
    margin-bottom: 16px !important;
}
.amenities-gallery__title {
    font-family: var(--v2-font-display);
    color: var(--v2-text);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 600;
    margin: 0;
}

/* Scroll viewport */
.amenities-gallery__viewport {
    width: 100%;
    overflow: hidden;
}

/* Scrolling track — 32 cards, animation moves -50% (= 16 cards width) */
@keyframes amenities-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.amenities-gallery__track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: amenities-scroll 80s linear infinite;
}

/* Card */
.amenities-gallery__card {
    position: relative;
    width: 380px;
    height: 260px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}
.amenities-gallery__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.amenities-gallery__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 50%);
    pointer-events: none;
}
.amenities-gallery__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 16px 16px;
    color: #fff;
    font-family: var(--v2-font-body);
    font-size: 13px;
    font-weight: 500;
    z-index: 1;
    line-height: 1.3;
}

/* Footer */
.amenities-gallery__footer {
    text-align: center;
    margin-top: 40px;
    padding: 0 var(--v2-pad-x);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.amenities-gallery__count {
    color: var(--v2-primary);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 !important;
}
.amenities-gallery__explore {
    color: var(--v2-primary);
    font-size: 13px;
    font-weight: 500;
    font-family: var(--v2-font-body);
    background: none;
    border: none;
    border-bottom: 1px solid transparent;
    padding: 0;
    cursor: pointer;
    transition: border-color 0.2s;
}
.amenities-gallery__explore:hover {
    border-bottom-color: var(--v2-primary);
}

/* Mobile */
@media (max-width: 767px) {
    .amenities-gallery {
        padding: 50px 0 30px;
    }
    .amenities-gallery__header {
        margin-bottom: 32px;
    }
    .amenities-gallery__card {
        width: 240px;
        height: 170px;
    }
    .amenities-gallery__label {
        font-size: 12px;
        padding: 0 12px 12px;
    }
}

/* ---------- Location ---------- */
.v2-location {
    position: relative;
    overflow: hidden;
}

/* Full-bleed bg — natural brightness, towers vivid */
.v2-location__bg {
    position: absolute; inset: 0; z-index: 0;
}
.v2-location__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 65%;
    filter: brightness(1);
}

/* Gradient: clear left (towers) → dark right (content panel) */
.v2-location::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        to left,
        rgba(6, 4, 1, 0.88) 0%,
        rgba(6, 4, 1, 0.65) 30%,
        rgba(6, 4, 1, 0.15) 60%,
        transparent 80%
    );
    pointer-events: none;
}

/* Grid: left empty (towers), right stacked content */
.v2-location__inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: clamp(64px, 9vw, 110px) clamp(24px, 5vw, 80px);
    min-height: 620px;
    align-items: center;
}
@media (min-width: 960px) {
    .v2-location__inner {
        grid-template-columns: 1fr 1fr;
        min-height: 660px;
    }
}

/* Left spacer — hidden on mobile */
.v2-location__spacer {
    display: none;
}
@media (min-width: 960px) {
    .v2-location__spacer { display: block; }
}

/* Right content: title + card stacked */
.v2-location__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Title */
.v2-page .v2-location__title {
    color: #fff !important;
    font-family: var(--v2-font-display);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    text-shadow: 0 2px 16px rgba(0,0,0,0.7);
    margin: 0;
}
.v2-location__title span {
    color: var(--v2-primary);
    font-size: 0.65em;
    font-style: italic;
    font-weight: 500;
    display: block;
    margin-top: 10px;
    letter-spacing: 0.01em;
}

/* Frosted glass card — gold left accent bar */
.v2-location__points {
    display: flex; flex-direction: column; gap: 0;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 6px 0;
    border: 1px solid rgba(255,255,255,0.12);
    border-left: 3px solid var(--v2-primary);
    box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

.v2-location__point {
    padding: 15px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.v2-location__point:last-child { border-bottom: none; }

.v2-location__point h3 {
    font-weight: 700;
    color: var(--v2-primary);
    font-size: 0.82rem;
    margin: 0 0 3px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: var(--v2-font-body);
}
.v2-location__point p {
    color: rgba(255,255,255,0.9);
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.55;
}

/* ---------- Project Location Map Section ---------- */
.v2-map {
    background: var(--v2-bg-sand);
    padding: var(--v2-section-y) 0;
}
.v2-map__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
@media (min-width: 768px) {
    .v2-map__inner {
        grid-template-columns: 2fr 3fr;
        gap: clamp(40px, 5vw, 80px);
    }
}

/* Left copy */
.v2-map__eyebrow {
    font-family: var(--v2-font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--v2-primary);
    text-transform: uppercase;
    margin-bottom: 14px;
}
.v2-map__title {
    font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
    color: var(--v2-text) !important;
    line-height: 1.25;
    margin-bottom: 16px !important;
}
.v2-map__address {
    color: var(--v2-text-soft);
    font-size: 15px;
    line-height: 1.8;
}
.v2-map__rule {
    border: 0;
    border-top: 1px solid var(--v2-primary);
    width: 56px;
    margin: 24px 0;
    opacity: 0.4;
}

/* Distance pills */
.v2-map__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-bottom: 28px;
}
.v2-map__pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--v2-bg-cream);
    border: 1px solid var(--v2-line);
    border-radius: 100px;
    padding: 7px 14px;
    font-size: 13px;
    color: var(--v2-text);
    white-space: nowrap;
}
.v2-map__pill-icon {
    color: var(--v2-primary);
    flex-shrink: 0;
}

/* Copy column flex so children stack correctly */
.v2-map__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Map section CTA — scoped modifier, does not affect other buttons */
.v2-btn--map-cta {
    display: inline-block;
    width: fit-content;
    padding: 16px 40px;
    margin-top: 24px;
}

/* Right map frame */
.v2-map__frame-wrap {
    border: 1.5px solid var(--v2-line);
    border-radius: var(--v2-radius);
    overflow: hidden;
    line-height: 0;
    box-shadow: 0 8px 32px rgba(60,45,12,0.10);
}
.v2-map__iframe {
    display: block;
    width: 100%;
    height: 440px;
    border: 0;
}
@media (max-width: 767px) {
    .v2-map__iframe { height: 300px; }
}

/* ---------- Masterplan ---------- */
.v2-masterplan {
    background: var(--v2-bg-tan);
    padding: var(--v2-section-y) 0;
}
.v2-masterplan__grid {
    display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
}
@media (min-width: 768px) {
    .v2-masterplan__grid { grid-template-columns: auto 1fr; gap: 64px; }
}
.v2-masterplan__title {
    color: var(--v2-primary);
}
.v2-masterplan__map img { width: 100%; border-radius: var(--v2-radius); box-shadow: var(--v2-shadow); }

/* ---------- Floorplans ---------- */
.v2-floorplans {
    background: var(--v2-bg-cream);
    padding: var(--v2-section-y) 0;
    position: relative;
}

.v2-floorplans__header {
    text-align: center;
    margin-bottom: 0;
}
.v2-page .v2-floorplans__title {
    color: var(--v2-text) !important;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    margin: 0 0 8px;
    position: relative;
    display: inline-block;
}
.v2-page .v2-floorplans__title::after {
    content: '';
    display: block;
    width: 56px; height: 3px;
    background: var(--v2-primary);
    border-radius: 2px;
    margin: 10px auto 0;
}
.v2-floorplans__sub {
    color: var(--v2-text-soft);
    font-size: 0.88rem;
    margin: 0;
    letter-spacing: 0.02em;
}

.v2-floorplans__scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 16px 4px 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--v2-line) transparent;
    margin-top: 24px;
}
.v2-floorplans__scroller::-webkit-scrollbar { height: 4px; }
.v2-floorplans__scroller::-webkit-scrollbar-track { background: transparent; }
.v2-floorplans__scroller::-webkit-scrollbar-thumb {
    background: var(--v2-line);
    border-radius: 2px;
}

/* Floorplan cards */
.v2-floorplans__card {
    flex: 0 0 240px;
    margin: 0;
    background: #fff;
    border: 1.5px solid var(--v2-primary);
    border-radius: var(--v2-radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 4px 24px rgba(60,45,12,0.08);
    transition: box-shadow 0.2s, transform 0.2s;
}
.v2-floorplans__card:hover {
    box-shadow: 0 10px 36px rgba(60,45,12,0.16);
    transform: translateY(-3px);
}
@media (min-width: 640px) { .v2-floorplans__card { flex: 0 0 280px; } }
@media (min-width: 960px) { .v2-floorplans__card { flex: 0 0 310px; } }

/* Tower name label inside card */
.v2-floorplans__card-label h3 { font: inherit; margin: 0; }
.v2-floorplans__card-label {
    display: block;
    text-align: center;
    font-family: var(--v2-font-display);
    font-size: clamp(0.78rem, 1.2vw, 0.92rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--v2-primary);
    padding: 14px 12px 10px;
    background: #fff;
    border-bottom: 1px solid var(--v2-line);
}

.v2-floorplans__card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Next button — outline style */
.v2-floorplans__next {
    position: absolute; right: 16px; top: 55%; transform: translateY(-50%);
    background: #fff; border: 1.5px solid var(--v2-primary);
    border-radius: 50%; padding: 4px; cursor: pointer;
    color: var(--v2-primary);
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    display: none;
    align-items: center; justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.v2-floorplans__next:hover {
    background: var(--v2-primary);
    color: #fff;
}
@media (min-width: 960px) { .v2-floorplans__next { display: inline-flex; } }

/* ---------- FAQ ---------- */
.v2-faq {
    background: var(--v2-bg-cream);
    padding: var(--v2-section-y) 0;
}
.v2-faq__heading {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 56px);
}
.v2-faq__title {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    margin-bottom: 12px !important;
    color: var(--v2-text);
}
.v2-faq__sub {
    color: var(--v2-text-soft);
    font-size: clamp(0.88rem, 1.4vw, 1rem);
    margin: 0;
}

.v2-faq__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.v2-faq__heading { width: 100%; max-width: 700px; }
.v2-faq__list { width: 100%; max-width: 700px; margin: 0 auto; }

/* Hide native checkbox */
.v2-faq__toggle {
    position: absolute;
    opacity: 0; width: 0; height: 0; pointer-events: none;
}

/* Each item */
.v2-faq__item {
    border-bottom: 1px solid var(--v2-line);
    position: relative;
}
.v2-faq__item:first-child { border-top: 1px solid var(--v2-line); }

/* Question row */
.v2-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 4px;
    cursor: pointer;
    font-family: var(--v2-font-body);
    font-size: clamp(0.92rem, 1.4vw, 1rem);
    font-weight: 600;
    color: var(--v2-text);
    user-select: none;
    -webkit-user-select: none;
    list-style: none;
}
.v2-faq__question::-webkit-details-marker { display: none; }
.v2-faq__question h3 { flex: 1; font: inherit; margin: 0; }

/* Chevron */
.v2-faq__chevron {
    flex-shrink: 0;
    color: var(--v2-primary);
    transition: transform 0.3s ease;
}

/* Answer — collapsed by default */
.v2-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    margin: 0;
    padding: 0 4px;
}
.v2-faq__answer p {
    color: var(--v2-text-soft);
    font-size: clamp(0.87rem, 1.3vw, 0.95rem);
    line-height: 1.7;
    padding-bottom: 20px;
    margin: 0;
}

/* Expanded state via checkbox */
.v2-faq__toggle:checked ~ dt .v2-faq__chevron {
    transform: rotate(180deg);
}
.v2-faq__toggle:checked ~ dd.v2-faq__answer {
    max-height: 500px;
    padding-top: 4px;
}

/* Keyboard focus */
.v2-faq__question:focus-visible {
    outline: 2px solid var(--v2-primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ---------- Visit CTA ---------- */
/* Visit CTA — full-viewport split, image edge-to-edge right */
.v2-visit {
    background: var(--v2-bg-sand);
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}
@media (min-width: 768px) {
    .v2-visit { grid-template-columns: 1fr 1fr; }
}

/* Left copy column */
.v2-visit__copy {
    display: flex;
    align-items: center;
    padding: clamp(48px, 8vh, 96px) clamp(24px, 5vw, 80px);
}
.v2-visit__copy-inner { max-width: 560px; }

.v2-visit__title {
    color: var(--v2-primary) !important;
    font-size: clamp(1.5rem, 2.8vw, 2.2rem) !important;
    margin-bottom: 0 !important;
    line-height: 1.25;
}
.v2-visit__rule {
    border: 0; border-top: 1px solid var(--v2-line);
    margin: clamp(20px, 3vh, 32px) 0;
    width: 100%;
}
.v2-visit__lede {
    color: var(--v2-text); margin-bottom: clamp(24px, 3.5vh, 36px);
    font-size: clamp(0.9rem, 1.3vw, 1rem);
}

/* Right image column — fills full height, edge-to-edge */
.v2-visit__media {
    position: relative;
    overflow: hidden;
    min-height: 50vw;
}
@media (min-width: 768px) {
    .v2-visit__media { min-height: unset; }
}
.v2-visit__media img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center bottom;
    border-radius: 0;
}

/* Mobile: image below copy, fixed height */
@media (max-width: 767px) {
    .v2-visit { min-height: unset; }
    .v2-visit__media { height: 70vw; max-height: 400px; position: relative; }
    .v2-visit__copy { padding: 40px 24px 28px; }
}

/* ---------- Form ---------- */
.v2-form { background: var(--v2-bg-cream); padding: var(--v2-section-y) 0; }
.v2-form__grid {
    display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center;
}
@media (min-width: 960px) {
    .v2-form__grid { grid-template-columns: 1fr 1.2fr; gap: 64px; }
}
.v2-form__media { align-self: stretch; }
.v2-form__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: var(--v2-radius-lg);
}
.v2-form__title {
    color: var(--v2-primary);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem) !important;
    margin-bottom: 14px !important; /* tight gap: title → lede */
}
.v2-form__lede {
    color: var(--v2-text-soft);
    font-size: 0.95rem;
    margin-bottom: 48px !important; /* override .v2-page p { margin:0 } reset */
    line-height: 1.6;
}
.v2-form__row {
    display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px;
}
@media (min-width: 640px) { .v2-form__row { grid-template-columns: 1fr 1fr; } }
.v2-form__field {
    display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.v2-form__field label {
    font-size: 0.82rem; color: var(--v2-text-soft); font-weight: 600;
    letter-spacing: 0.02em; text-transform: uppercase;
}
.v2-form__field input {
    border: 0; border-bottom: 1.5px solid var(--v2-line);
    padding: 12px 0; font-family: inherit; font-size: 1rem;
    background: transparent; color: var(--v2-text);
    transition: border-color 0.2s;
}
.v2-form__field input:focus {
    outline: none; border-bottom-color: var(--v2-primary);
}
.v2-form__field input::placeholder { color: var(--v2-line); }

/* Phone field — country code + number inline */
.v2-form__phone-wrap {
    display: flex;
    align-items: stretch;
    border-bottom: 1.5px solid var(--v2-line);
    transition: border-color 0.2s;
}
.v2-form__phone-wrap:focus-within {
    border-bottom-color: var(--v2-primary);
}
.v2-form__country-code {
    flex-shrink: 0;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--v2-text);
    padding: 12px 8px 12px 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 20px;
    border-right: 1px solid var(--v2-line);
    margin-right: 10px;
}
.v2-form__country-code:focus { outline: none; }
.v2-form__phone-wrap input {
    flex: 1;
    border: 0 !important;
    border-bottom: 0 !important;
    padding-left: 4px;
}
.v2-form__phone-wrap input:focus {
    outline: none;
    border: 0 !important;
}

.v2-form__hint {
    text-align: right; font-size: 0.78rem;
    color: var(--v2-text-soft); margin-bottom: 12px;
}
.v2-form__consent {
    font-size: 0.75rem;
    line-height: 1.55;
    color: var(--v2-text-soft);
    border-left: 2px solid var(--v2-line);
    padding-left: 10px;
    margin: 0 0 20px;
}
.v2-form__msg {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 0.88rem;
    line-height: 1.5;
}
.v2-form__msg--warning {
    background: #fef9ec;
    border: 1px solid #e6c84a;
    color: #7a5800;
}
.v2-form__msg--error {
    background: #fff2f2;
    border: 1px solid #f5a5a5;
    color: #b00020;
}

/* ---------- Footer ---------- */
.v2-footer {
    background: var(--v2-bg-cream);
    border-top: 1px solid var(--v2-line);
}

/* Disclaimer band */
.v2-footer__disclaimer {
    background: rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 24px 40px;
    text-align: center;
}
.v2-footer__disclaimer-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--v2-primary);
    margin-bottom: 8px !important;
}
.v2-footer__disclaimer-text {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(0,0,0,0.45);
    max-width: 900px;
    margin: 0 auto !important;
}
.v2-footer__disclaimer-body {
    opacity: 0.7;
    display: block;
}
.v2-footer__disclaimer-rera {
    opacity: 1;
    font-weight: 600;
    color: rgba(0,0,0,0.65);
}
.v2-footer__disclaimer-link {
    color: var(--v2-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.v2-footer__disclaimer-link:hover { border-bottom-color: var(--v2-primary); }
.v2-footer__disclaimer-rule {
    border: 0;
    border-top: 1px solid rgba(201,168,76,0.2);
    margin: 12px auto;
    max-width: 900px;
}
@media (max-width: 639px) {
    .v2-footer__disclaimer { padding: 20px 24px; }
}

/* Get Directions link */
.v2-footer__directions {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--v2-primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}
.v2-footer__directions:hover { border-bottom-color: var(--v2-primary); }

.v2-footer__top {
    display: grid; grid-template-columns: 1fr; gap: 32px;
    padding-top: 48px;
}
@media (min-width: 768px) {
    .v2-footer__top { grid-template-columns: 1fr 1fr 1.2fr; gap: 40px; }
}
.v2-footer__brand { display: flex; flex-direction: column; gap: 20px; }
.v2-footer__brand img { max-width: 200px; }
.v2-footer__project { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.v2-footer__address { font-style: normal; font-size: 0.85rem; line-height: 1.6; color: var(--v2-text-soft); }
.v2-footer__label {
    font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--v2-primary); font-weight: 700; margin-bottom: 6px;
}
.v2-footer__social { display: flex; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; align-items: center; }
.v2-footer__social a {
    width: 36px; height: 36px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--v2-primary);
    transition: opacity 0.2s, transform 0.2s;
}
.v2-footer__social a:hover { opacity: 0.82; transform: translateY(-2px); }
.v2-footer__social a img {
    width: 18px; height: 18px;
    filter: brightness(0) invert(1); /* white icons on gold circle */
    object-fit: contain;
}
.v2-footer__link {
    display: block; font-size: 0.85rem; color: var(--v2-text-soft);
    margin: 4px 0; text-decoration: underline;
}
.v2-footer__phone {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--v2-primary);
    text-decoration: none;
    margin-bottom: 12px;
}
.v2-footer__phone:hover { text-decoration: underline; }
.v2-footer__rera { font-size: 0.8rem; color: var(--v2-primary); margin-top: 12px; font-weight: 600; }
.v2-footer__divider {
    border: 0; border-top: 1px solid var(--v2-line); margin: 32px 0 16px;
}
.v2-footer__bottom {
    display: flex; gap: 12px; justify-content: space-between; flex-wrap: wrap;
    padding-bottom: 24px; font-size: 0.8rem; color: var(--v2-text-soft);
}
.v2-footer__credit span { font-weight: 700; color: var(--v2-text); }

/* ---------- Sticky Bottom Bar ---------- */
.v2-sticky-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9000;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    background: #0f1a2e;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
}

.v2-sticky-bar__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 16px;
    color: #fff;
    text-decoration: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--v2-font-body);
}
.v2-sticky-bar__action:hover { background: rgba(255,255,255,0.08); }

.v2-sticky-bar__action--call  { border-right: 1px solid rgba(255,255,255,0.12); }
.v2-sticky-bar__action--wa    { border-left:  1px solid rgba(255,255,255,0.12); }

.v2-sticky-bar__label {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}
.v2-sticky-bar__label strong {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    font-weight: 700;
}
.v2-sticky-bar__label small {
    font-size: 0.68rem;
    opacity: 0.75;
    font-weight: 400;
}

/* Gold CTA centre button */
.v2-sticky-bar__action--cta {
    background: var(--v2-primary);
    color: #fff;
    font-size: clamp(0.75rem, 1.4vw, 0.88rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 16px 28px;
    white-space: nowrap;
}
.v2-sticky-bar__action--cta:hover { background: #a07d10; }

/* Push footer above sticky bar */
.v2-page { padding-bottom: 64px; }

/* Mobile: compact single-line layout */
@media (max-width: 767px) {
    .v2-sticky-bar__action {
        padding: 10px 8px;
        gap: 6px;
    }
    .v2-sticky-bar__action svg { width: 16px; height: 16px; flex-shrink: 0; }
    .v2-sticky-bar__label strong { font-size: 0.65rem; letter-spacing: 0.06em; }
    .v2-sticky-bar__label small  { display: none; }   /* hide sub-label on mobile */
    .v2-sticky-bar__action--cta  { padding: 10px 12px; font-size: 0.72rem; }
    .v2-page { padding-bottom: 52px; }
}

/* ---------- Contact Modal ---------- */
.v2-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10500;
    background: rgba(15, 26, 46, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    /* hidden state */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.v2-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.v2-modal {
    background: var(--v2-bg-cream);
    border-radius: var(--v2-radius-lg);
    padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 44px);
    width: 100%;
    max-width: 580px;
    max-height: 90dvh;
    overflow-y: auto;
    position: relative;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 24px 64px rgba(15, 26, 46, 0.28);
}
.v2-modal-overlay.is-open .v2-modal {
    transform: translateY(0) scale(1);
}

.v2-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--v2-line);
    background: var(--v2-white);
    color: var(--v2-text-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    flex-shrink: 0;
}
.v2-modal__close:hover {
    background: var(--v2-primary);
    border-color: var(--v2-primary);
    color: #fff;
}

.v2-modal__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--v2-primary);
    margin: 0 0 10px;
}

/* Modal-specific form spacing overrides */
.v2-modal .v2-form__title  { margin-bottom: 10px !important; }
.v2-modal .v2-form__lede   { margin-bottom: 32px !important; }
.v2-modal .v2-form__form   { margin-top: 20px; }
.v2-modal .v2-form__row    { margin-bottom: 0; gap: 28px; }
.v2-modal .v2-form__field  { margin-bottom: 24px; }

/* Prevent body scroll when modal open */
body.v2-modal-open {
    overflow: hidden;
}

/* Submit button full-width inside modal */
.v2-modal__submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

@media (max-width: 639px) {
    /* Modal shell */
    .v2-modal {
        padding: 24px 16px 20px;
        border-radius: var(--v2-radius);
        max-height: 92dvh;
    }
    .v2-modal .v2-form__row {
        grid-template-columns: 1fr;
    }

    /* Compact form fields — modal + bottom form */
    .v2-form__lede {
        margin-bottom: 24px !important;
        font-size: 0.88rem;
    }
    .v2-form__title {
        font-size: 1.45rem !important;
        margin-bottom: 8px !important;
    }
    .v2-form__field {
        gap: 6px;
        margin-bottom: 16px;
    }
    .v2-form__field label {
        font-size: 0.72rem;
        letter-spacing: 0.01em;
    }
    .v2-form__field input {
        padding: 8px 0;
        font-size: 0.92rem;
    }
    .v2-form__country-code {
        font-size: 0.82rem;
        padding: 8px 20px 8px 0;
    }
    .v2-form__row {
        gap: 16px;
        margin-bottom: 0;
    }
    .v2-form__hint {
        font-size: 0.72rem;
        margin-bottom: 8px;
    }
    .v2-form__consent {
        font-size: 0.7rem;
        margin-bottom: 14px;
    }
    /* Hide decorative image in bottom form on mobile */
    .v2-form__media { display: none; }
    .v2-form { padding: clamp(24px, 6vw, 48px) 0; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .v2-page * { transition: none !important; animation: none !important; }
}