/* ============================================
   PARK TOWERS MARKET - Luxury Real Estate Site
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --navy-dark: #0a1628;
    --navy: #0f1d32;
    --navy-light: #1a2744;
    --charcoal: #1e293b;
    --gold: #c9a962;
    --gold-light: #d4b77a;
    --gold-glow: rgba(201, 169, 98, 0.4);
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e5e7eb;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

/* Image Protection - Prevent downloading/saving */
img {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    pointer-events: auto;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding: 0;
    overflow-y: scroll;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-200);
    background: var(--navy-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Scroll Snap Sections - PowerPoint-style scrolling */
.snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always; /* Forces stop at each section */
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Utility Classes */
.gold { color: var(--gold); }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: background var(--transition-base), padding var(--transition-base);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: opacity 0.15s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    padding: 10px 24px !important;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 4px;
    transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--navy-dark) !important;
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, 0.7);
    /* Add subtle gradient for depth */
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.6) 0%,
        rgba(10, 22, 40, 0.75) 50%,
        rgba(10, 22, 40, 0.85) 100%
    );
}

/* Fallback background (hidden when video loads) */
.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(201, 169, 98, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 169, 98, 0.05) 0%, transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.hero-eyebrow {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--gold);
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    border-radius: 4px;
    transition: all var(--transition-base);
}

.hero-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(201, 169, 98, 0.3);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
    50% { transform: rotate(45deg) translateY(8px); opacity: 0.5; }
}

/* Hero Footer Bar */
.hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.7) 60%, transparent 100%);
    z-index: 10;
}

.hero-footer-left {
    display: flex;
    align-items: center;
}

.hero-sothebys-logo {
    height: 72px;
    width: auto;
}

.hero-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    text-align: right;
}

.hero-agent-name {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.hero-agent-phone {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.hero-agent-phone:hover {
    color: var(--gold-light);
}

.hero-agent-license {
    color: var(--gray-400);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .hero-footer {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        text-align: center;
    }

    .hero-sothebys-logo {
        height: 48px;
    }

    .hero-footer-right {
        align-items: center;
        text-align: center;
    }

    .hero-scroll-indicator {
        bottom: 120px;
    }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
    font-weight: 300;
}

/* ============================================
   TOWERS SECTION - SPLIT VIEW LAYOUT
   ============================================ */

.towers-section {
    height: 100vh;
    max-height: 100vh;
    background: var(--navy);
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    overflow: hidden;
}

.towers-section .section-header {
    padding: 15px 20px 10px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.towers-section .section-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 8px;
}

.towers-section .section-subtitle {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Tower Filters */
.tower-filters {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 16px 32px;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--navy-dark) 100%);
    border-top: 1px solid rgba(201, 169, 98, 0.3);
    border-bottom: 1px solid rgba(201, 169, 98, 0.3);
    flex-shrink: 0;
}

.tower-filters .filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tower-filters .filter-group > label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tower-filters .filter-buttons {
    display: flex;
    gap: 6px;
}

.tower-filters .filter-btn {
    padding: 8px 14px;
    background: rgba(26, 39, 68, 0.8);
    border: 1px solid var(--navy-light);
    border-radius: 6px;
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.tower-filters .filter-btn:hover {
    border-color: var(--gold);
    color: var(--white);
    background: rgba(201, 169, 98, 0.15);
}

.tower-filters .filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
    font-weight: 600;
}

/* Toggle Switch for Has Sales */
.filter-toggle-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-checkbox {
    display: none;
}

.filter-toggle {
    position: relative;
    width: 40px;
    height: 22px;
    background: var(--navy-light);
    border: 1px solid var(--navy-light);
    border-radius: 11px;
    transition: all var(--transition-fast);
}

.filter-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--gray-400);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.filter-checkbox:checked + .filter-toggle {
    background: var(--gold);
    border-color: var(--gold);
}

.filter-checkbox:checked + .filter-toggle::after {
    left: 20px;
    background: var(--navy-dark);
}

.tower-filters .filter-summary {
    margin-left: auto;
    font-size: 0.95rem;
    color: var(--gray-300);
    font-weight: 500;
}

.tower-filters .filter-summary span {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gold);
}

/* Dimmed state for filtered-out units */
.unit.filtered-out {
    opacity: 0.2;
    pointer-events: none;
}

.unit.filtered-out:hover {
    transform: none;
    box-shadow: none;
}

/* Hide entire tower when filtered */
.tower.filtered-out {
    opacity: 0.15;
}

.tower.filtered-out .unit {
    pointer-events: none;
}

/* Split View Container - Desktop */
.split-view {
    display: grid;
    grid-template-columns: 1fr 400px;
    flex: 1;
    min-height: 0;
    overflow: hidden;
}

/* Towers Panel (Left) */
.towers-panel {
    display: flex;
    flex-direction: column;
    padding: 0 20px 10px;
    overflow: hidden;
    min-height: 0;
    justify-content: flex-end;
}

.towers-container {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
}

.tower-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 0;
}

.tower {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tower-label {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.tower-building {
    display: flex;
    flex-direction: column-reverse;
    gap: 5px;
    background: var(--navy-dark);
    padding: 12px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.floor-row {
    display: flex;
    gap: 5px;
    justify-content: center;
}

/* Units with Always-Visible Labels */
.unit {
    height: 52px;
    background: var(--navy-light);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--gray-300);
    border: 2px solid var(--charcoal);
    font-weight: 500;
    gap: 2px;
}

.unit .unit-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.unit .unit-plan {
    font-size: 0.65rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
}

.unit:hover {
    background: var(--charcoal);
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: scale(1.05);
    z-index: 10;
}

.unit:hover .unit-label {
    color: var(--gold);
}

.unit.active {
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 25px var(--gold-glow);
}

.unit.active .unit-label {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.unit.active .unit-plan {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.unit.has-sales {
    background: linear-gradient(135deg, var(--navy-light) 0%, rgba(201, 169, 98, 0.2) 100%);
    border-color: rgba(201, 169, 98, 0.4);
}

.unit.has-sales:hover {
    background: linear-gradient(135deg, var(--charcoal) 0%, rgba(201, 169, 98, 0.35) 100%);
}

/* Has-sales units also get gold highlight when active */
.unit.has-sales.active {
    background: var(--gold);
    border-color: var(--gold-light);
    box-shadow: 0 0 25px var(--gold-glow);
}

.unit.has-sales.active .unit-label {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.unit.has-sales.active .unit-plan {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Unit Sizes */
.unit[data-plan="A"] { width: 72px; }
.unit[data-plan="AM"] { width: 74px; }
.unit[data-plan="B"] { width: 82px; }
.unit[data-plan="C"] { width: 98px; }
.unit[data-plan="D"] { width: 118px; }
.unit[data-plan="E"] { width: 170px; }
.unit[data-plan="Penthouse"] { width: 210px; }

/* Amenities Base - Spans Both Towers */
.amenities-base {
    display: flex;
    justify-content: center;
    margin-top: -1px;
}

.amenities-label {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--charcoal) 100%);
    border-radius: 0 0 8px 8px;
    padding: 12px 60px;
    border-top: 3px solid var(--gold);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-300);
}

/* Legacy - kept for reference */
.amenities-floor {
    background: linear-gradient(180deg, var(--navy-dark) 0%, var(--charcoal) 100%);
    border-radius: 0 0 8px 8px;
    padding: 16px 24px;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 30px;
    border-top: 3px solid var(--gold);
    min-width: 600px;
}

.amenity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--gray-300);
    font-size: 0.75rem;
}

.amenity-item span:first-child {
    font-size: 1.25rem;
}

/* Floor Numbers */
.floor-numbers {
    position: absolute;
    left: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column-reverse;
    gap: 5px;
    padding: 14px 0;
}

.floor-number {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 600;
    padding-right: 10px;
}

/* Detail Panel (Right - Always Visible) */
.detail-panel {
    background: var(--navy-dark);
    border-left: 1px solid var(--navy-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.detail-panel-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

.detail-panel-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.detail-panel-placeholder h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.detail-panel-placeholder p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.6;
}

.detail-content {
    display: none;
    flex-direction: column;
    padding: 16px;
    flex: 1;
    overflow-y: auto;
}

.detail-content.active {
    display: flex;
}

.detail-header {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--navy-light);
}

.detail-tower {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 4px;
}

.detail-unit {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 2px;
}

.detail-plan {
    font-size: 1rem;
    color: var(--gray-300);
}

.detail-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.detail-stat {
    text-align: center;
    padding: 8px 6px;
    background: var(--navy);
    border-radius: 6px;
}

.detail-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 2px;
}

.detail-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.detail-floorplan {
    margin-bottom: 14px;
}

.detail-floorplan h4,
.detail-sales h4 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.detail-floorplan-img {
    width: 100%;
    max-height: none;
    object-fit: contain;
    border-radius: 6px;
    cursor: pointer;
    transition: transform var(--transition-base);
    background: var(--white);
}

.detail-floorplan-img:hover {
    transform: scale(1.02);
}

.detail-sales-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
    flex: 1;
    min-height: 0;
}

.detail-sale-item {
    background: var(--navy);
    border-radius: 6px;
    padding: 10px 12px;
    border-left: 3px solid var(--gold);
}

.detail-sale-date {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.detail-sale-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 4px;
}

.detail-sale-info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.75rem;
    color: var(--gray-300);
}

.non-mls-note {
    color: var(--gold);
    font-style: italic;
}

.detail-no-sales {
    color: var(--gray-500);
    font-style: italic;
    text-align: center;
    padding: 30px 0;
}

.detail-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--navy-dark);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 6px;
    transition: all var(--transition-base);
    margin-top: auto;
}

.detail-cta:hover {
    background: var(--gold-light);
}

/* Mobile Controls - Hidden on Desktop */
.mobile-controls {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px 20px;
}

.tower-tabs {
    display: flex;
    gap: 0;
    background: var(--navy-dark);
    border-radius: 8px;
    padding: 4px;
}

.tower-tab {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.tower-tab.active {
    background: var(--gold);
    color: var(--navy-dark);
}

.view-toggle {
    display: flex;
    gap: 0;
    background: var(--navy-dark);
    border-radius: 8px;
    padding: 4px;
}

.view-btn {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: none;
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.view-btn.active {
    background: var(--charcoal);
    color: var(--white);
}

/* Mobile List View - Hidden on desktop, shown on mobile */
.list-view {
    display: none;
    flex-direction: column;
    padding: 0 20px 20px;
    flex: 1;
    overflow-y: auto;
    gap: 8px;
}

.list-item {
    background: var(--navy-dark);
    border: 1px solid var(--navy-light);
    border-radius: 8px;
    margin-bottom: 8px;
    overflow: hidden;
}

.list-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.list-item-header:hover {
    background: var(--charcoal);
}

.list-item.expanded .list-item-header {
    background: var(--charcoal);
    border-bottom: 1px solid var(--navy-light);
}

.list-item-main {
    display: flex;
    align-items: center;
    gap: 16px;
}

.list-item-unit {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--white);
    min-width: 70px;
}

.list-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.list-item-plan {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 500;
}

.list-item-specs {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.list-item-arrow {
    font-size: 1.2rem;
    color: var(--gray-500);
    transition: transform var(--transition-fast);
}

.list-item.expanded .list-item-arrow {
    transform: rotate(180deg);
}

.list-item-details {
    display: none;
    padding: 20px;
    background: var(--navy);
}

.list-item.expanded .list-item-details {
    display: block;
}

.list-detail-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.list-detail-stat {
    text-align: center;
    padding: 12px 8px;
    background: var(--navy-dark);
    border-radius: 6px;
}

.list-detail-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
}

.list-detail-stat-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
}

.list-detail-sales h5 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.list-sale-item {
    background: var(--navy-dark);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
    border-left: 2px solid var(--gold);
}

.list-sale-item:last-child {
    margin-bottom: 0;
}

.list-sale-date {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.list-sale-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
}

.list-sale-info {
    font-size: 0.75rem;
    color: var(--gray-300);
}

.list-no-sales {
    color: var(--gray-500);
    font-style: italic;
    font-size: 0.85rem;
}

.list-detail-cta {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 16px;
    background: var(--gold);
    color: var(--navy-dark);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
}

/* ============================================
   UNIT DETAIL PANEL
   ============================================ */

.unit-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: var(--navy);
    z-index: 2000;
    transition: right var(--transition-base);
    overflow-y: auto;
    box-shadow: -10px 0 60px rgba(0, 0, 0, 0.5);
}

.unit-panel.open {
    right: 0;
}

.panel-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--navy-dark);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.panel-close:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.panel-content {
    padding: 60px 40px 40px;
}

.panel-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--navy-light);
}

.panel-tower {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
}

.panel-unit {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.panel-plan {
    font-size: 1rem;
    color: var(--gray-400);
}

.panel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: var(--navy-dark);
    border-radius: 8px;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-400);
}

.panel-sales h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.sales-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.sale-item {
    background: var(--navy-dark);
    border-radius: 8px;
    padding: 20px;
    border-left: 3px solid var(--gold);
}

.sale-date {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.sale-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}

.sale-details {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--gray-300);
}

.sale-details span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.no-sales {
    color: var(--gray-500);
    font-style: italic;
    text-align: center;
    padding: 40px 0;
}

.panel-cta {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--navy-dark);
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all var(--transition-base);
}

.panel-cta:hover {
    background: var(--gold-light);
}

.panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.8);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.panel-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   MARKET SECTION - Enhanced with Charts
   ============================================ */

.market-section {
    padding: var(--section-padding) 20px;
    background: var(--navy-dark);
}

/* Key Stats Row */
.market-stats-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.market-stat-card {
    background: var(--navy);
    border: 1px solid var(--navy-light);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition-base);
}

.market-stat-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.market-stat-card.highlight {
    background: linear-gradient(135deg, var(--navy) 0%, rgba(201, 169, 98, 0.15) 100%);
    border-color: var(--gold);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-desc {
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    display: block;
    margin-bottom: 4px;
}

.stat-period {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive: 3 columns on medium screens */
@media (max-width: 1200px) {
    .market-stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Chart Filters */
.chart-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px 24px;
    background: var(--navy);
    border: 1px solid var(--navy-light);
    border-radius: 12px;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 14px;
    background: var(--navy-dark);
    border: 1px solid var(--navy-light);
    border-radius: 6px;
    color: var(--gray-400);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--white);
}

.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.filter-summary {
    margin-left: auto;
    font-size: 0.9rem;
    color: var(--gray-400);
}

.filter-summary span {
    font-weight: 600;
    color: var(--gold);
}

/* Chart Filter Indicator */
.chart-filter-indicator {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(201, 169, 98, 0.15);
    border: 1px solid var(--gold);
    border-radius: 6px;
    margin-left: 12px;
}

.chart-filter-indicator.visible {
    display: flex;
}

.chart-filter-indicator .filter-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold);
}

.clear-chart-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.clear-chart-filter:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

/* Chart hint text */
.chart-hint {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-left: auto;
    padding-right: 8px;
}

.clickable-chart canvas {
    cursor: pointer;
}

/* Date Range Filter */
.date-range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.date-input {
    padding: 8px 12px;
    background: var(--navy-dark);
    border: 1px solid var(--navy-light);
    border-radius: 6px;
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-family: var(--font-body);
}

.date-input:hover {
    border-color: var(--gold);
    color: var(--white);
}

.date-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.2);
}

/* Style the date picker icon - gold calendar */
.date-input::-webkit-calendar-picker-indicator {
    filter: invert(0.7) sepia(1) saturate(3) hue-rotate(10deg);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.15s ease;
}

.date-input::-webkit-calendar-picker-indicator:hover {
    filter: invert(0.85) sepia(1) saturate(5) hue-rotate(10deg);
    opacity: 1;
}

.date-range-separator {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.date-clear-btn {
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 6px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.date-clear-btn:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

/* Market Layout - Charts + Sales History Side by Side */
.market-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

.charts-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.charts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sales-column {
    display: flex;
    flex-direction: column;
}

.sales-history-card {
    background: var(--navy);
    border: 1px solid var(--navy-light);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sales-history-card .sales-table-wrapper {
    flex: 1;
    overflow-y: auto;
    max-height: 580px;
}

.chart-card {
    background: var(--navy);
    border: 1px solid var(--navy-light);
    border-radius: 12px;
    padding: 24px;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-header h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    font-weight: 500;
}

.chart-legend {
    display: flex;
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gray-400);
}

.legend-dot.gold {
    background: var(--gold);
}

.legend-line {
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.legend-line.dashed {
    background: none;
    border-top: 2px dashed rgba(255, 255, 255, 0.5);
}

.legend-bar {
    width: 12px;
    height: 16px;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 169, 98, 0.4) 100%);
    border-radius: 2px;
}

.chart-wrapper {
    position: relative;
    width: 100%;
}

.chart-wrapper canvas {
    width: 100% !important;
    height: auto !important;
}

.chart-tooltip {
    position: absolute;
    background: var(--navy-dark);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem;
    color: var(--white);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 100;
    white-space: nowrap;
}

.chart-tooltip.visible {
    opacity: 1;
}

.chart-tooltip .tooltip-title {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
}

.chart-tooltip .tooltip-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.chart-tooltip .tooltip-detail {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 2px;
}

/* Recent Sales Table */
.recent-sales-card {
    background: var(--navy);
    border: 1px solid var(--navy-light);
    border-radius: 12px;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.table-note {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.sales-table-wrapper {
    overflow-x: auto;
}

.sales-table {
    width: 100%;
    border-collapse: collapse;
}

.sales-table th {
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    padding: 12px 16px;
    border-bottom: 1px solid var(--navy-light);
}

.sales-table td {
    padding: 16px;
    font-size: 0.95rem;
    color: var(--gray-200);
    border-bottom: 1px solid var(--navy-light);
}

.sales-table tr:last-child td {
    border-bottom: none;
}

.sales-table tr:hover td {
    background: rgba(201, 169, 98, 0.05);
}

.sales-table .unit-cell {
    font-weight: 600;
    color: var(--white);
}

.sales-table .price-cell {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
}

.sales-table .psf-cell {
    color: var(--gray-300);
}

.sales-table .days-cell {
    text-align: center;
}

.sales-table .days-fast {
    color: #4ade80;
}

.sales-table .days-normal {
    color: var(--gray-400);
}

.sales-table .days-na {
    color: var(--gray-500);
    font-style: italic;
}

.sales-table .non-mls-row td {
    background: rgba(201, 169, 98, 0.05);
}

.table-footnote {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-style: italic;
    padding: 12px 0 0 0;
    margin: 0;
    text-align: left;
}

/* Table Actions (Export Button) */
.table-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.export-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 4px;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.export-btn:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.export-btn svg {
    stroke: currentColor;
}

/* Sortable Table Headers */
.sales-table th.sortable {
    cursor: pointer;
    user-select: none;
    transition: color var(--transition-fast);
}

.sales-table th.sortable:hover {
    color: var(--gold);
}

.sales-table th .sort-icon {
    opacity: 0.4;
    font-size: 0.7rem;
    margin-left: 4px;
}

.sales-table th.sortable:hover .sort-icon,
.sales-table th.sorted .sort-icon {
    opacity: 1;
    color: var(--gold);
}

.sales-table th.sorted-asc .sort-icon::after {
    content: '↑';
}

.sales-table th.sorted-desc .sort-icon::after {
    content: '↓';
}

.sales-table th.sorted .sort-icon {
    display: inline;
}

/* Row Hover Effect */
.sales-table tbody tr {
    transition: background var(--transition-fast);
}

.sales-table tbody tr:hover {
    background: rgba(201, 169, 98, 0.1);
}

/* Market Callout */
.market-callout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 40px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 169, 98, 0.1) 50%, transparent 100%);
    border-radius: 8px;
    max-width: 700px;
    margin: 0 auto;
}

.callout-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.callout-icon svg {
    color: var(--navy-dark);
}

.market-callout p {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    font-style: italic;
}

/* ============================================
   MARKET SECTION - Scrollable with Sticky Header
   ============================================ */

/* Allow market section to scroll internally */
.market-section.snap-section {
    overflow-y: auto;
}

/* Sticky header for scrollable sales table */
.sales-table thead {
    position: sticky;
    top: 0;
    background: var(--navy);
    z-index: 10;
}

.sales-table th {
    background: var(--navy);
}

/* Responsive Market Section */
@media (max-width: 1200px) {
    .market-layout {
        grid-template-columns: 1fr;
    }

    .sales-history-card .sales-table-wrapper {
        max-height: 400px;
    }
}

@media (max-width: 1024px) {
    .market-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .charts-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .market-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .market-stat-card {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-desc {
        font-size: 0.85rem;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .chart-legend {
        flex-wrap: wrap;
    }

    .sales-table th,
    .sales-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }

    .sales-table .price-cell {
        font-size: 1rem;
    }
}

/* ============================================
   ABOUT SECTION - Clean & Focused
   ============================================ */

.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
}

.about-container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    max-width: 1100px;
    align-items: center;
}

.about-photo {
    position: relative;
}

.about-photo img {
    width: 380px;
    height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px;
    border: 1px solid var(--navy-light);
}

.photo-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 10px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-content {
    max-width: 580px;
}

.about-eyebrow {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.about-name {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 5.5vw, 4rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.1;
}

.about-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.75vw, 1.75rem);
    font-weight: 400;
    color: var(--gray-300);
    margin-bottom: 36px;
}

.about-value-prop {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 36px;
    padding-left: 24px;
    border-left: 3px solid var(--gold);
}

.about-credentials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.about-credentials .credential {
    font-size: 1rem;
    color: var(--gray-300);
}

.about-credentials .credential-divider {
    color: var(--gold);
}

.about-cta {
    display: inline-block;
    padding: 18px 36px;
    background: var(--gold);
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 6px;
    transition: all var(--transition-base);
    margin-bottom: 28px;
}

.about-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}

.about-contact-links {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.about-contact-links .contact-link {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.about-contact-links .contact-link:hover {
    color: var(--gold);
}

.about-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

/* ============================================
   CONTACT SECTION - Full Page Form
   ============================================ */

.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: var(--navy-dark);
}

.contact-container {
    max-width: 700px;
    width: 100%;
    background: var(--navy);
    border: 1px solid var(--navy-light);
    border-radius: 16px;
    padding: 50px;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header .section-title {
    margin-bottom: 12px;
}

.contact-header .section-subtitle {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-300);
}

.form-group .optional {
    color: var(--gray-500);
    font-weight: 400;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    background: var(--navy-dark);
    border: 1px solid var(--navy-light);
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color var(--transition-fast);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    padding: 16px 32px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.form-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

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

.form-success .success-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--gray-300);
    line-height: 1.6;
}

/* About + Contact Responsive */
@media (max-width: 1024px) {
    .about-container {
        gap: 50px;
    }

    .about-photo img {
        width: 320px;
        height: 420px;
    }
}

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

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-photo {
        margin: 0 auto;
    }

    .about-photo img {
        width: 280px;
        height: 370px;
    }

    .about-value-prop {
        border-left: none;
        border-top: 3px solid var(--gold);
        padding-left: 0;
        padding-top: 20px;
    }

    .about-credentials {
        justify-content: center;
    }

    .about-cta {
        width: 100%;
    }

    .about-contact-links {
        justify-content: center;
    }

    .about-logo {
        margin: 0 auto;
    }

    .contact-section {
        padding: 60px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-full {
    grid-column: 1 / -1;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 60px 20px 40px;
    background: var(--navy);
    border-top: 1px solid var(--navy-light);
}

.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
}

.footer-sothebys-logo {
    max-width: 200px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

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

.footer-legal {
    text-align: right;
}

.footer-legal p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.footer-disclaimer {
    font-size: 0.7rem !important;
    margin-top: 4px;
}

/* Footer Disclaimers */
.footer-disclaimers {
    max-width: var(--container-max);
    margin: 40px auto 0;
    padding: 30px 40px 0;
    border-top: 1px solid var(--navy-light);
}

.disclaimer-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.eho-logo {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.disclaimer-text strong {
    color: var(--gray-400);
}

.disclaimer-mls {
    font-size: 0.7rem;
    color: var(--gray-500);
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .market-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    /* Disable scroll-snap on mobile for better accessibility */
    html {
        scroll-snap-type: none;
    }

    .snap-section {
        scroll-snap-align: none;
        scroll-snap-stop: normal;
        min-height: auto;
    }

    /* Mobile tower controls - show */
    .mobile-controls {
        display: flex;
    }

    /* Hide split view on mobile */
    .split-view {
        display: none;
    }

    /* Show list view on mobile (default) */
    .list-view {
        display: flex;
    }

    .list-view.active {
        display: flex;
    }

    /* Tower section adjustments */
    .towers-section {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    /* Mobile tower view (when toggled) */
    .towers-panel.mobile-visible {
        display: block;
        padding: 20px;
    }

    .towers-panel.mobile-visible .towers-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .towers-panel.mobile-visible .tower {
        transform: scale(0.8);
    }

    .towers-panel.mobile-visible .amenities-base {
        display: none;
    }

    .unit-panel {
        width: 100%;
        right: -100%;
    }

    .panel-content {
        padding: 60px 24px 24px;
    }

    .panel-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat {
        padding: 15px 10px;
    }

    .stat-value {
        font-size: 1.25rem;
    }

    .sale-details {
        flex-direction: column;
        gap: 8px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        text-align: center;
    }

    .footer-disclaimers {
        padding: 20px 20px 0;
    }

    .disclaimer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .disclaimer-mls {
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .mobile-units {
        grid-template-columns: repeat(2, 1fr);
    }

    .market-stats {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   PANEL FLOOR PLAN
   ============================================ */

.panel-floorplan {
    margin-bottom: 30px;
}

.panel-floorplan h4 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.floorplan-container {
    position: relative;
    background: var(--navy-dark);
    border-radius: 8px;
    overflow: hidden;
}

.floorplan-image {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.floorplan-image:hover {
    transform: scale(1.02);
}

.floorplan-expand {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--gold);
    border: none;
    border-radius: 4px;
    color: var(--navy-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.floorplan-expand:hover {
    background: var(--gold-light);
    transform: scale(1.1);
}

/* ============================================
   FLOOR PLANS SECTION
   ============================================ */

.floorplans-section {
    min-height: 100vh;
    padding: 40px 20px;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.floorplans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

.floorplan-card {
    background: var(--navy);
    border: 1px solid var(--navy-light);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-base);
}

.floorplan-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floorplan-preview {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--white);
}

.floorplan-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.floorplan-card:hover .floorplan-preview img {
    transform: scale(1.05);
}

.floorplan-info {
    padding: 24px;
}

.floorplan-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.floorplan-info sup {
    font-size: 0.6em;
    color: var(--gold);
}

.floorplan-sqft {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.floorplan-details {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-bottom: 4px;
}

.floorplan-units {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* ============================================
   AMENITIES SECTION - Featured Gallery
   ============================================ */

.amenities-section {
    padding: 0;
    background: var(--navy-dark);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Large Featured Image */
.amenities-featured {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    min-height: 0;
}

.amenities-featured img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: calc(100vh - 200px);
}

.featured-caption {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(10, 22, 40, 0.9);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--navy-light);
}

#featured-amenity-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
}

.featured-counter {
    font-size: 0.85rem;
    color: var(--gray-400);
}

#featured-index {
    color: var(--gold);
    font-weight: 600;
}

/* Featured Nav Arrows */
.featured-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(10, 22, 40, 0.8);
    border: 1px solid var(--navy-light);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.featured-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.featured-prev {
    left: 20px;
}

.featured-next {
    right: 20px;
}

/* Horizontal Scrolling Thumbnails */
.amenities-thumbs-wrapper {
    flex-shrink: 0;
    background: var(--navy);
    border-top: 1px solid var(--navy-light);
    padding: 16px 20px;
}

.amenities-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--navy-dark);
}

.amenities-thumbs::-webkit-scrollbar {
    height: 6px;
}

.amenities-thumbs::-webkit-scrollbar-track {
    background: var(--navy-dark);
    border-radius: 3px;
}

.amenities-thumbs::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.thumb-item {
    flex-shrink: 0;
    width: 100px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-fast);
    opacity: 0.6;
}

.thumb-item:hover {
    opacity: 1;
    border-color: var(--gray-400);
}

.thumb-item.active {
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 0 15px var(--gold-glow);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   AMENITIES LIGHTBOX GALLERY
   ============================================ */

.lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(10, 22, 40, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox-modal.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--navy-light);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(26, 39, 68, 0.8);
    border: 1px solid var(--navy-light);
    border-radius: 50%;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy-dark);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 20px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    text-align: center;
}

.lightbox-counter {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--gray-400);
}

/* Make amenity cards clickable */
.amenity-card,
.gallery-item {
    cursor: pointer;
}

.amenity-card:hover,
.gallery-item:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .lightbox-caption {
        font-size: 1.2rem;
    }
}

/* ============================================
   FLOOR PLAN MODAL
   ============================================ */

.floorplan-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(10, 22, 40, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.floorplan-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--navy-light);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.modal-content {
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 75vh;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-info {
    text-align: center;
    margin-top: 24px;
}

.modal-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.modal-info p {
    font-size: 1.1rem;
    color: var(--gray-300);
}

/* ============================================
   RESPONSIVE - FLOOR PLANS & AMENITIES
   ============================================ */

@media (max-width: 1024px) {
    .floorplans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .featured-prev {
        left: 10px;
    }

    .featured-next {
        right: 10px;
    }

    .thumb-item {
        width: 80px;
        height: 56px;
    }
}

@media (max-width: 768px) {
    .floorplans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .amenities-featured img {
        max-height: calc(100vh - 180px);
    }

    .featured-caption {
        bottom: 10px;
        padding: 8px 16px;
        gap: 12px;
    }

    #featured-amenity-title {
        font-size: 1rem;
    }

    .featured-counter {
        font-size: 0.75rem;
    }

    .featured-nav {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .amenities-thumbs-wrapper {
        padding: 12px 10px;
    }

    .thumb-item {
        width: 70px;
        height: 50px;
    }

    .amenities-list {
        gap: 12px;
    }

    .amenities-list-item {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .modal-content img {
        max-height: 60vh;
    }

    .floorplan-modal {
        padding: 20px;
    }
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--navy);
    border-top: 1px solid var(--navy-light);
    padding: 20px 24px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

.cookie-accept {
    background: var(--gold);
    color: var(--navy-dark);
}

.cookie-accept:hover {
    background: var(--gold-light);
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--gray-500);
    color: var(--gray-400);
}

.cookie-decline:hover {
    border-color: var(--gray-300);
    color: var(--gray-300);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-content p {
        font-size: 0.85rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        padding: 10px 20px;
    }
}
