  :root {
            --cream: #F7F5F0;
            --warm-white: #FDFCFA;
            --charcoal: #2A2A2A;
            --muted: #82739c;
            --lavender: #82739c;
            --blush: #E8C9C9;
            --sage: #B2C4B2;
            --dark-teal: #1C2E2E;
            --gold: #C9A96E;
            --border: #E8E4DC;
            --headline-body-gap: 1.5rem;
            --tone-line-gap: 0.75rem;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--charcoal);
            background: var(--warm-white);
            overflow-x: hidden;
        }

        /* NAV */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.4rem 5vw;
            position: sticky;
            top: 0;
            background: rgba(253, 252, 250, 0.9);
            backdrop-filter: blur(16px);
            z-index: 100;
            border-bottom: 1px solid var(--border);
        }

        .nav-logo {
            font-family: 'DM Serif Display', serif;
            font-size: 1.2rem;
            color: var(--charcoal);
            text-decoration: none;
        }

        /* hamburger toggle hidden by default */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: var(--charcoal);
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--muted);
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            transition: color 0.3s;
        }

        .nav-links a:hover { color: var(--charcoal); }

        .nav-cta {
            display: inline-flex !important;
            align-items: center;
            gap: 0.5rem;
            background: var(--dark-teal) !important;
            color: white !important;
            padding: 0.6rem 1.4rem !important;
            border-radius: 50px;
            font-size: 0.75rem !important;
            letter-spacing: 0.1em !important;
            text-transform: uppercase !important;
        }

        .dot-green {
            width: 6px;
            height: 6px;
            background: #4CAF91;
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
        }

        /* HERO */
        .hero {
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4rem 5vw 5rem;
            background:
                radial-gradient(ellipse at 15% 20%, rgba(196, 181, 212, 0.3) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 80%, rgba(201, 169, 110, 0.18) 0%, transparent 50%),
                radial-gradient(ellipse at 55% 60%, rgba(232, 201, 201, 0.2) 0%, transparent 60%),
                var(--warm-white);
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 5vw;
            align-items: center;
            max-width: 1200px;
            width: 100%;
        }

        .hero-img-wrap {
            position: relative;
            order: 2;
        }

        .hero-img-wrap::before {
            content: '';
            position: absolute;
            inset: -14px;
            border: 1px solid rgba(196,181,212,0.45);
            border-radius: 24px;
            z-index: 0;
        }

        .hero-img-wrap img {
            width: 100%;
            aspect-ratio: 5 / 6;
            object-fit: cover;
            object-position: center top;
            border-radius: 18px;
            position: relative;
            z-index: 1;
            display: block;
        }

        .hero-img-wrap .hero-img-mobile { display: none; }

        .hero-img-placeholder {
            width: 100%;
            aspect-ratio: 5 / 6;
            background: linear-gradient(160deg, rgba(178,196,178,0.3), rgba(196,181,212,0.4));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 0.85rem;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 640px;
            text-align: left;
            order: 1;
        }

        .hero-eyebrow {
            display: block;
            font-size: 0.76rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 2rem;
            max-width: 100%;
            line-height: 1.5;
        }

        .hero h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.6rem, 5.5vw, 4.6rem);
            line-height: 1.08;
            letter-spacing: -2px;
            color: var(--charcoal);
            margin-bottom: var(--headline-body-gap);
        }

        .hero h1 .word-in { font-style: italic; }
        .hero h1 .word-therapy { font-style: italic; color: #82739c; }
        .hero h1 .word-therapy-end { color: var(--blush); }

        .hero-sub {
            font-size: 1.02rem;
            color: var(--muted);
            max-width: 560px;
            margin: 0 0 2.5rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .hero-sub strong { color: var(--charcoal); font-weight: 500; }

        @media (max-width: 960px) {
            .hero {
                min-height: auto;
                padding: 1.5rem 1.25rem 3.5rem;
                align-items: flex-start;
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            /* Mobile: image first when site opens */
            .hero-img-wrap { order: -1; max-width: 100%; margin: 0 auto; }
            .hero-img-wrap::before { inset: -10px; }
            .hero-img-wrap .hero-img-desktop { display: none; }
            .hero-img-wrap .hero-img-mobile {
                display: block;
                aspect-ratio: auto;
                height: auto;
                object-fit: contain;
                object-position: center;
            }
            .hero-content { text-align: center; max-width: 100%; order: 1; }
            .hero-eyebrow {
                text-align: center;
                letter-spacing: 0.08em;
                font-size: 0.7rem;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-sub { margin-left: auto; margin-right: auto; }
            .hero .btn-primary { margin-left: auto; margin-right: auto; }

            /* Match hero heading→body gap on mobile */
            .hero h1,
            .about-content h2,
            .page-hero h1 {
                margin-bottom: var(--headline-body-gap);
            }

            .about-content h2 + p {
                margin-top: 0;
            }

            .page-hero h1 br + em,
            h1 br + em,
            h2 br + em {
                margin-top: var(--tone-line-gap);
            }
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: var(--dark-teal);
            color: white;
            text-decoration: none;
            padding: 1rem 2.4rem;
            border-radius: 50px;
            font-size: 0.8rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-weight: 500;
            transition: all 0.3s;
            margin-bottom: 1.2rem;
        }

        .btn-primary:hover { background: #2c4a4a; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(28,46,46,0.2); }

        /* FEATURED VIDEO (home) */
        .video-spotlight-section {
            padding: 4rem 5vw;
            background:
                radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196, 181, 212, 0.22) 0%, transparent 65%),
                var(--cream);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .video-spotlight-inner {
            max-width: 920px;
            margin: 0 auto;
        }

        .video-spotlight-head {
            text-align: center;
            margin-bottom: 2.25rem;
        }

        .video-spotlight-head .eyebrow {
            margin-bottom: 0.85rem;
        }

        .video-spotlight-title {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.85rem, 3.2vw, 2.65rem);
            letter-spacing: -0.5px;
            line-height: 1.15;
            color: var(--charcoal);
            margin-bottom: 0.75rem;
        }

        .video-spotlight-sub {
            color: var(--muted);
            font-size: 0.95rem;
            font-weight: 300;
            line-height: 1.65;
            max-width: 520px;
            margin: 0 auto;
        }

        .video-spotlight-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                0 28px 56px rgba(28, 46, 46, 0.14),
                0 10px 24px rgba(42, 42, 42, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(196, 181, 212, 0.4);
            background: linear-gradient(160deg, #1C2E2E 0%, #243838 100%);
        }

        .video-spotlight-aspect {
            position: relative;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #1a2525;
        }

        .video-spotlight-aspect iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
        }

        .video-spotlight-hint {
            margin-top: 1.1rem;
            text-align: center;
            font-size: 0.78rem;
            color: var(--muted);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            flex-wrap: wrap;
        }

        .video-spotlight-hint i {
            opacity: 0.75;
            font-size: 0.72rem;
        }

        /* Featured video inside In The Media (home) */
        .video-spotlight-section--in-media {
            margin-top: 3.25rem;
            padding: 3rem 0 0;
            background: transparent;
            border: none;
            border-top: 1px solid var(--border);
        }

        .video-spotlight-section--in-media .video-spotlight-inner {
            max-width: 880px;
        }

        .video-spotlight-section--in-media .video-spotlight-head {
            margin-bottom: 1.75rem;
        }

        @media (max-width: 768px) {
            .video-spotlight-section {
                padding: 3.5rem 1.25rem 4rem;
            }

            .video-spotlight-section--in-media {
                margin-top: 2.25rem;
                padding: 2.25rem 0 0 !important;
            }

            .video-spotlight-frame {
                border-radius: 14px;
            }
        }

        .hero-footer {
            font-size: 0.76rem;
            color: var(--muted);
            letter-spacing: 0.1em;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
        }

        /* HERO SPLIT */
        .hero-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6vw;
            align-items: center;
            padding: 5vw 5vw 7rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-split-text p {
            font-size: 1.1rem;
            color: var(--muted);
            line-height: 1.9;
            font-weight: 300;
        }

        .hero-split-text strong { color: var(--charcoal); font-weight: 500; }

        .hero-img-box {
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(196,181,212,0.25), rgba(232,201,201,0.25));
            aspect-ratio: 4/5;
        }

        .hero-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ABOUT */
        .about-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6vw;
            align-items: center;
            padding: 4rem 5vw;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-section--centered {
            display: block;
            text-align: center;
            max-width: 780px;
        }

        .about-section--centered .about-content {
            max-width: 100%;
        }

        .about-section--centered .about-tags {
            justify-content: center;
        }

        .about-section--centered .arrow-link {
            justify-content: center;
        }


        .about-img-wrap {
            position: relative;
        }

        .about-img-wrap::before {
            content: '';
            position: absolute;
            inset: -14px;
            border: 1px solid rgba(196,181,212,0.45);
            border-radius: 24px;
            z-index: 0;
        }

        .about-img-wrap img {
            width: 100%;
            aspect-ratio: 3/4;
            object-fit: cover;
            border-radius: 18px;
            position: relative;
            z-index: 1;
        }

        .about-img-placeholder {
            width: 100%;
            aspect-ratio: 3/4;
            background: linear-gradient(160deg, rgba(178,196,178,0.3), rgba(196,181,212,0.4));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 0.85rem;
            position: relative;
            z-index: 1;
        }

        .eyebrow {
            font-size: 0.73rem;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 1.5rem;
        }

        .about-content h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.4rem, 4vw, 3.8rem);
            line-height: 1.08;
            letter-spacing: -1.5px;
            margin-bottom: var(--headline-body-gap);
        }

        .about-content h2 + p {
            margin-top: 0;
        }

        .about-content h2 em {
            font-style: italic;
            color: #82739c;
        }

        .about-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 2rem 0;
        }

        .tag {
            background: var(--cream);
            border: 1px solid var(--border);
            padding: 0.4rem 1rem;
            border-radius: 50px;
            font-size: 0.78rem;
            color: var(--charcoal);
        }

        .about-content p {
            color: var(--muted);
            line-height: 1.85;
            margin-bottom: 1.1rem;
            font-size: 0.96rem;
            font-weight: 300;
        }

        .about-content strong { color: var(--charcoal); font-weight: 500; }

        .arrow-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            color: var(--charcoal);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            border-bottom: 1px solid var(--charcoal);
            padding-bottom: 2px;
            transition: gap 0.3s;
            margin-top: 0.8rem;
        }

        .arrow-link:hover { gap: 0.7rem; }

        .arrow-link.about-therapy-link {
            text-transform: uppercase;
            border-bottom: none;
            padding-bottom: 0;
            letter-spacing: 0.04em;
            text-decoration: none;
        }

        /* STATS */
        .stats-wrap {
            padding: 0 5vw 6rem;
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            background: white;
        }

        .stat-item {
            padding: 2.5rem 1rem;
            text-align: center;
            border-right: 1px solid var(--border);
            transition: background 0.25s;
        }

        .stat-item:last-child { border-right: none; }
        .stat-item:hover { background: var(--cream); }

        .stat-num {
            font-family: 'DM Serif Display', serif;
            font-size: 2.1rem;
            letter-spacing: -0.5px;
            margin-bottom: 0.4rem;
        }

        .stat-label {
            font-size: 0.76rem;
            color: var(--muted);
            line-height: 1.5;
        }

        /* ISSUES */
        .issues-section {
            padding: 4rem 5vw;
            background: var(--cream);
        }

        .issues-max { max-width: 1200px; margin: 0 auto; }

        .issues-head {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: end;
            margin-bottom: 4rem;
        }

        .issues-head h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.4rem, 4vw, 3.8rem);
            letter-spacing: -1.5px;
            line-height: 1.1;
        }

        .issues-head p {
            color: var(--muted);
            line-height: 1.8;
            font-size: 0.96rem;
            font-weight: 300;
        }

        .issues-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            background: white;
        }

        .issue-card {
            padding: 2.5rem;
            border-right: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            transition: background 0.25s;
        }

        .issue-card:nth-child(3n) { border-right: none; }
        .issue-card:nth-child(n+4) { border-bottom: none; }
        .issue-card:hover { background: var(--cream); }

        .issue-num {
            font-family: 'DM Serif Display', serif;
            font-size: 1rem;
            color: var(--muted);
            opacity: 0.45;
            margin-bottom: 1rem;
        }

        .issue-card h4 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.2rem;
            color: var(--charcoal);
            margin-bottom: 0.7rem;
            line-height: 1.3;
        }

        .issue-card p {
            color: var(--muted);
            font-size: 0.88rem;
            line-height: 1.75;
            font-weight: 300;
        }

        .issues-cta { text-align: center; margin-top: 3.5rem; }

        /* TESTIMONIALS */
        .testi-section {
            padding: 4rem 5vw;
            background: white;
        }

        .testi-max { max-width: 1200px; margin: 0 auto; }

        .section-row {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 3.5rem;
        }

        .section-row h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2rem, 3.5vw, 3rem);
            letter-spacing: -1px;
        }

        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .testi-card {
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2.5rem;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .testi-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.06);
        }

        .stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
        .stars i { color: var(--gold); font-size: 0.72rem; }

        .testi-card h6 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.05rem;
            color: var(--charcoal);
            margin-bottom: 0.9rem;
            line-height: 1.3;
        }

        .testi-card p {
            color: var(--muted);
            font-size: 0.88rem;
            line-height: 1.8;
            font-style: italic;
            font-weight: 300;
            margin-bottom: 1.8rem;
        }

        .testi-author { font-weight: 500; font-size: 0.88rem; }
        .testi-loc { font-size: 0.78rem; color: var(--muted); }

        /* BOOK */
        .book-section {
            padding: 4rem 5vw;
            background: var(--cream);
        }

        .book-max { max-width: 1200px; margin: 0 auto; }

        .book-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .book-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .book-card:hover {
            border-color: var(--lavender);
            transform: translateY(-4px);
            box-shadow: 0 16px 50px rgba(196,181,212,0.18);
        }

        .book-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 1rem; }

        .book-card h5 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.2rem;
            margin-bottom: 0.4rem;
        }

        .duration { color: var(--muted); font-size: 0.83rem; margin-bottom: 1.5rem; }

        /* PRESS */
        .press-section {
            padding: 4rem 5vw;
            background: white;
        }

        .press-max { max-width: 1200px; margin: 0 auto; }

        .press-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .press-card {
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 2rem;
            transition: transform 0.3s;
        }

        .press-card:hover { transform: translateY(-3px); }

        .press-icon-wrap {
            width: 46px;
            height: 46px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            margin-bottom: 1.2rem;
            border: 1px solid var(--border);
        }

        .press-card h5 {
            font-family: 'DM Serif Display', serif;
            font-size: 1rem;
            color: var(--charcoal);
            margin-bottom: 0.5rem;
        }

        .press-card p {
            color: var(--muted);
            font-size: 0.85rem;
            line-height: 1.75;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        /* FAQ */
        .faq-section {
            padding: 4rem 5vw;
            background: white;
        }

        .faq-max { max-width: 760px; margin: 0 auto; }

        .faq-item { border-bottom: 1px solid var(--border); }

        .faq-q {
            padding: 1.4rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            font-size: 0.93rem;
            color: var(--charcoal);
            gap: 1rem;
        }

        .faq-icon { color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
        .faq-item.open .faq-icon { transform: rotate(45deg); }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s;
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.4rem; }

        /* CONTACT */
        .contact-section {
            padding: 4rem 5vw;
            background:
                radial-gradient(ellipse at 15% 20%, rgba(196, 181, 212, 0.28) 0%, transparent 55%),
                radial-gradient(ellipse at 85% 80%, rgba(232, 201, 201, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
                var(--cream);
        }

        .contact-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.4fr;
            gap: 7rem;
            align-items: start;
        }

        .contact-left h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(3rem, 5.5vw, 5rem);
            line-height: 1.08;
            letter-spacing: -1.5px;
            margin-bottom: 1.2rem;
        }

        .contact-left h2 em { font-style: italic; color: var(--lavender); }

        .contact-left > p {
            color: var(--muted);
            line-height: 1.8;
            font-size: 0.93rem;
            font-weight: 300;
            margin-bottom: 2.5rem;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .c-icon {
            width: 42px;
            height: 42px;
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .contact-info span { font-size: 0.92rem; }

        /* FORM */
        .form-tabs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 4px;
            margin-bottom: 1.8rem;
        }

        .ftab {
            padding: 0.6rem;
            text-align: center;
            font-size: 0.75rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            font-weight: 500;
            color: var(--muted);
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .ftab.active {
            background: white;
            color: var(--charcoal);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .flabel {
            display: block;
            font-size: 0.72rem;
            letter-spacing: 0.13em;
            text-transform: uppercase;
            color: var(--muted);
            font-weight: 500;
            margin-bottom: 0.45rem;
            margin-top: 1.1rem;
        }

        .flabel .req { color: #e57373; }

        .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

        input[type=text], input[type=email], input[type=tel], textarea {
            width: 100%;
            padding: 0.85rem 1.1rem;
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 12px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.92rem;
            color: var(--charcoal);
            outline: none;
            transition: border-color 0.3s, background 0.3s;
        }

        input::placeholder, textarea::placeholder { color: #B8B3AB; }
        input:focus, textarea:focus { border-color: var(--lavender); background: white; }
        textarea { min-height: 105px; resize: none; }

        .fprivacy {
            font-size: 0.76rem;
            color: var(--muted);
            line-height: 1.7;
            margin: 1.1rem 0;
        }

        .fprivacy a { color: var(--muted); text-decoration: underline; }

        .btn-submit {
            width: 100%;
            background: var(--dark-teal);
            color: white;
            border: none;
            padding: 1.1rem;
            border-radius: 50px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.78rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-submit:hover { background: #2c4a4a; transform: translateY(-2px); }

        /* ── LOGO SLIDER ── */
        .logo-slider-section {
            padding: 4rem 5vw;
            background: white;
            border-top: 1px solid var(--border);
        }

        .logo-slider-head {
            text-align: center;
            margin-bottom: 2rem;
        }

        .logo-slider-head .eyebrow {
            margin-bottom: 0.6rem;
        }

        .logo-slider-head h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            letter-spacing: -0.5px;
            color: var(--charcoal);
        }

        .logo-slider-wrap {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-nav {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 1px solid var(--border);
            background: white;
            color: var(--charcoal);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s;
            z-index: 2;
            box-shadow: 0 4px 14px rgba(28, 46, 46, 0.06);
        }

        .logo-nav:hover {
            background: var(--dark-teal);
            border-color: var(--dark-teal);
            color: white;
        }

        .logo-nav i {
            font-size: 0.85rem;
        }

        .logo-slider {
            flex: 1;
            overflow: hidden;
            min-width: 0;
        }

        .logo-slider-track {
            display: flex;
            transition: transform 0.45s ease;
            will-change: transform;
        }

        .logo-slide {
            flex: 0 0 calc(100% / 6);
            width: calc(100% / 6);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.45rem;
            box-sizing: border-box;
        }

        .logo-slide-box {
            width: 100%;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.55rem 0.7rem;
            background: var(--warm-white);
            border: 1px solid var(--border);
            border-radius: 14px;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .logo-slide-box:hover {
            border-color: rgba(196, 181, 212, 0.7);
            background: white;
            box-shadow: 0 8px 24px rgba(28, 46, 46, 0.07);
            transform: translateY(-2px);
        }

        .logo-slide img {
            max-width: 100%;
            height: 78px;
            width: auto;
            object-fit: contain;
           
            transition: filter 0.3s, opacity 0.3s, transform 0.3s;
        }

        .logo-slide-box:hover img {
            filter: grayscale(0);
            opacity: 1;
            transform: scale(1.05);
        }

        @media (max-width: 900px) {
            .logo-slide {
                flex: 0 0 calc(100% / 3);
                width: calc(100% / 3);
            }

            .logo-slide-box {
                height: 76px;
            }
        }

        @media (max-width: 768px) {
            .logo-slider-wrap {
                gap: 0.4rem;
            }

            .logo-nav {
                width: 36px;
                height: 36px;
            }

            .logo-slide {
                flex: 0 0 50%;
                width: 50%;
                padding: 0.35rem;
            }

            .logo-slide-box {
                height: 72px;
                padding: 0.5rem;
                border-radius: 12px;
            }

            .logo-slide img {
                height: 44px;
            }
        }

        /* ── FOOTER ── */
        footer {
            background: var(--dark-teal);
            color: white;
            padding: 5rem 5vw 3rem;
        }

        .footer-max { max-width: 1200px; margin: 0 auto; }

        .footer-brand-row {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .footer-logo-icon {
            width: 44px;
            height: 44px;
            border: 1.5px solid rgba(255,255,255,0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Serif Display', serif;
            font-size: 0.9rem;
            color: white;
            flex-shrink: 0;
        }

        .footer-logo-name {
            font-family: 'DM Serif Display', serif;
            font-size: 1rem;
            line-height: 1.3;
        }

        .footer-logo-sub {
            font-size: 0.65rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        .footer-brand > p {
            color: rgba(255,255,255,0.4);
            font-size: 0.82rem;
            line-height: 1.8;
            font-weight: 300;
            max-width: 240px;
            margin-bottom: 1.2rem;
        }

        .footer-social {
            display: flex;
            gap: 0.6rem;
        }

        .footer-social a {
            width: 32px;
            height: 32px;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.5);
            font-size: 0.75rem;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer-social a:hover { background: rgba(255,255,255,0.1); color: white; }

        .footer-locations {
            display: flex;
            gap: 2rem;
            margin-bottom: 1.2rem;
        }

        .footer-loc h6 {
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-bottom: 0.3rem;
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .footer-loc p {
            color: rgba(255,255,255,0.35);
            font-size: 0.78rem;
            line-height: 1.6;
            font-weight: 300;
        }

        .telehealth-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50px;
            padding: 0.25rem 0.8rem;
            font-size: 0.65rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.5);
            margin-bottom: 0.5rem;
        }

        .telehealth-badge .states { color: rgba(255,255,255,0.75); letter-spacing: 0.15em; }

        .footer-col h6 {
            font-size: 0.68rem;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.35);
            margin-bottom: 1.2rem;
            font-style: italic;
        }

        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 0.6rem; }
        .footer-col a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.82rem;
            font-weight: 300;
            transition: color 0.3s;
        }

        .footer-col a:hover { color: white; }

        .footer-btm {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-btm p { color: rgba(255,255,255,0.25); font-size: 0.76rem; }

        /* RESPONSIVE */
        @media (max-width: 960px) {
            .hero-split, .about-section, .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
            .issues-head { grid-template-columns: 1fr; }
            .issues-grid, .testi-grid, .book-grid, .press-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(3, 1fr); }
            .stat-item:nth-child(3) { border-right: none; }
            .stat-item:nth-child(4), .stat-item:nth-child(5), .stat-item:nth-child(6) { border-top: 1px solid var(--border); }
            .footer-top { grid-template-columns: 1fr 1fr; }
            .issue-card { border-right: none !important; }
            .frow { grid-template-columns: 1fr; }
        }

        @media (max-width: 600px) {
            .nav-links { display: none; }
            .footer-top { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            /* show hamburger toggle */
            .nav-toggle { display: block; }
            nav { position: relative; }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(253,252,250,0.97);
                flex-direction: column;
                align-items: flex-start;
                gap: 0;
                padding: 1rem 0;
            }
            .nav-links.active { display: flex; }
            .nav-links li { margin: 0rem 0; width: 100%; border-bottom: 1px solid var(--border); }
            .nav-links a {
                display: block;
                width: 100%;
                padding: 0.8rem 1.5rem;
                text-align: left;
            }
            .nav-cta { margin: 0.8rem 10px;
            width: auto !important; }



        }

        /* FADE UP */
        .fade-up {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.65s ease, transform 0.65s ease;
        }

        .fade-up.visible { opacity: 1; transform: none; }








          /* ── HERO BAND ── */
        .hero-band {
            text-align: center;
            padding: 0.7rem 2rem;
            font-size: 0.72rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--muted);
            border-bottom: 1px solid var(--border);
        }

        /* ── PAGE HERO ── */
        .page-hero {
            text-align: center;
            padding: 5rem 5vw 4rem;
            background:
                radial-gradient(ellipse at 10% 30%, rgba(232,201,201,0.3) 0%, transparent 55%),
                radial-gradient(ellipse at 90% 70%, rgba(196,181,212,0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.1) 0%, transparent 60%),
                var(--warm-white);
        }

        .page-hero h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(3.2rem, 7vw, 6rem);
            line-height: 1.05;
            letter-spacing: -2px;
            color: var(--charcoal);
            margin-bottom: var(--headline-body-gap);
        }

        .page-hero h1 em {
            font-style: italic;
            color: var(--lavender);
        }

        .page-hero h1 br + em,
        .about-content h2 br + em,
        h1 br + em,
        h2 br + em {
            display: inline-block;
            margin-top: var(--tone-line-gap);
        }

        /* ── MAIN CONTACT SECTION ── */
        .contact-section {
            padding: 4rem 5vw;
        }

        .contact-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            gap: 6rem;
            align-items: start;
        }

        /* Ensure contact-inner stacks on smaller screens —
           placed after other rules to override earlier definitions */
        @media (max-width: 960px) {
            .contact-inner { grid-template-columns: 1fr !important; gap: 3rem !important; }
        }

        @media (max-width: 600px) {
            .contact-inner { grid-template-columns: 1fr !important; gap: 2rem !important; }
        }

        /* LEFT */
        .contact-left h2 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(3rem, 5.5vw, 5rem);
            line-height: 1.08;
            letter-spacing: -1.5px;
            margin-bottom: 1.2rem;
        }

        .contact-specialty {
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 1.5rem;
        }

        .contact-specialty span {
            margin: 0 0.3rem;
            opacity: 0.5;
        }

        .contact-left > p {
            color: var(--muted);
            font-size: 0.9rem;
            line-height: 1.85;
            font-weight: 300;
            margin-bottom: 1.1rem;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-top: 0.6rem;
        }

        .c-icon {
            width: 36px;
            height: 36px;
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 0.75rem;
            flex-shrink: 0;
        }

        .contact-info span {
            font-size: 0.87rem;
            color: var(--charcoal);
        }

        /* ── RATES CARD ── */
        .rates-card {
            max-width: 1100px;
            margin: 0 auto 4rem;
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            transition: background 0.25s;
        }

        .rates-card:hover { background: #f0ede6; }

        .rates-left-wrap {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .rates-icon {
            width: 44px;
            height: 44px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--muted);
            font-size: 0.95rem;
            flex-shrink: 0;
        }

        .rates-card h5 {
            font-family: 'DM Serif Display', serif;
            font-size: 1rem;
            color: var(--charcoal);
            margin-bottom: 0.25rem;
        }

        .rates-card p {
            color: var(--muted);
            font-size: 0.84rem;
            line-height: 1.6;
            font-weight: 300;
        }

        .rates-arrow { color: var(--muted); font-size: 1rem; }

        /* ── FORM CARD ── */
        .form-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 4px 30px rgba(0,0,0,0.04);
        }

        .form-card h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--charcoal);
        }

        .form-tabs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 4px;
            margin-bottom: 1.8rem;
        }

        .ftab {
            padding: 0.6rem;
            text-align: center;
            font-size: 0.73rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            font-weight: 500;
            color: var(--muted);
            cursor: pointer;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .ftab.active {
            background: white;
            color: var(--charcoal);
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }

        .flabel {
            display: block;
            font-size: 0.68rem;
            letter-spacing: 0.13em;
            text-transform: uppercase;
            color: var(--muted);
            font-weight: 500;
            margin-bottom: 0.4rem;
            margin-top: 1rem;
        }

        .flabel .req { color: #e57373; }

        .frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

        input[type=text],
        input[type=email],
        input[type=tel],
        textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 10px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.9rem;
            color: var(--charcoal);
            outline: none;
            transition: border-color 0.3s, background 0.3s;
        }

        input::placeholder, textarea::placeholder { color: #C0BAB0; }
        input:focus, textarea:focus { border-color: var(--lavender); background: white; }
        textarea { min-height: 100px; resize: none; }

        .fprivacy {
            font-size: 0.73rem;
            color: var(--muted);
            line-height: 1.7;
            margin: 1rem 0;
        }

        .fprivacy a { color: var(--muted); text-decoration: underline; }

        .btn-submit {
            width: 100%;
            background: var(--dark-teal);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 50px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.76rem;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .btn-submit:hover { background: #2c4a4a; transform: translateY(-2px); }

        .dot-green {
            width: 6px;
            height: 6px;
            background: #4CAF91;
            border-radius: 50%;
            display: inline-block;
        }
        /* ── POLICY PAGES ── */
        .page-hero {
            text-align: center;
            padding: 5.5rem 5vw 5rem;
            background: radial-gradient(ellipse at 15% 30%, rgba(232,201,201,0.28) 0%, transparent 55%),
                        radial-gradient(ellipse at 85% 70%, rgba(196,181,212,0.22) 0%, transparent 50%),
                        var(--warm-white);
        }

        .page-hero h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(2.8rem, 6vw, 5rem);
            line-height: 1.06;
            letter-spacing: -2px;
            color: var(--charcoal);
            margin-bottom: var(--headline-body-gap);
        }

        .page-hero-sub {
            max-width: 520px;
            margin: 0 auto;
            color: var(--muted);
            font-size: 0.93rem;
            line-height: 1.85;
            font-weight: 300;
        }

        .policy-section {
            padding: 4rem 5vw;
            background: var(--warm-white);
        }

        .policy-max {
            max-width: 920px;
            margin: 0 auto;
        }

        .policy-content h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--charcoal);
            letter-spacing: -0.5px;
        }

        .last-updated {
            color: var(--muted);
            font-size: 0.85rem;
            font-weight: 300;
            margin-bottom: 3rem;
            font-style: italic;
        }

        .policy-content h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.3rem;
            color: var(--charcoal);
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            letter-spacing: -0.3px;
        }

        .policy-content p {
            color: var(--muted);
            font-size: 0.92rem;
            line-height: 1.85;
            font-weight: 300;
            margin-bottom: 1rem;
        }

        .policy-content ul {
            margin: 1rem 0 1rem 2rem;
            color: var(--muted);
            font-size: 0.92rem;
            line-height: 1.85;
            font-weight: 300;
        }

        .policy-content li {
            margin-bottom: 0.8rem;
        }

        .policy-content strong {
            color: var(--charcoal);
            font-weight: 500;
        }

        .policy-content a {
            color: var(--dark-teal);
            text-decoration: none;
            font-weight: 500;
        }

        .policy-content a:hover {
            text-decoration: underline;
        }

        .contact-details {
            background: var(--cream);
            border-left: 3px solid var(--lavender);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
        }

        .contact-details p {
            margin: 0;
            line-height: 1.8;
        }

        .whatsapp-float-btn {
            position: fixed;
            right: 22px;
            bottom: 22px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.75rem;
            text-decoration: none;
            box-shadow: 0 12px 24px rgba(37, 211, 102, 0.35);
            z-index: 9999;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }

        .whatsapp-float-btn:hover {
            transform: translateY(-2px);
            background: #20bd5a;
            box-shadow: 0 14px 28px rgba(37, 211, 102, 0.45);
        }

        @media (max-width: 768px) {
            .whatsapp-float-btn {
                width: 50px;
                height: 50px;
                right: 14px;
                bottom: 14px;
                font-size: 1.5rem;
            }
        }