/* ============================================
   ASPIRATIONS VENTURES — Luxury Black & Gold
   Theme: Premium, high-contrast, bold
   ============================================ */

:root {
    --gold: #C9A84C;
    --gold-light: #D9BC7E;
    --gold-dark: #A8851E;
    --gold-glow: rgba(201,168,76,0.15);
    --gold-subtle: rgba(201,168,76,0.08);
    --black: #000000;
    --black-rich: #0A0A0A;
    --black-card: #111111;
    --black-elevated: #1A1A1A;
    --black-border: #222222;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-300: #BDBDBD;
    --gray-400: #9E9E9E;
    --gray-500: #757575;
    --white: #FFFFFF;
    --cream: #FFF8E7;
    --wa-green: #25D366;
    --wa-green-dark: #1EBE5A;
    --success: #16A34A;
    --error: #EF4444;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-stat: 'Libre Baskerville', Georgia, serif;
    --font-number: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;

    --shadow-gold: 0 4px 24px rgba(201,168,76,0.2);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.5);
    --shadow-card: 0 2px 16px rgba(0,0,0,0.4);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    -webkit-text-size-adjust: 100%;
    background: var(--black);
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray-200);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-top: 88px;
}
@media (max-width: 767px) { body { padding-top: 56px; } }
.detail-page { --detail-nav-height: 88px; }
@media (max-width: 767px) { .detail-page { --detail-nav-height: 56px; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--white);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
}

em {
    font-style: italic;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light) 50%, var(--gold-dark));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s linear infinite;
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
::selection { background: var(--gold); color: var(--black); }

.skip-link {
    position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
    position: fixed; top: 10px; left: 10px; width: auto; height: auto;
    padding: 12px 24px; background: var(--gold); color: var(--black);
    border-radius: var(--radius-md); font-size: 16px; z-index: 9999;
}

.page-transition {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(201,168,76,0.12) 0%, transparent 30%),
        rgba(0,0,0,0.96);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.42s var(--ease);
    z-index: 9999;
}
.page-transition--active {
    opacity: 1;
    pointer-events: all;
}

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ===== SECTION UTILITIES ===== */
.section-header { text-align: center; margin-bottom: 56px; }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 600;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-400);
    margin-top: 12px;
}

.text-link { color: var(--gold); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-body); font-weight: 600; font-size: 1rem;
    padding: 16px 32px; border-radius: var(--radius-md); border: 2px solid transparent;
    cursor: pointer; transition: all 0.25s var(--ease); white-space: nowrap;
    text-decoration: none; line-height: 1;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    color: var(--black); border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    position: relative; overflow: hidden;
}
.btn--gold::after {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.5s var(--ease);
}
.btn--gold:hover::after { left: 150%; }
.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #FFF0A0 100%);
    border-color: var(--gold-light); color: var(--black);
    transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.45);
}

.btn--whatsapp {
    background: linear-gradient(270deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
    background-size: 300% auto;
    animation: goldShimmer 4s linear infinite;
    color: var(--black); border-color: var(--gold);
    position: relative; overflow: hidden;
}
.btn--whatsapp::after {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.28) 50%, transparent 100%);
    transform: skewX(-20deg);
    transition: left 0.5s var(--ease);
}
.btn--whatsapp:hover::after { left: 150%; }
.btn--whatsapp:hover { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #FFF0A0 100%); color: var(--black); border-color: var(--gold-light); transform: translateY(-2px); }

.btn--wa-subtle {
    background: transparent;
    color: var(--gold-light);
    border-color: var(--black-border);
    font-size: 0.9rem;
    padding: 14px 24px;
}
.btn--wa-subtle svg {
    color: var(--gold-light);
    flex-shrink: 0;
}
.btn--wa-subtle:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    transform: translateY(-2px);
}

.btn--outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold-subtle); color: var(--gold-light); }

.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(0,0,0,0.88); backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--black-border);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.5); border-bottom-color: rgba(201,168,76,0.15); }
.nav--hidden { transform: translateY(-100%); }
@media (max-width: 767px) {
    .hero__badge { font-size: 0.62rem; letter-spacing: 0.08em; padding: 8px 14px; }
}

.nav__inner {
    max-width: 1440px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between; height: 88px;
}

.nav__logo { display: flex; align-items: center; text-decoration: none; }
.nav__logo-img { height: 72px; width: auto; object-fit: contain; }
.nav__logo-text {
    display: block;
    line-height: 1;
    white-space: nowrap;
}
.nav__links { display: none; align-items: center; gap: 32px; }
.nav__links a { font-size: 0.95rem; font-weight: 500; color: var(--gray-300); }
.nav__links a:hover { color: var(--gold); }

.nav__cta {
    font-weight: 600 !important; color: var(--gold) !important;
    padding: 10px 24px; border: 1.5px solid var(--gold); border-radius: var(--radius-md);
}
.nav__cta:hover { background: var(--gold) !important; color: var(--black) !important; }

.nav__search-btn {
    display: flex; align-items: center; justify-content: center;
    background: none; border: 1px solid rgba(201,168,76,0.25); border-radius: 50%;
    width: 36px; height: 36px; color: var(--gray-400); cursor: pointer;
    transition: all 0.25s var(--ease);
}
.nav__search-btn:hover { color: var(--gold); border-color: rgba(201,168,76,0.5); }

.nav__mobile-actions {
    display: flex; align-items: center; gap: 12px;
}
.nav__search-btn--mobile { display: flex; }
@media (min-width: 768px) {
    .nav__search-btn--mobile { display: none; }
    .nav__mobile-actions { display: contents; }
}

/* Search overlay */
.search-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(4,4,4,0.75);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    display: flex; flex-direction: column; align-items: center;
    padding-top: 10vh;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.search-overlay.is-open {
    opacity: 1; pointer-events: all;
}
.search-overlay__inner {
    width: 90%; max-width: 640px;
    transform: translateY(20px); opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s var(--ease);
    transition-delay: 0.08s;
}
.search-overlay.is-open .search-overlay__inner {
    transform: translateY(0); opacity: 1;
}
.search-overlay__header {
    display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.search-overlay__input-wrap {
    flex: 1; display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; border-radius: var(--radius-full);
    background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.2);
}
.search-overlay__input-wrap svg { color: var(--gold); flex-shrink: 0; }
.search-overlay__input {
    flex: 1; background: none; border: none; outline: none;
    font-family: var(--font-body); font-size: 1.1rem; color: var(--white);
}
.search-overlay__input::placeholder { color: var(--gray-500); }
.search-overlay__close {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--gray-400); cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.search-overlay__close:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}
/* Suggested searches */
.search-suggestions {
    margin-bottom: 24px;
}
.search-suggestions__label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.search-suggestions__tags {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.search-suggestion-tag {
    padding: 8px 16px; border-radius: var(--radius-full);
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    color: var(--gray-300); font-size: 0.82rem; font-family: var(--font-body);
    cursor: pointer; transition: all 0.2s var(--ease);
}
.search-suggestion-tag:hover {
    background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.25); color: var(--gold);
}
/* Results */
.search-overlay__results {
    display: flex; flex-direction: column; gap: 8px; max-height: 55vh; overflow-y: auto;
}
.search-result {
    display: flex; align-items: center; gap: 16px; padding: 14px 18px;
    border-radius: var(--radius-md); background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06); cursor: pointer;
    text-decoration: none; color: inherit;
    opacity: 0; transform: translateY(10px);
    animation: searchResultIn 0.3s var(--ease) forwards;
}
.search-result:nth-child(1) { animation-delay: 0s; }
.search-result:nth-child(2) { animation-delay: 0.04s; }
.search-result:nth-child(3) { animation-delay: 0.08s; }
.search-result:nth-child(4) { animation-delay: 0.12s; }
.search-result:nth-child(5) { animation-delay: 0.16s; }
.search-result:nth-child(n+6) { animation-delay: 0.2s; }
@keyframes searchResultIn {
    to { opacity: 1; transform: translateY(0); }
}
.search-result:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.2); }
.search-result__thumb {
    width: 56px; height: 56px; border-radius: var(--radius-sm);
    object-fit: cover; flex-shrink: 0;
}
.search-result__info { flex: 1; min-width: 0; }
.search-result__name {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--white);
    margin-bottom: 2px;
}
.search-result__meta { font-size: 0.78rem; color: var(--gray-400); }
.search-no-results {
    text-align: center; color: var(--gray-500); padding: 40px 0; font-size: 0.95rem;
    opacity: 0; animation: searchResultIn 0.3s var(--ease) forwards;
}

/* All projects panel search */
.all-projects-panel__search {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; border-radius: var(--radius-full);
    background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.15);
    margin: 0 clamp(24px, 6vw, 80px) 32px;
    max-width: 360px;
}
.all-projects-panel__search svg { color: var(--gold); flex-shrink: 0; }
.all-projects-panel__search-input {
    flex: 1; background: none; border: none; outline: none;
    font-family: var(--font-body); font-size: 0.85rem; color: var(--white);
}
.all-projects-panel__search-input::placeholder { color: var(--gray-500); }

@media (min-width: 768px) {
    .nav__links { display: flex; }
    .nav__hamburger { display: none !important; }
}

@media (max-width: 767px) {
    .nav__inner { height: 56px; padding: 0 16px; }
    .nav__logo-text {
        font-size: clamp(0.9rem, 4.3vw, 1.1rem) !important;
        max-width: calc(100vw - 92px);
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .section-nav { top: 56px; }
}

/* ===== SECTION JUMP NAV ===== */
.section-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--detail-nav-height);
    z-index: 99;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--black-border);
    transform: translate3d(0, 0, 0);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), background 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.section-nav[hidden] {
    display: none !important;
}
.section-nav.visible {
    opacity: 1;
}
.nav.nav--hidden + .section-nav {
    transform: translate3d(0, calc(-1 * var(--detail-nav-height)), 0);
}
.detail-page #main-content {
    padding-top: var(--detail-tour-offset, 0px);
}
.section-nav__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 24px;
}
.section-nav__track {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.section-nav__track::-webkit-scrollbar { display: none; }
.section-nav__link {
    flex-shrink: 0;
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-500);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    white-space: nowrap;
    transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
    cursor: pointer;
}
.section-nav__link:hover {
    color: var(--gray-200);
}
.section-nav__link.active {
    color: var(--gold);
    border-color: rgba(201,168,76,0.35);
    background: rgba(201,168,76,0.08);
}
@media (max-width: 767px) {
    .section-nav__inner { padding: 10px 16px; }
    .section-nav__track { gap: 4px; }
    .section-nav__link { font-size: 0.7rem; padding: 5px 12px; }
}

.nav__hamburger {
    display: flex; flex-direction: column; gap: 5px;
    cursor: pointer; background: none; border: none; padding: 8px; z-index: 200;
}
.nav__hamburger span {
    display: block; width: 24px; height: 2px; background: var(--gold);
    transition: all 0.3s var(--ease); border-radius: 2px;
}
.nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; }
.nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
    display: none; flex-direction: column; padding: 0 24px 24px;
    background: var(--black-rich); border-bottom: 1px solid var(--black-border);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
    display: block; padding: 16px 0; font-size: 1.1rem; font-weight: 500;
    color: var(--gray-300); border-bottom: 1px solid var(--black-border);
}
.nav__mobile-cta {
    margin-top: 10px; text-align: center; padding: 16px !important;
    background: var(--gold); color: var(--black) !important;
    border-radius: var(--radius-md); border: none !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 85vh;
    padding: 48px 0 72px;
    overflow: hidden;
    background: var(--black);
    display: flex;
    align-items: flex-start;
}

.hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 15% 85%, rgba(201,168,76,0.10) 0%, transparent 45%),
        radial-gradient(ellipse at 85% 15%, rgba(201,168,76,0.07) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Grain/noise texture overlay */
.hero__bg::after {
    content: '';
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: 0.4;
    pointer-events: none;
}

.hero__grid { display: grid; gap: 48px; align-items: center; width: 100%; }
@media (min-width: 900px) {
    .hero__grid { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px; background: var(--black-elevated);
    border: 1px solid rgba(201,168,76,0.35); border-radius: var(--radius-full);
    font-size: 0.78rem; font-weight: 700; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
    box-shadow: 0 0 16px rgba(201,168,76,0.08);
}

/* Ornamental divider between badge and title */
.hero__ornament {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 20px; width: fit-content;
}
.hero__ornament-line {
    height: 1px; width: 40px;
    background: linear-gradient(to right, transparent, var(--gold));
}
.hero__ornament-line--right {
    background: linear-gradient(to left, transparent, var(--gold));
}
.hero__ornament-diamond {
    width: 6px; height: 6px;
    background: var(--gold); transform: rotate(45deg);
    opacity: 0.8;
}
.hero__badge-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero__title {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    margin-bottom: 20px; line-height: 1.08;
    letter-spacing: -0.01em;
}
.hero__title-accent {
    display: block; margin-top: 10px;
    background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, #FFF0A0 55%, var(--gold-light) 70%, var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
}
@keyframes goldShimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--gray-300); max-width: 540px;
    margin-bottom: 32px; line-height: 1.8;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }

.hero__note {
    font-size: 0.9rem; color: var(--gray-500); font-style: italic;
    max-width: 500px; line-height: 1.6;
}

.hero__visual { position: relative; }
.hero__image-frame {
    position: relative;
    padding: 3px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light) 50%, var(--gold-dark));
    box-shadow: 0 0 40px rgba(201,168,76,0.18), var(--shadow-lg);
}
/* Corner accent marks */
.hero__image-frame::before,
.hero__image-frame::after {
    content: '';
    position: absolute;
    width: 24px; height: 24px;
    border-color: var(--gold-light); border-style: solid;
    z-index: 2;
}
.hero__image-frame::before {
    top: -6px; left: -6px;
    border-width: 2px 0 0 2px;
    border-radius: 4px 0 0 0;
}
.hero__image-frame::after {
    bottom: -6px; right: -6px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 4px 0;
}
.hero__image-bg { display: none; }
.hero__image {
    position: relative; width: 100%; height: auto; aspect-ratio: 4/3;
    object-fit: cover; border-radius: calc(var(--radius-xl) - 3px);
    display: block;
}

.hero__quote-card {
    display: none; position: absolute; bottom: 28px; right: -20px;
    background: rgba(10,10,10,0.92);
    border: 1px solid rgba(201,168,76,0.5);
    border-left: 3px solid var(--gold);
    padding: 20px 24px; border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px rgba(201,168,76,0.1);
    max-width: 280px;
    backdrop-filter: blur(12px);
}
.hero__quote-card p {
    font-family: var(--font-display); font-size: 1.15rem;
    font-style: italic; color: var(--gold-light); line-height: 1.5;
}
@media (min-width: 900px) { .hero__quote-card { display: block; } }

/* ===== BUILDERS BAR ===== */
.builders-bar {
    padding: 36px 0; background: var(--black-rich);
    border-top: 1px solid rgba(201,168,76,0.15);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.builders-bar__label {
    text-align: center; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--gray-500); margin-bottom: 20px;
}
.builders-bar__logos {
    overflow: hidden;
    font-family: var(--font-display); font-size: 0.92rem; font-weight: 500;
    mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.builders-bar__marquee {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marqueeScroll var(--builders-duration, 35s) linear infinite;
}
.builders-bar__track {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    padding-right: 12px;
}
.builders-bar__chip {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    white-space: nowrap;
    padding: 7px 18px;
    border: 1px solid var(--black-border);
    border-radius: var(--radius-full);
    color: var(--gray-400);
    background: var(--black-card);
    transition: all 0.25s var(--ease);
    cursor: pointer;
}
.builders-bar__chip:hover {
    color: var(--gold);
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.05);
    box-shadow: 0 0 12px rgba(201,168,76,0.1);
}
.builders-bar__chip:focus-visible {
    outline: 2px solid rgba(201,168,76,0.45);
    outline-offset: 2px;
    color: var(--gold);
}
@keyframes marqueeScroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(calc(-1 * var(--builders-loop-width, 50%)), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
    .builders-bar__marquee {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* ===== PROJECTS SECTION ===== */
.projects { padding: 0; background: var(--black); }

.projects__header {
    padding: 64px 0 32px;
    background: var(--black-rich);
    border-bottom: 1px solid var(--black-border);
    position: relative; z-index: 10; overflow: visible;
}

.projects__filters {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 10px;
}

/* Unified filter dropdown (location + brand) */
.projects__filter-dropdown { position: relative; }
.projects__filter-toggle {
    display: flex; align-items: center; gap: 7px;
    padding: 10px 20px; font-family: var(--font-body); font-size: 0.9rem;
    font-weight: 600; background: transparent; color: var(--gray-400);
    border: 1.5px solid var(--black-border); border-radius: var(--radius-full);
    cursor: pointer; transition: all 0.2s var(--ease); white-space: nowrap;
}
.projects__filter-toggle:hover,
.projects__filter-toggle[aria-expanded="true"] { border-color: var(--gold); color: var(--gold); }
.projects__filter-toggle[aria-expanded="true"] .projects__filter-chevron { transform: rotate(180deg); }
.projects__filter-chevron { transition: transform 0.25s ease; }
.projects__filter-toggle.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.projects__filter-toggle.active svg { stroke: var(--black); fill: var(--black); }
.projects__filter-menu {
    position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-6px);
    min-width: 190px; background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: 12px; padding: 6px; z-index: 100;
    opacity: 0; visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.projects__filter-menu.open {
    opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.projects__filter-option {
    display: block; width: 100%; padding: 9px 16px;
    font-family: var(--font-body); font-size: 0.85rem; font-weight: 500;
    color: var(--gray-300); background: none; border: none; border-radius: 8px;
    cursor: pointer; text-align: left; transition: all 0.15s ease;
}
.projects__filter-option:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.projects__filter-option.active { color: var(--gold); font-weight: 600; }

/* View All button (inline with filters) */
.projects__view-all-btn {
    display: flex; align-items: center; gap: 7px;
    padding: 10px 20px; font-family: var(--font-body); font-size: 0.9rem;
    font-weight: 600; background: transparent; color: var(--gray-400);
    border: 1.5px solid var(--black-border); border-radius: var(--radius-full);
    cursor: pointer; transition: all 0.2s var(--ease); white-space: nowrap;
}
.projects__view-all-btn:hover { border-color: var(--gold); color: var(--gold); }
.projects__view-all-btn svg { transition: transform 0.2s ease; }
.projects__view-all-btn:hover svg { transform: scale(1.1); }

/* === Full-Screen Showcase === */
.projects__showcase { position: relative; }

.projects__showcase .projects__loading {
    height: 100svh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: var(--gray-500);
}

/* === Project Slide === */
.project-slide {
    height: 100svh;
    scroll-margin-top: 88px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.project-slide__bg { position: absolute; inset: 0; z-index: 0; }

.project-slide__img {
    width: 100%; height: 100%; object-fit: cover;
    transform: scale(1.05);
    transition: transform 1.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.6);
}
.project-slide.is-active .project-slide__img { transform: scale(1); }

.project-slide__blank {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 22% 30%, rgba(201,168,76,0.16), transparent 20%),
        radial-gradient(circle at 80% 65%, rgba(201,168,76,0.08), transparent 26%),
        linear-gradient(135deg, #131313 0%, #050505 52%, #101010 100%);
}
.project-slide__blank::before,
.project-slide__blank::after {
    content: '';
    position: absolute;
    inset: 18%;
    border: 1px solid rgba(201,168,76,0.14);
    border-radius: 50%;
}
.project-slide__blank::after {
    inset: 28%;
    border-color: rgba(255,255,255,0.06);
}

.project-slide__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        110deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.55) 52%,
        rgba(0,0,0,0.08) 100%
    );
}

.project-slide__content {
    position: relative; z-index: 2;
    max-width: 580px;
}

/* Staggered entrance for all direct children */
.project-slide__content > * {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.project-slide.is-active .project-slide__content > * { opacity: 1; transform: translateY(0); }
.project-slide.is-active .project-slide__content > *:nth-child(1) { transition-delay: 0.04s; }
.project-slide.is-active .project-slide__content > *:nth-child(2) { transition-delay: 0.12s; }
.project-slide.is-active .project-slide__content > *:nth-child(3) { transition-delay: 0.20s; }
.project-slide.is-active .project-slide__content > *:nth-child(4) { transition-delay: 0.28s; }
.project-slide.is-active .project-slide__content > *:nth-child(5) { transition-delay: 0.36s; }
.project-slide.is-active .project-slide__content > *:nth-child(6) { transition-delay: 0.44s; }
.project-slide.is-active .project-slide__content > *:nth-child(7) { transition-delay: 0.52s; }
.project-slide.is-active .project-slide__content > *:nth-child(8) { transition-delay: 0.60s; }

.project-slide__badge {
    display: inline-flex; align-items: center;
    padding: 5px 14px; background: var(--gold); color: var(--black);
    font-size: 0.67rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.18em; border-radius: var(--radius-full); margin-bottom: 16px;
}

.project-slide__builder {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.24em; color: var(--gold); margin-bottom: 14px;
}

.project-slide__name {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    font-weight: 600; color: var(--white);
    line-height: 1.05; margin-bottom: 18px; letter-spacing: -0.01em;
}

.project-slide__meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: rgba(255,255,255,0.58);
    margin-bottom: 8px;
    font-weight: 400;
}
.project-slide__meta-icon {
    flex-shrink: 0;
    color: var(--gold-light);
}

.project-slide__price {
    font-family: var(--font-number); font-size: 1.8rem;
    font-weight: 500; color: var(--gold-light);
    margin-bottom: 6px; letter-spacing: 0.03em;
}

.project-slide__config {
    font-size: 0.95rem; color: rgba(255,255,255,0.72); margin-bottom: 32px;
}

.project-slide__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }

.project-slide__links { display: flex; gap: 8px; flex-wrap: wrap; }

.project-slide__link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.62);
    padding: 6px 12px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13);
    transition: all 0.2s var(--ease); text-decoration: none;
}
.project-slide__link:hover {
    background: rgba(201,168,76,0.18); border-color: var(--gold); color: var(--gold-light);
}

.project-slide__rera {
    font-size: 0.75rem; color: rgba(255,255,255,0.55);
    margin-top: 10px; margin-bottom: 0;
}

/* === Navigation Dots (fixed) === */
.projects__nav {
    position: fixed; right: 28px; top: 50%;
    transform: translateY(-50%); z-index: 50;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s ease;
}
.projects__nav.visible { opacity: 1; pointer-events: all; }

.projects__nav-dots { display: flex; flex-direction: column; align-items: center; gap: 10px; }

.projects__nav-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: rgba(255,255,255,0.22); border: none;
    cursor: pointer; padding: 0;
    transition: all 0.3s var(--ease);
}
.projects__nav-dot.active { background: var(--gold); transform: scale(1.6); }
.projects__nav-dot:hover:not(.active) { background: rgba(255,255,255,0.55); }

.projects__nav-counter {
    font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
    color: rgba(201,168,76,0.9); font-family: var(--font-number);
    margin-top: 4px;
}

/* === All Projects nav button === */
.projects__nav-all {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; padding: 0;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
    margin-bottom: 6px;
}
.projects__nav-all:hover {
    background: rgba(201,168,76,0.22);
    border-color: var(--gold);
    transform: scale(1.12);
}

/* === All Projects overlay (full-screen) === */
.all-projects-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(4,4,4,0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex; flex-direction: column;
    opacity: 0; pointer-events: none;
    transition: opacity 0.4s var(--ease);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.all-projects-overlay::-webkit-scrollbar { width: 4px; }
.all-projects-overlay::-webkit-scrollbar-track { background: transparent; }
.all-projects-overlay::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.25); border-radius: 2px; }
.all-projects-overlay.is-open {
    opacity: 1; pointer-events: all;
}

.all-projects-panel {
    width: 100%; min-height: 100%;
    display: flex; flex-direction: column;
    padding: 0 0 64px;
}

.all-projects-panel__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 44px clamp(24px, 6vw, 80px) 36px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    margin-bottom: 56px;
}
.all-projects-panel__eyebrow {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 5px;
}
.all-projects-panel__title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 500; color: var(--white);
    letter-spacing: 0.01em; line-height: 1;
}
.all-projects-panel__close {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--gray-400);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; padding: 0; flex-shrink: 0;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.all-projects-panel__close:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.3);
    color: var(--white);
}

.all-projects-panel__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px clamp(24px, 4vw, 56px);
    padding: 0 clamp(24px, 6vw, 80px);
}

/* === All Projects card === */
.apo-card {
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    opacity: 0;
    transform: translateY(24px);
    animation: apoCardIn 0.5s var(--ease) forwards;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.apo-card.hidden {
    opacity: 0; transform: translateY(12px) scale(0.97);
    pointer-events: none; position: absolute; visibility: hidden;
}
@keyframes apoCardIn {
    to { opacity: 1; transform: translateY(0); }
}
.apo-card:nth-child(1)  { animation-delay: 0.04s; }
.apo-card:nth-child(2)  { animation-delay: 0.09s; }
.apo-card:nth-child(3)  { animation-delay: 0.14s; }
.apo-card:nth-child(4)  { animation-delay: 0.19s; }
.apo-card:nth-child(5)  { animation-delay: 0.24s; }
.apo-card:nth-child(6)  { animation-delay: 0.29s; }
.apo-card:nth-child(7)  { animation-delay: 0.34s; }
.apo-card:nth-child(8)  { animation-delay: 0.39s; }
.apo-card:nth-child(9)  { animation-delay: 0.44s; }
.apo-card:nth-child(10) { animation-delay: 0.49s; }
.apo-card:nth-child(11) { animation-delay: 0.54s; }

.apo-card__visual {
    position: relative;
    padding-bottom: 62%;
    overflow: hidden;
    border-radius: 6px;
    background: #0a0a0a;
}
.apo-card__img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.apo-card__img--blank {
    background: linear-gradient(135deg, #111 0%, #1c1c1c 100%);
}
.apo-card:hover .apo-card__img { transform: scale(1.05); }
.apo-card__visual-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
    transition: opacity 0.3s;
}
.apo-card:hover .apo-card__visual-overlay { opacity: 0.6; }
.apo-card__badge {
    position: absolute; top: 12px; left: 12px;
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; padding: 4px 10px;
    background: var(--gold); color: var(--black);
    border-radius: var(--radius-full);
}

.apo-card__body {
    padding: 16px 4px 0;
}
.apo-card__name {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500; color: var(--white);
    line-height: 1.2; margin-bottom: 5px;
    transition: color 0.25s;
}
.apo-card:hover .apo-card__name { color: var(--gold-light); }
.apo-card__sub {
    display: flex; align-items: center; gap: 10px;
    flex-wrap: wrap;
}
.apo-card__builder {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: rgba(201,168,76,0.88);
}
.apo-card__location {
    font-size: 0.68rem; color: var(--gray-500);
}
.apo-card__price {
    font-size: 0.8rem; font-weight: 600;
    color: var(--gold); margin-top: 6px;
}

@media (max-width: 900px) {
    .all-projects-panel__grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
}
@media (max-width: 540px) {
    .all-projects-panel__head { padding: 28px 20px 24px; margin-bottom: 36px; }
    .all-projects-panel__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; padding: 0 20px; }
}

/* === Shared spinner === */
.spinner-gold {
    width: 36px; height: 36px; border: 3px solid var(--black-border);
    border-top-color: var(--gold); border-radius: 50%;
    animation: spin 1s linear infinite; margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

.projects__disclaimer {
    text-align: center; font-size: 0.82rem; color: var(--gray-500);
    padding: 22px 24px; background: var(--black-rich);
    border-top: 1px solid var(--black-border); font-style: italic;
}

@media (max-width: 767px) {
    .projects__nav { right: 14px; }
    .project-slide__name { font-size: clamp(2rem, 8vw, 3rem); }
    .project-slide__price { font-size: 1.4rem; }
    .project-slide__config { margin-bottom: 24px; }
    .project-slide__actions .btn { padding: 14px 20px; font-size: 0.9rem; }
}

/* ===== EMPATHY ===== */
.empathy { padding: 96px 0; background: var(--black); }

.empathy__grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .empathy__grid { grid-template-columns: repeat(2, 1fr); } }

.empathy__card {
    padding: 32px; border-radius: var(--radius-lg);
    border: 1px solid var(--black-border); background: var(--black-card);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.empathy__card:hover { transform: translateY(-3px); border-color: rgba(201,168,76,0.2); }

.empathy__icon {
    width: 52px; height: 52px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; background: var(--gold-subtle); color: var(--gold);
}

.empathy__question {
    font-size: 1.25rem; font-weight: 700; margin-bottom: 10px;
    color: var(--white); font-family: var(--font-body);
}
.empathy__answer { font-size: 1rem; color: var(--gray-400); line-height: 1.8; }

/* ===== MARKET ===== */
.market { padding: 96px 0; background: var(--black-elevated); }
.market__inner { max-width: 1000px; margin: 0 auto; }
.market__label {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em;
    color: var(--gold); margin-bottom: 8px;
}
.market .section-title { margin-bottom: 48px; }
.market__cols { display: grid; gap: 28px; margin-bottom: 32px; }
@media (min-width: 768px) { .market__cols { grid-template-columns: repeat(3, 1fr); } }

.market__col-title {
    font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--gold); margin-bottom: 12px;
}
.market__col p { color: var(--gray-300); font-size: 1rem; line-height: 1.8; }
.market__cta-text { font-size: 1.1rem; color: var(--gray-400); }

/* ===== SERVICES ===== */
.services { padding: 96px 0; background: var(--black); }
.services__grid { display: grid; gap: 24px; }
@media (min-width: 768px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }

.service-card {
    background: var(--black-card); padding: 36px; border-radius: var(--radius-lg);
    border: 1px solid var(--black-border); transition: all 0.3s var(--ease);
}
.service-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-3px); }

.service-card__icon {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--gold-subtle); display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 20px; color: var(--gold);
}
.service-card__title {
    font-size: 1.4rem; margin-bottom: 10px; color: var(--white);
}
.service-card__desc { font-size: 1.05rem; color: var(--gray-400); line-height: 1.8; }

/* Services Tabs */
.services__tabs {
    display: flex; gap: 0; justify-content: center; margin-bottom: 40px;
    border: 1px solid var(--black-border); border-radius: var(--radius-lg);
    overflow: hidden; max-width: 400px; margin-left: auto; margin-right: auto;
}
.services__tab {
    flex: 1; padding: 14px 24px; font-size: 0.95rem; font-weight: 600;
    font-family: var(--font-body); color: var(--gray-400);
    background: transparent; border: none; cursor: pointer;
    transition: all 0.3s var(--ease); letter-spacing: 0.02em;
}
.services__tab:hover { color: var(--gold-light); }
.services__tab.active {
    background: var(--gold); color: var(--black);
}
.services__tab-content { display: none; }
.services__tab-content.active { display: grid; }

/* Nav Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
    display: flex; align-items: center; gap: 4px;
    font-size: 0.95rem; font-weight: 500; color: var(--gray-300);
    cursor: pointer; background: none; border: none; font-family: inherit;
    text-decoration: none;
}
.nav__dropdown-trigger:hover { color: var(--gold); }
.nav__dropdown-trigger svg { transition: transform 0.2s ease; }
.nav__dropdown:hover .nav__dropdown-trigger svg { transform: rotate(180deg); }
.nav__dropdown-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    min-width: 180px; padding: 8px 0; margin-top: 12px;
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: var(--radius); opacity: 0; visibility: hidden;
    transition: all 0.2s ease; z-index: 100;
}
.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1; visibility: visible; margin-top: 8px;
}
.nav__dropdown-item {
    display: block; padding: 10px 20px; font-size: 0.9rem;
    color: var(--gray-300); white-space: nowrap;
    transition: all 0.15s ease;
}
.nav__dropdown-item:hover {
    color: var(--gold); background: rgba(201,168,76,0.08);
}

/* Hero Microcopy */
.hero__microcopy {
    font-size: 0.85rem; color: var(--gray-500); margin-top: 12px;
    letter-spacing: 0.02em;
}

/* Inline CTA Microcopy */
.inline-cta__microcopy {
    font-size: 0.85rem; color: var(--gray-500); margin-top: 8px;
    letter-spacing: 0.02em;
}

/* Scroll Nudge Bar */
.scroll-nudge {
    position: fixed; bottom: -60px; left: 0; right: 0; z-index: 900;
    background: var(--black-card); border-top: 1px solid var(--gold-subtle);
    padding: 14px 24px; display: flex; align-items: center;
    justify-content: center; gap: 16px;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-nudge.visible { bottom: 0; }
.scroll-nudge__text {
    font-size: 0.95rem; color: var(--gray-300); margin: 0;
}
.scroll-nudge__text a {
    color: var(--gold); font-weight: 600; text-decoration: underline;
    text-underline-offset: 3px;
}
.scroll-nudge__text a:hover { color: var(--gold-light); }
.scroll-nudge__close {
    background: none; border: none; color: var(--gray-500);
    font-size: 1.4rem; cursor: pointer; padding: 0 4px;
    line-height: 1; transition: color 0.2s ease;
}
.scroll-nudge__close:hover { color: var(--white); }
@media (max-width: 767px) {
    .scroll-nudge { display: none; }
}

/* ===== TRUST ===== */
.trust { padding: 96px 0; background: var(--black-elevated); }
.trust__content { max-width: 800px; margin: 0 auto; }
.trust .section-title { margin-bottom: 48px; }
.trust__points { display: flex; flex-direction: column; gap: 32px; }
.trust__point { display: flex; gap: 24px; align-items: flex-start; }
.trust__point-num {
    font-family: var(--font-number); font-size: 2rem; font-weight: 400;
    color: var(--gold); flex-shrink: 0; line-height: 1.3;
    letter-spacing: 0.05em; opacity: 0.85;
}
.trust__point h3 {
    font-family: var(--font-body); font-size: 1.15rem; font-weight: 700;
    margin-bottom: 6px; color: var(--white);
}
.trust__point p { font-size: 1.05rem; color: var(--gray-400); line-height: 1.8; }

/* ===== STORY ===== */
.story { padding: 96px 0; background: var(--black); }
.story__card {
    position: relative; max-width: 800px; margin: 0 auto;
    background: var(--black-card); padding: 40px 28px;
    border-radius: var(--radius-xl); border: 1px solid var(--black-border);
    overflow: hidden;
}
@media (min-width: 768px) { .story__card { padding: 56px 48px; } }

.story__accent {
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
}
.story__title { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 28px; }
.story__text p { font-size: 1.1rem; color: var(--gray-300); line-height: 1.85; }
.story__highlight {
    font-weight: 600; color: var(--gold-light) !important;
    padding: 16px 20px; background: var(--gold-subtle);
    border-left: 3px solid var(--gold); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 20px 0;
}

/* ===== INLINE CTA ===== */
.inline-cta { padding: 96px 0; background: var(--black-rich); }
.inline-cta__inner { text-align: center; max-width: 700px; margin: 0 auto; }
.inline-cta__title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--white); margin-bottom: 16px;
}
.inline-cta__desc { font-size: 1.15rem; color: var(--gray-400); margin-bottom: 28px; }
.inline-cta__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; padding: 0 16px; }
@media (max-width: 767px) {
    .inline-cta__actions { flex-direction: column; align-items: stretch; }
    .inline-cta__actions .btn { text-align: center; }
    .inline-cta { padding: 64px 0; }
}

/* ===== FAQ ===== */
.faq { padding: 96px 0; background: var(--black); }
.faq__list { max-width: 780px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--black-border); }
.faq__item:last-child { border-bottom: none; }
.faq__question {
    display: flex; justify-content: space-between; align-items: center;
    width: 100%; padding: 22px 0; font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 600; color: var(--gray-200);
    cursor: pointer; list-style: none; transition: color 0.2s var(--ease);
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question:hover { color: var(--gold); }
.faq__chevron { flex-shrink: 0; color: var(--gray-500); transition: transform 0.3s var(--ease); }
.faq__item[open] .faq__chevron { transform: rotate(180deg); color: var(--gold); }
.faq__answer { padding: 0 0 22px; }
.faq__answer p { font-size: 1.05rem; color: var(--gray-400); line-height: 1.8; }

/* ===== CONTACT ===== */
.contact { padding: 96px 0; background: var(--black-elevated); overflow: hidden; }
.contact__grid { display: grid; gap: 48px; }
@media (min-width: 900px) { .contact__grid { grid-template-columns: 1fr 1fr; } }

.contact__title {
    font-size: clamp(2rem, 4vw, 2.6rem); color: var(--white); margin-bottom: 16px;
}
.contact__subtitle { font-size: 1.15rem; color: var(--gray-400); margin-bottom: 36px; line-height: 1.8; }

.contact__channels { display: flex; flex-direction: column; gap: 16px; }
.contact__channel {
    display: flex; align-items: center; gap: 16px;
    padding: 16px; border-radius: var(--radius-md);
    transition: background 0.2s var(--ease); text-decoration: none; color: var(--gray-200);
}
a.contact__channel:hover { background: rgba(201,168,76,0.06); color: var(--white); }

.contact__channel-icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(201,168,76,0.1); display: flex;
    align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--gold);
}
.contact__channel-icon--wa { background: rgba(37,211,102,0.15); color: #25D366; }
.contact__channel-label {
    display: block; font-size: 0.72rem; text-transform: uppercase;
    letter-spacing: 0.12em; color: var(--gray-500); font-weight: 600;
}
.contact__channel-value { display: block; font-size: 1.15rem; font-weight: 700; color: var(--white); word-break: break-all; }
@media (max-width: 767px) {
    .contact__channel-value { font-size: 0.95rem; }
}

.contact__rera {
    margin-top: 24px; padding: 12px 16px; background: var(--gold-subtle);
    border: 1px solid rgba(201,168,76,0.2); border-radius: var(--radius-md);
    font-size: 0.85rem; color: var(--gold); font-weight: 600;
}

/* Contact Form */
.contact__form-wrap {
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: var(--radius-xl); padding: 28px;
    box-shadow: var(--shadow-card);
}
@media (min-width: 768px) { .contact__form-wrap { padding: 40px; } }

.form__group { margin-bottom: 20px; }
.form__row { display: grid; gap: 20px; }
@media (min-width: 500px) { .form__row { grid-template-columns: 1fr 1fr; } }

.form__label {
    display: block; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--gray-400); margin-bottom: 8px;
}
.form__optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--gray-500); }

.form__input {
    width: 100%; padding: 16px 18px; font-family: var(--font-body);
    font-size: 1rem; color: var(--white); background: var(--black-elevated);
    border: 1.5px solid var(--black-border); border-radius: var(--radius-md);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
    outline: none; -webkit-appearance: none;
}
.form__input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form__input::placeholder { color: var(--gray-500); }

.form__select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C9A84C'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form__select option { background: var(--black-elevated); color: var(--white); }

.form__textarea { resize: vertical; min-height: 80px; }
.form__error { display: block; font-size: 0.8rem; color: var(--error); margin-top: 4px; min-height: 18px; }
.form__privacy { font-size: 0.82rem; color: var(--gray-500); text-align: center; margin-top: 14px; }

.contact__success { text-align: center; padding: 48px 24px; }
.contact__success-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--gold-subtle); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; margin: 0 auto 16px;
}
.contact__success h3 { font-size: 1.5rem; margin-bottom: 8px; color: var(--white); }
.contact__success p { color: var(--gray-400); margin-bottom: 20px; }

/* ===== FOOTER ===== */
.footer { background: var(--black); border-top: 1px solid var(--black-border); padding: 48px 0; }
.footer__inner { display: grid; gap: 32px; }
@media (min-width: 768px) { .footer__inner { grid-template-columns: 1fr 1fr; } }

.footer__logo {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
    color: var(--gold); margin-bottom: 12px;
}
.footer__tagline { font-size: 0.95rem; max-width: 360px; color: var(--gray-500); }
.footer__rera { font-size: 0.82rem; color: var(--gold); margin-top: 10px; font-weight: 600; }
.footer__legal { font-size: 0.82rem; line-height: 1.7; color: var(--gray-500); }
.footer__copy {
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid var(--black-border); font-size: 0.78rem;
}

/* ===== FLOATING WHATSAPP ===== */
.fab-whatsapp {
    position: fixed; bottom: 16px; right: 16px; z-index: 90;
    display: flex; align-items: center; gap: 10px;
    padding: 14px 20px; background: var(--wa-green); color: var(--white);
    border-radius: var(--radius-full); box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s var(--ease); text-decoration: none;
    transform: translateY(100px); opacity: 0;
}
.fab-whatsapp.visible { transform: translateY(0); opacity: 1; }
.fab-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 6px 28px rgba(37,211,102,0.5); color: var(--white); }
.fab-whatsapp--gold { background: var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,0.4); color: var(--black); }
.fab-whatsapp--gold:hover { background: var(--gold-light); box-shadow: 0 6px 28px rgba(201,168,76,0.55); color: var(--black); }
.fab-whatsapp__label { font-weight: 600; font-size: 0.95rem; display: none; }
@media (max-width: 767px) {
    .fab-whatsapp.nudge-lifted { bottom: 16px; }
}
@media (min-width: 768px) {
    .fab-whatsapp__label { display: inline; }
    .fab-whatsapp { bottom: 24px; }
    .fab-whatsapp.nudge-lifted { bottom: 80px; }
}

/* ===== STICKY BOTTOM CTA (Mobile Only) ===== */
.sticky-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
    background: var(--black-rich); border-top: 1px solid rgba(201,168,76,0.2);
    padding: 10px 16px; gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
@media (max-width: 767px) { .sticky-cta { display: none; } }

.sticky-cta__btn {
    flex: 1; display: flex; align-items: center; justify-content: center;
    gap: 6px; padding: 12px 8px; font-size: 0.82rem; font-weight: 700;
    border-radius: var(--radius-sm); text-decoration: none;
    transition: all 0.2s var(--ease);
}
.sticky-cta__btn--call { background: var(--black-elevated); color: var(--gold); border: 1px solid var(--black-border); }
.sticky-cta__btn--wa { background: var(--wa-green); color: var(--white); }
.sticky-cta__btn--enquire { background: var(--gold); color: var(--black); }

/* ===== POPUP ===== */
.popup-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.75); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
}
.popup {
    background: var(--black-card); border: 1px solid var(--gold);
    border-radius: var(--radius-xl); padding: 36px 28px; max-width: 420px;
    width: 100%; text-align: center; position: relative;
    box-shadow: 0 16px 60px rgba(201,168,76,0.15);
}
.popup__close {
    position: absolute; top: 12px; right: 16px; background: none;
    border: none; color: var(--gray-400); font-size: 1.8rem;
    cursor: pointer; transition: color 0.2s;
}
.popup__close:hover { color: var(--white); }
.popup__badge {
    display: inline-block; padding: 6px 16px; background: var(--gold);
    color: var(--black); font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.15em;
    border-radius: var(--radius-full); margin-bottom: 16px;
}
.popup__title { font-size: 1.6rem; color: var(--white); margin-bottom: 8px; }
.popup__meta { font-size: 0.95rem; color: var(--gray-400); margin-bottom: 4px; }
.popup__price { font-family: var(--font-number); font-size: 1.2rem; font-weight: 500; color: var(--gold-light); margin-bottom: 24px; letter-spacing: 0.03em; }

/* ===== FLOOR PLAN LIGHTBOX ===== */
.fp-lightbox {
    position: fixed; inset: 0; z-index: 300;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.fp-lightbox.is-open {
    opacity: 1;
    pointer-events: all;
}
.fp-lightbox__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
}
.fp-lightbox__inner {
    position: relative; z-index: 1;
    width: min(980px, 92vw);
    max-height: 88vh;
    display: flex; align-items: stretch; justify-content: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(201,168,76,0.2);
    transform: scale(0.93) translateY(12px);
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), opacity 0.3s var(--ease);
    opacity: 0;
    background: rgba(10,10,10,0.98);
}
.fp-lightbox.is-open .fp-lightbox__inner {
    transform: scale(1) translateY(0);
    opacity: 1;
}
.fp-lightbox__gallery {
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    padding: 28px;
    display: grid;
    gap: 20px;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,168,76,0.45) transparent;
}
.fp-lightbox__gallery::-webkit-scrollbar {
    width: 8px;
}
.fp-lightbox__gallery::-webkit-scrollbar-track {
    background: transparent;
}
.fp-lightbox__gallery::-webkit-scrollbar-thumb {
    background: rgba(201,168,76,0.36);
    border-radius: 999px;
}
.fp-lightbox__panel {
    display: grid;
    gap: 10px;
}
.fp-lightbox__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
}
.fp-lightbox__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    background: #f8f6f1;
    border: 1px solid rgba(201,168,76,0.14);
}
@media (max-width: 640px) {
    .fp-lightbox__gallery {
        padding: 18px;
    }
}
.fp-lightbox__close {
    position: fixed; top: 20px; right: 24px; z-index: 2;
    width: 44px; height: 44px;
    background: rgba(10,10,10,0.85);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
    color: var(--gold-light);
    font-size: 1.4rem; line-height: 1;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.fp-lightbox__close:hover {
    background: rgba(201,168,76,0.15);
    border-color: var(--gold);
}

/* ===== INTEREST MODAL ===== */
.modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
}
.modal-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}
.modal {
    background: var(--black-card); border: 1px solid var(--black-border);
    border-radius: var(--radius-xl); padding: 36px 28px; max-width: 440px;
    width: 100%; position: relative;
    transform: translateY(18px) scale(0.98);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s var(--ease);
}
.modal-overlay.is-open .modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}
.modal__close {
    position: absolute; top: 12px; right: 16px; background: none;
    border: none; color: var(--gray-400); font-size: 1.8rem; cursor: pointer;
}
.modal__close:hover { color: var(--white); }
.modal__title { font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.modal__subtitle { font-size: 0.95rem; color: var(--gray-400); margin-bottom: 20px; }
.modal__form { display: flex; flex-direction: column; gap: 12px; }
.modal__or {
    text-align: center; padding: 12px 0; font-size: 0.85rem;
    color: var(--gray-500); font-weight: 600;
}

/* ===== PROJECT DETAIL PAGE ===== */
.detail-hero {
    position: relative;
    min-height: calc(100svh - 88px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}
.detail-hero__bg {
    position: absolute;
    inset: 0;
}
.detail-hero__img,
.detail-hero__blank {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-hero__img {
    filter: brightness(0.55);
}
.detail-hero__blank {
    background:
        radial-gradient(circle at 70% 25%, rgba(201,168,76,0.14), transparent 22%),
        radial-gradient(circle at 24% 76%, rgba(201,168,76,0.08), transparent 26%),
        linear-gradient(145deg, #0d0d0d 0%, #000 48%, #141414 100%);
}
.detail-hero__blank::before,
.detail-hero__blank::after {
    content: '';
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(201,168,76,0.14);
    border-radius: 50%;
}
.detail-hero__blank::after {
    inset: 22%;
    border-color: rgba(255,255,255,0.07);
}
.detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.74) 48%, rgba(0,0,0,0.38) 100%);
}
.detail-hero__content {
    position: relative;
    z-index: 2;
    padding-top: 72px;
    padding-bottom: 72px;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.detail-home-btn {
    position: fixed; top: calc(var(--detail-nav-height) + var(--detail-tour-offset, 0px) + 8px); left: 20px; z-index: 150;
    display: flex; align-items: center; justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px 0 14px;
    background: rgba(10,10,10,0.7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: var(--radius-full); color: var(--gold);
    cursor: pointer;
    opacity: 0;
    --detail-home-shift-x: 0px;
    --detail-home-shift-y: -10px;
    transform: translate3d(var(--detail-home-shift-x), var(--detail-home-shift-y), 0);
    transition:
        opacity 0.3s var(--ease),
        transform 0.3s var(--ease),
        background 0.3s var(--ease),
        border-color 0.3s var(--ease);
    pointer-events: none;
}
.detail-home-btn__label {
    font-family: var(--font-body);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.detail-home-btn.visible {
    opacity: 1;
    --detail-home-shift-y: 0px;
    pointer-events: all;
}
.detail-home-btn:hover {
    --detail-home-shift-x: -3px;
    background: rgba(201,168,76,0.15);
    border-color: var(--gold);
}
.nav.nav--hidden ~ .detail-home-btn {
    --detail-home-shift-y: calc(-1 * var(--detail-nav-height));
}
@media (max-width: 767px) {
    .detail-home-btn {
        left: 12px;
        min-height: 40px;
        padding: 0 14px 0 12px;
        gap: 6px;
    }
    .detail-home-btn__label { font-size: 0.7rem; letter-spacing: 0.06em; }
}

.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(201,168,76,0.32);
    background: rgba(0,0,0,0.38);
    color: var(--gold-light);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.detail-back:hover {
    background: rgba(201,168,76,0.12);
    transform: translateX(-4px);
}
.detail-hero__info {
    width: 100%;
    max-width: 720px;
    margin-top: 40px;
}
.detail-hero__badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: var(--gold);
    color: var(--black);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}
.detail-hero__builder {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--gold);
    margin-bottom: 16px;
}
.detail-hero__name {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 20px;
    line-height: 0.96;
}
.detail-hero__location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 10px;
}
.scroll-indicator {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    z-index: 3; opacity: 1; transition: opacity 0.5s ease;
    animation: scrollBounce 2s ease-in-out infinite;
    pointer-events: none;
}
@media (max-width: 767px) {
    .scroll-indicator { bottom: 16px; }
    .detail-hero__content { padding-bottom: 56px; }
}
.scroll-indicator.hidden { opacity: 0; pointer-events: none; }
.scroll-indicator__text {
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
    color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-indicator__arrow { color: var(--gold); }
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}
.detail-hero__price {
    font-family: var(--font-number);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-light);
    letter-spacing: 0.03em;
    font-weight: 600;
    margin-bottom: 34px;
}

.detail-stats {
    background: var(--black-rich);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    padding: 24px 0;
}
.detail-stats__grid {
    display: grid;
    gap: 16px;
}
@media (min-width: 768px) {
    .detail-stats__grid { grid-template-columns: repeat(4, 1fr); }
}
.detail-stat {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
}
.detail-stat__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gray-500);
    margin-bottom: 10px;
}
.detail-stat__value {
    display: block;
    font-family: var(--font-stat);
    font-size: clamp(1.4rem, 2.8vw, 1.9rem);
    color: var(--white);
    line-height: 1.15;
}

.detail-section {
    padding: 96px 0;
    background: var(--black);
}
.detail-section--alt {
    background: var(--black-elevated);
}
.detail-section__inner {
    max-width: 1100px;
}
.detail-section__label,
.detail-floorplans__eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 12px;
}
.detail-section__title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    margin-bottom: 28px;
}
.detail-description {
    max-width: 860px;
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.95;
}

.detail-highlights {
    list-style: none;
    display: grid;
    gap: 12px;
    max-width: 900px;
}
@media (min-width: 768px) {
    .detail-highlights { grid-template-columns: 1fr 1fr; }
}
.detail-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    background: var(--black-card);
    border: 1px solid var(--black-border);
    transition: border-color 0.3s var(--ease);
}
.detail-highlight:hover {
    border-color: rgba(201,168,76,0.35);
}
.detail-highlight__icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.36);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.detail-highlight__text {
    font-size: 0.95rem;
    color: var(--gray-200);
    line-height: 1.65;
    font-weight: 500;
}

.detail-amenities {
    display: grid;
    gap: 14px;
}
@media (min-width: 640px) {
    .detail-amenities { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .detail-amenities { grid-template-columns: repeat(3, 1fr); }
}
.detail-amenity,
.detail-empty-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 24px;
    border-radius: var(--radius-lg);
    background: var(--black-card);
    border: 1px solid var(--black-border);
}
.detail-amenity__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.36);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}
.detail-amenity__name {
    font-size: 0.98rem;
    color: var(--gray-200);
    font-weight: 500;
}
.detail-empty-card p {
    margin-bottom: 0;
    color: var(--gray-400);
}

.detail-section--brochure {
    padding-top: 0;
}

.detail-floorplans {
    display: grid;
    gap: 20px;
}
@media (min-width: 760px) {
    .detail-floorplans {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}
@media (min-width: 1024px) {
    .detail-floorplans--triple {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
.detail-floorplans__placeholder,
.detail-floorplan-card {
    gap: 28px;
    padding: 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(17,17,17,0.98), rgba(10,10,10,0.96));
    border: 1px solid rgba(201,168,76,0.14);
    box-shadow: var(--shadow-card);
}
.detail-floorplans__placeholder {
    display: grid;
    grid-column: 1 / -1;
}
@media (min-width: 860px) {
    .detail-floorplans__placeholder {
        grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.9fr);
        align-items: center;
        padding: 36px;
    }
}
.detail-floorplans__frame {
    min-height: 320px;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(201,168,76,0.34);
    background:
        linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        repeating-linear-gradient(90deg, transparent 0 32px, rgba(255,255,255,0.04) 32px 33px),
        repeating-linear-gradient(180deg, transparent 0 32px, rgba(255,255,255,0.04) 32px 33px);
}
.detail-floorplan-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    color: inherit;
    text-decoration: none;
    transition: transform var(--transition-base), border-color var(--transition-base);
}
.detail-floorplan-card { cursor: pointer; }
.detail-floorplan-card:hover {
    border-color: rgba(201,168,76,0.34);
    color: inherit;
    transform: translateY(-4px);
}
.detail-floorplan-card:active {
    transform: scale(0.97) translateY(0);
    border-color: rgba(201,168,76,0.5);
    transition-duration: 0.1s;
}
.detail-floorplan-card__frame {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 10;
    max-height: 320px;
    padding: 14px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(201,168,76,0.18);
    background: #f8f6f1;
    overflow: hidden;
}
.detail-floorplan-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.detail-floorplan-card__meta {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.detail-floorplans__title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 14px;
}
.detail-floorplan-card__title {
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    line-height: 1.2;
    margin-bottom: 12px;
}
.detail-floorplans__copy p,
.detail-floorplan-card__desc {
    color: var(--gray-400);
    line-height: 1.8;
    font-size: 0.9rem;
    flex: 1;
    margin-bottom: 20px;
}
.detail-floorplan-card__label {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 12px;
}
.detail-floorplan-card__facts {
    display: grid;
    gap: 10px;
    margin-top: auto;
    padding-top: 16px;
    margin-bottom: 0;
}
@media (min-width: 540px) {
    .detail-floorplan-card__facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
.detail-floorplan-card__fact {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
}
.detail-floorplan-card__fact-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
}
.detail-floorplan-card__fact-value {
    display: block;
    font-family: var(--font-number);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
}
.detail-floorplan-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
}
.detail-floorplan-card__cta::after {
    content: '\2197';
    font-size: 0.9rem;
}

.detail-brochure-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 24px;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(17,17,17,0.98), rgba(10,10,10,0.96));
    border: 1px solid rgba(201,168,76,0.14);
    box-shadow: var(--shadow-card);
    color: inherit;
    text-decoration: none;
    transition: transform var(--transition-base), border-color var(--transition-base);
}
.detail-brochure-card:hover {
    border-color: rgba(201,168,76,0.34);
    color: inherit;
    transform: translateY(-2px);
}
.detail-brochure-card__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold);
    background:
        radial-gradient(circle at 30% 30%, rgba(201,168,76,0.2), rgba(201,168,76,0.06));
    border: 1px solid rgba(201,168,76,0.22);
}
.detail-brochure-card__meta {
    flex: 1;
}
.detail-brochure-card__label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 10px;
}
.detail-brochure-card__title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 8px;
}
.detail-brochure-card__desc {
    margin-bottom: 0;
    color: var(--gray-400);
    line-height: 1.8;
    font-size: 0.96rem;
}
.detail-brochure-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
}
.detail-brochure-card__cta::after {
    content: '\2197';
    font-size: 0.9rem;
}
@media (max-width: 640px) {
    .detail-brochure-card,
    .detail-doc-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Doc card (shared style for floor plan PDFs + brochure) */
.detail-doc-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 24px;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(17,17,17,0.98), rgba(10,10,10,0.96));
    border: 1px solid rgba(201,168,76,0.14);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition-base), border-color var(--transition-base);
}
.detail-doc-card:hover {
    border-color: rgba(201,168,76,0.34);
    transform: translateY(-2px);
}
.detail-doc-card + .detail-doc-card { margin-top: 14px; }

/* Reimagined section */
.detail-section__subtitle {
    color: var(--gray-400); font-size: 1rem; line-height: 1.7;
    max-width: 580px; margin-bottom: 36px;
}
.detail-section__note {
    max-width: 640px;
    margin: 28px 0 0;
    color: var(--gray-400);
    font-size: 0.92rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
}
.detail-reimagined {
    display: grid; gap: 24px;
}
@media (min-width: 768px) {
    .detail-reimagined { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
    .detail-reimagined { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.detail-reimagined-card {
    display: flex; flex-direction: column;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(17,17,17,0.98), rgba(10,10,10,0.96));
    border: 1px solid rgba(201,168,76,0.14);
    box-shadow: var(--shadow-card);
    overflow: hidden; cursor: pointer;
    transition: transform var(--transition-base), border-color var(--transition-base);
}
.detail-reimagined-card:hover {
    border-color: rgba(201,168,76,0.34);
    transform: translateY(-4px);
}
.detail-reimagined-card__frame {
    position: relative; aspect-ratio: 16 / 10; overflow: hidden;
    background: #f8f6f1;
}
.detail-reimagined-card__image {
    width: 100%; height: 100%; object-fit: contain; display: block;
    transition: transform 0.4s ease;
}
.detail-reimagined-card:hover .detail-reimagined-card__image {
    transform: scale(1.03);
}
.detail-reimagined-card__overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.detail-reimagined-card:hover .detail-reimagined-card__overlay { opacity: 1; }
.detail-reimagined-card__zoom {
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold);
    padding: 10px 20px; border: 1.5px solid var(--gold); border-radius: var(--radius-full);
    background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
}
.detail-reimagined-card__meta {
    padding: 20px 24px 24px;
    flex: 1; display: flex; flex-direction: column;
}
.detail-reimagined-card__label {
    font-size: 0.74rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.22em; color: var(--gold); margin-bottom: 10px;
}
.detail-reimagined-card__count {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201,168,76,0.24);
    background: rgba(201,168,76,0.08);
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.detail-reimagined-card__title {
    font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.2; margin-bottom: 10px;
}
.detail-reimagined-card__desc {
    color: var(--gray-400); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0;
}

/* PDF Viewer Overlay */
.pdf-viewer {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.pdf-viewer.is-open { opacity: 1; }
.pdf-viewer__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.85); backdrop-filter: blur(6px);
}
.pdf-viewer__panel {
    position: relative; z-index: 1;
    width: 92vw; max-width: 960px; height: 88vh;
    display: flex; flex-direction: column;
    border-radius: var(--radius-xl);
    background: var(--black-card);
    border: 1px solid rgba(201,168,76,0.2);
    box-shadow: 0 24px 80px rgba(0,0,0,0.6);
    overflow: hidden;
    transform: translateY(20px); transition: transform 0.3s ease;
}
.pdf-viewer.is-open .pdf-viewer__panel { transform: translateY(0); }
.pdf-viewer__head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--black-border);
    flex-shrink: 0;
}
.pdf-viewer__title {
    font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold);
    margin: 0;
}
.pdf-viewer__actions {
    display: flex; align-items: center; gap: 16px;
}
.pdf-viewer__download {
    color: var(--gray-400); transition: color 0.2s ease;
}
.pdf-viewer__download:hover { color: var(--gold); }
.pdf-viewer__close {
    background: none; border: none; color: var(--gray-400);
    font-size: 1.6rem; cursor: pointer; padding: 0 4px; line-height: 1;
    transition: color 0.2s ease;
}
.pdf-viewer__close:hover { color: var(--white); }
.pdf-viewer__body {
    flex: 1; overflow: hidden;
}
.pdf-viewer__iframe {
    width: 100%; height: 100%; border: 0;
    background: #fff;
}

.detail-video__frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(201,168,76,0.14);
}
.detail-video__frame iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}
.detail-video__native {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(201,168,76,0.14);
    background: #000;
}
.detail-video__player {
    display: block;
    width: 100%;
    max-height: 560px;
    outline: none;
}

.detail-video__card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.14);
    background: var(--black-card);
    box-shadow: var(--shadow-card);
    transition: border-color var(--transition-base), transform var(--transition-base);
}
.detail-video__card:hover {
    border-color: rgba(201,168,76,0.34);
    transform: translateY(-2px);
}
.detail-video__thumb {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #0a0a0a;
}
.detail-video__img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.detail-video__card:hover .detail-video__img {
    transform: scale(1.03);
}
.detail-video__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}
.detail-video__card:hover .detail-video__overlay {
    background: rgba(0,0,0,0.18);
}
.detail-video__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
    transition: transform 0.3s ease, filter 0.3s ease;
}
.detail-video__card:hover .detail-video__play {
    transform: translate(-50%, -50%) scale(1.1);
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.7));
}
.detail-video__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
}
.detail-video__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}
.detail-video__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--gold);
}

.detail-map {
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(201,168,76,0.14);
    background: var(--black-card);
    box-shadow: var(--shadow-card);
}
.detail-map iframe {
    display: block;
    min-height: 420px;
    filter: grayscale(0.12) brightness(0.9) contrast(1.08);
}
.detail-map__link {
    display: inline-flex;
    margin-top: 18px;
    font-size: 0.86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--gold);
}
.detail-map__note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.detail-enquire {
    padding: 96px 0;
    background:
        radial-gradient(circle at 50% 50%, rgba(201,168,76,0.08), transparent 30%),
        var(--black);
}
.detail-enquire__inner {
    padding: 56px 32px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(201,168,76,0.18);
    background: rgba(10,10,10,0.82);
    text-align: center;
    box-shadow: var(--shadow-card);
}
.detail-enquire__eyebrow {
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--gold);
    margin-bottom: 12px;
}
.detail-enquire__title {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    margin-bottom: 12px;
}
.detail-enquire__desc {
    max-width: 700px;
    margin: 0 auto 32px;
    color: var(--gray-400);
}
.detail-enquire__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

@media (max-width: 767px) {
    .detail-hero {
        min-height: calc(100svh - 56px);
        align-items: stretch;
    }
    .detail-hero__content {
        padding-top: 84px;
        padding-bottom: 68px;
        justify-content: flex-end;
    }
    .detail-hero__info { margin-top: 28px; }
    .detail-hero__name { font-size: clamp(2.35rem, 11vw, 3.3rem); line-height: 1; }
    .detail-section, .detail-enquire { padding: 72px 0; }
    .detail-stat { padding: 20px; }
    .detail-map iframe { min-height: 340px; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* ===== PRINT ===== */
@media print {
    .nav, .fab-whatsapp, .sticky-cta, .popup-overlay, .modal-overlay { display: none !important; }
    body { font-size: 12pt; color: #000; background: #fff; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important; transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
