        /* CORE RESET & VARIABLE DICTIONARY */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary-deep: #170C79;
            --accent-blue: #3852B4;
            --white: #FFFFFF;
            --sanctuary-bg: #F4F6FB;
            --leaf-green: rgba(56, 82, 180, 0.08);
            --text-dark: #1E1A3C;
            --transition-organic: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--sanctuary-bg);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.8;
        }

        html {
            scroll-behavior: smooth;
        }

        /* WORKSPACE SINGLE-PAGE MULTI-PAGE VIEWPORTS */
        .sanctuary-viewport {
            display: none;
            opacity: 0;
            transform: scale(0.98) translateY(30px);
            transition: var(--transition-organic);
        }

        .sanctuary-viewport.active-sanctuary-view {
            display: block;
            opacity: 1;
            transform: scale(1) translateY(0);
        }

        .sanctuary-container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 7%;
            width: 100%;
        }

        .organic-whitespace {
            padding: 160px 0;
            position: relative;
        }

        /* ASYMMETRICAL TYPOGRAPHY SYSTEM */
        h1, h2, h3, h4 {
            color: var(--primary-deep);
            font-weight: 700;
            letter-spacing: -0.03em;
        }

        .sanctuary-giant-title {
            font-size: clamp(3rem, 6.5vw, 5.5rem);
            line-height: 1.1;
            font-weight: 800;
        }

        .sanctuary-section-heading {
            font-size: clamp(2rem, 4vw, 3.2rem);
            line-height: 1.2;
            margin-bottom: 2.5rem;
        }

        .sanctuary-paragraph {
            font-size: 1.15rem;
            color: var(--text-dark);
            opacity: 0.85;
            max-width: 680px;
        }

        /* SANCTUARY INTERACTION ELEMENTS */
        .btn-organic-pill {
            padding: 20px 42px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 100px;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: var(--transition-organic);
            border: 2px solid transparent;
        }

        .btn-organic-primary {
            background-color: var(--primary-deep);
            color: var(--white);
        }

        .btn-organic-primary:hover {
            background-color: transparent;
            color: var(--primary-deep);
            border-color: var(--primary-deep);
            transform: translateY(-5px);
        }

        /* MINIMAL FLOATING SANCTUARY NAVIGATION */
        .nav-sanctuary-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 100px;
            width: 100%;
            z-index: 1000;
            padding: 30px 7%;
            transition: var(--transition-organic);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .nav-sanctuary-bar.scrolled-sanctuary {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 20px 7%;
            box-shadow: 0 15px 40px rgba(23, 12, 121, 0.04);
            backdrop-filter: blur(15px);
        }

        .sanctuary-logo {
            font-size: 1.4rem;
            font-weight: 900;
            color: var(--primary-deep);
            text-decoration: none;
            letter-spacing: -0.04em;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .sanctuary-logo-leaf {
            width: 14px;
            height: 24px;
            background-color: var(--accent-blue);
            border-radius: 20px 0 20px 0;
        }

        .sanctuary-links-array {
            display: flex;
            gap: 40px;
            list-style: none;
            align-items: center;
        }

        .sanctuary-links-array a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition-organic);
            position: relative;
        }

        .sanctuary-links-array a::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: var(--accent-blue);
            transition: var(--transition-organic);
            transform: translateX(-50%);
        }

        .sanctuary-links-array a:hover::after, .sanctuary-links-array li.active-sanctuary-link a::after {
            width: 18px;
        }

        .sanctuary-hamburger {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            z-index: 1100;
        }

        .sanctuary-hamburger span {
            display: block;
            width: 26px;
            height: 2px;
            background-color: var(--primary-deep);
            transition: var(--transition-organic);
        }

        .sanctuary-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
        .sanctuary-hamburger.open span:nth-child(2) { opacity: 0; }
        .sanctuary-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -7px); }

        /* HERO IMMERSIVE GIANT BACKGROUND WITH CENTER CIRCLE */
        .hero-organic-sanctuary {
            min-height: 100vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-center-sphere {
            width: min(680px, 90vw);
            height: min(680px, 90vw);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 60px;
            z-index: 10;
        }

        .floating-leaf-element {
            position: absolute;
            background-color: var(--leaf-green);
            border-radius: 100% 0 100% 0;
            filter: blur(3px);
            animation: slowLeafDrift 10s ease-in-out infinite alternate;
        }

        .lf-1 { width: 90px; height: 140px; top: 15%; left: 15%; animation-delay: 0s; }
        .lf-2 { width: 120px; height: 180px; bottom: 12%; right: 18%; animation-delay: 2s; }
        .lf-3 { width: 70px; height: 110px; bottom: 25%; left: 20%; animation-delay: 4.5s; }

        @keyframes slowLeafDrift {
            0% { transform: translateY(0px) rotate(0deg) scale(1); }
            100% { transform: translateY(-30px) rotate(15deg) scale(1.05); }
        }

        /* SECTION 2: WINDING PATHWAY WITH IRREGULAR CONTENT ISLANDS */
        .winding-pathway-axis {
            position: relative;
            padding: 100px 0;
        }

        .winding-svg-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
            opacity: 0.15;
        }

        .irregular-content-island {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 60px;
            margin-bottom: 140px;
            width: 100%;
        }

        .irregular-content-island:nth-child(even) {
            flex-direction: row-reverse;
        }

        .island-photo-frame {
            width: 500px;
            height: 500px;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
            transition: var(--transition-organic);
        }

        .irregular-content-island:hover .island-photo-frame {
            border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
        }

        .island-photo-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .island-text-block {
            max-width: 500px;
        }

        /* SECTION 3: ENORMOUS CIRCULAR IMMERSIVE DIAGRAM RADIAL MAPPING */
        .radial-mapping-canvas {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .giant-diagram-orbit {
            position: relative;
            width: 550px;
            height: 550px;
            margin: 60px 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .central-diagram-mask {
            width: 380px;
            height: 380px;
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 25px 60px rgba(23, 12, 121, 0.1);
        }

        .central-diagram-mask img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .radial-clickable-node {
            position: absolute;
            background-color: var(--white);
            color: var(--primary-deep);
            padding: 14px 28px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: var(--transition-organic);
            border: 1px solid rgba(23, 12, 121, 0.05);
        }

        .radial-clickable-node:hover, .radial-clickable-node.active-radial-node {
            background-color: var(--primary-deep);
            color: var(--white);
            transform: scale(1.1);
        }

        /* Precise Mathematical Angular Node Distribution */
        .rn-1 { top: 2%; left: 50%; transform: translateX(-50%); }
        .rn-2 { top: 22%; right: -5%; }
        .rn-3 { bottom: 22%; right: -5%; }
        .rn-4 { bottom: 2%; left: 50%; transform: translateX(-50%); }
        .rn-5 { bottom: 22%; left: -5%; }
        .rn-6 { top: 22%; left: -5%; }

        .radial-output-panel {
            background-color: var(--white);
            padding: 45px 60px;
            border-radius: 30px;
            max-width: 800px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.02);
            min-height: 150px;
        }

        /* SECTION 4: DEEP BLUE OVERLAPPING ROTATED LAYER CARDS */
        .sec-solid-deep-blue {
            background-color: var(--primary-deep);
            color: var(--white);
            border-radius: 80px;
            overflow: hidden;
        }

        .sec-solid-deep-blue h2 { color: var(--white); }

        .rotated-layers-landscape {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 80px;
            padding-bottom: 60px;
        }

        .rotated-organic-card {
            background-color: var(--accent-blue);
            color: var(--white);
            padding: 60px;
            border-radius: 40px;
            width: 90%;
            max-width: 1000px;
            transition: var(--transition-organic);
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
        }

        .rotated-organic-card:nth-child(1) { transform: rotate(-2deg); align-self: flex-start; }
        .rotated-organic-card:nth-child(2) { transform: rotate(1.5deg); align-self: flex-end; background-color: #2F449B; }
        .rotated-organic-card:nth-child(3) { transform: rotate(-1deg); align-self: flex-start; background-color: #253784; }
        .rotated-organic-card:nth-child(4) { transform: rotate(2deg); align-self: flex-end; background-color: #1B296D; }

        .rotated-organic-card:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .rotated-organic-card h3 {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 15px;
        }

        /* SECTION 5: PANORAMIC TYPOGRAPHY STRIP */
        .panoramic-strip-photo {
            width: 100%;
            height: 380px;
            background-image: linear-gradient(rgba(23, 12, 121, 0.2), rgba(23, 12, 121, 0.2)), url('https://i.pinimg.com/1200x/6b/ee/cf/6beecf452c0dc6af3ff11413f652e0d0.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 40px;
            overflow: hidden;
        }

        .panoramic-overlay-title {
            font-size: clamp(2rem, 5vw, 4.5rem);
            color: var(--white);
            font-weight: 900;
            text-align: center;
            letter-spacing: -0.02em;
        }

        /* SECTION 6: SCATTERED SCULPTURAL CIRCULAR GALLERY */
        .scattered-spheres-canvas {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            position: relative;
        }

        .sculptural-circle-box {
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 30px 70px rgba(0,0,0,0.06);
        }

        .sc-box-1 { width: 440px; height: 440px; justify-self: flex-end; }
        .sc-box-2 { width: 340px; height: 340px; justify-self: flex-start; }

        .sculptural-circle-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .asymmetric-text-node {
            max-width: 400px;
            padding: 30px;
            background-color: var(--white);
            border-radius: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.02);
        }

        /* SECTION 7: THE WELLNESS FLOATING SHELF ARTISTRY */
        .wellness-shelf-system {
            display: flex;
            flex-direction: column;
            gap: 70px;
            margin-top: 80px;
        }

        .horizontal-shelf-row {
            border-bottom: 3px solid var(--primary-deep);
            padding-bottom: 40px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 40px;
            transition: var(--transition-organic);
        }

        .horizontal-shelf-row:hover {
            border-bottom-color: var(--accent-blue);
            transform: translateX(10px);
        }

        .shelf-length-1 { width: 100%; }
        .shelf-length-2 { width: 85%; }
        .shelf-length-3 { width: 92%; }

        .shelf-left-block {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .shelf-thumbnail-circle {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

        .shelf-thumbnail-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .shelf-meta-data h4 {
            font-size: 1.6rem;
            margin-bottom: 5px;
        }

        /* SECTION 8: MINIMAL HUGE QUOTATION SPREAD */
        .sec-minimal-quotation-spread {
            background-color: #E2E8F7;
            text-align: center;
            border-radius: 60px;
        }

        .huge-sanctuary-quote {
            font-size: clamp(2rem, 4.5vw, 3.5rem);
            font-weight: 800;
            color: var(--primary-deep);
            line-height: 1.2;
            max-width: 1000px;
            margin: 0 auto 30px auto;
            letter-spacing: -0.02em;
        }

        /* SECTION 9: CIRCULAR SUBSCRIPTION MATRIX */
        .circular-subscription-anchor {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .subscription-sphere-card {
            width: 620px;
            height: 620px;
            background-color: var(--white);
            border-radius: 50%;
            box-shadow: 0 40px 90px rgba(23, 12, 121, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 70px;
            text-align: center;
            z-index: 5;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .sanctuary-input-capsule {
            width: 100%;
            max-width: 380px;
            padding: 16px 25px;
            border-radius: 30px;
            border: 1px solid rgba(0,0,0,0.08);
            background-color: var(--sanctuary-bg);
            margin-bottom: 15px;
            outline: none;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            text-align: center;
            transition: var(--transition-organic);
        }

        .sanctuary-input-capsule:focus {
            border-color: var(--accent-blue);
            background-color: var(--white);
        }

        /* EXTRA MULTI-PAGES LAYOUT STYLES */
        .subpage-banner-organic {
            padding: 20px 0 60px 0;
            text-align: center;
        }

        .subpage-banner-organic p {
            font-size: 1.3rem;
            color: var(--accent-blue);
            margin-top: 10px;
        }

        .sanctuary-storytelling-flow {
            max-width: 950px;
            margin: 0 auto;
        }

        .sanctuary-storytelling-flow p {
            margin-bottom: 30px;
            font-size: 1.2rem;
        }

        /* INTERACTIVE CLINICAL BODY MAP (NATURAL RELIEF PAGE) */
        .bodymap-layout-bridge {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
            background-color: var(--white);
            padding: 60px;
            border-radius: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.02);
        }

        .bodymap-graphic-container {
            position: relative;
            background-color: var(--sanctuary-bg);
            border-radius: 30px;
            height: 550px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bodymap-vector-silhouette {
            width: 220px;
            opacity: 0.15;
        }

        .bodymap-hotspot-pin {
            position: absolute;
            width: 24px;
            height: 24px;
            background-color: var(--accent-blue);
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition-organic);
            border: 4px solid var(--white);
            box-shadow: 0 0 0 8px rgba(56, 82, 180, 0.2);
        }

        .bodymap-hotspot-pin:hover, .bodymap-hotspot-pin.active-pin {
            background-color: var(--primary-deep);
            box-shadow: 0 0 0 12px rgba(23, 12, 121, 0.2);
            transform: scale(1.2);
        }

        .hp-neck { top: 20%; left: 50%; transform: translateX(-50%); }
        .hp-spine { top: 45%; left: 50%; transform: translateX(-50%); }
        .hp-knee { bottom: 25%; left: 45%; }

        /* JOURNAL MAGAZINE PRINT PAGE STYLING */
        .magazine-print-sheet {
            background-color: var(--white);
            padding: 90px;
            border-radius: 4px;
            box-shadow: 0 40px 90px rgba(0,0,0,0.04);
            margin-bottom: 60px;
            border-left: 1px solid rgba(0,0,0,0.05);
        }

        /* SANCTUARY IMMERSIVE FOOTER SYSTEM */
        .sanctuary-centered-footer {
            background-color: var(--white);
            text-align: center;
            padding: 100px 0 50px 0;
            border-top: 1px solid rgba(0,0,0,0.03);
        }

        .sanctuary-footer-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary-deep);
            text-decoration: none;
            letter-spacing: -0.04em;
            margin-bottom: 30px;
            display: inline-block;
        }

        .sanctuary-footer-links {
            display: flex;
            justify-content: center;
            gap: 35px;
            list-style: none;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .sanctuary-footer-links a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            opacity: 0.8;
            transition: var(--transition-organic);
        }

        .sanctuary-footer-links a:hover {
            color: var(--accent-blue);
            opacity: 1;
        }

        /* RESPONSIVE DESIGN BREAKPOINTS */
        @media (max-width: 1200px) {
            .irregular-content-island { flex-direction: column !important; text-align: center; gap: 30px; }
            .island-photo-frame { width: 100%; max-width: 400px; height: 400px; }
            .giant-diagram-orbit { width: 100%; max-width: 450px; height: 450px; }
            .central-diagram-mask { width: 280px; height: 280px; }
            .radial-clickable-node { font-size: 0.8rem; padding: 10px 20px; }
            .scattered-spheres-canvas { grid-template-columns: 1fr; gap: 50px; }
            .sculptural-circle-box { justify-self: center !important; width: 320px; height: 320px; }
            .asymmetric-text-node { margin: 0 auto; text-align: center; }
            .horizontal-shelf-row { flex-direction: column; align-items: flex-start; gap: 15px; width: 100% !important; }
            .bodymap-layout-bridge { grid-template-columns: 1fr; }
        }

        @media (max-width: 768px) {
            .sanctuary-hamburger { display: flex; }
            .sanctuary-links-array {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 5%;
                width: 90%;
                background-color: var(--white);
                padding: 40px;
                border-radius: 30px;
                box-shadow: 0 30px 60px rgba(23, 12, 121, 0.1);
                gap: 25px;
            }
            .sanctuary-links-array.open-menu { display: flex; }
            .hero-center-sphere { width: 100%; height: auto; border-radius: 40px; padding: 40px 20px; }
            .subscription-sphere-card { width: 100%; height: auto; border-radius: 40px; padding: 50px 20px; }
            .magazine-print-sheet { padding: 40px; }
        }

            @keyframes pulse-dot {
        0%, 100% { transform: scale(1); opacity: 1; }
        50% { transform: scale(1.3); opacity: 0.7; }
    }
    
    .bodymap-hotspot-pin:hover {
        transform: scale(1.3) !important;
        box-shadow: 0 8px 30px rgba(46, 125, 50, 0.5) !important;
    }
    
    .bodymap-hotspot-pin.active-pin {
        box-shadow: 0 0 0 8px rgba(46, 125, 50, 0.15) !important;
    }
            @keyframes float {
            0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
            50% { transform: translateY(-25px) scale(1.05) rotate(5deg); }
        }
            .sanctuary-input-capsule {
        transition: all 0.3s ease;
    }
    
    .sanctuary-input-capsule:focus {
        border-color: #2E7D32 !important;
        background: white !important;
        box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.1);
    }
    
    .btn-organic-pill {
        transition: all 0.3s ease;
    }
    
    .btn-organic-pill:hover {
        transform: translateY(-3px);
    }
    
    .btn-organic-primary:hover {
        box-shadow: 0 12px 35px rgba(46, 125, 50, 0.35);
    }
    
    .btn-organic-secondary:hover {
        background: #2E7D32;
        color: white;
    }
    
    #subscribeBtn:disabled,
    #unsubscribeBtn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }
    
    @media (max-width: 768px) {
        .circular-subscription-anchor > div {
            grid-template-columns: 1fr !important;
        }
    }
