        /* CSS RESET & VARIABLES */
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --bg-primary: #F5F5F5;
            --text-primary: #605B51;
            --accent-blue: #39B1D1;
            --purple: #744577;
            --light-mint: #A8BBA3;
            --cream: #FAF1E6;
            --line-purple: #8100D1;
            --line-blue: #39B1D1;
            --line-teal: #65DCD5;
            --white: #FFFFFF;
            --font-heading: 'PT Serif', serif;
            --font-body: 'Roboto Flex', sans-serif;
            --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--bg-primary);
            color: var(--text-primary);
            font-family: var(--font-body);
            font-weight: 200;
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* TYPOGRAPHY */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 400;
            color: var(--text-primary);
            line-height: 1.25;
        }

        p {
            font-size: 1.05rem;
            margin-bottom: 1.2rem;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        /* TOP INFO BAR */
        .top-bar {
            background-color: var(--bg-primary);
            height: 46px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4%;
            font-size: 0.82rem;
            border-bottom: 1px solid rgba(96, 91, 81, 0.1);
            position: relative;
            z-index: 1001;
        }

        .top-left, .top-right {
            display: flex;
            align-items: center;
            gap: 15px;
            white-space: nowrap;
        }

        .divider {
            width: 1px;
            height: 14px;
            background-color: var(--text-primary);
            opacity: 0.3;
        }

        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
            width: 40%;
            margin: 0 20px;
        }

        .marquee-content {
            display: inline-block;
            animation: marquee 25s linear infinite;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 0.75rem;
            opacity: 0.85;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        .social-icons a {
            display: inline-block;
            margin-left: 10px;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            color: var(--accent-blue);
        }

        /* MAIN HEADER */
        .main-header {
            background-color: var(--white);
            position: sticky;
            height: 100px;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 4%;
            box-shadow: 0 2px 20px rgba(0,0,0,0.03);
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            margin-top: 2rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--text-primary);
        }

        .logo span {
            color: var(--accent-blue);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 10px 0;
            font-weight: 300;
        }

        .nav-links a:hover {
            color: var(--accent-blue);
        }

        /* MEGA MENU */
        .has-dropdown:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .mega-menu {
            position: absolute;
            top: 100%;
            left: -150px;
            width: 750px;
            background: var(--white);
            box-shadow: 0 15px 30px rgba(0,0,0,0.08);
            padding: 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: var(--transition-smooth);
            border-top: 3px solid var(--accent-blue);
            z-index: 999;
        }

        .mega-item {
            padding: 10px;
            border-radius: 4px;
            transition: background 0.3s ease;
        }

        .mega-item:hover {
            background-color: var(--bg-primary);
        }

        .mega-item h4 {
            color: var(--accent-blue);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .mega-item p {
            font-size: 0.82rem;
            margin-bottom: 0;
            color: var(--text-primary);
            line-height: 1.4;
        }

        /* BUTTONS */
        .btn-primary {
            background-color: var(--accent-blue);
            color: var(--white);
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: var(--transition-smooth);
            display: inline-block;
        }

        .btn-primary:hover {
            background-color: var(--purple);
            box-shadow: 0 5px 15px rgba(116, 69, 119, 0.3);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 1px solid var(--white);
            padding: 14px 28px;
            border-radius: 30px;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition-smooth);
            margin-left: 15px;
            display: inline-block;
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--text-primary);
        }

        /* HAMBURGER MENU */
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            gap: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 2px;
            background-color: var(--text-primary);
            transition: var(--transition-smooth);
        }

        /* HERO SECTION */
        .hero {
            height: calc(100vh - 110px);
            background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url('https://i.pinimg.com/1200x/29/3b/d2/293bd23845758bffc9c2f56ffc856937.jpg') center/cover no-repeat;
            display: flex;
            align-items: center;
            padding: 0 8%;
            color: var(--white);
        }

        .hero-content {
            max-width: 650px;
            animation: fadeIn 1.2s ease-out;
        }

        .hero-label {
            font-size: 0.8rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: block;
            color: var(--accent-blue);
        }

        .hero h1 {
            color: var(--white);
            font-size: 3.8rem;
            margin-bottom: 25px;
            line-height: 1.15;
        }

        .hero p {
            font-weight: 300;
            font-size: 1.15rem;
            margin-bottom: 35px;
            opacity: 0.9;
        }

        /* SECTION 1: 3 CARDS */
        .section-1 {
            display: flex;
            background-color: var(--purple);
        }

        .s1-card {
            flex: 1;
            padding: 60px 40px;
            color: var(--white);
            position: relative;
            border-top: 6px solid transparent;
            transition: var(--transition-smooth);
        }

        .s1-card-1 { border-top-color: var(--line-purple); }
        .s1-card-2 { border-top-color: var(--line-blue); }
        .s1-card-3 { border-top-color: var(--line-teal); }

        .s1-card:hover {
            transform: translateY(-8px);
            background-color: rgba(255,255,255,0.05);
        }

        .s1-card h3 {
            color: var(--white);
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .s1-card p {
            opacity: 0.85;
            font-size: 0.95rem;
        }

        /* SECTION 2: SPECIALIZED CARE Grid */
        .section-2 {
            background-color: var(--white);
            padding: 100px 8%;
            text-align: center;
        }

        .section-2 h2 {
            font-size: 2.8rem;
            margin-bottom: 10px;
        }

        .section-2 .sub-quote {
            font-family: var(--font-heading);
            font-style: italic;
            color: var(--accent-blue);
            font-size: 1.2rem;
            margin-bottom: 60px;
        }

        .grid-2x3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            text-align: left;
        }

        .editorial-card h3 {
            color: var(--accent-blue);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .editorial-card p {
            color: #222222;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* SECTION 3: SPLIT LAYOUT */
        .section-3 {
            display: flex;
            min-height: 80vh;
        }

        .s3-image {
            flex: 1;
            background: url('https://images.unsplash.com/photo-1544027993-37dbfe43562a?auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
        }

        .s3-content {
            flex: 1;
            background-color: var(--white);
            padding: 80px 8%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .s3-content h2 {
            font-size: 2.8rem;
            margin-bottom: 25px;
        }

        .highlight {
            color: var(--accent-blue);
        }

        /* SECTION 4: PARALLAX */
        .section-4 {
            height: 60vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1518241353330-0f7941c2d9b5?auto=format&fit=crop&w=1920&q=80') fixed center/cover no-repeat;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: var(--white);
            padding: 0 10%;
        }

        .section-4 h2 {
            color: var(--white);
            font-size: 3.2rem;
            margin-bottom: 20px;
        }

        .section-4 p {
            max-width: 600px;
            font-size: 1.2rem;
        }

        /* SECTION 5: THERAPISTS SLIDER */
        .section-5 {
            background-color: var(--white);
            padding: 100px 8%;
            text-align: center;
        }

        .therapist-slider-container {
            margin-top: 50px;
            position: relative;
            overflow: hidden;
        }

        .therapist-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
        }

        .therapist-card {
            min-width: calc(33.333% - 20px);
            text-align: left;
            background-color: var(--bg-primary);
            padding: 25px;
            border-radius: 8px;
        }

        .therapist-card img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            border-radius: 4px;
            margin-bottom: 20px;
        }

        .therapist-card h4 {
            font-size: 1.4rem;
            margin-bottom: 5px;
        }

        .therapist-card .spec {
            color: var(--accent-blue);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            display: block;
        }

        .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
        }

        .slider-arrow {
            background: none;
            border: 1px solid var(--text-primary);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition-smooth);
        }

        .slider-arrow:hover {
            background: var(--accent-blue);
            border-color: var(--accent-blue);
            color: var(--white);
        }

        .slider-dots {
            display: flex;
            gap: 8px;
        }

        .dot {
            width: 10px;
            height: 10px;
            background-color: #ccc;
            border-radius: 50%;
            cursor: pointer;
        }

        .dot.active {
            background-color: var(--accent-blue);
        }

        /* SECTION 6: PURPLE HOLISTIC */
        .section-6 {
            background-color: var(--purple);
            color: var(--white);
            padding: 100px 8%;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .s6-left {
            flex: 1;
            z-index: 2;
        }

        .s6-left p {
            font-size: 1.6rem;
            line-height: 1.6;
            font-family: var(--font-heading);
        }

        .s6-right {
            flex: 1;
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .s6-right img {
            max-width: 80%;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        /* SECTION 7: FULL WIDTH BANNER RIGHT ALIGNED */
        .section-7 {
            height: 70vh;
            background: linear-gradient(to right, rgba(0,0,0,0.1), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1527137342181-19aab11a8ee8?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding: 0 8%;
        }

        .s7-content {
            max-width: 550px;
            color: var(--white);
            text-align: right;
        }

        .s7-content h2 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 20px;
        }

        /* SECTION 8: CREAM EDITORIAL RESOURCES */
        .section-8 {
            background-color: var(--cream);
            padding: 100px 8%;
        }

        .section-8 h2 {
            text-align: center;
            font-size: 2.8rem;
            margin-bottom: 60px;
        }

        .resource-row {
            display: flex;
            gap: 50px;
            align-items: center;
            margin-bottom: 60px;
        }

        .resource-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .resource-img {
            flex: 1;
        }

        .resource-img img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            border-radius: 4px;
        }

        .resource-text {
            flex: 1;
        }

        .resource-text h3 {
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .resource-text .quote {
            font-style: italic;
            color: var(--purple);
            margin-bottom: 15px;
            display: block;
        }

        /* SECTION 9: PHILOSOPHY QUOTATION */
        .section-9 {
            background-color: var(--white);
            padding: 100px 8%;
            text-align: center;
        }

        .s9-quote {
            font-size: 2.2rem;
            color: var(--accent-blue);
            font-family: var(--font-heading);
            font-style: italic;
            max-width: 900px;
            margin: 0 auto 60px auto;
            line-height: 1.4;
        }

        .s9-columns {
            display: flex;
            gap: 60px;
            text-align: left;
        }

        .s9-col {
            flex: 1;
        }

        .s9-col h3 {
            font-family: var(--font-heading);
            font-style: italic;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        /* SECTION 10: NEWSLETTER */
        .section-10 {
            background-color: var(--purple);
            color: var(--white);
            padding: 100px 8%;
            text-align: center;
        }

        .section-10 h2 {
            color: var(--white);
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .newsletter-form {
            max-width: 550px;
            margin: 40px auto 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .input-group {
            display: flex;
            gap: 10px;
        }

        .newsletter-form input[type="email"] {
            flex: 1;
            padding: 15px 20px;
            border-radius: 30px;
            border: none;
            outline: none;
            font-size: 0.95rem;
        }

        .msg-box {
            font-size: 0.9rem;
            margin-top: 10px;
            display: none;
        }

        .msg-box.error { color: #ff9999; display: block; }
        .msg-box.success { color: #99ff99; display: block; }

        /* SECTION 11: VISUAL BREATHING SPACE */
        .section-11 {
            height: 50vh;
            background: url('https://images.unsplash.com/photo-1470240731273-7821a6eeb6bd?auto=format&fit=crop&w=1920&q=80') center/cover fixed no-repeat;
        }

        /* FOOTER */
        footer {
            background-color: var(--light-mint);
            color: var(--white);
            padding: 80px 8% 30px 8%;
            text-align: center;
        }

        .footer-logo {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: var(--white);
        }

        .footer-desc {
            max-width: 600px;
            margin: 0 auto 50px auto;
            opacity: 0.9;
        }

        .footer-columns {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 30px;
            text-align: center;
            margin-bottom: 60px;
        }

        .footer-col h5 {
            color: var(--white);
            font-size: 1.1rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            opacity: 0.85;
            font-size: 0.9rem;
        }

        .footer-col ul li a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 30px;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        /* DYNAMIC PAGE CONTAINERS */
        .page-view {
            display: none;
            animation: fadeIn 0.6s ease;
        }

        .page-view.active {
            display: block;
        }

        .page-banner {
            height: 40vh;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1516307365426-bea591f05011?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-align: center;
        }

        .page-banner h1 {
            color: var(--white);
            font-size: 3.5rem;
        }

        .page-content-area {
            padding: 80px 12%;
            background: var(--white);
        }

        .legal-content h2 {
            margin: 30px 0 15px 0;
            font-size: 1.8rem;
        }

        .legal-content p {
            color: #222222;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* RESPONSIVE MEDIA QUERIES */
        @media (max-width: 1024px) {
            .mega-menu { width: 100%; left: 0; }
            .grid-2x3 { grid-template-columns: repeat(2, 1fr); }
            .footer-columns { grid-template-columns: repeat(3, 1fr); }
            .therapist-card { min-width: calc(50% - 15px); }
        }

        @media (max-width: 768px) {
            .top-bar { display: none; }
            .hamburger { display: flex; }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--white);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
                display: none;
            }
            .nav-links.mobile-active { display: flex; }
            .mega-menu { position: static; box-shadow: none; width: 100%; grid-template-columns: 1fr; }
            .hero h1 { font-size: 2.5rem; }
            .section-1 { flex-direction: column; }
            .grid-2x3 { grid-template-columns: 1fr; }
            .section-3 { flex-direction: column; }
            .s3-image { height: 300px; }
            .s9-columns { flex-direction: column; }
            .resource-row, .resource-row:nth-child(even) { flex-direction: column; }
            .therapist-card { min-width: 100%; }
            .footer-columns { grid-template-columns: 1fr; text-align: center; }
            .section-6 { flex-direction: column; text-align: center; }
            .s6-left p { font-size: 1.2rem; }
        }
