        /* DESIGN SYSTEM SYSTEMIC CONSTANTS */
        :root {
            --dark-cocoa: #541A1A;
            --soft-cream: #F2E3BB;
            --warm-beige: #EEE0CC;
            --light-text: #F1E2D1;
            --white: #FFFFFF;
            --font-editorial: 'Instrument Serif', serif;
            --ease-luxury: cubic-bezier(0.25, 1, 0.5, 1);
            --transition-panel: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
        }

        /* CORE ARCHITECTURE & ACCESSIBILITY RESETS */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            background-color: var(--soft-cream);
            color: var(--dark-cocoa);
            font-family: var(--font-editorial);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* STRUCTURAL TYPOGRAPHY SYSTEM */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-editorial);
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            line-height: 1.05;
        }

        p {
            font-family: var(--font-editorial);
            font-weight: 400;
            font-size: 1.45rem;
            line-height: 1.5;
            letter-spacing: 0.01em;
        }

        .italic-quote {
            font-family: var(--font-editorial);
            font-style: italic;
            font-size: 2.8rem;
            line-height: 1.2;
        }

        /* GLOBAL UTILITIES & INTERACTION REVEALS */
        .editorial-container {
            padding: 10rem 4rem;
        }

        .massive-headline {
            font-size: calc(3.8rem + 5vw);
            line-height: 0.95;
            text-transform: uppercase;
        }

        .section-title {
            font-size: calc(2.2rem + 3vw);
            margin-bottom: 2.5rem;
        }

        .divider-dark {
            width: 100%;
            height: 1px;
            background-color: var(--dark-cocoa);
            border: none;
            opacity: 0.25;
            margin: 2.5rem 0;
        }

        .divider-light {
            width: 100%;
            height: 1px;
            background-color: var(--soft-cream);
            border: none;
            opacity: 0.25;
            margin: 2.5rem 0;
        }

        /* ZOOM INTERACTION WRAPPERS */
        .image-reveal-frame {
            width: 100%;
            overflow: hidden;
            background-color: var(--dark-cocoa);
            position: relative;
        }

        .image-reveal-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 1.2s var(--ease-luxury), opacity 0.8s var(--ease-luxury);
        }

        .image-reveal-frame:hover img {
            transform: scale(1.06);
            opacity: 0.9;
        }

        /* BRAND LUXURY BUTTON ARCHITECTURE */
        .action-button-dark {
            display: inline-block;
            background-color: var(--dark-cocoa);
            color: var(--soft-cream);
            border: 1px solid var(--dark-cocoa);
            padding: 1.2rem 3rem;
            font-family: var(--font-editorial);
            font-size: 1.4rem;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s var(--ease-luxury);
            outline: none;
            text-decoration: none;
            text-align: center;
        }

        .action-button-dark:hover {
            background-color: transparent;
            color: var(--dark-cocoa);
        }

        .action-button-light {
            display: inline-block;
            background-color: var(--soft-cream);
            color: var(--dark-cocoa);
            border: 1px solid var(--soft-cream);
            padding: 1.2rem 3rem;
            font-family: var(--font-editorial);
            font-size: 1.4rem;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.4s var(--ease-luxury);
            outline: none;
            text-decoration: none;
            text-align: center;
        }

        .action-button-light:hover {
            background-color: transparent;
            color: var(--soft-cream);
        }

        /* FORM FIELD ARCHITECTURE */
        .input-group {
            margin-bottom: 2.5rem;
            position: relative;
        }

        .input-label {
            display: block;
            font-size: 1.1rem;
            text-transform: uppercase;
            margin-bottom: 0.6rem;
            letter-spacing: 0.1em;
        }

        .editorial-input {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--dark-cocoa);
            padding: 1rem 0;
            font-family: var(--font-editorial);
            font-size: 1.5rem;
            color: var(--dark-cocoa);
            outline: none;
            transition: border-color 0.4s ease;
        }

        .editorial-input::placeholder {
            color: rgba(84, 26, 26, 0.4);
            font-style: italic;
        }

        .editorial-input:focus {
            border-bottom-color: rgba(84, 26, 26, 1);
        }

        /* STATE NOTICE CONTAINERS */
        .state-notice {
            display: none;
            margin-top: 1.5rem;
            padding: 1.5rem;
            border: 1px solid var(--dark-cocoa);
            font-size: 1.3rem;
            font-style: italic;
            animation: fadeIn 0.5s var(--ease-luxury);
        }

        /* ABSOLUTE FIXED SITE NAVIGATION HEADER */
        header {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 120px;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 4rem;
            background: transparent;
        }

        .logo-block img {
            height: 242px;
            object-fit: contain;
            display: block;
        }

        .logo-text-fallback {
            color: var(--soft-cream);
            font-size: 2.5rem;
            letter-spacing: 2px;
        }

        .nav-links-wrapper {
            display: flex;
            gap: 5rem;
            list-style: none;
        }

        .nav-anchor {
            font-size: 1.6rem;
            color: var(--soft-cream);
            text-decoration: none;
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            padding-bottom: 6px;
            transition: color 0.4s ease;
        }

        .nav-anchor::after {
            content: '';
            position: absolute;
            width: 100%;
            transform: scaleX(0);
            height: 1px;
            bottom: 0;
            left: 0;
            background-color: var(--soft-cream);
            transform-origin: bottom right;
            transition: transform 0.4s var(--ease-luxury);
        }

        .nav-anchor:hover::after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .utility-cart-trigger {
            background: transparent;
            border: none;
            color: var(--soft-cream);
            cursor: pointer;
            position: relative;
            display: flex;
            align-items: center;
        }

        .cart-svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        .cart-count-badge {
            position: absolute;
            top: -6px;
            right: -8px;
            background-color: var(--soft-cream);
            color: var(--dark-cocoa);
            font-size: 0.9rem;
            font-weight: bold;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* RESPONSIVE HAMBURGER INFRASTRUCTURE */
        .mobile-hamburger {
            display: none;
            background: transparent;
            border: none;
            color: var(--soft-cream);
            cursor: pointer;
            z-index: 2100;
        }

        .hamburger-lines {
            width: 32px;
            height: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .hamburger-line {
            width: 100%;
            height: 1px;
            background-color: var(--soft-cream);
            transition: all 0.4s var(--ease-luxury);
        }

        /* SLIDING FULLSCREEN INTERACTION PANEL */
        .fullscreen-menu-overlay {
            position: fixed;
            top: 0;
            right: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--dark-cocoa);
            z-index: 2000;
            transform: translateY(-100%);
            transition: var(--transition-panel);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 3rem;
        }

        .fullscreen-menu-overlay.active {
            transform: translateY(0);
        }

        .fullscreen-menu-link {
            font-size: 3.5rem;
            color: var(--soft-cream);
            text-decoration: none;
            text-transform: uppercase;
            cursor: pointer;
        }

        /* ASYMMETRICAL MULTI-PAGE CONTROLLER VIEWS */
        .view-panel {
            display: none;
            min-height: 100vh;
        }

        .view-panel-active {
            display: block;
            animation: paneFadeIn 0.9s var(--ease-luxury) forwards;
        }

        @keyframes paneFadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* SIDE CART SLIDING DRAWER SYSTEM */
        .cart-drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: rgba(40, 12, 12, 0.6);
            backdrop-filter: blur(4px);
            z-index: 2500;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.5s var(--ease-luxury);
        }

        .cart-drawer-overlay.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .cart-drawer-surface {
            position: absolute;
            top: 0;
            right: 0;
            width: 460px;
            max-width: 100%;
            height: 100vh;
            background-color: var(--warm-beige);
            color: var(--dark-cocoa);
            padding: 3.5rem 2.5rem;
            display: flex;
            flex-direction: column;
            transform: translateX(100%);
            transition: transform 0.6s var(--ease-luxury);
        }

        .cart-drawer-overlay.visible .cart-drawer-surface {
            transform: translateX(0);
        }

        .cart-items-scrollarea {
            flex: 1;
            overflow-y: auto;
            margin-top: 3rem;
            margin-bottom: 2rem;
        }

        .cart-item-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 0;
            border-bottom: 1px solid rgba(84, 26, 26, 0.15);
        }

        /* RESPONSIVE BREAKPOINT MATRICES */
        @media (max-width: 1120px) {
            header { padding: 0 2.5rem; height: 100px; }
            .nav-links-wrapper { display: none; }
            .mobile-hamburger { display: block; }
            .editorial-container { padding: 6rem 2rem; }
            .grid-2x, .grid-3x, .grid-4x { grid-template-columns: 1fr !important; gap: 4rem !important; }
            .floating-parallax-box { position: relative !important; top: 0 !important; right: 0 !important; transform: none !important; width: 100% !important; margin-top: 4rem; }
            .asymmetric-image-split { grid-template-columns: 1fr !important; }
            .asymmetric-image-split .floating-quote-card { position: relative !important; top: 0 !important; left: 0 !important; transform: none !important; margin: 3rem auto 0; width: 100% !important; }
        }

        /* GRID UTILITY ALIGNMENTS */
        .grid-2x { display: grid; grid-template-columns: repeat(2, 1fr); gap: 5rem; }
        .grid-3x { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; }
        .grid-4x { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
