        /* --- BRAND DESIGN SYSTEM --- */
        :root {
            --burgundy: #3A0519;
            --gold: #E8C999;
            --nude: #ECDCBF;
            --cream: #F1E3D3;
            --burgundy-rgb: 58, 5, 25;
            
            --serif: 'Cormorant Garamond', serif;
            --sans: 'Montserrat', sans-serif;
            --transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* Fluid Normalization */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }


        
        html, body {
            background-color: var(--burgundy);
            color: var(--cream);
            font-family: var(--sans);
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--burgundy); }
        ::-webkit-scrollbar-thumb { background: var(--gold); }

        /* Typography Hierarchy */
        h1, h2, h3, h4, .editorial-title {
            font-family: var(--serif);
            font-weight: 300;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }

        p {
            font-family: var(--sans);
            font-weight: 300;
            font-size: 0.95rem;
            letter-spacing: 0.03em;
            line-height: 1.8;
            color: rgba(241, 227, 211, 0.85);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
.newsletter-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    margin-top:40px;
}

.newsletter-card{
    padding:32px;
    border:1px solid rgba(0,0,0,.08);
    background:#590606;
}

.newsletter-card h3{
    margin-bottom:16px;
    text-transform:uppercase;
    letter-spacing:.08em;
}

.newsletter-card small{
    display:block;
    margin-top:14px;
    opacity:.7;
    line-height:1.6;
}

#newsletter-message{
    margin-top:24px;
    text-align:center;
    font-size:14px;
    font-weight:500;
}



        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition);
        }

        /* --- STRUCTURE & NAVIGATION COMPONENTS --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100px;
            z-index: 1000;
            padding: 2rem 4%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        header.scrolled {
            padding: 1.2rem 4%;
            background: rgba(58, 5, 25, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(232, 201, 153, 0.15);
        }

.logo { display: flex; align-items: center; justify-content: center; cursor: pointer; user-select: none; } .logo img { height: 240px; width: auto; display: block; object-fit: contain; transition: opacity 0.3s ease, transform 0.3s ease; } .logo:hover img { opacity: 0.9; transform: scale(1.02); } /* Desktop */ @media (min-width: 1024px) { .logo img { height: 252px; } }
        nav {
            display: flex;
            gap: 2.5rem;
        }

        .nav-link {
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 400;
            position: relative;
            padding: 0.5rem 0;
            cursor: pointer;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--gold);
            transition: var(--transition);
        }

        .nav-link:hover::after, .nav-link.active::after {
            width: 100%;
        }

        .discover-btn {
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 0.8rem 2rem;
            border: 1px solid var(--gold);
            background: transparent;
            color: var(--gold);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .discover-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--gold);
            transition: var(--transition);
            z-index: -1;
        }

        .discover-btn:hover {
            color: var(--burgundy);
        }

        .discover-btn:hover::before {
            left: 0;
        }

        /* Hamburger Responsive Trigger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            z-index: 1010;
            background: transparent;
            border: none;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 1px;
            background: var(--gold);
            transition: var(--transition);
        }

        .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .hamburger.active span:nth-child(2) { opacity: 0; }
        .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

        /* Fullscreen Mobile Overarching Drawer */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--burgundy);
            z-index: 1005;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transition: var(--transition);
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu .nav-link {
            font-size: 1.5rem;
        }

        /* --- MULTI-PAGE SPA CONTROL --- */
        .app-page {
            display: none;
            opacity: 0;
            transform: translateY(15px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .app-page.active-page {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* Universal Section Sizing */
        section {
            padding: 8rem 8% 6rem 8%;
            position: relative;
        }

        /* --- RENDERED APPARATUS PAGES --- */
        
        /* 1. HOME PAGE SPECIFICS */
        #home-page { padding: 0; }
        
        .hero-split {
            height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 650px;
        }

        .hero-left {
            background-color: var(--burgundy);
            padding: 0 10% 0 16%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }

        .hero-left h1 {
            font-size: clamp(2.5rem, 4vw, 5rem);
            color: var(--cream);
            margin-bottom: 2rem;
        }

        .hero-left blockquote {
            font-family: var(--serif);
            font-style: italic;
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 3rem;
            border-left: 2px solid var(--gold);
            padding-left: 1.5rem;
        }

        .hero-right {
            position: relative;
            overflow: hidden;
        }

        .hero-right:hover img {
            transform: scale(1.05);
        }

        /* Silk Philosophy */
        .philosophy-section {
            background-color: var(--nude);
            color: var(--burgundy);
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 6rem;
            align-items: center;
        }

        .philosophy-section p {
            color: rgba(58, 5, 25, 0.8);
        }

        .section-tag {
            font-size: 0.75rem;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--burgundy);
            margin-bottom: 1.5rem;
            display: block;
            font-weight: 500;
        }

        .philosophy-section h2 {
            font-size: clamp(2.2rem, 3.5vw, 4rem);
            margin-bottom: 2.5rem;
        }

        .editorial-split-text {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
        }

        .philosophy-img-container {
            height: 550px;
            box-shadow: 20px 20px 0px rgba(58, 5, 25, 0.05);
            overflow: hidden;
        }

        /* Collection Panels Alternating */
        .collection-showcase {
            background-color: var(--gold);
            color: var(--burgundy);
            padding: 0;
        }

        .showcase-panel {
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: 70vh;
            min-height: 500px;
        }

        .showcase-panel:nth-child(even) {
            direction: rtl;
        }

        .showcase-panel:nth-child(even) .panel-text {
            direction: ltr;
        }

        .panel-img {
            overflow: hidden;
        }

        .panel-text {
            padding: 0 15%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            background: rgba(232, 201, 153, 0.3);
        }

        .panel-text h3 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .panel-text p {
            color: rgba(58, 5, 25, 0.85);
            margin-bottom: 2rem;
        }

        /* Parallax Fixed Block */
        .parallax-section {
            height: 60vh;
            background-image: linear-gradient(rgba(58, 5, 25, 0.5), rgba(58, 5, 25, 0.5)), url('https://i.pinimg.com/736x/6e/23/94/6e2394c8190d2d6d3e7aa2db9329c3f8.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 10%;
        }

        .parallax-section h2 {
            font-size: clamp(2rem, 3.5vw, 4.5rem);
            font-style: italic;
            color: var(--cream);
            max-width: 900px;
        }

        /* Transformation Stories Overview */
        .stories-section {
            background-color: var(--cream);
            color: var(--burgundy);
        }

        .stories-section h2 {
            font-size: 3.5rem;
            text-align: center;
            margin-bottom: 4rem;
        }

        .stories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .story-card {
            background: rgba(58, 5, 25, 0.03);
            border: 1px solid rgba(58, 5, 25, 0.08);
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            height: 450px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            transition: var(--transition);
        }

        .story-card .avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1.5rem;
            border: 2px solid var(--gold);
        }

        .story-card h4 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .story-metrics {
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: var(--gold);
            background: var(--burgundy);
            padding: 0.3rem 1rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }

        .story-card p {
            color: rgba(58, 5, 25, 0.8);
            font-size: 0.9rem;
        }

        .story-overlay-narrative {
            position: absolute;
            bottom: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--burgundy);
            color: var(--cream);
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            transition: var(--transition);
        }

        .story-overlay-narrative p {
            color: rgba(241, 227, 211, 0.9);
            font-style: italic;
        }

        .story-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(58, 5, 25, 0.08);
        }

        .story-card:hover .story-overlay-narrative {
            bottom: 0;
        }

        /* Premium Newsletter Sign-up */
        .newsletter-section {
            background-color: var(--burgundy);
            text-align: center;
            padding: 10rem 10%;
        }

        .newsletter-section h2 {
            font-size: clamp(2.5rem, 4vw, 4.5rem);
            color: #ffa113;
            margin-bottom: 1.5rem;
        }

        .newsletter-section p {
            max-width: 600px;
            margin: 0 auto 3rem auto;
        }

        .input-group {
            max-width: 550px;
            margin: 0 auto;
            display: flex;
            position: relative;
            border-bottom: 1px solid #ffa113;
        }

        .input-group input {
            width: 100%;
            background: transparent;
            border: none;
            padding: 1rem 0;
            color: var(--cream);
            font-family: var(--sans);
            font-size: 1rem;
            letter-spacing: 0.05em;
        }

        .input-group input::placeholder {
            color: rgba(241, 227, 211, 0.4);
        }

        .input-group button {
            background: transparent;
            border: none;
            color: var(--gold);
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            cursor: pointer;
            padding-left: 1rem;
            transition: var(--transition);
        }

        .input-group button:hover {
            color: var(--cream);
            transform: translateX(5px);
        }

        /* 2. COLLECTIONS PAGE SPECIFICS */
        .page-hero {
            padding: 12rem 8% 6rem 8%;
            text-align: center;
        }
        
        .collections-hero {
            background-color: var(--gold);
            color: var(--burgundy);
        }

        .collections-hero h1, .rituals-hero h1, .journal-hero h1, .about-hero h1, .ingredients-hero h1, .transformations-hero h1, .contact-hero h1 {
            font-size: clamp(3rem, 6vw, 6.5rem);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .collections-hero p { color: rgba(58, 5, 25, 0.8); max-width: 700px; margin: 0 auto; }

        .collection-editorial-block {
            padding: 6rem 8%;
            background: var(--cream);
            color: var(--burgundy);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            border-bottom: 1px solid rgba(58, 5, 25, 0.1);
        }

        .collection-editorial-block:nth-child(even) {
            background: var(--nude);
            direction: rtl;
        }

        .collection-editorial-block:nth-child(even) .col-content {
            direction: ltr;
        }

        .col-media {
            height: 600px;
            overflow: hidden;
        }

        .col-content h2 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #3A0519;
        }
        .col-content p{
                        color: #3A0519;

        }

        .col-content .narrative-lead {
            font-family: var(--serif);
            font-size: 1.4rem;
            font-style: italic;
            margin-bottom: 2rem;
            line-height: 1.6;
                        color: #3A0519;

        }

        .col-details {
            margin-top: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
                        color: #3A0519;

            border-top: 1px solid rgba(58, 5, 25, 0.15);
            padding-top: 2rem;
        }

        .col-details h5 {
            font-family: var(--sans);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.5rem;
            color: #3A0519;
        }

        .col-details p {
            font-size: 0.85rem;
            line-height: 1.6;
                        color: #3A0519;

        }

        /* 3. RITUALS PAGE SPECIFICS */
        .rituals-hero {
            background-color: var(--nude);
            color: var(--burgundy);
        }
        .rituals-hero p { color: rgba(58, 5, 25, 0.8); max-width: 700px; margin: 0 auto; }

        .ritual-timeline-container {
            background: var(--burgundy);
            padding: 8rem 12%;
        }

        .ritual-node {
            display: grid;
            grid-template-columns: 0.4fr 1.6fr;
            gap: 4rem;
            margin-bottom: 8rem;
            position: relative;
        }

        .ritual-node:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 4rem;
            left: 2rem;
            width: 1px;
            height: calc(100% + 4rem);
            background: rgba(232, 201, 153, 0.2);
        }

        .ritual-step-number {
            font-family: var(--serif);
            font-size: 4rem;
            color: var(--gold);
            line-height: 1;
            text-align: left;
        }

        .ritual-card-inner {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 3.5rem;
            align-items: center;
        }

        .ritual-card-inner h3 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--gold);
        }

        .ritual-media-frame {
            height: 400px;
            overflow: hidden;
            border: 1px solid rgba(232, 201, 153, 0.2);
        }

        /* 4. JOURNAL PAGE SPECIFICS */
        .journal-hero {
            background-color: var(--burgundy);
            color: var(--cream);
            border-bottom: 1px solid rgba(232, 201, 153, 0.2);
        }
        .journal-hero p { color: var(--nude); max-width: 700px; margin: 0 auto; }

        .journal-grid {
            background: var(--burgundy);
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            padding: 6rem 8%;
        }

        .journal-card {
            cursor: pointer;
        }

        .journal-card:nth-child(3n+1) {
            grid-column: span 2;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 3rem;
            align-items: center;
        }

        .journal-media {
            height: 450px;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .journal-card:nth-child(3n+1) .journal-media {
            margin-bottom: 0;
            height: 550px;
        }

        .journal-meta {
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 0.8rem;
            display: block;
        }

        .journal-card h3 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .journal-card:hover img {
            transform: scale(1.03);
        }

        /* 5. ABOUT PAGE SPECIFICS */
        .about-hero {
            height: 70vh;
            background-image: linear-gradient(rgba(58, 5, 25, 0.6), rgba(58, 5, 25, 0.7)), url('https://i.pinimg.com/736x/8c/e7/17/8ce717394c9a7e6233ff010998285914.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .about-longform {
            background: var(--cream);
            color: var(--burgundy);
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 5rem;
        }

        .about-longform h2 { font-size: 3.5rem; }
        .about-longform p { color: rgba(58, 5, 25, 0.85); font-size: 1.1rem; line-height: 1.9; }

        .founder-block {
            background: var(--nude);
            color: var(--burgundy);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        .founder-info h3 { font-size: 3rem; margin-bottom: 0.5rem; }
        .founder-title { font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; display: block; font-weight: 600; }
        .founder-info p { color: rgba(58, 5, 25, 0.85); font-style: italic; }

        .values-grid {
            background: var(--burgundy);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            text-align: center;
        }

        .value-card h4 { font-size: 1.8rem; color: var(--gold); margin-bottom: 1rem; }

        /* 6. INGREDIENTS PAGE SPECIFICS */
        .ingredients-hero { background-color: var(--gold); color: var(--burgundy); }
        .ingredients-hero p { color: rgba(58, 5, 25, 0.8); max-width: 700px; margin: 0 auto; }

        .ingredients-container { background: var(--cream); color: var(--burgundy); padding: 4rem 8%; }
        
        .ingredient-editorial-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            padding: 6rem 0;
            align-items: center;
            border-bottom: 1px solid rgba(58, 5, 25, 0.1);
        }

        .ingredient-editorial-row:last-child { border-bottom: none; }
        .ingredient-editorial-row:nth-child(even) { direction: rtl; }
        .ingredient-editorial-row:nth-child(even) .ing-content { direction: ltr; }

        .ing-media { height: 450px; overflow: hidden; }
        .ing-content h2 { font-size: 3rem; margin-bottom: 1.5rem; }
        .ing-content p { color: rgba(58, 5, 25, 0.85); }

        /* 7. TRANSFORMATIONS PAGE SPECIFICS */
        .transformations-hero { background-color: var(--cream); color: var(--burgundy); }
        .transformations-hero p { color: rgba(58, 5, 25, 0.8); max-width: 700px; margin: 0 auto; }

        .case-study-gallery { background: var(--nude); color: var(--burgundy); padding: 6rem 8%; }
        
        .case-study-item {
            background: var(--cream);
            padding: 4rem;
            margin-bottom: 4rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        .case-images-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .case-img-label {
            text-align: center;
            font-size: 0.75rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-top: 0.8rem;
            color: var(--burgundy);
            display: block;
        }

        .case-info h3 { font-size: 2.5rem; margin-bottom: 1rem; }
        .case-info .duration { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); display: block; margin-bottom: 1.5rem; font-weight: 600; }

        /* 8. CONTACT PAGE SPECIFICS */
        .contact-hero { background-color: var(--burgundy); color: var(--cream); padding-bottom: 2rem; }
        
        .contact-split-layout {
            background: var(--burgundy);
            display: grid;
            grid-template-columns: 0.9fr 1.1fr;
            gap: 6rem;
            padding: 2rem 8% 8rem 8%;
        }

        .contact-editorial-panel h2 { font-size: 3.5rem; color: var(--gold); margin-bottom: 2rem; }
        .contact-details-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 2rem; }
        .contact-detail-node h5 { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
        .contact-detail-node p { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }

        .luxury-form { display: flex; flex-direction: column; gap: 2.5rem; }
        .form-row-twin { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
        
        .form-field {
            position: relative;
            border-bottom: 1px solid rgba(232, 201, 153, 0.3);
            transition: var(--transition);
        }

        .form-field input, .form-field textarea {
            width: 100%;
            background: transparent;
            border: none;
            padding: 0.8rem 0;
            color: var(--cream);
            font-family: var(--sans);
            font-size: 0.95rem;
        }

        .form-field label {
            position: absolute;
            left: 0;
            top: 0.8rem;
            color: rgba(241, 227, 211, 0.4);
            pointer-events: none;
            transition: var(--transition);
            font-size: 0.9rem;
            letter-spacing: 0.05em;
        }

        .form-field input:focus ~ label,
        .form-field input:valid ~ label,
        .form-field textarea:focus ~ label,
        .form-field textarea:valid ~ label {
            top: -1.2rem;
            font-size: 0.75rem;
            color: var(--gold);
            letter-spacing: 0.1em;
        }

        .form-field:focus-within {
            border-bottom: 1px solid var(--gold);
        }

        .submit-luxury-btn {
            align-self: flex-start;
            background: transparent;
            border: 1px solid var(--gold);
            color: var(--gold);
            padding: 1rem 3rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.8rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .submit-luxury-btn:hover {
            background: var(--gold);
            color: var(--burgundy);
        }

        /* 9. LEGAL MODALS (Privacy / Terms Content Integration) */
        .legal-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(58, 5, 25, 0.98);
            z-index: 2000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 4rem 2rem;
        }

        .legal-modal-content {
            background: var(--cream);
            color: var(--burgundy);
            max-width: 800px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            padding: 4rem;
            position: relative;
        }

        .legal-modal-content h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(58, 5, 25, 0.15);
            padding-bottom: 1rem;
        }

        .legal-modal-content h3 {
            font-size: 1.5rem;
            margin: 1.5rem 0 0.5rem 0;
        }

        .legal-modal-content p {
            color: rgba(58, 5, 25, 0.8);
            margin-bottom: 1rem;
        }

        .close-modal-btn {
            position: absolute;
            top: 2rem;
            right: 2rem;
            background: transparent;
            border: none;
            font-size: 1rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            color: var(--burgundy);
            font-weight: 600;
        }

        /* --- GLOBAL EDITORIAL FOOTER --- */
        footer {
            background-color: var(--burgundy);
            border-top: 1px solid rgba(232, 201, 153, 0.15);
            padding: 6rem 8% 3rem 8%;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.51fr 0.83fr 0.83fr 0.83fr;
            gap: 4rem;
            margin-bottom: 5rem;
        }

        .footer-brand h4 {
            font-family: var(--serif);
            font-size: 1.8rem;
            color: var(--gold);
            letter-spacing: 0.15em;
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            max-width: 300px;
            font-size: 0.85rem;
        }

        .footer-col h5 {
            font-size: 0.75rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.8rem;
            font-weight: 500;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-col ul li {
            font-size: 0.85rem;
            color: rgba(241, 227, 211, 0.7);
            cursor: pointer;
            transition: var(--transition);
        }

        .footer-col ul li:hover {
            color: var(--gold);
            transform: translateX(3px);
        }

        .footer-statement {
            border-top: 1px solid rgba(232, 201, 153, 0.1);
            padding-top: 3rem;
            text-align: center;
        }

        .footer-statement blockquote {
            font-family: var(--serif);
            font-size: clamp(1.8rem, 3vw, 3.5rem);
            color: var(--gold);
            font-style: italic;
            line-height: 1.2;
        }

        .footer-copyright {
            margin-top: 2.5rem;
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(241, 227, 211, 0.4);
        }

        /* --- RESPONSIVE MEDIA BREAKPOINTS --- */
        @media(max-width: 1100px) {
            .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
            .philosophy-section { grid-template-columns: 1fr; gap: 4rem; }
            .philosophy-img-container { height: 450px; }
            .stories-grid { grid-template-columns: repeat(2, 1fr); }
            .story-card:last-child { grid-column: span 2; }
        }

        @media(max-width: 850px) {
            header nav, header .discover-btn { display: none; }
            .hamburger { display: flex; }
            
            .hero-split { grid-template-columns: 1fr; height: auto; }
            .hero-left { padding: 8rem 6% 5rem 6%; }
            .hero-right { height: 60vh; }
            
            .showcase-panel, .collection-editorial-block, .ritual-card-inner, .journal-card:nth-child(3n+1), .ingredient-editorial-row, .case-study-item, .contact-split-layout, .about-longform, .founder-block {
                grid-template-columns: 1fr !important;
                height: auto !important;
                direction: ltr !important;
                gap: 3rem;
            }
            
            .showcase-panel { padding: 4rem 0; }
            .panel-text { padding: 2rem 6%; background: transparent; }
            .panel-img { height: 400px; }
            
            .editorial-split-text { grid-template-columns: 1fr; gap: 1.5rem; }
            .ritual-node { grid-template-columns: 1fr; gap: 1rem; }
            .ritual-node:not(:last-child)::after { display: none; }
            .ritual-step-number { text-align: left; font-size: 3rem; }
            
            .journal-grid { grid-template-columns: 1fr; }
            .journal-card:nth-child(3n+1) .journal-media { height: 400px; }
            
            .values-grid { grid-template-columns: repeat(2, 1fr); }
            .case-images-split { grid-template-columns: 1fr 1fr; }
            .form-row-twin { grid-template-columns: 1fr; gap: 2.5rem; }
            
            .legal-modal-content { padding: 2rem; }
        }

        @media(max-width: 480px) {
            .values-grid { grid-template-columns: 1fr; }
            .stories-grid { grid-template-columns: 1fr; }
            .story-card:last-child { grid-column: span 1; }
        }
