        /* --- DESIGN SYSTEM SYSTEM TOKENS --- */
        :root {
            --primary: #9929EA;
            --accent: #FD8A6B;
            --bg-white: #FFFFFF;
            --text-black: #111111;
            --text-muted: #666666;
            --bg-dark: #000000;
            --font-main: 'Merriweather Sans', sans-serif;
            --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        /* --- BASIC RESET & ARCHITECTURE --- */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            background-color: #e4bfff;
            color: var(--text-black);
            font-family: var(--font-main);
            font-size: 16px;
            line-height: 1.8;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, .editorial-title {
            font-weight: 300;
            line-height: 1.15;
            letter-spacing: -0.03em;
        }

        p {
            font-size: 1.15rem;
            font-weight: 300;
            color: var(--text-black);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* --- SYSTEM SPA ROUTER ENGINE --- */
        .spa-view-layer {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .spa-view-layer.layer-active {
            display: block;
            opacity: 1;
        }

        /* --- GLOBAL MINIMAL HEADER --- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background-color:  #e4bfff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 2000;
            transition: var(--transition-smooth);
        }

        header.header-scrolled-down {
            transform: translateY(-100%);
            opacity: 0;
        }

        header.header-transparent-up {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            height: 80px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

.logo-box {
    display: flex;
    align-items: center;
    cursor: pointer;
    flex-shrink: 0;
}

.logo-box img {
    display: block;
    height: 156px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-box:hover img {
    transform: scale(1.04);
}
        /* Full Screen Responsive Hamburger Stack */
        .hamburger-button {
            display: none;
            background: transparent;
            border: none;
            cursor: pointer;
            width: 30px;
            height: 20px;
            position: relative;
            z-index: 2200;
        }

        .hamburger-button span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: var(--text-black);
            left: 0;
            transition: var(--transition-smooth);
        }

        .hamburger-button span:nth-child(1) { top: 0px; }
        .hamburger-button span:nth-child(2) { top: 9px; }
        .hamburger-button span:nth-child(3) { top: 18px; }

        .hamburger-button.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
        .hamburger-button.is-active span:nth-child(2) { opacity: 0; }
        .hamburger-button.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

        .nav-links-center {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-links-center a, .nav-right-contact a {
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        .nav-links-center a:hover, .nav-right-contact a:hover {
            color: var(--primary);
        }

        /* --- MAIN GLOBAL REUSABLE STRUCTURES --- */
        section {
            padding: 140px 10%;
            position: relative;
            background-color: var(--bg-white);
        }

        .editorial-h2 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
            margin-bottom: 50px;
        }

        /* --- HOME PAGE SECTIONS --- */
        /* Section 1: Opening Chapter Asymmetrical Layout */
        .opening-chapter-hero {
            display: flex;
            min-height: 100vh;
            padding: 90px 0 0 0;
        }

        .hero-left-editorial {
            width: 35%;
            padding: 8% 4% 8% 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color:  #e4bfff;
        }

        .hero-left-editorial h1 {
            font-size: clamp(3rem, 6vw, 5.5rem);
            line-height: 1.05;
            margin-bottom: 30px;
        }

        .hero-right-media {
            width: 65%;
            position: relative;
        }

        .floating-service-card {
            position: absolute;
            bottom: 60px;
            left: -120px;
            background-color: var(--primary);
            color: var(--bg-white);
            padding: 50px;
            max-width: 480px;
            box-shadow: 0 30px 60px rgba(153, 41, 234, 0.25);
            z-index: 10;
        }

        .floating-service-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .floating-service-card li {
            font-size: 1.4rem;
            font-weight: 300;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .floating-service-card li::before {
            content: "—";
            color: var(--accent);
        }

        /* Section 2: Life In Motion Gallery Layout */
        .lim-top-row {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 60px;
            margin-bottom: 90px;
            align-items: flex-start;
        }

        .lim-top-row h3 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            color: var(--primary);
            font-weight: 700;
        }

        .lim-gallery-columns {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            align-items: end;
        }

        .lim-gallery-columns .col-node:nth-child(1) { height: 750px; }
        .lim-gallery-columns .col-node:nth-child(2) { height: 900px; }
        .lim-gallery-columns .col-node:nth-child(3) { height: 650px; }

        /* Section 3: The Comfort Index Bands */
        .comfort-index-section {
            background-color: var(--primary);
            color: var(--bg-white);
        }

        .comfort-band {
            display: grid;
            grid-template-columns: 1fr 2fr;
            padding: 60px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.25);
            align-items: center;
            gap: 60px;
        }

        .comfort-band:last-child {
            border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        }

        .comfort-band h3 {
            font-size: 2.2rem;
        }

        .comfort-band p {
            color: rgba(255, 255, 255, 0.85);
        }

        /* Section 4: Full Image Pause Viewport */
        .full-image-pause-viewport {
            height: 120vh;
            padding: 0;
            background: linear-gradient(rgba(0,0,0,0.05), rgba(0,0,0,0.05)),
                        url('https://i.pinimg.com/736x/a8/cb/7c/a8cb7c5f4e02018ec3fe5da698326a21.jpg') no-repeat center center/cover;
            background-attachment: fixed;
        }

        /* Section 5: Resident Stories Magazine Grid */
        .story-row-node {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10%;
            align-items: center;
            margin-bottom: 140px;
        }

        .story-row-node:last-child {
            margin-bottom: 0;
        }

        .story-row-node.row-reversed {
            direction: rtl;
        }

        .story-row-node.row-reversed .story-text-container {
            direction: ltr;
        }

        .story-image-frame {
            height: 680px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.03);
        }

        .story-text-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .story-text-container h3 {
            font-size: 2.5rem;
            font-style: italic;
        }

        /* Section 6: Community Moments Horizontal strip */
        .community-moments-section {
            background-color: var(--accent);
            color: var(--text-black);
            padding-right: 0;
        }

        .horizontal-scroll-strip {
            display: flex;
            gap: 40px;
            overflow-x: auto;
            padding: 40px 0;
            scrollbar-width: none;
        }

        .horizontal-scroll-strip::-webkit-scrollbar {
            display: none;
        }

        .strip-card-node {
            flex: 0 0 420px;
        }

        .strip-card-node .image-box {
            height: 520px;
            margin-bottom: 20px;
        }

        .strip-card-node caption {
            display: block;
            text-align: left;
            font-size: 1.1rem;
            font-style: italic;
            font-weight: 400;
        }

        /* Section 7: Wellness Journal Pure Typography */
        .wellness-journal-article {
            max-width: 900px;
            margin: 0 auto;
        }

        .journal-body-typography {
            display: flex;
            flex-direction: column;
            gap: 40px;
            margin-top: 60px;
        }

        .journal-body-typography h3 {
            font-size: 2rem;
            margin-top: 20px;
            font-weight: 400;
        }

        /* Section 8: Visit Us Split */
        .visit-us-split {
            display: flex;
            padding: 0;
            min-height: 80vh;
        }

        .visit-left-purple {
            width: 50%;
            background-color: var(--primary);
            color: var(--bg-white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10%;
        }

        .visit-right-canvas {
            width: 50%;
            background: url('https://i.pinimg.com/736x/62/1e/5b/621e5b0682952c20b1eb1d967404e2f8.jpg') no-repeat center center/cover;
        }

        /* --- LIFESTYLE SUB-PAGE MAGAZINE --- */
        .magazine-grid-hero {
            display: grid;
            grid-template-columns: 1.3fr 0.7fr;
            gap: 40px;
            margin-bottom: 100px;
        }

        .magazine-block-large {
            height: 700px;
        }

        .magazine-story-wrapper {
            margin-bottom: 120px;
        }

        .magazine-story-wrapper h2 {
            font-size: 3rem;
            margin-bottom: 30px;
        }

        /* --- WELLNESS SUB-PAGE JOURNAL --- */
        .wellness-layout-matrix {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 80px;
            margin-top: 60px;
        }

        .wellness-journal-block {
            border-left: 2px solid var(--primary);
            padding-left: 40px;
            margin-bottom: 40px;
        }

        .wellness-journal-block h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        /* --- COMMUNITY SUB-PAGE STORYTELLING --- */
        .community-editorial-hero {
            background-color: #F9F9F9;
            text-align: center;
            padding: 160px 20%;
        }

        .community-masonry-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 60px;
            margin-top: 80px;
        }

        .masonry-card {
            background: #fff;
        }

        .masonry-card .img-frame {
            height: 500px;
            margin-bottom: 25px;
        }

        /* --- ABOUT SUB-PAGE NARRATIVE --- */
        .about-narrative-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* --- CONTACT SUB-PAGE MINIMALIST FORM --- */
        .contact-split-viewport {
            display: flex;
            padding: 180px 0 0 0;
            min-height: 90vh;
        }

        .contact-left-title {
            width: 40%;
            padding: 0 5% 100px 10%;
        }

        .contact-right-form {
            width: 60%;
            padding: 0 10% 100px 5%;
        }

        .input-element-row {
            width: 100%;
            margin-bottom: 45px;
            position: relative;
        }

        .input-element-row input, .input-element-row textarea {
            width: 100%;
            border: none;
            border-bottom: 1px solid #CCCCCC;
            padding: 15px 0;
            font-family: var(--font-main);
            font-size: 1.1rem;
            background: transparent;
            color: var(--text-black);
            transition: var(--transition-smooth);
        }

        .input-element-row input:focus, .input-element-row textarea:focus {
            outline: none;
            border-bottom-color: var(--primary);
        }

        .submit-editorial-btn {
            background: var(--primary);
            color: var(--bg-white);
            border: none;
            padding: 18px 45px;
            font-family: var(--font-main);
            font-size: 0.9rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .submit-editorial-btn:hover {
            background: var(--text-black);
            transform: translateY(-2px);
        }

        /* --- EDITORIAL MULTI-COLUMN BLACK FOOTER --- */
        footer {
            background-color: var(--bg-dark);
            color: var(--bg-white);
            padding: 120px 10% 60px 10%;
        }

        .footer-top-identity h2 {
            font-size: 2.2rem;
            font-weight: 700;
            letter-spacing: 0.05em;
            margin-bottom: 30px;
        }

        .footer-center-quote {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            line-height: 1.1;
            font-style: italic;
            margin: 60px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 60px;
        }

        .footer-grid-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .footer-col h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--accent);
            margin-bottom: 25px;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-col ul a {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.7);
        }

        .footer-col ul a:hover {
            color: var(--bg-white);
            padding-left: 5px;
        }

        .footer-form-box {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-form-box input {
            background: rgba(255,255,255,0.08);
            border: none;
            padding: 14px;
            color: white;
            font-family: var(--font-main);
        }

        .footer-form-box button {
            background-color: var(--accent);
            color: var(--bg-dark);
            border: none;
            padding: 12px;
            font-weight: 700;
            cursor: pointer;
            font-family: var(--font-main);
        }

        .footer-bottom-strip {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.4);
            flex-wrap: wrap;
            gap: 20px;
        }

        /* --- DYNAMIC OVERLAY DIALOGUES FOR PRIVACY / TERMS --- */
        .legal-overlay-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            z-index: 5000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .legal-modal-body {
            background: var(--bg-white);
            color: var(--text-black);
            max-width: 750px;
            width: 100%;
            padding: 60px;
            max-height: 85vh;
            overflow-y: auto;
            border-radius: 4px;
        }

        .legal-modal-body h3 {
            font-size: 2.2rem;
            margin-bottom: 25px;
        }

        .legal-scroll-text p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        /* --- RESPONSIVE ENGINE (MOBILE & HAMBURGER SYSTEM UI) --- */
        @media (max-width: 1024px) {
            .hamburger-button {
                display: block;
            }

            .nav-links-center {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background-color: var(--bg-white);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;
                transition: var(--transition-smooth);
                z-index: 2100;
            }

            .nav-links-center.is-open {
                right: 0;
            }

            .nav-links-center a {
                font-size: 1.8rem;
            }

            .nav-right-contact {
                display: none;
            }

            /* Unfolding Hero and Splits */
            .opening-chapter-hero, .visit-us-split, .contact-split-viewport {
                flex-direction: column;
            }

            .hero-left-editorial, .hero-right-media, .visit-left-purple, .visit-right-canvas, .contact-left-title, .contact-right-form {
                width: 100%;
            }

            .hero-left-editorial {
                padding: 60px 8%;
            }

            .hero-right-media {
                height: 60vh;
            }

            .floating-service-card {
                position: relative;
                left: 0;
                bottom: 0;
                max-width: 100%;
                box-shadow: none;
            }

            .lim-top-row {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .lim-gallery-columns {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .lim-gallery-columns .col-node:nth-child(1),
            .lim-gallery-columns .col-node:nth-child(2),
            .lim-gallery-columns .col-node:nth-child(3) { 
                height: 450px; 
            }

            .comfort-band {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .story-row-node, .story-row-node.row-reversed {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .story-image-frame {
                height: 450px;
            }

            .magazine-grid-hero, .wellness-layout-matrix, .community-masonry-grid, .footer-grid-layout {
                grid-template-columns: 1fr;
            }

            .magazine-block-large {
                height: 400px;
            }
        }
        .form-message {
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 18px;
}

.form-message.success {
    color: #2ecc71;
}

.form-message.error {
    color: #e74c3c;
}
