        /* CSS RESET & CORE VARIABLES */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        :root {
            --primary-red: #D2001A;
            --golden-yellow: #FFDE00;
            --royal-purple: #6F38C5;
            --white: #FFFFFF;
            --black: #111111;
            --light-neutral: #F7F5F0;
            --font-editorial: 'Federo', sans-serif;
            --font-body: 'Inter', sans-serif;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.3s ease;
        }

        html { 
            scroll-behavior: smooth; 
            font-family: var(--font-body); 
            color: var(--black); 
            background-color: var(--white);
        }
        
        body { overflow-x: hidden; width: 100%; }

        /* LOADING SCREEN */
        #loading-screen {
            position: fixed; inset: 0; background: var(--black); z-index: 10000;
            display: flex; flex-direction: column; align-items: center; justify-content: center;
            transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }
        #loading-screen.fade-out { opacity: 0; pointer-events: none; }
        .spinner {
            width: 80px; height: 80px; border: 3px solid rgba(255,222,0,0.1);
            border-top: 3px solid var(--golden-yellow); border-radius: 50%;
            animation: spin 1s cubic-bezier(0.5, 0, 0.5, 1) infinite;
            margin-bottom: 2rem;
        }
        @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

        /* CONSTANT SCROLL PROGRESS INDICATOR */
        #scroll-progress {
            position: fixed; top: 0; left: 0; height: 5px;
            background: linear-gradient(90deg, var(--primary-red), var(--royal-purple), var(--golden-yellow));
            z-index: 1001; width: 0%; transition: width 0.1s linear;
        }

        /* MOUSE-FOLLOW GLOW EFFECT DETECTOR */
        #mouse-glow {
            position: fixed; width: 400px; height: 400px; background: radial-gradient(circle, rgba(111,56,197,0.08) 0%, rgba(255,255,255,0) 70%);
            top: 0; left: 0; transform: translate(-50%, -50%); pointer-events: none; z-index: 9999; display: none;
        }
        @media(min-width: 1025px) { #mouse-glow { display: block; } }

        /* TYPOGRAPHY METRICS */
        h1, h2, h3, h4, h5, h6, .editorial-heading {
            font-family: var(--font-editorial);
            font-weight: 400;
            letter-spacing: 0.02em;
            line-height: 1.15;
        }
        p { font-size: 1.05rem; line-height: 1.8; color: #333333; font-weight: 300; }
        
        .section-label {
            font-family: var(--font-editorial);
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 0.25em;
            color: var(--primary-red);
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        /* BUTTON SYSTEMS */
        .btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 1.2rem 2.5rem; font-family: var(--font-editorial); text-transform: uppercase;
            letter-spacing: 0.15em; font-size: 0.85rem; text-decoration: none; border: none;
            cursor: pointer; position: relative; overflow: hidden; transition: var(--transition-smooth);
            z-index: 1; border-radius: 0;
        }
        .btn-red { background-color: var(--primary-red); color: var(--white); }
        .btn-red::before, .btn-purple::before {
            content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0;
            background: rgba(255, 222, 0, 0.3); border-radius: 50%; transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease; z-index: -1;
        }
        .btn-red:hover::before, .btn-purple:hover::before { width: 300px; height: 300px; }
        .btn-red:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(210,0,26,0.25); }
        
        .btn-purple { background-color: var(--royal-purple); color: var(--white); }
        .btn-purple:hover { transform: translateY(-4px); box-shadow: 0 12px 25px rgba(111,56,197,0.25); }
        
        .btn-outline { background: transparent; border: 1px solid var(--white); color: var(--white); }
        .btn-outline:hover { background: var(--white); color: var(--black); transform: translateY(-4px); }

        /* STICKY GLASSMORPHIC SINGLE HEADER */
        header {
            position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; height: 100px;
            padding: 2rem 5%; display: flex; align-items: center; justify-content: space-between;
            transition: var(--transition-smooth);
        }
        header.scrolled {
            padding: 1rem 5%;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.4);
        }
        
        .logo-area { display: flex; align-items: center; text-decoration: none; }
        .logo-text { font-family: var(--font-editorial); font-size: 1.8rem; color: var(--primary-red); font-weight: bold; }
        .logo-text span { color: var(--royal-purple); }

        /* CENTER NAV LINKS - STRICTLY THREE ELEMENTS */
        .nav-center-menu { display: flex; align-items: center; gap: 3.5rem; list-style: none; }
        .nav-center-menu a {
            text-decoration: none; font-family: var(--font-editorial); font-size: 1.1rem;
            color: var(--white); position: relative; padding: 0.5rem 0;
            transition: var(--transition-smooth); display: inline-block;
        }
        header.scrolled .nav-center-menu a { color: var(--black); }
        
        /* Growing Line From Center & Scale Animation */
        .nav-center-menu a::after {
            content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px;
            background-color: var(--golden-yellow); transition: var(--transition-smooth); transform: translateX(-50%);
        }
        .nav-center-menu a:hover { color: var(--golden-yellow) !important; transform: scale(1.08); }
        .nav-center-menu a:hover::after { width: 100%; }

        /* RIGHT ACTION PANEL */
        .nav-right-actions { display: flex; align-items: center; }
        .search-circle-trigger {
            width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3);
            background: transparent; display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: var(--transition-smooth); color: var(--white);
        }
        header.scrolled .search-circle-trigger { color: var(--black); border-color: rgba(0,0,0,0.1); }
        
        .search-circle-trigger:hover {
            background-color: var(--primary-red); color: var(--white) !important;
            border-color: var(--primary-red); transform: scale(1.1);
        }
        .search-circle-trigger svg { width: 20px; height: 20px; fill: currentColor; }

        /* MOBILE HAMBURGER BUTTON */
        .hamburger-button {
            display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer;
        }
        .hamburger-button span { width: 28px; height: 2px; background-color: var(--white); transition: var(--transition-fast); }
        header.scrolled .hamburger-button span { background-color: var(--black); }

        /* COMPONENT CONTROLLERS & SECTIONS */
        section { padding: 9rem 5%; position: relative; overflow: hidden; width: 100%; }
        .view-container { display: none; }
        .view-container.active-view { display: block; }

        /* ========================================== */
        /* 1. HOME VIEW EDITORIAL SECTIONS             */
        /* ========================================== --> */
        
        /* S1: HERO EXPERIENCE */
        .hero-section {
            height: 120vh; display: flex; align-items: center; justify-content: center; text-align: center;
            position: relative; color: var(--white); overflow: hidden;
            background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.65));
        }
        .hero-bg-video-wrapper {
            position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2;
            background: url('https://images.unsplash.com/photo-1543353071-10c8ba85a904?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            animation: slowZoom 30s ease-in-out infinite alternate;
        }
        @keyframes slowZoom { 0% { transform: scale(1); } 100% { transform: scale(1.15); } }
        
        /* Interactive floating assets overlays */
        .floating-particle {
            position: absolute; pointer-events: none; opacity: 0.65; z-index: -1;
            animation: floatSlow 12s ease-in-out infinite alternate;
        }
        @keyframes floatSlow {
            0% { transform: translateY(0px) rotate(0deg) scale(1); }
            100% { transform: translateY(-50px) rotate(25deg) scale(1.05); }
        }

        /* Ambient Steam Matrix Animation */
        .steam-dome { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 40%; pointer-events: none; opacity: 0.35; mix-blend-mode: screen; }
        .steam-puff { position: absolute; bottom: -20px; background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%); border-radius: 50%; animation: riseUp 7s infinite linear; }
        @keyframes riseUp {
            0% { transform: translateY(0) scale(0.6); opacity: 0; }
            30% { opacity: 0.8; }
            100% { transform: translateY(-250px) scale(1.8); opacity: 0; }
        }

        .hero-inner-box { max-width: 950px; padding: 0 2rem; position: relative; }
        .hero-inner-box h1 { font-size: 5rem; line-height: 1.1; margin-bottom: 2rem; text-shadow: 0 4px 20px rgba(0,0,0,0.4); }
        .hero-inner-box p { font-size: 1.3rem; max-width: 750px; margin: 0 auto 3rem; color: rgba(255,255,255,0.9); }
        .hero-btn-group { display: flex; gap: 2rem; justify-content: center; align-items: center; }

        /* S2: DAILY SPECIAL */
        .daily-special-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; max-width: 1400px; margin: 0 auto; }
        .asymmetric-image-block { position: relative; margin-bottom: -14rem; z-index: 10; overflow: hidden; box-shadow: 0 35px 70px rgba(0,0,0,0.15); }
        .asymmetric-image-block img { width: 100%; height: 750px; object-fit: cover; display: block; transition: var(--transition-smooth); }
        .asymmetric-image-block:hover img { transform: scale(1.04); }

        /* S3: INGREDIENT STORY */
        .ingredient-story-section { background-color: var(--royal-purple); color: var(--white); text-align: center; padding: 12rem 5%; }
        .ingredient-story-section p { color: rgba(255,255,255,0.85); max-width: 800px; margin: 0 auto 3rem; font-size: 1.15rem; }
        .orbit-container { position: relative; width: 300px; height: 300px; margin: 4rem auto 0; }
        .orbit-center-node { position: absolute; inset: 0; margin: auto; width: 90px; height: 90px; background: var(--golden-yellow); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--black); box-shadow: 0 0 40px rgba(255,222,0,0.4); }
        .orbiting-satellite { position: absolute; width: 55px; height: 55px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; animation: orbitLoop 18s linear infinite; top: 0; left: 0; bottom: 0; right: 0; margin: auto; }
        @keyframes orbitLoop {
            0% { transform: rotate(0deg) translateX(140px) rotate(0deg); }
            100% { transform: rotate(360deg) translateX(140px) rotate(-360deg); }
        }

        /* S4: CHEF'S JOURNAL */
        .chef-journal-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 6rem; align-items: center; max-width: 1400px; margin: 0 auto; }
        .portrait-frame { position: relative; }
        .portrait-frame img { width: 100%; height: 620px; object-fit: cover; box-shadow: 25px 25px 0px var(--light-neutral); }
        .handwritten-quote-overlay { position: absolute; bottom: -2rem; right: -2rem; background: var(--golden-yellow); color: var(--black); padding: 2rem; font-family: var(--font-editorial); font-size: 1.6rem; max-width: 340px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }

        /* S5: RECIPE JOURNEY TIMELINE */
        .timeline-wrapper { display: flex; justify-content: space-between; margin-top: 5rem; gap: 2rem; position: relative; max-width: 1400px; margin-inline: auto; }
        .timeline-wrapper::before { content: ''; position: absolute; top: 75px; left: 5%; width: 90%; height: 2px; background: #E0E0E0; z-index: 1; }
        .timeline-stage-card { flex: 1; text-align: center; position: relative; z-index: 2; cursor: pointer; }
        .stage-icon-sphere { width: 150px; height: 150px; background: var(--light-neutral); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; font-size: 3rem; transition: var(--transition-smooth); border: 2px solid transparent; }
        .timeline-stage-card:hover .stage-icon-sphere { background: var(--white); border-color: var(--primary-red); transform: scale(1.1) translateY(-10px); box-shadow: 0 20px 40px rgba(210,0,26,0.1); }
        .timeline-stage-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; color: var(--black); }
        .timeline-stage-card p { font-size: 0.95rem; color: #666; padding: 0 1rem; }

        /* S6: FEATURED RECIPES MASONRY */
        .masonry-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 4rem; max-width: 1400px; margin-inline: auto; }
        .masonry-item { background: var(--white); overflow: hidden; position: relative; box-shadow: 0 15px 45px rgba(0,0,0,0.04); display: flex; flex-direction: column; }
        .masonry-item.height-tall { height: 680px; }
        .masonry-item.height-medium { height: 580px; }
        .masonry-item.height-short { height: 490px; }
        .masonry-img-container { position: relative; width: 100%; flex-grow: 1; overflow: hidden; }
        .masonry-img-container img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); }
        .masonry-content-box { padding: 2rem; background: var(--white); position: relative; z-index: 5; }
        
        .masonry-hover-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(111,56,197,0.92), transparent); opacity: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 3rem; transition: var(--transition-smooth); z-index: 3; }
        .masonry-item:hover .masonry-hover-overlay { opacity: 1; }
        .masonry-item:hover .masonry-img-container img { transform: scale(1.08); }

        /* S7: FLAVOUR LAB */
        .flavour-lab-section { background-color: var(--golden-yellow); padding: 8rem 5%; }
        .flavour-lab-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 5rem; align-items: center; max-width: 1400px; margin: 0 auto; }
        .lab-illustration-holder { font-size: 15rem; text-align: center; animation: skewShake 6s ease-in-out infinite alternate; }
        @keyframes skewShake { 0% { transform: rotate(-5deg); } 100% { transform: rotate(5deg); } }
        
        /* Continuous marquee ticker banner */
        .marquee-strip { position: absolute; bottom: 0; left: 0; width: 100%; background: var(--black); color: var(--white); overflow: hidden; padding: 1rem 0; white-space: nowrap; }
        .marquee-content { display: inline-block; animation: marqueeRun 25s linear infinite; font-family: var(--font-editorial); font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.2em; }
        @keyframes marqueeRun { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }

        /* S8: WORLD CUISINES INTERACTIVE MAP SIMULATOR */
        .map-interactive-container { background: var(--light-neutral); padding: 5rem; border-radius: 0; text-align: center; max-width: 1400px; margin: 3rem auto 0; position: relative; }
        .vector-map-graphic { width: 100%; height: 400px; background: radial-gradient(circle, #DFDCD4 20%, transparent 20%), radial-gradient(circle, #DFDCD4 20%, transparent 20%); background-size: 15px 15px; background-position: 0 0, 7.5px 7.5px; opacity: 0.6; }
        .map-hotspot-pin { position: absolute; width: 24px; height: 24px; background: var(--primary-red); border-radius: 50%; cursor: pointer; border: 4px solid var(--white); box-shadow: 0 0 20px var(--primary-red); transition: var(--transition-fast); }
        .map-hotspot-pin:hover { transform: scale(1.4); background: var(--royal-purple); box-shadow: 0 0 25px var(--royal-purple); }
        .destination-overlay-card { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); background: var(--white); padding: 2rem; box-shadow: 0 30px 60px rgba(0,0,0,0.12); display: none; width: 90%; max-width: 450px; text-align: left; border-left: 5px solid var(--primary-red); }

        /* S9: COOKING TECHNIQUES DARK GALLERY */
        .dark-techniques-section { background-color: var(--black); color: var(--white); }
        .dark-techniques-section p { color: #A0A0A0; }
        .collage-container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; max-width: 1400px; margin-inline: auto; }
        .collage-img-box { height: 450px; overflow: hidden; position: relative; }
        .collage-img-box img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); filter: grayscale(40%); }
        .collage-img-box:hover img { transform: scale(1.06); filter: grayscale(0%); }
        .collage-text-meta { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent); }

        /* S10: CINEMATIC VIDEO KITCHEN */
        .video-kitchen-section { padding: 0; height: 85vh; width: 100%; position: relative; background: var(--black); }
        .video-viewport-fallback { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; pointer-events: none; }
        .video-editorial-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.7)); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; color: var(--white); padding: 3rem; }

        /* S11: KITCHEN ESSENTIALS PRODUCT GRID */
        .essentials-editorial-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; max-width: 1400px; margin-inline: auto; }
        .essential-product-card { background: var(--white); border: 1px solid #EEEEEE; padding: 2rem; transition: var(--transition-smooth); text-align: center; }
        .essential-product-card img { width: 100%; height: 220px; object-fit: contain; margin-bottom: 1.5rem; transition: var(--transition-smooth); }
        .essential-product-card:hover { border-color: var(--royal-purple); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
        .essential-product-card:hover img { transform: scale(1.06) rotate(2deg); }

        /* S12: HEALTHY LIVING CURVED INTERACTION */
        .healthy-living-section { background-color: var(--royal-purple); color: var(--white); padding: 12rem 5%; }
        .healthy-living-section p { color: rgba(255,255,255,0.8); }
        .split-curved-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; max-width: 1400px; margin: 0 auto; }
        .chart-visual-simulation { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
        .chart-row-bar { height: 12px; background: rgba(255,255,255,0.1); width: 100%; position: relative; }
        .chart-fill-indicator { height: 100%; background: var(--golden-yellow); position: absolute; top:0; left:0; width: 0%; transition: width 2s cubic-bezier(0.16, 1, 0.3, 1); }

        /* S13: COMMUNITY PINTEREST MASONRY */
        .pinterest-gallery-columns { column-count: 4; column-gap: 1.5rem; margin-top: 4rem; max-width: 1400px; margin-inline: auto; }
        .pinterest-brick { break-inside: avoid; background: var(--light-neutral); margin-bottom: 1.5rem; position: relative; overflow: hidden; cursor: pointer; }
        .pinterest-brick img { width: 100%; height: auto; display: block; transition: var(--transition-smooth); }
        .pinterest-brick-overlay { position: absolute; inset: 0; background: rgba(212,0,26,0.9); opacity: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; color: var(--white); text-align: center; padding: 2rem; transition: var(--transition-smooth); }
        .pinterest-brick:hover .pinterest-brick-overlay { opacity: 1; }
        .pinterest-brick:hover img { transform: scale(1.05); }

        /* S14: FOOD MAGAZINE NEWSPAPER FRONT PAGE */
        .magazine-front-row { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 5rem; max-width: 1400px; margin: 4rem auto 0; border-top: 4px solid var(--black); padding-top: 3rem; }
        .magazine-lead-article { border-right: 1px solid #E0E0E0; padding-right: 4rem; }
        .magazine-lead-article img { width: 100%; height: 480px; object-fit: cover; margin-bottom: 2rem; }
        .magazine-sidebar-column { display: flex; flex-direction: column; gap: 2.5rem; }
        .sidebar-item-micro { border-bottom: 1px dashed #CCCCCC; padding-bottom: 1.5rem; }

        /* S15: SEASONAL COLLECTION EXHIBIT */
        .seasonal-showcase-container { display: flex; flex-direction: column; gap: 8rem; margin-top: 5rem; max-width: 1400px; margin-inline: auto; }
        .seasonal-row-block { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
        .seasonal-row-block.invert-layout { direction: rtl; }
        .seasonal-row-block.invert-layout .seasonal-text-pane { direction: ltr; }
        .seasonal-img-frame img { width: 100%; height: 550px; object-fit: cover; box-shadow: 0 30px 60px rgba(0,0,0,0.08); }

        /* S16: LUXURY NEWSLETTER HUB */
        .newsletter-luxury-section { background-color: var(--primary-red); color: var(--white); text-align: center; padding: 10rem 5%; }
        .newsletter-luxury-section p { color: rgba(255,255,255,0.85); max-width: 650px; margin: 0 auto 3rem; }
        .luxury-newsletter-card { background: var(--white); color: var(--black); max-width: 650px; margin: 0 auto; padding: 3.5rem; box-shadow: 0 40px 80px rgba(0,0,0,0.15); text-align: left; }
        .input-element-group { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
        .input-element-group input { padding: 1.2rem; border: 1px solid #E0E0E0; font-family: var(--font-body); font-size: 1rem; width: 100%; border-radius: 0; outline: none; }
        .input-element-group input:focus { border-color: var(--royal-purple); }
        .newsletter-actions-flex { display: flex; gap: 1rem; }
        .validation-response-node { margin-top: 1.5rem; font-weight: 500; font-size: 0.95rem; display: none; }

        /* S17: FINAL HERO CONVERSION */
        .final-hero-section {
            height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center;
            background: linear-gradient(-45deg, #1A0B2E, #2C061F, #0F0C1B, #440012);
            background-size: 400% 400%; animation: gradientShifting 15s ease infinite; color: var(--white);
        }
        @keyframes gradientShifting { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

        /* ========================================== */
        /* 2. RECIPES VIEW CONTROLS                  */
        /* ========================================== --> */
        .catalog-layout-grid { display: grid; grid-template-columns: 0.3fr 1.7fr; gap: 4rem; max-width: 1400px; margin: 4rem auto 0; }
        .filter-sidebar-sticky { position: sticky; top: 120px; height: fit-content; display: flex; flex-direction: column; gap: 2.5rem; background: var(--light-neutral); padding: 2.5rem; }
        .filter-widget-box h4 { font-size: 1.1rem; margin-bottom: 1.2rem; text-transform: uppercase; letter-spacing: 0.1em; border-bottom: 1px solid #DDD; padding-bottom: 0.5rem; }
        .filter-option-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
        .filter-option-list label { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; font-size: 0.95rem; }
        .recipes-display-pane { display: flex; flex-direction: column; gap: 4rem; }
        .pagination-bar { display: flex; justify-content: center; gap: 1rem; margin-top: 4rem; }
        .pagination-node { width: 45px; height: 45px; border: 1px solid #DDD; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition-fast); text-decoration: none; color: var(--black); }
        .pagination-node.active-node, .pagination-node:hover { background: var(--primary-red); color: var(--white); border-color: var(--primary-red); }

        /* ========================================== */
        /* 3. CONTACT VIEW STRUCTURES                */
        /* ========================================== --> */
        .contact-layout-split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; max-width: 1400px; margin: 4rem auto 0; }
        .contact-form-hull { background: var(--light-neutral); padding: 4rem; }
        .contact-form-hull input, .contact-form-hull textarea { width: 100%; padding: 1.2rem; margin-bottom: 1.5rem; border: 1px solid #DDD; border-radius: 0; font-family: var(--font-body); font-size: 1rem; }
        .info-card-block { display: flex; flex-direction: column; gap: 3rem; }
        .mock-map-graphic { height: 350px; background: #E5E3DF; width: 100%; border: 1px solid #CCC; position: relative; }
        .mock-map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 2.5rem; }

        /* ========================================== */
        /* 4. ABOUT CULINARY STUDIO VIEW              */
        /* ========================================== --> */
        .about-studio-timeline { display: flex; flex-direction: column; gap: 4rem; max-width: 1000px; margin: 5rem auto 0; position: relative; }
        .about-studio-timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: #E0E0E0; transform: translateX(-50%); }
        .timeline-epoch-row { display: flex; justify-content: space-between; width: 100%; position: relative; }
        .timeline-epoch-row:nth-child(even) { flex-direction: row-reverse; }
        .epoch-content-panel { width: 45%; background: var(--light-neutral); padding: 2.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
        .epoch-pointer-dot { width: 16px; height: 16px; background: var(--primary-red); border-radius: 50%; position: absolute; left: 50%; top: 30px; transform: translateX(-50%); border: 3px solid var(--white); z-index: 5; }
        .team-grid-showroom { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; max-width: 1400px; margin: 4rem auto 0; }
        .chef-profile-card { text-align: center; }
        .chef-profile-card img { width: 100%; height: 380px; object-fit: cover; margin-bottom: 1.5rem; filter: grayscale(100%); transition: var(--transition-smooth); }
        .chef-profile-card:hover img { filter: grayscale(0%); }

        /* ========================================== */
        /* 5. BLOG PLATFORM VIEW                      */
        /* ========================================== --> */
        .blog-magazine-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 5rem; max-width: 1400px; margin: 4rem auto 0; }
        .blog-articles-feed { display: flex; flex-direction: column; gap: 5rem; }
        .blog-card-wide img { width: 100%; height: 460px; object-fit: cover; margin-bottom: 2rem; }

        /* ========================================== */
        /* 6. CATEGORIES NAVIGATION BROWSER            */
        /* ========================================== --> */
        .categories-grid-browser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; max-width: 1400px; margin: 4rem auto 0; }
        .category-interactive-box { position: relative; height: 450px; overflow: hidden; cursor: pointer; display: flex; align-items: flex-end; padding: 3rem; }
        .category-interactive-box img { position: absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: var(--transition-smooth); z-index: 1; }
        .category-interactive-box::before { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,0.85) 20%, transparent 80%); z-index: 2; }
        .category-interactive-box-content { position: relative; z-index: 3; color: var(--white); }
        .category-recipe-count-tag { background: var(--golden-yellow); color: var(--black); padding: 0.3rem 0.8rem; font-size: 0.8rem; font-family: var(--font-editorial); display: inline-block; margin-top: 1rem; transform: translateY(20px); opacity: 0; transition: var(--transition-smooth); }
        .category-interactive-box:hover img { transform: scale(1.08); }
        .category-interactive-box:hover .category-recipe-count-tag { transform: translateY(0); opacity: 1; }

        /* ========================================== */
        /* 7. RECIPE DETAILS BLUEPRINT                */
        /* ========================================== --> */
        .recipe-blueprint-hero { height: 75vh; position: relative; background: var(--black); }
        .recipe-blueprint-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.65; }
        .recipe-blueprint-hero-caption { position: absolute; bottom: 0; left: 0; width: 100%; padding: 5rem 5%; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: var(--white); }
        .blueprint-execution-matrix { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 6rem; max-width: 1400px; margin: 5rem auto 0; }
        .ingredients-shopping-checklist { background: var(--light-neutral); padding: 4rem; height: fit-content; }
        .checklist-row { display: flex; align-items: center; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid #E0E0E0; font-size: 1.1rem; }
        .checklist-row input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--primary-red); cursor: pointer; }
        .method-steps-ordered-list { display: flex; flex-direction: column; gap: 3rem; }
        .method-step-node { display: flex; gap: 2rem; }
        .method-step-number-badge { width: 50px; height: 50px; background: var(--royal-purple); color: var(--white); font-family: var(--font-editorial); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
        
        /* Nutrition matrix layout */
        .nutrition-panel-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; }
        .nutrition-micro-capsule { border: 2px solid var(--black); padding: 1.5rem; text-align: center; }
        .nutrition-micro-capsule div:first-child { font-size: 1.8rem; font-family: var(--font-editorial); margin-bottom: 0.5rem; }

        /* ========================================== */
        /* 8. FAQ ACCORDION SUITE                     */
        /* ========================================== --> */
        .faq-accordion-container { max-width: 950px; margin: 4rem auto 0; display: flex; flex-direction: column; gap: 1.5rem; }
        .faq-accordion-row { border: 1px solid #E0E0E0; background: var(--white); }
        .faq-accordion-header { padding: 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; transition: var(--transition-fast); }
        .faq-accordion-header h3 { font-size: 1.25rem; color: var(--black); }
        .faq-accordion-icon-state { font-size: 1.5rem; transition: var(--transition-smooth); }
        .faq-accordion-body-drawer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1); background: var(--light-neutral); }
        .faq-accordion-body-content { padding: 2.5rem; border-top: 1px solid #E0E0E0; }
        .faq-accordion-row.row-expanded .faq-accordion-body-drawer { max-height: 1000px; }
        .faq-accordion-row.row-expanded .faq-accordion-icon-state { transform: rotate(45deg); color: var(--primary-red); }
        .faq-accordion-row.row-expanded .faq-accordion-header { background: var(--light-neutral); }

        /* ========================================== */
        /* 9. LEGAL PAGES COMPLIANCE                  */
        /* ========================================== --> */
        .legal-split-framework { display: grid; grid-template-columns: 0.25fr 0.75fr; gap: 5rem; max-width: 1400px; margin: 4rem auto 0; }
        .legal-sticky-sidebar-nav { position: sticky; top: 120px; height: fit-content; display: flex; flex-direction: column; gap: 1rem; }
        .legal-nav-anchor { padding: 1rem 1.5rem; background: var(--light-neutral); text-decoration: none; color: var(--black); font-family: var(--font-editorial); cursor: pointer; transition: var(--transition-fast); }
        .legal-nav-anchor:hover, .legal-nav-anchor.active-anchor { background: var(--royal-purple); color: var(--white); }
        .legal-article-body { display: flex; flex-direction: column; gap: 3.5rem; }
        .legal-clause-card { background: var(--white); border-left: 4px solid var(--primary-red); padding: 3rem; box-shadow: 0 15px 40px rgba(0,0,0,0.03); }
        .legal-clause-card h3 { font-size: 1.6rem; margin-bottom: 1.2rem; display: flex; align-items: center; gap: 1rem; }
        
        /* EXPANDABLE CLAUSE UNIT */
        .expandable-clause-container { margin-top: 2rem; border: 1px solid #E0E0E0; }
        .expandable-clause-trigger { padding: 1.5rem; background: var(--light-neutral); cursor: pointer; font-family: var(--font-editorial); display: flex; justify-content: space-between; }
        .expandable-clause-drawer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: var(--white); }
        .expandable-clause-container.clause-open .expandable-clause-drawer { max-height: 500px; padding: 2rem; border-top: 1px solid #E0E0E0; }

        /* ========================================== */
        /* GLOBAL BRAND FOOTER SYSTEM                 */
        /* ========================================== --> */
        footer { background-color: var(--black); color: #A0A0A0; padding: 8rem 5% 3rem; position: relative; overflow: hidden; border-top: 8px solid var(--primary-red); }
        .footer-gradient-glow-1 { position: absolute; top: -200px; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(210,0,26,0.15) 0%, transparent 70%); pointer-events: none; }
        .footer-gradient-glow-2 { position: absolute; bottom: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(111,56,197,0.18) 0%, transparent 70%); pointer-events: none; }
        
        .footer-master-grid { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 4rem; max-width: 1400px; margin: 0 auto; position: relative; z-index: 5; }
        .footer-column-box h4 { color: var(--white); font-size: 1.15rem; margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.15em; position: relative; }
        .footer-column-box h4::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 35px; height: 2px; background: var(--golden-yellow); }
        .footer-links-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
        .footer-links-list a { color: #A0A0A0; text-decoration: none; transition: var(--transition-fast); cursor: pointer; display: inline-block; }
        .footer-links-list a:hover { color: var(--golden-yellow); transform: translateX(5px); }
        
        .footer-horizontal-baseline { max-width: 1400px; margin: 6rem auto 0; padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; font-size: 0.9rem; position: relative; z-index: 5; }
        .footer-legal-inline-anchors { display: flex; gap: 2rem; }
        .footer-legal-inline-anchors a { color: #A0A0A0; text-decoration: none; cursor: pointer; transition: var(--transition-fast); }
        .footer-legal-inline-anchors a:hover { color: var(--white); }

        /* BACK TO TOP HAT INTERACTION BUTTON */
        .chef-hat-scroll-top-button {
            position: fixed; bottom: 40px; right: 40px; width: 65px; height: 65px;
            background: var(--primary-red); border: none; border-radius: 50%;
            display: flex; align-items: center; justify-content: center; cursor: pointer;
            box-shadow: 0 15px 35px rgba(210,0,26,0.4); opacity: 0; visibility: hidden;
            transition: var(--transition-smooth); z-index: 999; color: var(--white);
        }
        .chef-hat-scroll-top-button.reveal-btn { opacity: 1; visibility: visible; }
        .chef-hat-scroll-top-button:hover { background: var(--royal-purple); transform: translateY(-8px) scale(1.05); box-shadow: 0 20px 40px rgba(111,56,197,0.4); }
        .chef-hat-scroll-top-button svg { width: 32px; height: 32px; fill: currentColor; }

        /* RESPONSIVE ADAPTATION ARCHITECTURE */
        @media(max-width: 1200px) {
            .masonry-container { grid-template-columns: repeat(2, 1fr); }
            .essentials-editorial-grid { grid-template-columns: repeat(2, 1fr); }
            .collage-container { grid-template-columns: repeat(2, 1fr); }
            .categories-grid-browser { grid-template-columns: repeat(2, 1fr); }
            .footer-master-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
        }

        @media(max-width: 1024px) {
            .hero-inner-box h1 { font-size: 3.8rem; }
            .daily-special-grid, .chef-journal-grid, .flavour-lab-grid, .split-curved-layout, .magazine-front-row, .seasonal-row-block, .catalog-layout-grid, .contact-layout-split, .blueprint-execution-matrix, .legal-split-framework { grid-template-columns: 1fr !important; gap: 4rem; }
            .asymmetric-image-block { margin-bottom: 0; }
            .timeline-wrapper { flex-direction: column; gap: 4rem; }
            .timeline-wrapper::before { display: none; }
            .magazine-lead-article { border-right: none; padding-right: 0; }
            .seasonal-row-block.invert-layout { direction: ltr; }
            .team-grid-showroom { grid-template-columns: repeat(2, 1fr); }
        }

        @media(max-width: 768px) {
            .hamburger-button { display: flex; }
            .nav-center-menu {
                position: fixed; top: 0; right: -100%; width: 75%; height: 100vh;
                background: var(--black); flex-direction: column; justify-content: center;
                gap: 3rem; transition: var(--transition-smooth); box-shadow: -20px 0 60px rgba(0,0,0,0.3);
            }
            .nav-center-menu.mobile-open { right: 0; }
            .nav-center-menu a { color: var(--white) !important; font-size: 1.5rem; }
            .header-actions .btn { display: none; }
            .masonry-container, .essentials-editorial-grid, .collage-container, .pinterest-gallery-columns, .categories-grid-browser, .team-grid-showroom, .nutrition-panel-grid { grid-template-columns: 1fr !important; column-count: 1; }
            .footer-master-grid { grid-template-columns: 1fr; }
            .footer-horizontal-baseline { flex-direction: column; gap: 2rem; text-align: center; }
            .hero-inner-box h1 { font-size: 2.8rem; }
            .contact-form-hull { padding: 2rem; }
        }
    </style>
