:root {
            --navy:   #0f1f2e;
            --teal:   #1a6b6b;
            --teal-lt:#228585;
            --gold:   #b8975a;
            --gold-lt:#caa96e;
            --cream:  #f7f4ef;
            --white:  #ffffff;
            --text:   #1e2c3a;
            --muted:  #5a6e7f;
            --border: #dde4ea;
        }

        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.7;
            font-size: 1rem;
        }

        h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

        /* ── TOPBAR ─────────────────────────────────────── */
        .topbar {
            background: var(--navy);
            padding: 0.55rem 0;
            font-size: 0.82rem;
            color: rgba(255,255,255,0.75);
            letter-spacing: 0.02em;
        }
        .topbar a { color: var(--gold-lt); text-decoration: none; }
        .topbar a:hover { color: var(--white); }
        .topbar-divider { margin: 0 1rem; opacity: 0.3; }

        /* ── NAVBAR ─────────────────────────────────────── */
        .site-nav {
            background: var(--white);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .nav-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--navy);
            text-decoration: none;
            line-height: 1.2;
        }
        .nav-brand span { display: block; font-size: 0.7rem; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
        .site-nav .nav-link { font-size: 0.88rem; font-weight: 500; color: var(--text); padding: 0.25rem 0.85rem; letter-spacing: 0.01em; }
        .site-nav .nav-link:hover { color: var(--teal); }
        .btn-nav-cta { background: var(--teal); color: var(--white) !important; border-radius: 4px; padding: 0.45rem 1.2rem !important; font-weight: 600 !important; font-size: 0.85rem !important; }
        .btn-nav-cta:hover { background: var(--teal-lt); }

        /* ── HERO ───────────────────────────────────────── */
        
        .hero {
            position: relative;
            overflow: hidden;
            padding: 6rem 0 5rem;
            background: linear-gradient(rgba(15,31,46,0.75), rgba(15,31,46,0.85)),
                        url("assets/images/treatment-room.jpg");
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        /*.hero {*/
        /*    background: var(--navy);*/
        /*    position: relative;*/
        /*    overflow: hidden;*/
        /*    padding: 6rem 0 5rem;*/
        /*}*/
        /*.hero::before {*/
        /*    content: '';*/
        /*    position: absolute;*/
        /*    inset: 0;*/
        /*    background:*/
        /*        radial-gradient(ellipse 60% 80% at 100% 50%, rgba(26,107,107,0.18) 0%, transparent 70%),*/
        /*        radial-gradient(ellipse 40% 60% at 0% 100%, rgba(184,151,90,0.08) 0%, transparent 60%);*/
        /*    pointer-events: none;*/
        /*}*/
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 1.5rem;
        }
        .hero-eyebrow::before {
            content: '';
            display: block;
            width: 28px;
            height: 1px;
            background: var(--gold);
        }
        .hero h1 {
            font-size: clamp(2.2rem, 4.5vw, 3.4rem);
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1.5rem;
            letter-spacing: -0.01em;
        }
        .hero h1 em {
            font-style: normal;
            color: var(--gold);
        }
        .hero-lead {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.72);
            max-width: 540px;
            margin-bottom: 2.5rem;
            line-height: 1.75;
        }
        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
        .btn-primary-hero {
            background: var(--teal);
            color: var(--white);
            border: none;
            padding: 0.9rem 2rem;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            transition: background 0.2s;
        }
        .btn-primary-hero:hover { background: var(--teal-lt); color: var(--white); }
        .btn-outline-hero {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.35);
            padding: 0.9rem 2rem;
            font-size: 0.95rem;
            font-weight: 500;
            border-radius: 4px;
            text-decoration: none;
            transition: border-color 0.2s, color 0.2s;
        }
        .btn-outline-hero:hover { border-color: var(--gold); color: var(--gold); }

        .hero-rating-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 50px;
            padding: 0.5rem 1.1rem;
            color: rgba(255,255,255,0.85);
            font-size: 0.85rem;
        }
        .hero-rating-pill .stars { color: #fbbf24; letter-spacing: 1px; }

        .hero-panel {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 2rem;
            backdrop-filter: blur(4px);
        }
        .hero-panel-label {
            font-size: 0.7rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--gold);
            font-weight: 600;
            margin-bottom: 1.2rem;
        }
        .hero-panel-item {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1.1rem;
        }
        .hero-panel-item:last-child { margin-bottom: 0; }
        .hero-panel-icon {
            width: 34px;
            height: 34px;
            background: rgba(26,107,107,0.25);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.95rem;
        }
        .hero-panel-text strong {
            display: block;
            font-size: 0.88rem;
            color: var(--white);
            font-weight: 600;
            margin-bottom: 0.1rem;
        }
        .hero-panel-text span {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
        }
        
        .treatment-collage{
            position:relative;
            height:340px;
        }
        
        .collage-img{
            border-radius:10px;
            object-fit:cover;
            box-shadow:0 10px 30px rgba(0,0,0,0.12);
        }
        
        .main-img{
            width:75%;
            height:100%;
            position:absolute;
            left:0;
            top:0;
        }
        
        .small-img{
            width:50%;
            height:70%;
            position:absolute;
            right:0;
            bottom:0;
        }

        /* ── TRUST STRIP ────────────────────────────────── */
        .trust-strip {
            background: var(--teal);
            padding: 1.5rem 0;
        }
        .trust-stat {
            text-align: center;
            color: var(--white);
        }
        .trust-stat-num {
            font-family: 'Playfair Display', serif;
            font-size: 1.85rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 0.2rem;
        }
        .trust-stat-label {
            font-size: 0.78rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            opacity: 0.85;
            text-transform: uppercase;
        }
        .trust-strip-divider {
            width: 1px;
            background: rgba(255,255,255,0.2);
            align-self: stretch;
        }

        /* ── SECTION COMMON ─────────────────────────────── */
        section { padding: 5.5rem 0; }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 0.9rem;
        }
        .section-tag::before {
            content: '';
            display: block;
            width: 22px;
            height: 1.5px;
            background: var(--teal);
        }
        .section-title {
            font-size: clamp(1.75rem, 3vw, 2.4rem);
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1rem;
        }
        .section-lead {
            font-size: 1rem;
            color: var(--muted);
            max-width: 640px;
            line-height: 1.75;
        }

        /* ── NATUROPATHY SECTION ─────────────────────────── */
        .naturo-section { background: var(--cream); }
        .naturo-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.75rem;
            height: 100%;
            transition: box-shadow 0.2s, border-color 0.2s;
        }
        .naturo-card:hover {
            box-shadow: 0 6px 24px rgba(15,31,46,0.08);
            border-color: var(--teal);
        }
        .naturo-icon {
            width: 46px;
            height: 46px;
            background: rgba(26,107,107,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            margin-bottom: 1.1rem;
        }
        .naturo-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.6rem;
        }
        .naturo-card p { font-size: 0.88rem; color: var(--muted); margin: 0; line-height: 1.65; }

        .philosophy-block {
            background: var(--navy);
            border-radius: 10px;
            padding: 2.5rem;
            color: var(--white);
        }
        .philosophy-block h3 {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 1rem;
        }
        .philosophy-block p {
            font-size: 0.92rem;
            color: rgba(255,255,255,0.72);
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        .philosophy-block p:last-child { margin-bottom: 0; }
        .philosophy-pill {
            display: inline-block;
            background: rgba(184,151,90,0.15);
            border: 1px solid rgba(184,151,90,0.3);
            color: var(--gold-lt);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            padding: 0.3rem 0.85rem;
            border-radius: 3px;
            margin: 0.25rem 0.15rem 0 0;
        }

        /* ── TREATMENTS ─────────────────────────────────── */
        .treatments-section { background: var(--white); }
        .treatment-tab-label {
            font-size: 0.72rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 1.5rem;
        }
        .treatment-cat-label {
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 1.25rem;
            padding-bottom: 0.6rem;
            border-bottom: 1.5px solid var(--border);
        }
        .treatment-card {
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 8px;
            padding: 1.4rem 1.5rem;
            height: 100%;
            transition: box-shadow 0.2s;
        }
        .treatment-card:hover { box-shadow: 0 4px 18px rgba(15,31,46,0.07); }
        .treatment-card h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.45rem;
        }
        .treatment-card p { font-size: 0.83rem; color: var(--muted); margin: 0; line-height: 1.6; }
        .treatment-badge {
            display: inline-block;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 0.2rem 0.6rem;
            border-radius: 3px;
            margin-bottom: 0.75rem;
        }
        .badge-naturo { background: rgba(26,107,107,0.1); color: var(--teal); }
        .badge-aesthetic { background: rgba(184,151,90,0.12); color: #9a7a40; }

        /* ── WHY CHOOSE ─────────────────────────────────── */
        .why-section { background: var(--cream); }
        .why-card {
            padding: 1.75rem;
            border-left: 3px solid var(--teal);
            background: var(--white);
            border-radius: 0 8px 8px 0;
            height: 100%;
        }
        .why-card h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }
        .why-card p { font-size: 0.86rem; color: var(--muted); margin: 0; }
        .why-card .why-num {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--teal);
            opacity: 0.18;
            line-height: 1;
            margin-bottom: 0.6rem;
        }

        /* ── PROCESS ────────────────────────────────────── */
        .process-section { background: var(--navy); color: var(--white); }
        .process-section .section-tag { color: var(--gold); }
        .process-section .section-tag::before { background: var(--gold); }
        .process-section .section-title { color: var(--white); }
        .process-section .section-lead { color: rgba(255,255,255,0.6); }
        .process-step {
            position: relative;
            padding-left: 3.5rem;
            margin-bottom: 2.5rem;
        }
        .process-step:last-child { margin-bottom: 0; }
        .process-step-num {
            position: absolute;
            left: 0;
            top: 0;
            width: 36px;
            height: 36px;
            background: var(--teal);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.82rem;
            font-weight: 700;
            color: var(--white);
            flex-shrink: 0;
        }
        .process-step h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.05rem;
            color: var(--white);
            margin-bottom: 0.3rem;
        }
        .process-step p { font-size: 0.87rem; color: rgba(255,255,255,0.6); margin: 0; }
        .process-step-line {
            position: absolute;
            left: 17px;
            top: 36px;
            bottom: -2.5rem;
            width: 1px;
            background: rgba(255,255,255,0.1);
        }
        .process-step:last-child .process-step-line { display: none; }

        .process-cta-box {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 10px;
            padding: 2.5rem;
            text-align: center;
        }
        .process-cta-box h3 {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 0.75rem;
        }
        .process-cta-box p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            margin-bottom: 1.75rem;
        }

        /* ── FAQ ────────────────────────────────────────── */
        .faq-section { background: var(--white); }
        .faq-item {
            border: 1px solid var(--border);
            border-radius: 6px;
            margin-bottom: 0.75rem;
            overflow: hidden;
        }
        .faq-question {
            padding: 1.15rem 1.4rem;
            font-weight: 600;
            font-size: 0.93rem;
            color: var(--navy);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            background: var(--cream);
            border: none;
            width: 100%;
            text-align: left;
            transition: background 0.2s;
        }
        .faq-question:hover { background: #eeebe2; }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 22px;
            height: 22px;
            background: rgba(26,107,107,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            color: var(--teal);
            transition: transform 0.2s;
        }
        .faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
        .accordion-collapse .accordion-body {
            padding: 1.1rem 1.4rem;
            font-size: 0.88rem;
            color: var(--muted);
            line-height: 1.75;
            border-top: 1px solid var(--border);
        }

        /* ── CTA FINAL ──────────────────────────────────── */
        .cta-final {
            background: var(--cream);
            padding: 5rem 0;
            text-align: center;
        }
        .cta-final h2 {
            font-size: clamp(1.75rem, 3vw, 2.4rem);
            color: var(--navy);
            margin-bottom: 1rem;
        }
        .cta-final p {
            font-size: 1rem;
            color: var(--muted);
            max-width: 520px;
            margin: 0 auto 2.25rem;
        }

        /* ── LOCATION ───────────────────────────────────── */
        .location-section { background: var(--white); padding: 4rem 0; }
        .location-card {
            background: var(--cream);
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 2.5rem;
        }
        .location-card h3 {
            font-size: 1.3rem;
            color: var(--navy);
            margin-bottom: 1.25rem;
        }
        .location-item {
            display: flex;
            gap: 0.75rem;
            align-items: flex-start;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }
        .location-item:last-child { margin-bottom: 0; }
        .location-icon {
            width: 32px;
            height: 32px;
            background: rgba(26,107,107,0.1);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.85rem;
            color: var(--teal);
        }
        .location-item strong { display: block; color: var(--navy); font-weight: 600; font-size: 0.85rem; }
        .location-item span { color: var(--muted); font-size: 0.84rem; }

        /* ── FOOTER ─────────────────────────────────────── */
        footer {
            background: var(--navy);
            color: rgba(255,255,255,0.65);
            padding: 3rem 0 1.5rem;
            font-size: 0.86rem;
        }
        footer h5 {
            font-family: 'Playfair Display', serif;
            font-size: 1rem;
            color: var(--white);
            margin-bottom: 1rem;
        }
        footer a { color: var(--gold-lt); text-decoration: none; }
        footer a:hover { color: var(--white); }
        .footer-divider { border-color: rgba(255,255,255,0.08); margin: 2rem 0 1.25rem; }
        .footer-bottom { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

        /* ── BUTTONS ────────────────────────────────────── */
        .btn-teal {
            background: var(--teal);
            color: var(--white);
            border: none;
            padding: 0.85rem 2rem;
            font-size: 0.92rem;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            display: inline-block;
            transition: background 0.2s;
        }
        .btn-teal:hover { background: var(--teal-lt); color: var(--white); }
        .btn-gold {
            background: var(--gold);
            color: var(--white);
            border: none;
            padding: 0.85rem 2rem;
            font-size: 0.92rem;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            display: inline-block;
            transition: background 0.2s;
        }
        .btn-gold:hover { background: var(--gold-lt); color: var(--white); }
        .btn-outline-navy {
            background: transparent;
            color: var(--navy);
            border: 1.5px solid var(--navy);
            padding: 0.85rem 2rem;
            font-size: 0.92rem;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
        }
        .btn-outline-navy:hover { background: var(--navy); color: var(--white); }
        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.4);
            padding: 0.85rem 2rem;
            font-size: 0.92rem;
            font-weight: 600;
            border-radius: 4px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.2s;
        }
        .btn-outline-white:hover { border-color: var(--white); }

        /* ── UTILITY ────────────────────────────────────── */
        .divider-gold {
            width: 48px;
            height: 2.5px;
            background: var(--gold);
            margin-bottom: 1.5rem;
        }
        .text-teal { color: var(--teal); }
        .text-gold { color: var(--gold); }
        .text-navy { color: var(--navy); }
        .text-muted-custom { color: var(--muted); }
        .bg-cream { background: var(--cream); }

        @media (max-width: 991px) {
            .hero { padding: 4rem 0; }
            .hero-panel { margin-top: 2.5rem; }
            section { padding: 4rem 0; }
        }
        @media (max-width: 767px) {
            .hero h1 { font-size: 2rem; }
            .trust-strip .trust-strip-divider { display: none; }
            .trust-stat { padding: 0.75rem 0; }
        }