        /* --- DESIGN SYSTEM & CSS VARIABLES --- */
        :root {
            --burgundy: #760031;
            --soft-mint: #C1EBE9;
            --light-bg: #F5F5F5;
            --text-dark: #111111;
            --white: #FFFFFF;
            --font-main: 'Public Sans', sans-serif;
            --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* --- RESET & BASE STYLES --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-family: var(--font-main);
            background-color: var(--light-bg);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        body {
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-smooth);
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        button, input {
            font-family: var(--font-main);
            border: none;
            outline: none;
            background: none;
        }

        /* --- REUSABLE UTILITIES --- */
        .section-padding {
            padding: 120px 8%;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 80px 5%;
            }
        }

        /* --- APP PAGES VISIBILITY --- */
        .app-page {
            display: none;
        }
        .app-page.active-page {
            display: block;
        }

        /* --- HEADER & NAVIGATION --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            height: 100px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 8%;
            z-index: 1000;
            transition: var(--transition-smooth);
        }

        header.scrolled {
            background-color: var(--light-bg);
            padding: 20px 8%;
            box-shadow: 0 5px 30px rgba(0,0,0,0.05);
        }

.logo {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.logo img {
    display: block;
    height: 248px; /* Adjust as needed */
    width: auto;
}
        .nav-center {
            display: flex;
            gap: 40px;
        }

        .nav-center a {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            position: relative;
        }

        .nav-center a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--burgundy);
            transition: var(--transition-smooth);
        }

        .nav-center a:hover::after {
            width: 100%;
        }

        /* Hamburger Menu Trigger */
        .menu-trigger {
            background-color: var(--burgundy);
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            transition: var(--transition-smooth);
            z-index: 1010;
        }

        .menu-trigger span {
            display: block;
            width: 24px;
            height: 2px;
            background-color: var(--white);
            transition: var(--transition-smooth);
        }

        /* Hamburger Animation */
        .menu-trigger.open span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .menu-trigger.open span:nth-child(2) {
            opacity: 0;
        }
        .menu-trigger.open span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        /* Fullscreen Navigation Overlay */
        .fullscreen-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--burgundy);
            z-index: 1005;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition-smooth);
        }

        .fullscreen-nav.open {
            opacity: 1;
            pointer-events: auto;
        }

        .fullscreen-links {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 35px;
        }

        .fullscreen-links a {
            color: var(--white);
            font-size: 2.5rem;
            font-weight: 300;
            letter-spacing: 4px;
            text-transform: uppercase;
            transition: var(--transition-smooth);
        }

        .fullscreen-links a:hover {
            letter-spacing: 10px;
            color: var(--soft-mint);
        }

        /* Responsive Navbar Display Toggle */
        @media (max-width: 992px) {
            .nav-center {
                display: none;
            }
        }

        /* --- HERO SECTION --- */
        .hero {
            height: 120vh;
            background-color: var(--light-bg);
            display: grid;
            grid-template-columns: 1.2fr 1.8fr;
            padding: 140px 8% 0 8%;
            position: relative;
        }

        .hero-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 2;
        }

        .hero-left h1 {
            font-size: clamp(3.5rem, 7vw, 6.5rem);
            line-height: 0.9;
            font-weight: 900;
            color: var(--burgundy);
            letter-spacing: -2px;
        }

        .hero-right {
            position: relative;
            height: 90%;
            align-self: center;
        }

        .hero-right img {
            border-radius: 4px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.1);
        }

        .bottom-floating-card {
            position: absolute;
            bottom: -50px;
            left: 8%;
            width: 450px;
            background-color: var(--soft-mint);
            color: var(--text-dark);
            padding: 40px;
            border-radius: 4px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            z-index: 10;
        }

        .bottom-floating-card p {
            font-size: 1.1rem;
            line-height: 1.6;
            font-weight: 500;
        }

        @media (max-width: 992px) {
            .hero {
                grid-template-columns: 1fr;
                height: auto;
                padding-bottom: 120px;
                gap: 40px;
            }
            .hero-right {
                height: 500px;
            }
            .bottom-floating-card {
                position: relative;
                left: 0;
                bottom: 0;
                width: 100%;
                margin-top: 20px;
            }
        }

        /* --- SECTION 2: THE COMFORT LAB --- */
        .comfort-lab {
            background-color: var(--burgundy);
            color: var(--white);
            position: relative;
            z-index: 1;
            padding-top: 160px;
        }

        .comfort-lab-intro {
            max-width: 900px;
            margin: 0 auto 80px auto;
            text-align: center;
            font-size: clamp(1.5rem, 3vw, 2.3rem);
            line-height: 1.5;
            font-weight: 300;
        }

        .collage-container {
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 30px;
            align-items: center;
        }

        .collage-card {
            background-color: rgba(255,255,255,0.05);
            border-radius: 4px;
            overflow: hidden;
            transition: var(--transition-smooth);
        }

        .collage-card:hover {
            transform: translateY(-10px);
        }

        .card-one {
            grid-column: 1 / 5;
            height: 600px;
        }

        .card-two {
            grid-column: 5 / 9;
            height: 400px;
        }

        .card-three {
            grid-column: 9 / 13;
            height: 500px;
        }

        @media (max-width: 992px) {
            .collage-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .card-one, .card-two, .card-three {
                grid-column: 1 / -1;
                height: 350px;
            }
        }

        /* --- SECTION 3: SOFA STORIES --- */
        .sofa-stories {
            background-color: var(--light-bg);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .stories-left {
            position: sticky;
            top: 140px;
            height: fit-content;
        }

        .stories-left h2 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: var(--burgundy);
            margin-bottom: 20px;
        }

        .stories-left p {
            font-size: clamp(1.8rem, 3vw, 2.8rem);
            line-height: 1.3;
            font-weight: 700;
            color: var(--text-dark);
        }

        .stories-timeline {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .timeline-block {
            border-left: 3px solid var(--burgundy);
            padding-left: 30px;
        }

        .timeline-year {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--burgundy);
            margin-bottom: 10px;
        }

        .timeline-block h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .timeline-block p {
            color: #555;
            line-height: 1.6;
            font-size: 1.05rem;
        }

        @media (max-width: 992px) {
            .sofa-stories {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .stories-left {
                position: relative;
                top: 0;
            }
        }

        /* --- SECTION 4: FEATURED COLLECTIONS --- */
        .featured-collections {
            background-color: var(--soft-mint);
            padding-right: 0;
            overflow: hidden;
        }

        .featured-collections h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            color: var(--burgundy);
            margin-bottom: 60px;
            letter-spacing: -1px;
        }

        .slider-wrapper {
            overflow-x: auto;
            padding-bottom: 30px;
            margin-right: -100px;
            -webkit-overflow-scrolling: touch;
        }

        .slider-wrapper::-webkit-scrollbar {
            height: 6px;
        }

        .slider-wrapper::-webkit-scrollbar-thumb {
            background-color: var(--burgundy);
            border-radius: 4px;
        }

        .slider-container {
            display: flex;
            gap: 40px;
            width: max-content;
            padding-right: 8%;
        }

        .collection-card {
            width: 480px;
            background-color: var(--white);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.05);
            transition: var(--transition-smooth);
        }

        .collection-card:hover {
            transform: scale(1.02);
        }

        .collection-img-box {
            height: 320px;
        }

        .collection-info {
            padding: 30px;
        }

        .collection-info h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            color: var(--burgundy);
        }

        .collection-info p {
            color: #444;
            line-height: 1.5;
        }

        @media (max-width: 576px) {
            .collection-card {
                width: 300px;
            }
            .collection-img-box {
                height: 220px;
            }
        }

        /* --- SECTION 5: MATERIAL ARCHIVE --- */
        .material-archive h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: var(--burgundy);
            font-weight: 800;
        }

        .archive-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .archive-column {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }

        .archive-story h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            position: relative;
            padding-bottom: 8px;
        }

        .archive-story h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--burgundy);
        }

        .archive-story p {
            color: #555;
            line-height: 1.6;
        }

        .archive-center-img {
            height: 650px;
            border-radius: 4px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        @media (max-width: 992px) {
            .archive-grid {
                grid-template-columns: 1fr;
            }
            .archive-center-img {
                height: 400px;
                grid-row: 1;
            }
        }

        /* --- SECTION 6: DESIGN LOOKBOOK --- */
        .design-lookbook {
            background-color: var(--burgundy);
            color: var(--white);
        }

        .design-lookbook h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 900;
            margin-bottom: 60px;
            text-align: center;
        }

        .lookbook-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px 40px;
        }

        .lookbook-item {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .lookbook-img-box {
            height: 500px;
            border-radius: 4px;
            overflow: hidden;
        }

        .lookbook-desc {
            font-size: 1.1rem;
            font-weight: 300;
            line-height: 1.6;
            border-left: 2px solid var(--soft-mint);
            padding-left: 15px;
        }

        @media (max-width: 768px) {
            .lookbook-grid {
                grid-template-columns: 1fr;
            }
            .lookbook-img-box {
                height: 350px;
            }
        }

        /* --- SECTION 7: IMMERSIVE SHOWROOM --- */
        .immersive-showroom {
            height: 100vh;
            background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('https://i.pinimg.com/736x/6b/ee/ed/6beeeda062a327fda247926956ee0c75.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 5%;
        }

        .showroom-card {
            background-color: var(--white);
            color: var(--text-dark);
            padding: 60px;
            max-width: 600px;
            text-align: center;
            border-radius: 4px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .showroom-card h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--burgundy);
            margin-bottom: 20px;
        }

        .showroom-card p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .explore-btn {
            display: inline-block;
            background-color: var(--burgundy);
            color: var(--white);
            padding: 15px 40px;
            font-weight: 700;
            letter-spacing: 2px;
            font-size: 0.9rem;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .explore-btn:hover {
            background-color: var(--text-dark);
            transform: translateY(-3px);
        }

        @media (max-width: 768px) {
            .immersive-showroom {
                background-attachment: scroll;
            }
            .showroom-card {
                padding: 40px 25px;
            }
        }

        /* --- SECTION 8: THE JOURNAL --- */
        .journal-section {
            background-color: var(--soft-mint);
        }

        .journal-section h2 {
            font-size: 3rem;
            font-weight: 900;
            color: var(--burgundy);
            margin-bottom: 60px;
            text-align: center;
        }

        .journal-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .journal-card {
            background-color: var(--white);
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        }

        .journal-img-box {
            height: 280px;
        }

        .journal-info {
            padding: 30px;
        }

        .journal-info h3 {
            font-size: 1.4rem;
            color: var(--burgundy);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .journal-info p {
            color: #444;
            line-height: 1.6;
        }

        @media (max-width: 992px) {
            .journal-grid {
                grid-template-columns: 1fr;
            }
        }

        /* --- SECTION 9: NEWSLETTER --- */
        .newsletter {
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding: 0;
            min-height: 80vh;
        }

        .newsletter-left {
            background-image: url('https://i.pinimg.com/736x/c6/74/7e/c6747e464f6f22ebee2824f1e6c0a1e7.jpg');
            background-size: cover;
            background-position: center;
        }

        .newsletter-right {
            background-color: var(--light-bg);
            padding: 80px 12%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .newsletter-right h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 900;
            color: var(--burgundy);
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .newsletter-right p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .form-block {
            margin-bottom: 40px;
        }

        .form-block h3 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            color: #333;
        }

        .sub-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .sub-form input {
            background-color: var(--white);
            padding: 16px 20px;
            border-radius: 4px;
            font-size: 1rem;
            border: 1px solid #ddd;
            width: 100%;
        }

        .sub-btn {
            background-color: var(--burgundy);
            color: var(--white);
            padding: 16px;
            border-radius: 4px;
            font-weight: 700;
            cursor: pointer;
            letter-spacing: 2px;
            transition: var(--transition-smooth);
            text-align: center;
        }

        .sub-btn:hover {
            background-color: var(--text-dark);
        }

        .unsubscribe-btn {
            background-color: #e0e0e0;
            color: var(--text-dark);
        }
        .unsubscribe-btn:hover {
            background-color: #cc0000;
            color: var(--white);
        }

        @media (max-width: 992px) {
            .newsletter {
                grid-template-columns: 1fr;
            }
            .newsletter-left {
                display: none;
            }
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--burgundy);
            color: var(--white);
            padding: 100px 8% 40px 8%;
        }

        .footer-brand {
            font-size: clamp(3.5rem, 8vw, 7.5rem);
            font-weight: 900;
            letter-spacing: -3px;
            line-height: 0.9;
            margin-bottom: 80px;
            text-align: center;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
            cursor: pointer;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .footer-col h4 {
            font-size: 1.1rem;
            letter-spacing: 2px;
            margin-bottom: 25px;
            color: var(--soft-mint);
            font-weight: 700;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-col ul li a {
            opacity: 0.8;
            font-size: 0.95rem;
        }

        .footer-col ul li a:hover {
            opacity: 1;
            color: var(--soft-mint);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
            font-size: 1.1rem;
            font-weight: 300;
            letter-spacing: 1px;
            color: var(--soft-mint);
        }

        @media (max-width: 768px) {
            .footer-columns {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-columns {
                grid-template-columns: 1fr;
            }
        }

        /* --- DYNAMIC PAGES: LAYOUT TEMPLATES --- */
        .editorial-page-hero {
            padding: 160px 8% 60px 8%;
            background-color: var(--white);
        }

        .editorial-page-hero h1 {
            font-size: clamp(3rem, 6vw, 5rem);
            color: var(--burgundy);
            font-weight: 900;
            margin-bottom: 20px;
        }

        .editorial-page-hero p {
            max-width: 800px;
            font-size: 1.3rem;
            line-height: 1.6;
            color: #555;
        }

        /* Alternate Showcase Layouts */
        .showcase-block {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 100px;
        }

        .showcase-block.alt {
            grid-template-columns: 0.8fr 1.2fr;
        }

        .showcase-block.alt .showcase-img-box {
            grid-column: 2;
        }
        .showcase-block.alt .showcase-text-box {
            grid-column: 1;
        }

        .showcase-img-box {
            height: 600px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 20px 45px rgba(0,0,0,0.08);
        }

        .showcase-text-box h2 {
            font-size: 2.5rem;
            color: var(--burgundy);
            margin-bottom: 20px;
            font-weight: 800;
        }

        .showcase-text-box p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #444;
            margin-bottom: 20px;
        }

        @media (max-width: 992px) {
            .showcase-block, .showcase-block.alt {
                grid-template-columns: 1fr !important;
            }
            .showcase-img-box {
                grid-column: auto !important;
                height: 380px;
            }
            .showcase-text-box {
                grid-column: auto !important;
            }
        }

        /* Documentary Layout Components */
        .doc-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        @media (max-width: 768px) {
            .doc-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Split Screen Modules */
        .split-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 80vh;
        }

        .split-left {
            background-color: var(--burgundy);
            color: var(--white);
            padding: 80px 12%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .split-left h2 {
            font-size: 3rem;
            margin-bottom: 30px;
            font-weight: 800;
        }

        .split-left p {
            font-size: 1.2rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        .split-right {
            background-color: var(--white);
            padding: 80px 12%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        @media (max-width: 992px) {
            .split-layout {
                grid-template-columns: 1fr;
            }
        }

        /* Legal Content Container */
        .legal-content {
            background-color: var(--white);
            padding: 60px 8%;
            max-width: 1000px;
            margin: 40px auto;
            border-radius: 4px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

        .legal-content h2 {
            font-size: 1.8rem;
            color: var(--burgundy);
            margin: 40px 0 20px 0;
        }

        .legal-content p, .legal-content ul {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 20px;
        }
        .legal-content ul {
            padding-left: 20px;
        }
        .menu-trigger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

@media (min-width: 769px) {
    .menu-trigger {
        display: none;
    }
}
