        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html, body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            background-color: #000000;
            color: #ffffff;
            overflow: hidden;
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
        }

        /* --- Lenis disabled for single-page 3D room mode --- */
        ::-webkit-scrollbar { display: none; }

        /* Sections Setup */
        section {
            width: 100vw;
            height: 100vh;
            position: relative;
            overflow: hidden;
            will-change: transform, filter; 
        }
        
        /* --- 3D Parallax Decorations --- */
        .parallax-bg {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
        .p-light { background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%); }
        .p-dark { background: radial-gradient(circle, rgba(255,255,255,0.02) 0%, transparent 70%); }

        #hero {
            background-color: #000;
            z-index: 10;
            padding: 0;
            display: block;
            overflow: hidden;
            position: fixed;
            top: 0; left: 0;
            width: 100vw;
            height: 100vh;
        }


        /* --- Kitchen CSS 3D --- */
        /* Kitchen is now Three.js based - no CSS wrapper needed */

        /* --- 3D Room (Three.js) --- */
        #hero canvas.room-webgl { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; z-index: 1; cursor: grab; }
        #hero canvas.room-webgl:active { cursor: grabbing; }
        #room-loader { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: grid; place-content: center; background: #000; z-index: 10; color: #fff; transition: opacity 0.5s ease; }
        #room-loader-lottie {
            width: min(90vw, 90vh, 1440px);
            aspect-ratio: 1 / 1;
            user-select: none;
            will-change: transform;
            transition: opacity 0.4s ease;
        }
        #room-loader-lottie svg, #room-loader-lottie canvas {
            display: block;
            width: 100% !important;
            height: 100% !important;
        }
        #room-loader.clickable { cursor: pointer; }
        #room-loader.clickable #room-loader-lottie { transition: transform .2s ease, opacity .4s ease; }
        #room-loader.clickable:hover #room-loader-lottie { transform: scale(1.03); }

        /* --- Top-Center Nav Menu Overlay (hidden when camera leaves default POV) --- */
        #nav-menu {
            position: absolute;
            top: 5em;
            left: 50%;
            width: 5em;
            height: 5em;
            transform: translate(-50%, -50%);
            z-index: 5;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.45s ease;
        }
        #nav-menu.visible {
            opacity: 1;
            pointer-events: auto;
        }
        #nav-menu .btn {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.10);
            opacity: 0;
            z-index: -10;
            cursor: pointer;
            transition: opacity 0.4s cubic-bezier(0.05, 1, 0.1, 1), transform 0.6s cubic-bezier(0.05, 1, 0.1, 1);
            transform: translateX(0);
        }
        /* Active state snaps the satellite to z-index 50 immediately so the
           transform tween isn't hidden behind the WebGL canvas during the first
           frames of the animation. */
        #nav-menu.active .btn.btn-icon { z-index: 50; }
        /* Inline SVG icons render in the first paint — no Font Awesome webfont
           round-trip, so the Home button is fully drawn the moment the loader
           fades. We size them with explicit pixel boxes (not font-size) so
           layout doesn't depend on font metrics either. */
        #nav-menu .btn .nav-svg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 32px;
            height: 32px;
            color: #fff;
            filter: drop-shadow(0 1px 4px rgba(0,0,0,0.4));
            transition: color 0.3s;
            pointer-events: none;
        }
        #nav-menu .btn .nav-svg.trigger-icon {
            width: 40px;
            height: 40px;
        }
        #nav-menu .btn:hover .nav-svg { color: #ffd860; }
        #nav-menu .btn.trigger {
            opacity: 1;
            z-index: 100;
            background: rgba(0, 0, 0, 0.35);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            transition: transform 0.3s, background 0.3s;
        }
        #nav-menu .btn.trigger:hover { transform: scale(1.15); background: rgba(0, 0, 0, 0.5); }
        #nav-menu .btn.trigger .trigger-icon { font-size: 2.5em; }
        #nav-menu .rotater {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform-origin: 50% 50%;
        }
        #nav-menu.active .btn-icon {
            opacity: 1;
            z-index: 50;
        }
        #nav-menu.active .trigger-icon { color: #ffd860; }

        /* 4 items fan out around the trigger (top-center placement).
           Wider 50°/80°/50° angular spread (90°/140°/220°/270°) lets the
           radius shrink to 7em while keeping every icon clear of its
           neighbour — chord between adjacent icons ≥ 5.92em > 5em diameter. */
        #nav-menu .rotater:nth-child(1) { transform: rotate(90deg); }
        #nav-menu.active .rotater:nth-child(1) .btn-icon { transform: translateY(-7em) rotate(-90deg); }
        #nav-menu .rotater:nth-child(2) { transform: rotate(140deg); }
        #nav-menu.active .rotater:nth-child(2) .btn-icon { transform: translateY(-7em) rotate(-140deg); }
        #nav-menu .rotater:nth-child(3) { transform: rotate(220deg); }
        #nav-menu.active .rotater:nth-child(3) .btn-icon { transform: translateY(-7em) rotate(-220deg); }
        #nav-menu .rotater:nth-child(4) { transform: rotate(270deg); }
        #nav-menu.active .rotater:nth-child(4) .btn-icon { transform: translateY(-7em) rotate(-270deg); }

        /* Admin Camera Panel */
        #admin-camera-panel {
            display: none; position: fixed; top: 20px; right: 20px; width: 280px;
            max-height: calc(100vh - 40px); overflow-y: auto; overscroll-behavior: contain;
            background: rgba(0,0,0,0.85); border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px; padding: 16px; z-index: 99999; color: #fff;
            font-family: 'Inter', monospace; font-size: 12px; backdrop-filter: blur(10px);
            /* Firefox scrollbar — slim, visible against the panel's dark background */
            scrollbar-width: thin;
            scrollbar-color: rgba(255,255,255,0.35) transparent;
        }
        /* WebKit / Chromium scrollbar — narrow but always visible so the user
           can spot it and grab it when the kitchen-lights section pushes
           content past the viewport. */
        #admin-camera-panel::-webkit-scrollbar { width: 8px; }
        #admin-camera-panel::-webkit-scrollbar-track {
            background: rgba(255,255,255,0.04);
            border-radius: 4px;
        }
        #admin-camera-panel::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,0.28);
            border-radius: 4px;
            border: 2px solid transparent;
            background-clip: padding-box;
        }
        #admin-camera-panel::-webkit-scrollbar-thumb:hover {
            background: rgba(255,255,255,0.55);
            background-clip: padding-box;
        }
        #admin-camera-panel.visible { display: block; }
        #admin-camera-panel h3 { margin: 0 0 12px; font-size: 14px; color: #10b981; }
        #admin-camera-panel label { display: block; margin: 8px 0 4px; color: #888; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; }
        #admin-camera-panel select, #admin-camera-panel input { width: 100%; padding: 6px 8px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; color: #fff; font-size: 12px; margin-bottom: 4px; }
        #admin-camera-panel select option { background: #1a1a1a; color: #fff; padding: 4px; }
        #admin-camera-panel .coords { background: rgba(255,255,255,0.05); padding: 8px; border-radius: 6px; margin: 8px 0; font-family: monospace; font-size: 11px; line-height: 1.6; color: #aaa; }
        #admin-camera-panel .btn-row { display: flex; gap: 6px; margin-top: 10px; }
        #admin-camera-panel button { flex: 1; padding: 8px; border: none; border-radius: 6px; cursor: pointer; font-size: 11px; font-weight: 600; }
        #admin-camera-panel .btn-highlight { background: #ef4444; color: #fff; }
        #admin-camera-panel .btn-lock { background: #10b981; color: #fff; }
        #admin-camera-panel .btn-save { background: #3b82f6; color: #fff; }
        #admin-camera-panel .btn-reset { background: rgba(255,255,255,0.1); color: #fff; }
        #admin-camera-panel .status { margin-top: 8px; font-size: 11px; color: #10b981; min-height: 16px; }
        /* Collapsible section (each tool in its own <details> drop-down) */
        #admin-camera-panel details.acp-section { margin-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 8px; }
        #admin-camera-panel details.acp-section > summary {
            list-style: none; cursor: pointer; padding: 6px 8px; border-radius: 6px;
            background: rgba(255,255,255,0.06); color: #fff;
            font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
            display: flex; align-items: center; justify-content: space-between; gap: 8px;
        }
        #admin-camera-panel details.acp-section > summary::-webkit-details-marker { display: none; }
        #admin-camera-panel details.acp-section > summary::after {
            content: '▸'; display: inline-block; font-size: 11px; color: #aaa;
            transition: transform 0.15s ease;
        }
        #admin-camera-panel details.acp-section[open] > summary::after { transform: rotate(90deg); }
        #admin-camera-panel details.acp-section > summary:hover { background: rgba(255,255,255,0.12); }
        #admin-camera-panel details.acp-section > .acp-section-body { padding: 6px 0 2px; }

        /* Mobile admin: hamburger toggle so the panel can be hidden while
           dragging sliders, leaving the canvas visible for real-time feedback. */
        #acp-mobile-toggle {
            display: none;
            position: fixed;
            top: 12px;
            right: 12px;
            width: 44px;
            height: 44px;
            z-index: 100000;
            background: rgba(0,0,0,0.85);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 10px;
            color: #10b981;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            padding: 0;
        }
        #acp-mobile-toggle .acp-bars {
            display: inline-block;
            width: 20px;
            height: 14px;
            position: relative;
        }
        #acp-mobile-toggle .acp-bars::before,
        #acp-mobile-toggle .acp-bars::after,
        #acp-mobile-toggle .acp-bars > span {
            content: '';
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background: currentColor;
            border-radius: 2px;
            transition: transform 0.18s ease, opacity 0.18s ease, top 0.18s ease;
        }
        #acp-mobile-toggle .acp-bars::before { top: 0; }
        #acp-mobile-toggle .acp-bars > span { top: 6px; }
        #acp-mobile-toggle .acp-bars::after { top: 12px; }
        body.admin-mobile.acp-open #acp-mobile-toggle .acp-bars::before { top: 6px; transform: rotate(45deg); }
        body.admin-mobile.acp-open #acp-mobile-toggle .acp-bars > span { opacity: 0; }
        body.admin-mobile.acp-open #acp-mobile-toggle .acp-bars::after { top: 6px; transform: rotate(-45deg); }

        body.admin-mobile #acp-mobile-toggle { display: inline-flex; }
        body.admin-mobile #admin-camera-panel.visible { display: none; }
        /* Mobile open layout: top half = scrollable dashboard, bottom half =
           live 3D canvas preview. A persistent save bar sits at the bottom of
           the viewport. */
        body.admin-mobile.acp-open #admin-camera-panel.visible {
            display: block;
            top: 0;
            left: 0;
            right: 0;
            bottom: auto;
            width: auto;
            max-width: none;
            height: 50vh;
            max-height: 50vh;
            padding: 14px 14px 16px 14px;
            border-radius: 0 0 14px 14px;
            box-sizing: border-box;
            overflow-y: auto;
        }
        body.admin-mobile.acp-open #acp-mobile-toggle { display: none; }

        /* Minimize (×) button inside the panel — mobile only. */
        #acp-mobile-close {
            display: none;
            position: absolute;
            top: 6px;
            right: 6px;
            width: 32px;
            height: 32px;
            padding: 0;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: 8px;
            color: #fff;
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
            z-index: 1;
        }
        #acp-mobile-close:hover { background: rgba(255,255,255,0.18); }
        body.admin-mobile #acp-mobile-close { display: block; }

        /* Persistent save bar at the viewport bottom while the panel is open. */
        #acp-mobile-save-bar {
            display: none;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            height: 60px;
            z-index: 100001;
            background: rgba(0,0,0,0.92);
            border-top: 1px solid rgba(255,255,255,0.18);
            padding: 10px 12px;
            box-sizing: border-box;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            align-items: center;
            gap: 10px;
        }
        body.admin-mobile.acp-open #acp-mobile-save-bar { display: flex; }

        /* Mobile pan/rotate toggle button. Becomes visible on mobile via the
           IS_MOBILE block (which un-hides it). Tapping it flips the camera
           drag between rotate (default) and pan. */
        #mobile-pan-toggle {
            position: fixed;
            left: 16px;
            bottom: 18px;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            border: 1px solid rgba(255,255,255,0.22);
            color: #fff;
            cursor: pointer;
            z-index: 99996;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            -webkit-tap-highlight-color: rgba(0,0,0,0);
            /* Hidden by default; .visible class fades in over 200 ms after
               the user pinches out to zoom into a subject. */
            opacity: 0;
            pointer-events: none;
            transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease, opacity 200ms ease;
        }
        #mobile-pan-toggle.visible {
            opacity: 1;
            pointer-events: auto;
        }
        #mobile-pan-toggle[hidden] { display: none; }
        #mobile-pan-toggle:active { transform: scale(0.92); }
        #mobile-pan-toggle.active {
            background: rgba(16,185,129,0.85);
            border-color: #10b981;
            color: #062;
        }
        #mobile-pan-toggle .mpt-icon {
            width: 24px;
            height: 24px;
            display: inline-block;
            pointer-events: none;
        }
        #mobile-pan-toggle .mpt-pan { display: none; }
        #mobile-pan-toggle.active .mpt-rotate { display: none; }
        #mobile-pan-toggle.active .mpt-pan { display: inline-block; }
        #acp-mobile-save-bar #acp-mobile-save {
            flex: 1;
            height: 40px;
            background: #3b82f6;
            color: #fff;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            -webkit-tap-highlight-color: rgba(0,0,0,0);
        }
        #acp-mobile-save-bar #acp-mobile-save:active { background: #2563eb; }
        #acp-mobile-save-bar #acp-mobile-save-status {
            flex: 0 0 auto;
            color: #10b981;
            font-size: 12px;
            min-width: 70px;
            text-align: right;
            font-weight: 600;
        }

        /* Hero 3D transition glow vignette */
        #hero-glow-vignette {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 29000;
            opacity: 0;
            box-shadow: inset 0 0 80px 30px rgba(100, 200, 255, 0.12),
                        inset 0 0 200px 60px rgba(0, 0, 0, 0.5);
            border-radius: inherit;
        }

        #interactive-eye {
            background: radial-gradient(circle at center, #2a2a2a 0%, #0a0a0a 100%);
            z-index: 10;
        }

        /* --- Smoke dark overlay --- */
        #smoke-dark-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: rgba(0, 0, 0, 0);
            z-index: 1;
            pointer-events: none;
            transition: background-color 2s ease-in-out;
        }
        #smoke-dark-overlay.active {
            background-color: rgba(0, 0, 0, 0.55);
        }

        /* --- Smoke effect layers --- */
        #smoke-canvas-bg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 0;
            pointer-events: none;
        }
        #smoke-canvas-fg {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            z-index: 20;
            pointer-events: none;
        }

        /* --- Smoke text overlay --- */
        #smoke-text-content {
            position: absolute;
            bottom: 8%;
            left: 50%;
            transform: translateX(-50%);
            pointer-events: none;
            text-align: center;
            width: 80%;
            z-index: 15;
        }
        #smoke-text-content h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 7vw;
            font-weight: 100;
            letter-spacing: 0.05em;
            margin-bottom: 0px;
            text-shadow: 0px 0px 20px rgba(0, 255, 255, 0.3);
        }
        #smoke-text-content p {
            font-family: 'Special Elite', cursive;
            font-size: 0.856rem;
            font-weight: 300;
            max-width: 400px;
            margin: 0 auto;
            line-height: 1.4;
        }
        #smoke-text-content .smoke-word {
            display: inline-block;
            white-space: nowrap;
        }
        #smoke-text-content h2 .smoke-char,
        #smoke-text-content p .smoke-char {
            opacity: 0;
            background: -webkit-linear-gradient(#00ffff, #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            transition: opacity 2.5s ease-in-out;
            transition-delay: var(--delay-out);
        }
        #smoke-text-content.visible h2 .smoke-char,
        #smoke-text-content.visible p .smoke-char {
            opacity: 1;
            transition: opacity 8s ease-in-out;
            transition-delay: var(--delay-in);
        }

        #testimonials { background-color: transparent; z-index: 1; position: relative; overflow: visible; pointer-events: none; will-change: auto; }

        #contact-closing { background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%); z-index: 10; overflow: hidden; }

        /* --- Section 2: Googly Eyes CSS --- */
        .googly-eyes-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 1.2vw;
        }
        .googly-eye-container {
            width: 20vmin;
            height: 20vmin;
            max-width: 150px;
            max-height: 150px;
            filter: drop-shadow(0 10px 5px rgba(0,0,0,0.4));
        }
        .googly-eye-container.googly-eye-left {
            width: 25vmin;
            height: 25vmin;
            max-width: 187.5px;
            max-height: 187.5px;
            transform: translateY(calc(-50% + 60px)) scale(1.05);
        }
        .googly-eye {
            width: 100%;
            height: 100%;
            overflow: visible;
        }
        .lids {
            stroke: #050505;
            stroke-width: 4.7;
            fill: none;
        }
        .pupil-group {
            filter: drop-shadow(0 4px 2px rgba(0,0,0,0.4));
        }
        .glint {
            fill: #ffffff;
            opacity: 0.85;
            filter: blur(1px);
        }

        /* --- Eye Section: 3-Column Layout --- */
        .eye-col-left {
            position: absolute;
            left: 0;
            top: 0;
            width: 33.333%;
            height: 100%;
            z-index: 20;
        }
        .eye-col-mid {
            position: absolute;
            left: 33.333%;
            top: 0;
            width: 33.333%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            pointer-events: none;
        }
        .eye-col-right {
            position: absolute;
            right: 0;
            top: 0;
            width: 33.333%;
            height: 100vh;
            overflow-x: hidden;
            overflow-y: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            z-index: 15;
            will-change: transform;
        }
        .eye-col-right::-webkit-scrollbar { display: none; }

        /* Falling-letters container (sticky inside right column) */
        #eye-content-container {
            position: sticky;
            top: -75vh;
            width: 100%;
            height: 100vh;
            background-color: transparent;
            overflow: hidden;
            touch-action: none;
            z-index: 10;
        }
        .falling-letters-source-wrap {
            position: absolute;
            top: 15%;
            left: 0;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }
        .falling-letters-source {
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.5rem, 5vw, 5rem);
            line-height: 1.1;
            font-weight: 900;
            text-align: center;
            text-transform: uppercase;
            color: #ffffff;
            opacity: 0;
            padding: 0 5%;
        }
        .falling-letter {
            position: absolute;
            top: 0;
            left: 0;
            font-family: 'Inter', sans-serif;
            font-size: clamp(2.5rem, 5vw, 5rem);
            font-weight: 900;
            line-height: 1.1;
            text-transform: uppercase;
            color: #ffffff;
            cursor: grab;
            user-select: none;
            pointer-events: none;
            opacity: 0;
            will-change: transform, opacity;
            display: inline-block;
        }
        .falling-letter.grabbing {
            cursor: grabbing;
            z-index: 100;
        }

        /* Scroll indicator arrow */
        #eye-scroll-indicator {
            position: absolute;
            top: 62.5vh;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            display: flex;
            flex-direction: column;
            align-items: center;
            opacity: 0.3;
            transition: transform 0.8s cubic-bezier(0, 0, 0.2, 1);
            pointer-events: none;
            z-index: 20;
        }
        #eye-scroll-indicator.show { transform: translate(-50%, -50%) scale(1); }
        .eye-scroll-arrow {
            width: 180px;
            height: auto;
            margin-bottom: 6px;
            will-change: transform;
        }
        #eye-scroll-indicator.dropped .eye-scroll-arrow {
            animation: eyeFloatArrow 2s infinite ease-in-out;
        }
        @keyframes eyeFloatArrow {
            0%, 100% { transform: translateY(0); }
            50%      { transform: translateY(12px); }
        }
        .eye-scroll-text {
            font-size: 0.7rem;
            letter-spacing: 0.3em;
            font-weight: 400;
            opacity: 1;
            transition: opacity 0.5s ease-in-out;
        }
        #eye-scroll-indicator.dropped .eye-scroll-text { opacity: 0; }
        .eye-keep-scrolling {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Inter', sans-serif;
            font-size: 2.25rem;
            font-weight: 300;
            letter-spacing: 0.2em;
            color: #ffffff;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            pointer-events: none;
        }
        .eye-keep-scrolling.visible { opacity: 1; }

        /* Paragraph mask container — pins below headline, clips text */
        .eye-content-screen {
            background-color: transparent;
            position: sticky;
            top: 25vh;
            height: 75vh;
            overflow: hidden;
            padding: 1vh 2vw 0;
            box-sizing: border-box;
            z-index: 5;
        }
        .eye-parallax-container {
            width: 100%;
            will-change: transform;
        }
        /* Spacer to give colRight enough scroll room */
        .eye-col-right-spacer {
            height: 300vh;
            pointer-events: none;
        }
        .eye-slide-p {
            font-family: 'Special Elite', cursive;
            font-size: clamp(1rem, 1.2vw, 1.2rem);
            line-height: 1.6;
            margin-bottom: 4rem;
            color: #d1d1d1;
            font-weight: 400;
        }

        /* --- Section 3: 3D Parallax Cards Arena --- */
        #cards-arena {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100%;
            z-index: 5;
            pointer-events: none;
            perspective: 1500px;
            transform-style: preserve-3d;
        }

        .card-wrapper {
            position: absolute;
            transform-style: preserve-3d;
            transform-origin: center center;
            pointer-events: auto;
            width: 15vw;
            min-width: 180px;
            height: 55vh;

            --scatter-x: 0px;
            --scatter-y: 0px;
            --parallax-y: 0px;
            --add-z: 0px;
            --rot-y: 0deg;

            transform: translate(
                calc(-50% + var(--scatter-x)),
                calc(-50% + var(--parallax-y) + var(--scatter-y))
            ) translateZ(calc(var(--base-z, 0px) + var(--add-z))) rotateY(var(--rot-y));

            filter: blur(var(--base-blur, 0px));
        }

        .cards-ready .card-wrapper {
            transition: left 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        top 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        filter 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        opacity 2.5s cubic-bezier(0.8, 0, 0.2, 1);
        }

        .card-wrapper.is-hovered {
            left: 50% !important;
            top: 50% !important;
            --parallax-y: 0px !important;
            --scatter-x: 0px !important;
            --scatter-y: 0px !important;
            --add-z: calc((var(--base-z) * -1) + 400px);
            --rot-y: 360deg;
            z-index: 1000 !important;
            filter: blur(0px) !important;
            cursor: pointer;
            transition: left 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        top 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        transform 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        filter 2.5s cubic-bezier(0.8, 0, 0.2, 1);
        }

        .card-wrapper.is-scattered {
            --add-z: -300px;
            transition: transform 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        filter 2.5s cubic-bezier(0.8, 0, 0.2, 1);
        }

        .card-wrapper.is-returning {
            transition: left 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        top 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        transform 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        filter 2.5s cubic-bezier(0.8, 0, 0.2, 1),
                        opacity 2.5s cubic-bezier(0.8, 0, 0.2, 1);
        }

        .card-wrapper.active {
            left: var(--active-left, 75%) !important;
            top: 50% !important;
            --parallax-y: 0px !important;
            --scatter-x: 0px !important;
            --scatter-y: 0px !important;
            --add-z: calc((var(--base-z) * -1));
            --rot-y: 352deg;
            z-index: 1000 !important;
            filter: blur(0px) !important;
            cursor: default;
            transition: left 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                        top 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
                        filter 0.8s ease,
                        opacity 0.8s ease !important;
        }

        .wobble-layer {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            animation: float-wobble 8s ease-in-out infinite;
            transition: transform 0.8s ease-out;
        }

        .card-wrapper.is-hovered .wobble-layer,
        .card-wrapper.active .wobble-layer {
            animation: none !important;
            transform: translate(0px, 0px) rotateX(0deg) rotateY(0deg) !important;
        }

        @keyframes float-wobble {
            0%, 100% { transform: translate(0px, 0px) rotateX(0deg) rotateY(0deg); }
            25% { transform: translate(12px, -15px) rotateX(3deg) rotateY(-2deg); }
            50% { transform: translate(-8px, 12px) rotateX(-1deg) rotateY(3deg); }
            75% { transform: translate(-15px, -8px) rotateX(2deg) rotateY(1deg); }
        }

        .card-inner {
            width: 100%;
            height: 100%;
            position: relative;
            transform-style: preserve-3d;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translate(var(--mouse-x, 0px), var(--mouse-y, 0px))
                       rotateX(var(--mouse-rot-x, 0deg))
                       rotateY(var(--mouse-rot-y, 0deg));
            transition: transform 1.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 2.5s ease;
        }

        .card-wrapper.is-glowing .card-inner {
            --mouse-x: 0px !important;
            --mouse-y: 0px !important;
            --mouse-rot-x: 0deg !important;
            --mouse-rot-y: 0deg !important;
            box-shadow: 0 0 20px 6px rgba(255, 255, 255, 0.25),
                        0 0 50px 12px rgba(255, 255, 255, 0.1),
                        0 25px 50px -12px rgba(0, 0, 0, 0.5);
            transition: transform 0.8s ease-out, box-shadow 0.3s ease-out;
        }

        .card-wrapper.is-hovered .card-inner,
        .card-wrapper.active .card-inner {
            --mouse-x: 0px !important;
            --mouse-y: 0px !important;
            --mouse-rot-x: 0deg !important;
            --mouse-rot-y: 0deg !important;
            box-shadow: 0 45px 80px -20px rgba(0, 0, 0, 0.9);
            transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.8s ease-out;
        }

        .card-wrapper.active .card-inner {
            box-shadow: -25px 40px 80px -20px rgba(0, 0, 0, 0.95);
        }

        .card-glare {
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0) 45%);
            z-index: 10;
            pointer-events: none;
        }

        .card-content {
            position: absolute;
            bottom: 24px;
            left: 24px;
            z-index: 20;
        }

        .card-content .card-number {
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            opacity: 0.7;
            margin-bottom: 4px;
            display: block;
        }

        .card-content .card-title {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 700;
            color: #fff;
        }

        /* --- Card Overlay Panel --- */
        #card-overlay {
            position: fixed;
            left: 2%;
            top: 50%;
            transform: translateY(-50%) translateX(-60px);
            height: 90vh;
            width: 70vw;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 24px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            opacity: 0;
            pointer-events: none;
            z-index: 20000;
            overflow: hidden;
            transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.8s ease;
        }

        #card-overlay:not(.active) * { pointer-events: none !important; }
        #card-overlay.active {
            opacity: 0.9;
            pointer-events: auto;
            transform: translateY(-50%) translateX(0);
        }

        /* Split layout */
        #card-overlay-split {
            display: flex; width: 100%; height: 100%;
        }
        #overlay-lottie-col {
            width: 100%; height: 100%;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            background: rgba(255, 255, 255, 1);
            border-radius: 24px;
        }
        #overlay-lottie-col.split-mode {
            width: 45%;
            border-right: 1px solid rgba(255,255,255,0.08);
            border-radius: 24px 0 0 24px;
        }
        #overlay-lottie-container {
            width: 100%; height: 100%; max-width: none;
            padding: 0;
            display: flex; align-items: center; justify-content: center;
        }
        #overlay-lottie-container svg {
            width: 100% !important; height: 100% !important;
        }
        #overlay-text-col {
            width: 55%; height: 100%;
            overflow-y: auto; overflow-x: hidden;
            scrollbar-width: thin;
            scrollbar-color: rgba(255,255,255,0.15) transparent;
        }
        #overlay-text-col::-webkit-scrollbar { width: 4px; }
        #overlay-text-col::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
        #overlay-text-col::-webkit-scrollbar-track { background: transparent; }
        /* Video + text overlay mode */
        #overlay-video-bg {
            display: none;
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            z-index: 0;
            border-radius: 24px;
        }
        #card-overlay-split.video-mode {
            position: relative;
        }
        #card-overlay-split.video-mode #overlay-video-bg {
            display: block;
        }
        #card-overlay-split.video-mode #overlay-lottie-col {
            display: none !important;
        }
        #card-overlay-split.video-mode #overlay-text-col {
            position: absolute;
            right: 0; top: 0;
            width: 33.333%; height: 100%;
            z-index: 1;
            background: transparent;
        }
        #card-overlay-split.video-mode #overlay-text-inner {
            color: #1a1a1a;
        }
        #card-overlay-split.video-mode .overlay-tag,
        #card-overlay-split.video-mode .overlay-title {
            color: #1a1a1a;
        }
        #card-overlay-split.video-mode .overlay-desc,
        #card-overlay-split.video-mode .overlay-case-text {
            color: #333;
        }
        #card-overlay-split.video-mode .overlay-case-heading {
            color: #111;
        }
        #card-overlay-split.video-mode .overlay-case-section {
            border-top-color: rgba(0,0,0,0.1);
        }

        #overlay-text-inner {
            padding: 48px 44px 20px 36px;
        }
        .overlay-case-section {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .overlay-case-heading {
            font-size: 0.75rem; font-weight: 600;
            text-transform: uppercase; letter-spacing: 0.12em;
            color: #888; margin: 0 0 12px;
        }
        .overlay-case-text {
            font-size: 1.05rem; line-height: 1.8;
            color: rgba(255,255,255,0.75);
            white-space: pre-line;
            margin: 0;
        }

        #card-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.4);
            border: none;
            color: rgba(255, 255, 255, 0.5);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            z-index: 50;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
            transition: color 0.3s, background 0.3s;
        }

        #card-close-btn:hover {
            color: #fff;
            background: rgba(0, 0, 0, 0.6);
        }

        /* Legacy track — kept for compatibility */
        #card-overlay-track {
            width: 100%;
            will-change: transform;
            display: flex;
            flex-direction: column;
            pointer-events: auto;
        }

        .overlay-panel-section {
            min-height: 75vh;
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 48px;
            position: relative;
            box-sizing: border-box;
        }

        .overlay-panel-section + .overlay-panel-section {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .overlay-panel-section .overlay-tag {
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #888;
            margin-bottom: 12px;
            display: block;
        }

        .overlay-panel-section .overlay-title {
            font-size: clamp(2rem, 3.5vw, 3rem);
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            margin-bottom: 20px;
        }

        .overlay-panel-section .overlay-desc {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #999;
            margin-bottom: 28px;
        }

        .overlay-panel-section .overlay-cta {
            display: inline-block;
            background: #fff;
            color: #000;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
            transition: box-shadow 0.3s, background 0.3s;
        }

        .overlay-panel-section .overlay-cta:hover {
            background: #f0f0f0;
            box-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
        }

        .overlay-dots {
            position: fixed;
            bottom: 30px;
            left: calc(5% + 20vw);
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 20002;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .overlay-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: background 0.3s ease;
            cursor: pointer;
        }

        .overlay-dot.active { background: rgba(255, 255, 255, 0.9); }

        #card-backdrop {
            position: fixed;
            inset: 0;
            background: transparent;
            pointer-events: none;
            z-index: 19999;
        }

        #card-backdrop.active { pointer-events: auto; }

        /* --- Contact Closing Section --- */
        #contact-closing {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 40px;
        }

        .contact-links {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        .contact-link-item {
            text-align: center;
            text-decoration: none;
            color: #fff;
            transition: transform 0.3s, opacity 0.3s;
        }

        .contact-link-item:hover {
            transform: translateY(-4px);
            opacity: 0.8;
        }

        .contact-link-item .cl-icon {
            margin-bottom: 12px;
            opacity: 0.5;
        }

        .contact-link-item .cl-icon img {
            width: 2rem;
            height: 2rem;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        .contact-link-item .cl-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: #555;
            margin-bottom: 8px;
        }

        .contact-link-item .cl-value {
            font-size: 1.1rem;
            font-weight: 600;
        }

        .contact-content-wrap {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* Starfield */
        .star-layer {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            background: transparent;
            z-index: 0;
        }
        .star-layer::after {
            content: "";
            position: absolute;
            top: 2000px;
            left: 0;
            background: transparent;
        }
        #contact-stars-1, #contact-stars-1::after { width: 1px; height: 1px; }
        #contact-stars-1 { animation: animStars 50s linear infinite; }
        #contact-stars-2, #contact-stars-2::after { width: 2px; height: 2px; }
        #contact-stars-2 { animation: animStars 100s linear infinite; }
        #contact-stars-3, #contact-stars-3::after { width: 3px; height: 3px; }
        #contact-stars-3 { animation: animStars 150s linear infinite; }

        @keyframes animStars {
            from { transform: translateY(0px); }
            to { transform: translateY(-2000px); }
        }

        #star-web-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        /* Footer Menu CSS */
        .footer-nav {
            display: none !important;
        }

        .footer-link {
            color: #666;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 2px;
            cursor: pointer;
            transition: color 0.3s;
            text-decoration: none;
            pointer-events: auto; /* הופך את הקישור ללחיץ */
        }
        .footer-link:hover { color: #fff; }

        /* --- Video Modal Styles (Hero) --- */


/* --- extras (was 2nd inline <style>) --- */
        .bm-menu {
            display: none;
            position: fixed;
            width: 4em; height: 4em;
            z-index: 1650;
            font-family: 'Inter', sans-serif;
            pointer-events: none; /* trigger zone is invisible */
        }
        .bm-menu.show { display: block; }
        .bm-menu .bm-rotater {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 100%;
            transform-origin: 50% 50%;
            pointer-events: none;
        }
        .bm-menu .bm-btn {
            position: absolute;
            top: 50%; left: 50%;
            width: 3em; height: 3em;
            margin-top: -1.5em; margin-left: -1.5em;
            border-radius: 50%;
            border: none;
            cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            font-size: 18px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.35);
            opacity: 0;
            transform: translate(0, 0);
            transition: opacity 0.4s cubic-bezier(0.05, 1, 0.1, 1),
                        transform 0.6s cubic-bezier(0.05, 1, 0.1, 1);
            pointer-events: auto;
        }
        .bm-menu.active .bm-btn { opacity: 1; }
        /* Email — 2 icons fanning to upper-left and upper-right of the trigger */
        #bedroom-email-menu .bm-rotater:nth-child(1) { transform: rotate(60deg); }
        #bedroom-email-menu.active .bm-rotater:nth-child(1) .bm-btn {
            transform: translateY(-4em) rotate(-60deg);
        }
        #bedroom-email-menu .bm-rotater:nth-child(2) { transform: rotate(120deg); }
        #bedroom-email-menu.active .bm-rotater:nth-child(2) .bm-btn {
            transform: translateY(-4em) rotate(-120deg);
        }
        /* Phone — 3 icons fanning to upper-left, top, upper-right */
        #bedroom-phone-menu .bm-rotater:nth-child(1) { transform: rotate(60deg); }
        #bedroom-phone-menu.active .bm-rotater:nth-child(1) .bm-btn {
            transform: translateY(-4em) rotate(-60deg);
        }
        #bedroom-phone-menu .bm-rotater:nth-child(2) { transform: rotate(90deg); }
        #bedroom-phone-menu.active .bm-rotater:nth-child(2) .bm-btn {
            transform: translateY(-4em) rotate(-90deg);
        }
        #bedroom-phone-menu .bm-rotater:nth-child(3) { transform: rotate(120deg); }
        #bedroom-phone-menu.active .bm-rotater:nth-child(3) .bm-btn {
            transform: translateY(-4em) rotate(-120deg);
        }
        .bm-toast {
            position: absolute;
            left: 50%; transform: translateX(-50%);
            top: -3.5em;
            background: #2dc4b6; color: #fff;
            padding: 6px 12px; border-radius: 12px;
            font-size: 12px; font-weight: 600;
            opacity: 0; transition: opacity 250ms ease;
            white-space: nowrap; pointer-events: none;
        }