/* ═════════════════════════════════════════════════════════════════
   &PEOPLE — IMMERSIVE EVENT VENUE
   A luxury interactive exhibition experience
   ═════════════════════════════════════════════════════════════════ */

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

:root {
    /* ══ BRAND COLOURS — STRICTLY FOLLOW ══ */
    /* Primary: Luxury Plum #381932 */
    --plum: #381932;
    --plum-bright: #5e2a4e;       /* brighter plum for medium accents */
    --plum-glow: #8b3a6a;        /* plum glow (LED-like) */
    --plum-radiant: #b85a8f;     /* brightest plum for intense glow points */
    --plum-deep: #1f0d1b;        /* deep plum for dark surfaces */
    --plum-dark: #0d0610;        /* near-black plum for deepest bg */

    /* Secondary: Milk #FFF3E6 */
    --milk: #FFF3E6;
    --milk-soft: rgba(255, 243, 230, 0.78);
    --milk-muted: rgba(255, 243, 230, 0.5);
    --milk-faint: rgba(255, 243, 230, 0.2);

    /* Semantic palette (mapped to brand) */
    --bg-deep: var(--plum-dark);
    --bg-dark: var(--plum-deep);
    --bg-mid: #1f0f1c;
    --bg-light: #2a1422;
    --accent-gold: var(--plum);          /* brand accent → plum */
    --accent-warm: var(--plum-bright);   /* warm accent → bright plum */
    --accent-cool: var(--plum);          /* cool accent → plum */
    --accent-glow: var(--milk);          /* glow accent → milk */
    --text-primary: var(--milk);
    --text-secondary: var(--milk-soft);
    --text-muted: var(--milk-muted);
    --border-subtle: rgba(56, 25, 50, 0.45);
    --border-medium: rgba(56, 25, 50, 0.7);
    --glass-bg: rgba(56, 25, 50, 0.5);
    --glass-border: rgba(255, 243, 230, 0.12);

    /* Typography — Playfair Display everywhere, Pinyon Script ONLY for & in logo */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Playfair Display', serif;
    --font-mono: 'Playfair Display', serif;
    --font-amp: 'Pinyon Script', cursive;

    /* Transitions */
    --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-enter: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-anchor: none;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
    cursor: default;
    /* Stop the browser from "helpfully" preserving scroll position when a
       .scene's height changes (0 -> auto on mobile, as booths activate).
       Without this, scroll-anchoring fights our explicit scrollTo(0,0)
       calls in main.js and can land you mid-page on a blank stretch. */
    overflow-anchor: none;
}

/* ═════════════════════════════════════════════════════════════════
   LOADING SCREEN
   ═════════════════════════════════════════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s var(--ease-cinematic), visibility 1.2s;
}

.loader.fade-out {
    opacity: 0;
    visibility: hidden;
    /* CSS only flips `visibility` to hidden at the very end of the 1.2s
       transition, not the instant this class is added — until then the
       loader is still technically "visible" and, without this, still
       sitting on top intercepting clicks. That's what made the very
       first click on "Enter the Experience" (or anywhere else) land on
       the fading-out loader instead of the button underneath, doing
       nothing and needing a second click to actually register. */
    pointer-events: none;
}

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

.loader-amp {
    font-family: var(--font-display);
    font-size: clamp(80px, 15vw, 180px);
    font-weight: 300;
    color: var(--accent-gold);
    line-height: 1;
    animation: loaderPulse 2s var(--ease-cinematic) infinite;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.loader-text {
    font-family: var(--font-mono);
    font-size: clamp(14px, 2vw, 20px);
    letter-spacing: 0.8em;
    color: var(--text-primary);
    margin-top: 0.5rem;
    padding-left: 0.8em;
}

.loader-sub {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1rem;
}

.loader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem auto 0;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: var(--accent-gold);
    width: 0;
    animation: loaderFill 2.5s var(--ease-cinematic) forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

.loader-hint {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1rem;
    opacity: 0.6;
}

/* ═════════════════════════════════════════════════════════════════
    VENUE CANVAS — 3D Cinematic Camera System
    ═════════════════════════════════════════════════════════════════ */
.venue {
    position: fixed;
    inset: 0;
    overflow: hidden;
    perspective: 1400px;
    perspective-origin: 50% 45%;
}

/* Camera wrapper — moved in 3D space by GSAP */
.camera {
    position: absolute;
    inset: 0;
    will-change: transform;
}

/* Cinematic transition overlay — fade/darkness during camera moves */
.cinema-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 500;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.6s var(--ease-cinematic), visibility 0.6s;
}

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

/* Door flash — white/gold flash when doors open */
.door-flash {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 243, 230, 0.4), transparent 70%);
    z-index: 450;
    opacity: 0;
    pointer-events: none;
}

/* Ambient layers */
.ambient-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 6px var(--accent-gold);
    animation: floatParticle linear infinite;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) translateX(0); opacity: 0; }
    10% { opacity: 0.4; }
    90% { opacity: 0.4; }
    100% { transform: translateY(-10vh) translateX(50px); opacity: 0; }
}

.ambient-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}

.ambient-floor-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(to top, rgba(255, 243, 230, 0.08), transparent);
}

/* ═════════════════════════════════════════════════════════════════
   SCENE SYSTEM
   ═════════════════════════════════════════════════════════════════ */
.scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s var(--ease-cinematic), visibility 1s;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 10;
    /* The booth quick-jump bar is fixed to the bottom on every screen
       size, so every scene needs room to scroll its last bit of content
       clear of it. */
    padding-bottom: 5.5rem;
}

.scene.active {
    opacity: 1;
    visibility: visible;
    z-index: 20;
}

.scene::-webkit-scrollbar {
    width: 4px;
}

.scene::-webkit-scrollbar-track {
    background: transparent;
}

.scene::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: 2px;
}

/* ═════════════════════════════════════════════════════════════════
   SCENE 0 — ENTRANCE (Luxury venue exterior at evening)
   ═════════════════════════════════════════════════════════════════ */
.scene-entrance {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-deep);
    overflow: hidden;
}

/* Evening sky */
.entrance-sky {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        #0a0510 0%,
        #14081a 20%,
        #1f0d22 40%,
        #2a1230 55%,
        #1a0a20 70%,
        #0a0510 100%);
}

/* Stars */
.entrance-stars {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    opacity: 0;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.9; }
}

/* Distant city skyline */
.entrance-skyline {
    position: absolute;
    bottom: 30%;
    left: 0;
    right: 0;
    height: 120px;
    background:
        linear-gradient(180deg, transparent, rgba(20, 10, 25, 0.6)),
        repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 40px,
            rgba(30, 15, 35, 0.4) 40px,
            rgba(30, 15, 35, 0.4) 60px,
            transparent 60px,
            transparent 100px,
            rgba(40, 20, 45, 0.3) 100px,
            rgba(40, 20, 45, 0.3) 140px);
    opacity: 0.5;
    filter: blur(1px);
}

.entrance-skyline::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 80%, rgba(255, 243, 230, 0.3) 1px, transparent 2px),
        radial-gradient(circle at 35% 60%, rgba(255, 243, 230, 0.2) 1px, transparent 2px),
        radial-gradient(circle at 65% 70%, rgba(255, 243, 230, 0.25) 1px, transparent 2px),
        radial-gradient(circle at 85% 50%, rgba(255, 243, 230, 0.2) 1px, transparent 2px);
    background-size: 200px 100px;
}

/* Moving sky spotlights */
.entrance-spotlights {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.sky-spotlight {
    position: absolute;
    bottom: 35%;
    width: 600px;
    height: 800px;
    background: linear-gradient(0deg, rgba(255, 243, 230, 0.08), transparent 70%);
    transform-origin: bottom center;
    filter: blur(20px);
    opacity: 0.6;
}

.sky-spotlight-1 {
    left: 20%;
    animation: spotlightSweep1 8s ease-in-out infinite;
}

.sky-spotlight-2 {
    right: 20%;
    animation: spotlightSweep2 10s ease-in-out infinite;
}

@keyframes spotlightSweep1 {
    0%, 100% { transform: rotate(-15deg); opacity: 0.4; }
    50% { transform: rotate(15deg); opacity: 0.7; }
}

@keyframes spotlightSweep2 {
    0%, 100% { transform: rotate(20deg); opacity: 0.5; }
    50% { transform: rotate(-10deg); opacity: 0.7; }
}

/* Approaching car headlights */
.entrance-cars {
    position: absolute;
    bottom: 15%;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    overflow: hidden;
}

.car-headlights {
    position: absolute;
    bottom: 0;
    width: 200px;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(255, 243, 230, 0.4), transparent 70%);
    filter: blur(8px);
}

.car-headlights-1 {
    animation: carApproach1 12s linear infinite;
}

.car-headlights-2 {
    animation: carApproach2 18s linear infinite;
    animation-delay: 6s;
}

@keyframes carApproach1 {
    0% { left: -200px; opacity: 0; }
    10% { opacity: 0.6; }
    50% { opacity: 0.8; }
    90% { opacity: 0.4; }
    100% { left: 110%; opacity: 0; }
}

@keyframes carApproach2 {
    0% { left: -200px; opacity: 0; }
    10% { opacity: 0.5; }
    50% { opacity: 0.7; }
    90% { opacity: 0.3; }
    100% { left: 110%; opacity: 0; }
}

/* Warm interior glow */
.entrance-glow {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 243, 230, 0.18), transparent 70%);
    border-radius: 50%;
    animation: entranceGlowPulse 4s var(--ease-cinematic) infinite;
    z-index: 3;
}

@keyframes entranceGlowPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.8; transform: translateX(-50%) scale(1.1); }
}

/* Building architecture */
.entrance-architecture {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

/* Glass facade building */
.venue-building {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    max-width: 900px;
    height: 50vh;
    max-height: 500px;
    background: linear-gradient(180deg,
        rgba(20, 10, 25, 0.9) 0%,
        rgba(15, 8, 20, 0.95) 100%);
    border: 1px solid rgba(255, 243, 230, 0.15);
    border-radius: 4px;
    z-index: 1;
    overflow: hidden;
    box-shadow:
        0 0 80px rgba(255, 243, 230, 0.1),
        inset 0 0 40px rgba(0, 0, 0, 0.5);
}

/* Building windows — warm lit interior */
.building-windows {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent 0px,
            transparent 40px,
            rgba(255, 243, 230, 0.08) 40px,
            rgba(255, 243, 230, 0.08) 80px),
        repeating-linear-gradient(90deg,
            transparent 0px,
            transparent 60px,
            rgba(255, 243, 230, 0.06) 60px,
            rgba(255, 243, 230, 0.06) 120px);
}

.building-window {
    position: absolute;
    width: 50px;
    height: 60px;
    background: rgba(255, 243, 230, 0.3);
    box-shadow: 0 0 15px rgba(255, 243, 230, 0.4);
    animation: windowFlicker 4s ease-in-out infinite;
}

@keyframes windowFlicker {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Glass reflection sweep */
.building-glass-reflection {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg,
        transparent 30%,
        rgba(255, 255, 255, 0.04) 50%,
        transparent 70%);
    animation: glassReflection 8s ease-in-out infinite;
}

@keyframes glassReflection {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* Columns */
.venue-columns {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: clamp(80px, 15vw, 200px);
    z-index: 2;
}

.venue-column {
    width: clamp(20px, 3vw, 40px);
    height: clamp(200px, 35vh, 400px);
    background: linear-gradient(180deg,
        rgba(40, 20, 45, 0.9) 0%,
        rgba(25, 13, 35, 0.95) 100%);
    border: 1px solid rgba(255, 243, 230, 0.1);
    border-radius: 2px;
    box-shadow:
        0 0 20px rgba(0, 0, 0, 0.5),
        inset 2px 0 4px rgba(255, 255, 255, 0.05);
}

/* Branded banner */
.venue-banner {
    position: absolute;
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 2rem;
    background: rgba(10, 5, 15, 0.8);
    border: 1px solid var(--border-subtle);
    border-radius: 2px;
    z-index: 3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner-text {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    white-space: nowrap;
}

.banner-logo-img {
    height: 1.6em;
    width: auto;
    vertical-align: -0.4em;
}

/* Logo sign */
.facade-top-sign {
    position: relative;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1em;
    margin-bottom: 0.5rem;
    z-index: 5;
}

.facade-logo-img {
    width: clamp(180px, 30vw, 340px);
    height: auto;
    filter:
        drop-shadow(0 0 40px rgba(255, 243, 230, 0.6))
        drop-shadow(0 0 80px rgba(255, 243, 230, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 40px rgba(255, 243, 230, 0.6)) drop-shadow(0 0 80px rgba(255, 243, 230, 0.3)); }
    50% { filter: drop-shadow(0 0 60px rgba(255, 243, 230, 0.8)) drop-shadow(0 0 120px rgba(255, 243, 230, 0.4)); }
}

.facade-tagline {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

/* Luxury entrance doors */
.entrance-doors {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 4px;
    margin: 2rem auto;
    width: fit-content;
    z-index: 5;
}

.door {
    width: 70px;
    height: 200px;
    background: linear-gradient(180deg,
        rgba(255, 243, 230, 0.25),
        rgba(255, 243, 230, 0.08) 50%,
        rgba(255, 243, 230, 0.15));
    border: 1px solid var(--border-medium);
    border-radius: 35px 35px 0 0;
    position: relative;
    transition: transform 0.7s var(--ease-cinematic);
    box-shadow:
        0 0 20px rgba(255, 243, 230, 0.15),
        inset 0 0 20px rgba(255, 243, 230, 0.05);
    overflow: hidden;
}

.door-glass {
    position: absolute;
    inset: 10px 8px 30px 8px;
    background: linear-gradient(180deg,
        rgba(255, 243, 230, 0.1),
        rgba(255, 243, 230, 0.05));
    border-radius: 25px 25px 0 0;
}

.door-handle {
    position: absolute;
    top: 50%;
    width: 4px;
    height: 20px;
    background: var(--accent-gold);
    border-radius: 2px;
    box-shadow: 0 0 8px var(--accent-gold);
}

.door-left .door-handle {
    right: 6px;
}

.door-right .door-handle {
    left: 6px;
}

.door-frame-top {
    position: absolute;
    top: -8px;
    left: -10px;
    right: -10px;
    height: 8px;
    background: linear-gradient(180deg, rgba(255, 243, 230, 0.3), transparent);
    border-radius: 4px 4px 0 0;
}

.scene-entrance.doors-open .door-left {
    transform: translateX(-50px) rotateY(-50deg);
}

.scene-entrance.doors-open .door-right {
    transform: translateX(50px) rotateY(50deg);
}

/* Welcome text */
.entrance-welcome {
    margin-top: 2rem;
    position: relative;
    z-index: 5;
}

.entrance-tagline {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 400;
    font-style: normal;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.entrance-title {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--milk);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.entrance-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 2rem;
}

.enter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.enter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gold);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-smooth);
    z-index: -1;
}

.enter-btn:hover {
    color: var(--bg-deep);
}

.enter-btn:hover::before {
    transform: translateX(0);
}

.enter-btn-arrow {
    transition: transform 0.4s var(--ease-smooth);
}

.enter-btn:hover .enter-btn-arrow {
    transform: translateX(4px);
}

/* Wet ground with reflections */
.entrance-ground {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9));
    z-index: 4;
    overflow: hidden;
}

.ground-reflection {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(255, 243, 230, 0.08) 0%,
        transparent 60%);
    filter: blur(10px);
}

/* Landscaping */
.entrance-landscape {
    position: absolute;
    bottom: 25%;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 3;
}

.landscape-planter {
    position: absolute;
    bottom: 0;
    width: 15%;
    height: 100%;
    background: linear-gradient(180deg,
        rgba(30, 15, 35, 0.4),
        rgba(15, 8, 20, 0.6));
    border-radius: 50% 50% 0 0;
    filter: blur(2px);
}

.landscape-planter-left {
    left: 5%;
}

.landscape-planter-right {
    right: 5%;
}

/* ═════════════════════════════════════════════════════════════════
   SCENE 1 — CENTRAL EXHIBITION HALL
   A premium exhibition space with LED walls, spotlights, depth
   ═════════════════════════════════════════════════════════════════ */
.scene-hall {
    display: block;
    background: var(--bg-deep);
    padding: 0;
    overflow: hidden;
}

/* ── THE GROUNDS — 3D tented courtyard (hall3d.js) ── */
.hall3d-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
    touch-action: none;
}

.hall3d-canvas:active {
    cursor: grabbing;
}

.hall3d-canvas.is-hovering-tent {
    cursor: pointer;
}

.hall3d-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, rgba(13, 6, 16, 0) 45%, rgba(13, 6, 16, 0.55) 100%),
        linear-gradient(180deg, rgba(13, 6, 16, 0.55) 0%, rgba(13, 6, 16, 0) 14%, rgba(13, 6, 16, 0) 80%, rgba(13, 6, 16, 0.6) 100%);
    box-shadow: inset 0 0 220px 40px rgba(13, 6, 16, 0.55);
}

.hall3d-loading {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-deep);
    transition: opacity 0.8s var(--ease-cinematic), visibility 0.8s;
}

.hall3d-loading.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hall3d-loading-amp {
    font-family: var(--font-amp);
    font-size: 1.4rem;
    color: var(--accent-gold);
}

.hall3d-brandmark {
    position: absolute;
    top: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
    font-family: var(--font-display);
    font-size: 0.85rem;
    color: var(--text-secondary);
    pointer-events: none;
    text-shadow: 0 2px 20px rgba(13, 6, 16, 0.8);
}

.hall3d-logo-img {
    width: 130px;
    height: auto;
    opacity: 0.9;
}

.hall3d-brandmark-sub {
    margin-top: 0.35rem;
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ── FIRST-PERSON WALK CONTROLS ── */
.walk-joystick {
    position: absolute;
    left: 28px;
    bottom: 88px;
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: rgba(255, 243, 230, 0.07);
    border: 1px solid rgba(255, 243, 230, 0.28);
    z-index: 6;
    touch-action: none;
    backdrop-filter: blur(4px);
    pointer-events: none;
}

.walk-joystick-nub {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    margin-left: -22px;
    margin-top: -22px;
    border-radius: 50%;
    background: rgba(255, 243, 230, 0.32);
    border: 1px solid rgba(255, 243, 230, 0.55);
    pointer-events: none;
}

.walk-enter-btn {
    position: absolute;
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%) translateY(10px);
    z-index: 7;
    padding: 0.9rem 2.2rem;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
    border: 1px solid var(--accent-gold);
    color: var(--milk);
    font-family: var(--font-display);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 999px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-cinematic), transform 0.3s var(--ease-cinematic);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 0 0 20px rgba(139, 58, 106, 0.35);
    white-space: nowrap;
}

.walk-enter-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.walk-enter-btn:hover {
    background: linear-gradient(135deg, var(--plum-bright) 0%, var(--plum) 100%);
}

@media (max-width: 768px) {
    .walk-enter-btn {
        bottom: 22%;
        font-size: 11px;
        padding: 0.8rem 1.8rem;
    }
}

.exhibit-booth-proxies {
    display: none;
}

/* Ceiling with lighting rig */
.hall-ceiling {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(180deg,
        rgba(10, 5, 15, 1) 0%,
        rgba(20, 10, 25, 0.9) 40%,
        rgba(26, 13, 35, 0.6) 70%,
        transparent 100%);
    z-index: 1;
}

.hall-ceiling::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        transparent 10%,
        rgba(255, 243, 230, 0.3) 30%,
        rgba(255, 243, 230, 0.5) 50%,
        rgba(255, 243, 230, 0.3) 70%,
        transparent 90%);
    box-shadow: 0 0 20px rgba(255, 243, 230, 0.3);
}

/* Ceiling light beams */
.hall-ceiling::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-top: 300px solid rgba(255, 243, 230, 0.04);
    opacity: 0.5;
}

/* Reflective floor */
.hall-floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(0deg,
        rgba(10, 5, 15, 1) 0%,
        rgba(20, 10, 25, 0.8) 40%,
        rgba(26, 13, 35, 0.4) 70%,
        transparent 100%);
    z-index: 1;
}

.hall-floor::before {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.4;
    box-shadow: 0 0 10px rgba(255, 243, 230, 0.2);
}

/* Floor grid pattern */
.hall-floor::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 243, 230, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 243, 230, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center bottom;
    transform: perspective(300px) rotateX(60deg);
    transform-origin: center bottom;
    opacity: 0.5;
}

/* Back wall with LED ambient lighting */
.hall-back-wall {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(139, 58, 106, 0.18), transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 243, 230, 0.1), transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(255, 243, 230, 0.05), transparent 60%);
    z-index: 0;
}

/* Moving hall spotlights */
.hall-back-wall::before,
.hall-back-wall::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 600px;
    background: linear-gradient(0deg, rgba(255, 243, 230, 0.06), transparent 70%);
    transform-origin: bottom center;
    filter: blur(30px);
    pointer-events: none;
}

.hall-back-wall::before {
    left: 10%;
    bottom: 20%;
    animation: hallSpotlight1 12s ease-in-out infinite;
}

.hall-back-wall::after {
    right: 10%;
    bottom: 20%;
    animation: hallSpotlight2 14s ease-in-out infinite;
}

@keyframes hallSpotlight1 {
    0%, 100% { transform: rotate(-20deg); opacity: 0.3; }
    50% { transform: rotate(15deg); opacity: 0.6; }
}

@keyframes hallSpotlight2 {
    0%, 100% { transform: rotate(25deg); opacity: 0.4; }
    50% { transform: rotate(-15deg); opacity: 0.6; }
}

/* Hall signage */
.hall-signage {
    position: relative;
    z-index: 5;
    text-align: center;
    margin-bottom: 3rem;
    animation: signageFloat 6s var(--ease-cinematic) infinite;
}

@keyframes signageFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.signage-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.05em;
}

.signage-amp {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 300;
    color: var(--accent-gold);
    text-shadow:
        0 0 30px rgba(255, 243, 230, 0.4),
        0 0 60px rgba(255, 243, 230, 0.2);
}

.signage-main {
    font-family: var(--font-mono);
    font-size: clamp(16px, 3vw, 28px);
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--text-primary);
}

.signage-sub {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 28px);
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 0.3rem;
}

.signage-hint {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

/* ═════════════════════════════════════════════════════════════════
   EXHIBITION HALL — 3D Physical Booth Structures
   ═════════════════════════════════════════════════════════════════ */

/* Hall walls */
.hall-left-wall,
.hall-right-wall {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
    z-index: 1;
    border: 1px solid rgba(255, 243, 230, 0.06);
}

.hall-left-wall { left: 0; }
.hall-right-wall { right: 0; }

/* Central aisle */
.hall-aisle {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 40%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 243, 230, 0.03) 50%, rgba(255, 243, 230, 0.06) 100%);
    z-index: 1;
    pointer-events: none;
}

.hall-aisle-runner {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 30%;
    height: 100%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 40px,
        rgba(255, 243, 230, 0.04) 40px,
        rgba(255, 243, 230, 0.04) 42px
    );
    z-index: 1;
    pointer-events: none;
}

/* Hall entrance arch */
.hall-entrance-arch {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 30%;
    border: 2px solid rgba(255, 243, 230, 0.1);
    border-bottom: none;
    border-radius: 50% 50% 0 0;
    z-index: 2;
    pointer-events: none;
    box-shadow: 0 0 40px rgba(139, 58, 106, 0.2);
}

/* Light beams from ceiling */
.hall-lightbeam {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 243, 230, 0.06), transparent 70%);
    z-index: 2;
    pointer-events: none;
    filter: blur(20px);
    transform-origin: top center;
}

.beam-1 { left: 20%; animation: beamSway 8s ease-in-out infinite; }
.beam-2 { left: 50%; transform: translateX(-50%); animation: beamSway 10s ease-in-out infinite 2s; }
.beam-3 { left: 70%; animation: beamSway 7s ease-in-out infinite 4s; }

@keyframes beamSway {
    0%, 100% { transform: rotate(-2deg); opacity: 0.5; }
    50% { transform: rotate(2deg); opacity: 0.8; }
}

/* ═════════════════════════════════════════════════════════════════
   EXHIBIT BOOTH — 3D Physical Structure
   ═════════════════════════════════════════════════════════════════ */
.exhibit-booth {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(calc(-50% + var(--booth-x)), calc(-50% + var(--booth-z)));
    width: 220px;
    height: 280px;
    z-index: 10;
    cursor: pointer;
    perspective: 800px;
    transform-style: preserve-3d;
    transition: transform 0.5s var(--ease-cinematic), filter 0.5s var(--ease-smooth);
}

.exhibit-booth:hover {
    transform: translate(calc(-50% + var(--booth-x)), calc(-50% + var(--booth-z))) translateZ(20px);
    z-index: 15;
}

/* Back wall */
.exhibit-backwall {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(30, 15, 35, 0.95) 0%,
        rgba(15, 8, 20, 0.98) 100%);
    border: 1px solid rgba(255, 243, 230, 0.12);
    border-radius: 4px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.exhibit-backwall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 243, 230, 0.3), transparent);
}

/* Side walls (3D depth effect) */
.exhibit-sidewall-left,
.exhibit-sidewall-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
    border: 1px solid rgba(255, 243, 230, 0.08);
}

.exhibit-sidewall-left {
    right: 100%;
    transform-origin: right center;
    transform: rotateY(90deg);
    border-right: none;
}

.exhibit-sidewall-right {
    left: 100%;
    transform-origin: left center;
    transform: rotateY(-90deg);
    border-left: none;
}

/* Roof */
.exhibit-roof {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(180deg, var(--plum) 0%, var(--plum-deep) 100%);
    border: 1px solid rgba(255, 243, 230, 0.1);
    border-bottom: none;
    transform-origin: bottom center;
    transform: rotateX(-90deg);
}

/* Floor */
.exhibit-floor {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 10px;
    background: var(--plum-dark);
    transform-origin: top center;
    transform: rotateX(90deg);
    opacity: 0.6;
}

/* LED strip at top of booth */
.exhibit-led-strip {
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 243, 230, 0.5),
        rgba(255, 243, 230, 0.8),
        rgba(255, 243, 230, 0.5),
        transparent);
    box-shadow: 0 0 12px rgba(255, 243, 230, 0.4);
    z-index: 2;
    animation: ledPulse 3s ease-in-out infinite;
}

@keyframes ledPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Booth signage */
.exhibit-sign {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: baseline;
    gap: 2px;
    z-index: 3;
    white-space: nowrap;
}

.exhibit-sign-amp {
    font-family: var(--font-amp);
    font-size: 28px;
    color: var(--milk);
    text-shadow: 0 0 20px rgba(255, 243, 230, 0.5);
}

.exhibit-sign-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--milk);
    text-shadow: 0 0 15px rgba(255, 243, 230, 0.3);
}

/* Booth tagline */
.exhibit-tagline {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--milk-muted);
    white-space: nowrap;
    z-index: 3;
}

/* Booth glow on hover */
.exhibit-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(139, 58, 106, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
    z-index: -1;
    pointer-events: none;
}

.exhibit-booth:hover .exhibit-glow {
    opacity: 1;
}

/* Enter hint */
.exhibit-enter-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-glow);
    opacity: 0;
    transition: all 0.4s var(--ease-smooth);
    z-index: 3;
    white-space: nowrap;
}

.exhibit-booth:hover .exhibit-enter-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* Interior glow (warm light from inside) */
.exhibit-interior-glow {
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 40%;
    background: linear-gradient(0deg, rgba(255, 243, 230, 0.08), transparent);
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 4px 4px;
}

/* ═════════════════════════════════════════════════════════════════
   HALL CENTERPIECE
   ═════════════════════════════════════════════════════════════════ */
.hall-centerpiece {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    text-align: center;
    pointer-events: none;
}

.centerpiece-pillar {
    width: 4px;
    height: 120px;
    background: linear-gradient(180deg, transparent, var(--plum-glow), transparent);
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(139, 58, 106, 0.3);
}

.centerpiece-logo {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
}

.cp-amp {
    font-family: var(--font-amp);
    font-size: 36px;
    color: var(--milk);
    text-shadow: 0 0 30px rgba(255, 243, 230, 0.5);
}

.cp-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--milk);
    text-shadow: 0 0 20px rgba(255, 243, 230, 0.3);
}

.centerpiece-tagline {
    font-family: var(--font-display);
    font-size: 12px;
    font-style: italic;
    color: var(--milk-muted);
    margin-top: 8px;
    letter-spacing: 0.1em;
}

/* Booth entry prompt */
.booth-prompt {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-bright) 100%);
    border: 1px solid var(--plum-glow);
    padding: 14px 32px;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--milk);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-cinematic);
    box-shadow: 0 0 40px rgba(139, 58, 106, 0.5);
    white-space: nowrap;
    pointer-events: none;
}

.booth-prompt.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.booth-prompt:hover {
    background: linear-gradient(135deg, var(--plum-bright) 0%, var(--plum-glow) 100%);
    box-shadow: 0 0 60px rgba(139, 58, 106, 0.8);
    transform: translateX(-50%) translateY(-2px);
}

.booth-prompt strong {
    font-weight: 600;
    color: var(--milk);
}

.booth-prompt::after {
    content: ' →';
    font-family: var(--font-display);
    transition: transform 0.3s var(--ease-smooth);
}

.booth-prompt:hover::after {
    transform: translateX(4px);
}

/* Hall nav hint */
.hall-nav-hint {
    position: absolute;
    bottom: 4.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    z-index: 5;
    pointer-events: none;
}

.hint-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: hintPulse 2s var(--ease-cinematic) infinite;
    box-shadow: 0 0 8px var(--accent-gold);
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH INTERIORS — Shared styles
   ═════════════════════════════════════════════════════════════════ */
.scene-booth {
    background: var(--bg-deep);
}

.booth-room {
    position: relative;
    min-height: 100vh;
    padding: 5rem 2rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.room-ambient {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse, rgba(255, 243, 230, 0.08), transparent 70%);
    pointer-events: none;
}

.room-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 5;
}

.room-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.room-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

.room-subtitle {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 22px);
    font-style: italic;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.room-content {
    position: relative;
    z-index: 5;
}

/* Exit button */
.exit-booth-btn {
    position: fixed;
    top: 4.25rem;
    left: 2rem;
    z-index: 160;
    padding: 0.7rem 1.4rem;
    background: rgba(56, 25, 50, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--milk);
    border-radius: 8px;
    color: var(--milk);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 243, 230, 0.08);
    transition: all 0.3s var(--ease-smooth);
}

.exit-booth-btn:hover {
    background: var(--milk);
    border-color: var(--milk);
    color: var(--plum-deep);
    transform: translateX(-4px);
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH: STORY PAVILION
   ═════════════════════════════════════════════════════════════════ */
.story-wall {
    max-width: 700px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
}

.story-wall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--accent-gold);
}

.story-wall-accent {
    background: linear-gradient(135deg, rgba(139, 58, 106, 0.15), rgba(20, 10, 25, 0.6));
    border-color: rgba(139, 58, 106, 0.3);
}

.wall-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 1.2rem;
    text-align: center;
}

.wall-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.wall-text.emphatic {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    color: var(--text-primary);
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin-top: 1.5rem;
}

.story-stat-row {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
}

/* Letter suffixes (e.g. the "s" in "1000s") added by the counter
   animation — sized down relative to whichever numeral it's next to. */
.stat-suffix {
    font-size: 0.5em;
    font-weight: 500;
    vertical-align: baseline;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.5rem;
    max-width: 140px;
}

.story-quote {
    max-width: 700px;
    margin: 3rem auto;
    text-align: center;
    padding: 2.5rem;
    position: relative;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -1rem;
}

.story-quote p {
    font-family: var(--font-display);
    font-size: clamp(20px, 3.5vw, 28px);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
}

.quote-attr {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ═════════════════════════════════════════════════════════════════
    BOOTH: SERVICES — Expandable Cards
    ═════════════════════════════════════════════════════════════════ */
.service-expand-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-expand-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.5s var(--ease-cinematic);
    position: relative;
    overflow: hidden;
}

.service-expand-card:hover {
    border-color: var(--border-medium);
    transform: translateX(6px);
}

.service-expand-card.open {
    border-color: var(--accent-gold);
    box-shadow: 0 0 30px rgba(255, 243, 230, 0.08);
}

.service-expand-card .se-icon {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-gold);
    letter-spacing: 0.15em;
    margin-bottom: 0.3rem;
}

.service-expand-card .se-header {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-right: 2rem;
}

.service-expand-card .se-name {
    font-family: var(--font-display);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 500;
    color: var(--text-primary);
}

.service-expand-card .se-brief {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.service-expand-card .se-expand-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    color: var(--accent-gold);
    font-size: 16px;
    font-weight: 300;
    transition: all 0.4s var(--ease-smooth);
}

.service-expand-card.open .se-expand-icon {
    transform: rotate(45deg);
    background: var(--accent-gold);
    color: var(--bg-deep);
    border-color: var(--accent-gold);
}

.service-expand-card .se-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease-cinematic), opacity 0.5s var(--ease-smooth);
    opacity: 0;
}

.service-expand-card.open .se-detail {
    max-height: 800px;
    opacity: 1;
}

.se-detail-inner {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
    margin-top: 1rem;
}

.se-detail-intro {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.se-detail-phases {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.se-phase {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.se-phase-icon {
    font-size: 14px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.se-phase-content {
    flex: 1;
}

.se-phase-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

.se-phase-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.se-detail-stat {
    padding: 1rem 1.2rem;
    background: rgba(255, 243, 230, 0.05);
    border-left: 2px solid var(--accent-gold);
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.se-stat-num {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--accent-gold);
}

/* ═════════════════════════════════════════════════════════════════
    BOOTH: SERVICES GALLERY
    ═════════════════════════════════════════════════════════════════ */
.service-display {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.5s var(--ease-cinematic);
}

.service-display:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-display-visual {
    border-radius: 12px;
    overflow: hidden;
    min-height: 280px;
}

.service-visual-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.service-visual-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
}

.service-visual-icon {
    font-size: 4rem;
    z-index: 2;
    transition: transform 0.5s var(--ease-cinematic);
}

.service-display:hover .service-visual-icon {
    transform: scale(1.2);
}

.service-display-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.meta-item {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.meta-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH: EXPERIENCE THEATRE
   ═════════════════════════════════════════════════════════════════ */
.project-room {
    margin-bottom: 4rem;
    border-radius: 16px;
    overflow: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.project-hero {
    height: 300px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    cursor: pointer;
    overflow: hidden;
}

.project-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent 60%);
}

.project-hero-overlay {
    position: relative;
    z-index: 2;
}

.project-hero-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.project-hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
}

.project-hero-client {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.project-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: all 0.4s var(--ease-smooth);
    z-index: 3;
}

.project-hero:hover .project-play {
    background: var(--accent-gold);
    color: var(--bg-deep);
    transform: translate(-50%, -50%) scale(1.1);
}

.project-body {
    padding: 2.5rem;
}

.project-section {
    margin-bottom: 2rem;
}

.project-section-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.project-section p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.project-card {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.project-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-2px);
}

.project-card h5 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.project-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.project-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.metric {
    text-align: center;
}

.metric-num {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
}

.metric-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

.project-quote {
    padding: 2rem;
    border-left: 3px solid var(--accent-gold);
    background: rgba(255, 243, 230, 0.05);
    border-radius: 0 12px 12px 0;
    margin-top: 1.5rem;
}

.project-quote p {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.8rem;
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH: FOUNDER STUDIO
   ═════════════════════════════════════════════════════════════════ */
.founder-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.5s var(--ease-cinematic);
}

.founder-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.founder-portrait {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    /* Grid items stretch to fill the row by default, and the bio-text
       column is often much taller than the photo — without this, the
       portrait box stretches to match it, the image gets zoomed in to
       cover that oversized box, and the dark bottom-gradient over the
       stretched area reads as a blank gap. Keep the portrait at its own
       natural aspect-ratio height instead. */
    align-self: start;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-cinematic);
    filter: grayscale(20%);
}

.founder-card:hover .founder-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.founder-portrait-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.6));
    pointer-events: none;
}

.founder-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-name {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.founder-role {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.founder-bio {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.founder-quote {
    margin: 1.5rem 0;
    padding: 1.2rem 1.5rem;
    border-left: 2px solid var(--accent-gold);
    background: rgba(255, 243, 230, 0.05);
}

.founder-quote p {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 20px);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
}

.founder-values {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.value-tag {
    padding: 0.4rem 1rem;
    background: rgba(255, 243, 230, 0.1);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* Founder timeline */
.founder-timeline {
    margin-top: 4rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.timeline-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.timeline-track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-track::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--accent-gold), transparent);
}

.timeline-point {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
}

.timeline-point::before {
    content: '';
    position: absolute;
    left: 55px;
    top: 6px;
    width: 11px;
    height: 11px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--accent-gold);
}

.timeline-year {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    text-align: right;
    padding-right: 1rem;
}

.timeline-event {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    padding-left: 1.5rem;
}

/* ═════════════════════════════════════════════════════════════════
   FOUNDER STUDIO — Additional sections
   ═════════════════════════════════════════════════════════════════ */

/* Mission & Vision */
.founder-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mv-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(139, 58, 106, 0.15), rgba(20, 10, 25, 0.6));
    border: 1px solid rgba(139, 58, 106, 0.3);
    border-radius: 16px;
    text-align: center;
    transition: all 0.5s var(--ease-cinematic);
}

.mv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mv-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.mv-title {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 500;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.mv-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Company Philosophy */
.founder-philosophy {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.philosophy-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.philosophy-pillar {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.4s var(--ease-smooth);
}

.philosophy-pillar:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.pillar-num {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent-gold);
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.pillar-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.pillar-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Achievements */
.founder-achievements {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.achievements-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.achievement-item:hover {
    border-color: var(--border-medium);
    transform: translateX(4px);
}

.achievement-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.achievement-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* Animated Quote Wall */
.quote-wall {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 243, 230, 0.08), rgba(20, 20, 35, 0.6));
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
}

.quote-wall-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2rem;
}

.quote-wall-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.qw-item {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    position: relative;
    transition: all 0.4s var(--ease-cinematic);
}

.qw-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-family: var(--font-display);
    font-size: 50px;
    color: var(--accent-gold);
    opacity: 0.3;
    line-height: 1;
}

.qw-item:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.qw-text {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 20px);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 0.8rem;
    padding-top: 0.5rem;
}

.qw-attr {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
}

/* Booth CTA */
.booth-cta {
    margin: 3rem auto;
    max-width: 600px;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 243, 230, 0.1), rgba(83, 52, 131, 0.1));
    border: 1px solid var(--border-medium);
    border-radius: 16px;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--milk);
    color: var(--milk);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--milk);
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease-smooth);
    z-index: -1;
}

.cta-btn:hover {
    color: var(--bg-deep);
}

.cta-btn:hover::before {
    transform: translateX(0);
}

/* ═════════════════════════════════════════════════════════════════
   EXPERIENCE THEATRE — Additional sections
   ═════════════════════════════════════════════════════════════════ */

/* Behind the Scenes */
.behind-scenes {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.bs-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.8rem;
}

.bs-intro {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.bs-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s var(--ease-cinematic);
}

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

.bs-visual {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bs-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent 50%);
}

.bs-visual-icon {
    font-size: 2.5rem;
    z-index: 2;
    transition: transform 0.5s var(--ease-cinematic);
}

.bs-card:hover .bs-visual-icon {
    transform: scale(1.2);
}

.bs-card-body {
    padding: 1.2rem;
}

.bs-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.bs-card-text {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Project Gallery */
.project-gallery {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.pg-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 0.8rem;
}

.pg-intro {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.pg-item {
    height: 200px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--ease-cinematic);
}

.pg-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent 50%);
    z-index: 1;
}

.pg-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pg-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 2;
}

.pg-caption {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease-smooth);
}

.pg-item:hover .pg-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Interactive Timeline */
.interactive-timeline {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.it-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 2.5rem;
}

.it-track {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.it-track::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-gold), rgba(255, 243, 230, 0.2));
}

.it-point {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 1.5rem;
    align-items: start;
    position: relative;
}

.it-marker {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 2px solid var(--accent-gold);
    position: relative;
    z-index: 2;
    margin-top: 4px;
    transition: all 0.4s var(--ease-smooth);
}

.it-marker::after {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--accent-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.it-point:hover .it-marker {
    box-shadow: 0 0 15px var(--accent-gold);
    transform: scale(1.2);
}

.it-point:hover .it-marker::after {
    opacity: 1;
}

.it-content {
    padding-bottom: 0.5rem;
}

.it-date {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.3rem;
}

.it-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.it-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH: PROCESS STUDIO
   ═════════════════════════════════════════════════════════════════ */
.process-stage {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.5s var(--ease-cinematic);
    align-items: center;
}

.process-stage:hover {
    border-color: var(--border-medium);
    transform: translateX(8px);
}

.process-stage-num {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 300;
    color: var(--accent-gold);
    opacity: 0.4;
    line-height: 1;
    transition: opacity 0.4s var(--ease-smooth);
}

.process-stage:hover .process-stage-num {
    opacity: 1;
}

.process-stage-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.process-stage-desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.process-stage-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.psd-item {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.psd-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-right: 0.4rem;
}

.process-stage-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.psv-diagram {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    max-width: 300px;
}

.psv-node {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: all 0.3s var(--ease-smooth);
}

.psv-converge {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: rgba(255, 243, 230, 0.1);
}

.process-stage:hover .psv-node {
    transform: translateY(-2px);
}

.psv-arrow {
    color: var(--text-muted);
    font-size: 14px;
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH: INSIGHTS LIBRARY
   ═════════════════════════════════════════════════════════════════ */
.library-shelves {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.article-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 4px 12px 12px 4px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s var(--ease-cinematic);
    display: flex;
    min-height: 240px;
}

.article-card:hover {
    transform: translateY(-6px) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.article-spine {
    width: 8px;
    flex-shrink: 0;
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-topic {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--milk);
    margin-bottom: 0.8rem;
}

.article-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.article-preview {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
    flex: 1;
}

.article-read {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--milk);
    margin-top: 1rem;
    transition: transform 0.3s var(--ease-smooth);
}

.article-card:hover .article-read {
    transform: translateX(4px);
}

/* Article reader */
.article-reader {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-cinematic);
    padding: 2rem;
}

.article-reader.open {
    opacity: 1;
    visibility: visible;
}

.article-reader-inner {
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--bg-dark);
    border: 1px solid var(--border-medium);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.5s var(--ease-cinematic);
}

.article-reader.open .article-reader-inner {
    transform: scale(1);
}

.article-reader-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.article-reader-close:hover {
    background: var(--accent-warm);
    transform: rotate(90deg);
}

.article-reader-body h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.article-reader-body .article-topic {
    margin-bottom: 1.5rem;
}

.article-reader-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
}

.article-reader-body .article-pullquote {
    font-family: var(--font-display);
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    color: var(--milk);
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin: 1.5rem 0;
    text-align: center;
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH: BRAND SHOWCASE
   ═════════════════════════════════════════════════════════════════ */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.brand-card {
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s var(--ease-cinematic);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 243, 230, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease-smooth);
}

.brand-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--border-medium);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.brand-logo {
    font-family: var(--font-mono);
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: color 0.3s var(--ease-smooth);
}

.brand-card:hover .brand-logo {
    color: var(--accent-gold);
}

.brand-sector {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.brand-project {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.brand-expand {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease-smooth);
}

.brand-card:hover .brand-expand {
    opacity: 1;
    transform: translateY(0);
}

/* Brand story modal */
.brand-story-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-cinematic);
    padding: 2rem;
}

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

.brand-story-inner {
    max-width: 700px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    background: var(--bg-dark);
    border: 1px solid var(--border-medium);
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.5s var(--ease-cinematic);
}

.brand-story-modal.open .brand-story-inner {
    transform: scale(1);
}

.brand-story-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.brand-story-close:hover {
    background: var(--accent-warm);
    transform: rotate(90deg);
}

.brand-story-body h3 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.brand-story-body .brand-story-sector {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.brand-story-body p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.brand-story-body .story-section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH: TESTIMONIALS LOUNGE
   ═════════════════════════════════════════════════════════════════ */
.testimonials-wall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    position: relative;
    transition: all 0.5s var(--ease-cinematic);
}

.testimonial-card:hover {
    border-color: var(--border-medium);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: var(--font-display);
    font-size: 60px;
    color: var(--accent-gold);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
}

.testimonial-text {
    font-family: var(--font-display);
    font-size: clamp(16px, 2.5vw, 20px);
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.testimonial-name {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
}

.testimonial-role {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.tstat {
    text-align: center;
}

.tstat-num {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600;
    color: var(--accent-gold);
    line-height: 1;
}

.tstat-label {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH: CONTACT RECEPTION
   ═════════════════════════════════════════════════════════════════ */
.reception-desk {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.reception-greeting {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.reception-heading {
    font-family: var(--font-display);
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.reception-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.reception-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-input {
    padding: 0.8rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s var(--ease-smooth);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(0, 0, 0, 0.5);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23a8a4b8' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
    font-family: var(--font-body);
}

.form-submit {
    padding: 1rem 2rem;
    background: var(--accent-gold);
    border: none;
    border-radius: 8px;
    color: var(--bg-deep);
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: var(--accent-glow);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 243, 230, 0.3);
}

.form-success {
    display: none;
    padding: 1rem;
    background: rgba(255, 243, 230, 0.1);
    border: 1px solid rgba(255, 243, 230, 0.3);
    border-radius: 8px;
    color: #fff3e6;
    font-size: 13px;
    text-align: center;
}

.form-success.show {
    display: block;
    animation: successFade 0.5s var(--ease-smooth);
}

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

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

.info-block {
    padding: 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

.info-heading {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}

.info-text {
    font-size: 13px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.social-link {
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

.social-link:hover {
    color: var(--accent-gold);
}

.reception-map {
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.map-heading {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-visual {
    position: relative;
    height: 250px;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(139, 58, 106, 0.2), transparent 70%),
        linear-gradient(135deg, rgba(56, 25, 50, 0.3), rgba(26, 13, 35, 0.5));
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 243, 230, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 243, 230, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.map-pin::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-gold);
}

.pin-pulse {
    position: absolute;
    bottom: -2px;
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pinPulse 2s var(--ease-cinematic) infinite;
}

@keyframes pinPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3); opacity: 0; }
}

.map-pin {
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding-bottom: 18px;
}

.map-note {
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
    font-style: italic;
    font-family: var(--font-display);
}

/* ═════════════════════════════════════════════════════════════════
   VENUE HUD
   ═════════════════════════════════════════════════════════════════ */
.venue-hud {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    background: linear-gradient(180deg, rgba(10, 5, 15, 0.8), transparent);
    pointer-events: none;
    transition: opacity 0.5s var(--ease-smooth);
}

.venue-hud.hidden {
    opacity: 0;
}

.hud-brand {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    pointer-events: auto;
}

.hud-amp {
    color: var(--accent-gold);
    font-family: var(--font-display);
    font-size: 18px;
}

.hud-location {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    pointer-events: auto;
}

.hud-nav {
    pointer-events: auto;
}

.hud-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.hud-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH QUICK-JUMP BAR — click a name, land straight in that booth.
   Originally mobile-only; now shown on every screen size so desktop
   visitors who don't want to walk around the hall get the same
   shortcut. Still scrolls horizontally + centers itself if there's
   room, so it holds up at any width.
   ═════════════════════════════════════════════════════════════════ */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 160;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0;
    background: rgba(10, 5, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mobile-nav::-webkit-scrollbar {
    display: none;
}

.mobile-nav-btn {
    flex: 0 0 auto;
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

.mobile-nav-btn:hover,
.mobile-nav-btn.active {
    color: var(--accent-gold);
}

.mobile-nav-btn.active {
    border-bottom: 2px solid var(--accent-gold);
}

/* ═════════════════════════════════════════════════════════════════
   PROCESS STAGE BODY
   ═════════════════════════════════════════════════════════════════ */
.process-stage-body {
    display: contents;
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH-SPECIFIC SCENE IDENTIFIERS
   Each booth can have unique ambient coloring
   ═════════════════════════════════════════════════════════════════ */
.booth-story .room-ambient {
    background: radial-gradient(ellipse, rgba(255, 243, 230, 0.1), transparent 70%);
}

.booth-services .room-ambient {
    background: radial-gradient(ellipse, rgba(139, 58, 106, 0.12), transparent 70%);
}

.booth-experiences .room-ambient {
    background: radial-gradient(ellipse, rgba(255, 243, 230, 0.1), transparent 70%);
}

.booth-founders .room-ambient {
    background: radial-gradient(ellipse, rgba(255, 243, 230, 0.12), transparent 70%);
}

.booth-process .room-ambient {
    background: radial-gradient(ellipse, rgba(139, 58, 106, 0.1), transparent 70%);
}

.booth-insights .room-ambient {
    background: radial-gradient(ellipse, rgba(255, 243, 230, 0.08), transparent 70%);
}

.booth-brands .room-ambient {
    background: radial-gradient(ellipse, rgba(255, 243, 230, 0.08), transparent 70%);
}

.booth-testimonials .room-ambient {
    background: radial-gradient(ellipse, rgba(255, 243, 230, 0.1), transparent 70%);
}

.booth-contact .room-ambient {
    background: radial-gradient(ellipse, rgba(139, 58, 106, 0.1), transparent 70%);
}

/* ═════════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-cinematic), transform 0.8s var(--ease-cinematic);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ═════════════════════════════════════════════════════════════════
   SPOTLIGHT EFFECT
   ═════════════════════════════════════════════════════════════════ */
.spotlight {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 243, 230, 0.06), transparent 70%);
    pointer-events: none;
    z-index: 3;
    transition: opacity 0.5s var(--ease-smooth);
    mix-blend-mode: screen;
}

/* ═════════════════════════════════════════════════════════════════
   LOADING SCREEN IDs (for JS compatibility)
   ═════════════════════════════════════════════════════════════════ */
#loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1.2s var(--ease-cinematic), visibility 1.2s;
}

#loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

#loading-bar-fill {
    height: 100%;
    background: var(--accent-gold);
    width: 0;
    transition: width 0.3s var(--ease-smooth);
}

#loading-percent {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .booth-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .booth {
        min-height: 150px;
        padding: 1.4rem 1rem;
    }

    .booth-name {
        font-size: 1.1rem;
    }

    .service-display {
        grid-template-columns: 1fr;
    }

    .service-display-visual {
        min-height: 200px;
    }

    .founder-card {
        grid-template-columns: 220px 1fr;
        gap: 2rem;
    }

    .library-shelves {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .testimonials-wall {
        grid-template-columns: 1fr;
    }

    .reception-desk {
        grid-template-columns: 1fr;
    }

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

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

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

    .process-stage {
        grid-template-columns: 60px 1fr;
    }

    .process-stage-visual {
        display: none;
    }
}

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    /* This block used to switch .scene/.venue/body to a completely
       different layout model on mobile: normal document flow with
       height:0 -> auto instead of desktop's fixed-viewport absolute
       overlay with internal per-scene scrolling. That flow model is what
       caused a whole family of scroll bugs (scroll anchoring fighting
       scrollTo, stale window scroll position landing you mid-page on a
       blank stretch, multiple stuck-active scenes stacking as real
       vertical space instead of just overlapping). None of that can
       happen if mobile simply reuses the exact same model as desktop —
       so it now does. Only sizing/spacing should be overridden here,
       never position/overflow/height for these three selectors. */
    body {
        overflow-anchor: none;
    }

    .scene-entrance {
        min-height: 100vh;
    }

    .facade-logo-img {
        width: 160px;
    }

    .entrance-tagline {
        font-size: 30px;
    }

    .entrance-title {
        font-size: 13px;
    }

    .entrance-desc {
        font-size: 14px;
    }

    .booth-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .booth {
        min-height: 130px;
        padding: 1.2rem 0.8rem;
    }

    .booth-name {
        font-size: 1rem;
    }

    .booth-desc {
        font-size: 11px;
    }

    .booth-icon {
        font-size: 1.6rem;
    }

    .booth-room {
        padding: 5rem 1.2rem 6rem;
    }

    .room-title {
        font-size: 32px;
    }

    .room-subtitle {
        font-size: 16px;
    }

    .story-wall {
        padding: 1.5rem;
    }

    .wall-heading {
        font-size: 22px;
    }

    .wall-text {
        font-size: 14px;
    }

    .service-display {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 24px;
    }

    .founder-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .founder-portrait {
        max-width: 250px;
        margin: 0 auto;
    }

    .founder-name {
        font-size: 28px;
    }

    .founder-timeline {
        padding: 1.5rem;
    }

    .timeline-point {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .timeline-track::before {
        left: 40px;
    }

    .timeline-point::before {
        left: 35px;
    }

    .timeline-year {
        font-size: 12px;
    }

    .library-shelves {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .article-card {
        min-height: 200px;
    }

    .article-reader-inner,
    .brand-story-inner {
        padding: 2rem 1.5rem;
        max-height: 90vh;
    }

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

    .testimonials-wall {
        grid-template-columns: 1fr;
    }

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

    .reception-desk {
        padding: 1.5rem;
    }

    .reception-info {
        grid-template-columns: 1fr;
    }

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

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

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

    .project-body {
        padding: 1.5rem;
    }

    .process-stage {
        grid-template-columns: 50px 1fr;
        padding: 1.5rem;
        gap: 1rem;
    }

    .process-stage-num {
        font-size: 40px;
    }

    .process-stage-visual {
        display: none;
    }

    .venue-hud {
        padding: 1rem;
    }

    .hud-brand {
        font-size: 12px;
    }

    .hud-location {
        font-size: 10px;
    }

    .mobile-nav {
        display: flex;
    }

    .exit-booth-btn {
        top: 3.5rem;
        left: 1rem;
        font-size: 11px;
        padding: 0.55rem 1.1rem;
    }

    .hall-signage {
        margin-bottom: 2rem;
    }

    .signage-amp {
        font-size: 48px;
    }

    .signage-main {
        font-size: 18px;
    }

    .signage-sub {
        font-size: 16px;
    }

    .hall-nav-hint {
        display: none;
    }
}

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE
   ═════════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .booth-grid {
        grid-template-columns: 1fr;
    }

    .booth {
        min-height: 110px;
        padding: 1rem;
    }

    .facade-logo-img {
        width: 120px;
    }

    .entrance-tagline {
        font-size: 24px;
    }

    .entrance-title {
        font-size: 12px;
    }

    .room-title {
        font-size: 26px;
    }

    .loader-amp {
        font-size: 100px;
    }

    .loader-text {
        font-size: 16px;
        letter-spacing: 0.5em;
    }

    .project-metrics {
        grid-template-columns: 1fr;
    }

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

    .story-stat-row {
        flex-direction: column;
    }
}

/* ═════════════════════════════════════════════════════════════════
   UTILITY & MISC
   ═════════════════════════════════════════════════════════════════ */
.no-scroll {
    overflow: hidden !important;
}

.fade-in {
    animation: fadeIn 0.8s var(--ease-cinematic) forwards;
}

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

.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-in-delay-4 { animation-delay: 0.4s; opacity: 0; }
.fade-in-delay-5 { animation-delay: 0.5s; opacity: 0; }

/* Glass effect helper */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Text gradient */
.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ═════════════════════════════════════════════════════════════════
   &PEOPLE V2 — NEW COMPONENT STYLES
   Cinematic arrival · Living hall · Distinct booth architecture
   Strict plum/milk palette · Playfair Display + Pinyon Script only
   ═════════════════════════════════════════════════════════════════ */

/* ── ENTRANCE: RED CARPET ── */
.entrance-carpet {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(70vw, 1100px);
    height: 90%;
    background: linear-gradient(180deg,
        rgba(56, 25, 50, 0.0) 0%,
        rgba(56, 25, 50, 0.4) 8%,
        rgba(56, 25, 50, 0.85) 30%,
        rgba(56, 25, 50, 0.95) 60%,
        rgba(20, 10, 25, 0.98) 100%);
    z-index: 6;
    pointer-events: none;
    clip-path: polygon(35% 0%, 65% 0%, 95% 100%, 5% 100%);
}

.entrance-carpet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        transparent 30px,
        rgba(255, 243, 230, 0.04) 30px,
        rgba(255, 243, 230, 0.04) 60px
    );
}

.entrance-carpet::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background: linear-gradient(90deg, transparent, rgba(255, 243, 230, 0.6), transparent);
    box-shadow: 0 0 30px rgba(255, 243, 230, 0.4);
}

/* ── STANCHIONS + VELVET ROPES ── */
.stanchion {
    position: absolute;
    width: 14px;
    height: 80px;
    bottom: 22%;
    z-index: 7;
    pointer-events: none;
}

.stanchion::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: radial-gradient(circle at 35% 30%, #f5e6d3, #8a7a6a 60%, #4a3a2a);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 243, 230, 0.3);
}

.stanchion::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, #c0c0c0, #808080);
    border-radius: 2px;
}

.rope {
    position: absolute;
    height: 4px;
    background: linear-gradient(90deg, #8b3a6a, #5e2a4e, #8b3a6a);
    border-radius: 2px;
    z-index: 7;
    pointer-events: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.rope::before,
.rope::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(90deg, transparent 0px, transparent 4px, rgba(0,0,0,0.2) 4px, rgba(0,0,0,0.2) 6px);
    border-radius: 2px;
}

.rope-1 { left: 5%; bottom: 32%; width: 90%; }
.rope-2 { left: 8%; bottom: 28%; width: 84%; }
.rope-3 { left: 12%; bottom: 24%; width: 76%; }

/* Stanchion positions along ropes */
.stanchion-1 { left: 5%; }
.stanchion-2 { left: 50%; }
.stanchion-3 { right: 5%; }
.stanchion-4 { left: 12%; }
.stanchion-5 { right: 12%; }

/* ── LUXURY CARS (parked, glowing headlights) ── */
.luxury-car {
    position: absolute;
    bottom: 14%;
    z-index: 5;
    pointer-events: none;
    width: 200px;
    height: 80px;
}

.car-1 { left: 5%; }
.car-2 { right: 5%; }
.car-3 { left: 30%; bottom: 11%; opacity: 0.7; }

.luxury-car::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 38px;
    background: linear-gradient(180deg, #1a0a1f, #0a0510);
    border-radius: 12px 12px 6px 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

.luxury-car::after {
    content: '';
    position: absolute;
    bottom: 38px;
    left: 10%;
    right: 10%;
    height: 30px;
    background: linear-gradient(180deg, #0a0510, #1a0a1f);
    border-radius: 50% 50% 4px 4px / 80% 80% 4px 4px;
    box-shadow: inset 0 -2px 8px rgba(0,0,0,0.4);
}

.car-headlight {
    position: absolute;
    bottom: 12px;
    width: 30px;
    height: 14px;
    background: radial-gradient(ellipse, rgba(255, 243, 230, 1), rgba(255, 243, 230, 0.3) 50%, transparent 80%);
    border-radius: 50%;
    z-index: 6;
    filter: blur(0.5px);
    animation: carHeadlightPulse 4s ease-in-out infinite;
}

.car-1 .car-headlight { right: 8px; }
.car-2 .car-headlight { right: 8px; }
.car-3 .car-headlight { right: 8px; }

.car-tail-light {
    position: absolute;
    bottom: 12px;
    left: 8px;
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #8b3a6a, rgba(56, 25, 50, 0.4));
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(184, 90, 143, 0.6);
    z-index: 6;
}

@keyframes carHeadlightPulse {
    0%, 100% { opacity: 0.9; box-shadow: 0 0 30px rgba(255, 243, 230, 0.5); }
    50% { opacity: 1; box-shadow: 0 0 50px rgba(255, 243, 230, 0.8); }
}

.car-window {
    position: absolute;
    bottom: 50px;
    left: 22%;
    right: 22%;
    height: 16px;
    background: linear-gradient(180deg, rgba(56, 25, 50, 0.4), rgba(20, 10, 25, 0.7));
    border-radius: 4px 4px 0 0;
    z-index: 6;
}

/* ── PHOTOGRAPHERS + CAMERA FLASHES ── */
.photographer {
    position: absolute;
    bottom: 18%;
    z-index: 7;
    pointer-events: none;
}

.photographer-figure {
    position: relative;
    width: 24px;
    height: 50px;
}

.photographer-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 26px;
    background: linear-gradient(180deg, #0a0510, #1a0a1f);
    border-radius: 4px 4px 0 0;
}

.photographer-head {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 35% 30%, #c0a890, #5a4838);
    border-radius: 50%;
}

.photographer-camera {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 8px;
    background: #1a0a1f;
    border-radius: 2px;
}

.photographer-1 { left: 18%; }
.photographer-2 { right: 18%; bottom: 22%; }
.photographer-3 { left: 42%; bottom: 16%; }

/* Camera flash overlay */
.camera-flash {
    position: fixed;
    inset: 0;
    background: rgba(255, 243, 230, 0.9);
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
}

@keyframes cameraFlash {
    0% { opacity: 0; }
    10% { opacity: 0.7; }
    20% { opacity: 0.1; }
    30% { opacity: 0.4; }
    100% { opacity: 0; }
}

.camera-flash.flashing {
    animation: cameraFlash 0.4s ease-out;
}

/* ── WALKING GUESTS ── */
.walking-guest {
    position: absolute;
    bottom: 16%;
    z-index: 6;
    pointer-events: none;
    width: 16px;
    height: 40px;
    animation: guestWalk 8s linear infinite, guestBob 0.5s ease-in-out infinite;
}

.guest-1 { left: 25%; animation-delay: 0s; }
.guest-2 { left: 50%; animation-delay: 2s; bottom: 18%; }
.guest-3 { right: 25%; animation-delay: 4s; }
.guest-4 { left: 38%; animation-delay: 6s; bottom: 12%; }
.guest-5 { right: 38%; animation-delay: 1s; bottom: 14%; }

.guest-body {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 24px;
    background: linear-gradient(180deg, #1a0a1f, #0a0510);
    border-radius: 3px 3px 0 0;
}

.guest-head {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: radial-gradient(circle at 35% 30%, #d4b89c, #5a4030);
    border-radius: 50%;
}

@keyframes guestWalk {
    0% { transform: translateX(0); }
    50% { transform: translateX(60px); }
    100% { transform: translateX(0); }
}

@keyframes guestBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* ── AMBIENT FOG ── */
.entrance-fog {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 10, 25, 0.4) 60%, rgba(20, 10, 25, 0.7) 100%);
    z-index: 8;
    pointer-events: none;
}

.entrance-fog::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: radial-gradient(ellipse at 20% 80%, rgba(255, 243, 230, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 90%, rgba(255, 243, 230, 0.05) 0%, transparent 60%);
    animation: fogDrift 25s ease-in-out infinite;
}

@keyframes fogDrift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(40px); }
}

/* ── WATER FEATURE ── */
.water-feature {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: min(80vw, 800px);
    height: 24px;
    background: linear-gradient(90deg, transparent 0%, rgba(20, 10, 25, 0.6) 10%, rgba(20, 10, 25, 0.8) 50%, rgba(20, 10, 25, 0.6) 90%, transparent 100%);
    z-index: 5;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(56, 25, 50, 0.3);
}

.water-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 243, 230, 0.2) 0%, transparent 30%),
                radial-gradient(ellipse at 70% 50%, rgba(255, 243, 230, 0.15) 0%, transparent 30%);
    animation: waterShimmer 4s ease-in-out infinite;
}

@keyframes waterShimmer {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* ── WET GROUND REFLECTIONS ── */
.wet-reflections {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 25%;
    background: linear-gradient(180deg, transparent 0%, rgba(20, 10, 25, 0.5) 100%);
    z-index: 3;
    pointer-events: none;
}

.wet-reflections::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0px,
        rgba(255, 243, 230, 0.03) 8px,
        transparent 16px
    );
    animation: reflectionShift 12s linear infinite;
}

@keyframes reflectionShift {
    0% { transform: translateX(0); }
    100% { transform: translateX(-32px); }
}

/* ── LANTERNS along the carpet ── */
.lantern {
    position: absolute;
    width: 18px;
    height: 32px;
    z-index: 6;
    pointer-events: none;
}

.lantern::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 14px;
    background: linear-gradient(180deg, #2a2a2a, #1a1a1a);
}

.lantern::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 18px;
    background: radial-gradient(ellipse at center, rgba(255, 243, 230, 0.9), rgba(255, 243, 230, 0.4) 50%, rgba(139, 58, 106, 0.3));
    border-radius: 50% 50% 4px 4px;
    box-shadow: 0 0 24px rgba(255, 243, 230, 0.6), 0 0 50px rgba(255, 243, 230, 0.3);
    animation: lanternFlicker 3s ease-in-out infinite;
}

@keyframes lanternFlicker {
    0%, 100% { opacity: 0.85; }
    20% { opacity: 1; }
    40% { opacity: 0.7; }
    60% { opacity: 0.95; }
    80% { opacity: 0.8; }
}

.lantern-1 { left: 10%; bottom: 25%; }
.lantern-2 { left: 30%; bottom: 28%; }
.lantern-3 { right: 30%; bottom: 28%; }
.lantern-4 { right: 10%; bottom: 25%; }


/* ── REUSABLE &PEOPLE WORDMARK IMAGE ──
   Every "&People" mention on the site uses this exact cropped logo
   asset (andpeople-logo.png) so it always matches the reference mark
   pixel-for-pixel — sized in em units so it drops into a sentence at
   the same height as the surrounding text, or scales up for a hero
   heading. */
/* The source PNG is a full "an[P]eople" lockup where the tall P-flourish
   takes up the top ~55% of the canvas and the actual "an"/"eople"
   letters — the part that needs to read at the same size as body text —
   only occupy the bottom third. Sizing by the whole image's height alone
   under-sizes the readable text next to a line of copy, so this is
   scaled up further and pulled down so the word text (not the flourish)
   sits on the text baseline; the P is allowed to rise above the line,
   like a decorative initial. */
.brand-mark-img {
    height: 2.3em;
    width: auto;
    vertical-align: -0.33em;
}

/* ── ENTER BUTTON (glowing) ── */
.enter-button {
    position: relative;
    z-index: 10;
    padding: 22px 56px;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-bright) 100%);
    color: var(--milk);
    border: 1px solid var(--plum-glow);
    border-radius: 2px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(139, 58, 106, 0.5),
                0 0 60px rgba(139, 58, 106, 0.3),
                inset 0 0 20px rgba(255, 243, 230, 0.05);
    transition: all 0.4s var(--ease-cinematic);
}

.enter-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 243, 230, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-cinematic);
}

.enter-button:hover {
    background: linear-gradient(135deg, var(--plum-bright) 0%, var(--plum-glow) 100%);
    box-shadow: 0 0 40px rgba(139, 58, 106, 0.8),
                0 0 80px rgba(139, 58, 106, 0.5),
                inset 0 0 30px rgba(255, 243, 230, 0.1);
    transform: translateY(-2px);
}

.enter-button:hover::before {
    transform: translateX(100%);
}

/* ── SEARCHLIGHTS (sweeping sky) ── */
.sky-searchlight {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 243, 230, 0.4), rgba(255, 243, 230, 0.1) 50%, transparent);
    z-index: 2;
    pointer-events: none;
    transform-origin: 50% 0%;
    filter: blur(2px);
    mix-blend-mode: screen;
    animation: searchlightSweep 8s ease-in-out infinite;
}

.sky-searchlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 80vh;
    background: conic-gradient(from 270deg at 50% 0%,
        transparent 0deg,
        rgba(255, 243, 230, 0.05) 5deg,
        rgba(255, 243, 230, 0.15) 10deg,
        rgba(255, 243, 230, 0.05) 15deg,
        transparent 20deg);
    pointer-events: none;
    transform-origin: 50% 0%;
    animation: searchlightCone 8s ease-in-out infinite;
}

.searchlight-1 { left: 20%; animation-delay: 0s; }
.searchlight-2 { left: 50%; animation-delay: -2.5s; }
.searchlight-3 { left: 80%; animation-delay: -5s; }

@keyframes searchlightSweep {
    0%, 100% { transform: rotate(-15deg); }
    50% { transform: rotate(15deg); }
}

@keyframes searchlightCone {
    0%, 100% { transform: translateX(-50%) rotate(-15deg); opacity: 0.6; }
    50% { transform: translateX(-50%) rotate(15deg); opacity: 1; }
}

/* ── HALL: COFFEE LOUNGE ── */
.hall-lounge {
    position: absolute;
    bottom: 8%;
    left: 4%;
    width: 280px;
    height: 200px;
    z-index: 3;
    pointer-events: none;
}

.lounge-sofa {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 180px;
    height: 60px;
    background: linear-gradient(180deg, var(--plum-bright) 0%, var(--plum) 100%);
    border-radius: 30px 30px 8px 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5),
                inset 0 -8px 12px rgba(0,0,0,0.3);
}

.lounge-sofa::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -10px;
    right: -10px;
    height: 30px;
    background: var(--plum);
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.lounge-table {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 80px;
    height: 12px;
    background: linear-gradient(180deg, var(--milk-soft), var(--milk));
    border-radius: 4px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5);
}

.lounge-table::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 20px;
    background: var(--milk);
    box-shadow: 8px 0 var(--milk), -8px 0 var(--milk);
}

.lounge-cup {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background: var(--milk);
    border-radius: 50%;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,0.3);
}

/* ── HALL: PREMIUM SEATING CLUSTERS ── */
.seating-cluster {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.cluster-1 { bottom: 6%; right: 4%; }
.cluster-2 { bottom: 14%; left: 50%; transform: translateX(-50%); }

.seat-chair {
    position: absolute;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--plum-bright), var(--plum));
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}

.seat-chair::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--plum-glow);
    border-radius: 4px 4px 0 0;
}

.seat-1 { top: 0; left: 0; }
.seat-2 { top: 0; left: 50px; }
.seat-3 { top: 0; left: 100px; }

/* ── HALL: HANGING ART PIECES ── */
.hanging-art {
    position: absolute;
    top: 0;
    z-index: 2;
    pointer-events: none;
    width: 60px;
    height: 80px;
    transform-origin: 50% 0;
    animation: artSway 6s ease-in-out infinite;
}

.hanging-art::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent, var(--milk-faint));
}

.hanging-art::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--milk);
    border: 2px solid var(--plum-glow);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.art-1 { left: 15%; animation-delay: 0s; }
.art-2 { left: 35%; animation-delay: -2s; }
.art-3 { right: 15%; animation-delay: -4s; }
.art-4 { right: 35%; animation-delay: -1s; }

@keyframes artSway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

/* ── HALL: DYNAMIC LED WALL ── */
.led-wall {
    position: absolute;
    top: 30%;
    right: 4%;
    width: 200px;
    height: 100px;
    background: var(--plum-dark);
    border: 1px solid var(--plum-glow);
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(139, 58, 106, 0.4),
                inset 0 0 20px rgba(139, 58, 106, 0.2);
    animation: ledScan 3s linear infinite;
}

.led-wall::before {
    content: '&PEOPLE';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 0.2em;
    color: var(--milk);
    text-shadow: 0 0 10px var(--plum-glow);
    white-space: nowrap;
}

.led-wall::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 243, 230, 0.2), transparent);
    animation: ledScan 3s linear infinite;
}

@keyframes ledScan {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* ── HALL: DUST PARTICLES (in light beams) ── */
.hall-dust {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.dust-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--milk);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 4px rgba(255, 243, 230, 0.6);
    animation: dustDrift 20s linear infinite;
}

@keyframes dustDrift {
    0% { transform: translate(0, 0) scale(1); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translate(80px, -100px) scale(0.5); opacity: 0; }
}

/* ── HALL: NETWORKING GUESTS (clusters of 2-3) ── */
.network-cluster {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    width: 60px;
    height: 40px;
}

.network-guest {
    position: absolute;
    bottom: 0;
    width: 12px;
    height: 28px;
    animation: guestBob 0.6s ease-in-out infinite;
}

.network-guest::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 20px;
    background: linear-gradient(180deg, var(--plum-glow), var(--plum));
    border-radius: 3px 3px 0 0;
}

.network-guest::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle at 35% 30%, #c0a890, #4a3a2a);
    border-radius: 50%;
}

.network-cluster .ng-1 { left: 5px; animation-delay: 0s; }
.network-cluster .ng-2 { left: 25px; animation-delay: 0.2s; }
.network-cluster .ng-3 { left: 45px; animation-delay: 0.4s; }

.network-1 { top: 50%; left: 6%; }
.network-2 { top: 40%; right: 8%; }
.network-3 { top: 65%; left: 25%; }

/* ── BOOTH TOOLTIPS ── */
.booth-tooltip {
    position: fixed;
    z-index: 100;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
    color: var(--milk);
    padding: 10px 18px;
    border: 1px solid var(--plum-glow);
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s var(--ease-cinematic), transform 0.3s var(--ease-cinematic);
    box-shadow: 0 8px 24px rgba(0,0,0,0.6), 0 0 20px rgba(139, 58, 106, 0.3);
    white-space: nowrap;
}

.booth-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.booth-tooltip::before {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--plum-glow);
}

/* ── HUD MINIMAP ── */
.hud-minimap {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 160px;
    height: 160px;
    background: rgba(10, 5, 15, 0.85);
    border: 1px solid var(--plum-glow);
    border-radius: 50%;
    z-index: 50;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(139, 58, 106, 0.3), inset 0 0 20px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    overflow: hidden;
}

.minimap-svg {
    width: 100%;
    height: 100%;
}

.minimap-booth {
    fill: var(--plum-bright);
    stroke: var(--plum-glow);
    stroke-width: 0.5;
    transition: fill 0.3s ease, r 0.3s ease;
}

.minimap-booth.active {
    fill: var(--milk);
    filter: drop-shadow(0 0 4px var(--milk));
}

.minimap-you {
    fill: var(--milk);
    filter: drop-shadow(0 0 6px var(--milk));
    animation: minimapPulse 2s ease-in-out infinite;
}

.minimap-line {
    stroke: var(--plum-glow);
    stroke-width: 0.5;
    stroke-dasharray: 2 2;
    fill: none;
    opacity: 0.4;
}

@keyframes minimapPulse {
    0%, 100% { opacity: 1; r: 3; }
    50% { opacity: 0.6; r: 4; }
}

.minimap-label {
    fill: var(--milk-muted);
    font-family: var(--font-display);
    font-size: 4px;
    text-anchor: middle;
}

/* ── BOOTH PROXIMITY LIGHTING ── */
.booth {
    transition: filter 0.4s var(--ease-cinematic);
}

.booth.near {
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(139, 58, 106, 0.5));
}

.booth.near .booth-light {
    opacity: 1;
}

.booth.near .booth-top-led {
    box-shadow: 0 0 30px var(--plum-glow), 0 0 60px var(--plum-bright);
}

/* ── BOOTH-SPECIFIC ARCHITECTURE (8 distinct booths) ── */
.booth-about .booth-room {
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 243, 230, 0.08) 0%, transparent 60%),
                linear-gradient(180deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
}

.booth-services .booth-room {
    background: radial-gradient(ellipse at 50% 30%, rgba(139, 58, 106, 0.15) 0%, transparent 60%),
                linear-gradient(180deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
}

.booth-work .booth-room {
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 243, 230, 0.1) 0%, transparent 60%),
                linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
}

.booth-cases .booth-room {
    background: radial-gradient(ellipse at 50% 30%, rgba(139, 58, 106, 0.12) 0%, transparent 60%),
                linear-gradient(180deg, var(--plum-dark) 0%, var(--plum-deep) 100%);
}

.booth-process .booth-room {
    background: linear-gradient(180deg, var(--plum-dark) 0%, var(--plum-deep) 100%);
    background-image:
        linear-gradient(90deg, transparent 49%, rgba(255, 243, 230, 0.03) 50%, transparent 51%),
        linear-gradient(180deg, var(--plum-dark) 0%, var(--plum-deep) 100%);
}

.booth-founder .booth-room {
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 243, 230, 0.12) 0%, transparent 70%),
                linear-gradient(135deg, var(--plum-dark) 0%, var(--plum-deep) 100%);
}

.booth-insights .booth-room {
    background: linear-gradient(180deg, var(--plum-dark) 0%, var(--plum-deep) 100%);
    background-image:
        radial-gradient(ellipse at 20% 30%, rgba(255, 243, 230, 0.05) 0%, transparent 30%),
        radial-gradient(ellipse at 80% 70%, rgba(255, 243, 230, 0.05) 0%, transparent 30%),
        linear-gradient(180deg, var(--plum-dark) 0%, var(--plum-deep) 100%);
}

.booth-contact .booth-room {
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 243, 230, 0.1) 0%, transparent 60%),
                linear-gradient(180deg, var(--plum-deep) 0%, var(--plum-dark) 100%);
}

/* ── ABOUT BOOTH: STORY WALL (curved feel) ── */
.story-wall {
    position: relative;
    width: 100%;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(56, 25, 50, 0.4) 0%, rgba(20, 10, 25, 0.6) 100%);
    border: 1px solid var(--plum-glow);
    border-radius: 2px;
    margin: 40px 0;
    box-shadow: 0 0 40px rgba(139, 58, 106, 0.2),
                inset 0 0 40px rgba(0,0,0,0.3);
}

.story-wall::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--milk), transparent);
    box-shadow: 0 0 20px var(--milk);
}

.story-quote {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 32px);
    font-style: italic;
    color: var(--milk);
    text-align: center;
    line-height: 1.5;
    margin: 30px 0;
    text-shadow: 0 0 20px rgba(255, 243, 230, 0.2);
}

.story-timeline {
    position: relative;
    margin: 40px 0;
    padding: 20px 0;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--plum-glow), var(--milk), var(--plum-glow), transparent);
    transform: translateY(-50%);
}

.timeline-node {
    position: relative;
    display: inline-block;
    width: 30%;
    text-align: center;
    vertical-align: top;
    padding: 0 20px;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--milk);
    border: 2px solid var(--plum-glow);
    border-radius: 50%;
    margin: 30px auto 16px;
    box-shadow: 0 0 20px var(--milk);
    animation: timelineDotPulse 3s ease-in-out infinite;
}

@keyframes timelineDotPulse {
    0%, 100% { box-shadow: 0 0 20px var(--milk); }
    50% { box-shadow: 0 0 40px var(--milk), 0 0 60px var(--plum-glow); }
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--plum-glow);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.timeline-event {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--milk-soft);
    line-height: 1.6;
}

/* ── ACHIEVEMENTS TICKER ── */
.achievements-ticker {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.achievement-tile {
    padding: 24px 18px;
    background: linear-gradient(135deg, rgba(56, 25, 50, 0.5) 0%, rgba(20, 10, 25, 0.5) 100%);
    border: 1px solid var(--plum-glow);
    text-align: center;
    transition: all 0.3s var(--ease-cinematic);
}

.achievement-tile:hover {
    background: linear-gradient(135deg, rgba(94, 42, 78, 0.6) 0%, rgba(56, 25, 50, 0.6) 100%);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px rgba(139, 58, 106, 0.3);
}

.achievement-num {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    color: var(--milk);
    line-height: 1;
    text-shadow: 0 0 20px rgba(255, 243, 230, 0.3);
}

.achievement-label {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--milk-soft);
    margin-top: 8px;
}

/* ── CONTACT BOOTH: RECEPTION DESK ── */
.reception-desk {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 60px 40px;
    background: linear-gradient(180deg, var(--plum) 0%, var(--plum-deep) 100%);
    border: 1px solid var(--plum-glow);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(139, 58, 106, 0.2);
    position: relative;
}

.reception-desk::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--milk), transparent);
    box-shadow: 0 0 20px var(--milk);
}

.reception-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
}

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

.reception-form .form-textarea {
    grid-column: 1 / -1;
    min-height: 120px;
    padding: 14px 16px;
    background: rgba(10, 5, 15, 0.6);
    border: 1px solid var(--plum-glow);
    color: var(--milk);
    font-family: var(--font-display);
    font-size: 14px;
    resize: vertical;
    transition: all 0.3s ease;
}

.reception-form .form-textarea:focus {
    outline: none;
    border-color: var(--milk);
    box-shadow: 0 0 20px rgba(139, 58, 106, 0.3);
}

.reception-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.reception-info-tile {
    text-align: center;
    padding: 24px 16px;
    background: rgba(20, 10, 25, 0.4);
    border: 1px solid var(--border-subtle);
}

.reception-info-tile .icon {
    font-size: 28px;
    color: var(--plum-glow);
    margin-bottom: 12px;
    display: block;
}

.reception-info-tile .label {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--milk-muted);
    margin-bottom: 6px;
}

.reception-info-tile .value {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--milk);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--plum-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--milk);
    font-family: var(--font-display);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s var(--ease-cinematic);
}

.social-link:hover {
    background: var(--plum);
    box-shadow: 0 0 20px rgba(139, 58, 106, 0.5);
    transform: translateY(-2px);
}

/* ── WORK BOOTH: PROJECT GALLERY ── */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.project-room {
    background: linear-gradient(180deg, rgba(20, 10, 25, 0.8) 0%, rgba(10, 5, 15, 0.9) 100%);
    border: 1px solid var(--plum-glow);
    overflow: hidden;
    transition: all 0.4s var(--ease-cinematic);
    cursor: pointer;
}

.project-room:hover {
    border-color: var(--milk);
    box-shadow: 0 0 30px rgba(139, 58, 106, 0.4);
    transform: translateY(-4px);
}

.project-hero {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 243, 230, 0.1) 0%, transparent 60%);
    animation: projectHeroGlow 6s ease-in-out infinite;
}

@keyframes projectHeroGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 1; }
}

.project-hero .project-name {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.5vw, 36px);
    color: var(--milk);
    letter-spacing: 0.3em;
    text-align: center;
    z-index: 2;
    text-shadow: 0 0 30px rgba(255, 243, 230, 0.4);
}

.project-body {
    padding: 24px;
}

.project-sector {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--plum-glow);
    margin-bottom: 8px;
}

.project-blurb {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--milk-soft);
    line-height: 1.6;
}

/* ── BOOTH SHELL PATTERN (used for the 5 partial booths) ── */
.booth-shell {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    text-align: center;
}

.booth-shell-eyebrow {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--plum-glow);
    margin-bottom: 20px;
}

.booth-shell-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 400;
    color: var(--milk);
    margin-bottom: 24px;
    text-shadow: 0 0 30px rgba(255, 243, 230, 0.2);
}

.booth-shell-lede {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--milk-soft);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.booth-shell-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.booth-shell-feature {
    padding: 24px 18px;
    background: linear-gradient(180deg, rgba(20, 10, 25, 0.6) 0%, rgba(10, 5, 15, 0.6) 100%);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s var(--ease-cinematic);
}

.booth-shell-feature:hover {
    border-color: var(--plum-glow);
    background: linear-gradient(180deg, rgba(56, 25, 50, 0.4) 0%, rgba(20, 10, 25, 0.6) 100%);
    transform: translateY(-4px);
}

.booth-shell-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    border: 1px solid var(--plum-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--milk);
}

.booth-shell-feature-name {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--milk);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.booth-shell-feature-desc {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--milk-muted);
    line-height: 1.5;
}

.booth-shell-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--plum-glow), transparent);
    margin: 50px auto;
    box-shadow: 0 0 20px var(--plum-glow);
}

.booth-shell-note {
    margin-top: 50px;
    padding: 20px 30px;
    background: rgba(20, 10, 25, 0.4);
    border-left: 2px solid var(--plum-glow);
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--milk-muted);
    letter-spacing: 0.1em;
    font-style: italic;
}

/* ── HALL: PATHWAY ILLUMINATION ── */
.hall-pathway {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(90vw, 1200px);
    height: 50%;
    background: radial-gradient(ellipse at 50% 100%, rgba(139, 58, 106, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

/* ── BOOTH CARD ENHANCEMENTS ── */
.booth {
    position: relative;
    padding: 24px 20px;
    background: linear-gradient(180deg, rgba(20, 10, 25, 0.7) 0%, rgba(10, 5, 15, 0.85) 100%);
    border: 1px solid var(--plum-glow);
    cursor: pointer;
    transition: all 0.4s var(--ease-cinematic);
    overflow: hidden;
    text-align: center;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.booth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--milk), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-cinematic);
}

.booth:hover {
    background: linear-gradient(180deg, rgba(56, 25, 50, 0.6) 0%, rgba(20, 10, 25, 0.8) 100%);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 30px rgba(139, 58, 106, 0.3);
    transform: translateY(-4px);
}

.booth:hover::before {
    transform: translateX(0);
}

.booth-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--milk);
    letter-spacing: 0.1em;
    margin: 12px 0 6px;
    text-transform: uppercase;
}

.booth-desc {
    font-family: var(--font-display);
    font-size: 12px;
    color: var(--milk-muted);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
    line-height: 1.4;
}

.booth-enter {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--plum-glow);
    margin-top: auto;
    padding-top: 8px;
}

/* ── RESPONSIVE: New components ── */
@media (max-width: 768px) {
    .entrance-carpet {
        width: 90vw;
    }

    .luxury-car {
        width: 120px;
        height: 50px;
    }

    .luxury-car::before {
        height: 24px;
    }

    .luxury-car::after {
        bottom: 24px;
        height: 18px;
    }

    .car-window {
        bottom: 30px;
        height: 12px;
    }

    .photographer-figure {
        transform: scale(0.8);
    }

    .walking-guest {
        transform: scale(0.8);
    }

    .lantern {
        transform: scale(0.8);
    }

    .hall-lounge {
        width: 180px;
        height: 140px;
        bottom: 5%;
    }

    .lounge-sofa {
        width: 120px;
        height: 40px;
    }

    .lounge-table {
        width: 50px;
    }

    .led-wall {
        width: 120px;
        height: 60px;
        top: 20%;
    }

    .hanging-art {
        width: 40px;
        height: 60px;
    }

    .hanging-art::after {
        width: 32px;
        height: 32px;
    }

    .hud-minimap {
        width: 110px;
        height: 110px;
        bottom: 16px;
        right: 16px;
    }

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

    .achievements-ticker {
        grid-template-columns: 1fr 1fr;
    }

    .story-timeline .timeline-node {
        width: 100%;
        display: block;
        margin: 20px 0;
    }

    .timeline-track {
        display: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* ═════════════════════════════════════════════════════════════════════════
   VISUAL ENHANCEMENT LAYER
   Premium materials, cinematic lighting, depth & atmosphere.
   Adds visual polish only — no layout, navigation, or JS-driven
   functionality is touched. Brand colours (plum #381932 / milk #FFF3E6)
   are preserved; metallic accents stay desaturated and low-opacity so
   the palette still reads as plum & milk, never "bright".
   ═════════════════════════════════════════════════════════════════════════ */

:root {
    /* Muted metallic accent — brushed brass / champagne, kept subtle */
    --brass: rgba(196, 164, 116, 0.55);
    --brass-soft: rgba(196, 164, 116, 0.28);
    --brass-line: rgba(196, 164, 116, 0.65);

    /* Material gradients */
    --glass-panel: linear-gradient(155deg,
        rgba(255, 243, 230, 0.07) 0%,
        rgba(255, 243, 230, 0.02) 35%,
        rgba(56, 25, 50, 0.15) 70%,
        rgba(255, 243, 230, 0.05) 100%);
    --marble-panel: linear-gradient(170deg,
        rgba(255, 243, 230, 0.05) 0%,
        rgba(31, 13, 27, 0.9) 25%,
        rgba(13, 6, 16, 0.96) 70%,
        rgba(56, 25, 50, 0.25) 100%);

    /* Bloom / cinematic light shadows */
    --bloom-soft: 0 0 60px rgba(255, 243, 230, 0.12), 0 0 140px rgba(139, 58, 106, 0.12);
    --bloom-strong: 0 0 90px rgba(255, 243, 230, 0.22), 0 0 200px rgba(139, 58, 106, 0.18);
    --depth-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.4);

    --ease-luxury: cubic-bezier(0.19, 1, 0.22, 1);
}

/* ── Fine film-grain, laid over everything, very low opacity ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ── Global depth: soften every glass surface into a real "material" ── */
.story-wall,
.founder-card,
.venue-banner,
.exit-booth-btn,
.reception-desk,
.reception-info-tile {
    background-image: var(--glass-panel);
    background-blend-mode: overlay;
    box-shadow: var(--bloom-soft), inset 0 1px 0 rgba(255, 243, 230, 0.08);
}

/* ══ LOGO — floating glass-and-brass installation ══ */
.facade-logo-img,
.banner-logo-img,
.brand-mark-img,
.founder-logo-img {
    filter:
        drop-shadow(0 0 2px rgba(196, 164, 116, 0.6))
        drop-shadow(0 0 40px rgba(255, 243, 230, 0.55))
        drop-shadow(0 0 90px rgba(139, 58, 106, 0.35));
}

.facade-logo-img {
    animation: logoBreathe 6s var(--ease-luxury) infinite;
    transform-origin: center bottom;
}

@keyframes logoBreathe {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(196, 164, 116, 0.55)) drop-shadow(0 0 40px rgba(255, 243, 230, 0.5)) drop-shadow(0 0 90px rgba(139, 58, 106, 0.3));
        transform: translateY(0);
    }
    50% {
        filter: drop-shadow(0 0 3px rgba(196, 164, 116, 0.75)) drop-shadow(0 0 65px rgba(255, 243, 230, 0.7)) drop-shadow(0 0 130px rgba(139, 58, 106, 0.45));
        transform: translateY(-3px);
    }
}

.loader-amp {
    filter: drop-shadow(0 0 24px rgba(255, 243, 230, 0.6)) drop-shadow(0 0 60px rgba(139, 58, 106, 0.4));
}

/* ══ BUILDING EXTERIOR — glass, marble & brushed-brass framing ══ */
.venue-building {
    background-image: var(--marble-panel);
    background-blend-mode: overlay;
    border: 1px solid var(--brass-soft);
    box-shadow:
        var(--bloom-strong),
        inset 0 0 60px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 243, 230, 0.1);
}

.building-windows {
    background-blend-mode: screen;
    box-shadow: inset 0 0 120px rgba(255, 243, 230, 0.05);
}

/* Brass mullions between window panes */
.venue-building::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(90deg, var(--brass-soft) 0px, transparent 1.5px, transparent 118px),
        repeating-linear-gradient(0deg, var(--brass-soft) 0px, transparent 1.5px, transparent 78px);
    opacity: 0.5;
    pointer-events: none;
}

.venue-column {
    background-image:
        linear-gradient(90deg, rgba(255,243,230,0.12), transparent 30%, transparent 70%, rgba(255,243,230,0.12)),
        linear-gradient(180deg, rgba(40, 20, 45, 0.9) 0%, rgba(25, 13, 35, 0.95) 100%);
    box-shadow:
        0 0 30px rgba(0, 0, 0, 0.55),
        inset 2px 0 6px rgba(255, 255, 255, 0.06),
        inset -2px 0 6px rgba(0, 0, 0, 0.4);
}

.venue-banner {
    border-color: var(--brass-soft);
    box-shadow: var(--bloom-soft);
}

/* ══ ENTRANCE DOORS — deeper glass, warm light spill ══ */
.door {
    background-image:
        linear-gradient(135deg, rgba(255,255,255,0.06) 10%, transparent 30%),
        linear-gradient(180deg, rgba(255, 243, 230, 0.25), rgba(255, 243, 230, 0.08) 50%, rgba(255, 243, 230, 0.15));
    border-color: var(--brass-soft);
    box-shadow:
        0 0 30px rgba(255, 243, 230, 0.18),
        inset 0 0 24px rgba(255, 243, 230, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.door-handle {
    background: linear-gradient(180deg, #e9d3ab, var(--brass));
    box-shadow: 0 0 10px var(--brass);
}

.scene-entrance.doors-open .door-left,
.scene-entrance.doors-open .door-right {
    box-shadow: var(--bloom-strong);
}

/* Reflective marble entrance floor */
.entrance-carpet::before,
.entrance-carpet::after {
    filter: saturate(1.05);
}

/* ══ TYPOGRAPHY — magazine-grade spacing & hierarchy ══ */
.room-title {
    letter-spacing: 0.01em;
    line-height: 1.05;
    text-shadow: 0 2px 40px rgba(255, 243, 230, 0.15);
}

.room-tag {
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--brass-soft);
    display: inline-block;
}

.room-subtitle {
    letter-spacing: 0.01em;
}

.wall-heading {
    letter-spacing: 0.015em;
    position: relative;
}

.wall-text {
    letter-spacing: 0.005em;
}

.entrance-tagline {
    text-shadow: 0 4px 60px rgba(255, 243, 230, 0.2);
}

/* ══ FOUNDER SECTION — exhibition-piece treatment ══ */
.founder-card {
    border-color: var(--brass-soft);
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass-line), transparent);
}

.founder-card:hover {
    border-color: var(--brass);
    box-shadow: var(--bloom-strong), 0 20px 60px rgba(0, 0, 0, 0.45);
}

.founder-portrait {
    box-shadow: inset 0 0 0 1px rgba(255, 243, 230, 0.08);
}

.founder-portrait-glow {
    background:
        linear-gradient(180deg, rgba(255,243,230,0.08) 0%, transparent 25%, transparent 60%, rgba(0, 0, 0, 0.65) 100%);
}

.founder-role {
    letter-spacing: 0.18em;
}

.founder-quote {
    border-left-color: var(--brass);
    background: linear-gradient(90deg, rgba(196, 164, 116, 0.08), transparent);
}

.value-tag {
    border-color: var(--brass-soft);
    transition: border-color 0.3s var(--ease-smooth), background 0.3s var(--ease-smooth);
}

.value-tag:hover {
    border-color: var(--brass);
    background: rgba(196, 164, 116, 0.1);
}

/* ══ PER-BOOTH ATMOSPHERE — every room gets its own light & tint ══ */
.booth-room { isolation: isolate; }

.booth-room::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.7;
}

.booth-about .booth-room::after {
    background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 243, 230, 0.07), transparent 70%);
}
.booth-services .booth-room::after {
    background: radial-gradient(ellipse 70% 35% at 20% 10%, rgba(139, 58, 106, 0.12), transparent 70%);
}
.booth-work .booth-room::after {
    background: radial-gradient(ellipse 70% 35% at 80% 10%, rgba(196, 164, 116, 0.08), transparent 70%);
}
.booth-cases .booth-room::after {
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(184, 90, 143, 0.1), transparent 70%);
}
.booth-process .booth-room::after {
    background: radial-gradient(ellipse 70% 35% at 20% 100%, rgba(255, 243, 230, 0.06), transparent 70%);
}
.booth-founder .booth-room::after {
    background: radial-gradient(ellipse 70% 40% at 50% 0%, rgba(196, 164, 116, 0.1), transparent 70%);
}
.booth-insights .booth-room::after {
    background: radial-gradient(ellipse 60% 35% at 80% 100%, rgba(139, 58, 106, 0.1), transparent 70%);
}
.booth-contact .booth-room::after {
    background: radial-gradient(ellipse 70% 45% at 50% 50%, rgba(255, 243, 230, 0.08), transparent 70%);
}

.booth-room > * { position: relative; z-index: 1; }

/* ══ AMBIENT LIFE — slow drifting dust & fog, GPU-friendly ══ */
.ambient-particles::before,
.ambient-particles::after {
    content: '';
    position: fixed;
    inset: -10%;
    pointer-events: none;
    background-image:
        radial-gradient(1.5px 1.5px at 15% 25%, rgba(255,243,230,0.35), transparent),
        radial-gradient(1px 1px at 70% 60%, rgba(255,243,230,0.25), transparent),
        radial-gradient(1.5px 1.5px at 40% 80%, rgba(255,243,230,0.3), transparent),
        radial-gradient(1px 1px at 85% 15%, rgba(255,243,230,0.2), transparent),
        radial-gradient(1.5px 1.5px at 55% 40%, rgba(255,243,230,0.25), transparent);
    animation: dustDrift 40s linear infinite;
    will-change: transform;
    opacity: 0.5;
}

.ambient-particles::after {
    animation-duration: 65s;
    animation-direction: reverse;
    opacity: 0.3;
}

@keyframes dustDrift {
    0% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-1.5%, -2%, 0); }
    100% { transform: translate3d(0, 0, 0); }
}

/* Soft moving fog band behind the entrance architecture */
.entrance-architecture::before {
    content: '';
    position: absolute;
    left: -20%;
    right: -20%;
    bottom: 10%;
    height: 140px;
    background: linear-gradient(90deg, transparent, rgba(255, 243, 230, 0.05), transparent);
    filter: blur(20px);
    animation: fogDrift 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes fogDrift {
    0%, 100% { transform: translateX(-5%); opacity: 0.6; }
    50% { transform: translateX(5%); opacity: 1; }
}

/* ══ MOTION POLISH — consistent cinematic easing on interactive elements ══ */
.enter-button,
.cta-btn,
.hud-btn,
.exit-booth-btn,
.value-tag,
.social-link {
    transition-timing-function: var(--ease-luxury);
}

.enter-button:hover,
.cta-btn:hover {
    box-shadow: var(--bloom-soft);
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce) {
    .facade-logo-img,
    .ambient-particles::before,
    .ambient-particles::after,
    .entrance-architecture::before {
        animation: none !important;
    }
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH STAGE — the &People exhibition hero
   A luxury illuminated stage motif that opens every booth interior:
   suspended sign + truss rig, layered arch panels, a glowing circular
   core carrying the booth's own title, planters and a tiered podium.
   Pure CSS/markup — no images beyond the existing brand logo.
   ═════════════════════════════════════════════════════════════════ */
.booth-stage {
    position: relative;
    max-width: 760px;
    margin: 0 auto 3.5rem;
    padding: 2.5rem 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* -- suspended sign board, brand logo -- */
.stage-sign {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.75rem;
    background: linear-gradient(180deg, var(--plum-bright), var(--plum));
    border: 1px solid var(--brass-soft);
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: -12px;
}

.stage-sign-logo {
    height: 18px;
    width: auto;
    display: block;
    opacity: 0.95;
}

/* -- black truss rig, either side of the sign -- */
.stage-truss {
    position: absolute;
    top: 4px;
    width: 108px;
    height: 66px;
    z-index: 3;
    opacity: 0.45;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(115deg, rgba(10, 6, 10, 0.95) 0 2.5px, transparent 2.5px 13px),
        repeating-linear-gradient(65deg, rgba(10, 6, 10, 0.95) 0 2.5px, transparent 2.5px 13px);
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
            mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
}
.stage-truss-l { left: 8%; transform: rotate(-11deg); }
.stage-truss-r { right: 8%; transform: rotate(11deg) scaleX(-1); }
.stage-truss::after {
    content: '';
    position: absolute;
    top: 0; left: 4px;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--milk);
    box-shadow: 0 0 8px var(--milk), 0 0 2px var(--milk);
}

/* -- main composition row -- */
.stage-composition {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top: 1.9rem;
    z-index: 1;
}

.stage-composition::before {
    content: '';
    position: absolute;
    top: 46%;
    left: 50%;
    width: min(520px, 88vw);
    height: min(340px, 60vw);
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(255, 243, 230, 0.14), transparent 72%);
    z-index: 0;
    pointer-events: none;
}

/* layered arch / petal panels, alternating plum + milk */
.stage-panels {
    position: relative;
    display: flex;
    align-items: flex-end;
    z-index: 1;
}
.stage-panels-r { transform: scaleX(-1); }

.sp {
    position: relative;
    display: block;
    margin-left: -22px;
    border: 1.5px solid var(--brass-soft);
    box-shadow: inset 0 0 24px rgba(255, 243, 230, 0.05);
    border-radius: 50% 50% 45% 45% / 62% 62% 38% 38%;
}
.stage-panels .sp:first-child { margin-left: 0; }

.sp-a {
    width: 74px; height: 235px;
    background: linear-gradient(180deg, var(--plum-bright), var(--plum) 70%);
}
.sp-b {
    width: 58px; height: 188px;
    background: linear-gradient(180deg, var(--milk), #f0dcc4 78%);
    border-color: rgba(56, 25, 50, 0.35);
}
.sp-c {
    width: 44px; height: 146px;
    background: linear-gradient(180deg, var(--plum-glow), var(--plum) 78%);
}

/* small vertical brand line on the outer left panel */
.stage-panels-l .sp-a::after {
    content: 'People First — Always';
    position: absolute;
    bottom: 16px;
    left: 50%;
    width: max-content;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center;
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--milk-soft);
    white-space: nowrap;
}

/* ampersand medallion */
.stage-amp {
    position: absolute;
    top: 14px;
    right: -4px;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: var(--plum);
    border: 1.5px solid var(--milk-faint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-amp);
    font-size: 28px;
    color: var(--milk);
    z-index: 2;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* -- circular illuminated core (extends .room-header) -- */
.stage-core {
    position: relative;
    z-index: 2;
    width: min(360px, 62vw);
    height: min(360px, 62vw);
    border-radius: 50%;
    background: radial-gradient(circle at 50% 38%, var(--plum-bright), var(--plum) 62%, var(--plum-deep) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.75rem;
    margin: 0 -0.25rem 0;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.45),
        inset 0 0 50px rgba(0, 0, 0, 0.25);
}

.stage-ring {
    position: absolute;
    inset: -13px;
    border-radius: 50%;
    background: repeating-conic-gradient(var(--milk) 0deg 3.2deg, transparent 3.2deg 15deg);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 calc(100% - 10px) calc(100% - 3px), transparent calc(100% - 2px));
            mask: radial-gradient(farthest-side, transparent calc(100% - 11px), #000 calc(100% - 10px) calc(100% - 3px), transparent calc(100% - 2px));
    filter: drop-shadow(0 0 7px rgba(255, 243, 230, 0.5));
    animation: stageBulbGlow 3.4s ease-in-out infinite;
}

@keyframes stageBulbGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.stage-core.room-header { margin-bottom: 0; }
.stage-core .room-tag { color: var(--milk-soft); border-bottom-color: var(--milk-faint); }
.stage-core .room-title { font-size: clamp(27px, 4.4vw, 42px); }
.stage-core .room-subtitle {
    font-size: clamp(12px, 1.6vw, 14px);
    font-style: normal;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--milk-muted);
    max-width: 240px;
}

/* -- planters, either side of the composition -- */
.stage-plants {
    position: absolute;
    bottom: 66px;
    width: 58px;
    height: 84px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.9;
}
.stage-plants-l { left: 1%; }
.stage-plants-r { right: 1%; transform: scaleX(-1); }
.stage-plants::before,
.stage-plants::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 3px;
    height: 68px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--plum-glow), var(--plum));
    transform-origin: bottom center;
}
.stage-plants::before { left: 18px; transform: rotate(-20deg); }
.stage-plants::after  { left: 36px; transform: rotate(15deg); height: 52px; }

/* -- tiered podium -- */
.stage-podium {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 1.85rem;
    z-index: 1;
}
.stage-podium span {
    display: block;
    background: linear-gradient(180deg, var(--milk), #ecd7bd);
    border: 1px solid var(--brass-soft);
    border-radius: 3px;
}
.stage-podium span:nth-child(1) { width: 260px; height: 8px; }
.stage-podium span:nth-child(2) { width: 198px; height: 8px; }
.stage-podium span:nth-child(3) { width: 138px; height: 8px; }

/* -- responsive: simplify to the core stage on small screens -- */
@media (max-width: 640px) {
    .stage-sign,
    .stage-truss,
    .stage-panels,
    .stage-amp,
    .stage-plants {
        display: none;
    }
    .booth-stage { padding-top: 0.5rem; margin-bottom: 2.5rem; }
    .stage-core { width: min(260px, 70vw); height: min(260px, 70vw); padding: 1.5rem 1.25rem; }
    .stage-podium span:nth-child(1) { width: 190px; }
    .stage-podium span:nth-child(2) { width: 145px; }
    .stage-podium span:nth-child(3) { width: 100px; }
}

@media (prefers-reduced-motion: reduce) {
    .stage-ring { animation: none !important; }
}

/* ═════════════════════════════════════════════════════════════════
   BOOTH 09 — UPCOMING EVENTS
   ═════════════════════════════════════════════════════════════════ */
.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.event-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.5s var(--ease-cinematic);
}

.event-card:hover {
    transform: translateY(-6px);
    border-color: var(--brass-soft);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.event-date {
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, var(--plum-bright), var(--plum) 70%);
    border: 1px solid var(--brass-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-day {
    font-family: var(--font-display);
    font-size: 19px;
    line-height: 1;
    color: var(--milk);
}

.event-month {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--milk-muted);
    margin-top: 3px;
}

.event-body { flex: 1; }

.event-tag {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.event-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.25;
    margin-bottom: 0.5rem;
}

.event-desc {
    font-size: 12.5px;
    line-height: 1.6;
    color: var(--text-secondary);
}

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

@media (max-width: 480px) {
    .event-card { flex-direction: column; align-items: flex-start; }
}
