        :root{
            --bg:#ffffff;
            --ink:#181a17;
            --muted:#5e6b62;
            --green:#448c74;
            --green-deep:#2f6450;
            --gold:#e5c466;
            --gold-deep:#d3ad4d;
            --white:#ffffff;
            --radius:34px;
        }
        *{margin:0;padding:0;box-sizing:border-box}
        html{scroll-behavior:smooth}
        body{
            font-family:'Poppins',sans-serif;
            background:var(--bg);
            color:var(--ink);
            -webkit-font-smoothing:antialiased;
        }
        a{text-decoration:none;color:inherit}

        /* ---------- Header ---------- */
        header{
            position:relative;
            display:flex;align-items:center;justify-content:space-between;
            gap:24px;
            padding:10px clamp(20px,3vw,46px);
            max-width:1920px;margin:0 auto;
        }
        .nav-left{display:flex;align-items:center;gap:14px;flex:1}
        .nav-left ul{display:flex;align-items:center;gap:14px;list-style:none}
        .nav-left li{display:flex;align-items:center;gap:14px}
        .nav-left li::after{content:"";width:5px;height:5px;border-radius:50%;background:var(--gold)}
        .nav-left li:last-child::after{display:none}
        .nav-left a{
            font-size:14px;font-weight:600;letter-spacing:.5px;text-transform:uppercase;
            color:var(--ink);transition:color .2s;
        }
        .nav-left a:hover,.nav-left a.active{color:var(--green)}

        /* mega dropdown */
        .has-mega{position:static}
        .mega{
            position:absolute;left:0;top:100%;width:100%;z-index:50;
            background:#ffffff;border-top:1px solid #f3f6f3;box-shadow:0 26px 50px rgba(31,55,38,.08);
            opacity:0;visibility:hidden;transform:translateY(8px);transition:.25s;
            padding:46px 0 56px;
        }
        .has-mega:hover .mega{opacity:1;visibility:visible;transform:none}
        .mega-inner{
            max-width:1500px;margin:0 auto;padding:0 clamp(20px,3vw,46px);
            display:grid;grid-template-columns:1fr 1fr 1.2fr 1.2fr;gap:30px;
        }
        .mega-inner.mega-5{grid-template-columns:1.2fr 1.3fr 1.2fr 1.3fr 1.3fr}
        .mega-inner.mega-2{grid-template-columns:1fr 3fr}
        .mega-badge{
            display:inline-block;vertical-align:middle;margin-left:10px;
            background:var(--green);color:#fff;font-family:'Sora',sans-serif;
            font-size:11px;font-weight:700;padding:3px 9px;border-radius:5px;letter-spacing:.3px;
        }
        .mega-col{border-left:1px solid #eef2ee;padding-left:30px;text-align:left}
        .mega-col:first-child{border-left:none;padding-left:0}
        .mega-h{
            font-family:'Sora',sans-serif;font-size:12px;font-weight:700;letter-spacing:1.5px;
            text-transform:uppercase;color:var(--ink);margin-bottom:22px;
        }
        .mega-h.mt{margin-top:34px}
        .mega-col li{display:block!important}
        .mega-col li::after{display:none!important}
        .mega-col ul{list-style:none;display:flex;flex-direction:column;align-items:flex-start;gap:18px;margin:0;padding:0}
        .mega-col ul a{
            font-family:'Sora',sans-serif;font-size:16px;font-weight:400;color:#3a443c;
            text-transform:none;letter-spacing:0;transition:.2s;
        }
        .mega-col ul a:hover{color:var(--green)}
        .mega-col ul a.active{font-weight:700;color:var(--ink)}

        .brand{display:flex;align-items:center;flex-shrink:0}
        .brand img{height:64px;width:auto}

        .nav-right{display:flex;align-items:center;gap:18px;flex:1;justify-content:flex-end}
        .phone{display:flex;align-items:center;gap:12px}
        .phone .ic{
            width:42px;height:42px;border-radius:50%;background:var(--white);
            display:grid;place-items:center;color:var(--green);font-size:17px;
            box-shadow:0 8px 20px rgba(47,93,59,.10);
        }
        .phone span{font-weight:600;font-size:15px}
        .search-btn{
            width:42px;height:42px;border-radius:50%;background:var(--white);border:none;cursor:pointer;
            display:grid;place-items:center;color:var(--ink);font-size:16px;
            box-shadow:0 8px 20px rgba(47,93,59,.10);transition:transform .2s;
        }
        .search-btn:hover{transform:translateY(-2px)}
        .btn-appoint{
            display:inline-flex;align-items:center;gap:12px;
            background:var(--gold);color:#3a2e10;font-weight:700;letter-spacing:.6px;
            font-size:14px;text-transform:uppercase;
            padding:14px 24px;border-radius:40px;white-space:nowrap;
            box-shadow:0 12px 26px rgba(217,178,94,.4);transition:transform .2s,background .2s;
        }
        .btn-appoint:hover{transform:translateY(-2px);background:var(--gold-deep)}
        .btn-appoint .ar{
            width:26px;height:26px;border-radius:50%;background:rgba(0,0,0,.12);
            display:grid;place-items:center;font-size:12px;
        }

        /* ---------- Hero ---------- */
        .hero-wrap{padding:0 0 40px;max-width:none;margin:0}
        .hero{
            position:relative;border-radius:0 0 var(--radius) var(--radius);overflow:hidden;
            min-height:min(92vh,940px);
            background:#0c130d;
            display:flex;align-items:center;justify-content:center;
        }
        /* slideshow layers */
        .hero .hero-bg{position:absolute;inset:0;z-index:0}
        .hero-bg .slide{
            position:absolute;inset:0;background:center 28%/cover no-repeat;
            opacity:0;transform:scale(1.08);
            transition:opacity 1.2s ease,transform 7s ease;
        }
        .hero-bg .slide.active{opacity:1;transform:scale(1)}
        .hero::after{
            content:"";position:absolute;inset:0;z-index:1;
            background:
                linear-gradient(90deg,rgba(0,0,0,.45),rgba(0,0,0,.05) 55%),
                linear-gradient(180deg,rgba(0,0,0,.20),rgba(0,0,0,0) 35%,rgba(0,0,0,.35));
        }
        .hero > *{position:relative;z-index:2}

        /* ---------- Hero content: copy left, featured course right ---------- */
        .hero{align-items:stretch}
        .hero-grid{
            position:relative;z-index:2;width:100%;max-width:1680px;margin:0 auto;
            padding-top:clamp(120px,11vw,168px);
            display:grid;grid-template-columns:1.05fr .95fr;
            gap:clamp(28px,4vw,64px);align-items:center;
            padding:clamp(44px,6vw,80px) clamp(26px,4.5vw,74px);
        }
        .hero-content{color:#fff;max-width:640px}

        /* status pill — the next bookable batch, not decoration */
        .hero-status{
            display:inline-flex;align-items:center;gap:9px;
            background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.3);
            backdrop-filter:blur(6px);
            color:#fff;padding:7px 17px 7px 13px;border-radius:40px;
            font-family:'Sora',sans-serif;font-size:12.5px;font-weight:600;letter-spacing:.3px;
        }
        .hero-status .dot{width:7px;height:7px;border-radius:50%;background:#7ee2ac;box-shadow:0 0 0 4px rgba(126,226,172,.22)}

        .hero-content h1{
            font-family:'Sora',sans-serif;font-weight:700;
            font-size:clamp(38px,5.4vw,72px);line-height:1.04;letter-spacing:-.02em;
            margin:22px 0 20px;text-shadow:0 4px 34px rgba(0,0,0,.34);
        }
        .hero-content h1 em{font-style:normal;color:var(--gold)}
        .hero-content>p{
            font-size:clamp(15px,1.35vw,17.5px);line-height:1.7;color:rgba(255,255,255,.9);
            max-width:52ch;margin:0 0 30px;
        }

        .hero-cta{display:flex;gap:13px;flex-wrap:wrap}
        .btn{
            display:inline-flex;align-items:center;gap:11px;cursor:pointer;
            font-family:'Sora',sans-serif;
            font-weight:700;letter-spacing:.4px;font-size:13.5px;
            padding:15px 26px;border-radius:44px;transition:transform .2s,background .2s,box-shadow .2s;
            border:none;text-decoration:none;
        }
        .btn-gold{background:var(--gold);color:#3a2e10;box-shadow:0 12px 26px rgba(217,178,94,.36)}
        .btn-gold:hover{transform:translateY(-2px);background:var(--gold-deep)}
        .btn-ghost{background:rgba(255,255,255,.1);color:#fff;border:1px solid rgba(255,255,255,.5);backdrop-filter:blur(4px)}
        .btn-ghost:hover{transform:translateY(-2px);background:rgba(255,255,255,.2)}
        .btn .ar{width:25px;height:25px;border-radius:50%;background:rgba(0,0,0,.13);display:grid;place-items:center;font-size:11px}
        .btn-ghost .ar{background:rgba(255,255,255,.22)}

        .hero-proof{display:flex;align-items:center;gap:14px;margin-top:34px}
        .avatars{display:flex}
        .avatars img{width:38px;height:38px;border-radius:50%;object-fit:cover;margin-left:-12px;border:2px solid rgba(255,255,255,.85)}
        .avatars img:first-child{margin-left:0}
        .hero-proof p{margin:0;font-size:13.5px;color:rgba(255,255,255,.84);line-height:1.4}
        .hero-proof p b{color:#fff;font-family:'Sora',sans-serif;font-weight:700}

        /* ---------- Featured course card ---------- */
        .hero-card{
            position:relative;display:block;justify-self:end;width:100%;max-width:430px;
            aspect-ratio:4/5;border-radius:22px;overflow:hidden;text-decoration:none;
            box-shadow:0 30px 64px rgba(6,22,15,.46);
            transform:translateY(0);transition:transform .35s cubic-bezier(.4,0,.2,1),box-shadow .35s;
        }
        .hero-card:hover{transform:translateY(-6px);box-shadow:0 40px 78px rgba(6,22,15,.54)}
        .hero-card>img{width:100%;height:100%;object-fit:cover;display:block}
        .hero-card-veil{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,32,22,.93) 16%,rgba(10,32,22,.35) 52%,rgba(10,32,22,.05) 100%)}

        /* Yoga Alliance seal — the credential a trainee actually checks for */
        .hero-stamp{
            position:absolute;top:18px;left:18px;z-index:3;
            width:62px;height:62px;border-radius:50%;
            background:var(--gold);color:#33280c;border:3px solid rgba(255,255,255,.92);
            display:grid;place-items:center;align-content:center;gap:0;
            font-family:'Sora',sans-serif;font-weight:700;line-height:1;
            box-shadow:0 10px 22px rgba(0,0,0,.28);
        }
        .hero-stamp b{font-size:11px;letter-spacing:.9px;display:block}
        .hero-stamp{font-size:17px}

        .hero-rating{
            position:absolute;top:18px;right:18px;z-index:3;
            display:flex;align-items:center;gap:7px;
            background:rgba(255,255,255,.95);color:var(--ink);
            padding:8px 14px;border-radius:40px;
            box-shadow:0 10px 24px rgba(0,0,0,.2);
        }
        .hero-rating i{color:var(--gold-deep);font-size:12px}
        .hero-rating b{font-family:'Sora',sans-serif;font-size:14px}
        .hero-rating small{font-size:11px;color:var(--muted, #5e6b62)}

        .hero-card-body{position:absolute;left:0;right:0;bottom:0;z-index:3;padding:24px 24px 26px;color:#fff}
        .hero-card-body strong{display:block;font-family:'Sora',sans-serif;font-size:19px;font-weight:700;line-height:1.28;margin-bottom:11px}
        .hero-card-body .meta{display:flex;flex-wrap:wrap;gap:8px 18px;font-size:12.5px;color:rgba(255,255,255,.85)}
        .hero-card-body .meta i{color:var(--gold);margin-right:5px}
        .hero-card-body .go{
            display:inline-flex;align-items:center;gap:9px;margin-top:16px;
            font-family:'Sora',sans-serif;font-size:13px;font-weight:700;color:var(--gold);
        }
        .hero-card:hover .go i{transform:translateX(4px)}
        .hero-card-body .go i{transition:transform .25s}

        .dots{
            position:absolute;right:clamp(16px,2.4vw,34px);top:50%;transform:translateY(-50%);
            display:flex;flex-direction:column;gap:9px;z-index:5;
        }
        .dots span{width:9px;height:9px;background:rgba(255,255,255,.45);cursor:pointer;border-radius:2px;transition:all .25s}
        .dots span.on{background:#fff;height:24px}

        @media (max-width:1080px){
            .hero-grid{grid-template-columns:1fr;gap:34px;padding:clamp(40px,6vw,60px) clamp(22px,4vw,44px)}
            .hero-card{justify-self:start;max-width:380px}
            .dots{display:none}
        }
        @media (max-width:600px){
            .hero-content h1{font-size:clamp(32px,9vw,44px)}
            .hero-cta .btn{flex:1 1 100%;justify-content:center}
            .hero-card{max-width:100%;aspect-ratio:5/4}
        }
        @media (prefers-reduced-motion:reduce){
            .hero-bg .slide{transition:opacity .3s}
            .hero-card,.hero-card .go i,.btn{transition:none}
        }

        /* ---------- Expanding accordion (benefits) ---------- */
        .accordion-section{padding:40px clamp(20px,3vw,46px) 70px;max-width:1920px;margin:0 auto}
        .accordion{display:flex;gap:18px;height:380px}
        .accordion{contain:layout}
        .acc-card{
            position:relative;flex:1 1 0;min-width:0;
            border-radius:26px;overflow:hidden;cursor:pointer;
            background:#1d2a22 center/cover no-repeat;
            transition:flex-grow .6s cubic-bezier(.45,0,.15,1),box-shadow .45s ease;
            will-change:flex-grow;
        }
        .acc-card.active,.acc-card:hover{box-shadow:0 24px 50px rgba(20,40,30,.16)}
        .acc-card::after{
            content:"";position:absolute;inset:0;
            background:linear-gradient(180deg,rgba(0,0,0,.05),rgba(0,0,0,.45));
            transition:opacity .4s;
        }
        /* collapsed face: number + title overlaid on the photo */
        .acc-collapsed{
            position:absolute;inset:0;z-index:2;
            display:flex;align-items:center;justify-content:center;gap:14px;
            padding:30px;
            transition:opacity .45s ease;
        }
        .acc-collapsed .num{
            font-family:'Sora',sans-serif;font-weight:700;font-size:64px;line-height:1;
            color:transparent;-webkit-text-stroke:1.5px rgba(255,255,255,.55);
        }
        .acc-collapsed h4{
            font-family:'Sora',sans-serif;color:#fff;font-size:22px;font-weight:600;line-height:1.2;max-width:160px;
            text-shadow:0 2px 14px rgba(0,0,0,.4);
        }
        /* expanded panel: left photo + right white content */
        .acc-expanded{
            position:absolute;inset:0;z-index:3;display:flex;
            opacity:0;visibility:hidden;
            transition:opacity .55s ease .15s,visibility 0s linear .7s;
            background:#fff;
        }
        .acc-expanded .ph{flex:0 0 46%;background:center/cover no-repeat;clip-path:inset(0 0 0 0)}
        /* staggered slide-in of the expanded content (open & close) */
        .acc-expanded .body>*{opacity:0;transform:translateY(12px);transition:opacity .45s ease,transform .45s cubic-bezier(.16,1,.3,1)}
        .acc-card.active .acc-expanded .body>*,.acc-card:hover .acc-expanded .body>*{opacity:1;transform:none}
        .acc-card.active .acc-expanded .body>:nth-child(1),.acc-card:hover .acc-expanded .body>:nth-child(1){transition-delay:.12s}
        .acc-card.active .acc-expanded .body>:nth-child(2),.acc-card:hover .acc-expanded .body>:nth-child(2){transition-delay:.18s}
        .acc-card.active .acc-expanded .body>:nth-child(3),.acc-card:hover .acc-expanded .body>:nth-child(3){transition-delay:.24s}
        .acc-expanded .ph{transform:scale(1.06);transition:transform .8s cubic-bezier(.16,1,.3,1)}
        .acc-card.active .acc-expanded .ph,.acc-card:hover .acc-expanded .ph{transform:scale(1)}
        .acc-expanded .body{
            flex:1;padding:32px 38px;display:flex;flex-direction:column;justify-content:center;position:relative;
        }
        .acc-expanded .head{display:flex;align-items:flex-start;gap:8px;margin-bottom:14px}
        .acc-expanded .head h4{font-family:'Sora',sans-serif;font-size:26px;font-weight:700;line-height:1.15;color:var(--ink);max-width:200px}
        .acc-expanded .head .num{
            font-family:'Sora',sans-serif;font-weight:700;font-size:68px;line-height:.8;margin-left:auto;
            color:transparent;-webkit-text-stroke:1.5px rgba(29,42,34,.18);
        }
        .acc-expanded p{font-size:14px;line-height:1.65;color:var(--muted);max-width:300px;margin-bottom:22px}
        .acc-readmore{
            display:inline-flex;align-items:center;gap:10px;align-self:flex-start;
            font-family:'Sora',sans-serif;font-size:12px;font-weight:600;letter-spacing:1px;text-transform:uppercase;color:var(--ink);
            border:1.5px solid #cdd6cf;border-radius:40px;padding:11px 22px;transition:.25s;
        }
        .acc-readmore .ar{width:22px;height:22px;border-radius:50%;background:var(--ink);color:#fff;display:grid;place-items:center;font-size:10px;transition:.25s}
        .acc-readmore:hover{border-color:var(--green);color:var(--green)}
        .acc-readmore:hover .ar{background:var(--green)}
        /* active / hover state */
        .acc-card.active,.acc-card:hover{flex-grow:2.6}
        .acc-card.active .acc-expanded,.acc-card:hover .acc-expanded{border:1px solid #e2e8e3;border-radius:26px}
        .acc-card.active .acc-expanded,.acc-card:hover .acc-expanded{opacity:1;visibility:visible;transition:opacity .55s ease .15s,visibility 0s}
        .acc-card.active::after,.acc-card:hover::after{opacity:0}
        .acc-card.active .acc-collapsed,.acc-card:hover .acc-collapsed{opacity:0}

        /* Yoge icon font (exact theme yoga-pose glyphs) */
        @font-face{
            font-family:"flaticon_yoge";
            src:url("fonts/yoge/flaticon_yoge.woff2") format("woff2"),
                url("fonts/yoge/flaticon_yoge.woff") format("woff"),
                url("fonts/yoge/flaticon_yoge.ttf") format("truetype");
            font-weight:normal;font-style:normal;font-display:block;
        }
        .yi{font-family:"flaticon_yoge"!important;font-style:normal;font-weight:normal;line-height:1;speak:never}
        .yi-yoga-pose:before{content:"\f102"}
        .yi-yoga-pose-18:before{content:"\f114"}
        .yi-phone-call:before{content:"\f14f"}
        .yi-email:before{content:"\f150"}

        /* ---------- Marquee strip ---------- */
        .marquee{background:#e9f0ec;padding:46px 0;overflow:hidden;white-space:nowrap}
        .marquee-track{display:inline-flex;align-items:center;animation:marquee 28s linear infinite}
        .marquee:hover .marquee-track{animation-play-state:paused}
        .marquee-track .item{
            font-family:'Sora',sans-serif;font-weight:700;
            font-size:clamp(40px,6vw,86px);line-height:1;letter-spacing:-1px;
            color:#e9f0ec;-webkit-text-stroke:2px #244a2e;padding:0 38px;
            paint-order:stroke fill;
        }
        .marquee-track .star{color:var(--green);font-size:clamp(28px,4vw,54px);-webkit-text-stroke:0}
        @keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

        /* ---------- About section ---------- */
        .about-section{background:#e9f0ec;padding:56px 0}
        .about-inner{
            max-width:1300px;margin:0 auto;padding:0 clamp(20px,3vw,46px);
            display:grid;grid-template-columns:1fr 1fr;gap:clamp(30px,4vw,60px);align-items:center;
        }
        .about-photo{
            position:relative;border-radius:30px;
            aspect-ratio:1/1;
            background:center/cover no-repeat;
        }
        /* white counter card, bottom-right, concave top-left corner */
        .about-counter{
            --n:34px;
            position:absolute;right:-18px;bottom:-30px;z-index:3;
            background:#fff;color:var(--ink);
            padding:30px 46px 26px;border-radius:24px;
            border-top-left-radius:0;
            font-family:'Sora',sans-serif;text-align:left;
            box-shadow:0 24px 50px rgba(31,55,38,.10);
        }
        .about-counter .n{display:flex;align-items:flex-start;gap:8px;font-size:60px;font-weight:700;line-height:1}
        .about-counter .n .star{color:var(--green);font-size:30px;line-height:1.2}
        .about-counter .n sup{font-size:32px;font-weight:600;top:.05em}
        .about-counter .lbl{font-size:16px;color:var(--muted);margin-top:14px;padding-top:14px;border-top:1px solid #e4e9e5}
        /* concave fillet connecting card up into the image */
        .about-counter::before{
            content:"";position:absolute;left:0;bottom:100%;width:var(--n);height:var(--n);background:#fff;
            -webkit-mask:radial-gradient(circle var(--n) at left top,transparent 99%,#000 100%);
            mask:radial-gradient(circle var(--n) at left top,transparent 99%,#000 100%);
        }
        .about-sub{
            display:inline-block;font-family:'Sora',sans-serif;color:var(--ink);
            font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;
            border:1.5px solid #c2cdc4;border-radius:40px;padding:8px 20px;margin-bottom:18px;
        }
        .about-divider{height:1px;background:#cdd6cf;margin-bottom:22px}
        .about-body h2{
            font-family:'Sora',sans-serif;font-size:clamp(28px,2.9vw,42px);font-weight:700;line-height:1.12;
            color:var(--ink);margin-bottom:18px;letter-spacing:-.5px;
        }
        .about-body > p{font-size:14px;line-height:1.75;color:var(--muted);max-width:500px;margin-bottom:30px}
        .about-features{display:grid;grid-template-columns:1fr 1fr;gap:26px;margin-bottom:32px}
        .feat .fi{
            width:60px;height:60px;border-radius:50%;background:var(--gold);
            display:grid;place-items:center;color:#1d2a22;font-size:26px;margin-bottom:14px;
        }
        .feat h3{font-family:'Sora',sans-serif;font-size:19px;font-weight:700;color:var(--ink);margin-bottom:8px}
        .feat p{font-size:13.5px;line-height:1.55;color:var(--muted);max-width:230px}
        .btn-know{
            display:inline-flex;align-items:center;gap:12px;
            background:var(--green-deep);color:#fff;font-family:'Sora',sans-serif;
            font-weight:600;letter-spacing:.8px;font-size:13px;text-transform:uppercase;
            padding:14px 26px;border-radius:40px;transition:transform .2s,background .2s;
        }
        .btn-know:hover{transform:translateY(-2px);background:#264c30}
        .btn-know .ar{font-size:13px}

        /* ---------- Our main Service ---------- */
        .service-section{background:#448c74;padding:80px 0 100px}
        .service-inner{max-width:1400px;margin:0 auto;padding:0 clamp(20px,3vw,46px)}
        .svc-pill{
            display:inline-block;font-family:'Sora',sans-serif;color:var(--ink);background:#fff;
            font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;
            border-radius:40px;padding:9px 24px;margin-bottom:22px;
        }
        .svc-divider{height:1px;background:rgba(255,255,255,.3);margin-bottom:26px}
        .svc-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:48px}
        .svc-head h2{font-family:'Sora',sans-serif;color:#fff;font-size:clamp(34px,4vw,56px);font-weight:700;letter-spacing:-.5px}
        .svc-nav{display:flex;gap:12px}
        .svc-nav button{
            width:52px;height:52px;border-radius:12px;background:transparent;color:#fff;cursor:pointer;
            border:1px solid rgba(255,255,255,.5);display:grid;place-items:center;font-size:16px;transition:.2s;
        }
        .svc-nav button:hover{background:#fff;color:var(--ink)}
        .svc-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
        /* scroller mode (auto when >3 services) */
        .svc-track{display:flex;gap:26px;overflow-x:auto;scroll-behavior:smooth;scroll-snap-type:x mandatory;padding-bottom:6px;-ms-overflow-style:none;scrollbar-width:none}
        .svc-track::-webkit-scrollbar{display:none}
        .svc-track .svc-cell{flex:0 0 calc((100% - 52px)/3);scroll-snap-align:start}
        @media (max-width:900px){.svc-track .svc-cell{flex-basis:calc((100% - 26px)/2)}}
        /* mobile: stack vertically (scroller only on desktop) */
        @media (max-width:640px){
            .svc-track{flex-direction:column;overflow-x:visible;scroll-snap-type:none}
            .svc-track .svc-cell{flex-basis:auto;width:100%}
            .svc-nav{display:none}
        }
        .svc-cell{position:relative}
        .svc-card{
            position:relative;border-radius:24px;overflow:hidden;display:block;
            aspect-ratio:5/6;background:#1d2a22 center/cover no-repeat;
            /* concave notch cut at bottom-right, centered on the arrow button */
            -webkit-mask:radial-gradient(circle 42px at calc(100% - 30px) calc(100% - 30px),transparent 41px,#000 42px);
            mask:radial-gradient(circle 42px at calc(100% - 30px) calc(100% - 30px),transparent 41px,#000 42px);
        }
        .svc-card::after{
            content:"";position:absolute;inset:0;
            background:linear-gradient(180deg,rgba(0,0,0,.25),rgba(0,0,0,0) 35%,rgba(0,0,0,.65));
        }
        .svc-trainer{
            position:absolute;top:22px;left:22px;z-index:2;
            font-family:'Sora',sans-serif;color:#fff;font-size:11px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;
            border:1px solid rgba(255,255,255,.6);border-radius:40px;padding:8px 16px;
            background:rgba(0,0,0,.15);backdrop-filter:blur(4px);
        }
        .svc-title{
            position:absolute;left:24px;bottom:26px;z-index:2;
            font-family:'Sora',sans-serif;color:#fff;font-size:28px;font-weight:700;line-height:1.15;
            text-shadow:0 2px 14px rgba(0,0,0,.4);max-width:200px;
        }
        .svc-go{
            position:absolute;right:4px;bottom:4px;z-index:3;
            width:52px;height:52px;border-radius:50%;background:#fff;color:var(--ink);
            display:grid;place-items:center;font-size:17px;transition:.25s;
        }
        .svc-go:hover{background:var(--gold);transform:rotate(45deg)}
        @media (max-width:900px){
            .svc-grid{grid-template-columns:1fr 1fr}
        }
        @media (max-width:640px){
            .svc-grid{grid-template-columns:1fr}
            .svc-head{flex-wrap:wrap}
        }

        /* ---------- Events Calendar / Timetable ---------- */
        .tt-section{background:#fff;padding:80px 0 100px}
        .tt-inner{max-width:1400px;margin:0 auto;padding:0 clamp(20px,3vw,46px)}
        .tt-sub{display:inline-block;font-family:'Sora',sans-serif;color:var(--green);font-size:14px;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:12px}
        .tt-head h2{font-family:'Sora',sans-serif;color:var(--ink);font-size:clamp(34px,4vw,56px);font-weight:700;letter-spacing:-.5px;margin-bottom:30px}
        .tt-tabs{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:34px}
        .tt-tab{
            font-family:'Sora',sans-serif;font-size:13px;font-weight:600;color:var(--muted);cursor:pointer;
            border:1px solid #e0e6e1;border-radius:40px;padding:10px 20px;background:#fff;transition:.2s;
        }
        .tt-tab.active,.tt-tab:hover{background:var(--green-deep);color:#fff;border-color:var(--green-deep)}
        .tt-note{font-family:'Sora',sans-serif;color:var(--muted);font-size:14px;margin:-18px 0 22px}
        .tt-scroll{overflow-x:auto}
        .tt-table{width:100%;border-collapse:collapse;min-width:880px;font-family:'Sora',sans-serif}
        .tt-table th,.tt-table td{border:1px solid #eaeeea;text-align:center;vertical-align:middle}
        .tt-table thead th{
            background:#f2f7f3;color:var(--ink);font-size:14px;font-weight:700;padding:18px 10px;
        }
        .tt-table thead th:first-child{background:transparent;border:none}
        .tt-time{color:var(--muted);font-size:13px;font-weight:600;width:90px;padding:14px 8px;white-space:nowrap}
        .tt-ev{padding:10px}
        .tt-ev .ev{
            border-radius:12px;background:#eef4ef;padding:16px 10px;transition:.2s;cursor:pointer;
        }
        .tt-ev .ev:hover{background:var(--green-deep)}
        .tt-ev .ev:hover .et,.tt-ev .ev:hover .es{color:#fff}
        .tt-ev .et{display:block;font-size:15px;font-weight:700;color:var(--ink);margin-bottom:4px}
        .tt-ev .es{display:block;font-size:12.5px;color:var(--muted)}
        .tt-ev.dim{opacity:.18}
        /* Meal / rest rows: flat, quiet, and not clickable-looking. */
        .tt-break{background:#fbfcfb}
        .tt-ev .ev.ev-break,.tt-ev .ev.ev-break:hover{background:transparent;cursor:default;padding:10px}
        .tt-ev .ev.ev-break .et{font-size:13px;font-weight:600;color:var(--muted);letter-spacing:.4px;margin-bottom:0}
        @media (max-width:640px){.tt-section{padding:56px 0 70px}}

        /* ---------- Clients logo strip ---------- */
        .clients{background:#fff;padding:50px 0;border-top:1px solid #eef2ee;overflow:hidden}
        .clients-track{display:flex;align-items:center;gap:0;width:max-content;animation:marquee 26s linear infinite}
        .clients:hover .clients-track{animation-play-state:paused}
        .client-logo{
            flex:0 0 auto;width:clamp(180px,16vw,260px);height:70px;
            display:grid;place-items:center;position:relative;
        }
        .client-logo img{max-width:158px;height:auto;transition:opacity .25s}
        .client-logo .green{position:absolute;opacity:0}
        .client-logo:hover .dark{opacity:0}
        .client-logo:hover .green{opacity:1}

        /* ---------- Testimonials ---------- */
        .testi-section{padding:70px clamp(20px,3vw,46px)}
        .testi-grid{
            position:relative;max-width:1400px;margin:0 auto;
            display:grid;grid-template-columns:1fr 1fr;align-items:stretch;
            background:var(--green-deep);color:#fff;border-radius:30px;overflow:hidden;
        }
        .testi-grid::before{
            content:"";position:absolute;inset:0;z-index:0;opacity:.12;
            background:url('img/yoge/yoga-pattern.png') center/cover no-repeat;
        }
        .testi-grid > *{position:relative;z-index:1}
        .testi-photo{min-height:520px;background:center/cover no-repeat}
        .testi-body{padding:clamp(40px,5vw,80px)}
        .testi-sub{display:inline-block;font-family:'Sora',sans-serif;color:var(--gold);font-size:11.5px;font-weight:700;letter-spacing:2.2px;text-transform:uppercase;margin-bottom:14px}
        .testi-body h2{font-family:'Sora',sans-serif;font-size:clamp(30px,3.3vw,44px);font-weight:700;letter-spacing:-.02em;line-height:1.12;margin-bottom:30px}
        .testi-slide{display:none;margin:0}
        .testi-slide.on{display:block;animation:fade .6s ease}
        @keyframes fade{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
        .testi-stars{color:var(--gold);font-size:16px;letter-spacing:3px;margin-bottom:22px}
        .testi-stars .off{color:rgba(255,255,255,.3)}
                .testi-quote{position:relative;font-family:'Sora',sans-serif;font-size:clamp(19px,2vw,25px);
            line-height:1.55;font-weight:500;letter-spacing:-.01em;margin:0 0 32px;padding-top:6px}
        .testi-quote::before{content:"\201C";position:absolute;left:-6px;top:-38px;
            font-family:Georgia,'Times New Roman',serif;font-size:110px;line-height:1;
            color:var(--gold);opacity:.22;pointer-events:none}
        .testi-quote p{margin:0 0 10px}.testi-quote p:last-child{margin-bottom:0}
        .blog-excerpt p{margin:0 0 6px}.blog-excerpt p:last-child{margin-bottom:0}
        /* attribution: monogram, name, place, and the course taken as a tag */
        .testi-author{display:flex;align-items:center;gap:15px;flex-wrap:wrap}
        .testi-author .mono{
            flex:0 0 auto;width:54px;height:54px;border-radius:50%;
            display:grid;place-items:center;
            background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.28);
            font-family:'Sora',sans-serif;font-weight:700;font-size:17px;letter-spacing:.5px;color:#fff;
        }
        .testi-author .who{display:flex;flex-direction:column;gap:3px;min-width:0}
        .testi-author .nm{font-family:'Sora',sans-serif;font-size:18px;font-weight:700;line-height:1.2}
        .testi-author .rl{font-size:13.5px;color:rgba(255,255,255,.68);line-height:1.2}
        .testi-author .crs{
            margin-left:auto;flex:0 0 auto;
            background:rgba(229,196,102,.16);border:1px solid rgba(229,196,102,.45);color:var(--gold);
            font-family:'Sora',sans-serif;font-size:11.5px;font-weight:700;letter-spacing:.6px;text-transform:uppercase;
            padding:7px 14px;border-radius:30px;white-space:nowrap;
        }

        /* controls */
        .testi-controls{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-top:38px}
        .testi-dots{display:flex;gap:9px}
        .testi-dots button{width:9px;height:9px;padding:0;border:0;border-radius:50%;background:rgba(255,255,255,.32);cursor:pointer;transition:.25s}
        .testi-dots button:hover{background:rgba(255,255,255,.6)}
        .testi-dots button.on{background:var(--gold);width:30px;border-radius:6px}
        .testi-dots button:focus-visible{outline:2px solid var(--gold);outline-offset:3px}
        .testi-count{font-family:'Sora',sans-serif;font-size:13px;color:rgba(255,255,255,.5);letter-spacing:1px}
        .testi-count b{color:#fff;font-weight:700}
        @media (max-width:880px){
            .testi-grid{grid-template-columns:1fr}
            .testi-photo{min-height:300px}
        }

        /* ---------- Team ---------- */
        .team-section{background:#e9f0ec;padding:70px 0 90px}
        .team-inner{max-width:1400px;margin:0 auto;padding:0 clamp(20px,3vw,46px)}
        .team-sub{
            display:inline-block;font-family:'Sora',sans-serif;color:var(--ink);
            font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;
            border:1.5px solid #c2cdc4;border-radius:40px;padding:9px 22px;margin-bottom:22px;
        }
        .team-topline{height:1px;background:#cdd6cf;margin-bottom:26px}
        .team-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:46px}
        .team-head h2{font-family:'Sora',sans-serif;color:var(--ink);font-size:clamp(34px,4vw,56px);font-weight:700;letter-spacing:-.5px}
        .team-nav{display:flex;gap:12px}
        .team-nav button{
            width:52px;height:52px;border-radius:12px;background:transparent;color:var(--ink);cursor:pointer;
            border:1px solid #c2cdc4;display:grid;place-items:center;font-size:16px;transition:.2s;
        }
        .team-nav button:hover{background:var(--green-deep);color:#fff;border-color:var(--green-deep)}
        .team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:26px}
        /* slider mode (auto when >4 trainers) */
        .team-track{display:flex;gap:26px;overflow-x:auto;scroll-behavior:smooth;scroll-snap-type:x mandatory;padding-bottom:6px;-ms-overflow-style:none;scrollbar-width:none}
        .team-track::-webkit-scrollbar{display:none}
        .team-track .team-card{flex:0 0 calc((100% - 78px)/4);scroll-snap-align:start}
        @media (max-width:1000px){.team-track .team-card{flex-basis:calc((100% - 26px)/2)}}
        @media (max-width:560px){.team-track .team-card{flex-basis:100%}}
        .team-card{position:relative}
        .team-photo-wrap{position:relative}
        .team-photo{
            position:relative;border-radius:22px;overflow:hidden;aspect-ratio:65/80;
            background:#1d2a22 center/cover no-repeat;
            -webkit-mask:radial-gradient(circle 42px at calc(100% - 30px) calc(100% - 30px),transparent 41px,#000 42px);
            mask:radial-gradient(circle 42px at calc(100% - 30px) calc(100% - 30px),transparent 41px,#000 42px);
        }
        .team-go{
            position:absolute;right:4px;bottom:4px;z-index:3;
            width:52px;height:52px;border-radius:50%;background:#fff;color:var(--ink);
            display:grid;place-items:center;font-size:16px;cursor:pointer;transition:.25s;
        }
        .team-go:hover{background:var(--gold)}
        .team-go .team-social{
            position:absolute;bottom:calc(100% + 10px);right:0;display:flex;flex-direction:column;gap:8px;
            opacity:0;visibility:hidden;transform:translateY(8px);transition:.3s;
        }
        .team-card:hover .team-social{opacity:1;visibility:visible;transform:none}
        .team-social a{
            width:40px;height:40px;border-radius:50%;background:#fff;color:var(--green-deep);
            display:grid;place-items:center;font-size:14px;box-shadow:0 6px 16px rgba(0,0,0,.12);transition:.2s;
        }
        .team-social a:hover{background:var(--gold);color:#1d2a22}
        .team-info{padding:20px 4px 0}
        .team-info .pos{
            display:flex;align-items:center;gap:8px;
            font-family:'Sora',sans-serif;color:var(--green);font-size:13px;font-weight:600;letter-spacing:1px;text-transform:uppercase;margin-bottom:8px;
        }
        .team-info .pos::before{content:"";width:8px;height:8px;border-radius:50%;background:var(--green)}
        .team-info h3{font-family:'Sora',sans-serif;color:var(--ink);font-size:24px;font-weight:700}
        @media (max-width:1000px){.team-grid{grid-template-columns:1fr 1fr}}
        @media (max-width:560px){.team-grid{grid-template-columns:1fr}}

        /* ---------- Newsletter CTA ---------- */
        .news-section{padding:0 clamp(20px,3vw,46px) 80px}
        .news-band{
            position:relative;max-width:1400px;margin:0 auto;overflow:hidden;
            border-radius:30px;background:var(--green-deep) center/cover no-repeat;
            padding:clamp(48px,6vw,90px) clamp(24px,5vw,80px);
        }
        .news-band::before{
            content:"";position:absolute;inset:0;z-index:0;
            background:linear-gradient(90deg,rgba(31,55,38,.9),rgba(31,55,38,.65));
        }
        .news-band::after{
            content:"";position:absolute;inset:0;z-index:0;opacity:.1;
            background:url('img/yoge/yoga-pattern.png') center/cover no-repeat;
        }
        .news-inner{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:40px;flex-wrap:wrap}
        .news-text{color:#fff;max-width:520px}
        .news-text .es{display:inline-block;font-family:'Sora',sans-serif;color:var(--gold);font-size:13px;font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:12px}
        .news-text h2{font-family:'Sora',sans-serif;font-size:clamp(28px,3.2vw,42px);font-weight:700;line-height:1.15;letter-spacing:-.5px}
        .news-form{
            display:flex;align-items:center;gap:10px;background:#fff;border-radius:50px;padding:8px 8px 8px 26px;
            min-width:min(440px,100%);
        }
        .news-form input{
            flex:1;border:none;outline:none;background:transparent;font-family:'Sora',sans-serif;
            font-size:15px;color:var(--ink);min-width:0;
        }
        .news-form button{
            display:inline-flex;align-items:center;gap:10px;white-space:nowrap;cursor:pointer;border:none;
            background:var(--gold);color:#3a2e10;font-family:'Sora',sans-serif;font-weight:600;
            font-size:13px;letter-spacing:.6px;text-transform:uppercase;padding:14px 24px;border-radius:50px;transition:.2s;
        }
        .news-form button:hover{background:var(--gold-deep)}
        .news-form button .ar{font-size:12px}
        @media (max-width:760px){.news-inner{flex-direction:column;align-items:flex-start}.news-form{width:100%}}

        /* ---------- Blog ---------- */
        .blog-section{background:#f2f7f3;padding:70px 0 90px}
        .blog-inner{max-width:1400px;margin:0 auto;padding:0 clamp(20px,3vw,46px)}
        .blog-sub{display:inline-block;font-family:'Sora',sans-serif;color:var(--ink);font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;border:1.5px solid #c2cdc4;border-radius:40px;padding:9px 22px;margin-bottom:22px}
        .blog-topline{height:1px;background:#cdd6cf;margin-bottom:26px}
        .blog-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:46px}
        .blog-head h2{font-family:'Sora',sans-serif;color:var(--ink);font-size:clamp(34px,4vw,56px);font-weight:700;letter-spacing:-.5px}
        .blog-nav{display:flex;gap:12px}
        .blog-nav button{width:52px;height:52px;border-radius:12px;background:transparent;color:var(--ink);cursor:pointer;border:1px solid #c2cdc4;display:grid;place-items:center;font-size:16px;transition:.2s}
        .blog-nav button:hover{background:var(--green-deep);color:#fff;border-color:var(--green-deep)}
        .blog-grid{display:grid;grid-template-columns:1fr 1fr;gap:30px}
        .blog-card{display:flex;gap:24px;background:#fff;border-radius:22px;overflow:hidden;padding:18px;align-items:center;transition:.25s}
        .blog-card:hover{box-shadow:0 18px 44px rgba(31,55,38,.10)}
        .blog-thumb{flex:0 0 200px;align-self:stretch;min-height:230px;border-radius:16px;background:#1d2a22 center/cover no-repeat}
        .blog-body{flex:1;padding:6px 10px 6px 0;position:relative}
        .blog-meta{display:flex;align-items:center;gap:14px;font-family:'Sora',sans-serif;font-size:12.5px;margin-bottom:14px}
        .blog-meta .cat{color:var(--green);font-weight:700;text-transform:capitalize}
        .blog-meta .dot{width:4px;height:4px;border-radius:50%;background:#c2cdc4}
        .blog-meta .date{color:var(--muted)}
        .blog-card h3{font-family:'Sora',sans-serif;font-size:21px;font-weight:700;line-height:1.3;color:var(--ink);margin-bottom:12px}
        .blog-card h3 a{transition:.2s}
        .blog-card:hover h3 a{color:var(--green)}
        .blog-card p{font-size:14px;line-height:1.6;color:var(--muted);margin-bottom:18px}
        .blog-go{width:46px;height:46px;border-radius:50%;border:1.5px solid #d7ded8;display:grid;place-items:center;color:var(--ink);font-size:14px;transition:.25s}
        .blog-card:hover .blog-go{background:var(--green-deep);color:#fff;border-color:var(--green-deep);transform:rotate(45deg)}
        @media (max-width:980px){.blog-grid{grid-template-columns:1fr}}
        @media (max-width:520px){.blog-card{flex-direction:column;align-items:stretch}.blog-thumb{flex-basis:auto;min-height:200px}}

        /* ---------- Footer top contact strip ---------- */
        .ftop{background:var(--green-deep);color:#fff}
        .ftop-inner{
            max-width:1400px;margin:0 auto;padding:32px clamp(20px,3vw,46px);
            display:grid;grid-template-columns:2fr 1fr 1fr;align-items:center;gap:30px;
        }
        .ftop-menu{display:flex;flex-wrap:wrap;gap:28px;list-style:none}
        .ftop-menu a{font-family:'Sora',sans-serif;font-size:15px;font-weight:600;color:#fff;opacity:.92;transition:.2s}
        .ftop-menu a:hover{color:var(--gold);opacity:1}
        .ftop-contact{display:flex;align-items:center;gap:14px}
        .ftop-contact .ic{font-size:26px;color:var(--gold)}
        .ftop-contact h3{font-family:'Sora',sans-serif;font-size:19px;font-weight:700}
        @media (max-width:880px){
            .ftop-inner{grid-template-columns:1fr;gap:20px}
        }

        /* WhatsApp float */
        .wa-float{
            position:fixed;right:22px;bottom:22px;z-index:120;
            width:56px;height:56px;border-radius:50%;background:#25d366;color:#fff;
            display:grid;place-items:center;font-size:26px;
            box-shadow:0 10px 26px rgba(37,211,102,.45);transition:.2s;
        }
        .wa-float:hover{transform:translateY(-3px) scale(1.05);color:#fff}

        /* ---------- Footer ---------- */
        .footer{color:var(--ink);background:#fff url('img/yoge/footer-bg-image.png') center bottom/cover no-repeat}
        .footer-big{border-bottom:1px solid #eef2ee}
        .footer-big-inner{
            max-width:1400px;margin:0 auto;padding:60px clamp(20px,3vw,46px);
            display:grid;grid-template-columns:1fr 2fr;gap:30px;align-items:center;
        }
        .footer-big-logo{display:flex;align-items:center;gap:16px}
        .footer-big-logo img{height:90px;width:auto}
        .footer-big-brand{font-family:'Sora',sans-serif;font-size:24px;font-weight:700;color:var(--green);letter-spacing:-.3px;line-height:1.2}
        .footer-big-inner h3{font-family:'Sora',sans-serif;font-size:clamp(24px,2.6vw,36px);font-weight:700;line-height:1.3;letter-spacing:-.5px}
        .footer-widgets{
            max-width:1400px;margin:0 auto;padding:64px clamp(20px,3vw,46px);
            display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;
        }
        .fw-logo img{height:64px;margin-bottom:22px}
        .fw-text{font-size:14.5px;line-height:1.7;color:var(--muted);max-width:320px;margin-bottom:24px}
        .fw-social{display:flex;gap:10px;list-style:none}
        .fw-social a{width:42px;height:42px;border-radius:50%;background:#f2f7f3;color:var(--green-deep);display:grid;place-items:center;font-size:15px;transition:.2s}
        .fw-social a:hover{background:var(--green-deep);color:#fff}
        .footer-widgets h2{font-family:'Sora',sans-serif;font-size:20px;font-weight:700;margin-bottom:24px}
        .fw-list{list-style:none;display:flex;flex-direction:column;gap:14px}
        .fw-list a,.fw-time li,.fw-addr{font-size:15px;color:var(--muted);line-height:1.6;transition:.2s}
        .fw-list a:hover{color:var(--green)}
        .fw-time{list-style:none;display:flex;flex-direction:column;gap:14px}
        .footer-bottom{border-top:1px solid #eef2ee}
        .footer-bottom-inner{
            max-width:1400px;margin:0 auto;padding:24px clamp(20px,3vw,46px);
            display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;
        }
        .footer-bottom-inner,.footer-bottom-inner a{font-size:14px;color:var(--muted)}
        .footer-bottom-menu{display:flex;gap:26px;list-style:none}
        .footer-bottom-menu a:hover{color:var(--green)}
        @media (max-width:980px){
            .footer-big-inner{grid-template-columns:1fr}
            .footer-widgets{grid-template-columns:1fr 1fr}
        }
        @media (max-width:560px){.footer-widgets{grid-template-columns:1fr}}
        @media (max-width:880px){
            .about-inner{grid-template-columns:1fr;gap:60px}
            .about-features{grid-template-columns:1fr 1fr}
        }

        @media (max-width:900px){
            .accordion{flex-direction:column;height:auto}
            .acc-card{height:160px}
            .acc-card.active,.acc-card:hover{flex-grow:1;height:360px}
            .acc-expanded .ph{flex-basis:40%}
        }

        @media (max-width:1100px){
            .nav-left{display:none}
            .brand{order:-1}
        }
        @media (max-width:680px){
            .phone span,.btn-appoint span{display:none}
            .socials{gap:16px}
            .members{padding:12px 14px}
            .members img{width:34px;height:34px}
        }
        /* ===== Elementor-style entrance animations ===== */
        .anim{opacity:0;will-change:transform,opacity;transition:opacity .9s cubic-bezier(.22,1,.36,1),transform .9s cubic-bezier(.22,1,.36,1)}
        .anim.a-up{transform:translateY(48px)}
        .anim.a-down{transform:translateY(-48px)}
        .anim.a-left{transform:translateX(-56px)}
        .anim.a-right{transform:translateX(56px)}
        .anim.a-zoom{transform:scale(.88)}
        .anim.in{opacity:1;transform:none}
        @media (prefers-reduced-motion:reduce){.anim{opacity:1!important;transform:none!important;transition:none}}
        /* pre-hide animated items before JS tags them (prevents flash) */
        .preanim .acc-card,.preanim .about-photo,.preanim .about-body,.preanim .svc-pill,.preanim .svc-head,
        .preanim .svc-cell,.preanim .tt-sub,.preanim .tt-head,.preanim .tt-tabs,.preanim .testi-photo,
        .preanim .testi-body,.preanim .team-sub,.preanim .team-head,.preanim .team-card,.preanim .news-band,
        .preanim .blog-sub,.preanim .blog-head,.preanim .blog-card,.preanim .about-counter{opacity:0}

        /* =====================================================================
           MOBILE RESPONSIVE ENHANCEMENTS (adds to existing rules; desktop >1024px untouched)
           Breakpoints: <=1024 tablet, <=640 mobile, <=400 small
           ===================================================================== */

        /* --- Global: prevent horizontal overflow, fluid media --- */
        @media (max-width:1024px){
            html,body{max-width:100%;overflow-x:hidden}
            img,video,iframe{max-width:100%;height:auto}
        }

        /* ---------- TABLET (<=1024px) ---------- */
        @media (max-width:1024px){
            /* trim oversized section paddings */
            .hero-wrap{padding:0 0 28px}
            .accordion-section{padding:32px 20px 48px}
            .about-section{padding:44px 0}
            .service-section{padding:56px 0 64px}
            .tt-section{padding:56px 0 64px}
            .team-section{padding:56px 0 64px}
            .blog-section{padding:56px 0 64px}
            .testi-section{padding:48px 20px}
            .news-section{padding:0 20px 56px}
        }

        /* ---------- MOBILE (<=640px) ---------- */
        @media (max-width:640px){
            /* Header: compact, keep logo + appointment reachable */
            header{gap:12px;padding:10px 16px}
            .brand img{height:48px}
            .nav-right{gap:10px}
            .phone .ic,.search-btn{width:40px;height:40px}
            .btn-appoint{padding:12px 16px;font-size:13px}

            /* Hero: stack, auto height, readable centered text */
            .hero{min-height:auto;padding:80px 0}
            .hero-content{padding:0 18px;max-width:100%}
            .hero-content h1{font-size:clamp(30px,8vw,42px);margin:16px 0 20px}
            .hero-content p{font-size:15px;margin:0 auto 26px}
            .hero-cta{gap:12px}
            .hero-cta .btn{flex:1 1 100%;justify-content:center;padding:15px 24px}
            /* hide side rails / floating chrome that crowd small screens */
            .socials,.dots{display:none}
            .live-pill{display:none}
            .members{--notch:34px;position:static;width:100%;border-radius:0;
                flex-direction:row;align-items:center;justify-content:center;gap:10px;padding:12px 16px}

            /* section heading scale-down for compactness */
            .about-body h2,.svc-head h2,.tt-head h2,.team-head h2,.blog-head h2{
                font-size:clamp(26px,7vw,34px)}
            .news-text h2{font-size:clamp(24px,6.5vw,32px)}
            .testi-body h2{font-size:clamp(26px,7vw,34px);margin-bottom:24px}

            /* About: single column already at 880; tighten + reposition counter */
            .about-features{grid-template-columns:1fr;gap:20px}
            .about-counter{position:static;right:auto;bottom:auto;margin-top:16px;
                padding:22px 26px;border-top-left-radius:24px}
            .about-counter::before{display:none}
            .about-counter .n{font-size:46px}
            .feat .fi{width:52px;height:52px;font-size:22px}

            /* Service header wraps, hide nav (handled) — center align */
            .service-section{padding:48px 0 56px}
            .svc-title{font-size:24px}

            /* Marquee: smaller stroke text */
            .marquee{padding:32px 0}

            /* Testimonials padding */
            .testi-body{padding:32px 22px}
            .testi-photo{min-height:240px}

            /* Team info */
            .team-info h3{font-size:21px}

            /* Newsletter: full-width stacked form */
            .news-form{flex-direction:column;align-items:stretch;border-radius:20px;padding:14px}
            .news-form input{padding:6px 8px;text-align:left}
            .news-form button{justify-content:center;width:100%}

            /* Footer tidy */
            .footer-big-inner{padding:44px 20px}
            .footer-widgets{padding:44px 20px;gap:32px}
            .footer-bottom-inner{flex-direction:column;align-items:flex-start;text-align:left}
            .footer-bottom-menu{flex-wrap:wrap;gap:16px}
            .ftop-inner{padding:26px 20px}

            /* Tap targets >=40px on interactive elements */
            .btn,.btn-know,.btn-gold,.btn-ghost,.acc-readmore,.tt-tab,
            .nav-left a,.ftop-menu a,.fw-list a,.footer-bottom-menu a{min-height:42px}
            .btn,.btn-know,.acc-readmore{display:inline-flex;align-items:center}
            .tt-tab{display:inline-flex;align-items:center}

            /* WhatsApp float slightly smaller, out of the way */
            .wa-float{right:16px;bottom:16px;width:52px;height:52px;font-size:24px}
        }

        /* ---------- SMALL (<=400px) ---------- */
        @media (max-width:400px){
            header{padding:8px 12px}
            .brand img{height:42px}
            .btn-appoint{padding:11px 14px}
            .btn-appoint .ar{display:none}
            .hero-content h1{font-size:26px}
            .hero-content p{font-size:14px}
            .about-body h2,.svc-head h2,.tt-head h2,.team-head h2,.blog-head h2,
            .testi-body h2,.news-text h2{font-size:24px}
            .accordion-section{padding:28px 14px 40px}
            .about-counter .n{font-size:40px}
            .marquee-track .item{padding:0 20px}
        }

        /* ============================================================
           HERO — clean mobile/tablet override (<=1024px)  [final]
           ============================================================ */
        @media (max-width:1024px){
            .hero-wrap{padding:0 0 22px}
            .hero{min-height:auto;border-radius:0 0 22px 22px;display:block}
            /* decorative bits that crowd the small hero */
            .socials,.dots,.members{display:none!important}
            .hero-content{
                position:relative;text-align:center;
                max-width:640px;margin:0 auto;
                padding:clamp(56px,12vw,90px) 22px;
            }
            .eyebrow{font-size:11px;padding:7px 18px}
            .hero-content h1{font-size:clamp(30px,7vw,50px);line-height:1.12;margin:16px 0 22px}
            .hero-content p{font-size:15px;margin:0 auto 26px}
            .hero-cta{flex-direction:column;align-items:stretch;gap:12px;max-width:340px;margin:0 auto}
            .hero-cta .btn{width:100%;justify-content:center;padding:15px 22px}
        }
        @media (max-width:480px){
            .hero-content{padding:52px 18px}
            .hero-content h1{font-size:32px}
            .eyebrow{font-size:10px;letter-spacing:1px}
        }

        /* ============================================================
           ABOUT (section below hero) — clean mobile override [final]
           ============================================================ */
        @media (max-width:1024px){
            .about-inner{grid-template-columns:1fr;gap:44px}
            .about-photo{width:100%;max-width:460px;margin:0 auto;aspect-ratio:4/3;order:0}
            .about-counter{
                position:absolute!important;right:10px;left:auto;bottom:-22px;top:auto!important;
                padding:16px 26px;border-radius:20px;border-top-left-radius:0;
            }
            .about-counter::before{display:none}
            .about-counter .n{font-size:40px}
            .about-counter .n .star{font-size:20px}
            .about-counter .n sup{font-size:20px}
            .about-counter .lbl{font-size:13px;margin-top:10px;padding-top:10px}
            .about-body{text-align:center;padding:0 4px}
            .about-body>p{margin-left:auto;margin-right:auto}
            .about-features{grid-template-columns:1fr;gap:16px;text-align:left;max-width:420px;margin:0 auto 26px}
            .about-body .btn-know{margin-left:auto;margin-right:auto}
        }
        @media (max-width:480px){
            .about-photo{aspect-ratio:1/1;max-width:330px}
            .about-counter{right:0}
            .about-counter .n{font-size:34px}
        }

        /* hide decorative counters/cards on mobile (per request) */
        @media (max-width:1024px){
            .about-counter{display:none!important}
            .members{display:none!important}
        }

        /* ============================================================
           OUR MAIN SERVICE — horizontal scroll cards on mobile [final]
           ============================================================ */
        @media (max-width:1024px){
            .svc-track{flex-direction:row!important;overflow-x:auto!important;
                scroll-snap-type:x mandatory!important;gap:16px;
                padding-bottom:10px;scroll-padding-left:20px}
            .svc-track .svc-cell{flex:0 0 82%!important;max-width:82%;scroll-snap-align:start}
        }
        @media (max-width:480px){
            .svc-track .svc-cell{flex:0 0 86%!important;max-width:86%}
        }

        /* ============================================================
           MOBILE TEXT SIZING — shrink oversized headings [final]
           ============================================================ */
        @media (max-width:640px){
            .about-body h2,.svc-head h2,.tt-head h2,.team-head h2,
            .blog-head h2,.testi-body h2,.news-text h2{font-size:26px!important;line-height:1.22}
            .svc-title{font-size:20px}
            .about-body>p,.testi-quote,.news-text p{font-size:14.5px}
            .hero-content h1{font-size:clamp(28px,7.5vw,40px)!important}
        }
        @media (max-width:480px){
            .about-body h2,.svc-head h2,.tt-head h2,.team-head h2,
            .blog-head h2,.testi-body h2,.news-text h2{font-size:22px!important}
            .hero-content h1{font-size:30px!important}
            .svc-title{font-size:18px}
        }

        /* hide event category filter tabs on mobile (per request) */
        @media (max-width:900px){ .tt-tabs{display:none!important} }

        /* ============================================================
           TESTIMONIALS (Clients feedback) — compact on mobile [final]
           ============================================================ */
        @media (max-width:640px){
            .testi-photo{min-height:190px}
            .testi-body{padding:26px 20px}
            .testi-quote{font-size:16px;line-height:1.55;margin-bottom:22px}
            .testi-author img{width:50px;height:50px}
            .testi-author .nm{font-size:16px}
            .testi-author .rl{font-size:13px}
            .testi-sub{font-size:12px}
        }

        /* ============================================================
           OUR BEST TRAINER — horizontal scroll cards on mobile [final]
           ============================================================ */
        @media (max-width:1024px){
            .team-grid{display:flex!important;grid-template-columns:none!important;
                overflow-x:auto;gap:16px;scroll-snap-type:x mandatory;
                padding-bottom:10px;scroll-padding-left:20px}
            .team-grid .team-card{flex:0 0 68%!important;max-width:68%;scroll-snap-align:start}
        }
        @media (max-width:480px){
            .team-grid .team-card{flex:0 0 80%!important;max-width:80%}
        }

        /* ============================================================
           OUR RECENT BLOG — horizontal scroll cards on mobile [final]
           ============================================================ */
        @media (max-width:1024px){
            .blog-grid{display:flex!important;grid-template-columns:none!important;
                overflow-x:auto;gap:16px;scroll-snap-type:x mandatory;
                padding-bottom:10px;scroll-padding-left:20px}
            .blog-grid .blog-card{flex:0 0 80%!important;max-width:80%;
                scroll-snap-align:start;flex-direction:column;align-items:stretch}
            .blog-grid .blog-thumb{flex-basis:auto;min-height:180px}
        }
        @media (max-width:480px){
            .blog-grid .blog-card{flex:0 0 86%!important;max-width:86%}
        }

        /* about feature items — smaller text on mobile (per request) */
        @media (max-width:640px){
            .about-features .feat h3{font-size:16px}
            .about-features .feat p{font-size:13px;line-height:1.6}
            .about-features .feat .fi{font-size:22px}
        }

        /* hide benefits accordion section on mobile (per request) */
        @media (max-width:1024px){ .accordion-section{display:none!important} }

        /* Testimonials — fix image + tighten gaps on mobile (per request) */
        @media (max-width:880px){
            .testi-photo{min-height:240px;background-position:center 30%!important;background-size:cover!important}
        }
        @media (max-width:640px){
            .testi-photo{min-height:210px}
            .testi-body{padding:22px 18px}
            .testi-body h2{margin-bottom:14px!important}
            .testi-stars{margin-bottom:12px;font-size:14px}
            .testi-quote{margin-bottom:16px}
            .testi-dots{margin-top:20px}
        }

        /* Hero — push text to bottom so the photo (face) shows on mobile [final] */
        @media (max-width:1024px){
            .hero{min-height:78vh!important;display:flex!important;align-items:flex-end!important;justify-content:center}
            .hero-content{padding:0 20px 42px!important;margin:0 auto!important}
        }
        @media (max-width:480px){
            .hero{min-height:72vh!important}
            .hero-content{padding:0 18px 34px!important}
        }

        /* ============================================================
           TIGHTER VERTICAL SPACING between sections on mobile [final]
           ============================================================ */
        @media (max-width:640px){
            .about-section{padding:30px 0!important}
            .service-section{padding:32px 0 34px!important}
            .tt-section{padding:32px 0 34px!important}
            .team-section{padding:32px 0 34px!important}
            .blog-section{padding:32px 0 34px!important}
            .testi-section{padding:30px 16px!important}
            .news-section{padding:0 16px 32px!important}
            .marquee{padding:14px 0!important}
            .clients{padding:20px 0!important}
            .svc-head,.team-head,.blog-head,.tt-head{margin-bottom:18px!important}
            .svc-pill,.tt-sub,.team-sub,.blog-sub,.about-sub{margin-bottom:10px!important}
        }

        /* about feature items — side by side (not stacked) on mobile [final] */
        @media (max-width:640px){
            .about-features{grid-template-columns:1fr 1fr!important;gap:14px!important;max-width:none!important}
            .about-features .feat{text-align:left}
            .about-features .feat .fi{font-size:20px;margin-bottom:6px}
            .about-features .feat h3{font-size:14px;margin-bottom:4px}
            .about-features .feat p{font-size:12px;line-height:1.5}
        }
