/* ═══════════════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════════════ */
:root {
    --black: #1C1C1E;
    --charcoal: #0A0A0A;
    --charcoal-light: #1C1C1E;
    --warm-white: #F4F2ED;
    --soft-neutral: #FFFFFF;
    --cream: #e4dfd8;
    --olive: #082247;
    --stone: #8A8A90;
    --gold: #FFB516;
    --gold-light: #FFCB4D;
    --navy: #082247;
    --navy-2: #0D2C57;
    --text-dark: #1C1C1E;
    --text-mid: #3d5068;
    --text-light: #8A8A90;
    --heading: 'Outfit', -apple-system, sans-serif;
    --sans: 'DM Sans', -apple-system, sans-serif;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

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

body {
    font-family: var(--sans);
    font-weight: 300;
    color: var(--text-dark);
    background: var(--soft-neutral);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ═══════════════════════════════════════════════
   LOADING SCREEN
   ═══════════════════════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-out-expo), visibility 0.8s;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    opacity: 0;
    animation: loaderFade 1.6s var(--ease-out-expo) 0.2s forwards;
}

.loader-logo img {
    height: clamp(28px, 4vw, 44px);
    width: auto;
    object-fit: contain;
}

@keyframes loaderFade {
    0% { opacity: 0; transform: translateY(12px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem clamp(1.5rem, 5vw, 4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s var(--ease-out-expo);
}

.nav.scrolled {
    background: rgba(41, 40, 47, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem clamp(1.5rem, 5vw, 4rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(245, 240, 235, 0.7);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out-expo);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.72rem !important;
    letter-spacing: 0.15em !important;
    padding: 0.7rem 1.6rem;
    border: 1px solid rgba(255, 181, 22, 0.4);
    color: var(--warm-white) !important;
    transition: all 0.4s var(--ease-out-expo) !important;
}

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

.nav-cta::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--warm-white);
    transition: all 0.4s var(--ease-out-expo);
}

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

/* ═══════════════════════════════════════════════
   MOBILE NAV — FULL-SCREEN PANEL
   ═══════════════════════════════════════════════ */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(36, 35, 41, 0.99);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transition: opacity 0.55s var(--ease-out-expo), visibility 0.55s;
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: calc(env(safe-area-inset-top, 0px) + 6.5rem)
             clamp(1.75rem, 7vw, 3rem)
             calc(env(safe-area-inset-bottom, 0px) + 2.5rem);
}

/* faint gold hairline under the nav, inside the panel */
.mobile-nav-inner::before {
    content: '';
    position: absolute;
    top: calc(env(safe-area-inset-top, 0px) + 5rem);
    left: clamp(1.75rem, 7vw, 3rem);
    right: clamp(1.75rem, 7vw, 3rem);
    height: 1px;
    background: rgba(255, 181, 22, 0.18);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Top-level rows (links + the group trigger) share one editorial row style */
.mobile-nav-links > a,
.mobile-nav-group-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: var(--heading);
    font-size: clamp(1.5rem, 7vw, 2rem);
    font-weight: 200;
    letter-spacing: 0.02em;
    color: var(--warm-white);
    text-align: left;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(245, 240, 235, 0.09);
    padding: 1rem 0;
    cursor: pointer;
    transition: color 0.3s, padding-left 0.35s var(--ease-out-expo);
}

.mobile-nav-links > a:hover,
.mobile-nav-group-trigger:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.mobile-nav-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-nav-group-trigger svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease-out-expo);
}

.mobile-nav-group.open .mobile-nav-group-trigger svg,
.mobile-nav-group-trigger[aria-expanded="true"] svg {
    transform: rotate(180deg);
    color: var(--gold);
}

.mobile-nav-group-panel {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s var(--ease-out-expo), opacity 0.4s, margin 0.4s;
}

.mobile-nav-group.open .mobile-nav-group-panel {
    max-height: 360px;
    opacity: 1;
    margin: 0.6rem 0 0.4rem;
}

.mobile-nav-group-panel a {
    font-family: var(--sans);
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.55);
    padding: 0.7rem 0 0.7rem 1.1rem;
    margin-left: 0.15rem;
    border-left: 1px solid rgba(255, 181, 22, 0.25);
    transition: color 0.3s, border-color 0.3s, padding-left 0.3s var(--ease-out-expo);
}

.mobile-nav-group-panel a:hover {
    color: var(--gold);
    border-color: var(--gold);
    padding-left: 1.4rem;
}

/* Footer: CTA + socials */
.mobile-nav-footer {
    margin-top: 2.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1.15rem 2rem;
    background: var(--gold);
    color: var(--black) !important;
    font-family: var(--sans);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: background 0.4s var(--ease-out-expo);
}

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

.mobile-nav-social {
    display: flex;
    justify-content: center;
    gap: 1.75rem;
}

.mobile-nav-social a {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.45);
    transition: color 0.3s;
}

.mobile-nav-social a:hover {
    color: var(--gold);
}

/* Staggered reveal of menu contents when opened */
.mobile-nav-links > *,
.mobile-nav-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.mobile-nav.active .mobile-nav-links > *,
.mobile-nav.active .mobile-nav-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-links > *:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active .mobile-nav-links > *:nth-child(2) { transition-delay: 0.16s; }
.mobile-nav.active .mobile-nav-links > *:nth-child(3) { transition-delay: 0.22s; }
.mobile-nav.active .mobile-nav-links > *:nth-child(4) { transition-delay: 0.28s; }
.mobile-nav.active .mobile-nav-footer { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    .mobile-nav-links > *,
    .mobile-nav-footer {
        transition: opacity 0.3s ease;
        transform: none;
    }
}

/* ═══════════════════════════════════════════════
   MEGAMENU (Models)
   ═══════════════════════════════════════════════ */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 14, 18, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 998;
    transition: opacity 0.45s var(--ease-out-expo), visibility 0.45s;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* When megamenu is open, force the nav to use its solid bg so it sits crisply above the dim */
.nav.megamenu-open {
    background: rgba(41, 40, 47, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.has-megamenu {
    /* containing block for .megamenu is the .nav (fixed) so panel anchors below entire nav */
}

.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #1C1C1E;
    transform: translateY(-12px);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), visibility 0.4s;
    z-index: 999;
}

.has-megamenu.open .megamenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.megamenu-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 0 4rem;
    border-top: 1px solid rgba(255, 181, 22, 0.22);
    border-bottom: 1px solid rgba(245, 240, 235, 0.06);
    box-shadow: 0 32px 80px -24px rgba(0, 0, 0, 0.6);
    padding-block: 2.6rem 2.4rem;
    padding-inline: max(clamp(1.5rem, 5vw, 4rem), calc((100vw - 1180px) / 2));
}

.megamenu-left {
    padding-right: 3rem;
    border-right: 1px solid rgba(245, 240, 235, 0.08);
    min-width: 0;
}

.megamenu-right {
    min-width: 0;
}

.megamenu-eyebrow {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.megamenu-eyebrow-secondary {
    margin-top: 1.4rem;
    color: rgba(245, 240, 235, 0.4);
}

.megamenu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.megamenu-list-compact .megamenu-item a {
    padding: 0.45rem 0;
}

.megamenu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: rgba(245, 240, 235, 0.85);
    text-transform: none;
    border-bottom: 1px solid rgba(245, 240, 235, 0.04);
    transition: color 0.3s, padding-left 0.3s var(--ease-out-expo);
    position: relative;
}

.megamenu-item:last-child a {
    border-bottom: none;
}

.megamenu-item a::after {
    display: none !important;
}

.megamenu-item a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.35s var(--ease-out-expo);
    transform: translateY(-50%);
}

.megamenu-item a:hover {
    color: var(--gold);
    padding-left: 1.2rem;
}

.megamenu-item a:hover::before {
    width: 0.8rem;
}

.megamenu-link-name {
    flex: 1;
}

.megamenu-link-count {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    color: rgba(245, 240, 235, 0.35);
    font-weight: 400;
}

.megamenu-featured {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.megamenu-featured-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--charcoal);
}

.megamenu-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out-expo), opacity 0.4s;
}

.megamenu-featured:hover .megamenu-featured-img img {
    transform: scale(1.04);
}

.megamenu-featured-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.megamenu-featured-name {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--warm-white);
    letter-spacing: 0.01em;
}

.megamenu-featured-spec {
    font-size: 0.78rem;
    color: rgba(245, 240, 235, 0.55);
    font-weight: 300;
    line-height: 1.5;
}

.megamenu-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.4rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s var(--ease-out-expo);
}

.megamenu-featured-link svg {
    width: 14px;
    height: 14px;
}

.megamenu-featured:hover .megamenu-featured-link {
    gap: 0.85rem;
}

.megamenu-trigger {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
}

.megamenu-chevron {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    opacity: 0.7;
    transition: transform 0.4s var(--ease-out-expo), opacity 0.3s;
}

.megamenu-trigger:hover .megamenu-chevron {
    opacity: 1;
}

.megamenu-trigger[aria-expanded="true"] .megamenu-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.megamenu-trigger[aria-expanded="true"]::after {
    width: 100% !important;
}

@media (max-width: 900px) {
    .megamenu {
        display: none;
    }
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* ═══════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════ */
.section-pad {
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.section-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 1.5rem;
}

.section-heading {
    font-family: var(--heading);
    font-weight: 200;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text-dark);
}

.section-heading.light {
    color: var(--warm-white);
}

.section-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 540px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   HERO — VIDEO BACKGROUND
   ═══════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    height: 100svh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg iframe,
.hero-bg video {
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.78vh; /* 16:9 ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(41, 40, 47, 0.95) 0%,
        rgba(41, 40, 47, 0.8) 30%,
        rgba(41, 40, 47, 0.6) 60%,
        rgba(41, 40, 47, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
    max-width: 800px;
}

.hero-eyebrow {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s var(--ease-out-expo) 1.8s forwards;
}

.hero h1 {
    font-family: var(--heading);
    font-weight: 200;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.15;
    color: var(--warm-white);
    margin-bottom: 1.2rem;
    letter-spacing: 0.02em;
    opacity: 0;
    transform: translateY(30px);
    animation: heroReveal 1.2s var(--ease-out-expo) 2s forwards;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 300;
    color: rgba(245, 240, 235, 0.65);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s var(--ease-out-expo) 2.3s forwards;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: heroReveal 1s var(--ease-out-expo) 2.5s forwards;
}

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

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    background: var(--gold);
    color: var(--black);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-primary svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 6px;
    border: 1px solid rgba(245, 240, 235, 0.25);
    color: var(--warm-white);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 181, 22, 0.08);
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    border-radius: 6px;
    background: var(--black);
    color: var(--warm-white);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out-expo);
}

.btn-dark:hover {
    background: var(--charcoal-light);
    transform: translateY(-1px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: heroReveal 1s var(--ease-out-expo) 3s forwards;
}

.scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.35);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(245, 240, 235, 0.15);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ═══════════════════════════════════════════════
   BRAND INTRO
   ═══════════════════════════════════════════════ */
.brand-intro {
    background: var(--soft-neutral);
}

.brand-intro-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.brand-intro-video {
    max-width: 580px;
    margin-left: auto;
}

.brand-intro-text .section-heading {
    margin-bottom: 1.2rem;
}

.brand-intro-video {
    position: relative;
    overflow: hidden;
}

.video-thumbnail {
    display: block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s var(--ease-out-expo);
}

.video-thumbnail:hover img {
    transform: scale(1.03);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    transition: opacity 0.3s;
}

.video-play-btn svg {
    width: 100%;
    height: 100%;
}

.video-thumbnail:hover .video-play-btn {
    opacity: 0.9;
}

.brand-intro-cta-mobile {
    display: none;
}

@media (max-width: 768px) {
    .brand-intro-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .brand-intro-text .btn-primary {
        display: none;
    }

    .brand-intro-cta-mobile {
        display: block;
    }

    .brand-intro-cta-mobile .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════
   POSITIONING SECTION
   ═══════════════════════════════════════════════ */
.positioning {
    background: var(--warm-white);
}

.positioning-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.positioning-headline {
    font-family: var(--heading);
    font-weight: 200;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.3;
    letter-spacing: 0.02em;
    color: var(--text-dark);
    max-width: 700px;
    margin-bottom: clamp(3rem, 7vw, 5rem);
}

.positioning-headline em {
    font-style: normal;
    color: var(--gold);
    font-weight: 300;
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cream);
    border-top: 1px solid var(--cream);
    border-bottom: 1px solid var(--cream);
}

.pillar {
    background: var(--warm-white);
    padding: clamp(2rem, 4vw, 3.5rem);
}

.pillar-number {
    font-family: var(--heading);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.pillar h3 {
    font-family: var(--heading);
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

/* ═══════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════ */
.features {
    background: var(--soft-neutral);
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.features-text .section-heading {
    margin-bottom: 1rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--cream);
}

.feature-item:first-child {
    padding-top: 0;
}

.feature-number {
    font-family: var(--heading);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--gold);
    flex-shrink: 0;
    width: 2rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    font-weight: 300;
}


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

/* ═══════════════════════════════════════════════
   RESIDENCES COLLECTION
   ═══════════════════════════════════════════════ */
.residences {
    background: var(--black);
    color: var(--warm-white);
}

.residences-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: clamp(3rem, 6vw, 5rem);
    flex-wrap: wrap;
    gap: 2rem;
}

.residences-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.residence-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--charcoal);
}

/* ═══════════════════════════════════════════════
   SCROLL TO TOP
   ═══════════════════════════════════════════════ */
.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: var(--charcoal);
    color: var(--warm-white);
    border: 1px solid rgba(245, 240, 235, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out-expo),
                transform 0.4s var(--ease-out-expo),
                background 0.3s var(--ease-out-expo);
    z-index: 100;
    padding: 0;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.scroll-top svg {
    width: 18px;
    height: 18px;
}

.card-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 52px;
    height: 52px;
    background: transparent;
    border: 1px solid rgba(245, 240, 235, 0.6);
    color: var(--warm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(12px, 12px);
    transition: opacity 0.5s var(--ease-out-expo),
                transform 0.5s var(--ease-out-expo),
                background 0.3s var(--ease-out-expo),
                border-color 0.3s var(--ease-out-expo),
                color 0.3s var(--ease-out-expo);
    pointer-events: none;
    z-index: 3;
}

.card-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.residence-card:hover .card-arrow,
.lifestyle-large:hover .card-arrow,
.lifestyle-small:hover .card-arrow,
.commercial-card:hover .card-arrow {
    opacity: 1;
    transform: translate(0, 0);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
}

.residence-card:first-child {
    grid-row: 1 / 3;
}

.residence-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

.residence-img img {
    transition: transform 1.2s var(--ease-out-expo);
}

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

.residence-card::after,
.commercial-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 19, 23, 0.8) 0%,
        rgba(20, 19, 23, 0.65) 35%,
        rgba(20, 19, 23, 0.35) 65%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.residence-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2.5rem;
    z-index: 2;
}

.residence-info > * {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.residence-tag {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.residence-name {
    font-family: var(--heading);
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
}

.residence-spec {
    font-size: 0.8rem;
    color: rgba(245, 240, 235, 0.5);
    margin-bottom: 1.2rem;
    font-weight: 300;
}

.view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    transition: gap 0.3s var(--ease-out-expo);
}

.view-link:hover {
    gap: 0.8rem;
}

.view-link svg {
    width: 14px;
    height: 14px;
}

/* Commercial sub-section */
.commercial-label {
    font-family: var(--heading);
    font-weight: 200;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    letter-spacing: 0.03em;
    color: var(--warm-white);
    margin-top: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

.commercial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.commercial-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--charcoal);
    min-height: 260px;
}

.commercial-card img {
    transition: transform 1.2s var(--ease-out-expo);
}

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

.commercial-card .residence-info {
    padding: 1.8rem;
}

/* ═══════════════════════════════════════════════
   LIFESTYLE NARRATIVE
   ═══════════════════════════════════════════════ */
.lifestyle {
    background: var(--soft-neutral);
}

.lifestyle-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
}

.lifestyle-header .section-sub {
    margin-left: auto;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: clamp(3rem, 6vw, 5rem);
}

.lifestyle-large {
    grid-column: 1 / -1;
    position: relative;
    height: clamp(400px, 50vw, 600px);
    overflow: hidden;
}

.lifestyle-large img {
    transition: transform 1.5s var(--ease-out-expo);
}

.lifestyle-large:hover img {
    transform: scale(1.03);
}

.lifestyle-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: clamp(2rem, 4vw, 3.5rem);
    max-width: 500px;
}

.lifestyle-caption h3 {
    font-family: var(--heading);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.03em;
    color: var(--warm-white);
    margin-bottom: 0.6rem;
}

.lifestyle-caption p {
    font-size: 0.9rem;
    color: rgba(245, 240, 235, 0.6);
    font-weight: 300;
    line-height: 1.7;
}

.lifestyle-small {
    position: relative;
    height: clamp(280px, 35vw, 420px);
    overflow: hidden;
}

.lifestyle-small img {
    transition: transform 1.2s var(--ease-out-expo);
}

.lifestyle-small:hover img {
    transform: scale(1.05);
}

.lifestyle-small .lifestyle-caption h3 {
    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 19, 23, 0.8) 0%,
        rgba(20, 19, 23, 0.6) 30%,
        rgba(20, 19, 23, 0.3) 65%,
        transparent 100%
    );
}

.lifestyle-caption {
    z-index: 2;
}

.lifestyle-caption > * {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════ */
.process {
    background: var(--charcoal);
    color: var(--warm-white);
}

.process-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
    margin-bottom: clamp(3rem, 7vw, 5rem);
}

.process-header .section-heading {
    margin-bottom: 0;
}

.process-header .section-sub {
    margin-left: auto;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: rgba(245, 240, 235, 0.1);
    border-top: 1px solid rgba(245, 240, 235, 0.1);
    border-bottom: 1px solid rgba(245, 240, 235, 0.1);
}

.process-step {
    background: var(--charcoal);
    padding: clamp(1.8rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: column;
    transition: background 0.4s var(--ease-out-expo);
}

.process-step:first-child {
    padding-left: 0;
}

.process-step:last-child {
    padding-right: 0;
}

.process-step:hover {
    background: rgba(245, 240, 235, 0.03);
}

.step-num {
    font-family: var(--heading);
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    color: var(--gold);
    font-weight: 200;
    margin-bottom: 1.8rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.step-title {
    font-family: var(--heading);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin-bottom: 0.7rem;
    color: var(--warm-white);
}

.step-desc {
    font-size: 0.82rem;
    color: rgba(245, 240, 235, 0.55);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: auto;
    padding-bottom: 1.5rem;
}

.step-time {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(245, 240, 235, 0.08);
}

/* ═══════════════════════════════════════════════
   INVESTMENT
   ═══════════════════════════════════════════════ */
.investment {
    background: var(--soft-neutral);
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cream);
    margin-top: clamp(3rem, 6vw, 5rem);
}

.invest-card {
    background: var(--soft-neutral);
    padding: clamp(2rem, 4vw, 3.5rem);
    transition: background 0.5s;
}

.invest-card:hover {
    background: var(--warm-white);
}

.invest-stat {
    font-family: var(--heading);
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 200;
    color: var(--gold);
    margin-bottom: 0.3rem;
    line-height: 1;
    letter-spacing: 0.02em;
}

.invest-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 1.2rem;
    font-weight: 500;
}

.invest-card h3 {
    font-family: var(--heading);
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.03em;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

.invest-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    font-weight: 300;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials {
    background: var(--charcoal);
    color: var(--warm-white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(245, 240, 235, 0.15);
    border-radius: 2px;
}

.google-stars {
    display: flex;
    gap: 2px;
}

.google-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.google-rating {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(245, 240, 235, 0.5);
}

.google-rating strong {
    color: var(--warm-white);
}

.testimonial-swiper {
    overflow: hidden;
    padding-bottom: 3rem;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: rgba(245, 240, 235, 0.3);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.testimonial-card {
    padding: clamp(2rem, 4vw, 3rem);
    border: 1px solid rgba(245, 240, 235, 0.1);
    transition: border-color 0.5s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: var(--gold);
}

.testimonial-quote {
    font-family: var(--sans);
    font-size: clamp(0.92rem, 1.3vw, 1.05rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.7;
    color: var(--warm-white);
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-author {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--warm-white);
    letter-spacing: 0.05em;
}

.testimonial-role {
    font-size: 0.72rem;
    color: rgba(245, 240, 235, 0.4);
    font-weight: 300;
    margin-top: 0.15rem;
}

.testimonial-divider {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta {
    background: var(--black);
    color: var(--warm-white);
    text-align: center;
}

.final-cta .section-heading {
    margin-bottom: 1rem;
}

.final-cta .section-sub {
    margin: 0 auto 3.5rem;
    color: rgba(245, 240, 235, 0.5);
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    max-width: 900px;
    margin: 0 auto;
    background: var(--charcoal);
}

.cta-option {
    background: var(--black);
    padding: clamp(2rem, 4vw, 3rem);
    transition: background 0.5s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-option:hover {
    background: var(--charcoal);
}

.cta-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 181, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--ease-out-expo);
}

.cta-option:hover .cta-icon {
    border-color: var(--gold);
    background: var(--gold);
}

.cta-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    transition: stroke 0.4s;
}

.cta-option:hover .cta-icon svg {
    stroke: var(--black);
}

.cta-option h3 {
    font-family: var(--heading);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
}

.cta-option p {
    font-size: 0.8rem;
    color: rgba(245, 240, 235, 0.4);
    font-weight: 300;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 181, 22, 0.1);
    padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
    color: rgba(245, 240, 235, 0.4);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1.2rem;
}

.footer-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
}

.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 235, 0.6);
    margin-bottom: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--warm-white);
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 240, 235, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(245, 240, 235, 0.25);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social a {
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--warm-white);
}

/* ═══════════════════════════════════════════════
   GRAIN OVERLAY
   ═══════════════════════════════════════════════ */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* ═══════════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════════ */
.stats {
    background: var(--charcoal);
    color: var(--warm-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(245, 240, 235, 0.1);
    border-top: 1px solid rgba(245, 240, 235, 0.1);
    border-bottom: 1px solid rgba(245, 240, 235, 0.1);
}

.stat-card {
    background: var(--navy-2);
    padding: clamp(2rem, 4vw, 3.5rem);
    text-align: left;
}

.stat-label {
    font-family: var(--heading);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

.stat-value {
    font-family: var(--heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    color: var(--warm-white);
    line-height: 1;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.stat-value span {
    font-size: 0.4em;
    color: var(--gold);
    margin-left: 0.15em;
    font-weight: 300;
    letter-spacing: 0;
}

.stat-caption {
    font-size: 0.9rem;
    color: rgba(245, 240, 235, 0.6);
    line-height: 1.7;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════
   PREMIUM BY DEFAULT
   ═══════════════════════════════════════════════ */
.premium {
    background: var(--warm-white);
}

.premium-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: start;
}

.premium-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--cream);
}

.premium-list li {
    padding: 1.4rem 0;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-dark);
    border-bottom: 1px solid var(--cream);
    position: relative;
    padding-left: 2.2rem;
    line-height: 1.6;
}

.premium-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background: var(--gold);
}

/* ═══════════════════════════════════════════════
   AUDIENCE
   ═══════════════════════════════════════════════ */
.audience {
    background: var(--warm-white);
}

.audience-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: end;
    margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.audience-header .section-sub {
    margin-left: auto;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--cream);
    border-top: 1px solid var(--cream);
    border-bottom: 1px solid var(--cream);
}

.audience-card {
    background: var(--warm-white);
    padding: clamp(2rem, 4vw, 3rem);
}

.audience-number {
    font-family: var(--heading);
    font-size: 0.85rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
    display: block;
}

.audience-card h3 {
    font-family: var(--heading);
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .pillars {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .audience-header,
    .premium-layout,
    .process-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .audience-header .section-sub,
    .process-header .section-sub {
        margin-left: 0;
    }

    .residences-grid {
        grid-template-columns: 1fr;
    }

    .residence-card:first-child {
        grid-row: auto;
    }

    .residence-img {
        min-height: 350px;
    }

    .commercial-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .process-step:first-child,
    .process-step:last-child {
        padding: clamp(1.8rem, 3vw, 2.5rem);
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1.2rem 1.5rem;
    }

    .nav.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
        margin-right: -4px;
    }

    .mobile-nav {
        display: block;
    }

    .hero {
        min-height: 100svh;
        height: auto;
        align-items: flex-start;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-content {
        padding: 6.75rem 1.5rem 2.75rem;
        max-width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary, .btn-outline, .btn-dark {
        justify-content: center;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .lifestyle-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .lifestyle-header .section-sub {
        margin-left: 0;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .step-num {
        margin-bottom: 1rem;
    }

    .cta-options {
        grid-template-columns: 1fr;
    }

    .commercial-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.4rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .positioning-headline {
        font-size: 1.7rem;
    }
}


/* ── btn-outline icon sizing (Turnkey 2nd CTA) ── */
.btn-outline { gap: .6rem; white-space: nowrap; }
.btn-outline svg { width: 14px; height: 14px; flex: 0 0 auto; transition: transform 0.3s var(--ease-out-expo); }
.btn-outline:hover svg { transform: translateX(4px); }
@media (max-width:520px){ .btn-outline { white-space: normal; } }


/* HIDE-BOOK-CONSULTATION */
.nav-cta, .mobile-nav-cta { display: none !important; }
