        /* RESET & CSS DESIGN VARIABLES */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary-navy: #111844;
            --warm-sand: #E89951;
            --accent-red: #D51C39;
            --sage-bg: #C9CAAC;
            --white: #FFFFFF;
            --charcoal: #1E1E1E;
            --muted-gray: #555555;
            --noise-light: url('https://ashtanga.qodeinteractive.com/wp-content/uploads/2023/04/light-noise-1920x1200-1.jpg');
            --noise-green: url('https://ashtanga.qodeinteractive.com/wp-content/uploads/2023/04/green-noise-1920x1200-1.jpg');
            --transition-luxe: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
            --transition-snappy: all 0.4s ease;
        }

        html {
            scroll-behavior: smooth;
            background-color: #f7f6f0;
            overflow-x: hidden;
        }

        body {
            font-family: "Le Major", serif;
            color: var(--primary-navy);
            overflow-x: hidden;
            letter-spacing: 0.02em;
            line-height: 1.7;
            background-image: var(--noise-light);
            background-attachment: fixed;
            background-size: cover;
        }

        /* TYPOGRAPHY TOOLKIT SYSTEM - REFINED MIXED/SENTENCE CASE DESIGN */
        h1, h2, h3, h4, h5, h6 {
            font-family: "Le Major", serif;
            font-weight: 400;
            letter-spacing: 0.04em;
            line-height: 1.15;
            text-transform: none; /* Sentence or mixed case as explicitly requested */
        }

        p, span, label, input, textarea {
            font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            font-weight: 300;
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--charcoal);
        }

        /* REVERSE-SCROLL DYNAMIC SMART HEADER */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 40px 8%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: transparent;
            transition: var(--transition-luxe);
            transform: translateY(0);
        }
        
        header.header-hidden {
            transform: translateY(-100%);
        }

        header.header-scrolled {
            padding: 20px 8%;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(17, 24, 68, 0.06);
        }

        .logo-container {
            font-family: "Le Major", serif;
            font-size: 1.6rem;
            letter-spacing: 0.05em;
            cursor: pointer;
            color: var(--primary-navy);
            text-transform: lowercase; /* explicit corporate visual identity marker */
        }

        .navigation-center-bar {
            display: flex;
            gap: 50px;
        }

        .navigation-link-item {
            position: relative;
            cursor: pointer;
            font-size: 0.95rem;
            letter-spacing: 0.1em;
            padding: 6px 0;
            color: var(--primary-navy);
            transition: var(--transition-snappy);
        }

        .navigation-link-item:hover, .navigation-link-item.active-route {
            color: var(--warm-sand);
        }

        .navigation-link-item::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 1px;
            background: var(--warm-sand);
            transition: var(--transition-luxe);
            transform: translateX(-50%);
        }

        .navigation-link-item:hover::after, .navigation-link-item.active-route::after {
            width: 100%;
        }

        .header-right-action-zone .contact-trigger-button {
            border: 1px solid var(--primary-navy);
            background: transparent;
            padding: 14px 32px;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: var(--transition-snappy);
        }

        .header-right-action-zone .contact-trigger-button:hover {
            background: var(--primary-navy);
            color: var(--white);
        }

        /* RESPONSIVE MODERN HAMBURGER SYSTEM UI */
        .hamburger-toggle-button {
            display: none;
            flex-direction: column;
            gap: 7px;
            cursor: pointer;
            z-index: 1002;
        }

        .hamburger-toggle-button span {
            width: 30px;
            height: 1.5px;
            background: var(--primary-navy);
            transition: var(--transition-snappy);
        }

        .hamburger-toggle-button.menu-opened span:nth-child(1) {
            transform: translateY(8.5px) rotate(45deg);
        }

        .hamburger-toggle-button.menu-opened span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-toggle-button.menu-opened span:nth-child(3) {
            transform: translateY(-8.5px) rotate(-45deg);
        }

        .fullscreen-mobile-navigation-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            height: 100vh;
            background: var(--white);
            background-image: var(--noise-light);
            z-index: 1001;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 40px;
            transition: var(--transition-luxe);
        }

        .fullscreen-mobile-navigation-overlay.overlay-visible {
            right: 0;
        }

        .fullscreen-mobile-navigation-overlay .navigation-link-item {
            font-size: 1.8rem;
        }

        /* SCROLL PROGRESS TRACKER INDICATOR */
        #scroll-progress-indicator-line {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--accent-red);
            z-index: 1003;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* APPLICATION CONTAINER PAGES (SPA ROUTER MECHANISM) */
        .application-spa-page-view {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .application-spa-page-view.active-page-view {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        /* IMMERSIVE EDITORIAL LAYOUT CONFIGURATIONS */
        .immersive-editorial-section {
            padding: 180px 8%;
            position: relative;
            overflow: hidden;
            width: 100%;
        }

        .editorial-hero-title-giant {
            font-size: clamp(3.5rem, 7vw, 7.5rem);
            line-height: 1.05;
            color: var(--primary-navy);
            margin-bottom: 50px;
            z-index: 10;
            position: relative;
        }

        .editorial-body-paragraph-luxe {
            max-width: 700px;
            font-size: 1.15rem;
            color: var(--charcoal);
            margin-bottom: 35px;
        }

        /* SECTION CHRONICLE 01: HERO ARCHITECTURE */
        .hero-section-architecture {
            min-height: 130vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 0 8%;
        }

        .hero-right-square-image-card {
            position: absolute;
            right: 0;
            top: 18vh;
            width: 72%;
            height: 90vh;
            background-image: url('https://i.pinimg.com/1200x/eb/28/47/eb2847a2e7b77c67c092774cb43a2fbf.jpg');
            background-position: center;
            background-size: cover;
            box-shadow: 0 40px 90px rgba(0,0,0,0.06);
            z-index: 1;
        }

        .hero-overlapping-header-container {
            width: 60%;
            position: relative;
            z-index: 5;
        }

        .hero-overlapping-header-container h1 {
            margin-right: -15vw;
        }

        .hero-bottom-left-annotation {
            color: var(--warm-sand);
            font-size: 1.2rem;
            max-width: 400px;
            margin-top: 40px;
        }

        .floating-botanical-png-one {
            position: absolute;
            left: 0%;
            bottom: -5vh;
            width: 320px;
            pointer-events: none;
            z-index: 6;
        }

        /* SECTION CHRONICLE 02: THE PHILOSOPHY ECOSYSTEM */
        .philosophy-horizontal-four-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 50px;
            margin-bottom: 140px;
        }

        .philosophy-grid-element-node {
            border-top: 1px solid rgba(17, 24, 68, 0.12);
            padding-top: 30px;
        }

        .philosophy-grid-element-node h3 {
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--primary-navy);
        }

        .floating-botanical-png-two {
            position: absolute;
            right: 4%;
            bottom: 45%;
            width: 260px;
            pointer-events: none;
            z-index: 3;
            animation: elegantFloatEffect 10s ease-in-out infinite alternate-reverse;
        }

        .philosophy-asymmetric-duo-block {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 100px;
            align-items: center;
            margin-bottom: 15px;
        }

        .philosophy-fully-rounded-left-image {
            width: 100%;
            height: 75vh;
            border-radius: 600px 600px 0 0;
            object-fit: cover;
            box-shadow: 0 30px 60px rgba(0,0,0,0.04);
        }

        .philosophy-asymmetric-duo-block h2 {
            color: var(--warm-sand);
            font-size: 3.5rem;
            margin-bottom: 30px;
        }

        .philosophy-asymmetric-duo-block p {
            color: var(--accent-red);
            font-size: 1.25rem;
        }

        .philosophy-edge-landscape-frame {
            width: 100vw;
            margin-left: -8vw;
            height: 55vh;
            background-image: url('https://i.pinimg.com/736x/72/1b/3e/721b3e5a06807925686615dc9db79794.jpg');
            background-size: cover;
            background-position: center;
            margin-bottom: 80px;
        }

        .philosophy-flush-right-tall-card-block {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: stretch;
        }

        .tall-card-no-right-margin {
            background: rgba(255, 255, 255, 0.4);
            padding: 60px;
            border-left: 1px solid rgba(17, 24, 68, 0.08);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* SECTION CHRONICLE 03: MOVING EDITORIAL EXPERIENCE TRACK */
        .scroll-responsive-marquee-container {
            position: relative;
            padding: 120px 0;
            overflow: hidden;
            background: transparent;
        }

        .parallax-scrolling-giant-text-node {
            font-size: 12vw;
            font-family: "Le Major", serif;
            color: transparent;
            -webkit-text-stroke: 1px rgba(3, 4, 12, 0.09);
            white-space: nowrap;
            will-change: transform;
            color: #D51C39;
            transition: transform 0.2s linear;
            display: block;
            line-height: 3;
        }

        .moving-experience-center-image-frame {
            position: absolute;
            top: 50%;
            right: 12%;
            transform: translateY(-50%);
            width: 350px;
            height: 350px;
            background-image: url('https://i.pinimg.com/736x/5d/bf/80/5dbf8061f79c10a999a939967a9f1651.jpg');
            background-size: cover;
            background-position: center;
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
            z-index: 2;
        }

        .minimal-embedded-email-panel {
            margin-top: 60px;
            max-width: 450px;
            border-bottom: 1px solid var(--primary-navy);
            padding: 10px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .minimal-embedded-email-panel input {
            border: none;
            background: transparent;
            outline: none;
            width: 80%;
            font-size: 1rem;
        }

        /* GEOMETRIC EQUALIZED THREE-COLUMN ROW MATRIX LAYOUT */
        .editorial-split-three-column-table {
            width: 100%;
            margin-top: 100px;
        }

        .three-column-structural-row {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1.8fr;
            gap: 40px;
            padding: 50px 0;
            border-bottom: 1px solid rgba(17, 24, 68, 0.1);
            align-items: center;
        }

        .three-column-structural-row:first-child {
            border-top: 1px solid rgba(17, 24, 68, 0.1);
        }

        .row-profile-cell-zone {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .row-profile-cell-zone img {
            width: 95px;
            height: 95px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        .row-profile-cell-zone h4 {
            font-size: 1.3rem;
            color: var(--primary-navy);
        }

        .row-quote-cell-zone {
            font-style: italic;
            font-size: 1.15rem;
            color: var(--charcoal);
            position: relative;
            padding-left: 20px;
            border-left: 2px solid var(--warm-sand);
        }

        /* SECTION CHRONICLE 04: COMMUNITY HORIZONTAL CAROUSEL SUITE */
        .carousel-outer-wrapper-track {
            overflow: hidden;
            width: 100%;
            position: relative;
            padding: 40px 0;
        }

        .carousel-scrollable-flex-container {
            display: flex;
            gap: 40px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scrollbar-width: none;
            padding-bottom: 20px;
        }

        .carousel-scrollable-flex-container::-webkit-scrollbar {
            display: none;
        }

        .carousel-luxurious-editorial-card {
            scroll-snap-align: start;
            flex: 0 0 520px;
            background: rgba(255, 255, 255, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.6);
            padding: 60px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.02);
            transition: var(--transition-luxe);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 380px;
        }

        .carousel-luxurious-editorial-card:hover {
            transform: translateY(-15px);
            background: var(--white);
            box-shadow: 0 40px 80px rgba(17, 24, 68, 0.05);
        }

        .carousel-luxurious-editorial-card p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 40px;
        }

        /* SECTION CHRONICLE 05: THE FEATURED RETREAT CROWN DISPLAY */
        .featured-retreat-sage-canvas {
            background-color: var(--sage-bg);
            padding: 160px 10%;
            text-align: center;
            position: relative;
        }

        .retreat-immersive-overlap-container {
            position: relative;
            max-width: 850px;
            margin: 0 auto 60px auto;
        }

        .retreat-immersive-overlap-container img {
            width: 100%;
            height: 650px;
            object-fit: cover;
            box-shadow: 0 40px 90px rgba(0,0,0,0.08);
        }

        .retreat-title-absolute-overlap {
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            font-size: clamp(3rem, 6vw, 6.5rem);
            color: var(--primary-navy);
            width: 100%;
            white-space: nowrap;
            text-shadow: 0 15px 40px rgba(201, 202, 172, 0.9);
            z-index: 3;
        }

        /* SECTION CHRONICLE 06: YOGA EXPERIENCE AND GRID SYSTEM */
        .experience-asymmetric-layout-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 100px;
            align-items: start;
        }

        .experience-2x2-internal-matrix {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .matrix-square-content-node {
            background: rgba(255,255,255,0.2);
            padding: 45px;
            border: 1px solid rgba(17, 24, 68, 0.05);
            transition: var(--transition-snappy);
        }

        .matrix-square-content-node:hover {
            background: var(--white);
            box-shadow: 0 30px 60px rgba(0,0,0,0.03);
        }

        .matrix-square-content-node h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary-navy);
        }

        .floating-botanical-png-three {
            position: absolute;
            left: -4%;
            bottom: 5%;
            width: 300px;
            pointer-events: none;
            z-index: 5;
            animation: elegantFloatEffect 14s ease-in-out infinite alternate;
        }

        /* SECTION CHRONICLE 07: SPLIT SUBSCRIPTION VERIFICATION SYSTEMS */
        .split-subscription-layout-block {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 90vh;
            padding: 0;
            background: var(--white);
        }

        .split-subscription-left-imagery {
            background-image: linear-gradient(rgba(17, 24, 68, 0.35), rgba(17, 24, 68, 0.35)), url('https://i.pinimg.com/736x/72/d0/86/72d086f753c3262d052962f3100dd02a.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px;
        }

        .split-subscription-left-imagery h3 {
            color: var(--white);
            font-size: 3rem;
            text-align: center;
            line-height: 1.3;
        }

        .split-subscription-right-panel {
            padding: 100px 12%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-image: var(--noise-light);
        }

        .newsletter-custom-input-field {
            width: 100%;
            padding: 24px 0;
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--primary-navy);
            color: var(--primary-navy);
            font-size: 1.1rem;
            margin-bottom: 40px;
            outline: none;
            transition: var(--transition-snappy);
        }

        .newsletter-custom-input-field:focus {
            border-bottom-color: var(--warm-sand);
        }

        .newsletter-action-button-group {
            display: flex;
            gap: 20px;
        }

        .luxury-rounded-action-trigger {
            background: var(--primary-navy);
            color: var(--white);
            border: none;
            padding: 18px 42px;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            cursor: pointer;
            border-radius: 40px; /* Rounded button specification */
            transition: var(--transition-snappy);
        }

        .luxury-rounded-action-trigger:hover {
            background: var(--warm-sand);
            transform: translateY(-3px);
        }

        .luxury-rounded-action-trigger.trigger-secondary {
            background: transparent;
            border: 1px solid rgba(17, 24, 68, 0.2);
            color: var(--primary-navy);
        }

        .luxury-rounded-action-trigger.trigger-secondary:hover {
            background: rgba(17, 24, 68, 0.05);
            border-color: var(--primary-navy);
        }

        .validation-realtime-response-node {
            margin-top: 25px;
            font-size: 1rem;
            font-weight: 400;
            display: none;
            animation: fadeInState 0.5s ease forwards;
        }

        @keyframes fadeInState {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* SECTION CHRONICLE 08: MINDFUL MOMENTS GRAPHIC SUITE */
        .mindful-moments-three-stack-zone {
            display: flex;
            gap: 30px;
            justify-content: flex-end;
            margin-top: -80px;
            position: relative;
            z-index: 4;
        }

        .mindful-moments-three-stack-zone img {
            width: 280px;
            height: 400px;
            object-fit: cover;
            box-shadow: 0 30px 70px rgba(0,0,0,0.06);
            transition: var(--transition-luxe);
        }

        .mindful-moments-three-stack-zone img:hover {
            transform: translateY(-25px) scale(1.02);
        }

        .mindful-moments-triple-bottom-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-top: 120px;
        }

        .triple-bottom-card-node img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            margin-bottom: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.04);
        }

        .triple-bottom-card-node span {
            font-family: "Le Major", serif;
            font-size: 1.3rem;
            color: var(--primary-navy);
        }

        /* JOURNAL MAGAZINE SUBSECTION ARCHITECTURE */
        .journal-magazine-layout-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 80px;
            margin-top: 60px;
        }

        .journal-featured-story-block {
            border-bottom: 1px solid rgba(17, 24, 68, 0.1);
            padding-bottom: 60px;
        }

        .journal-featured-story-block img {
            width: 100%;
            height: 550px;
            object-fit: cover;
            margin-bottom: 30px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.05);
        }

        .reading-progress-indicator-track {
            width: 100%;
            height: 2px;
            background: rgba(17, 24, 68, 0.08);
            margin: 25px 0;
            position: relative;
        }

        .reading-progress-indicator-bar {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 45%;
            background: var(--warm-sand);
        }

        .journal-sidebar-widget-area {
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        .sidebar-widget-box {
            background: rgba(255,255,255,0.3);
            padding: 40px;
            border: 1px solid rgba(255,255,255,0.6);
        }

        .sidebar-widget-box h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            border-bottom: 1px solid rgba(17, 24, 68, 0.1);
            padding-bottom: 10px;
        }

        .category-filter-list-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(17, 24, 68, 0.04);
            cursor: pointer;
            transition: var(--transition-snappy);
        }

        .category-filter-list-item:hover {
            color: var(--warm-sand);
            padding-left: 8px;
        }

        /* YOGA HIGH-GEOMETRY INTERACTIVE SVG PATH TIMELINE */
        .svg-timeline-scrolling-container {
            text-align: center;
            padding: 80px 0;
        }

        .svg-timeline-vector-element {
            width: 100%;
            max-width: 1200px;
            height: auto;
            fill: none;
            stroke: var(--primary-navy);
            stroke-width: 2;
            stroke-dasharray: 8;
        }

        .svg-timeline-text-legend-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 50px auto 0 auto;
            text-align: left;
        }

        .legend-node-block h4 {
            color: var(--accent-red);
            font-size: 1.4rem;
            margin-bottom: 15px;
        }

        /* CREATIVE MASONRY GALLERY WITH LIGHTBOX COUPLING */
        .creative-masonry-gallery-matrix {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .masonry-gallery-structural-node {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            height: 480px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.03);
        }

        .masonry-gallery-structural-node img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-luxe);
        }

        .masonry-gallery-structural-node:hover img {
            transform: scale(1.06);
        }

        .masonry-gallery-overlay-hover-state {
            position: absolute;
            inset: 0;
            background: rgba(17, 24, 68, 0.75);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition-snappy);
            color: var(--white);
            font-size: 1.1rem;
            letter-spacing: 0.1em;
        }

        .masonry-gallery-structural-node:hover .masonry-gallery-overlay-hover-state {
            opacity: 1;
        }

        /* ALTERNATING TEACHERS BIO COMPOSITIONS */
        .teachers-biography-alternating-matrix {
            display: flex;
            flex-direction: column;
            gap: 140px;
            margin-top: 60px;
        }

        .teacher-row-composition-node {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
        }

        .teacher-row-composition-node:nth-child(even) {
            direction: rtl;
        }

        .teacher-row-composition-node:nth-child(even) .teacher-text-context-card {
            direction: ltr;
        }

        .teacher-image-frame-box img {
            width: 100%;
            height: 600px;
            object-fit: cover;
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
        }

        /* CONTACT INVITATION FULLSCREEN PROMPT */
        .contact-invitation-fullscreen-hero {
            min-height: 90vh;
            background-image: linear-gradient(rgba(17,24,68,0.45), rgba(17,24,68,0.45)), url('https://i.pinimg.com/736x/5d/38/32/5d3832389ab543b3d73cc3d2f54f4af3.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 80px 10%;
            color: var(--white);
        }

        .contact-invitation-fullscreen-hero h2, .contact-invitation-fullscreen-hero p {
            color: var(--white) !important;
        }

        /* MASTER LUXURY NOISE EMBEDDED SYSTEM FOOTER */
        footer {
            background-image: var(--noise-green);
            background-size: cover;
            background-position: center;
            padding: 160px 8% 60px 8%;
            color: var(--white);
            position: relative;
        }

        footer h1, footer h2, footer h3, footer h4, footer p, footer a, footer span {
            color: var(--white) !important;
        }

        .footer-primary-structural-grid {
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 70px;
            padding-bottom: 100px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        }

        .footer-column-widget h4 {
            font-size: 1.05rem;
            letter-spacing: 0.15em;
            margin-bottom: 35px;
            color: var(--warm-sand) !important;
        }

        .footer-navigation-link-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .footer-navigation-link-list a {
            text-decoration: none;
            font-size: 0.95rem;
            opacity: 0.75;
            transition: var(--transition-snappy);
            cursor: pointer;
        }

        .footer-navigation-link-list a:hover {
            opacity: 1;
            padding-left: 8px;
            color: var(--warm-sand) !important;
        }

        .footer-baseline-compliance-bar {
            padding-top: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.65;
        }

        .back-to-top-editorial-button {
            width: 60px;
            height: 60px;
            border: 1px solid rgba(255, 255, 255, 0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.4rem;
            transition: var(--transition-luxe);
            border-radius: 50%;
        }

        .back-to-top-editorial-button:hover {
            background: var(--white);
            color: var(--primary-navy) !important;
            transform: translateY(-8px);
        }

        /* INTERNAL SERVICE ARCHITECTURE ALIGNMENT STRIPS */
        .service-page-curated-strip-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            margin-bottom: 160px;
        }

        .service-page-curated-strip-row:nth-child(even) {
            direction: rtl;
        }

        .service-page-curated-strip-row:nth-child(even) .service-text-content-box {
            direction: ltr;
        }

        .service-imagery-wrapper img {
            width: 100%;
            height: 680px;
            object-fit: cover;
            box-shadow: 0 30px 60px rgba(0,0,0,0.05);
        }

        /* MASTER FAQ COMPREHENSIVE ACCORDION NODE MATRICES */
        .accordion-system-structural-node {
            border-bottom: 1px solid rgba(17, 24, 68, 0.12);
            padding: 35px 0;
            cursor: pointer;
        }

        .accordion-system-interactive-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.4rem;
            color: var(--primary-navy);
        }

        .accordion-system-hidden-drawer-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .accordion-system-hidden-drawer-panel p {
            padding-top: 25px;
            color: var(--muted-gray);
            font-size: 1.05rem;
        }

        .accordion-system-structural-node.accordion-node-expanded .accordion-system-hidden-drawer-panel {
            max-height: 400px;
        }

        /* CORE COMPLIANCE LEGAL SPLIT LAYOUT CHARTERS */
        .legal-charter-asymmetric-split {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 80px;
            align-items: start;
        }

        .legal-charter-sticky-navigation-rail {
            position: sticky;
            top: 150px;
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .legal-rail-anchor-link {
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            color: rgba(17, 24, 68, 0.45);
            text-decoration: none;
            transition: var(--transition-snappy);
        }

        .legal-rail-anchor-link:hover, .legal-rail-anchor-link.rail-link-active {
            color: var(--accent-red);
            padding-left: 12px;
            font-weight: 500;
        }

        .legal-charter-content-article-node {
            margin-bottom: 80px;
            border-bottom: 1px solid rgba(17, 24, 68, 0.08);
            padding-bottom: 50px;
        }

        .legal-charter-content-article-node h3 {
            font-size: 1.8rem;
            margin-bottom: 25px;
        }

        /* LIGHTBOX SYSTEM OVERLAY FRAME */
        .lightbox-system-modal-overlay {
            position: fixed;
            inset: 0;
            background: rgba(17, 24, 68, 0.96);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 50px;
            backdrop-filter: blur(10px);
        }

        .lightbox-system-modal-overlay img {
            max-width: 90%;
            max-height: 80vh;
            object-fit: contain;
            box-shadow: 0 60px 120px rgba(0,0,0,0.6);
        }

        .lightbox-system-close-action-trigger {
            position: absolute;
            top: 50px;
            right: 50px;
            color: var(--white);
            font-size: 2.5rem;
            cursor: pointer;
        }

        /* RESPONSIVE LAYOUT TRANSLATIONS & COMPACT ADAPTATIONS */
        @media (max-width: 1200px) {
            header { padding: 30px 5%; }
            header.header-scrolled { padding: 20px 5%; }
            .navigation-center-bar, .header-right-action-zone { display: none; }
            .hamburger-toggle-button { display: flex; }
            
            .hero-section-architecture { min-height: auto; padding: 160px 5% 100px 5%; flex-direction: column; }
            .hero-overlapping-header-container { width: 100%; }
            .hero-overlapping-header-container h1 { margin-right: 0; }
            .hero-right-square-image-card { position: relative; width: 100%; height: 55vh; top: 50px; right: 0; }
            
            .philosophy-horizontal-four-grid, .philosophy-asymmetric-duo-block, .philosophy-flush-right-tall-card-block,
            .three-column-structural-row, .experience-asymmetric-layout-grid, .experience-2x2-internal-matrix,
            .split-subscription-layout-block, .journal-magazine-layout-grid, .creative-masonry-gallery-matrix,
            .teacher-row-composition-node, .service-page-curated-strip-row, .legal-charter-asymmetric-split,
            .footer-primary-structural-grid {
                grid-template-columns: 1fr !important;
                gap: 50px;
            }
            
            .teacher-row-composition-node:nth-child(even) { direction: ltr; }
            .service-page-curated-strip-row:nth-child(even) { direction: ltr; }
            
            .mindful-moments-three-stack-zone { flex-wrap: wrap; justify-content: center; margin-top: 50px; }
            .mindful-moments-triple-bottom-row { grid-template-columns: 1fr !important; }
        }

        @media (max-width: 650px) {
            .svg-timeline-text-legend-grid { grid-template-columns: 1fr !important; }
            .svg-timeline-vector-element { display: none; }
        }
