        /* --- DESIGN SYSTEM CORE & RESET --- */
        :root {
            --accent: #F1FF5E;
            --white: #FFFFFF;
            --black: #111111;
            --gray: #F5F5F5;
            --font: 'Raleway', sans-serif;
            --bezier: cubic-bezier(0.25, 1, 0.5, 1);
            --transition: all 0.5s var(--bezier);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font);
            background-color: var(--white);
            color: var(--black);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        /* --- TYPOGRAPHY PATTERNS --- */
        h1, h2, h3, h4, .massive-heading {
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.04em;
            line-height: 0.85;
        }

        p {
            font-size: 1.15rem;
            line-height: 1.75;
            font-weight: 400;
            color: #2b2b2b;
        }

        p.lead {
            font-size: 1.4rem;
            line-height: 1.6;
            font-weight: 500;
            color: var(--black);
        }

        .editorial-label {
            font-size: 0.85rem;
            font-weight: 800;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            color: var(--black);
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .accent-divider {
            width: 100%;
            height: 4px;
            background-color: var(--accent);
            margin: 2rem 0;
            border: none;
        }

        /* --- GLOBAL MEDIA / UI ELEMENTS --- */
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            filter: grayscale(10%) contrast(105%);
            transition: var(--transition);
        }

        .img-container {
            overflow: hidden;
            background-color: var(--gray);
            position: relative;
        }

        /* --- BUTTONS --- */
        .cta-btn {
            display: inline-block;
            padding: 20px 45px;
            border: 2px solid var(--black);
            background: transparent;
            font-weight: 800;
            font-size: 0.95rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }

        .cta-btn:hover {
            background-color: var(--accent);
            color: var(--black);
            border-color: var(--accent);
        }

        .cta-btn.inverted {
            border-color: var(--white);
            color: var(--white);
        }

        .cta-btn.inverted:hover {
            background-color: var(--accent);
            color: var(--black);
            border-color: var(--accent);
        }

        /* --- GLOBAL HEADER --- */
        header {
            width: 100%;
            height: 90px;
            background-color: var(--white);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 4rem;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(17, 17, 17, 0.08);
        }

.logo{
    display:inline-flex;
    align-items:center;
    cursor:pointer;
}

.logo img{
    height:210px;
    width:auto;
    display:block;
    object-fit:contain;
}
        nav {
            height: 100%;
        }

        nav ul {
            display: flex;
            list-style: none;
            height: 100%;
            align-items: center;
        }

        nav ul li {
            height: 100%;
            display: flex;
            align-items: center;
        }

        .nav-link {
            padding: 0 2.5rem;
            height: 100%;
            display: flex;
            align-items: center;
            font-weight: 800;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--black);
            transition: var(--transition);
            cursor: pointer;
        }

        .nav-link:hover, .nav-link.active-tab {
            background-color: var(--accent);
        }

        /* Responsive Mobile Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 32px;
            height: 22px;
            cursor: pointer;
            z-index: 1010;
        }

        .hamburger span {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--black);
            transition: var(--transition);
        }

        /* --- VIEWPORT MANAGEMENT SYSTEM --- */
        .page-view {
            display: none;
            margin-top: 90px;
            animation: fadeIn 0.6s var(--bezier) forwards;
        }

        .page-view.active-view {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(15px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* --- HOME PAGE SECTIONS --- */
        /* Hero Section */
        .hero-section {
            height: calc(100vh - 90px);
            display: flex;
        }

        .hero-left {
            width: 65%;
            background-color: var(--white);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0 10%;
        }

        .hero-headline {
            font-size: clamp(4.5rem, 11vw, 9.5rem);
            display: flex;
            flex-direction: column;
            margin-bottom: 2.5rem;
        }

        .hero-headline span:nth-child(2) {
            background-color: var(--accent);
            width: fit-content;
            padding-right: 30px;
        }

        .hero-paragraph {
            max-width: 550px;
            margin-bottom: 3rem;
        }

        .hero-right {
            width: 35%;
            height: 100%;
        }

        /* Section 2: Split */
        .split-section-50 {
            display: flex;
            min-height: 90vh;
        }

        .split-left-img {
            width: 50%;
            position: relative;
        }

        .split-right-content {
            width: 50%;
            background-color: var(--white);
            padding: 8% 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .split-right-content h2 {
            font-size: clamp(2.5rem, 5vw, 5rem);
            margin-bottom: 2.5rem;
        }

        .sub-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            margin-top: 3.5rem;
        }

        .sub-content-item h4 {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
        }

        /* Section 3 & 5: 3-Column Zero Gap Grids */
        .editorial-grid-3 {
            display: flex;
            width: 100%;
        }

        .grid-col-3 {
            width: 33.333%;
            display: flex;
            flex-direction: column;
            border-right: 1px solid rgba(17,17,17,0.05);
        }

        .grid-col-3:last-child {
            border-right: none;
        }

        .grid-col-3 .img-container.h80 {
            height: 70vh;
        }

        .grid-col-3 .content-block-20 {
            background-color: var(--white);
            padding: 3rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .grid-col-3 .content-block-20 h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        /* Section 4: Image Dialogue */
        .image-dialogue-90 {
            height: 90vh;
            display: flex;
            background-color: var(--black);
        }

        .dialogue-half {
            width: 50%;
            height: 100%;
        }

        .dialogue-half:first-child {
            border-right: 1px solid var(--white);
        }

        /* Section 6 & 7 Features */
        .editorial-feature-row {
            display: flex;
            min-height: 100vh;
        }

        .feat-content-side {
            width: 50%;
            padding: 8% 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background-color: var(--white);
        }

        .feat-content-side h2 {
            font-size: clamp(3rem, 6vw, 6rem);
            margin-bottom: 2.5rem;
        }

        .feat-img-side {
            width: 50%;
        }

        .quote-callout-block {
            background-color: var(--gray);
            border-left: 6px solid var(--black);
            padding: 2.5rem;
            font-size: 1.35rem;
            font-weight: 700;
            line-height: 1.5;
            margin: 3rem 0;
            text-transform: uppercase;
        }

        /* Section 8: Fluorescent Narrative */
        .fluorescent-section {
            background-color: var(--accent);
            color: var(--black);
            padding: 10% 15%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .fluorescent-section h2 {
            font-size: clamp(3.5rem, 8vw, 8rem);
            margin-bottom: 3rem;
        }

        .fluorescent-section p.story {
            max-width: 900px;
            font-size: 1.5rem;
            line-height: 1.7;
            font-weight: 500;
            margin-bottom: 5rem;
            color: var(--black);
        }

        .stats-row-container {
            width: 100%;
            display: flex;
            justify-content: space-between;
            max-width: 1000px;
            gap: 2rem;
        }

        .stat-node h3 {
            font-size: clamp(3rem, 6vw, 5.5rem);
            margin-bottom: 0.5rem;
        }

        /* Section 9: Image Strip */
        .image-gallery-strip {
            display: flex;
            width: 100%;
            height: 450px;
        }

        .strip-img-holder {
            width: 20%;
            height: 100%;
        }

        /* Section 10: Dark Statement */
        .dark-statement-section {
            background-color: var(--black);
            color: var(--white);
            padding: 12% 10%;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .dark-statement-section h2 {
            font-size: clamp(3.5rem, 8vw, 8.5rem);
            color: var(--white);
            margin-bottom: 2.5rem;
            max-width: 1200px;
        }

        .dark-statement-section p {
            color: #cccccc;
            max-width: 600px;
            margin-bottom: 3.5rem;
        }

        /* --- PAGE 2: ABOUT (THE WELLNESS MANIFESTO) --- */
        .manifesto-hero {
            background-color: var(--black);
            color: var(--white);
            padding: 12% 8%;
            text-align: left;
        }

        .manifesto-hero h1 {
            font-size: clamp(4rem, 10vw, 9rem);
            max-width: 1100px;
        }

        .manifesto-row {
            display: flex;
            min-height: 80vh;
        }

        .manifesto-row.reverse {
            flex-direction: row-reverse;
        }

        .manifesto-text {
            width: 50%;
            padding: 8% 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .manifesto-text h2 {
            font-size: clamp(2.5rem, 4vw, 4.5rem);
            margin-bottom: 2rem;
        }

        .manifesto-media {
            width: 50%;
        }

        .fullscreen-photo-block {
            height: 100vh;
            width: 100%;
            position: relative;
        }

        /* --- PAGE 3: SERVICES (THE TRAINING COLLECTION) --- */
        .collection-hero {
            padding: 8% 4rem 4rem 4rem;
            border-bottom: 2px solid var(--black);
        }

        .collection-hero h1 {
            font-size: clamp(4rem, 9vw, 8.5rem);
        }

        .service-chapter {
            width: 100%;
        }

        .service-chapter-hero-img {
            height: 75vh;
            width: 100%;
        }

        .service-chapter-story {
            padding: 6% 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            border-bottom: 1px solid rgba(17,17,17,0.1);
        }

        .service-chapter-story h2 {
            font-size: clamp(2.5rem, 4vw, 4.5rem);
        }

        /* --- PAGE 4: LOCATION (VISIT OUR SPACE) --- */
        .location-container {
            display: flex;
            flex-direction: column;
        }

        .location-hero-banner {
            height: 70vh;
            width: 100%;
        }

        .location-editorial-block {
            display: flex;
            padding: 6% 4rem;
            gap: 6rem;
        }

        .location-meta {
            width: 40%;
        }

        .location-meta h1 {
            font-size: clamp(3.5rem, 6vw, 6.5rem);
            margin-bottom: 3rem;
        }

        .meta-group {
            margin-bottom: 2.5rem;
        }

        .meta-group h4 {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            letter-spacing: 0.1em;
        }

        .location-narrative {
            width: 60%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 3rem;
        }

        .mock-map-area {
            width: 100%;
            height: 450px;
            background-color: var(--gray);
            border: 2px solid var(--black);
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.2em;
        }

        /* --- PAGE 5: CONTACT --- */
        .contact-split {
            display: flex;
            min-height: 80vh;
            border-bottom: 1px solid rgba(17,17,17,0.1);
        }

        .contact-left-invitation {
            width: 50%;
            padding: 8% 8%;
            background-color: var(--gray);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .contact-left-invitation h1 {
            font-size: clamp(3.5rem, 6vw, 6.5rem);
            margin-bottom: 2.5rem;
        }

        .contact-right-form {
            width: 50%;
            padding: 8% 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .editorial-form {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .form-row {
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .form-row label {
            font-size: 0.85rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.75rem;
        }

        .form-row input, .form-row textarea {
            width: 100%;
            padding: 15px 0;
            border: none;
            border-bottom: 2px solid var(--black);
            background: transparent;
            font-family: var(--font);
            font-size: 1.1rem;
            color: var(--black);
            outline: none;
            transition: var(--transition);
        }

        .form-row input:focus, .form-row textarea:focus {
            border-bottom-color: #999999;
        }

        /* FAQ Section */
        .faq-section {
            padding: 8% 4rem;
        }

        .faq-section h2 {
            font-size: clamp(3rem, 5vw, 5rem);
            margin-bottom: 4rem;
            text-align: center;
        }

        .faq-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }

        .faq-node h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        /* --- FOOTER --- */
        footer {
            background-color: var(--white);
            padding: 80px 4rem 4rem 4rem;
            border-top: 2px solid var(--black);
        }

        .footer-columns {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 4rem;
            padding-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 1rem;
            letter-spacing: 0.15em;
            margin-bottom: 1.75rem;
        }

        .footer-col p {
            font-size: 1.05rem;
            line-height: 1.6;
            max-width: 320px;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.85rem;
        }

        .footer-col ul li a {
            text-decoration: none;
            color: var(--black);
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            cursor: pointer;
        }

        .footer-col ul li a:hover {
            background-color: var(--accent);
        }

        .footer-bottom-row {
            padding-top: 40px;
            border-top: 1px solid rgba(17,17,17,0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            font-size: 0.95rem;
        }

        /* --- MODAL STRUCTURES --- */
        .editorial-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(17,17,17,0.85);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 2rem;
        }

        .modal-body {
            background-color: var(--white);
            max-width: 850px;
            width: 100%;
            max-height: 85vh;
            overflow-y: auto;
            border: 3px solid var(--black);
            padding: 4rem;
            position: relative;
        }

        .modal-close-trigger {
            position: absolute;
            top: 25px;
            right: 35px;
            font-size: 2.5rem;
            font-weight: 300;
            cursor: pointer;
        }

        .modal-body h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
        }

        .modal-body h3 {
            font-size: 1.4rem;
            margin: 2rem 0 0.75rem 0;
        }

        .modal-body p {
            font-size: 1.05rem;
            margin-bottom: 1.25rem;
        }

        /* --- RESPONSIVE ADAPTABILITY --- */
        @media (max-width: 1100px) {
            header { padding: 0 2rem; }
            footer { padding: 60px 2rem 3rem 2rem; }
            .hero-left, .split-right-content, .feat-content-side, .manifesto-text, .contact-left-invitation, .contact-right-form {
                padding: 6% 5%;
            }
            .footer-columns { grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; }
            .footer-col:last-child { grid-column: span 3; }
        }

        @media (max-width: 900px) {
            .hamburger { display: flex; }
            
            nav {
                position: fixed;
                top: 90px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 90px);
                background-color: var(--white);
                transition: var(--transition);
                border-top: 1px solid rgba(17,17,17,0.1);
            }

            nav.mobile-active {
                left: 0;
            }

            nav ul {
                flex-direction: column;
                justify-content: flex-start;
                padding-top: 3rem;
            }

            nav ul li {
                width: 100%;
                height: auto;
            }

            .nav-link {
                width: 100%;
                padding: 2rem 0;
                justify-content: center;
                font-size: 1.4rem;
            }

            /* Stack layouts completely */
            .hero-section, .split-section-50, .editorial-grid-3, .image-dialogue-90, .editorial-feature-row, .manifesto-row, .contact-split {
                flex-direction: column;
                height: auto;
            }

            .hero-left, .hero-right, .split-left-img, .split-right-content, .grid-col-3, .dialogue-half, .feat-content-side, .feat-img-side, .manifesto-text, .manifesto-media, .contact-left-invitation, .contact-right-form {
                width: 100%;
                height: auto;
            }

            .hero-left, .split-right-content, .feat-content-side, .manifesto-text, .contact-left-invitation, .contact-right-form {
                padding: 5rem 2rem;
            }

            .hero-right, .split-left-img, .grid-col-3 .img-container.h80, .dialogue-half, .feat-img-side, .manifesto-media {
                height: 550px;
            }

            .image-gallery-strip {
                flex-wrap: wrap;
                height: auto;
            }

            .strip-img-holder {
                width: 50%;
                height: 250px;
            }

            .strip-img-holder:last-child {
                width: 100%;
                height: 350px;
            }

            .service-chapter-story {
                grid-template-columns: 1fr;
                gap: 3rem;
                padding: 4rem 2rem;
            }

            .location-editorial-block {
                flex-direction: column;
                gap: 4rem;
                padding: 4rem 2rem;
            }

            .location-meta, .location-narrative {
                width: 100%;
            }

            .stats-row-container {
                flex-direction: column;
                gap: 3rem;
            }

            .footer-columns {
                grid-template-columns: 1fr;
            }

            .footer-col, .footer-col:last-child {
                grid-column: span 1;
            }

            .footer-bottom-row {
                flex-direction: column;
                gap: 1.5rem;
                text-align: center;
            }
        }

        /* Hamburger active cross morph effect */
        .hamburger.open span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
        .hamburger.open span:nth-child(2) { opacity: 0; }
        .hamburger.open span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
        .footer-newsletter{
    margin-top:4rem;
    padding:2.5rem;
    border-top:1px solid rgba(255,255,255,0.08);
    border-bottom:1px solid rgba(255,255,255,0.08);
    text-align:center;
}

.footer-newsletter h4{
    font-size:1.4rem;
    margin-bottom:0.75rem;
    text-transform:uppercase;
    letter-spacing:0.08em;
}

.footer-newsletter p{
    max-width:700px;
    margin:0 auto 1.5rem;
    color:#888;
    line-height:1.8;
}

.newsletter-wrapper{
    max-width:600px;
    margin:auto;
}

.newsletter-wrapper input{
    width:100%;
    padding:1rem 1.2rem;
    border:1px solid #333;
    background:#111;
    color:#fff;
    outline:none;
    font-size:1rem;
    margin-bottom:1rem;
}

.newsletter-wrapper input:focus{
    border-color:#888;
}

.newsletter-actions{
    display:flex;
    justify-content:center;
    gap:1rem;
    flex-wrap:wrap;
}

.subscribe-btn,
.unsubscribe-btn{
    padding:0.9rem 2rem;
    border:none;
    cursor:pointer;
    font-weight:600;
    letter-spacing:0.08em;
    text-transform:uppercase;
    transition:0.3s;
}

.subscribe-btn{
    background:#ffa4a4;
    color:#000;
}

.subscribe-btn:hover{
    transform:translateY(-2px);
}

.unsubscribe-btn{
    background:transparent;
    border:1px solid #555;
    color:#ff7a7a;
}

.unsubscribe-btn:hover{
    border-color:#fff;
}

#newsletterMessage{
    margin-top:1rem;
    min-height:24px;
    color:#aaa;
    font-size:0.9rem;
}
