/* ═══════════════════════════════════════════════
   SA Holdings — Ultra-Premium Editorial Design System
   Inspired by Millennium Tower SF
   ═══════════════════════════════════════════════ */

:root {
    --bg:            #060608;
    --bg-2:          #0b0b0e;
    --surface:       rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.06);
    --border:        rgba(255, 255, 255, 0.08);
    --border-hover:  rgba(255, 255, 255, 0.16);
    --text-1:        #F8FAFC;
    --text-2:        #CBD5E1;
    --text-3:        #94A3B8;
    --gold:          #C9A84C;
    --gold-light:    #DFC06A;
    --gold-dark:     #A8883A;
    --gold-subtle:   rgba(201, 168, 76, 0.08);
    --font-h:        'Playfair Display', Georgia, serif;
    --font-b:        'Outfit', system-ui, sans-serif;
    --font-heading:  'Playfair Display', Georgia, serif;
    --font-body:     'Outfit', system-ui, sans-serif;
    --radius:        2px;
    --radius-lg:     4px;
    --ease:          cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
    --transition:    all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background: #060608;
}

body {
    background: var(--bg);
    color: var(--text-1);
    font-family: var(--font-b);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide default cursor on desktop to display custom luxury cursor */
@media (pointer: fine) {
    html, body, body *, a, button, [role="button"], .btn-primary, .btn-secondary, .btn-hero, .btn-outline, .btn-text-link, .project-card, .hamburger, .social-link {
        cursor: none !important;
    }
    input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="search"], textarea {
        cursor: text !important;
    }
}

img      { display: block; max-width: 100%; }
a        { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol   { list-style: none; }
button   { font-family: var(--font-b); }

/* ── Typography ───────────────────────────────── */
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: block;
}

.section-title {
    font-family: var(--font-h);
    font-size: clamp(1.7rem, 2.4vw, 2.6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-1);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-2);
    line-height: 1.8;
    max-width: 560px;
}

.text-gold { color: var(--gold); }

/* ── Layout ───────────────────────────────────── */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section {
    padding: 9rem 0;
    position: relative;
}

/* ── Glass Card ───────────────────────────────── */
.glass-card {
    background: var(--surface);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

/* ── Buttons ──────────────────────────────────── */
.btn-primary, .btn-outline, .btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.25rem;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
}
.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-1);
    border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-full { width: 100%; justify-content: center; }

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--ease);
}
.btn-hero:hover .btn-arrow,
.btn-text-link:hover .btn-arrow { transform: translateX(5px); }

/* ── Hero Button ──────────────────────────────── */
.btn-hero {
    background: transparent;
    color: var(--text-1);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 1.1rem 2.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    border-radius: 2px;
}
.btn-hero:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.05);
}

/* ── Text Link ─────────────────────────────────── */
.btn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding-bottom: 3px;
    transition: var(--transition);
}
.btn-text-link:hover {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}
.btn-text-link .btn-arrow { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════
   CUSTOM CURSOR FOLLOWER
   ═══════════════════════════════════════════════ */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--gold, #C9A84C);
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 999999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(201,168,76,0.65);
    border-radius: 50%;
    pointer-events: none !important;
    z-index: 999998;
    transform: translate(-50%, -50%);
    opacity: 0;
    box-shadow: 0 0 10px rgba(201,168,76,0.15);
    transition: width 0.25s cubic-bezier(0.2, 0, 0.2, 1), height 0.25s cubic-bezier(0.2, 0, 0.2, 1), opacity 0.2s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cursor-ring.hovering {
    width: 56px;
    height: 56px;
    border-color: var(--gold, #C9A84C);
    background: rgba(201,168,76,0.08);
    box-shadow: 0 0 16px rgba(201,168,76,0.3);
}

.cursor-ring.text-hover {
    width: 22px;
    height: 22px;
    border-color: rgba(201,168,76,0.35);
    background: transparent;
    opacity: 0.4;
}

.cursor-ring.clicking {
    transform: translate(-50%, -50%) scale(0.85);
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.6s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(6,6,6,0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: rgba(255,255,255,0.06);
}

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

.nav-brand {
    display: inline-flex;
    align-items: center;
    position: relative;
    padding: 0.35rem 0.6rem;
    border-radius: 10px;
    transition: transform 0.35s cubic-bezier(0.2, 0, 0.2, 1);
}

.nav-brand::before {
    content: '';
    position: absolute;
    inset: -6px -14px;
    background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.35) 0%, rgba(201, 168, 76, 0.1) 50%, transparent 75%);
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0.85;
    pointer-events: none;
    z-index: -1;
    animation: logoAuraPulse 3.5s ease-in-out infinite alternate;
}

@keyframes logoAuraPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.12);
        opacity: 1;
    }
    100% {
        transform: scale(0.92);
        opacity: 0.6;
    }
}

.nav-logo {
    height: 54px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: all 0.35s cubic-bezier(0.2, 0, 0.2, 1);
}

.nav-logo-white {
    display: block;
    filter: drop-shadow(0 0 16px rgba(201, 168, 76, 0.5)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.nav-logo-red {
    display: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

/* When hero is bright (e.g. Sofia Sapphire daylight view) */
body.bright-hero .navbar:not(.scrolled) .nav-logo-white,
.navbar.navbar-bright:not(.scrolled) .nav-logo-white {
    display: none !important;
}

body.bright-hero .navbar:not(.scrolled) .nav-logo-red,
.navbar.navbar-bright:not(.scrolled) .nav-logo-red {
    display: block !important;
}

body.bright-hero .navbar:not(.scrolled) .nav-brand {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body.bright-hero .navbar:not(.scrolled) .nav-book-btn {
    background: var(--gold);
    color: #000 !important;
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

body.bright-hero .navbar:not(.scrolled) .hamburger span {
    background: #000;
}

/* When scrolled down to black navbar */
.navbar.scrolled .nav-logo-white {
    display: block !important;
}
.navbar.scrolled .nav-logo-red {
    display: none !important;
}
.navbar.scrolled .nav-brand {
    background: transparent;
    border: none;
    box-shadow: none;
}

.nav-brand:hover {
    transform: translateY(-2px) scale(1.05);
}

.nav-brand:hover .nav-logo-white {
    filter: drop-shadow(0 0 24px rgba(201, 168, 76, 0.9)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.95));
}

/* Desktop nav links — hidden, all nav goes through fullscreen overlay */
.nav-links { display: none; }

/* Active state */
.active-link { color: rgba(255,255,255,0.9) !important; }

/* Nav right group */
.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* "Book Consultation" — always visible */
.nav-book-btn {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0.55rem 1.4rem;
    border-radius: 1px;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-book-btn:hover {
    color: var(--gold);
    border-color: rgba(201,168,76,0.5);
    background: rgba(201,168,76,0.04);
}

/* Hamburger — always visible */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
    z-index: 10001;
    position: relative;
}
.hamburger span {
    width: 26px;
    height: 1px;
    background: var(--text-1);
    transition: var(--transition);
    transform-origin: center;
    display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Legacy mobile-nav */
.mobile-nav { display: none !important; }

/* ═══════════════════════════════════════════════
   FULLSCREEN NAVIGATION OVERLAY
   ═══════════════════════════════════════════════ */
.fullscreen-nav {
    position: fixed;
    inset: 0;
    background: rgba(3,3,3,0.98);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1);
    overflow: hidden;
}
.fullscreen-nav.open { opacity: 1; pointer-events: all; }
.fullscreen-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201,168,76,0.03) 0%, transparent 65%);
    pointer-events: none;
}
.fullscreen-nav-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}
.fullscreen-nav-list { list-style: none; padding: 0; margin: 0; }
.fullscreen-nav-list li { overflow: hidden; line-height: 1; }
.fullscreen-nav-link {
    display: block;
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 4vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: rgba(255,255,255,0.28);
    text-transform: uppercase;
    line-height: 1.2;
    padding: 0.1rem 0;
    transform: translateY(110%);
    transition: color 0.35s ease;
}
.fullscreen-nav.open .fullscreen-nav-link {
    transform: translateY(0);
    transition: color 0.35s ease, transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.fullscreen-nav-list li:nth-child(1) .fullscreen-nav-link { transition-delay: 0.04s; }
.fullscreen-nav-list li:nth-child(2) .fullscreen-nav-link { transition-delay: 0.10s; }
.fullscreen-nav-list li:nth-child(3) .fullscreen-nav-link { transition-delay: 0.16s; }
.fullscreen-nav-list li:nth-child(4) .fullscreen-nav-link { transition-delay: 0.22s; }
.fullscreen-nav-list li:nth-child(5) .fullscreen-nav-link { transition-delay: 0.28s; }
.fullscreen-nav-list li:nth-child(6) .fullscreen-nav-link { transition-delay: 0.34s; }
.fullscreen-nav-link:hover { color: var(--text-1); }
.fullscreen-nav-link.active-link { color: var(--gold); }
.fullscreen-nav-footer {
    position: absolute;
    bottom: 3rem; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease 0.4s, transform 0.5s ease 0.4s;
}
.fullscreen-nav.open .fullscreen-nav-footer { opacity: 1; transform: translateY(0); }
.fullscreen-nav-footer-contact {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-3);
}
.fullscreen-nav-footer-contact a { color: var(--text-3); transition: color 0.3s ease; }
.fullscreen-nav-footer-contact a:hover { color: var(--gold); }
.fullscreen-nav-footer-social { display: flex; gap: 1.5rem; }
.fullscreen-nav-footer-social a {
    font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--text-3); transition: color 0.3s ease;
}
.fullscreen-nav-footer-social a:hover { color: var(--text-1); }

/* ═══════════════════════════════════════════════
   HERO — Full-Bleed Cinematic
   ═══════════════════════════════════════════════ */
.hero {
    height: 100vh;
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-media-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: var(--bg);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,0.72) 0%,
        rgba(0,0,0,0.35) 55%,
        rgba(0,0,0,0.15) 100%
    ),
    linear-gradient(
        to top,
        rgba(6,6,6,0.95) 0%,
        rgba(6,6,6,0.4)  30%,
        transparent      70%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 3rem 7rem 3rem;
    max-width: 900px;
}

.hero-location {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.hero-location-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2.5s ease-in-out infinite;
}

.hero-heading {
    font-family: var(--font-h);
    font-size: clamp(2.2rem, 4.5vw, 5rem);
    line-height: 1.0;
    margin-bottom: 2.5rem;
    color: var(--text-1);
    letter-spacing: -0.03em;
    font-weight: 700;
}

.hero-heading em {
    font-style: italic;
    color: rgba(255,255,255,0.6);
}

.hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 440px;
    margin-bottom: 3rem;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Scroll line */
.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.hero-scroll-indicator span:first-child {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    writing-mode: vertical-lr;
}
.hero-scroll-indicator .scroll-line {
    display: block;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
    animation: scrollLine 2.5s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
    50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
    51%  { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Hero pill (legacy — still in HTML) */
.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}
.pill-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.4; transform:scale(1.5); } }

/* ═══════════════════════════════════════════════
   STATS BAR — Editorial Large Numerals
   ═══════════════════════════════════════════════ */
.stats-bar {
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0;
    overflow: hidden;
}

.stats-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    padding: 4rem 3rem;
    border-right: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
    transition: background 0.5s var(--ease);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.02); }

.stat-value {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 2.8vw, 3rem);
    color: var(--text-1);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.stat-value .stat-suffix {
    font-size: 0.55em;
    color: var(--gold);
    vertical-align: super;
    font-weight: 700;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-3);
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION — Editorial Split
   ═══════════════════════════════════════════════ */
.about-teaser {
    background: var(--bg);
    padding: 0;
}

.about-editorial {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 80vh;
}

.about-image-col {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.about-image-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 8s var(--ease);
}
.about-image-col:hover img { transform: scale(1.04); }

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--bg) 100%),
                linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
}

.about-badge {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 2;
}
.about-badge-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}
.about-badge-value {
    font-family: var(--font-h);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

.about-text-col {
    padding: 8rem 5rem 8rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    display: block;
}

.about-headline {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text-1);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.about-headline em {
    font-style: italic;
    color: rgba(255,255,255,0.45);
}

.about-body {
    color: var(--text-2);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    max-width: 420px;
}

.about-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 2.5rem 0;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════
   PROJECT CARDS — Tall Editorial
   ═══════════════════════════════════════════════ */
.projects-showcase {
    background: var(--bg-2);
    padding: 9rem 0;
}

.projects-header {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 5rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 3rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    border: none;
    background: #0a0a0a;
    aspect-ratio: 3/4;
    display: block;
    transition: none;
}

.project-card-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.9s var(--ease);
    transform: scale(1.03);
}
.project-card:hover .project-card-image img { transform: scale(1.09); }

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.3)  45%,
        rgba(0,0,0,0.1)  100%
    );
    transition: background 0.5s ease;
}
.project-card:hover .project-card-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.92) 0%,
        rgba(0,0,0,0.45)  50%,
        rgba(0,0,0,0.15)  100%
    );
}

.project-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 2;
}

.project-type-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.project-card-logo {
    height: 28px;
    width: auto;
    border-radius: 0;
    margin-bottom: 1rem;
    object-fit: contain;
    object-position: left;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}
.project-card:hover .project-card-logo { opacity: 1; }

.project-card-body h3 {
    font-family: var(--font-h);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-1);
}

.project-card-body p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0;
    letter-spacing: 0.02em;
}

.project-card-location {
    display: none; /* hidden in editorial card — location shown via eyebrow */
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.project-card:hover .project-card-link {
    opacity: 1;
    transform: translateY(0);
}
.project-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}
.project-card:hover .project-card-link::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════════
   CTA STRIP — Minimal Editorial
   ═══════════════════════════════════════════════ */
.cta-strip {
    padding: 10rem 0;
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,0.04);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    padding: 0 3rem;
}

.cta-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    opacity: 0.8;
}

.cta-headline {
    font-family: var(--font-h);
    font-size: clamp(2rem, 3.5vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--text-1);
    max-width: 800px;
    font-weight: 700;
}

.cta-headline em {
    font-style: italic;
    color: rgba(255,255,255,0.35);
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* glass-card override — strip doesn't need it */
.cta-strip .glass-card { background: transparent; border: none; border-radius: 0; backdrop-filter: none; }
.cta-inner .section-title { font-size: clamp(2rem, 3.5vw, 3.8rem); letter-spacing: -0.03em; }
.cta-inner p { display: none; }

/* ═══════════════════════════════════════════════
   FOOTER — Minimal Editorial
   ═══════════════════════════════════════════════ */
.footer {
    background: #030303;
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 5rem 0 2.5rem;
}

.footer-grid {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 2.2fr 1.1fr 1.1fr 1.3fr 1.3fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 1100px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 540px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.footer-brand .nav-brand {
    margin-bottom: 1.25rem;
    display: inline-flex;
}

.footer-brand img {
    height: 52px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(201, 168, 76, 0.45));
    transition: transform 0.3s ease;
}
.footer-brand img:hover {
    transform: scale(1.05);
}

.footer-brand p {
    color: var(--text-3);
    font-size: 0.86rem;
    line-height: 1.75;
    margin-top: 0.5rem;
}

.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    color: var(--text-3);
    transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.footer-col h4 {
    font-family: var(--font-b);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-col ul a { font-size: 0.86rem; color: #9ca3af; transition: var(--transition); line-height: 1.5; }
.footer-col ul a:hover { color: #fff; transform: translateX(3px); display: inline-block; }

.footer-bottom {
    max-width: 1360px;
    margin: 0 auto;
    padding: 2rem 2.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); letter-spacing: 0.04em; }
.footer-bottom a { transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold) !important; }

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade {
    opacity: 0;
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-up    { transform: translateY(60px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-fade  { transform: none; }

.visible {
    opacity: 1 !important;
    transform: translate(0, 0) !important;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

/* Immediate hero visibility */
.hero-content .reveal-up,
.hero-content .reveal-up.delay-1,
.hero-content .reveal-up.delay-2,
.hero-content .reveal-up.delay-3,
.hero-content .reveal-up.delay-4,
.project-hero-content .reveal-up,
.project-hero-content .reveal-up.delay-1,
.project-hero-content .reveal-up.delay-2,
.project-hero-content .reveal-up.delay-3,
.project-hero-content .reveal-up.delay-4 {
    animation: heroFade 1.2s var(--ease) forwards;
    opacity: 1 !important;
}
.hero-content .reveal-up.delay-1, .project-hero-content .reveal-up.delay-1 { animation-delay: 0.15s; }
.hero-content .reveal-up.delay-2, .project-hero-content .reveal-up.delay-2 { animation-delay: 0.3s; }
.hero-content .reveal-up.delay-3, .project-hero-content .reveal-up.delay-3 { animation-delay: 0.45s; }
.hero-content .reveal-up.delay-4, .project-hero-content .reveal-up.delay-4 { animation-delay: 0.6s; }

@keyframes heroFade {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   PARALLAX
   ═══════════════════════════════════════════════ */
[data-parallax] { will-change: transform; }

/* ═══════════════════════════════════════════════
   PROJECT PAGES — Hero
   ═══════════════════════════════════════════════ */
.project-section { background: var(--bg); }
.sofia-section { background: var(--bg); }
.five-west-section { background: var(--bg-2); }

.project-hero {
    height: 100vh;
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.project-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 3rem 7rem 3rem;
    max-width: 800px;
}

.project-hero-logo {
    height: 64px;
    max-width: 280px;
    margin: 0 0 2rem 0;
    background: transparent !important;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
    opacity: 0.95;
    object-fit: contain;
}

.project-hero-title {
    font-family: var(--font-h);
    font-size: clamp(2rem, 3.5vw, 4rem);
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: var(--text-1);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.project-hero-sub {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    max-width: 440px;
    margin: 0 0 2.5rem 0;
    line-height: 1.8;
}

/* Page Hero (about, contact) */
.page-hero {
    height: 60vh;
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
    background: var(--bg);
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 3rem 6rem 3rem;
}

.page-hero-content .hero-heading {
    font-size: clamp(2rem, 3.5vw, 3.8rem);
}

.page-hero-content .hero-sub {
    margin: 1.5rem 0 0 0;
    max-width: 500px;
}

/* ═══════════════════════════════════════════════
   PROJECT DETAIL SECTIONS
   ═══════════════════════════════════════════════ */
.project-header {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 5rem;
}
.project-header-right { flex-direction: row-reverse; }
.text-right { text-align: right; }
.project-section-logo { height: 80px; flex-shrink: 0; filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5)); }

.project-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-bottom: 6rem;
}
.project-content-grid-reverse { direction: rtl; }
.project-content-grid-reverse > * { direction: ltr; }

.project-desc { color: var(--text-2); margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.85; }

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 2px;
    transition: var(--transition);
}
.highlight-item:hover { background: rgba(255,255,255,0.04); border-color: rgba(201,168,76,0.2); }
.highlight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    color: var(--gold);
    flex-shrink: 0;
    line-height: 1;
}
.highlight-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}
.highlight-label { font-size: 0.875rem; color: var(--text-2); font-weight: 500; }

.project-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.project-social { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.social-label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }

.social-link-lg {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.3rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 2px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-2);
    transition: var(--transition);
}
.social-link-lg:hover { border-color: var(--gold); color: var(--gold); }

/* Gallery */
.project-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.project-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    border-radius: 0;
    transition: transform 0.6s var(--ease);
}
.project-gallery img:first-child { grid-column: span 2; aspect-ratio: 16/9; }
.project-gallery img:hover { transform: scale(1.015); }

.masonry-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.masonry-gallery img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1;
    border-radius: 0;
    transition: transform 0.6s var(--ease);
}
.masonry-gallery img:hover { transform: scale(1.015); }

/* Units */
.units-section { margin-bottom: 5rem; }
.units-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.04);
}
.unit-card {
    padding: 2.5rem;
    background: var(--bg);
    transition: background 0.3s ease;
}
.unit-card:hover { background: rgba(255,255,255,0.02); }
.unit-type { font-family: var(--font-h); font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--text-1); letter-spacing: -0.01em; }
.unit-area { font-size: 0.8rem; color: var(--gold); font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.unit-ideal { font-size: 0.85rem; color: var(--text-3); }

/* Investment */
.investment-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 5rem 0;
    background: rgba(255,255,255,0.04);
}
.invest-item {
    padding: 3rem 2.5rem;
    background: var(--bg);
    transition: background 0.3s ease;
}
.invest-item:hover { background: rgba(255,255,255,0.02); }
.invest-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-3); margin-bottom: 0.75rem; }
.invest-value { font-family: var(--font-h); font-size: 1.6rem; color: var(--gold); letter-spacing: -0.01em; }

/* Distance */
.distance-section { margin-bottom: 5rem; }
.distance-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    background: rgba(255,255,255,0.04);
}
.distance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg);
    font-size: 0.9rem;
    transition: background 0.3s ease;
}
.distance-item:hover { background: rgba(255,255,255,0.02); }
.distance-place { color: var(--text-2); }
.distance-time { color: var(--gold); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; white-space: nowrap; }

/* Amenities */
.amenities-section { margin-bottom: 5rem; }
.amenities-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.amenity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.25rem;
    background: var(--bg-2);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--text-2);
    transition: all 0.3s ease;
}
.amenity-badge:hover {
    background: rgba(255,255,255,0.03);
    border-color: rgba(201,168,76,0.25);
    color: var(--text-1);
    transform: translateY(-2px);
}
.amenity-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.amenity-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--gold);
}
.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 1px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--text-3);
    transition: var(--transition);
}
.amenity-tag:hover { border-color: rgba(201,168,76,0.3); color: var(--text-2); }
.amenity-tag::before { content: "—"; color: var(--gold); font-weight: 700; font-size: 0.7em; }

/* Video */
.video-showcase {
    border-radius: 0;
    overflow: hidden;
    position: relative;
    margin-top: 5rem;
}
.showcase-video { width: 100%; height: auto; display: block; max-height: 72vh; object-fit: cover; }
.video-label {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    padding: 1.5rem 2rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}
.video-label h3 { font-family: var(--font-h); font-size: 1.5rem; margin-bottom: 0.25rem; }
.video-label p { font-size: 0.85rem; color: var(--text-2); margin: 0; }

.video-section { padding: 0; }

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact-section {
    background: var(--bg-2);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}

.contact-info p { color: var(--text-2); margin-bottom: 3rem; line-height: 1.8; }
.contact-details { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 3rem; }
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 2px;
    color: var(--text-2);
    font-size: 0.95rem;
    transition: var(--transition);
}
.contact-item:hover { border-color: rgba(201,168,76,0.2); color: var(--text-1); }
.contact-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(201,168,76,0.08);
    border-radius: 1px;
    flex-shrink: 0;
    color: var(--gold);
}
.contact-social { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Form */
.contact-form { padding: 3rem; }
.contact-form h3 { font-family: var(--font-h); font-size: 2rem; margin-bottom: 2.5rem; letter-spacing: -0.02em; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-3); }
.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 2px;
    padding: 1rem 1.25rem;
    color: var(--text-1);
    font-family: var(--font-b);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.03);
}
.form-group select option { background: #111; color: var(--text-1); }
.form-note { font-size: 0.82rem; color: var(--gold); margin-top: 1rem; text-align: center; min-height: 1.2em; }

/* ═══════════════════════════════════════════════
   HIGHLIGHTS STRIP
   ═══════════════════════════════════════════════ */
.highlights-strip {
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    padding: 0;
}
.highlights-strip .highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.04);
}
.highlights-strip .highlight-item {
    border-radius: 0;
    border: none;
    background: var(--bg);
    padding: 2rem 2.5rem;
    transition: background 0.3s ease;
}
.highlights-strip .highlight-item:hover { background: rgba(255,255,255,0.02); }

/* ═══════════════════════════════════════════════
   LOCATION MAP
   ═══════════════════════════════════════════════ */
.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: start;
}
.map-wrap { overflow: hidden; border: 1px solid rgba(255,255,255,0.05); border-radius: 0; }
.map-container { width: 100%; height: 440px; background: #0f0f1a; }
.leaflet-popup-content-wrapper {
    background: #111 !important;
    color: #fff !important;
    border-radius: 2px !important;
    border: 1px solid rgba(201,168,76,0.25) !important;
}
.leaflet-popup-tip { background: #111 !important; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1100px) {
    .container { padding: 0 2rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 0 2rem; }
    .footer-brand { grid-column: span 2; }
    .footer-bottom { padding: 2rem 2rem 0; }
    .about-editorial { grid-template-columns: 1fr; }
    .about-image-col { min-height: 480px; position: relative; }
    .about-text-col { padding: 5rem 3rem; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .nav-container { padding: 1.5rem 2rem; }

    .section { padding: 6rem 0; }

    .hero-content { padding: 0 2rem 5rem 2rem; }
    .hero-scroll-indicator { right: 2rem; }

    .stats-container { grid-template-columns: repeat(2, 1fr); }
    .stat-item { padding: 3rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

    .projects-grid { grid-template-columns: 1fr; padding: 0 2rem; }
    .project-card { aspect-ratio: 4/3; }
    .projects-header { padding: 0 2rem; flex-direction: column; gap: 1rem; }

    .project-content-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .project-content-grid-reverse { direction: ltr; }
    .project-header,
    .project-header-right { flex-direction: column; gap: 1.5rem; }
    .text-right { text-align: left; }

    .units-grid { grid-template-columns: 1fr 1fr; }
    .investment-strip { grid-template-columns: 1fr; }

    .location-grid { grid-template-columns: 1fr; gap: 3rem; }
    .masonry-gallery { grid-template-columns: 1fr; }
    .masonry-gallery img { aspect-ratio: 16/9; }

    .cta-headline { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .cta-strip { padding: 7rem 0; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }

    .highlights-strip .highlights-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .container { padding: 0 1.5rem; }
    .hero-heading { font-size: clamp(1.8rem, 9vw, 3rem); }
    .highlights-grid { grid-template-columns: 1fr; }
    .project-actions { flex-direction: column; }
    .stats-container { grid-template-columns: 1fr 1fr; }
    .stat-item { padding: 2.5rem 1.5rem; }
    .project-hero-title { font-size: clamp(1.8rem, 8vw, 3rem); }
    .project-hero-content { padding: 0 1.5rem 5rem 1.5rem; }
    .page-hero-content { padding: 0 1.5rem 4rem 1.5rem; }
    .units-grid { grid-template-columns: 1fr; }
    .cta-inner { padding: 0 1.5rem; }
    .footer-grid { padding: 0 1.5rem; }
    .footer-bottom { padding: 1.5rem 1.5rem 0; }
    .map-container { height: 300px; }
    .projects-grid { padding: 0 0; gap: 1px; }
    .projects-header { padding: 0 1.5rem; }

    /* Disable custom cursor on touch devices */
    body { cursor: auto; }
    body * { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none; }

    .highlights-strip .highlights-grid { grid-template-columns: 1fr; }
    .cta-headline { font-size: clamp(2rem, 9vw, 3rem); }
    .about-text-col { padding: 4rem 1.5rem; }
    .contact-form { padding: 2rem 1.5rem; }
    .nav-book-btn { display: none; }
    .fullscreen-nav-footer { flex-direction: column; gap: 1rem; padding: 0 2rem; }
}

/* ═══════════════════════════════════════════════
   EDITORIAL FLOATING CARD SECTION
   Full-bleed image + floating dark card overlay
   Inspired by Millennium Tower "LIVE ABOVE / THE BUILDING"
   ═══════════════════════════════════════════════ */
.editorial-card-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.editorial-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 8s ease;
}
.editorial-card-section:hover .editorial-card-bg { transform: scale(1.03); }
.editorial-card-section-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.32);
    z-index: 1;
}
.editorial-float-card {
    position: relative;
    z-index: 2;
    background: rgba(12,12,16,0.9);
    backdrop-filter: blur(6px);
    padding: 3.5rem 4rem;
    max-width: 520px;
    width: 90%;
    border: 1px solid rgba(255,255,255,0.06);
}
.editorial-float-card .section-eyebrow { margin-bottom: 0.75rem; }
.editorial-float-card-title {
    font-family: var(--font-h);
    font-size: clamp(1.5rem, 2vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--text-1);
    margin-bottom: 1.25rem;
}
.editorial-float-card-body {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.85;
    margin-bottom: 2rem;
}
.editorial-card-explore {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s ease, color 0.3s ease;
}
.editorial-card-explore:hover { gap: 0.9rem; color: var(--gold-light); }

/* Float card position variants */
.editorial-card-section.card-left   { justify-content: flex-start; }
.editorial-card-section.card-left   .editorial-float-card { margin-left: 8vw; }
.editorial-card-section.card-right  { justify-content: flex-end; }
.editorial-card-section.card-right  .editorial-float-card { margin-right: 8vw; }

/* ═══════════════════════════════════════════════
   EDITORIAL SPLIT SECTION
   Half text + half image, alternating sides
   Inspired by Millennium Tower "HEALTH & WELLNESS"
   ═══════════════════════════════════════════════ */
.editorial-split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 65vh;
    background: var(--bg);
}
.editorial-split-section.bg-2 { background: var(--bg-2); }
.editorial-split-section.reverse { direction: rtl; }
.editorial-split-section.reverse > * { direction: ltr; }

.editorial-split-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 7rem 5rem 7rem 7rem;
}
.editorial-split-section.reverse .editorial-split-text {
    padding: 7rem 7rem 7rem 5rem;
}
.editorial-split-headline {
    font-family: var(--font-h);
    font-size: clamp(1.6rem, 2.2vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--text-1);
    margin-bottom: 1.5rem;
}
.editorial-split-headline em {
    font-style: italic;
    color: rgba(255,255,255,0.35);
}
.editorial-split-body {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.9;
    max-width: 400px;
    margin-bottom: 2.5rem;
}
.editorial-split-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    opacity: 0.45;
    margin: 1.75rem 0;
}
.editorial-split-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}
.editorial-split-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.editorial-split-image:hover img { transform: scale(1.04); }

@media (max-width: 960px) {
    .editorial-card-section { height: 85vw; min-height: 340px; }
    .editorial-float-card { padding: 2.5rem; }
    .editorial-card-section.card-left  .editorial-float-card { margin-left: 5vw; }
    .editorial-card-section.card-right .editorial-float-card { margin-right: 5vw; }

    .editorial-split-section {
        grid-template-columns: 1fr;
        direction: ltr !important;
    }
    .editorial-split-section > * { direction: ltr; }
    .editorial-split-text { padding: 5rem 2rem; }
    .editorial-split-section.reverse .editorial-split-text { padding: 5rem 2rem; }
    .editorial-split-image { min-height: 60vw; }
    .editorial-split-section.reverse .editorial-split-image { order: -1; }
}

/* ═══════════════════════════════════════════════
   FLOATING WHATSAPP & QUICK SHARE WIDGET
   ═══════════════════════════════════════════════ */
.floating-contact-wrap {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.floating-whatsapp-btn {
    position: relative;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 2px 8px rgba(0,0,0,0.5);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    text-decoration: none;
}
.floating-whatsapp-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6), 0 4px 12px rgba(0,0,0,0.6);
}
.floating-whatsapp-btn::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.5);
    animation: waPulse 2s infinite ease-out;
}
@keyframes waPulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.floating-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(15, 23, 42, 0.95);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}
.floating-whatsapp-btn:hover .floating-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.floating-share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(201, 168, 76, 0.4);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.4);
    transition: transform 0.25s, background 0.25s, color 0.25s;
}
.floating-share-btn:hover {
    transform: scale(1.1);
    background: var(--gold);
    color: #060608;
}

/* ═══════════════════════════════════════════════
   IN-PAGE SOCIAL SHARE BAR
   ═══════════════════════════════════════════════ */
.social-share-strip {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.social-share-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-right: 0.25rem;
}
.social-share-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.9rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-2);
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.social-share-pill:hover {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-2px);
}
.social-share-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════
   LUXURY TOAST FEEDBACK
   ═══════════════════════════════════════════════ */
.luxury-toast {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background: rgba(10, 10, 16, 0.95);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8), 0 0 20px rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    z-index: 10000;
}
.luxury-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
    .floating-contact-wrap { bottom: 1.25rem; right: 1.25rem; }
    .floating-whatsapp-btn { width: 50px; height: 50px; }
    .floating-whatsapp-btn svg { width: 24px; height: 24px; }
    .floating-share-btn { width: 36px; height: 36px; }
}


