        :root {
            --magenta: #C13383;
            --orange: #EC6530;
            --soft-blush: #FFE3E3;
            --white: #FFFFFF;
            --black: #111111;
            --dark-gray: #1a1a1a;
            --space-font: 'Space Grotesk', sans-serif;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            user-select: none;
        }

        body, html {
            font-family: var(--space-font);
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Ambient Particle Overlay */
        .ambient-glow {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            pointer-events: none;
            z-index: 2;
            background: 
                radial-gradient(circle at 10% 20%, rgba(193, 51, 131, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(236, 101, 30, 0.08) 0%, transparent 45%);
            mix-blend-mode: screen;
        }

        /* Fixed Master Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            z-index: 100;
            background: linear-gradient(to bottom, rgba(17,17,17,0.9) 0%, transparent 100%);
            backdrop-filter: blur(5px);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            cursor: pointer;
        }

        .logo-img {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--magenta), var(--orange));
            border-radius: 50%;
            display: inline-block;
        }

        .logo-text {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.5px;
            text-transform: uppercase;
        }

        .nav-center-links {
            display: flex;
            gap: 40px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .nav-center-links a {
            color: var(--soft-blush);
            text-decoration: none;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .nav-center-links a:hover, .nav-center-links a.active {
            color: var(--orange);
        }

        .nav-right-contact a {
            color: var(--white);
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.2);
            padding: 12px 28px;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 2px;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            background: rgba(17,17,17,0.5);
        }

        .nav-right-contact a:hover {
            background: var(--white);
            color: var(--black);
            border-color: var(--white);
            box-shadow: 0 0 20px rgba(255,255,255,0.2);
        }

        /* Hamburger Menu for Mobile viewports */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 101;
        }

        .hamburger span {
            width: 30px;
            height: 2px;
            background-color: var(--white);
            transition: 0.3s ease;
        }

        /* Museum Floor Map Indicator (Fixed Right Corner) */
        .floor-map-widget {
            position: fixed;
            bottom: 40px;
            right: 40px;
            background: rgba(26, 26, 26, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 25px;
            border-radius: 4px;
            z-index: 90;
            backdrop-filter: blur(15px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            width: 240px;
        }

        .floor-map-title {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: rgba(255,255,255,0.4);
            margin-bottom: 15px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .floor-map-title::after {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: #00ff66;
            border-radius: 50%;
            box-shadow: 0 0 8px #00ff66;
        }

        .map-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 8px;
        }

        .map-node {
            width: 100%;
            aspect-ratio: 1;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            color: rgba(255,255,255,0.3);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .map-node:hover {
            border-color: var(--orange);
            color: var(--white);
            background: rgba(236, 101, 30, 0.1);
        }

        .map-node.active {
            background: var(--magenta);
            border-color: var(--magenta);
            color: var(--white);
            font-weight: bold;
            box-shadow: 0 0 15px var(--magenta);
        }

        .map-node.completed {
            border-color: rgba(193, 51, 131, 0.4);
            color: var(--magenta);
            background: rgba(193, 51, 131, 0.05);
        }

        /* Architecture Exhibition Container */
        .page-view {
            display: none;
            width: 100%;
        }

        .page-view.active-view {
            display: block;
        }

        /* Monumental Exhibition Spaces Layout */
        .exhibition-space {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 10%;
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        /* Background Masks for architectural depth */
        .exhibition-space::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(17,17,17,0.92) 0%, rgba(17,17,17,0.85) 50%, rgba(17,17,17,0.95) 100%);
            z-index: 1;
        }

        .space-content {
            position: relative;
            z-index: 5;
            max-width: 1100px;
        }

        .gallery-tag {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 5px;
            color: var(--orange);
            margin-bottom: 25px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .gallery-tag::before {
            content: '';
            width: 30px;
            height: 1px;
            background: var(--orange);
            display: inline-block;
        }

        .monumental-title {
            font-size: clamp(3rem, 6vw, 7.5rem);
            font-weight: 300;
            line-height: 0.95;
            letter-spacing: -3px;
            text-transform: uppercase;
            margin-bottom: 40px;
            color: var(--white);
        }

        .monumental-title span {
            font-weight: 700;
            color: transparent;
            -webkit-text-stroke: 1px rgba(255,255,255,0.6);
        }

        .space-description {
            font-size: 1.15rem;
            line-height: 1.8;
            color: var(--soft-blush);
            max-width: 650px;
            margin-bottom: 40px;
            font-weight: 300;
            opacity: 0.85;
        }

        /* Immersive Kinetic Displays & Custom Geometries */
        .kinetic-container {
            margin-top: 40px;
            border-left: 2px solid var(--magenta);
            padding-left: 30px;
            position: relative;
        }

        /* Specific Gallery Installations styling */
        .g-pathways {
            display: flex;
            gap: 30px;
            margin-top: 50px;
        }

        .g-path-btn {
            padding: 20px 40px;
            border: 1px solid rgba(255,255,255,0.15);
            background: rgba(255,255,255,0.02);
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .g-path-btn::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(193, 51, 131, 0.2), transparent);
            transition: 0.5s;
        }

        .g-path-btn:hover::before {
            left: 100%;
        }

        .g-path-btn:hover {
            border-color: var(--magenta);
            box-shadow: 0 0 25px rgba(193, 51, 131, 0.3);
            color: var(--soft-blush);
        }

        .prediction-corridor {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .prediction-frame {
            border: 1px solid rgba(255,255,255,0.05);
            background: rgba(26,26,26,0.4);
            padding: 40px;
            backdrop-filter: blur(10px);
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
        }

        .prediction-frame::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            border: 1px solid var(--orange);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .prediction-frame:hover {
            transform: translateY(-10px);
            background: rgba(26,26,26,0.8);
        }

        .prediction-frame:hover::after {
            opacity: 0.3;
        }

        .frame-num {
            font-size: 0.8rem;
            color: var(--orange);
            margin-bottom: 20px;
            display: block;
        }

        .kinetic-sculpture-mock {
            width: 100%;
            height: 300px;
            border: 1px dashed rgba(255,255,255,0.1);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            margin-top: 40px;
        }

        .sculpture-node {
            position: absolute;
            width: 40px;
            height: 40px;
            background: var(--magenta);
            opacity: 0.6;
            animation: floatingNodes 8s infinite alternate ease-in-out;
        }

        .sculpture-node:nth-child(2) {
            background: var(--orange);
            animation-delay: -2s;
            width: 60px; height: 60px;
        }

        .sculpture-node:nth-child(3) {
            background: var(--soft-blush);
            animation-delay: -4s;
            width: 25px; height: 25px;
        }

        @keyframes floatingNodes {
            0% { transform: translate(-100px, -50px) rotate(0deg); }
            100% { transform: translate(100px, 50px) rotate(360deg); }
        }

        /* Living Fabric interactive simulator zone */
        .fabric-surface {
            width: 100%;
            height: 350px;
            background: radial-gradient(rgba(193, 51, 131, 0.15) 1px, transparent 1px);
            background-size: 20px 20px;
            border: 1px solid rgba(255,255,255,0.05);
            margin-top: 30px;
            position: relative;
            cursor: crosshair;
        }

        /* Column Grid Layout */
        .columns-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 50px;
            height: 450px;
        }

        .light-column {
            background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.03) 100%);
            border: 1px solid rgba(255,255,255,0.05);
            padding: 40px 25px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
        }

        .light-column::before {
            content: '';
            position: absolute;
            bottom: 0; left: 0; width: 100%; height: 0%;
            background: linear-gradient(0deg, rgba(236, 101, 30, 0.2) 0%, transparent 100%);
            transition: height 0.6s ease;
        }

        .light-column:hover::before {
            height: 100%;
        }

        .light-column:hover {
            border-color: var(--orange);
            transform: scale(1.02);
        }

        /* Archive grid system */
        .archive-cabinet-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .cabinet-drawer {
            border: 1px solid rgba(255,255,255,0.1);
            padding: 35px;
            background: rgba(26,26,26,0.3);
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .cabinet-drawer:hover {
            background: rgba(255,255,255,0.03);
            border-left: 4px solid var(--magenta);
            padding-left: 31px;
        }

        /* Inner Page Layout Specifications */
        .inner-wing-header {
            padding: 200px 10% 80px 10%;
            background: linear-gradient(180deg, rgba(17,17,17,1) 0%, rgba(26,26,26,0.5) 100%);
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .inner-wing-body {
            padding: 80px 10%;
            max-width: 1300px;
            margin: 0 auto;
        }

        .document-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 50px;
        }

        .doc-card {
            background: #161616;
            border: 1px solid rgba(255,255,255,0.05);
            padding: 40px;
            position: relative;
        }

        /* Contact minimal form elements */
        .reception-desk {
            max-width: 700px;
            margin-top: 50px;
        }

        .museum-input-group {
            position: relative;
            margin-bottom: 40px;
        }

        .museum-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(255,255,255,0.2);
            padding: 15px 0;
            color: var(--white);
            font-family: var(--space-font);
            font-size: 1.1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .museum-input:focus {
            border-bottom-color: var(--magenta);
        }

        .museum-label {
            position: absolute;
            top: 15px;
            left: 0;
            color: rgba(255,255,255,0.4);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 2px;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        .museum-input:focus ~ .museum-label,
        .museum-input:valid ~ .museum-label {
            top: -15px;
            font-size: 0.7rem;
            color: var(--magenta);
        }

        /* Museum Desk Information Desk Footer */
        footer {
            background: #090909;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 100px 10% 50px 10%;
            position: relative;
            z-index: 10;
        }

        .footer-desk-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 80px;
        }

        .desk-brand-space img {
            margin-bottom: 20px;
        }

        .desk-title {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--orange);
            margin-bottom: 25px;
        }

        .desk-links {
            list-style: none;
        }

        .desk-links li {
            margin-bottom: 15px;
        }

        .desk-links a {
            color: rgba(255,255,255,0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .desk-links a:hover {
            color: var(--white);
        }

        .newsletter-box {
            position: relative;
            margin-top: 20px;
        }

        .newsletter-submit {
            position: absolute;
            right: 0;
            top: 12px;
            background: transparent;
            border: none;
            color: var(--white);
            cursor: pointer;
            font-family: var(--space-font);
            text-transform: uppercase;
            font-size: 0.75rem;
            letter-spacing: 1px;
        }

        .plaque-socials {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .illuminated-plaque {
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.02);
            padding: 10px 20px;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--soft-blush);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .illuminated-plaque:hover {
            background: rgba(193, 51, 131, 0.1);
            border-color: var(--magenta);
            box-shadow: 0 0 15px rgba(193, 51, 131, 0.2);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 40px;
            font-size: 0.8rem;
            color: rgba(255,255,255,0.4);
        }

        /* Regulatory content block details */
        .legal-monograph {
            font-size: 1rem;
            line-height: 1.9;
            color: rgba(255,255,255,0.7);
            max-width: 900px;
        }
        
        .legal-monograph h3 {
            color: var(--white);
            margin-top: 40px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Responsive Architecture Engine */
        @media(max-width: 1024px) {
            header { padding: 0 30px; }
            .nav-center-links { display: none; }
            .nav-right-contact { display: none; }
            .hamburger { display: flex; }
            .floor-map-widget { display: none; }
            .columns-layout { grid-template-columns: repeat(2, 1fr); height: auto; gap: 20px; }
            .light-column { height: 250px; }
            .footer-desk-grid { grid-template-columns: 1fr 1fr; }
            .document-matrix { grid-template-columns: 1fr 1fr; }
        }

        @media(max-width: 768px) {
            .monumental-title { font-size: 3rem; }
            .archive-cabinet-grid { grid-template-columns: 1fr; }
            .footer-desk-grid { grid-template-columns: 1fr; }
            .document-matrix { grid-template-columns: 1fr; }
        }

        /* Mobile Expanded Drawer Nav */
        .mobile-nav-tray {
            position: fixed;
            top: 0; left: -100%; width: 100%; height: 100vh;
            background: var(--black);
            z-index: 99;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10% !important;
            transition: left 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            gap: 30px;
        }
        .mobile-nav-tray.active { left: 0; }
        .mobile-nav-tray a {
            color: var(--white);
            font-size: 2rem;
            text-decoration: none;
            text-transform: uppercase;
            font-weight: 300;
        }
