        /* --- BRAND DESIGN SYSTEM & PALETTE --- */
        :root {
            --primary-blue: #99C2FF;
            --muted-sage: #87B6BC;
            --deep-olive: #334443;
            --soft-blush: #FBEFEF;
            --soft-cream: #F5EEDD;
            --pale-mint: #CFFFE2;
            --warm-yellow: #F6F7D4;
            --dark-text: #2C3333;
            --blue-gray: #4B5D67;
            --soft-accent: #FFC478;
            --white: #FFFFFF;
            --transition-editorial: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* --- GLOBAL EDITORIAL RESETS --- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }

        body {
            font-family: "Cormorant Garamond", serif;
            background-color: var(--white);
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-editorial);
        }

        button, input, select, textarea {
            font-family: inherit;
            background: none;
            border: none;
            outline: none;
        }

        /* --- LAYOUT UTILITIES --- */
        .editorial-container {
            padding: 0 6%;
            max-width: 1800px;
            margin: 0 auto;
        }

        .thin-line {
            height: 1px;
            background-color: rgba(51, 68, 67, 0.1);
            width: 100%;
            margin: 2rem 0;
        }

        /* --- ROUTER VIEW MANAGEMENT --- */
        .page-view {
            display: none;
            animation: fadeInPage 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        }

        .page-view.active-view {
            display: block;
        }

        @keyframes fadeInPage {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- FIXED READING PROGRESS BAR --- */
        #reading-progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: transparent;
            z-index: 2000;
            display: none;
        }
        #reading-progress-bar {
            height: 100%;
            width: 0%;
            background: var(--muted-sage);
        }

        /* --- PREMIUM HEADER ARCHITECTURE --- */
        header {
            position: sticky;
            top: 0;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(51, 68, 67, 0.05);
            padding: 1.5rem 6%;
        }

        .header-grid {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
        }

        .logo-area img {
            height: 32px;
            object-fit: contain;
            cursor: pointer;
        }
        .logo-fallback {
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--deep-olive);
            cursor: pointer;
        }

        nav.center-nav {
            display: flex;
            gap: 2.5rem;
        }

        nav.center-nav a {
            font-size: 1.05rem;
            font-weight: 400;
            letter-spacing: 1px;
            position: relative;
            padding: 0.4rem 0.8rem;
            color: var(--deep-olive);
        }

        /* Unique half-text background reveal accent requested */
        nav.center-nav a::before {
            content: '';
            position: absolute;
            bottom: 15%;
            left: 0;
            width: 100%;
            height: 40%;
            background-color: var(--muted-sage);
            z-index: -1;
            transform: scaleX(0);
            transform-origin: left;
            transition: var(--transition-editorial);
            opacity: 0;
        }

        nav.center-nav a:hover {
            color: var(--white);
        }
        nav.center-nav a:hover::before {
            transform: scaleX(1);
            opacity: 1;
        }

        .right-actions {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 2rem;
        }

        .cart-trigger {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            cursor: pointer;
            color: var(--deep-olive);
            position: relative;
        }
        .cart-badge {
            background: var(--muted-sage);
            color: white;
            font-size: 0.75rem;
            padding: 2px 6px;
            border-radius: 10px;
            position: absolute;
            top: -8px;
            right: -12px;
        }

        .book-now-btn {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 0.8rem 1.8rem;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 2px;
            border-radius: 0px;
            cursor: pointer;
            transition: var(--transition-editorial);
        }
        .book-now-btn:hover {
            background-color: var(--muted-sage);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            color: var(--deep-olive);
        }

        /* --- MOBILE FULL-SCREEN EDITORIAL MENU --- */
        .mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: var(--soft-blush);
            z-index: 1500;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            transform: translateY(-100%);
            transition: var(--transition-editorial);
        }
        .mobile-overlay.open {
            transform: translateY(0);
        }
        .mobile-overlay a {
            font-size: 2rem;
            letter-spacing: 3px;
            color: var(--deep-olive);
        }
        .mobile-close {
            position: absolute;
            top: 2rem;
            right: 6%;
            cursor: pointer;
        }

        /* --- SECTION: HERO MAGAZINE SLIDESHOW --- */
        .hero-slideshow-container {
            position: relative;
            height: 85vh;
            margin: 2rem 6%;
            overflow: hidden;
        }

        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            z-index: 1;
            transition: opacity 1.2s ease-in-out;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.15);
            z-index: 2;
        }

        .hero-slide.active-slide {
            opacity: 1;
            z-index: 2;
        }

        .hero-slide-content {
            position: relative;
            z-index: 3;
            padding-left: 8%;
            max-width: 650px;
        }

        .hero-heading {
            font-size: 5rem;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
        }

        .hero-quote {
            font-size: 1.8rem;
            font-style: italic;
            font-weight: 300;
            opacity: 0.9;
        }

        .hero-nav-dots {
            position: absolute;
            bottom: 2.5rem;
            left: 8%;
            z-index: 5;
            display: flex;
            gap: 1rem;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: var(--transition-editorial);
        }
        .hero-dot.active {
            background: var(--muted-sage);
            transform: scale(1.3);
        }

        /* --- SECTION 01: WELLNESS RITUALS (HORIZONTAL ROW) --- */
        .section-rituals-row {
            background-color: var(--white);
            padding: 6rem 6%;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2rem;
            text-align: center;
        }

        .ritual-item-card {
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .ritual-img-wrapper {
            width: 90px;
            height: 90px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--soft-cream);
            border-radius: 50%;
            padding: 15px;
        }

        .ritual-item-card img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: var(--transition-editorial);
        }

        .ritual-item-card span {
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--deep-olive);
            position: relative;
            transition: var(--transition-editorial);
        }

        .ritual-item-card span::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 25%;
            width: 50%;
            height: 1px;
            background: var(--muted-sage);
            transform: scaleX(0);
            transition: var(--transition-editorial);
        }

        .ritual-item-card:hover img {
            transform: scale(1.15);
        }
        .ritual-item-card:hover span {
            color: var(--muted-sage);
        }
        .ritual-item-card:hover span::after {
            transform: scaleX(1);
        }

        /* --- SECTION 02: FOUR WELLNESS STORIES --- */
        .section-stories-grid {
            background-color: var(--white);
            padding: 0 6% 6rem 6%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .story-square-card {
            position: relative;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 2.5rem;
        }

        .story-square-card.bg-blush {
            background-color: var(--soft-blush);
        }

        .story-square-card.bg-image {
            background-size: cover;
            background-position: center;
        }

        .story-square-card.bg-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.25);
            z-index: 1;
        }

        .story-square-card img.inner-png {
            width: 100px;
            opacity: 0.3;
            margin-bottom: auto;
        }

        .story-square-card h3 {
            font-size: 2.2rem;
            font-weight: 300;
            color: var(--deep-olive);
            line-height: 1.2;
            z-index: 2;
        }

        .story-square-card.bg-image h3 {
            color: var(--white);
        }

        .story-square-card .card-label {
            font-size: 0.8rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 600;
            color: var(--deep-olive);
            z-index: 2;
            margin-top: auto;
        }
        .story-square-card.bg-image .card-label {
            color: var(--white);
        }

        /* --- SECTION 03: THE RITUAL OF CARE --- */
        .section-split-care {
            background-color: var(--white);
            padding: 6rem 6%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .care-left-content img.flower-graphic {
            width: 95px;
            margin-bottom: -2rem;
        }

        .care-left-content h2 {
            font-size: 4.5rem;
            font-weight: 300;
            color: var(--deep-olive);
            line-height: 1.1;
            margin-bottom: 2rem;
        }

        .care-left-content p {
            font-size: 1.5rem;
            color: var(--deep-olive);
            max-width: 500px;
            font-weight: 300;
        }

        .care-right-composition {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .dark-square-card {
            background-color: var(--deep-olive);
            color: var(--soft-cream);
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 3rem;
        }

        .dark-square-card h4 {
            font-size: 3rem;
            font-weight: 300;
            line-height: 1.3;
            letter-spacing: 2px;
        }

        .care-composition-img {
            width: 100%;
            height: 550px;
            margin-top: -40rem;
            object-fit: cover;
        }

        /* --- SECTION 04: THE PRACTICE OF SLOWNESS --- */
        .section-slowness {
            padding: 0 6% 6rem 6%;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: center;
        }

        .slowness-img-card {
            width: 100%;
            aspect-ratio: 4 / 3;
            object-fit: cover;
        }

        .slowness-right-content h2 {
            font-size: 4rem;
            font-weight: 300;
            margin-bottom: 1.5rem;
            color: var(--dark-text);
        }

        .slowness-right-content p {
            font-size: 1.4rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
            color: var(--blue-gray);
        }

        .editorial-link {
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border-bottom: 1px solid var(--dark-text);
            padding-bottom: 5px;
            display: inline-block;
        }

        /* --- SECTION 05: THE STILLNESS ROOM (FIXED PARALLAX BACKGROUND) --- */
        .section-stillness-fixed {
            position: relative;
            height: 70vh;
            margin: 0 6% 6rem 6%;
            background-image: url('https://i.pinimg.com/736x/d4/bc/52/d4bc52cecd5376cd0807eb4e4cd99062.jpg');
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .section-stillness-fixed::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(44, 51, 51, 0.45);
        }

        .stillness-center-box {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 700px;
            padding: 2rem;
        }

        .stillness-center-box h2 {
            font-size: 4rem;
            font-weight: 300;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            letter-spacing: 2px;
        }

        .stillness-center-box p {
            font-size: 1.3rem;
            font-weight: 300;
            opacity: 0.9;
        }

        /* --- SECTION 06: THREE WAYS TO RETURN --- */
        .section-three-ways {
            padding: 6rem 6%;
            background-color: var(--white);
            text-align: center;
        }

        .three-ways-intro h2 {
            font-size: 3.5rem;
            font-weight: 300;
            color: var(--deep-olive);
            margin-bottom: 1rem;
        }

        .three-ways-intro p {
            font-size: 1.2rem;
            color: var(--deep-olive);
            margin-bottom: 4rem;
        }

        .three-cards-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .taller-quote-card {
            aspect-ratio: 0.85 / 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 3rem;
            text-align: center;
        }

        .taller-quote-card h4 {
            font-size: 2.5rem;
            font-weight: 300;
            font-style: italic;
            line-height: 1.3;
        }

        .card-one {
            background: var(--white);
            border: 1px solid var(--pale-mint);
            color: var(--dark-text);
        }

        .card-two {
            background: var(--pale-mint);
            color: var(--blue-gray);
        }

        .card-three {
            background: var(--soft-cream);
            color: var(--dark-text);
            border-bottom: 6px solid var(--soft-accent);
        }

        /* --- SECTION 07: THE IMAGE ARCHIVE --- */
        .section-archive-grid {
            padding: 0 6% 6rem 6%;
        }

        .archive-main-layout {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .archive-left-large {
            aspect-ratio: 1 / 1;
            position: relative;
            overflow: hidden;
        }

        .archive-right-stacked {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            justify-content: space-between;
        }

        .archive-small-square {
            aspect-ratio: 1.8 / 1;
            position: relative;
            overflow: hidden;
        }

        .archive-bottom-wide {
            width: 100%;
            height: 400px;
            position: relative;
            overflow: hidden;
        }

        .archive-img-item {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-editorial);
        }

        .archive-overlay {
            position: absolute;
            inset: 0;
            background: rgba(135, 182, 188, 0.0);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition-editorial);
        }

        .archive-overlay span {
            color: var(--white);
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .archive-container-block {
            position: relative;
            cursor: pointer;
        }

        .archive-container-block:hover .archive-img-item {
            transform: scale(1.08);
        }

        .archive-container-block:hover .archive-overlay {
            background: rgba(51, 68, 67, 0.6);
            opacity: 1;
        }

        /* --- SECTION 08: THE QUOTE MARK & SCROLL SVG DRAWING --- */
        .section-svg-testimonials {
            background-color: var(--white);
            padding: 6rem 6%;
            text-align: center;
        }

        .svg-wrap {
            width: 120px;
            margin: 0 auto 3rem auto;
        }

        .svg-wrap svg path {
            fill: none;
            stroke: var(--muted-sage);
            stroke-width: 1.5;
            transition: stroke-dashoffset 0.5s linear;
        }

        .testimonial-slider-container {
            max-width: 800px;
            margin: 0 auto;
            min-height: 150px;
            position: relative;
        }

        .testimonial-slide {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--deep-olive);
            letter-spacing: 1px;
            line-height: 1.4;
            display: none;
        }

        .testimonial-slide.active-t-slide {
            display: block;
            animation: fadeInPage 0.6s ease;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 3rem;
        }

        .t-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #D9D9D9;
            cursor: pointer;
            transition: var(--transition-editorial);
        }

        .t-dot.active {
            background: var(--muted-sage);
            transform: scale(1.2);
        }

        /* --- INNER PAGE DESIGN: SHOP CURATED WELLNESS --- */
        .shop-hero {
            background: var(--soft-blush);
            padding: 6rem 6%;
            text-align: center;
            margin-bottom: 4rem;
        }

        .shop-hero h1 {
            font-size: 4rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .shop-filter-bar {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .filter-chip {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            padding-bottom: 4px;
            border-bottom: 1px solid transparent;
        }

        .filter-chip.active-chip {
            border-bottom: 1px solid var(--dark-text);
            font-weight: 600;
        }

        .product-editorial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem 2rem;
            margin-bottom: 6rem;
        }

        .product-card {
            display: flex;
            flex-direction: column;
        }

        .product-img-frame {
            background: var(--soft-cream);
            aspect-ratio: 1 / 1;
            margin-bottom: 1.5rem;
            overflow: hidden;
            position: relative;
        }

        .product-img-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-editorial);
        }

        .product-card:hover img {
            transform: scale(1.05);
        }

        .product-title {
            font-size: 1.6rem;
            font-weight: 400;
            margin-bottom: 0.5rem;
            color: var(--dark-text);
        }

        .product-desc {
            font-size: 1rem;
            color: var(--blue-gray);
            margin-bottom: 1rem;
            font-weight: 300;
        }

        .product-meta-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: auto;
        }

        .product-price {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .add-to-cart-btn {
            background: var(--deep-olive);
            color: var(--white);
            padding: 0.6rem 1.2rem;
            font-size: 0.8rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition-editorial);
        }

        .add-to-cart-btn:hover {
            background: var(--muted-sage);
        }

        /* --- EDITORIAL CART SIDEBAR ELEMENT --- */
        .cart-sidebar-drawer {
            position: fixed;
            top: 0;
            right: 0;
            width: 420px;
            height: 100vh;
            background: var(--white);
            box-shadow: -10px 0 30px rgba(0,0,0,0.05);
            z-index: 2500;
            transform: translateX(100%);
            transition: var(--transition-editorial);
            padding: 3rem 2rem;
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar-drawer.open {
            transform: translateX(0);
        }

        .cart-drawer-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            padding-bottom: 1rem;
        }

        .cart-drawer-header h3 {
            font-size: 2rem;
            font-weight: 300;
        }

        .cart-drawer-items-list {
            flex: 1;
            overflow-y: auto;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .cart-item-row {
            display: flex;
            gap: 1rem;
            align-items: center;
            border-bottom: 1px solid rgba(0,0,0,0.03);
            padding-bottom: 1rem;
        }

        .cart-item-row img {
            width: 70px;
            height: 70px;
            object-fit: cover;
            background: var(--soft-cream);
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-details h5 {
            font-size: 1.2rem;
            font-weight: 400;
        }

        .cart-item-details p {
            font-size: 1rem;
            color: var(--blue-gray);
        }

        .cart-remove-trigger {
            cursor: pointer;
            color: #C28C8C;
            font-size: 0.85rem;
        }

        .cart-drawer-footer {
            border-top: 1px solid rgba(0,0,0,0.05);
            padding-top: 2rem;
        }

        .cart-subtotal-display {
            display: flex;
            justify-content: space-between;
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }

        .checkout-action-btn {
            width: 100%;
            background: var(--primary-blue);
            color: var(--white);
            text-align: center;
            padding: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            cursor: pointer;
        }

        /* --- THE EXPERIENCES (TREATMENTS EDITORIAL) --- */
        .treatments-archive-stack {
            display: flex;
            flex-direction: column;
            gap: 6rem;
            padding: 4rem 0 8rem 0;
        }

        .treatment-editorial-block {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
        }

        .treatment-editorial-block:nth-child(even) {
            direction: rtl;
        }
        .treatment-editorial-block:nth-child(even) .treatment-meta-box {
            direction: ltr;
        }

        .treatment-hero-frame {
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .treatment-hero-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .treatment-meta-box h3 {
            font-size: 3rem;
            font-weight: 300;
            margin-bottom: 1rem;
            letter-spacing: 1px;
        }

        .treatment-duration-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--muted-sage);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .treatment-description-text {
            font-size: 1.2rem;
            color: var(--blue-gray);
            margin-bottom: 2rem;
            line-height: 1.7;
            font-weight: 300;
        }

        /* --- INTERACTIVE BOOKING PANEL SYSTEM --- */
        .booking-surface-card {
            max-width: 700px;
            margin: 4rem auto 8rem auto;
            background: var(--soft-cream);
            padding: 4rem 3rem;
            border-radius: 0px;
        }

        .editorial-form-group {
            display: flex;
            flex-direction: column;
            margin-bottom: 2rem;
        }

        .editorial-form-group label {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.6rem;
            color: var(--deep-olive);
            font-weight: 600;
        }

        .editorial-form-group input, 
        .editorial-form-group select, 
        .editorial-form-group textarea {
            border-bottom: 1px solid var(--deep-olive);
            padding: 0.8rem 0;
            font-size: 1.2rem;
            color: var(--dark-text);
            background: transparent;
        }

        .form-submission-alert {
            background: var(--pale-mint);
            color: var(--deep-olive);
            padding: 2rem;
            text-align: center;
            font-size: 1.4rem;
            margin-bottom: 2rem;
            display: none;
        }

        /* --- JOURNAL / BLOG ARCHITECTURE --- */
        .journal-featured-block {
            margin-bottom: 6rem;
            cursor: pointer;
        }
        .journal-featured-block img {
            width: 100%;
            height: 60vh;
            object-fit: cover;
            margin-bottom: 2rem;
        }
        .journal-meta {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--muted-sage);
            margin-bottom: 0.5rem;
        }
        .journal-featured-block h2 {
            font-size: 3.5rem;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .journal-asymmetric-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem 3rem;
            margin-bottom: 6rem;
        }

        .journal-card:nth-child(odd) {
            transform: translateY(30px);
        }

        .journal-card img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            margin-bottom: 1.5rem;
        }

        .journal-card h3 {
            font-size: 2rem;
            font-weight: 400;
            margin-bottom: 1rem;
        }

        /* --- PREMIUM NARROW READING VIEW (/article) --- */
        .article-reading-container {
            max-width: 720px;
            margin: 4rem auto 8rem auto;
            padding: 0 1.5rem;
        }
        .article-reading-container p {
            font-size: 1.3rem;
            line-height: 1.85;
            color: var(--dark-text);
            margin-bottom: 2rem;
            font-weight: 300;
        }
        .editorial-pull-quote {
            font-size: 2.2rem;
            font-style: italic;
            color: var(--muted-sage);
            border-left: 3px solid var(--primary-blue);
            padding-left: 2rem;
            margin: 3rem 0;
            font-weight: 300;
            line-height: 1.4;
        }

        /* --- ABOUT PAGE PHILOSOPHY PACK --- */
        .about-philosophy-banner {
            background: var(--soft-cream);
            padding: 8rem 6%;
            text-align: center;
            margin-bottom: 4rem;
        }
        .about-philosophy-banner h1 {
            font-size: 5rem;
            font-weight: 300;
            line-height: 1.2;
            color: var(--deep-olive);
        }

        /* --- PRE-FOOTER NEWSLETTER REGISTRATION & FLOW --- */
        .section-newsletter-prefooter {
            background-color: var(--white);
            padding: 6rem 6%;
            border-top: 1px solid rgba(0,0,0,0.05);
            text-align: center;
        }

        .newsletter-inner-wrap {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter-inner-wrap h2 {
            font-size: 3.5rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .newsletter-inner-wrap p {
            font-size: 1.2rem;
            color: var(--blue-gray);
            margin-bottom: 3rem;
        }

        .newsletter-inline-form {
            display: flex;
            border-bottom: 1px solid var(--dark-text);
            padding-bottom: 0.5rem;
        }

        .newsletter-inline-form input {
            flex: 1;
            font-size: 1.2rem;
            padding: 0.5rem;
        }

        .newsletter-submit-action {
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            cursor: pointer;
        }

        .newsletter-feedback-channel {
            margin-top: 1.5rem;
            font-size: 1.1rem;
            display: none;
        }

        /* --- MAGAZINE FINAL PAGE FOOTER --- */
        footer {
            background-color: var(--warm-yellow);
            color: var(--dark-text);
            padding: 6rem 6% 3rem 6%;
            position: relative;
            background-image: radial-gradient(rgba(51, 68, 67, 0.03) 1px, transparent 0);
            background-size: 24px 24px;
        }

        .footer-top-matrix {
            display: grid;
            grid-template-columns: 2fr repeat(5, 1fr);
            gap: 3rem;
            margin-bottom: 5rem;
        }

        .footer-brand-column h2 {
            font-size: 2.2rem;
            font-weight: 600;
            letter-spacing: 3px;
            margin-bottom: 1rem;
        }

        .footer-brand-column p {
            font-size: 1.2rem;
            font-style: italic;
            opacity: 0.8;
        }

        .footer-matrix-column h5 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.8rem;
            font-weight: 600;
            color: var(--deep-olive);
        }

        .footer-matrix-column ul {
            list-style: none;
        }

        .footer-matrix-column ul li {
            margin-bottom: 0.8rem;
            font-size: 1.05rem;
        }

        .footer-matrix-column ul li a:hover {
            color: var(--muted-sage);
            padding-left: 4px;
        }

        .footer-bottom-bar {
            border-top: 1px solid rgba(44, 51, 51, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        /* --- RESPONSIVE RE-ARCHITECTURE SYSTEMS --- */
        @media (max-width: 1200px) {
            .hero-heading { font-size: 3.8rem; }
            .section-rituals-row { grid-template-columns: repeat(4, 1fr); }
            .section-stories-grid { grid-template-columns: repeat(2, 1fr); }
            .product-editorial-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 900px) {
            nav.center-nav, .right-actions .book-now-btn { display: none; }
            .hamburger { display: block; }
            .header-grid { grid-template-columns: 1fr auto; }
            .right-actions { gap: 1rem; }
            
            .section-split-care { grid-template-columns: 1fr; gap: 3rem; }
            .section-slowness { grid-template-columns: 1fr; gap: 3rem; }
            .three-cards-row { grid-template-columns: 1fr; }
            .archive-main-layout { grid-template-columns: 1fr; }
            .footer-top-matrix { grid-template-columns: repeat(2, 1fr); }
            .treatment-editorial-block { grid-template-columns: 1fr; gap: 2rem; }
            .treatment-editorial-block:nth-child(even) { direction: ltr; }
            .section-rituals-row { display: flex; overflow-x: auto; padding: 4rem 4%; gap: 3rem; scroll-snap-type: x mandatory; }
            .ritual-item-card { scroll-snap-align: center; flex: 0 0 auto; }
        }

        @media (max-width: 600px) {
            .editorial-container { padding: 0 4%; }
            header { padding: 1.2rem 4%; }
            .hero-heading { font-size: 2.8rem; }
            .hero-quote { font-size: 1.4rem; }
            .section-rituals-row { grid-template-columns: repeat(2, 1fr); }
            .section-stories-grid { grid-template-columns: 1fr; }
            .product-editorial-grid { grid-template-columns: 1fr; }
            .cart-sidebar-drawer { width: 100%; }
            .care-left-content h2, .slowness-right-content h2, .stillness-center-box h2 { font-size: 2.5rem; }
        }
