:root {
    --bg-color: #050505;
    --text-primary: #C9A86A;
    --text-secondary: rgba(212, 190, 150, 0.75);
    --gold: #A68A56;
    --gold-light: #C1A673;
    --border-color: rgba(166, 138, 86, 0.25);

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== LUXURY NAVIGATION ===== */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    /* Fixed height to ensure it doesn't grow */
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.luxury-nav.scrolled {
    height: 70px;
    /* Slimmer on scroll */
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(197, 134, 60, 0.2);
}

.nav-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-brand-img {
    height: 60px;
    /* Increased from 40px, fitting comfortably in 85px height */
    width: auto;
    transition: all 0.3s ease;
}

.luxury-nav.scrolled .nav-brand-img {
    height: 50px;
    /* Resizes on scroll as well */
}

.nav-brand-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link-item:hover {
    color: var(--gold);
}

.nav-link-item:hover::after {
    width: 100%;
}

/* Hamburger Toggle — hidden on desktop */

/* Mobile Slide-Out Drawer */
.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    visibility: hidden;
}

.mobile-drawer.open {
    pointer-events: auto;
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.mobile-drawer.open .drawer-overlay {
    opacity: 1;
}

.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 85vw);
    height: 100%;
    background: rgba(8, 8, 8, 0.97);
    border-left: 1px solid rgba(201, 168, 106, 0.15);
    padding: 100px 40px 60px;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.mobile-drawer.open .drawer-panel {
    transform: translateX(0);
}

.drawer-close {
    position: absolute;
    top: 28px;
    right: 28px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease, transform 0.4s ease;
}

.drawer-close:hover {
    color: var(--gold);
    transform: rotate(90deg);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--gold-light);
    text-decoration: none;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 22px 0;
    border-bottom: 1px solid rgba(201, 168, 106, 0.08);
    transition: color 0.3s ease, padding-left 0.4s ease;
    opacity: 0;
    transform: translateX(30px);
}

.mobile-drawer.open .drawer-link {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s ease, padding-left 0.4s ease;
}

/* Staggered entry */
.mobile-drawer.open .drawer-link:nth-child(1) {
    transition-delay: 0.15s;
}

.mobile-drawer.open .drawer-link:nth-child(2) {
    transition-delay: 0.22s;
}

.mobile-drawer.open .drawer-link:nth-child(3) {
    transition-delay: 0.29s;
}

.mobile-drawer.open .drawer-link:nth-child(4) {
    transition-delay: 0.36s;
}

.mobile-drawer.open .drawer-link:nth-child(5) {
    transition-delay: 0.43s;
}

.drawer-link:hover {
    color: var(--gold);
    padding-left: 16px;
}

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

    .hamburger-toggle {
        display: flex;
    }

    .nav-brand-name {
        font-size: 1rem;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

p {
    font-family: var(--font-heading);
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
}

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

img,
video {
    display: block;
    max-width: 100%;
}

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

/* Main content */
#main-content {
    opacity: 1;
    visibility: visible;
}

/* Premium Scroll Hero Section */
/* Premium Scroll Hero Section */
.premium-hero {
    position: relative;
    height: 420vh;
    background: #000000;
    overflow: clip;
}

.hero-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2200px;
    transform-style: preserve-3d;
}

.hero-bg-layer,
.hero-vignette,
.hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-bg-layer {
    background: transparent;
    z-index: 0;
    will-change: transform, opacity;
}

.hero-vignette {
    background:
        radial-gradient(circle at center, transparent 45%, rgba(0, 0, 0, 0.35) 75%, rgba(0, 0, 0, 0.78) 100%);
    z-index: 6;
}

.hero-noise {
    z-index: 7;
    opacity: 0.045;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 4px 4px, 4px 4px;
    mix-blend-mode: soft-light;
}

.hero-visual-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-main-visual {
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    --shimmer-x: -140%;
}

.hero-gg-img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 5;
    transform-origin: center center;
    will-change: transform, opacity;
    transform: translateZ(0);
}

/* Mobile logo cutout — hidden on desktop by default */
.hero-mobile-logo {
    display: none;
}

.image-glow {
    position: absolute;
    inset: 18%;
    border-radius: 50%;
    background: radial-gradient(circle at center,
            rgba(166, 138, 86, 0.20) 0%,
            rgba(166, 138, 86, 0.08) 35%,
            transparent 72%);
    filter: blur(30px);
    z-index: 2;
    pointer-events: none;
    will-change: transform, opacity;
}

.hero-radial-flash {
    position: absolute;
    inset: 25%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 240, 204, 0.18), transparent 70%);
    filter: blur(50px);
    opacity: 0;
    z-index: 4;
    pointer-events: none;
}

.hero-shimmer {
    position: absolute;
    inset: -10%;
    z-index: 6;
    pointer-events: none;
    background: linear-gradient(110deg,
            transparent 20%,
            rgba(255, 255, 255, 0.00) 35%,
            rgba(255, 235, 190, 0.16) 50%,
            rgba(255, 255, 255, 0.00) 65%,
            transparent 80%);
    transform: translateX(var(--shimmer-x));
    mix-blend-mode: screen;
    filter: blur(8px);
}

.hero-light-beam {
    position: absolute;
    top: 50%;
    width: 26vw;
    max-width: 360px;
    height: 130%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.22;
    filter: blur(24px);
}

.beam-left {
    left: 8%;
    transform: translateY(-50%) rotate(-18deg);
    background: linear-gradient(to right, transparent, rgba(166, 138, 86, 0.18), transparent);
}

.beam-right {
    right: 8%;
    transform: translateY(-50%) rotate(18deg);
    background: linear-gradient(to left, transparent, rgba(166, 138, 86, 0.18), transparent);
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(166, 138, 86, 0.16);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-orbit-1 {
    width: 82%;
    height: 82%;
    opacity: 0.55;
}

.hero-orbit-2 {
    width: 104%;
    height: 104%;
    opacity: 0.28;
}

.hero-dust {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 236, 198, 0.85), rgba(166, 138, 86, 0.15) 55%, transparent 75%);
    filter: blur(4px);
    pointer-events: none;
    z-index: 3;
    opacity: 0.35;
}

.hero-dust-1 {
    width: 10px;
    height: 10px;
    top: 25%;
    left: 22%;
}

.hero-dust-2 {
    width: 14px;
    height: 14px;
    bottom: 22%;
    right: 24%;
}

.hero-burst {
    position: absolute;
    inset: 12%;
    pointer-events: none;
    z-index: 8;
    overflow: visible;
}

.burst-particle {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--size, 8px);
    height: var(--size, 8px);
    margin-left: calc(var(--size, 8px) / -2);
    margin-top: calc(var(--size, 8px) / -2);
    border-radius: 50%;
    opacity: 0;
    background:
        radial-gradient(circle,
            rgba(255, 239, 204, 0.95) 0%,
            rgba(201, 161, 90, 0.88) 38%,
            rgba(166, 138, 86, 0.42) 68%,
            transparent 100%);
    filter: blur(var(--blur, 1px));
    transform: translate3d(0, 0, 0) scale(0.25);
    will-change: transform, opacity;
}

.burst-particle.thin {
    width: calc(var(--size, 8px) * 1.8);
    height: calc(var(--size, 8px) * 0.55);
    border-radius: 999px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 235, 190, 0.95) 40%,
            rgba(166, 138, 86, 0.75) 70%,
            transparent 100%);
}

.burst-particle.soft {
    filter: blur(3px);
    opacity: 0;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 15;
}

.indicator-text {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-light);
    opacity: 0.7;
}

.indicator-line {
    width: 1px;
    height: 54px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    overflow: hidden;
    position: relative;
}

.indicator-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: flowDown 2.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes flowDown {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

@media (max-width: 768px) {
    .premium-hero {
        height: 100vh;
        background: #000;
    }

    .hero-main-visual {
        width: min(92vw, 560px);
    }

    .hero-light-beam {
        width: 38vw;
        opacity: 0.15;
    }

    .hero-orbit-2 {
        width: 96%;
        height: 96%;
    }

    /* Hide gg.png on mobile */
    .hero-gg-img {
        display: none !important;
    }

    /* Show the gold cutout logo on mobile with black background */
    .hero-mobile-logo {
        display: block !important;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) translateZ(0);
        width: min(85vw, 440px);
        height: auto;
        object-fit: contain;
        z-index: 10;
        filter: drop-shadow(0 0 50px rgba(201, 168, 106, 0.4)) drop-shadow(0 0 120px rgba(201, 168, 106, 0.15));
        animation: cutoutPulse 4s ease-in-out infinite alternate;
    }

    @keyframes cutoutPulse {
        0% {
            filter: drop-shadow(0 0 50px rgba(201, 168, 106, 0.4)) drop-shadow(0 0 120px rgba(201, 168, 106, 0.15));
        }

        100% {
            filter: drop-shadow(0 0 70px rgba(201, 168, 106, 0.55)) drop-shadow(0 0 150px rgba(201, 168, 106, 0.25));
        }
    }
}

/* Sections */
.section-heading {
    font-size: clamp(2rem, 4vw, 4rem);
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

/* Prepare legacy for emergence */
.legacy {
    display: flex;
    align-items: center;
    min-height: 85vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.72)),
        url('222.jpeg') no-repeat center center;
    background-size: cover;
    opacity: 0;
    transform: translateY(100px);
    /* Initial downward shift */
    transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.legacy.emerged {
    opacity: 1;
    transform: translateY(0);
}

.legacy-title {
    font-size: clamp(2.8rem, 5vw, 5.4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.char-span {
    display: inline-block;
    opacity: 0;
}

.about-divider {
    margin-bottom: 3rem;
}

.legacy-summary {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 1.8vw, 1.6rem);
    color: var(--text-secondary);
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px;
    line-height: 1.5;
    font-style: italic;
    opacity: 0.9;
}

#legacy {
    padding-bottom: 120px;
}

/* Luxury gold shimmer sweep */
.reveal-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 210, 53, 0),
            rgba(255, 210, 53, 0.4),
            rgba(255, 210, 53, 0),
            transparent);
    z-index: 10;
    pointer-events: none;
}

.shimmer-active::after {
    animation: goldSweep 3.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes goldSweep {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

/* --- PROCESS TIMELINE (JOURNEY) --- */
.process-timeline {
    position: relative;
    padding: 12vh 0 0;
    background-color: #050505;
    color: var(--gold);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    z-index: 2;
}

.paper-bg {
    position: absolute;
    inset: 0;
    background-image: url('paper_texture_bg_1774959265498.png');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    filter: invert(1);
    pointer-events: none;
    z-index: 1;
}

.process-timeline .container {
    z-index: 2;
}

.process-header {
    text-align: left;
    margin-bottom: 14vh;
}

.editorial-main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(4rem, 10vw, 9rem);
    line-height: 0.85;
    color: var(--gold);
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    font-weight: 500;
    text-shadow: 0 10px 40px rgba(166, 138, 86, 0.2);
}

.editorial-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 400px;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.milestones-layer {
    position: relative;
    min-height: 3800px;
    margin-top: 0;
    overflow: visible;
}

.milestones-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(to bottom, var(--bg-color) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.svg-path-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
    overflow: visible;
}

.winding-ribbon {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.winding-ribbon {
    width: 100%;
    height: 100%;
    overflow: visible;
    display: block;
}

.road-glow-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

.svg-path-wrapper {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.process-step {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 3rem;
    width: fit-content;
    max-width: 450px;
    z-index: 5;
}

.step-image {
    width: clamp(120px, 15vw, 220px);
}

.step-image img {
    width: 100%;
    filter: invert(1) sepia(1) saturate(2) brightness(0.8) contrast(1.2);
    transition: 0.6s ease;
}

.process-step:hover .step-image img {
    filter: invert(1) sepia(1) saturate(4) brightness(1.1) contrast(1.1);
    transform: scale(1.05) rotate(2deg);
}

.step-label {
    position: relative;
    z-index: 4;
    padding: 24px 30px;
    background: linear-gradient(135deg, rgba(18, 16, 12, 0.92), rgba(8, 6, 4, 0.98));
    border: 1px solid rgba(166, 138, 86, 0.3);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 0 20px rgba(166, 138, 86, 0.05);
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    overflow: hidden;
}

.step-label::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(166, 138, 86, 0.08) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.process-step:hover .step-label {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(166, 138, 86, 0.6);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(166, 138, 86, 0.15),
        inset 0 0 30px rgba(166, 138, 86, 0.1);
}

.process-step:hover .step-label::before {
    opacity: 1;
}

.step-4 .step-dot,
.step-3 .step-dot {
    position: absolute;
    left: -10px;
    top: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7ddb1, #c9a15a 60%, #8f6a31 100%);
    box-shadow: 0 0 10px rgba(255, 215, 130, 0.9),
        0 0 25px rgba(201, 161, 90, 0.6),
        0 0 40px rgba(201, 161, 90, 0.3);
}

.step-5 .step-dot,
.step-1 .step-dot {
    position: absolute;
    left: -10px;
    top: 110px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7ddb1, #c9a15a 60%, #8f6a31 100%);
    box-shadow: 0 0 10px rgba(255, 215, 130, 0.9),
        0 0 25px rgba(201, 161, 90, 0.6),
        0 0 40px rgba(201, 161, 90, 0.3);
}

.step-2 .step-dot,
.step-6 .step-dot {
    position: absolute;
    left: 437px;
    top: 110px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7ddb1, #c9a15a 60%, #8f6a31 100%);
    box-shadow: 0 0 10px rgba(255, 215, 130, 0.9),
        0 0 25px rgba(201, 161, 90, 0.6),
        0 0 40px rgba(201, 161, 90, 0.3);
}


.step-7 .step-dot,
.step-9 .step-dot {
    position: absolute;
    left: 437px;
    top: 110px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7ddb1, #c9a15a 60%, #8f6a31 100%);
    box-shadow: 0 0 10px rgba(255, 215, 130, 0.9),
        0 0 25px rgba(201, 161, 90, 0.6),
        0 0 40px rgba(201, 161, 90, 0.3);
}

.step-9 .step-dot,
.step-8 .step-dot,
.step-10 .step-dot {
    position: absolute;
    left: -10px;
    top: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7ddb1, #c9a15a 60%, #8f6a31 100%);
    box-shadow: 0 0 10px rgba(255, 215, 130, 0.9),
        0 0 25px rgba(201, 161, 90, 0.6),
        0 0 40px rgba(201, 161, 90, 0.3);
}

.step-9 .step-dot {
    position: absolute;
    left: -10px;
    top: 110px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7ddb1, #c9a15a 60%, #8f6a31 100%);
    box-shadow: 0 0 10px rgba(255, 215, 130, 0.9),
        0 0 25px rgba(201, 161, 90, 0.6),
        0 0 40px rgba(201, 161, 90, 0.3);
}

.step-10 .step-dot {
    position: absolute;
    left: 437px;
    top: 110px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7ddb1, #c9a15a 60%, #8f6a31 100%);
    box-shadow: 0 0 10px rgba(255, 215, 130, 0.9),
        0 0 25px rgba(201, 161, 90, 0.6),
        0 0 40px rgba(201, 161, 90, 0.3);
}

.step-label h3 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--gold-light);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.step-label p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-family: var(--font-body);
}

/* Step Positions */
/* Step Positions - pushed outside the road */
.step-1 {
    top: 1.5%;
    right: 2.5%;
}

.step-2 {
    top: 11.6%;
    left: 4%;
    flex-direction: row-reverse;
    text-align: right;
}

.step-3 {
    top: 19.4%;
    left: 65%;
    flex-direction: row-reverse;
    text-align: left;
}

.step-4 {
    top: 28%;
    right: 35%;
}

.step-5 {
    top: 38%;
    left: 78%;
    flex-direction: row-reverse;
    text-align: left;
}

.step-6 {
    top: 45.8%;
    right: 34%;
    left: auto;
    transform: none;
    text-align: left;
}

.step-7 {
    top: 54.3%;
    left: 10%;
    flex-direction: row-reverse;
    text-align: right;
}

.step-8 {
    top: 63.7%;
    right: 10%;
    left: auto;
    text-align: left;
}

.step-9 {
    top: 74.4%;
    left: 48%;
    flex-direction: row-reverse;
    text-align: left;
}

.step-10 {
    top: 88%;
    right: 39%;
    left: auto;
    text-align: left;
}

/* Moving light pulse */





.timeline-car {
    will-change: transform;
    z-index: 5;
    transform-box: fill-box;
    transform-origin: center center;
}

.timeline-car .car-art {
    transform-box: fill-box;
    transform-origin: center center;
}

.timeline-car rect,
.timeline-car circle {
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.75)) drop-shadow(0 0 10px rgba(166, 138, 86, 0.9));
}

.journey-footer {
    position: relative;
    margin-top: 10vh;
    padding: 5vh 6vw 5vh 0;
    border-top: none;
    display: flex;
    justify-content: flex-end;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 2.2rem;
    color: var(--gold);
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: left;
    max-width: 650px;
    width: 100%;
}

.quote-author {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* --- GOLD SECTION DIVIDER --- */
.section-gold-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to var(--dir, right),
            transparent 0%,
            var(--gold) 30%,
            var(--gold-light) 50%,
            var(--gold) 70%,
            transparent 100%);
    max-width: 500px;
    display: block;
    position: relative;
}

.divider-line::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: inherit;
    filter: blur(4px);
    opacity: 0.5;
}

.divider-line:first-child {
    --dir: right;
}

.divider-line:last-child {
    --dir: left;
}

.divider-emblem {
    color: var(--gold);
    font-size: 1.1rem;
    opacity: 0.8;
    filter: drop-shadow(0 0 8px var(--gold));
    flex-shrink: 0;
    line-height: 1;
}

.floating-item {
    animation: floatVertical 6s ease-in-out infinite;
}

@keyframes floatVertical {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@media (max-width: 900px) {
    .milestones-layer {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 8vh;
        margin-top: 5vh;
    }


    .process-step {
        position: absolute;
        display: flex;
        align-items: center;
        gap: 3rem;
        width: fit-content;
        max-width: 380px;
        z-index: 3;
    }

    .step-image {
        width: 180px;
    }

    .step-label {
        padding: 0;
    }

    .step-dot {
        display: none;
    }

    .svg-path-wrapper,
    .central-illustration {
        display: none;
    }

    .editorial-main-title {
        font-size: 5rem;
    }
}

/* --- DIVISIONS SHOWCASE --- */
.divisions-showcase {
    position: relative;
    padding: 18vh 0;
    background: linear-gradient(to bottom, #000 0%, #000000 20%, #000000 50%, #000000 80%, #000 100%);
    overflow: hidden;
    perspective: 1200px;
}

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

.focal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle at center, rgba(166, 138, 86, 0.05), transparent 70%);
    filter: blur(100px);
}

.showcase-header {
    position: relative;
    z-index: 2;
    margin-bottom: 18vh;
}

.division-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8vh;
    margin-top: 5vh;
}

/* .division-row — see premium override at end of file */

/* placeholder to keep .division-row.reverse media queries intact */

.division-row.reverse .division-media {
    order: 2;
}

.division-row.reverse .division-panel {
    order: 1;
}

.division-media {
    position: relative;
    min-height: 480px;
    height: 100%;
    overflow: hidden;
    background: #0b0b0b;
}

.division-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s ease;
    display: block;
}

.division-row:hover .division-media img {
    transform: scale(1.04);
}

/* .division-panel — see premium override at end of file */

.division-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    margin-bottom: 30px;
    transition: transform 0.35s ease;
}

.division-logo-link:hover {
    transform: scale(1.04);
}

.division-logo {
    max-width: 420px;
    max-height: 210px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Blend the tmar.jpeg logo with the dark background */
img[src*="tmar.jpeg"] {
    mix-blend-mode: screen;
}

.division-logo.larger-logo {
    max-width: 600px;
    max-height: 300px;
}

.division-logo.curved-logo {
    border-radius: 20px;
    overflow: hidden;
}

.division-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
    color: #d4b07a;
    margin-bottom: 24px;
}

/* .division-btn — see premium override at end of file */

@media (max-width: 900px) {

    .division-row,
    .division-row.reverse {
        grid-template-columns: 1fr;
    }

    .division-row.reverse .division-media,
    .division-row.reverse .division-panel {
        order: unset;
    }

    .division-media {
        min-height: 260px;
    }

    .division-panel {
        padding: 30px 24px;
    }

    .division-title {
        font-size: 1.9rem;
    }
}

/* Editorial Map Section */
.editorial-map-section {
    position: relative;
    padding-top: 10vh;
}

.editorial-map-section .editorial-main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    font-weight: 500;
    line-height: 1.05;
    color: #D4AF37;
    letter-spacing: 0.04em;
    margin-bottom: 55px;
    z-index: 10;
    position: relative;
    text-shadow: 0 8px 30px rgba(166, 138, 86, 0.18);
}

.left-align {
    text-align: left;
}

.map-wrapper {
    width: 100%;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    padding: 30px 0 10px;
}

.map-container {
    position: relative;
    width: min(1280px, 100%);
    padding: 38px;
    border-radius: 32px;
    background:
        radial-gradient(circle at top, rgba(166, 138, 86, 0.08), transparent 45%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.96), rgba(3, 3, 3, 0.98));
    border: 1px solid rgba(166, 138, 86, 0.22);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        inset 0 0 40px rgba(166, 138, 86, 0.05);
    overflow: visible;
}

.map-container::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    border: 1px solid rgba(166, 138, 86, 0.12);
    pointer-events: none;
}

.map-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 65%;
    height: 55%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 168, 106, 0.10), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 0;
}


.world-map-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    opacity: 0.98;
    filter: drop-shadow(0 10px 30px rgba(166, 138, 86, 0.12));
    mask-image: radial-gradient(circle at 50% 50%, black 86%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 86%, transparent 100%);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.map-container:hover .world-map-image {
    transform: scale(1.015);
    filter: drop-shadow(0 15px 40px rgba(166, 138, 86, 0.16));
}

/* Map Markers */
.map-marker {
    position: absolute;
    transform: translate(-50%, -100%);
    z-index: 20;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pin {
    width: 34px;
    height: 34px;
    background: linear-gradient(145deg, #050505, #16110b);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: relative;
    border: 1px solid rgba(201, 168, 106, 0.95);
    box-shadow:
        -6px 6px 18px rgba(0, 0, 0, 0.78),
        0 0 18px rgba(166, 138, 86, 0.18),
        inset -2px -2px 10px rgba(166, 138, 86, 0.18),
        inset 2px 2px 8px rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.pin::after {
    content: "";
    width: 11px;
    height: 11px;
    background: radial-gradient(circle, #f5dfb0 0%, #c9a86a 60%, #8f6a31 100%);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    box-shadow: 0 0 14px rgba(201, 168, 106, 0.9);
}

.pulse {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    box-shadow: 0 0 12px rgba(201, 168, 106, 0.7);
}

.pulse::after {
    content: "";
    width: 30px;
    height: 30px;
    background: rgba(166, 138, 86, 0.32);
    border: 1px solid rgba(201, 168, 106, 0.35);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseAnim 2.2s infinite ease-out;
}

@keyframes pulseAnim {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.map-marker:hover {
    z-index: 50;
    /* Bring hovered marker above others */
}

.map-marker:hover .pin {
    transform: rotate(-45deg) scale(1.08);
    box-shadow:
        -8px 8px 22px rgba(0, 0, 0, 0.82),
        0 0 24px rgba(166, 138, 86, 0.24),
        inset -2px -2px 10px rgba(166, 138, 86, 0.2);
}

/* Location Details Card */
.location-details {
    position: absolute;
    top: 50%;
    left: 26px;
    pointer-events: none;
    display: flex;
    align-items: center;
    transform: translateY(-78%);
    z-index: 50;
}

.location-details.location-left {
    left: auto;
    right: 26px;
    flex-direction: row-reverse;
}

.connecting-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 0 8px var(--gold);
}

.details-box {
    background:
        radial-gradient(circle at top left, rgba(166, 138, 86, 0.10), transparent 30%),
        linear-gradient(165deg, rgba(12, 10, 8, 0.96), rgba(3, 3, 3, 0.985));
    border: 1px solid rgba(166, 138, 86, 0.30);
    border-radius: 24px;
    box-shadow:
        0 40px 85px rgba(0, 0, 0, 0.88),
        0 0 30px rgba(166, 138, 86, 0.10),
        inset 0 0 30px rgba(166, 138, 86, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 34px 36px;
    width: 390px;
    opacity: 0;
    transform: translateX(-20px) translateY(8px) scale(0.95);
    transition:
        opacity 0.65s cubic-bezier(0.2, 1, 0.3, 1),
        transform 0.65s cubic-bezier(0.2, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.details-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(166, 138, 86, 0.06), transparent);
    transition: transform 0.8s ease;
    pointer-events: none;
}

.map-marker:hover .details-box::after {
    transform: translateX(100%);
}

.location-details.location-left .details-box {
    transform: translateX(15px);
}

.details-box h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.55rem;
    color: var(--gold-light);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-bottom: 1px solid rgba(166, 138, 86, 0.18);
    padding-bottom: 10px;
    display: inline-block;
}

.details-box p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.26rem;
    color: rgba(212, 190, 150, 0.88);
    line-height: 1.7;
    margin: 0;
    text-transform: none;
    letter-spacing: 0.015em;
    white-space: pre-line;
}

.map-marker:hover .connecting-line {
    width: 62px;
}

.map-marker:hover .details-box {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
    border-color: rgba(166, 138, 86, 0.65);
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.92),
        0 0 35px rgba(166, 138, 86, 0.16),
        inset 0 0 35px rgba(166, 138, 86, 0.10);
}

@media (max-width: 768px) {
    .editorial-map-section .editorial-main-title {
        font-size: 3rem;
    }

    .pin {
        width: 26px;
        height: 26px;
    }

    .pin::after {
        width: 8px;
        height: 8px;
    }
}

/* Board */
.board {
    min-height: 100vh;
}

.board-track {
    display: flex;
    flex-direction: column;
    gap: 12vh;
    margin-top: 8vh;
    padding: 0 5vw;
}

.board-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-image {
    width: clamp(250px, 40vw, 500px);
    height: clamp(350px, 55vw, 680px);
    background-color: #111;
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
    filter: grayscale(100%);
    transition: filter 0.8s ease;
}

.member-image:hover {
    filter: grayscale(0%);
}

.member-name {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.member-role {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
}

/* Recognitions */
.recognitions {
    padding: 8vh 0;
    background: #030303;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2.5vw, 2.4rem);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 4vw;
}

.marquee-content .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    padding: 0;
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Testimonials */
.testimonials {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
}

.quote {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.author {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    font-family: var(--font-body);
}

.testimonials .author {
    font-family: var(--font-heading);
    font-style: italic;
    text-transform: none;
    font-size: 1.1rem;
}

/* Contact */
.contact {
    padding-bottom: 12vh;
}

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

.contact-item {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.input-group {
    position: relative;
    width: 100%;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.4s ease;
    resize: none;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #777;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.btn-solid {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    align-self: flex-start;
    margin-top: 1rem;
    padding: 14px 28px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-solid:hover {
    background: var(--gold);
    color: #000;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1rem;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
    margin-top: 2vh;
}

.footer-new-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0 5vw;
    text-align: left;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    text-align: left;
}

.footer-copyright-text {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-body);
}

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

.footer-contact-item.mail-item {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-light);
}

.footer-email-link {
    color: inherit;
    text-decoration: none;
    font-family: var(--font-body);
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-email-link:hover {
    color: #f0e2c0;
}

.footer-social-row {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-social-icon {
    color: var(--gold-light);
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-social-icon:hover {
    color: #f0e2c0;
    transform: translateY(-2px);
}

/* Mobile Footer: email → socials → copyright, all centered */
@media (max-width: 768px) {
    .footer-new-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }

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

    /* Reorder: social block first, copyright last */
    .footer-social-block {
        order: -1;
    }

    .footer-copyright-block {
        order: 1;
    }

    .footer-social-row {
        justify-content: center;
    }

    .footer-contact-item.mail-item {
        justify-content: center;
    }
}

/* Reveal */
.gs-reveal,
.reveal-text {
    opacity: 0;
    transform: translateY(40px);
    transition: none;
    /* Let GSAP handle transition */
}

.reveal-text {
    line-height: 1.1;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .scroll-video-section {
        height: 180vh;
    }

    .hero-overlay h1 {
        letter-spacing: 0.08em;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-btn {
        padding: 12px 18px;
        font-size: 0.72rem;
    }

    .timeline-container {
        min-width: 1000px;
    }

    .legacy {
        min-height: 75vh;
    }

    .legacy-desc {
        font-size: 1rem;
        line-height: 1.8;
    }
}

/* ABOUT SECTION UPGRADE */
.legacy .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
}

.legacy .container::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 40px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(166, 138, 86, 0.14), transparent 70%);
    filter: blur(50px);
    z-index: -1;
    pointer-events: none;
}

.about-label {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.about-divider {
    width: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 26px auto 42px;
    opacity: 0.8;
}

.about-blocks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.about-block,
.reveal-block {
    opacity: 1;
    transform: none;
}

.about-block h3 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.about-block p {
    color: var(--text-secondary);
    font-size: 1.35rem;
    line-height: 1.8;
    max-width: 760px;
    font-family: var(--font-heading);
    font-style: italic;
    margin-top: 12px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 56px auto 0;
    max-width: 980px;
    text-align: center;
}

.stat-card {
    background: transparent;
    border: none;
    padding: 10px 0;
    min-height: auto;
    backdrop-filter: none;
    transition:
        transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        opacity 0.6s ease;
    position: relative;
    overflow: visible;
    opacity: 0;
}

.reveal-card {
    opacity: 0;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    background: transparent;
    box-shadow: none;
}

.stat-card h4 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    font-family: var(--font-heading);
    font-style: italic;
}

.legacy-title {
    max-width: 950px;
}

@media (max-width: 900px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .legacy .container::before {
        width: 260px;
        height: 260px;
        left: 0;
        top: 40px;
    }
}

.scroll-video-section {
    height: 140vh;
    margin-bottom: 0;
}

#legacy {
    padding-top: 15vh;
    margin-top: 0;
}

.legacy {
    position: relative;
    overflow: hidden;
}

.legacy .container {
    position: relative;
    z-index: 1;
}

.aurora-bg {
    position: absolute;
    inset: -20%;
    z-index: 0;
    pointer-events: none;
    filter: blur(55px);
    opacity: 0.9;
    background:
        radial-gradient(circle at 20% 30%, rgba(166, 138, 86, 0.18), transparent 22%),
        radial-gradient(circle at 70% 25%, rgba(255, 210, 120, 0.12), transparent 25%),
        radial-gradient(circle at 45% 65%, rgba(166, 138, 86, 0.14), transparent 22%),
        radial-gradient(circle at 85% 70%, rgba(255, 215, 130, 0.10), transparent 20%);
    animation: auroraFloat 10s ease-in-out infinite alternate;
}

.aurora-bg::before,
.aurora-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 60%, rgba(166, 138, 86, 0.16), transparent 24%),
        radial-gradient(circle at 60% 40%, rgba(255, 215, 130, 0.10), transparent 22%),
        radial-gradient(circle at 75% 75%, rgba(166, 138, 86, 0.12), transparent 20%);
    mix-blend-mode: screen;
    animation: auroraDrift 14s ease-in-out infinite alternate;
}

.aurora-bg::after {
    animation-duration: 18s;
    opacity: 0.7;
    transform: scale(1.1);
}

@keyframes auroraFloat {
    0% {
        transform: translate3d(-20px, 10px, 0) scale(1);
    }

    50% {
        transform: translate3d(20px, -15px, 0) scale(1.05);
    }

    100% {
        transform: translate3d(-10px, 20px, 0) scale(1.08);
    }
}

@keyframes auroraDrift {
    0% {
        transform: translateX(-30px) translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateX(30px) translateY(-20px) rotate(6deg);
    }
}

/* --- GLOBAL SPARKLE CANVAS --- */
#sparkle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

/* FIX ABOUT SECTION TEXT NOT SHOWING */
.about-block,
.reveal-block {
    opacity: 1 !important;
    transform: none !important;
}

.legacy-title,
.legacy-summary,
.about-divider,
.about-blocks,
.about-block {
    position: relative;
    z-index: 2;
}

.legacy-title,
.legacy-summary,
.about-block h3,
.about-block p {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(8px);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
}

.text-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    filter: blur(0) !important;
}

.process-header {
    margin-bottom: 14vh;
}

/* FLOATING ANIMATION */
@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- CINEMATIC EDITORIAL OVERLAY --- */
.cinematic-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    background: #000;
    background: radial-gradient(circle at center, #f6bd89 0%, #7b470b 55%, #1a0000 100%);
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    color: #fff;
}

.cinematic-overlay.active {
    visibility: visible;
    opacity: 1;
}

.overlay-texture {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.12;
    pointer-events: none;
    mix-blend-mode: overlay;
}

.overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.95) 100%);
    pointer-events: none;
}

.vertical-guidelines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-evenly;
    pointer-events: none;
    opacity: 0.2;
}

.vertical-guidelines span {
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
}

.overlay-header {
    position: relative;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.close-btn-minimal {
    background: transparent;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    padding: 0;
}

.close-icon-lux {
    display: block;
    transition: transform 0.4s ease;
}

.close-btn-minimal:hover .close-icon-lux {
    transform: rotate(90deg);
}

.microsite-brand {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.5rem;
    word-spacing: 0.5rem;
    font-weight: 700;
}

.top-cta-lux {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 4px;
}

.microsite-content {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 10vw;
    z-index: 5;
}

/* Sidebar Nav */
.microsite-nav-wrap {
    position: relative;
    z-index: 10;
    width: 400px;
}

.editorial-nav {
    display: flex;
    flex-direction: column;
    gap: 5vh;
}

.nav-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.nav-number {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-top: 10px;
}

.nav-link {
    font-family: 'Cinzel', serif;
    font-size: clamp(3.5rem, 6vw, 7rem);
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    line-height: 0.85;
    letter-spacing: -0.01em;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover {
    padding-left: 20px;
    opacity: 0.7;
}

/* Central Visual System */
.microsite-visual-system {
    position: absolute;
    left: 45%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 75vw;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.visual-reveal-mask {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px) scale(1.08);
    filter: blur(18px);
    transition: none;
    border-radius: 28px;
    background: #050505;
    box-shadow:
        0 40px 100px rgba(0, 0, 0, 0.65),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Main cinematic entry */
.cinematic-overlay.active .visual-reveal-mask {
    animation: cinematicPanelIn 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes cinematicPanelIn {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(1.08);
        filter: blur(18px);
    }

    55% {
        opacity: 1;
        transform: translateY(0) scale(1.02);
        filter: blur(5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}


/* Dark cinematic shutters */
.visual-reveal-mask::before,
.visual-reveal-mask::after {
    content: "";
    position: absolute;
    top: 0;
    width: 52%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    background:
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(18, 10, 4, 0.96) 45%,
            rgba(0, 0, 0, 0.94) 100%);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.75);
}

.visual-reveal-mask::before {
    left: 0;
    transform: translateX(0);
    border-right: 1px solid rgba(201, 168, 106, 0.18);
}

.visual-reveal-mask::after {
    right: 0;
    transform: translateX(0);
    border-left: 1px solid rgba(201, 168, 106, 0.18);
}

.cinematic-overlay.active .visual-reveal-mask::before {
    animation: shutterLeftOpen 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.cinematic-overlay.active .visual-reveal-mask::after {
    animation: shutterRightOpen 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes shutterLeftOpen {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-108%);
    }
}

@keyframes shutterRightOpen {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(108%);
    }
}

.hero-render {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55) contrast(1.12) saturate(0.9);
    transform: scale(1.18);
    opacity: 0;
}

.cinematic-overlay.active .hero-render {
    animation: heroImageReveal 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroImageReveal {
    0% {
        opacity: 0;
        transform: scale(1.18);
        filter: brightness(0.35) contrast(1.05) blur(10px);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: scale(1.05);
        filter: brightness(0.62) contrast(1.12) blur(0);
    }
}

.detail-image-glow,
.hero-glow-accent {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow-accent::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -30%;
    width: 45%;
    height: 140%;
    transform: rotate(12deg) translateX(-120%);
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(201, 168, 106, 0.06) 35%,
            rgba(255, 226, 170, 0.14) 50%,
            rgba(201, 168, 106, 0.06) 65%,
            transparent 100%);
    filter: blur(10px);
}

.cinematic-overlay.active .hero-glow-accent::before {
    animation: goldSweepPass 1.8s ease forwards;
    animation-delay: 0.45s;
}

@keyframes goldSweepPass {
    0% {
        transform: rotate(12deg) translateX(-120%);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: rotate(12deg) translateX(320%);
        opacity: 0;
    }
}

.detail-kicker,
.detail-logo-wrap,
.detail-title,
.detail-description,
.detail-meta-grid {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(10px);
}

.cinematic-overlay.active .detail-kicker {
    animation: contentRiseIn 0.7s ease forwards;
    animation-delay: 0.75s;
}

.cinematic-overlay.active .detail-logo-wrap {
    animation: contentRiseIn 0.7s ease forwards;
    animation-delay: 0.88s;
}

.cinematic-overlay.active .detail-title {
    animation: contentRiseIn 0.8s ease forwards;
    animation-delay: 1s;
}

.cinematic-overlay.active .detail-description {
    animation: contentRiseIn 0.8s ease forwards;
    animation-delay: 1.12s;
}

.cinematic-overlay.active .detail-meta-grid {
    animation: contentRiseIn 0.85s ease forwards;
    animation-delay: 1.24s;
}

@keyframes contentRiseIn {
    from {
        opacity: 0;
        transform: translateY(26px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Social Rail */
.social-side-rail {
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 10;
}

.social-side-rail a {
    color: #fff;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.social-side-rail a:hover {
    opacity: 1;
}

@media (max-width: 900px) {
    .microsite-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .microsite-nav-wrap {
        width: 100%;
    }

    .nav-item {
        justify-content: center;
    }

    .microsite-visual-system {
        width: 100vw;
        height: 50vh;
        opacity: 0.3;
    }

    .social-side-rail {
        flex-direction: row;
        margin-top: 40px;
    }
}

/* ===== DIVISION CINEMATIC DETAIL OVERLAY (UPGRADED) ===== */
.cinematic-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: visibility 0.4s;
    overflow: hidden;
}

.cinematic-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Shutters */
.shutter {
    position: absolute;
    top: 0;
    width: 50.5%;
    height: 100%;
    background: #050505;
    z-index: 10;
    pointer-events: none;
}

.shutter-left {
    left: 0;
    border-right: 1px solid rgba(212, 175, 55, 0.1);
}

.shutter-right {
    right: 0;
    border-left: 1px solid rgba(212, 175, 55, 0.1);
}

/* Texture & Vignette */
.overlay-texture {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    pointer-events: none;
    z-index: 15;
}

.overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.9) 100%);
    pointer-events: none;
    z-index: 12;
}

/* Light Sweep */
.light-sweep {
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg,
            transparent,
            rgba(212, 175, 55, 0.08),
            rgba(255, 230, 150, 0.15),
            rgba(212, 175, 55, 0.08),
            transparent);
    transform: rotate(25deg);
    z-index: 14;
    pointer-events: none;
    opacity: 0;
}

/* Header */
.overlay-header {
    position: relative;
    width: 100%;
    padding: 30px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    opacity: 0;
}

.close-btn-minimal {
    background: transparent;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    padding: 10px;
    transition: 0.4s;
}

.close-icon-lux {
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.close-btn-minimal:hover .close-icon-lux {
    transform: rotate(90deg) scale(1.1);
    color: var(--gold);
}

.microsite-brand {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.6rem;
    color: var(--gold);
    font-weight: 700;
}

.top-cta-lux {
    font-family: var(--font-body);
    font-size: 0.65rem;
    letter-spacing: 0.25rem;
    color: rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    padding-left: 20px;
}

.microsite-content {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5vw;
    z-index: 20;
}

.division-detail-shell {
    width: min(1200px, 95%);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    background: rgba(8, 8, 8, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(35px);
    -webkit-backdrop-filter: blur(35px);
    transform: translateY(100px);
    opacity: 0;
}

.division-detail-content {
    padding: 50px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Strict no-scroll as requested */
}

.detail-logo-wrap {
    margin-bottom: 25px;
    flex-shrink: 0;
    text-align: left;
}

.detail-logo-image {
    max-width: 200px;
    max-height: 70px;
}

.detail-main-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    flex-grow: 1;
    overflow: hidden;
}

.detail-body-text {
    overflow-y: hidden;
    /* Strictly no scrolling per user request */
    padding-right: 10px;
}

.detail-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.2vw, 4rem);
    line-height: 1.1;
    color: var(--gold);
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

.detail-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    /* Reduced to fit without scroll */
    line-height: 1.4;
    color: rgba(255, 245, 220, 0.8);
    margin-bottom: 20px;
    text-align: justify;
}

.detail-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: block;
}

.sidebar-info-card:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateX(8px);
}

/* --- BOARD OF DIRECTORS : LUXURY WOW VERSION --- */
.board {
    position: relative;
    padding: 160px 0 140px;
    background:
        radial-gradient(circle at 50% -10%, rgba(215, 176, 106, 0.12), transparent 40%),
        radial-gradient(circle at 10% 100%, rgba(215, 176, 106, 0.05), transparent 30%),
        linear-gradient(to bottom, #020202 0%, #080808 50%, #000 100%);
    overflow: hidden;
}

.board::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(215, 176, 106, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(215, 176, 106, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(circle at 50% 50%, black, transparent 80%);
    pointer-events: none;
}

.board::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(215, 176, 106, 0.2), transparent);
    pointer-events: none;
}

.board-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 5;
}

.board .section-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(3.5rem, 6vw, 6.5rem);
    font-weight: 700;
    background: linear-gradient(to bottom, #f4ead6 20%, #d7b06a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    filter: drop-shadow(0 15px 30px rgba(166, 138, 86, 0.2));
}

.board-subtitle {
    max-width: 700px;
    margin: 0 auto 100px;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(232, 218, 188, 0.6);
    position: relative;
}

.board-subtitle::after {
    content: "";
    display: block;
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 30px auto 0;
    opacity: 0.4;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: flex-end;
}

.director-card {
    position: relative;
    min-height: 680px;
    border-radius: 40px;
    background: #0a0a0a;
    border: 1px solid rgba(215, 176, 106, 0.15);
    overflow: hidden;
    transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.8),
        inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.director-card:nth-child(2) {
    transform: translateY(-50px);
}

/* Shimmer Effect */
.director-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 45%,
            rgba(215, 176, 106, 0.1) 50%,
            transparent 55%);
    transform: rotate(-45deg);
    transition: 0.8s;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
}

.director-card:hover::before {
    animation: shimmerRise 1.2s forwards;
    opacity: 1;
}

@keyframes shimmerRise {
    0% {
        transform: translate(-30%, -30%) rotate(-45deg);
    }

    100% {
        transform: translate(30%, 30%) rotate(-45deg);
    }
}

.director-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: rgba(215, 176, 106, 0.5);
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(215, 176, 106, 0.1);
}

.director-card:nth-child(2):hover {
    transform: translateY(-70px) scale(1.03);
}

.director-bg-text {
    position: absolute;
    top: 45px;
    left: 45px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    opacity: 0.4;
    z-index: 5;
    text-transform: uppercase;
}

.director-shape {
    position: absolute;
    inset: 20px;
    height: 70%;
    border-radius: 35px;
    background: linear-gradient(180deg, rgba(215, 176, 106, 0.12) 0%, transparent 100%);
    z-index: 1;
    border: 1px solid rgba(215, 176, 106, 0.08);
}

.director-img-container {
    position: absolute;
    inset: 50px 20px 0 20px;
    border-radius: 35px;
    overflow: hidden;
    z-index: 2;
    background: #000;
}

.director-img-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #0a0a0a 0%, transparent 40%, transparent 70%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 3;
}

.director-img-container::after {
    pointer-events: none;
}

.director-socials {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    gap: 10px;
    z-index: 30;
    pointer-events: auto;
}

.director-socials a {
    position: relative;
    z-index: 31;
    pointer-events: auto;
    cursor: pointer;
}

.director-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(100%) contrast(1.1);
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1), filter 1.2s;
}

.director-card:hover .director-img {
    filter: grayscale(0%) contrast(1.05);
    transform: scale(1.1) translateY(-10px);
}

.director-socials {
    position: absolute;
    bottom: 30px;
    right: 25px;
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10;
}

.director-card:hover .director-socials {
    opacity: 1;
    transform: translateY(0);
}

.director-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(215, 176, 106, 0.35);
    border-radius: 50%;
    color: #f4ead6;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.director-socials a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(215, 176, 106, 0.4);
    border-color: var(--gold);
}

.director-socials svg {
    width: 20px;
    height: 20px;
}

.director-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 4;
}

.director-name {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    transition: color 0.4s;
}

.director-card:hover .director-name {
    color: var(--gold);
}

.director-job {
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.board-footer {
    max-width: 900px;
    margin: 100px auto 0;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(232, 218, 188, 0.5);
    border-top: 1px solid rgba(215, 176, 106, 0.1);
    padding-top: 40px;
}

.director-name {
    font-family: 'Cinzel', serif;
    font-size: 1.55rem;
    line-height: 1.15;
    color: #f4ead6;
    margin-bottom: 10px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.director-card:hover .director-name {
    color: #d7b06a;
}

.director-job {
    font-family: var(--font-body);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.30em;
    color: rgba(255, 255, 255, 0.62);
}

.board-footer {
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.18rem;
    line-height: 1.75;
    color: rgba(232, 218, 188, 0.62);
}

@media (max-width: 1100px) {
    .board-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .director-card,
    .director-card:nth-child(2) {
        transform: none;
    }

    .director-card:hover,
    .director-card:nth-child(2):hover {
        transform: translateY(-10px);
    }

    .director-card {
        min-height: 560px;
    }
}

@media (max-width: 768px) {
    .board {
        padding: 110px 0 90px;
    }

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

    .director-card {
        min-height: 500px;
        border-radius: 24px;
    }

    .director-shape,
    .director-img-container {
        border-radius: 20px;
    }

    .director-name {
        font-size: 1.2rem;
    }

    .board-footer {
        font-size: 1rem;
    }
}

/* ===== LUXURY RECOGNITION DOSSIER ===== */

.recognition-dossier {
    position: relative;
    padding: 16vh 0 12vh;
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 168, 106, 0.12), transparent 35%),
        radial-gradient(circle at 10% 60%, rgba(201, 168, 106, 0.05), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(201, 168, 106, 0.04), transparent 40%),
        #050505;
    overflow: hidden;
    z-index: 2;
}

.recognition-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.recognition-focal-glow {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 70vw;
    height: 70vh;
    background: radial-gradient(circle, rgba(166, 138, 86, 0.08) 0%, rgba(166, 138, 86, 0.03) 40%, transparent 70%);
    filter: blur(80px);
}

.recognition-texture {
    position: absolute;
    inset: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.4"/%3E%3C/svg%3E');
    opacity: 0.035;
    mix-blend-mode: overlay;
}

.recognition-header {
    margin-bottom: 12vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.gold-accent-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.recognition-main-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    color: var(--gold-light);
    line-height: 1.1;
    letter-spacing: 0.08em;
    text-shadow: 0 4px 30px rgba(166, 138, 86, 0.4);
    font-weight: 500;
}

.recognition-sub {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    max-width: 650px;
    opacity: 0.9;
}

.recognition-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2.5rem;
    padding: 0 1vw;
    position: relative;
    z-index: 2;
}

.rec-card {
    position: relative;
    border-radius: 20px;
    background: linear-gradient(145deg,
            rgba(10, 10, 10, 0.95),
            rgba(3, 3, 3, 1));
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 0 40px rgba(201, 168, 106, 0.04);
    border: 1px solid rgba(166, 138, 86, 0.12);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease, border-color 0.6s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rec-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(circle at 30% 20%,
            rgba(201, 168, 106, 0.12),
            transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: 0.5s;
}

.rec-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(166, 138, 86, 0.15);
    border-color: rgba(166, 138, 86, 0.35);
}

.rec-card:hover::before {
    opacity: 1;
}

.rec-card-inner {
    padding: 2.5rem 2.2rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rec-card-inner::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -50%;
    width: 200%;
    height: 300%;
    background: linear-gradient(120deg,
            transparent 40%,
            rgba(201, 168, 106, 0.08) 50%,
            rgba(255, 230, 150, 0.15) 52%,
            rgba(201, 168, 106, 0.08) 54%,
            transparent 60%);
    transform: rotate(20deg);
    opacity: 0;
}

.rec-card:hover .rec-card-inner::after {
    animation: luxurySweep 1.6s ease forwards;
    opacity: 1;
}

.rec-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201, 161, 90, 0.08) 0%, transparent 60%);
    opacity: 0.4;
    transition: opacity 0.6s ease;
    z-index: -1;
    pointer-events: none;
}

.rec-card:hover .rec-glow {
    opacity: 1;
}

@keyframes luxurySweep {
    0% {
        transform: translateX(-120%) rotate(20deg);
    }

    100% {
        transform: translateX(120%) rotate(20deg);
    }
}

.rec-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.rec-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold);
    border: 1px solid rgba(166, 138, 86, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(166, 138, 86, 0.04);
}

.rec-icon {
    font-size: 14px;
    opacity: 0.6;
    filter: drop-shadow(0 0 8px rgba(201, 168, 106, 0.4));
}

.rec-content {
    margin-top: auto;
}

.rec-content::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    margin-top: 18px;
    background: linear-gradient(to right, var(--gold), transparent);
    opacity: 0.6;
}

.rec-content h4 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    color: #f7ddb1;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 0.03em;
    font-weight: 500;
}

.rec-content p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    opacity: 0.85;
}

/* Specific Sizes */
.rec-large {
    grid-column: span 6;
}

.rec-large .rec-content h4 {
    font-size: 2.4rem;
}

.rec-wide {
    grid-column: span 8;
}

.rec-wide .rec-content h4 {
    font-size: 2.2rem;
}

.rec-medium {
    grid-column: span 4;
}

.rec-small {
    grid-column: span 3;
}

@media (max-width: 1100px) {

    .rec-large,
    .rec-wide {
        grid-column: span 12;
    }

    .rec-medium {
        grid-column: span 6;
    }

    .rec-small {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {

    .rec-medium,
    .rec-small {
        grid-column: span 12;
    }

    .recognition-masonry {
        gap: 1.5rem;
    }

    .rec-content h4 {
        font-size: 1.6rem;
    }

    .rec-large .rec-content h4 {
        font-size: 1.8rem;
    }
}

/* ===== ELITE CLIENTELE DOSSIER ===== */
.clientele-dossier {
    position: relative;
    padding: 12vh 0;
    /* Symmetrical padding for better vertical centering */
    background-color: #000;
    overflow: hidden;
    z-index: 2;
    border-top: 1px solid rgba(215, 176, 106, 0.05);
}

.clientele-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.clientele-focal-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.05) 0%, transparent 65%);
    filter: blur(60px);
}

.client-mosaic {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 0 4vw;
    margin-top: 5vh;
}

.client-pill {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 110px;
    width: 180px;
    min-height: 110px;

    background: rgba(8, 8, 8, 0.95);
    border: 1px solid rgba(201, 168, 106, 0.3);
    border-radius: 55px;

    padding: 22px 30px;
    overflow: hidden;

    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, filter;
    cursor: default;
    flex-shrink: 0;
}

.client-pill.circle {
    width: 110px;
    padding: 20px;
    border-radius: 50%;
}

.client-pill.wide {
    width: 200px;
}

.client-pill.extra-wide {
    width: 280px;
}

/* Collaborators Grid */
.collaborators-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 0 4vw;
    margin-top: 5vh;
    padding-bottom: 5vh;
}

@media (max-width: 900px) {
    .collaborators-grid {
        gap: 20px;
    }
}

/* ===== PREMIUM LOGO MARQUEE SYSTEM ===== */
.logo-marquee-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow: hidden;
    padding: 25px 0;
    pointer-events: auto;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    z-index: 2;
}

.logo-marquee-content {
    display: flex;
    width: max-content;
    gap: 120px;
    animation: marquee-scroll 80s linear infinite;
    padding-left: 60px;
    will-change: transform;
}

.logo-marquee-wrapper.reverse .logo-marquee-content {
    animation: marquee-scroll-reverse 80s linear infinite;
}

.logo-marquee-wrapper:hover .logo-marquee-content {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 140px;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), filter 0.5s ease;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo-item:hover {
    transform: translateY(-12px) scale(1.12);
}

.logo-item:hover img {
    filter: grayscale(0%) drop-shadow(0 20px 40px rgba(201, 168, 106, 0.25));
}

/* Clientele specific: White logos instead of grayscale */
#clientele .logo-item img {
    filter: grayscale(100%) contrast(1.2) drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
}

#clientele .logo-item:hover img {
    filter: grayscale(0%) contrast(1.0) drop-shadow(0 20px 40px rgba(201, 168, 106, 0.25));
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-scroll-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 900px) {
    .logo-marquee-content {
        gap: 80px;
        animation-duration: 60s;
    }

    .logo-item {
        width: 180px;
        height: 100px;
    }
}

@media (max-width: 600px) {
    .logo-marquee-wrapper {
        padding: 40px 0;
    }

    .logo-marquee-content {
        gap: 60px;
        animation-duration: 45s;
    }

    .logo-item {
        width: 140px;
        height: 80px;
    }
}

.client-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.client-pill.large .client-logo {
    max-height: 130px;
}

.client-logo {
    transform: scale(1.05);
}

/* ===== REVIEWS DOSSIER ===== */
.reviews-dossier {
    position: relative;
    padding: 14vh 0 16vh;
    background: #000;
    overflow: hidden;
    border-top: 1px solid rgba(215, 176, 106, 0.06);
    z-index: 2;
}

.reviews-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.reviews-focal-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 70vw;
    height: 50vh;
    background: radial-gradient(ellipse, rgba(201, 168, 106, 0.06) 0%, transparent 65%);
    filter: blur(80px);
}

.google-rating-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(201, 168, 106, 0.2);
    border-radius: 16px;
    padding: 24px 36px;
    margin: 0 auto 60px;
    max-width: 800px;
    gap: 20px;
    backdrop-filter: blur(10px);
}

.google-rating-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.google-wordmark {
    height: 22px;
}

.rating-number {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #f4ead6;
    line-height: 1;
}

.rating-stars {
    font-size: 1.5rem;
    color: #c9a86c;
    letter-spacing: 2px;
}

.rating-count {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(232, 218, 188, 0.5);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.google-review-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f4ead6;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(201, 168, 106, 0.35);
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.google-review-link:hover {
    background: rgba(201, 168, 106, 0.1);
    border-color: var(--gold);
    color: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 168, 106, 0.15);
}

.reviews-track-wrapper {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto 50px;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    background: rgba(8, 8, 8, 0.95);
    border: 1px solid rgba(201, 168, 106, 0.15);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 6rem;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(201, 168, 106, 0.08);
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    border-color: rgba(201, 168, 106, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 168, 106, 0.08);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a68a56, #6b4f1c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    border: 1px solid rgba(201, 168, 106, 0.3);
}

.reviewer-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    color: #f4ead6;
    letter-spacing: 0.05em;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(232, 218, 188, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.review-stars {
    color: #c9a86c;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(232, 218, 188, 0.75);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.review-date {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: rgba(201, 168, 106, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.reviews-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.rev-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(201, 168, 106, 0.3);
    color: #c9a86c;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.rev-nav-btn:hover {
    background: rgba(201, 168, 106, 0.12);
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 168, 106, 0.2);
}

.rev-dots {
    display: flex;
    gap: 8px;
}

.rev-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(201, 168, 106, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.rev-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.reviews-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 60px auto 70px;
    color: rgba(201, 168, 106, 0.3);
}

.reviews-divider::before,
.reviews-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 106, 0.25), transparent);
}

.divider-icon {
    color: #c9a86c;
    font-size: 1rem;
    flex-shrink: 0;
}

.write-review-section {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.write-review-heading {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 600;
    color: #f4ead6;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
}

.write-review-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: rgba(232, 218, 188, 0.5);
    margin-bottom: 40px;
    font-style: italic;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

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

.input-group-review {
    display: flex;
    flex-direction: column;
}

.input-group-review.full {
    width: 100%;
}

.input-group-review input,
.input-group-review textarea {
    background: rgba(8, 8, 8, 0.9);
    border: 1px solid rgba(201, 168, 106, 0.2);
    border-radius: 12px;
    padding: 16px 20px;
    color: #f4ead6;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    resize: none;
    backdrop-filter: blur(6px);
    width: 100%;
}

.input-group-review input::placeholder,
.input-group-review textarea::placeholder {
    color: rgba(232, 218, 188, 0.3);
}

.input-group-review input:focus,
.input-group-review textarea:focus {
    border-color: rgba(201, 168, 106, 0.6);
    box-shadow: 0 0 20px rgba(201, 168, 106, 0.08);
}

.review-star-picker {
    display: flex;
    align-items: center;
    gap: 16px;
}

.star-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(201, 168, 106, 0.6);
}

.star-select {
    display: flex;
    gap: 6px;
}

.star-select span {
    font-size: 2rem;
    color: rgba(201, 168, 106, 0.2);
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.star-select span.active,
.star-select span.hovered {
    color: #c9a86c;
    transform: scale(1.2);
}

.review-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.15), rgba(201, 168, 106, 0.05));
    border: 1px solid rgba(201, 168, 106, 0.4);
    border-radius: 50px;
    color: #f4ead6;
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 40px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.review-submit-btn:hover {
    background: rgba(201, 168, 106, 0.2);
    border-color: var(--gold);
    box-shadow: 0 0 30px rgba(201, 168, 106, 0.2);
    transform: translateY(-3px);
    color: var(--gold-light);
}

.review-success-msg {
    display: none;
    text-align: center;
    color: #c9a86c;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    font-style: italic;
    padding: 12px 0;
    border-top: 1px solid rgba(201, 168, 106, 0.15);
    margin-top: 8px;
}

.review-success-msg.visible {
    display: block;
}

@media (max-width: 900px) {
    .review-card {
        flex: 0 0 calc(50% - 12px);
    }

    .google-rating-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .review-card {
        flex: 0 0 100%;
    }

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

    .review-submit-btn {
        align-self: center;
        width: 100%;
    }
}

/* ===== CONTACT SOCIAL LINKS ===== */
.contact-grid.solo {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-details {
    width: 100%;
    text-align: center;
    padding: 80px 40px;
    background: #e0ae51;
    /* Solid Premium Gold */
    border: none;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    color: #000000;
    /* Black Text */
}

.contact-details .section-heading {
    color: #000000;
    margin-bottom: 35px;
    font-weight: 700;
    letter-spacing: 0.12em;
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    /* Moderately bigger */
}

.contact-item {
    color: #000000;
    font-weight: 500;
    font-size: 1.4rem;
    /* Significantly bigger */
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 45px;
}

.contact-social-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.05);
    /* Very subtle dark overlay */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: #000000;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    /* Slightly bigger */
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.contact-social-btn svg {
    flex-shrink: 0;
    color: #000000;
    transition: all 0.3s ease;
}

.contact-social-btn:hover {
    background: #000000;
    color: #C9A86C;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-social-btn:hover svg {
    color: #C9A86C;
    transform: scale(1.1);
}

/* ===== FOOTER DEV LINK ===== */
/* ===== PREMIUM ENHANCED FOOTER ===== */
/* ===== PREMIUM ENHANCED FOOTER ===== */
.footer {
    position: relative;
    padding: 10px 0 0;
    background-color: #050505;
    border-top: 1px solid var(--gold);
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
    z-index: 10;
    color: #f4ead6;
    font-weight: 500;
}



.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
    padding: 0 0 20px;
}

.footer-col-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 800;
    /* Extra bold headings */
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    color: var(--gold);
}

.footer-logo {
    max-width: 90px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(86%) sepia(21%) saturate(958%) hue-rotate(338deg) brightness(103%) contrast(92%);
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(232, 218, 188, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-list a:hover {
    color: var(--gold-light);
    padding-left: 8px;
}

.footer-contact-details p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    /* Slightly larger for better readability */
    line-height: 1.6;
    color: #f4ead6;
    margin-bottom: 8px;
    font-weight: 700;
    /* Ensuring bold */
}

.footer-contact-details .bold {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.footer-contact-details.centered-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-social-row {
    display: flex;
    gap: 30px;
    /* Increased gap for icons */
    margin-bottom: 25px;
}

.footer-social-row a {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.footer-social-row a:hover {
    transform: translateY(-3px);
}

.footer-phone-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    opacity: 0.9;
}

.icon-inline {
    vertical-align: middle;
    margin-right: 8px;
    flex-shrink: 0;
}

.footer-contact-item-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.footer-contact-item a {
    color: #f4ead6;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-item a:hover {
    opacity: 0.7;
}

.mail-item {
    margin-top: 10px;
    font-size: 1.1rem;
}

.logo-left-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    max-width: 90px;
    height: auto;
    margin-bottom: 10px;
    filter: brightness(0) saturate(100%) invert(86%) sepia(21%) saturate(958%) hue-rotate(338deg) brightness(103%) contrast(92%);
}

.footer-brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
}

.footer-divider.line {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    /* Horizontal layout */
    justify-content: space-between;
    /* Split to sides */
    align-items: center;
    background-color: #000;
    margin: 0 calc(-50vw + 50%);
    width: 100vw;
    padding: 25px 8vw;
    /* Better inner containment */
    box-sizing: border-box;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: #D4AF37;
    font-weight: 700;
    margin: 0;
}

.footer-dev-btn {
    padding: 12px 30px;
    border: 1px solid #D4AF37;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-dev-btn:hover {
    background: #D4AF37;
    color: #000;
    transform: scale(1.05);
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }

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

    .footer-contact-item {
        justify-content: center;
    }
}

#scrollVideoSection {
    position: relative;
    height: 300vh;
}

#scrollSticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}



#scrollVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.legacy-title .line {
    display: block;
    text-align: center;
}

.legacy-title {
    line-height: 1.25;
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
}

#scrollVideoSection {
    position: relative;
    height: 300vh;
}

#scrollSticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

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

/* --- COLLABORATORS SECTION --- */
.collaborators-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

#collaborators .logo-item {
    flex: 0 0 calc(20% - 2.5rem);
    min-width: 160px;
    max-width: 280px;
    position: relative;
    padding: 1.5rem;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#collaborators .logo-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(166, 138, 86, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

#collaborators .logo-item:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Remove hover glow */
#collaborators .logo-item:hover::before {
    opacity: 0;
}

#collaborators .logo-item img {
    max-width: 190px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transform: translateZ(20px);
}

#collaborators .logo-item:hover img {
    filter: drop-shadow(0 15px 25px rgba(166, 138, 86, 0.3));
    transform: translateZ(40px) scale(1.08);
}

#collaborators .clientele-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.collaborator-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(201, 161, 90, 0.8) 0%, rgba(166, 138, 86, 0.2) 60%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(2px);
    will-change: transform, opacity;
}

@media (max-width: 768px) {
    .collaborators-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
    }

    #collaborators .logo-item {
        padding: 1.5rem;
    }

    #collaborators .logo-item img {
        max-width: 100px;
        max-height: 70px;
    }
}

/* ===================================================
   PREMIUM CINEMATIC DIVISION DETAIL OVERLAY
   =================================================== */

/* --- Base Overlay --- */
.cinematic-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    overflow: hidden;
    background: rgba(2, 2, 2, 0.88);
}

.cinematic-overlay.active {
    visibility: visible;
}

/* --- Shutter Animation Panels --- */
.shutter {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #000;
    z-index: 10;
    pointer-events: none;
}

.shutter-left {
    left: 0;
    transform-origin: left;
}

.shutter-right {
    right: 0;
    transform-origin: right;
}

/* --- Texture & Vignette layers --- */
.overlay-texture {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
    background-size: 4px 4px;
    mix-blend-mode: soft-light;
    pointer-events: none;
    z-index: 2;
}

.overlay-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 45%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
    z-index: 3;
}

/* --- Gold Light Sweep --- */
.light-sweep {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 30%,
            rgba(212, 175, 55, 0.06) 50%,
            rgba(212, 175, 55, 0.12) 55%,
            rgba(212, 175, 55, 0.06) 60%,
            transparent 75%);
    pointer-events: none;
    z-index: 4;
    filter: blur(8px);
    will-change: transform;
}

/* --- Overlay Header Bar --- */
.overlay-header {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 44px;
    border-bottom: 1px solid rgba(201, 168, 106, 0.12);
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-shrink: 0;
}

.microsite-brand {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    color: var(--gold-light);
    text-transform: uppercase;
}

.top-cta-lux {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: rgba(201, 168, 106, 0.45);
    text-transform: uppercase;
}

/* --- Close Button --- */
.close-btn-minimal {
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(201, 168, 106, 0.22);
    border-radius: 50px;
    padding: 8px 20px 8px 14px;
    cursor: pointer;
    color: rgba(201, 168, 106, 0.65);
    transition: all 0.35s ease;
}

.close-btn-minimal:hover {
    background: rgba(201, 168, 106, 0.08);
    border-color: rgba(201, 168, 106, 0.5);
    color: var(--gold-light);
    box-shadow: 0 0 20px rgba(201, 168, 106, 0.1);
}

.close-icon-lux {
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-icon-lux svg {
    stroke: currentColor;
}

.close-text-lux {
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
}

/* --- Scrollable Content Area --- */
.microsite-content {
    position: relative;
    z-index: 15;
    flex: 1 1 0%;
    min-height: 0;
    box-sizing: border-box;
    overflow-y: auto;
    display: block;
    padding: 60px 5vw 80px;
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 168, 106, 0.25) transparent;
}

.microsite-content::-webkit-scrollbar {
    width: 4px;
}

.microsite-content::-webkit-scrollbar-track {
    background: transparent;
}

.microsite-content::-webkit-scrollbar-thumb {
    background: rgba(201, 168, 106, 0.3);
    border-radius: 4px;
}

/* --- Division Detail Shell --- */
.division-detail-shell {
    width: 100%;
    max-width: 1100px;
    max-height: none !important;
    position: relative;
    margin: 0 auto;
    overflow: visible !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: none;
}

.division-detail-shell.shadow-only {
    /* No visible box, just structure */
}

/* --- Detail Content Layout --- */
.division-detail-content {
    display: flex;
    flex-direction: column;
    gap: 52px;
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
}

/* --- Logo Area --- */
.detail-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 44px 40px;
    background:
        radial-gradient(ellipse at center, rgba(201, 168, 106, 0.07) 0%, transparent 65%),
        linear-gradient(145deg, rgba(16, 14, 10, 0.85), rgba(5, 4, 2, 0.95));
    border: 1px solid rgba(201, 168, 106, 0.18);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        inset 0 0 60px rgba(201, 168, 106, 0.04);
}

.detail-logo-wrap::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 27px;
    border: 1px solid rgba(201, 168, 106, 0.07);
    pointer-events: none;
}

.detail-logo-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.4), transparent);
}

.detail-logo-image {
    max-height: 130px;
    max-width: 420px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(201, 168, 106, 0.15));
    transition: transform 0.5s ease, filter 0.5s ease;
}

.detail-logo-wrap:hover .detail-logo-image {
    transform: scale(1.04);
    filter: drop-shadow(0 8px 30px rgba(201, 168, 106, 0.25));
}

/* --- Main Body Layout (2-col on desktop) --- */
.detail-main-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: stretch;
}

/* --- Body Text Panel --- */
.detail-body-text {
    background:
        radial-gradient(ellipse at top left, rgba(201, 168, 106, 0.06) 0%, transparent 50%),
        linear-gradient(160deg, rgba(14, 12, 8, 0.9), rgba(4, 3, 2, 0.97));
    border: 1px solid rgba(201, 168, 106, 0.15);
    border-radius: 24px;
    padding: 52px 52px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.detail-body-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 106, 0.35) 40%, transparent 100%);
}

.detail-body-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(201, 168, 106, 0.06) 0%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
}

/* --- Detail Title --- */
.detail-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    color: #f0e2c0;
    letter-spacing: 0.08em;
    line-height: 1.1;
    margin-bottom: 28px;
    position: relative;
}

.detail-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 18px;
    border-radius: 2px;
}

/* --- Detail Description --- */
.detail-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.85;
    color: rgba(228, 210, 175, 0.78);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.detail-description strong {
    color: #e8d4a8;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.02em;
}

/* --- Sidebar Links Panel --- */
.detail-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: sticky;
    top: 20px;
}

/* --- Individual Sidebar Info Cards --- */
.sidebar-info-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 20px 24px;
    flex: 1;
    background:
        linear-gradient(145deg, rgba(16, 14, 10, 0.92), rgba(6, 5, 3, 0.97));
    border: 1px solid rgba(201, 168, 106, 0.14);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.35s cubic-bezier(0.2, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.sidebar-info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.sidebar-info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.35), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.sidebar-info-card:hover {
    border-color: rgba(201, 168, 106, 0.4);
    transform: translateX(4px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(201, 168, 106, 0.08),
        inset 0 0 20px rgba(201, 168, 106, 0.04);
}

.sidebar-info-card:hover::before,
.sidebar-info-card:hover::after {
    opacity: 1;
}

.meta-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(201, 168, 106, 0.5);
    font-weight: 500;
}

.meta-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(232, 218, 188, 0.85);
    line-height: 1.45;
    font-weight: 400;
}

/* --- Responsive Overrides --- */
@media (max-width: 900px) {
    .overlay-header {
        padding: 18px 24px;
    }

    .microsite-content {
        padding: 36px 4vw 60px;
    }

    .detail-main-layout {
        grid-template-columns: 1fr;
    }

    .detail-sidebar-links {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .detail-body-text {
        padding: 36px 28px;
    }
}

@media (max-width: 600px) {
    .detail-logo-wrap {
        padding: 32px 24px;
    }

    .detail-logo-image {
        max-height: 90px;
        max-width: 260px;
    }

    .detail-sidebar-links {
        grid-template-columns: 1fr;
    }

    .detail-body-text {
        padding: 28px 20px;
    }

    .overlay-header {
        padding: 14px 18px;
    }

    .top-cta-lux {
        display: none;
    }
}

/* ===================================================
   IMPROVED DIVISION PANEL (Main Showcase Cards)
   =================================================== */

.division-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 52px 48px;
    background:
        radial-gradient(ellipse at top left, rgba(201, 168, 106, 0.10) 0%, transparent 45%),
        radial-gradient(ellipse at bottom right, rgba(201, 168, 106, 0.06) 0%, transparent 50%),
        linear-gradient(145deg, #0d0c09 0%, #040404 100%);
    gap: 28px;
}

.division-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 106, 0.3), transparent);
}

.division-panel::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    color: rgba(201, 168, 106, 0.04);
    pointer-events: none;
    line-height: 1;
    font-weight: 700;
}

.division-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    background: transparent;
    margin-bottom: 0;
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    cursor: pointer;
}

.division-logo-link:hover {
    transform: scale(1.05);
}

.division-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 36px;
    border: 1px solid rgba(201, 168, 106, 0.35);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
    background: rgba(201, 168, 106, 0.04);
    font-family: var(--font-body);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.division-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 168, 106, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
}

.division-btn:hover {
    background: rgba(201, 168, 106, 0.12);
    color: #f0e2c0;
    border-color: rgba(201, 168, 106, 0.7);
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(201, 168, 106, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.division-btn:hover::before {
    opacity: 1;
}

/* Enhance the division row cards themselves */
.division-row {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 0;
    align-items: stretch;
    min-height: 480px;
    border: 1px solid rgba(201, 168, 106, 0.14);
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(145deg, #0c0c0a 0%, #050505 55%, #020202 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        inset 0 -1px 0 rgba(201, 168, 106, 0.05),
        0 24px 60px rgba(0, 0, 0, 0.55);
    transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    transform: translateY(60px);
    opacity: 0;
    position: relative;
}

.division-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 168, 106, 0.25) 50%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

.division-row:hover {
    border-color: rgba(201, 168, 106, 0.3);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 35px 80px rgba(0, 0, 0, 0.65),
        0 0 40px rgba(201, 168, 106, 0.06);
    transform: translateY(-4px);
}

.division-row.reverse {
    grid-template-columns: 0.8fr 1.2fr;
}

/* Person specific layout for Syino's modal */
.division-detail-content.person-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    grid-template-areas:
        "links logo"
        "body body";
    gap: 32px;
}

.division-detail-content.person-layout .detail-main-layout {
    display: contents;
}

.division-detail-content.person-layout .detail-logo-wrap {
    grid-area: logo;
    margin-bottom: 0;
}

.division-detail-content.person-layout .detail-sidebar-links {
    grid-area: links;
    margin-top: 0;
    justify-content: center;
    position: relative;
    top: auto;
}

.division-detail-content.person-layout .detail-body-text {
    grid-area: body;
}

@media (max-width: 900px) {
    .division-detail-content.person-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "logo"
            "links"
            "body";
    }
}

/* Footer Responsive Overrides */
.footer-new-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 20px 0;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

@media (max-width: 768px) {
    .footer-new-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        padding: 15px 0;
    }

    .footer-left {
        align-items: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 16px;
    }

    .more-details-btn {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        display: block;
    }

    .director-socials {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* =====================================================
   MOBILE TIMELINE: FLOWCHART LAYOUT
   Completely overrides the desktop winding-road timeline
   on screens <= 768px with clean vertical flowchart boxes
   ===================================================== */
@media (max-width: 768px) {

    /* Hide the SVG winding road and car */
    .svg-path-wrapper,
    #roadWrapper,
    .winding-ribbon,
    #timelineCar,
    .step-dot {
        display: none !important;
    }

    /* Collapse the fixed-height milestones layer to auto */
    .milestones-layer {
        min-height: unset !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 20px 0 40px;
    }

    .milestones-layer::before {
        display: none;
    }

    /* Reset all absolute-positioned steps to normal flow */
    .process-step {
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 90% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        transform: none !important;
        opacity: 1 !important;
        filter: none !important;
    }

    /* The content box */
    .step-label {
        width: 100%;
        padding: 20px 18px;
        text-align: center;
        border-radius: 16px;
        position: relative;
    }

    /* Arrow connector between each step box */
    .process-step:not(:last-child)::after {
        content: '';
        display: block;
        width: 2px;
        height: 36px;
        background: linear-gradient(to bottom, var(--gold), rgba(166, 138, 86, 0.3));
        margin: 0 auto;
        position: relative;
    }

    /* Arrowhead pointing down */
    .process-step:not(:last-child)::before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 10px solid rgba(166, 138, 86, 0.7);
        margin: 0 auto -1px;
        position: relative;
        order: 2;
        z-index: 2;
    }

    /* Make the connector and arrowhead appear AFTER the box */
    /* Using a wrapper trick: step-label is first, then the arrow connectors */
    .process-step {
        gap: 0 !important;
    }

    .step-label {
        order: 1;
    }

    /* Downward arrow after label */
    .step-label::after {
        content: '';
        display: block;
        width: 2px;
        height: 30px;
        background: linear-gradient(to bottom, rgba(166, 138, 86, 0.7), rgba(166, 138, 86, 0.2));
        margin: 0 auto;
    }

    .step-label:last-child::after,
    .process-step:last-child .step-label::after {
        display: none;
    }

    /* Arrowhead triangle */
    .step-label::before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-top: 9px solid rgba(166, 138, 86, 0.6);
        margin: 0 auto;
    }

    .process-step:last-child .step-label::before {
        display: none;
    }

    /* Scale down the heading text for mobile */
    .step-label h3 {
        font-size: 1.5rem !important;
    }

    .step-label p {
        font-size: 0.92rem !important;
    }

    /* Scale down the section header */
    .editorial-main-title {
        font-size: clamp(2.8rem, 12vw, 5rem) !important;
    }

    .process-header {
        text-align: center !important;
        margin-bottom: 5vh !important;
        padding: 0 20px;
    }

    /* Reduce timeline section padding on mobile */
    .process-timeline {
        padding: 8vh 0 4vh !important;
    }
}

.footer {
    width: 100%;
    padding: 15px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.25);
}

.footer-container {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-left {
    margin-right: auto;
}

.footer-right {
    margin-left: auto;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #d4af37;
    font-size: 15px;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    letter-spacing: 1px;
}

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

.footer-socials {
    display: flex;
    gap: 18px;
}

.footer-socials a {
    color: #d4af37;
    font-size: 22px;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
}

.meet-dev-btn {
    padding: 12px 28px;
    border: 1px solid #d4af37;
    border-radius: 999px;

    color: #d4af37;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;

    transition: 0.3s ease;
}

.meet-dev-btn:hover {
    background: #d4af37;
    color: #000;
}

/* MOBILE */
@media (max-width: 768px) {

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 25px;
    }

    .footer-right {
        align-items: flex-start;
        width: 100%;
    }

    .footer-contact-item.mail-item {
        width: 100%;
        justify-content: center;
        margin-bottom: 12px;
    }

    .footer-social-row {
        width: 100%;
        justify-content: center;
    }

    /* Mobile Divisions Layout: Picture -> Logo -> More Details */
    .division-row,
    .division-row.reverse {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
    }

    .division-row .division-media,
    .division-row.reverse .division-media {
        order: 1 !important;
        min-height: 240px !important;
        height: 240px !important;
    }

    .division-row .division-panel,
    .division-row.reverse .division-panel {
        order: 2 !important;
        padding: 30px 24px !important;
        gap: 20px !important;
    }

    /* Swipable Features & Recognitions on Mobile */
    .recognition-masonry {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.5rem !important;
        padding: 15px 20px 30px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
    }

    .recognition-masonry::-webkit-scrollbar {
        display: none !important;
    }

    .recognition-masonry .rec-card {
        flex: 0 0 80% !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        grid-column: auto !important;
    }

    /* Swipable Collaborators on Mobile */
    .collaborators-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 1.5rem !important;
        padding: 15px 20px 30px !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        justify-content: flex-start !important;
    }

    .collaborators-grid::-webkit-scrollbar {
        display: none !important;
    }

    #collaborators .logo-item {
        flex: 0 0 190px !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
        max-width: none !important;
        padding: 1.2rem !important;
    }

    #collaborators .logo-item img {
        max-width: 150px !important;
        max-height: 95px !important;
    }

    /* Mobile Auto-Scrolling Marquee for Collaborators */
    @keyframes marqueeScroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .collaborators-grid.marquee-active {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: hidden !important;
        /* Hide touch scroll scrollbar */
        justify-content: flex-start !important;
        animation: marqueeScroll 25s linear infinite !important;
        width: max-content !important;
        scroll-snap-type: none !important;
        /* Disable snapping during auto-scroll */
    }

    .collaborators-grid.marquee-active #collaborators .logo-item {
        scroll-snap-align: none !important;
    }
}

/* ==========================================================
   FORCE OVERRIDE: FIXED MOBILE COMPACT RATIOS FOR MORE DETAILS 
   ========================================================== */
@media screen and (max-width: 768px) {

    /* Force the main sliding overlay window layout to fit nicely */
    body.overflow-hidden div#cinematicOverlay.cinematic-overlay.active,
    div#cinematicOverlay.cinematic-overlay.active {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100vh !important;
        width: 100vw !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }

    /* Shrink the wrapper content so it feels like a normal card ratio */
    div#cinematicOverlay .microsite-content {
        display: block !important;
        padding: 24px 16px 40px !important;
        height: auto !important;
        min-height: 0 !important;
        width: 100% !important;
    }

    /* Standardize the background panel container */
    div#cinematicOverlay .division-detail-shell {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        background: rgba(8, 8, 8, 0.98) !important;
        border: 1px solid rgba(201, 168, 106, 0.25) !important;
        border-radius: 24px !important;
    }

    /* Shrink the large header wrapper logo banner */
    div#cinematicOverlay .detail-logo-wrap {
        padding: 24px 16px !important;
        border-radius: 23px 23px 0 0 !important;
        background: rgba(16, 14, 10, 0.95) !important;
        margin-bottom: 0 !important;
    }

    div#cinematicOverlay .detail-logo-image {
        max-height: 55px !important;
        max-width: 150px !important;
    }

    /* Shatter desktop side-by-side grids into clean vertical stacks */
    div#cinematicOverlay .detail-main-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 20px !important;
        padding: 24px 16px !important;
    }

    /* Make text blocks take up normal, readable spacing proportions */
    div#cinematicOverlay .detail-body-text {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    div#cinematicOverlay .detail-title {
        font-size: 1.5rem !important;
        margin-bottom: 12px !important;
        text-align: center !important;
    }

    div#cinematicOverlay .detail-title::after {
        margin: 10px auto 0 !important;
        /* Centers your sleek luxury gold dividing line */
    }

    div#cinematicOverlay .detail-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-align: justify !important;
        margin-bottom: 0 !important;
    }

    /* Flatten info cards vertically so they align with your other pages */
    div#cinematicOverlay .detail-sidebar-links {
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    div#cinematicOverlay .sidebar-info-card {
        padding: 14px 18px !important;
        border-radius: 12px !important;
        text-align: left !important;
        transform: none !important;
    }

    div#cinematicOverlay .meta-label {
        font-size: 0.72rem !important;
        letter-spacing: 0.15em !important;
    }

    div#cinematicOverlay .meta-value {
        font-size: 1.05rem !important;
    }
}

/* ==========================================================
   NUCLEAR RESET: FORCE DRIFTING OVERLAY BACK TO CENTER
   ========================================================== */
@media screen and (max-width: 768px) {

    /* 1. Force the overlay wrapper to align perfectly with the viewport boundaries */
    body #cinematicOverlay,
    body .cinematic-overlay,
    body .cinematic-overlay.active {
        position: fixed !important;
        inset: 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 999999 !important;
        /* Make sure it sits on top of any leaking elements */
        transform: none !important;
        /* Kills any sneaky GSAP or JS translate drift */
    }

    /* 2. Lock down the internal content module box */
    #cinematicOverlay .microsite-content {
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 20px 0 !important;
        /* Clears any wide horizontal buffers completely */
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* 3. Scale the actual card neatly within the center of that fixed view */
    #cinematicOverlay .division-detail-shell {
        width: 90% !important;
        max-width: 90% !important;
        margin: 10px auto !important;
        /* Force browser to mathematically balance left/right space */
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        box-sizing: border-box !important;
    }

    /* 4. Blanket ban on horizontal viewport scrolling across the entire document */
    html,
    body,
    #main-content,
    .premium-hero {
        overflow-x: hidden !important;
        position: relative !important;
    }
}

/* ==========================================================
   ULTIMATE MOBILE RESET: CLEAN CONTENT ALIGNMENT & RATIOS
   ========================================================== */
@media screen and (max-width: 768px) {

    /* 1. Force the main cinematic modal box to lock precisely to the screen bounds */
    #cinematicOverlay,
    .cinematic-overlay,
    .cinematic-overlay.active {
        position: fixed !important;
        inset: 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: 100vh !important;
        max-height: 100vh !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        /* Stops dynamic layout coordinate drifting */
        overflow-x: hidden !important;
        overflow-y: auto !important;
        /* Allows the content wrapper itself to scroll natively */
        -webkit-overflow-scrolling: touch !important;
        z-index: 999999 !important;
    }

    /* 2. Strip out horizontal overflow from the internal flex wrapper */
    #cinematicOverlay .microsite-content,
    .cinematic-overlay .microsite-content {
        display: block !important;
        /* Destroys desktop side-by-side flex gaps */
        width: 100vw !important;
        max-width: 100vw !important;
        padding: 80px 16px 40px !important;
        /* Elegant spacing under the top bar dismiss button */
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    /* 3. Scale and perfectly center the background card module layout */
    #cinematicOverlay .division-detail-shell,
    .cinematic-overlay .division-detail-shell {
        display: flex !important;
        flex-direction: column !important;
        width: 92% !important;
        /* Sets identical left/right balance margins */
        max-width: 92% !important;
        margin: 0 auto !important;
        /* Forces the browser to calculate even center edges */
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        box-sizing: border-box !important;
        background: #0a0a0a !important;
        /* Matches premium dark aesthetic theme */
        border: 1px solid rgba(201, 168, 106, 0.25) !important;
        border-radius: 20px !important;
        float: none !important;
    }

    /* 4. Collapse inner side-by-side grid panels into standard vertical blocks */
    #cinematicOverlay .detail-main-layout,
    .cinematic-overlay .detail-main-layout {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 20px !important;
        padding: 24px 16px !important;
        width: 100% !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    #cinematicOverlay .detail-body-text,
    .cinematic-overlay .detail-body-text {
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 5. Clean up typography alignment ratios to look consistent with home pages */
    #cinematicOverlay .detail-title,
    .cinematic-overlay .detail-title {
        font-size: 1.5rem !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }

    #cinematicOverlay .detail-title::after,
    .cinematic-overlay .detail-title::after {
        margin: 10px auto 0 !important;
        /* Perfectly centers your gold luxury accent rule line */
    }

    #cinematicOverlay .detail-description,
    .cinematic-overlay .detail-description {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        text-align: justify !important;
        margin-bottom: 0 !important;
    }

    /* 6. Flatten info portfolios layout grid items cleanly */
    #cinematicOverlay .detail-sidebar-links,
    .cinematic-overlay .detail-sidebar-links {
        position: static !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    #cinematicOverlay .sidebar-info-card,
    .cinematic-overlay .sidebar-info-card {
        width: 100% !important;
        padding: 14px 18px !important;
        transform: none !important;
        box-sizing: border-box !important;
    }

    /* 7. Strict global retaining wall barrier to eliminate horizontal screen drift entirely */
    html,
    body,
    #main-content,
    .premium-hero {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}

/* Existing CSS above */

.footer-bottom {
    display: flex;
}

/* Paste this at the bottom */
@media screen and (max-width: 768px) {
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}