/* ============================================
   THE BRIDLE PATH — Ultra Luxury Landing Page
   95 Developments
   ============================================ */

/* --- CSS Variables --- */
:root {
    --charcoal: #222222;
    --charcoal-light: #2c2c2c;
    --charcoal-lighter: #383838;
    --gold: #c5a45a;
    --gold-light: #d4b96e;
    --gold-dark: #a88a3e;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d2;
    --white: #ffffff;
    --text-light: rgba(255,255,255,0.7);
    --text-lighter: rgba(255,255,255,0.5);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   INTRO SPLASH SCREEN
   ============================================ */
.intro-splash {
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: auto;
    transition: opacity 0.8s ease;
}

.intro-splash.done {
    opacity: 0;
    pointer-events: none;
}

.intro-screen {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    opacity: 0;
    transition: opacity 1s ease;
}

.intro-screen.active {
    opacity: 1;
}

/* Screen 1: Blue gradient with THE BRIDLE PATH */
.intro-screen--1 {
    background: linear-gradient(180deg, #a8d4e6 0%, #7cb8d4 30%, #5a9fc4 70%, #4a8fb8 100%);
    z-index: 2;
}

.intro-presenter {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    font-weight: 300;
    opacity: 0;
    transform: translateY(15px);
    animation: introFadeUp 0.8s ease 0.3s forwards;
}

.intro-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: 0.06em;
    opacity: 0;
    transform: translateY(20px);
    animation: introFadeUp 1s ease 0.6s forwards;
}

/* Screen 2: White with headline */
.intro-screen--2 {
    background: #ffffff;
    z-index: 1;
}

.intro-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-weight: 400;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(15px);
    animation: introFadeUp 0.8s ease 0.2s forwards;
}

.intro-subline {
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 1.8vw, 1.05rem);
    color: #555;
    line-height: 1.8;
    font-weight: 300;
    opacity: 0;
    transform: translateY(15px);
    animation: introFadeUp 0.8s ease 0.5s forwards;
}

@keyframes introFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--charcoal);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.2; }

/* --- Section Styles --- */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* --- Scroll Animations --- */
.anim-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.anim-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   STICKY HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 0;
    background: linear-gradient(180deg, #D9C496 0%, #CEB786 100%);
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

/* Gold accent line at very top */
.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a88a3e, #c5a45a, #a88a3e);
    z-index: 1;
}

.site-header.scrolled {
    background: linear-gradient(180deg, rgba(217,196,150,0.85) 0%, rgba(206,183,134,0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-logo img {
    height: 50px;
    width: auto;
    transition: height var(--transition);
}

.header-logo__project {
    height: 55px !important;
}

.header-logo__divider {
    display: block;
    width: 1px;
    height: 36px;
    background: rgba(26, 26, 26, 0.2);
    flex-shrink: 0;
}

.site-header.scrolled .header-logo img {
    height: 50px;
}

.site-header.scrolled .header-logo__project {
    height: 55px !important;
}

.site-header.scrolled .header-logo__divider {
    height: 36px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-nav > a,
.nav-dropdown__trigger {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3a3027;
    transition: color var(--transition);
    font-weight: 500;
}

.header-nav > a:hover,
.nav-dropdown__trigger:hover {
    color: var(--gold-dark);
}

/* --- Nav Dropdown --- */
.nav-dropdown {
    position: relative;
}

.nav-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown__trigger svg {
    transition: transform 0.3s ease;
    stroke: #3a3027;
}

.nav-dropdown:hover .nav-dropdown__trigger svg {
    transform: rotate(180deg);
}

.nav-dropdown__menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: rgba(60, 45, 30, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    border-top: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
    z-index: 100;
    overflow: hidden;
}

.nav-dropdown:hover .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
    display: block;
    padding: 14px 24px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.8) !important;
    transition: all 0.25s ease;
    border-top: 2px solid transparent;
    position: relative;
}

.nav-dropdown__menu a:hover {
    color: var(--white) !important;
    background: rgba(255,255,255,0.06);
    border-top-color: #cc2b2b;
}

/* --- Get Brochure Button --- */
.btn-register-nav {
    background: rgba(204, 43, 43, 0.9) !important;
    color: #ffffff !important;
    padding: 10px 22px !important;
    white-space: nowrap !important;
    font-weight: 600 !important;
    letter-spacing: 0.1em !important;
    border-radius: 2px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.btn-register-nav:hover {
    background: #a82222 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(204,43,43,0.35);
}

.brochure-icon {
    flex-shrink: 0;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #3a3027;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: linear-gradient(180deg, #CEB786 0%, #D9C496 100%);
    padding: 20px 40px 30px;
    border-top: 1px solid rgba(168,138,62,0.3);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    padding: 14px 0;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3a3027;
    border-bottom: 1px solid rgba(26,26,26,0.08);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold-dark); }

.mobile-nav a[data-switch-project] {
    padding-left: 16px;
    border-left: 3px solid var(--gold-dark);
}

.mobile-nav .btn-register-nav {
    margin-top: 10px;
    text-align: center;
    display: flex !important;
    justify-content: center;
    width: 100%;
}

/* --- Project Switcher (pill toggle) --- */
.project-switcher {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(197,164,90,0.3);
    border-radius: 40px;
    padding: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), top var(--transition);
}

.project-switcher.visible {
    opacity: 1;
    pointer-events: auto;
}

.site-header.scrolled ~ .project-switcher.visible {
    top: 80px;
}

.switcher-btn {
    padding: 8px 24px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 36px;
    transition: all var(--transition);
    white-space: nowrap;
}

.switcher-btn.active {
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 600;
}

.switcher-btn:hover:not(.active) {
    color: var(--white);
}

/* ============================================
   HERO — 50/50 SPLIT
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    overflow: hidden;
}

.hero-panel {
    position: relative;
    flex: 1;
    cursor: pointer;
    overflow: hidden;
    transition: flex var(--transition-slow);
}

.hero-panel__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 25%;
    transition: transform 1.2s ease;
}

.hero-panel:hover .hero-panel__bg {
    transform: scale(1.05);
}

.hero-panel__overlay {
    position: absolute;
    inset: 0;
    background: none;
    transition: background var(--transition-slow);
    display: none;
}

.hero-panel__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 100px 40px 60px;
    transition: opacity var(--transition-slow);
}

.hero-panel__label {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border: 1px solid rgba(197,164,90,0.3);
}

.hero-panel__cta {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    transition: var(--transition);
}

.hero-panel__cta .arrow {
    display: inline-block;
    transition: transform var(--transition);
}

.hero-panel:hover .hero-panel__cta .arrow {
    transform: translateX(6px);
}

/* Hero panel info text */
.hero-panel__info {
    text-align: center;
    margin-bottom: 20px;
}

.hero-panel__title {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 400;
    margin-bottom: 8px;
}

.hero-panel__address {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.hero-panel__units {
    font-size: 0.85rem;
    color: var(--gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Divider line between panels */
.hero-panel--estate::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 0;
    bottom: 15%;
    width: 1px;
    background: rgba(197,164,90,0.4);
    z-index: 3;
    transition: opacity var(--transition-slow);
}

/* Hover expansion */
.hero:hover .hero-panel { flex: 0.4; }
.hero .hero-panel:hover { flex: 1.6; }

.hero:hover .hero-panel:not(:hover) .hero-panel__content {
    opacity: 0.3;
}

.hero:hover .hero-panel:hover .hero-panel__overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
}

.hero:hover .hero-panel--estate::after {
    opacity: 0;
}

/* Active state (clicked) */
.hero-panel.active {
    flex: 1.6 !important;
}

.hero-panel.active ~ .hero-panel,
.hero-panel:not(.active) {
    /* handled by JS */
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-lighter);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   PROJECT CONTENT TOGGLE
   ============================================ */
.project-content {
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-content.hidden {
    display: none;
}

.project-content.fade-out {
    opacity: 0;
    transform: translateY(10px);
}

/* ============================================
   THE BRIDLE PATH — Main Section
   ============================================ */
.section--bridlepath {
    background: var(--charcoal);
    padding: 120px 0 80px;
}

.bridlepath-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bridlepath-intro__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 0.03em;
}

.bridlepath-intro__lead {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gold);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
}

.bridlepath-intro__desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.bridlepath-intro__image {
    position: relative;
    overflow: hidden;
}

.bridlepath-intro__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.bridlepath-intro__image:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .section--bridlepath {
        padding: 80px 0 40px;
    }

    .bridlepath-intro {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .bridlepath-intro__image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }

    .bridlepath-intro__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
}

/* ============================================
   OVERVIEW
   ============================================ */
.section--overview {
    background: var(--charcoal);
}

.overview-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 24px;
    margin-bottom: 40px;
}

.overview-tab {
    padding: 12px 36px;
    border: none;
    border-bottom: 2px solid rgba(197,164,90,0.15);
    background: transparent;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 0;
}

.overview-tab.active {
    background: transparent;
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    font-weight: 600;
}

.overview-tab:hover:not(.active) {
    border-bottom-color: rgba(197,164,90,0.5);
    color: var(--gold);
}

@media (max-width: 768px) {
    .overview-tabs {
        display: none;
    }
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-text h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--gold);
    margin-bottom: 24px;
}

.overview-lead {
    font-size: 1.15rem;
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.overview-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(197,164,90,0.2);
}

.stat { text-align: center; }

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-lighter);
}

.overview-image {
    position: relative;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    transition: transform 0.6s ease;
}

.overview-image:hover img {
    transform: scale(1.03);
}

/* ============================================
   NEIGHBOURHOOD
   ============================================ */
.section--neighbourhood {
    position: relative;
    background: var(--charcoal);
    padding: 140px 0;
}

.neighbourhood-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.neighbourhood-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, 0.88);
}

.section--neighbourhood .container {
    position: relative;
    z-index: 2;
}

.neighbourhood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.neighbourhood-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(197,164,90,0.15);
    padding: 40px 30px;
    transition: all var(--transition);
}

.neighbourhood-card:hover {
    background: rgba(197,164,90,0.08);
    border-color: rgba(197,164,90,0.4);
    transform: translateY(-4px);
}

.neighbourhood-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.neighbourhood-icon svg { width: 100%; height: 100%; }

.neighbourhood-card h4 {
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.neighbourhood-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
}

/* ============================================
   AMENITIES
   ============================================ */
.section--amenities {
    background: var(--charcoal-light);
}

.amenities-hero {
    margin-bottom: 60px;
    overflow: hidden;
    max-height: 500px;
}

.amenities-hero img {
    width: 100%;
    object-fit: cover;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.amenity-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.amenity-card:hover {
    border-color: rgba(197,164,90,0.3);
    transform: translateY(-4px);
    background: rgba(197,164,90,0.06);
}

.amenity-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 16px;
    color: var(--gold);
}

.amenity-icon svg { width: 100%; height: 100%; }

.amenity-card h4 {
    font-size: 0.95rem;
    color: var(--cream);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.amenity-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================
   GALLERY
   ============================================ */
.section--gallery {
    background: var(--charcoal);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover .gallery-item__overlay { opacity: 1; }

.gallery-item__overlay span {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--gold);
    padding: 8px 20px;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    font-size: 2rem;
    padding: 16px;
    transition: color var(--transition);
    z-index: 2;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

.lightbox-close { top: 20px; right: 30px; font-size: 2.5rem; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 3rem; }

/* ============================================
   FLOOR PLANS
   ============================================ */
.section--floorplans {
    background: var(--charcoal-light);
    padding: 100px 0;
}

.floorplans-inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.floorplans-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 300;
}

.suite-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.suite-type {
    padding: 10px 24px;
    border: 1px solid rgba(197,164,90,0.3);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--cream);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.btn--gold {
    background: var(--gold);
    color: var(--charcoal);
}

.btn--gold:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197,164,90,0.3);
}

.btn--full { width: 100%; }

/* ============================================
   PRICING
   ============================================ */
.section--pricing {
    background: var(--charcoal);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 48px 40px;
    position: relative;
}

.pricing-card--featured {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(197,164,90,0.08) 0%, rgba(197,164,90,0.02) 100%);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    right: 30px;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.pricing-from {
    font-size: 0.85rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border: 1px solid var(--gold);
    transform: translateY(-50%) rotate(45deg);
}

.pricing-deposit-label {
    font-size: 0.85rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.deposit-timeline {
    margin-bottom: 24px;
}

.deposit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.deposit-amount {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--gold);
}

.deposit-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 300;
}

.pricing-disclaimer {
    font-size: 0.75rem;
    color: var(--text-lighter);
    font-style: italic;
}

/* ============================================
   CALENDLY
   ============================================ */
.section--calendly {
    background: var(--charcoal-light);
}

.calendly-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.calendly-cta-side {
    padding-top: 40px;
}

.calendly-cta-side .section-label {
    display: block;
    text-align: left;
}

.calendly-embed-side {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .calendly-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .calendly-cta-side {
        padding-top: 0;
        text-align: center;
    }
    .calendly-cta-side .section-label,
    .calendly-cta-side .section-title {
        text-align: center !important;
    }
}

.calendly-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
}

/* ============================================
   REGISTRATION FORM
   ============================================ */
.section--register {
    background: var(--charcoal);
    padding: 140px 0;
}

.register-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.register-info .section-title {
    text-align: left;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 24px;
}

.register-info .section-label {
    display: block;
    text-align: left;
}

.register-info p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 40px;
}

.register-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-item svg { color: var(--gold); flex-shrink: 0; }
.contact-item a { color: var(--text-light); }
.contact-item a:hover { color: var(--gold); }

/* Form */
.register-form-wrapper {
    position: relative;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-lighter);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group textarea { resize: vertical; }

.checkbox-group {
    display: flex;
    gap: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color: var(--text-light) !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: pointer;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.form-success.show {
    display: block;
}

.form-success .success-icon {
    color: var(--gold);
    margin-bottom: 24px;
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-light);
    font-weight: 300;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #111;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-lighter);
    line-height: 1.7;
    font-weight: 300;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-lighter);
    transition: color var(--transition);
}

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

.footer-contact p {
    font-size: 0.9rem;
    color: var(--text-lighter);
    line-height: 1.7;
    font-weight: 300;
}

.footer-contact a { color: var(--text-lighter); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 30px;
    text-align: center;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: var(--text-lighter);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 16px;
    font-weight: 300;
}

.footer-copyright {
    font-size: 0.75rem;
    color: var(--text-lighter);
}

/* ============================================
   HERO CTA BAR (below hero, not overlaying)
   ============================================ */
.hero-cta-bar {
    background: var(--charcoal);
    padding: 28px 0;
    border-bottom: 1px solid rgba(197,164,90,0.15);
}

.hero-cta-btn {
    display: inline-flex !important;
    align-items: center;
    padding: 14px 32px !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.12em !important;
}

.hero-cta-btn--outline {
    background: transparent !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
}

.hero-cta-btn--outline:hover {
    background: rgba(197,164,90,0.1) !important;
    color: var(--gold-light) !important;
    border-color: var(--gold-light) !important;
    transform: translateY(-2px);
}

/* ============================================
   FLOATING BOOK APPOINTMENT BUTTON (left)
   ============================================ */
.book-appointment-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(197,164,90,0.35);
    transition: all var(--transition);
}

.book-appointment-float span {
    display: none;
}

.book-appointment-float:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(197,164,90,0.45);
}

.book-appointment-float svg {
    flex-shrink: 0;
    stroke: var(--charcoal);
}

@media (max-width: 768px) {
    .book-appointment-float {
        bottom: 20px;
        left: 20px;
        width: 48px;
        height: 48px;
    }

    .hero-cta-bar {
        padding: 20px 0;
    }

    .hero-cta-btn {
        padding: 12px 24px !important;
        font-size: 0.75rem !important;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 998;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

/* ============================================
   IMAGE INVERT (dark logo on dark bg fix)
   ============================================ */
.img-invert {
    filter: brightness(0) invert(1);
}

/* ============================================
   DEPOSIT GENERIC (unconfirmed pricing)
   ============================================ */
.deposit-generic {
    padding: 32px 0;
    text-align: center;
}

.deposit-generic-text {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 28px;
}

/* ============================================
   LEAD CAPTURE POPUP
   ============================================ */
.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lead-popup.open {
    opacity: 1;
    pointer-events: auto;
}

.lead-popup__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lead-popup__card {
    position: relative;
    background: rgba(30, 30, 30, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 3px solid var(--gold);
    max-width: 620px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 44px 40px 36px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.lead-popup.open .lead-popup__card {
    transform: translateY(0);
}

.lead-popup__close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: var(--text-lighter);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
}

.lead-popup__close:hover {
    color: var(--white);
}

.lead-popup__label {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.lead-popup__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--cream);
    margin-bottom: 12px;
    font-weight: 500;
}

.lead-popup__subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 32px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.lead-popup__options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.lead-popup__option {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(197,164,90,0.15);
    padding: 0;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    overflow: hidden;
    border-radius: 2px;
}

.lead-popup__option:hover {
    border-color: var(--gold);
    background: rgba(197,164,90,0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.lead-popup__option-img {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #f5f0e8;
}

.lead-popup__option-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.lead-popup__option:hover .lead-popup__option-img img {
    transform: scale(1.08);
}

.lead-popup__option-info {
    padding: 16px 14px 18px;
}

.lead-popup__option-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    font-family: var(--font-body);
}

.lead-popup__option-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--cream);
    margin-bottom: 4px;
}

.lead-popup__option-detail {
    display: block;
    font-size: 0.75rem;
    color: var(--text-lighter);
    font-family: var(--font-body);
}

/* Popup form (step 2) */
.lead-popup__form {
    display: none;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    margin-top: 8px;
}

.lead-popup__form.show {
    display: flex;
}

.lead-popup__form label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-lighter);
    margin-bottom: 6px;
}

.lead-popup__form input,
.lead-popup__form textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition);
}

.lead-popup__form input::placeholder,
.lead-popup__form textarea::placeholder {
    color: var(--text-lighter);
}

.lead-popup__form input:focus,
.lead-popup__form textarea:focus {
    border-color: var(--gold);
}

.lead-popup__form textarea {
    resize: vertical;
    min-height: 70px;
}

.lead-popup__selected-project {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(197,164,90,0.3);
}

.lead-popup__both {
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-light);
    width: 100%;
    padding: 14px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--transition);
}

.lead-popup__both:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Popup success message */
.lead-popup__success {
    text-align: center;
    padding: 40px 20px;
}

.lead-popup__success .success-icon {
    color: var(--gold);
    margin-bottom: 20px;
}

.lead-popup__success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--cream);
    margin-bottom: 12px;
    font-weight: 500;
}

.lead-popup__success p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .container { padding: 0 30px; }
    .overview-grid { grid-template-columns: 1fr; gap: 40px; }
    .overview-stats { grid-template-columns: repeat(4, 1fr); }
    .neighbourhood-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; }
    .register-grid { grid-template-columns: 1fr; gap: 60px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 80px 0; }

    /* Lead Popup — compact for mobile, both cards visible without scroll */
    .lead-popup__card {
        padding: 24px 16px 20px;
        max-height: 85vh;
        overflow-y: auto;
    }
    .lead-popup__options {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }
    .lead-popup__title { font-size: 1.2rem; margin-bottom: 8px; }
    .lead-popup__subtitle { font-size: 0.82rem; margin-bottom: 16px; line-height: 1.5; }
    .lead-popup__label { margin-bottom: 8px; font-size: 0.6rem; }
    .lead-popup__option-img { max-height: none; height: auto; }
    .lead-popup__option-img img { max-height: none; height: auto; object-fit: contain; }
    .lead-popup__option-info { padding: 10px 8px 12px; }
    .lead-popup__option-name { font-size: 0.9rem; }
    .lead-popup__option-detail { font-size: 0.68rem; }
    .lead-popup__option-label { font-size: 0.55rem; margin-bottom: 4px; }
    .lead-popup__both { padding: 10px; font-size: 0.78rem; }
    .lead-popup__close { top: 8px; right: 12px; font-size: 1.5rem; }

    /* Header */
    .header-nav { display: none; }
    .mobile-menu-toggle { display: flex; }
    .header-inner { padding: 0 20px; }
    .header-logo { gap: 10px; justify-content: center; flex: 1; }
    .header-logo img { height: 36px; }
    .header-logo__project { height: 40px !important; }
    .header-logo__divider { height: 28px; }

    /* Project Switcher — full-width bar under header on mobile */
    .project-switcher {
        top: 68px !important;
        bottom: auto !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        border-radius: 0 !important;
        background: linear-gradient(180deg, rgba(42,42,42,0.98), rgba(30,30,30,0.98)) !important;
        border: none !important;
        border-bottom: 2px solid var(--gold) !important;
        justify-content: center;
        padding: 8px 16px;
    }

    .site-header.scrolled ~ .project-switcher.visible {
        top: 68px !important;
        bottom: auto !important;
    }

    .switcher-btn {
        padding: 10px 16px;
        font-size: 0.72rem;
        flex: 1;
        text-align: center;
        border-radius: 20px;
        border: 1px solid rgba(197,164,90,0.3);
    }

    .switcher-btn.active {
        background: var(--gold);
        color: var(--charcoal);
        border-color: var(--gold);
        animation: goldShimmer 2.5s ease-in-out infinite;
    }

    @keyframes goldShimmer {
        0%, 100% { box-shadow: 0 0 0 rgba(197,164,90,0); }
        50% { box-shadow: 0 0 12px rgba(197,164,90,0.4); }
    }

    /* Hero — handled by second 768px block (swipe slider) */

    .hero:hover .hero-panel:not(:hover) .hero-panel__content {
        opacity: 1;
    }

    .hero-panel__title { font-size: 2.2rem; }
    .hero-panel__content { padding: 30px 20px; }

    .hero-scroll-indicator { display: none; }

    /* Neighbourhood */
    .neighbourhood-grid { grid-template-columns: 1fr; gap: 16px; }
    .neighbourhood-bg { background-attachment: scroll; }

    /* Amenities */
    .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    /* Gallery */
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item--large { grid-column: span 2; grid-row: span 1; }

    /* Overview — image before text on mobile */
    .overview-grid { display: flex; flex-direction: column; }
    .overview-image { order: -1; }
    .overview-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    /* Register */
    .register-info .section-title { font-size: 2rem; }
    .checkbox-group { flex-direction: column; gap: 12px; }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Hero dot indicators */
.hero-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
    background: #f5f0e8;
}
@media (max-width: 768px) {
    .hero-dots { display: flex; }
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(26,26,26,0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-dot.active {
    background: #c5a45a;
    width: 24px;
    border-radius: 4px;
}

/* Subpage hero intro */
.subpage-hero__intro {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 28px;
}

@media (max-width: 480px) {
    .amenities-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large { grid-column: span 1; }
    .suite-types { flex-direction: column; align-items: center; }
    .overview-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SUBPAGE STYLES (bridle-estate / bridle-prestige)
   ============================================ */

/* --- Breadcrumb --- */
.breadcrumb {
    position: relative;
    z-index: 10;
    padding: 100px 0 0;
    background: var(--charcoal);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--text-lighter);
    padding: 16px 0;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    color: var(--text-lighter);
    margin-left: 0;
}

.breadcrumb-list a {
    color: var(--text-lighter);
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.breadcrumb-list a:hover {
    color: var(--gold);
}

.breadcrumb-list li[aria-current="page"] {
    color: var(--gold);
    font-weight: 500;
}

/* --- Subpage Hero (full-width single image) --- */
.subpage-hero {
    position: relative;
    height: auto;
    min-height: unset;
    max-height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.subpage-hero__bg {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #f5f0e8;
    transition: transform 1.2s ease;
}

.subpage-hero:hover .subpage-hero__bg {
    transform: scale(1.03);
}

.subpage-hero__overlay {
    display: none;
}

.subpage-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    background: var(--charcoal);
    width: 100%;
}

.subpage-hero__label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 8px 20px;
    border: 1px solid rgba(197,164,90,0.3);
    margin-bottom: 24px;
}

.subpage-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.subpage-hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.85);
    font-weight: 300;
    letter-spacing: 0.08em;
    margin-bottom: 36px;
}

/* --- Overview crosslink paragraph --- */
.overview-crosslink {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(197,164,90,0.15);
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
}

.overview-crosslink a {
    color: var(--gold);
    font-weight: 500;
}

.overview-crosslink a:hover {
    color: var(--gold-light);
}

/* --- Neighbourhood card links (subpages) --- */
.neighbourhood-card a {
    color: var(--gold);
    font-weight: 400;
}

.neighbourhood-card a:hover {
    color: var(--gold-light);
}

/* --- Subpage responsive --- */
@media (max-width: 768px) {
    .breadcrumb {
        padding-top: 70px;
    }

    .subpage-hero__title {
        font-size: clamp(1.8rem, 7vw, 3rem);
        text-shadow: none;
    }

    .subpage-hero__subtitle {
        color: var(--text-light);
    }

    /* Homepage mobile hero — horizontal swipe slider */
    .hero {
        height: auto;
        min-height: unset;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hero::-webkit-scrollbar { display: none; }

    .hero-panel {
        min-width: 100vw !important;
        flex: none !important;
        scroll-snap-align: start;
    }

    .hero-panel__bg {
        position: relative !important;
        width: 100%;
        padding-top: 85%;
        background-size: contain !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-color: #f5f0e8 !important;
    }

    .hero-panel--estate::after {
        display: none;
    }

    .hero-scroll-indicator {
        position: relative;
        padding: 16px 0;
    }

    /* Subpage hero mobile */
    .subpage-hero__bg {
        min-height: unset !important;
        padding-top: 70%;
        background-size: contain !important;
        background-position: center center !important;
    }

    .subpage-hero__content {
        padding: 24px 20px !important;
    }

    /* Popup mobile — everything visible without scrolling */
    .lead-popup {
        align-items: flex-start;
        padding-top: 60px;
    }

    .lead-popup__card {
        max-height: calc(100vh - 80px);
    }

    /* Popup mobile — thumbnails fully visible */
    .lead-popup__option-img {
        max-height: none;
        height: auto;
    }

    .lead-popup__option-img img {
        max-height: none;
        height: auto;
        object-fit: contain;
    }
}
