        /* --- DESIGN SYSTEM & BRAND VARIABLES --- */
        :root {
            --rose-signal: #D76C82;
            --deep-green: #0D4715;
            --soft-stone: #DCD7C9;
            --font-serif: 'Libre Baskerville', Georgia, serif;
            --font-sans: 'Inter', sans-serif;
            --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-fast: all 0.3s ease;
        }

        /* --- CORE RESET & BASE LAYOUTS --- */
        * { 
            box-sizing: border-box; 
            margin: 0; 
            padding: 0; 
            outline: none;
        }
        
        body {
            font-family: var(--font-sans);
            background-color: var(--soft-stone);
            color: #111111;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            line-height: 1.6;
        }

        /* --- TYPOGRAPHY PATTERNS --- */
        h1, h2, h3, h4, h5, .serif-display {
            font-family: var(--font-serif);
            font-weight: 400;
            letter-spacing: -0.02em;
        }

        p {
            font-weight: 300;
            font-size: 0.95rem;
            letter-spacing: 0.01em;
            color: rgba(17, 17, 17, 0.85);
        }

        .italic-quote {
            font-family: var(--font-serif);
            font-style: italic;
            color: var(--rose-signal);
            line-height: 1.4;
        }

        /* --- REFINED EDITORIAL BUTTON SYSTEM --- */
        .editorial-btn {
            display: inline-flex;
            align-items: center;
            padding: 14px 32px;
            border: 1px solid #111111;
            background: transparent;
            color: #111111;
            font-family: var(--font-sans);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            position: relative;
            overflow: hidden;
        }

        .editorial-btn:hover {
            background-color: #111111;
            color: var(--soft-stone);
        }

        .editorial-btn.light {
            border-color: var(--soft-stone);
            color: var(--soft-stone);
        }

        .editorial-btn.light:hover {
            background-color: var(--soft-stone);
            color: var(--deep-green);
        }

        /* --- STATIC SITE CONTENT CONTAINER FRAME --- */
        .view-frame {
            display: none;
            width: 100%;
            animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .view-frame.active-view {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- GLOBAL NAVIGATION & EDITORIAL BAR --- */
        header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            display: flex; justify-content: space-between; align-items: center;
            padding: 35px 5%;
            z-index: 1000;
            color: var(--soft-stone);
        }

        .logo img {
            height: 220px;
            margin-top: -5rem;
            width: auto;
            display: block;
            filter: invert(1);
        }

        nav.desktop-nav {
            display: flex; gap: 45px;
                        margin-top: -5rem;

        }

        nav.desktop-nav a {


            text-decoration: none;
            color: inherit;
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition-fast);
        }

        nav.desktop-nav a:hover, nav.desktop-nav a.active-link { 
            color: var(--rose-signal); 
        }
        
        .header-actions {
            display: flex;
            align-items: center;
            gap: 35px;
        }
        
        .cart-toggle { 
            position: relative; 
            background: none; 
                        margin-top: -5rem;

            border: none; 
            color: inherit; 
            font-family: var(--font-sans); 
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            cursor: pointer; 
        }

        .cart-count {
            position: absolute; top: -10px; right: -15px;
            background-color: var(--rose-signal); color: white;
            font-size: 0.65rem; width: 18px; height: 18px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-family: var(--font-sans);
        }

        /* Hamburger Control Elements */
        .hamburger {
                        margin-top: -5rem;

            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            background: none;
            border: none;
        }

        .hamburger span {
            width: 26px;
            height: 1px;
            background-color: var(--soft-stone);
            transition: var(--transition-fast);
        }

        .mobile-menu {
            position: fixed;
            top: 0; right: -100%; width: 100%; height: 100vh;
            background-color: var(--deep-green);
            z-index: 999;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 12%;
            transition: var(--transition-smooth);
        }

        .mobile-menu.active { right: 0; }

        .mobile-menu a {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            color: var(--soft-stone);
            text-decoration: none;
            margin-bottom: 25px;
            transition: var(--transition-smooth);
        }

        .mobile-menu a:hover { color: var(--rose-signal); padding-left: 15px; }

        .mobile-menu .close-btn {
            position: absolute; top: 40px; right: 5%;
            font-size: 2.5rem; color: var(--soft-stone); cursor: pointer;
        }

        /* --- THE LUXURY SPECIFICATION BAG (CART DRAWER) --- */
        .cart-drawer {
            position: fixed; top: 0; right: -500px; width: 500px; height: 100vh;
            background-color: #FFFFFF; box-shadow: -10px 0 40px rgba(0,0,0,0.05);
            z-index: 2000; padding: 50px; display: flex; flex-direction: column;
            transition: var(--transition-smooth);
        }

        .cart-drawer.active { right: 0; }

        .cart-header { 
            display: flex; justify-content: space-between; align-items: center; 
            border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 25px; 
        }

        .cart-header h3 { font-size: 1.5rem; }

        .cart-items { flex-grow: 1; overflow-y: auto; padding: 30px 0; }

        .cart-item { 
            display: flex; justify-content: space-between; align-items: flex-start; 
            margin-bottom: 30px; border-bottom: 1px solid rgba(0,0,0,0.05); padding-bottom: 20px;
        }

        .cart-item-details h4 { font-size: 1.1rem; margin-bottom: 5px; }
        
        .cart-item-details p { font-size: 0.85rem; color: #666; }

        .cart-item-remove { 
            background: none; border: none; color: var(--rose-signal); 
            cursor: pointer; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em;
            margin-top: 5px;
        }

        .cart-footer { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 25px; }

        .cart-total { 
            display: flex; justify-content: space-between; 
            font-family: var(--font-serif); font-size: 1.25rem; margin-bottom: 25px; 
        }

        .checkout-btn { 
            width: 100%; padding: 20px; background-color: var(--deep-green); 
            color: var(--soft-stone); border: none; font-family: var(--font-sans); 
            text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem;
            cursor: pointer; transition: var(--transition-smooth); 
        }

        .checkout-btn:hover { background-color: var(--rose-signal); color: white; }

        .cart-close { background: none; border: none; font-size: 2rem; cursor: pointer; line-height: 1; }

        /* --- HOMEPAGE SPECIFIC SECTIONS --- */
        section { position: relative; padding: 140px 10%; overflow: hidden; }

        /* SECTION 01: HERO ARCHETYPE */
        .hero {
            height: 100vh;
            background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.7)), url('https://i.pinimg.com/736x/62/0d/1e/620d1e45864bec4a2bf0a79dd001696d.jpg') center/cover no-repeat;
            display: grid;
            grid-template-columns: 1fr 2fr 2fr;
            align-items: center;
            color: var(--soft-stone);
            padding-top: 100px;
        }

        .hero-vertical-label {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            line-height: 1.1;
            color: var(--rose-signal);
            writing-mode: vertical-rl;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transform: rotate(180deg);
            justify-self: center;
        }

        .hero-product-frame {
            justify-self: center;
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .hero-product-frame img {
            max-width: 85%;
            height: auto;
            max-height: 65vh;
            filter: drop-shadow(0px 25px 50px rgba(0,0,0,0.6));
            animation: elegantFloat 7s ease-in-out infinite;
        }

        @keyframes elegantFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-headline-zone {
            padding-left: 50px;
        }

        .hero-headline-zone h1 {
            font-size: 4.5rem;
            line-height: 1.05;
            margin-bottom: 35px;
        }

        .hero-headline-zone p {
            color: rgba(220, 215, 201, 0.75);
            max-width: 420px;
            margin-bottom: 45px;
            font-size: 1rem;
        }

        .hero-issue-tag {
            position: absolute; bottom: 45px; left: 10%;
            font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase;
            color: rgba(220, 215, 201, 0.6);
        }

        /* SECTION 02: THE OBJECT INDEX */
        .object-index { background-color: var(--soft-stone); padding-top: 160px; }
        
        .section-heading { 
            font-size: 3.5rem; 
            margin-bottom: 100px; 
            text-align: center;
        }

        .catalog-row {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 100px;
            align-items: center;
            padding: 100px 0;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }

        .catalog-row:last-of-type { border-bottom: none; }

        .catalog-row:nth-child(even) { direction: rtl; }

        .catalog-row:nth-child(even) .catalog-details { direction: ltr; }

        .catalog-img-wrap {
            overflow: hidden;
            background-color: #E2DDD2;
        }

        .catalog-img-wrap img {
            width: 100%; height: auto; display: block;
            transition: var(--transition-smooth);
        }

        .catalog-img-wrap:hover img { transform: scale(1.04); }

        .catalog-details .category { 
            font-size: 0.75rem; text-transform: uppercase; 
            letter-spacing: 0.25em; color: var(--rose-signal); 
            margin-bottom: 20px; display: block;
            font-weight: 500;
        }

        .catalog-details h3 { font-size: 2.6rem; margin-bottom: 25px; line-height: 1.2; }
        
        .catalog-details p { margin-bottom: 40px; max-width: 520px; font-size: 1rem; color: rgba(0,0,0,0.75); }

        /* SECTION 03: TECHNOLOGY AS CULTURE */
        .tech-culture { background-color: var(--deep-green); color: var(--soft-stone); padding: 160px 10%; }
        
        .tech-culture .large-quote {
            font-size: 4rem; text-align: center; max-width: 1000px; margin: 0 auto 120px;
            line-height: 1.25; color: var(--soft-stone);
        }

        .culture-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; }
        
        .culture-col img { width: 100%; height: 350px; object-fit: cover; margin-bottom: 30px; filter: grayscale(15%); }
        
        .culture-col h4 { font-size: 1.8rem; margin-bottom: 20px; color: var(--rose-signal); }
        
        .culture-col p { color: rgba(220, 215, 201, 0.7); font-size: 0.95rem; line-height: 1.7; }

        /* SECTION 04: FUTURE LAB */
        .future-lab { background-color: var(--soft-stone); padding: 160px 10%; }
        
        .lab-wall { position: relative; width: 100%; height: 950px; margin-top: 60px; }
        
        .lab-item { position: absolute; background: #FFFFFF; padding: 18px; box-shadow: 0 15px 40px rgba(0,0,0,0.04); }
        
        .lab-item img { display: block; width: 100%; height: auto; object-fit: cover; }
        
        .lab-item .annotation { font-family: var(--font-serif); font-style: italic; font-size: 0.85rem; margin-top: 12px; color: #444444; line-height: 1.4; }
        
        .item-1 { top: 5%; left: 2%; width: 340px; transform: rotate(-2deg); }
        
        .item-2 { top: 32%; left: 36%; width: 440px; transform: rotate(1deg); z-index: 5; }
        
        .item-3 { top: 10%; right: 2%; width: 320px; transform: rotate(3deg); }
        
        .item-4 { bottom: 2%; left: 10%; width: 300px; transform: rotate(-1deg); }

        /* SECTION 05: CURATED COLLECTIONS */
        .collections { background-color: var(--rose-signal); color: var(--soft-stone); padding: 160px 10%; }
        
        .collections h2 { color: var(--soft-stone); margin-bottom: 80px; font-size: 3.5rem; text-align: center; }
        
        .panel-container { display: flex; flex-direction: column; gap: 40px; }
        
        .editorial-panel {
            background-color: rgba(13, 71, 21, 0.12);
            padding: 80px 60px;
            display: flex; justify-content: space-between; align-items: center;
            border-left: 5px solid var(--deep-green);
            transition: var(--transition-smooth);
            cursor: pointer;
        }

        .editorial-panel:hover { 
            background-color: rgba(13, 71, 21, 0.25); 
            transform: translateX(20px); 
        }

        .editorial-panel h3 { font-size: 3rem; color: var(--soft-stone); }
        
        .editorial-panel .panel-link {
            font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em;
        }

        /* SECTION 06: THE DESIGN ARCHIVE */
        .design-archive { background-color: var(--soft-stone); display: grid; grid-template-columns: 1fr 1.3fr; gap: 100px; padding: 160px 10%; }
        
        .archive-left h2 { font-size: 4rem; line-height: 1.1; position: sticky; top: 160px; }
        
        .accordion-item { border-bottom: 1px solid rgba(17,17,17,0.1); padding: 35px 0; }
        
        .accordion-header { display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
        
        .accordion-header h4 { font-size: 1.6rem; }
        
        .accordion-icon { font-size: 1.8rem; transition: var(--transition-smooth); font-weight: 300; }
        
        .accordion-content { max-height: 0; overflow: hidden; transition: var(--transition-smooth); font-size: 1rem; color: rgba(0,0,0,0.7); line-height: 1.8; }
        
        .accordion-item.active .accordion-content { max-height: 250px; padding-top: 25px; }
        
        .accordion-item.active .accordion-icon { transform: rotate(45deg); color: var(--rose-signal); }

        /* SECTION 07: FUTURE STORIES */
        .future-stories { background-color: var(--deep-green); color: var(--soft-stone); padding: 160px 10%; }
        
        .stories-grid { display: grid; grid-template-columns: 1.8fr 1fr; gap: 80px; margin-top: 80px; }
        
        .featured-story img { width: 100%; height: 550px; object-fit: cover; margin-bottom: 35px; }
        
        .featured-story h3 { font-size: 2.8rem; margin-bottom: 25px; line-height: 1.2; color: var(--soft-stone); }
        
        .featured-story p { color: rgba(220,215,201,0.8); font-size: 1.05rem; margin-bottom: 35px; max-width: 700px; }
        
        .side-stories { display: flex; flex-direction: column; gap: 50px; }
        
        .side-story { border-top: 1px solid rgba(220,215,201,0.2); padding-top: 30px; }
        
        .side-story h4 { font-size: 1.5rem; margin-bottom: 15px; color: var(--rose-signal); }
        
        .side-story p { color: rgba(220,215,201,0.7); font-size: 0.95rem; }

        /* SECTION 08: PRODUCT GALLERY */
        .product-gallery { background-color: var(--soft-stone); padding: 160px 5%; }
        
        .gallery-collage { display: grid; grid-template-columns: repeat(12, 1fr); gap: 25px; height: 1000px; }
        
        .gallery-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-smooth); filter: grayscale(10%); }
        
        .gallery-img:hover { filter: none; }
        
        .gi-1 { grid-column: span 4; grid-row: span 6; }
        
        .gi-2 { grid-column: span 8; grid-row: span 4; }
        
        .gi-3 { grid-column: span 5; grid-row: span 6; }
        
        .gi-4 { grid-column: span 3; grid-row: span 4; }
        
        .gi-5 { grid-column: span 4; grid-row: span 2; }

        /* SECTION 09: TECHNOLOGY TIMELINE */
        .timeline-sec { background-color: var(--rose-signal); color: var(--soft-stone); padding: 160px 10%; }
        
        .timeline-container { position: relative; max-width: 900px; margin: 80px auto 0; padding-left: 60px; border-left: 1px solid rgba(220,215,201,0.3); }
        
        .timeline-node { position: relative; margin-bottom: 80px; }
        
        .timeline-node::before { content: ''; position: absolute; left: -65px; top: 8px; width: 11px; height: 11px; background-color: var(--soft-stone); border-radius: 50%; }
        
        .timeline-year { font-family: var(--font-serif); font-size: 2.5rem; color: var(--deep-green); display: block; margin-bottom: 15px; }
        
        .timeline-node p { font-size: 1.1rem; color: rgba(220,215,201,0.9); max-width: 700px; }

        /* SECTION 10: NEWSLETTER BLOCK WITH INTEGRATED UNSUBSCRIBE */
        .newsletter-sec { background-color: var(--deep-green); padding: 140px 10%; display: flex; justify-content: center; }
        
        .newsletter-card { background-color: var(--soft-stone); padding: 90px; width: 100%; max-width: 900px; text-align: center; box-shadow: 0 40px 80px rgba(0,0,0,0.2); }
        
        .newsletter-card h2 { font-size: 3rem; margin-bottom: 25px; }
        
        .newsletter-card p { max-width: 550px; margin: 0 auto 45px; font-size: 1.05rem; color: rgba(0,0,0,0.7); }
        
        .form-group { display: flex; gap: 20px; max-width: 600px; margin: 0 auto; }
        
        .form-group input { flex-grow: 1; padding: 18px 25px; border: 1px solid rgba(0,0,0,0.15); background: transparent; font-family: var(--font-sans); font-size: 0.95rem; }
        
        .form-group input:focus { border-color: var(--deep-green); }
        
        .unsubscribe-link { display: inline-block; margin-top: 35px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(0,0,0,0.5); cursor: pointer; text-decoration: underline; transition: var(--transition-fast); }
        
        .unsubscribe-link:hover { color: var(--rose-signal); }

        /* --- INTERNAL SUB-PAGE DYNAMIC PLATFORM --- */
        .subpage-container {
            padding: 180px 10% 120px;
            background-color: var(--soft-stone);
            min-height: 100vh;
        }

        .exhibition-hero { text-align: center; margin-bottom: 120px; }
        
        .exhibition-hero h1 { font-size: 5rem; margin-bottom: 30px; line-height: 1; }
        
        .exhibition-hero p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

        /* MULTI-LAYOUT CATALOG SYSTEM PER CATEGORY */
        .category-block { margin-bottom: 140px; }
        
        .category-block h2 { font-size: 3rem; margin-bottom: 60px; border-bottom: 2px solid var(--deep-green); padding-bottom: 15px; color: var(--deep-green); }

        /* Layout A: Grid structural blocks (Smart Living) */
        .layout-grid-twos { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
        
        .product-card-premium { background: rgba(25,25,25,0.03); padding: 40px; display: flex; flex-direction: column; justify-content: space-between; }
        
        .product-card-premium img { width: 100%; height: 380px; object-fit: cover; margin-bottom: 30px; }

        /* Layout B: Asymmetrical offset strip (Audio) */
        .layout-asymmetrical { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
        
        .layout-asymmetrical.reverse { grid-template-columns: 1fr 1.4fr; }
        
        .layout-asymmetrical img { width: 100%; height: 500px; object-fit: cover; }

        /* Layout C: Wide Cinematic banner rows (Mobility) */
        .layout-cinematic-row { margin-bottom: 80px; }
        
        .layout-cinematic-row img { width: 100%; height: 550px; object-fit: cover; margin-bottom: 35px; }
        
        .cinematic-details { display: flex; justify-content: space-between; align-items: flex-start; }
        
        .cinematic-details h3 { font-size: 2.2rem; }
        
        .cinematic-details p { max-width: 500px; }

        /* Layout D: Compact list matrix architecture (Computing & Wearables) */
        .layout-matrix-list { display: flex; flex-direction: column; }
        
        .matrix-row { display: grid; grid-template-columns: 1.5fr 2fr 1fr; padding: 40px 0; border-bottom: 1px solid rgba(0,0,0,0.1); align-items: center; }
        
        .matrix-row img { width: 120px; height: 120px; object-fit: cover; }
        
        .matrix-row h3 { font-size: 1.6rem; }

        /* COLLECTIONS STYLE: LUXURY LOOKBOOK CHAPTERS */
        .lookbook-chapter { margin-bottom: 160px; }
        
        .lookbook-chapter .chapter-meta { font-size: 0.85rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose-signal); display: block; margin-bottom: 15px; }
        
        .lookbook-chapter h2 { font-size: 3.5rem; margin-bottom: 40px; }
        
        .lookbook-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 40px; }
        
        .lookbook-grid img { width: 100%; height: 600px; object-fit: cover; }
        
        .lookbook-grid img.side-img { height: 600px; }

        /* STORIES PAGE ARCHITECTURE */
        .stories-matrix { display: grid; grid-template-columns: 2fr 1fr; gap: 80px; }
        
        .story-hero-card { border-bottom: 1px solid rgba(17,17,17,0.15); padding-bottom: 60px; margin-bottom: 60px; }
        
        .story-hero-card img { width: 100%; height: 600px; object-fit: cover; margin-bottom: 40px; }
        
        .story-hero-card h2 { font-size: 3.5rem; margin-bottom: 25px; line-height: 1.15; }
        
        .story-text-block { font-size: 1.1rem; color: rgba(0,0,0,0.8); max-width: 750px; display: flex; flex-direction: column; gap: 25px; }
        
        .story-sidebar-grid { display: flex; flex-direction: column; gap: 60px; }
        
        .sidebar-story-item img { width: 100%; height: 240px; object-fit: cover; margin-bottom: 20px; }
        
        .sidebar-story-item h3 { font-size: 1.6rem; margin-bottom: 15px; }

        /* ABOUT MANIFESTO STYLING */
        .manifesto-container { max-width: 900px; margin: 0 auto; }
        
        .manifesto-lead { font-size: 2.2rem; font-family: var(--font-serif); line-height: 1.4; margin-bottom: 80px; color: var(--deep-green); }
        
        .manifesto-image-spread { display: grid; grid-template-columns: 1fr 1fr; gap: 45px; margin: 80px 0; }
        
        .manifesto-image-spread img { width: 100%; height: 500px; object-fit: cover; }
        
        .manifesto-body { font-size: 1.15rem; line-height: 1.9; color: rgba(0,0,0,0.8); display: flex; flex-direction: column; gap: 35px; }

        /* CONTACT FORM SYSTEM */
        .contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; padding-top: 40px; }
        
        .contact-meta-zone h2 { font-size: 3.5rem; margin-bottom: 40px; line-height: 1.1; }
        
        .contact-details-block { margin-bottom: 45px; }
        
        .contact-details-block h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--rose-signal); margin-bottom: 10px; }
        
        .contact-details-block p { font-size: 1.2rem; font-family: var(--font-serif); color: #111; }
        
        .luxury-form { display: flex; flex-direction: column; gap: 40px; }
        
        .field-group { display: flex; flex-direction: column; position: relative; }
        
        .field-group label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 15px; color: #444; }
        
        .field-group input, .field-group textarea { background: transparent; border: none; border-bottom: 1px solid rgba(17,17,17,0.2); padding: 15px 0; font-family: var(--font-sans); font-size: 1.05rem; color: #111; transition: var(--transition-fast); }
        
        .field-group input:focus, .field-group textarea:focus { border-bottom-color: var(--deep-green); }

        /* --- REFINED POLICY SUBPAGE ARCHITECTURES --- */
        .policy-document { max-width: 800px; margin: 0 auto; padding-top: 40px; }
        
        .policy-document h1 { font-size: 4rem; margin-bottom: 20px; color: var(--deep-green); }
        
        .policy-document .meta-date { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--rose-signal); display: block; margin-bottom: 60px; }
        
        .policy-section { margin-bottom: 50px; }
        
        .policy-section h3 { font-size: 1.8rem; margin-bottom: 20px; }
        
        .policy-section p { font-size: 1.05rem; color: rgba(0,0,0,0.75); line-height: 1.8; margin-bottom: 15px; }

        /* --- SYSTEM GLOBAL FOOTER --- */
        footer { background-color: var(--deep-green); color: var(--soft-stone); padding: 120px 10% 50px; }
        
        .footer-wordmark { text-align: center; font-size: 7vw; font-family: var(--font-serif); letter-spacing: 0.05em; color: rgba(220, 215, 201, 0.06); margin-bottom: 80px; line-height: 1; text-transform: uppercase; user-select: none; }
        
        .footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 50px; margin-bottom: 100px; }
        
        .footer-col h5 { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 30px; color: var(--rose-signal); }
        
        .footer-col ul { list-style: none; }
        
        .footer-col ul li { margin-bottom: 15px; }
        
        .footer-col ul li a { color: rgba(220, 215, 201, 0.65); text-decoration: none; font-size: 0.9rem; transition: var(--transition-fast); cursor: pointer; }
        
        .footer-col ul li a:hover { color: var(--soft-stone); padding-left: 6px; }
        
        .footer-bottom { border-top: 1px solid var(--rose-signal); padding-top: 40px; display: flex; justify-content: space-between; align-items: center; }
        
        .footer-bottom span { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(220,215,201,0.6); }
        
        .footer-tagline { font-family: var(--font-sans); font-weight: 400; color: var(--soft-stone) !important; }

        /* --- ADAPTIVE ARCHITECTURE (RESPONSIVE) --- */
        @media(max-width: 1120px) {
            .hero { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; padding: 180px 8% 100px; text-align: center; }
            .hero-vertical-label { writing-mode: horizontal-tb; transform: rotate(0); font-size: 3rem; margin-bottom: 40px; }
            .hero-headline-zone { padding-left: 0; }
            .hero-headline-zone h1 { font-size: 3.5rem; }
            .hero-headline-zone p { margin: 0 auto 40px; }
            .catalog-row, .catalog-row:nth-child(even) { grid-template-columns: 1fr; gap: 50px; direction: ltr; }
            .culture-columns, .stories-matrix, .design-archive, .contact-split { grid-template-columns: 1fr; gap: 60px; }
            .lookbook-grid { grid-template-columns: 1fr; }
            .lookbook-grid img.side-img { display: none; }
            .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 40px; }
            nav.desktop-nav { display: none; }
            .hamburger { display: flex; }
            .cart-drawer { width: 100%; right: -100%; padding: 40px; }
        }

        @media(max-width: 768px) {
            section { padding: 100px 6%; }
            .subpage-container { padding: 140px 6% 80px; }
            .exhibition-hero h1 { font-size: 3.2rem; }
            .section-heading, .collections h2, .archive-left h2, .story-hero-card h2, .policy-document h1 { font-size: 2.5rem; }
            .editorial-panel h3 { font-size: 1.8rem; }
            .editorial-panel { padding: 40px 25px; }
            .layout-grid-twos, .matrix-row { grid-template-columns: 1fr; gap: 40px; }
            .matrix-row img { display: none; }
            .footer-columns { grid-template-columns: 1fr; }
            .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
            .newsletter-card { padding: 40px 20px; }
            .form-group { flex-direction: column; }
        }
