:root{
  --ink:#111110;--ink2:#2e2e2c;--ink3:#5a5955;--ink4:#9a9895;
  --rule:#e0deda;--surface:#f8f6f2;--white:#fff;
  --moss:#3b5444;--fern:#5c7d65;--fern-l:#d6e6da;
  --slate:#3d5468;--slate-l:#d2dde6;
  --bark:#6b4e35;--sand:#c9aa83;--sand-l:#f0e8db;
  --serif:'Cormorant',Georgia,serif;--sans:'Outfit',system-ui,sans-serif;
  --nav-h:56px;
}
*,*::before,*::after{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;}
body{font-family:var(--sans);background:var(--white);color:var(--ink);line-height:1.6;overflow-x:hidden;padding-top:var(--nav-h);}
img{display:block;max-width:100%;height:auto;}
button{font-family:var(--sans);cursor:pointer;}
a{color:inherit;text-decoration:none;}
:focus-visible{outline:2px solid var(--moss);outline-offset:3px;}
.sr-only{position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}

/* ── NAV ── */
.nav{position:fixed;top:0;left:0;right:0;z-index:900;height:var(--nav-h);background:var(--white);border-bottom:1px solid var(--rule);display:flex;align-items:center;justify-content:space-between;padding:0 clamp(.9rem,2.8vw,2.2rem);gap:.8rem;}
.nav-logo-area{display:flex;align-items:center;gap:.65rem;cursor:pointer;}
.logo-slot{width:44px;height:44px;border-radius:4px;background:transparent;border:none;display:flex;align-items:center;justify-content:center;flex-shrink:0;overflow:hidden;}
.logo-slot img{width:100%;height:100%;object-fit:cover;border-radius:4px;}
.logo-slot svg{opacity:.3;width:16px;height:16px;stroke:var(--ink3);fill:none;stroke-width:1.5;}
.nav-wordmark{font-family:var(--sans);font-weight:700;font-size:1.1rem;letter-spacing:.03em;color:var(--ink);white-space:nowrap;}
.nav-right{display:flex;align-items:center;gap:.4rem;}
.nav-icon-btn{background:none;border:none;width:40px;height:40px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--ink3);transition:background .18s,color .18s;}
.nav-icon-btn:hover,.nav-icon-btn.active{background:var(--surface);color:var(--ink);}
.nav-icon-btn svg{width:20px;height:20px;stroke:currentColor;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;}
/* Hamburger - 3 lines → X */
.burger-icon{display:flex;flex-direction:column;align-items:flex-end;gap:5px;width:22px;}
.burger-icon span{display:block;height:1.5px;background:currentColor;border-radius:2px;transition:all .28s cubic-bezier(.4,0,.2,1);}
.burger-icon span:nth-child(1){width:22px;}
.burger-icon span:nth-child(2){width:15px;}
.burger-icon span:nth-child(3){width:19px;}
.burger-btn.open .burger-icon span:nth-child(1){transform:translateY(6.5px) rotate(45deg);width:22px;}
.burger-btn.open .burger-icon span:nth-child(2){opacity:0;width:0;}
.burger-btn.open .burger-icon span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg);width:22px;}
/* Dropdown */
.nav-overlay{display:none;position:fixed;inset:0;z-index:700;}
.nav-overlay.open{display:block;}
.nav-dd{position:fixed;top:var(--nav-h);right:0;width:min(320px,96vw);background:var(--white);border-left:1px solid var(--rule);border-bottom:1px solid var(--rule);z-index:800;display:none;padding:1.2rem 1rem 1.5rem;box-shadow:-6px 8px 36px rgba(0,0,0,.08);}
.nav-dd.open{display:block;}
.nav-dd-item{display:flex;align-items:center;padding:.75rem 1rem;border-radius:5px;cursor:pointer;transition:background .14s;font-size:.82rem;font-weight:400;color:var(--ink2);}
.nav-dd-item:hover{background:var(--surface);}
.nav-dd-divider{height:1px;background:var(--rule);margin:.5rem 1rem;}
.nav-dd-section{padding:.5rem 1rem .2rem;font-size:.62rem;letter-spacing:.18em;text-transform:uppercase;font-weight:600;color:var(--ink4);}
/* Profile popup */
.profile-popup{position:fixed;top:var(--nav-h);right:0;width:min(270px,96vw);background:var(--white);border:1px solid var(--rule);z-index:810;display:none;padding:1.4rem;box-shadow:0 8px 32px rgba(0,0,0,.1);}
.profile-popup.open{display:block;}
.pp-title{font-size:.65rem;letter-spacing:.16em;text-transform:uppercase;font-weight:600;color:var(--ink4);margin-bottom:.9rem;}
.pp-btn{display:block;width:100%;padding:.75rem 1rem;text-align:left;border:1px solid var(--rule);background:none;font-family:var(--sans);font-size:.83rem;font-weight:400;cursor:pointer;transition:background .15s;border-radius:4px;margin-bottom:.45rem;color:var(--ink);}
.pp-btn:hover{background:var(--surface);}
.pp-btn.moss{background:var(--moss);color:var(--white);border-color:var(--moss);}
.pp-btn.moss:hover{background:var(--fern);}

/* ── PAGES ── */
.page{display:none;min-height:100vh;padding-top:var(--nav-h);}
.page.active{display:block;}

/* ── SHARED ── */
.eyebrow{font-size:.67rem;letter-spacing:.22em;text-transform:uppercase;font-weight:500;color:var(--moss);display:block;margin-bottom:.7rem;}
.eyebrow.lt{color:var(--fern);}.eyebrow.sl{color:var(--slate);}.eyebrow.mu{color:var(--ink4);}
h1,h2,h3{font-family:var(--serif);font-weight:400;line-height:1.1;}
.rule-line{width:30px;height:1.5px;background:var(--moss);margin:1rem 0;}
.btn{display:inline-flex;align-items:center;gap:.45rem;font-family:var(--sans);font-size:.77rem;font-weight:500;letter-spacing:.1em;text-transform:uppercase;border:none;cursor:pointer;transition:all .2s;border-radius:2px;}
.btn-dk{background:var(--ink);color:var(--white);padding:.72rem 1.55rem;}.btn-dk:hover{background:var(--moss);}
.btn-gh{background:transparent;color:var(--ink);padding:.7rem 1.55rem;border:1.5px solid var(--rule);}.btn-gh:hover{border-color:var(--ink);background:var(--ink);color:var(--white);}
.btn-ms{background:var(--moss);color:var(--white);padding:.72rem 1.55rem;}.btn-ms:hover{background:var(--fern);}
.btn-sl{background:var(--slate);color:var(--white);padding:.72rem 1.55rem;}.btn-sl:hover{opacity:.85;}
.btn-sm{font-size:.68rem;padding:.46rem 1rem;}
.ph{background:var(--surface);border:1px dashed var(--rule);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.4rem;color:var(--ink4);font-size:.63rem;letter-spacing:.1em;text-transform:uppercase;font-weight:500;}
.ph svg{opacity:.28;width:22px;height:22px;stroke:currentColor;fill:none;stroke-width:1.5;}
.callout{background:var(--ink);color:var(--white);display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;padding:2.8rem clamp(1rem,4vw,3rem);}
.callout h2{font-family:var(--serif);font-size:clamp(1.4rem,3vw,2.1rem);font-weight:400;color:var(--white);}
.callout p{font-size:.84rem;color:rgba(255,255,255,.45);margin-top:.3rem;font-weight:300;}
.tag{display:inline-block;font-size:.6rem;letter-spacing:.1em;text-transform:uppercase;font-weight:500;padding:.18rem .6rem;border:1px solid var(--rule);color:var(--ink3);border-radius:2px;}
.tag.ms{border-color:var(--fern-l);color:var(--moss);background:var(--fern-l);}
.tag.sl{border-color:var(--slate-l);color:var(--slate);background:var(--slate-l);}
.tag.sd{border-color:var(--sand-l);color:var(--bark);background:var(--sand-l);}
.section-pad{padding:clamp(2rem,4vw,4rem) clamp(1rem,4vw,3rem);}
.section-sm{padding:1.8rem clamp(1rem,4vw,3rem);}

/* ── FOOTER ── */
.site-footer{background:var(--ink2);color:var(--white);padding:2rem clamp(1rem,4vw,3rem) 1.4rem;}
.footer-grid{display:grid;grid-template-columns:1.3fr 1fr;gap:1.8rem;padding-bottom:1.4rem;border-bottom:1px solid rgba(255,255,255,.08);margin-bottom:1.4rem;}
.footer-left{display:grid;grid-template-columns:1fr 1fr;gap:2rem;}
.footer-right{display:grid;grid-template-columns:1fr 1fr;gap:2rem;}
.footer-brand .logo{font-family:var(--sans);font-size:.95rem;font-weight:600;letter-spacing:.03em;color:var(--white);margin-bottom:.22rem;display:inline;}
.footer-brand .slogan{font-size:.62rem;letter-spacing:.18em;text-transform:uppercase;color:rgba(255,255,255,.3);}
.footer-brand .tagline{font-size:.78rem;color:rgba(255,255,255,.42);font-weight:300;margin-top:.7rem;line-height:1.65;max-width:200px;}
.footer-col h4{font-size:.64rem;letter-spacing:.15em;text-transform:uppercase;font-weight:600;color:rgba(255,255,255,.33);margin-bottom:.85rem;}
.footer-col a,.footer-col p{display:block;font-size:.78rem;color:rgba(255,255,255,.48);font-weight:300;margin-bottom:.55rem;cursor:pointer;transition:color .18s;line-height:1.2;}
.footer-col a:hover{color:var(--white);}
.social-row{display:flex;gap:.5rem;margin-top:.7rem;}
.social-btn{width:34px;height:34px;border-radius:50%;border:1px solid rgba(255,255,255,.16);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);transition:all .2s;cursor:pointer;text-decoration:none;}
.social-btn:hover{border-color:rgba(255,255,255,.55);color:var(--white);background:rgba(255,255,255,.08);}
.social-btn svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.5;}
.footer-copy{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.8rem;font-size:.68rem;color:rgba(255,255,255,.2);}

/* ── HOME ── */
.hero{display:grid;grid-template-columns:1fr 1fr;min-height:min(72vh,640px);border-bottom:1px solid var(--rule);}
.hero-copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(1.8rem,3.5vw,3.5rem) clamp(1rem,4vw,3rem);border-right:1px solid var(--rule);}
.hero-copy h1{font-size:clamp(2.8rem,5.5vw,5.5rem);font-weight:300;letter-spacing:-.01em;}
.hero-copy h1 em{font-style:italic;color:var(--moss);}
.hero-lead{font-size:.93rem;color:var(--ink3);font-weight:300;line-height:1.82;max-width:400px;margin-top:1.4rem;}
.hero-actions{display:flex;gap:.65rem;margin-top:1.9rem;flex-wrap:wrap;}
.hero-art{position:relative;overflow:hidden;background:var(--surface);}
.hero-art .ph{height:100%;min-height:420px;background:linear-gradient(135deg,#e8e4de 0%,#d6e6da 55%,#d2dde6 100%);}
.hero-art::after{content:'';position:absolute;bottom:0;left:0;right:0;height:38%;background:linear-gradient(to top,rgba(17,17,16,.4),transparent);pointer-events:none;}
.hero-art-badge{position:absolute;bottom:0;left:0;right:0;background:rgba(17,17,16,.72);backdrop-filter:blur(10px);padding:.75rem 1.3rem;z-index:2;display:flex;align-items:center;gap:.9rem;}
.hero-art-badge .num{font-family:var(--sans);font-size:.72rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.55);white-space:nowrap;}
.hero-art-badge .lbl{font-size:.72rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.55);white-space:nowrap;}
.hero-art-badge .hb-dot{width:4px;height:4px;border-radius:50%;background:var(--moss);flex-shrink:0;}

.hero-art-circle{position:absolute;top:1.8rem;right:1.8rem;z-index:2;width:58px;height:58px;border-radius:50%;border:1.5px solid rgba(59,84,68,.35);background:rgba(59,84,68,.07);backdrop-filter:blur(4px);}
.hero-chips{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--rule);margin-top:2rem;}
.hero-chip{padding:.7rem 1rem .65rem;border-right:1px solid var(--rule);}
.hero-chip:last-child{border-right:none;}
.hero-chip .num{font-family:var(--serif);font-size:1.7rem;font-weight:300;line-height:1;}
.hero-chip .lbl{font-size:.7rem;color:var(--ink3);font-weight:300;margin-top:.18rem;line-height:1.4;}
.about-strip{display:grid;grid-template-columns:1fr 1fr;border-bottom:1px solid var(--rule);}
.ab-text{padding:clamp(1.6rem,3.5vw,2.8rem) clamp(1rem,4vw,3rem);background:var(--ink2);color:var(--white);border-right:1px solid rgba(255,255,255,.04);}
.ab-text .eyebrow{color:var(--fern);}
.ab-text h2{font-size:clamp(1.5rem,3vw,2.5rem);color:var(--white);margin-bottom:1rem;}
.ab-text p{font-size:.86rem;color:rgba(255,255,255,.54);font-weight:300;line-height:1.85;margin-bottom:.8rem;}
.ab-vis{padding:clamp(1.6rem,3.5vw,2.8rem) clamp(1rem,4vw,3rem);background:var(--surface);display:flex;flex-direction:column;gap:1.4rem;justify-content:center;}
.ab-vis .ph{height:200px;}
.pull-quote{font-family:var(--serif);font-size:1.1rem;font-style:italic;font-weight:400;color:var(--ink2);line-height:1.5;border-left:2px solid var(--moss);padding-left:1rem;}
.svc-intro{padding:clamp(1.2rem,2.5vw,2rem) clamp(1rem,4vw,3rem) 1rem;display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;flex-wrap:wrap;border-bottom:1px solid var(--rule);}
.svc-intro h2{font-size:clamp(1.5rem,3vw,2.3rem);}
.svc-intro p{font-size:.84rem;color:var(--ink3);font-weight:300;max-width:280px;line-height:1.7;}
.svc-grid{display:grid;grid-template-columns:repeat(4,1fr);border-bottom:1px solid var(--rule);}
.svc-card{border-right:1px solid var(--rule);border-bottom:1px solid var(--rule);padding:1.5rem;cursor:pointer;transition:background .18s;display:flex;flex-direction:column;}
.svc-card:hover{background:var(--surface);}
.svc-card:nth-child(4n){border-right:none;}
.svc-card:nth-child(n+5){border-bottom:none;}
.svc-photo{width:100%;height:78px;margin-bottom:.9rem;}
.svc-photo .ph{height:100%;font-size:.56rem;}
.svc-disc{font-size:.58rem;letter-spacing:.16em;text-transform:uppercase;font-weight:600;color:var(--moss);margin-bottom:.25rem;}
.svc-card h3{font-size:.92rem;font-weight:500;margin-bottom:.4rem;line-height:1.3;}
.svc-card p{font-size:.74rem;color:var(--ink3);line-height:1.7;font-weight:300;flex:1;}
.svc-sub{margin-top:.75rem;padding-top:.65rem;border-top:1px solid var(--rule);font-size:.66rem;color:var(--ink4);font-weight:300;line-height:1.5;}
.svc-sub strong{color:var(--moss);font-weight:500;}
.svc-arrow{display:block;margin-top:.65rem;font-size:.66rem;letter-spacing:.08em;text-transform:uppercase;font-weight:500;color:var(--ink);}
.t-intro{padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem) 1.4rem;}
.t-intro h2{font-size:clamp(1.5rem,3vw,2.3rem);}
.t-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--rule);border-bottom:1px solid var(--rule);}
.t-card{padding:1.5rem 1.4rem;border-right:1px solid var(--rule);}
.t-card:last-child{border-right:none;}
.t-qm{font-family:var(--serif);font-size:2.8rem;color:var(--rule);line-height:.8;margin-bottom:.65rem;}
.t-stars{color:var(--bark);font-size:.73rem;letter-spacing:.1em;margin-bottom:.5rem;}
.t-card p{font-size:.81rem;color:var(--ink2);font-style:italic;font-weight:300;line-height:1.8;margin-bottom:1.2rem;}
.t-author{display:flex;align-items:center;gap:.7rem;}
.t-av{width:38px;height:38px;border-radius:50%;overflow:hidden;flex-shrink:0;}
.t-av .ph{height:100%;font-size:0;border-radius:50%;}
.t-name{font-size:.78rem;font-weight:600;}
.t-role{font-size:.67rem;color:var(--ink4);}

/* ── SERVICES/PRICING PAGE ── */
.page-banner{display:grid;grid-template-columns:1fr 1fr;min-height:46vh;border-bottom:1px solid var(--rule);}
.page-banner-copy{padding:clamp(2.5rem,5vw,5rem) clamp(1rem,4vw,3rem);border-right:1px solid var(--rule);display:flex;flex-direction:column;justify-content:center;}
.page-banner-copy h1{font-size:clamp(1.9rem,4.5vw,4rem);font-weight:300;}
.page-banner-copy p{font-size:.88rem;color:var(--ink3);font-weight:300;line-height:1.82;margin-top:.9rem;max-width:370px;}
.page-banner-img .ph{height:100%;min-height:260px;}
.funding-strip{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--rule);background:var(--surface);}
.fn-cell{padding:1.5rem;border-right:1px solid var(--rule);}
.fn-cell:last-child{border-right:none;}
.fn-badge{font-size:.6rem;letter-spacing:.12em;text-transform:uppercase;font-weight:600;display:block;margin-bottom:.5rem;}
.fn-badge.ms{color:var(--moss);}.fn-badge.sl{color:var(--slate);}.fn-badge.sd{color:var(--bark);}
.fn-cell h3{font-family:var(--serif);font-size:.92rem;font-weight:500;margin-bottom:.38rem;}
.fn-cell p{font-size:.74rem;color:var(--ink3);font-weight:300;line-height:1.65;}
.pricing-intro{padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem) 1.4rem;border-bottom:1px solid var(--rule);}
.pricing-intro h2{font-size:clamp(1.4rem,2.8vw,2.1rem);}
.pricing-intro p{font-size:.83rem;color:var(--ink3);font-weight:300;max-width:500px;line-height:1.75;margin-top:.45rem;}
.p-grid{display:grid;grid-template-columns:repeat(4,1fr);border-bottom:1px solid var(--rule);}
.p-card{padding:1.7rem;border-right:1px solid var(--rule);}
.p-card:last-child{border-right:none;}
.p-card.hl{background:var(--ink);color:var(--white);}
.p-disc{font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;font-weight:600;margin-bottom:.42rem;}
.p-card:not(.hl) .p-disc{color:var(--moss);}.p-card.hl .p-disc{color:var(--fern);}
.p-card h3{font-family:var(--serif);font-size:.92rem;font-weight:400;margin-bottom:.85rem;line-height:1.3;}
.p-price{font-family:var(--serif);font-size:1.9rem;font-weight:300;line-height:1;}
.p-unit{font-size:.68rem;color:var(--ink4);margin-bottom:.85rem;font-weight:300;}
.p-card.hl .p-unit{color:rgba(255,255,255,.36);}
.p-list{list-style:none;margin-bottom:1.1rem;}
.p-list li{font-size:.74rem;color:var(--ink3);font-weight:300;padding:.32rem 0;border-bottom:1px solid var(--surface);display:flex;gap:.42rem;align-items:flex-start;line-height:1.4;}
.p-card.hl .p-list li{color:rgba(255,255,255,.5);border-bottom-color:rgba(255,255,255,.07);}
.p-list li::before{content:'–';font-size:.58rem;color:var(--moss);flex-shrink:0;margin-top:.15rem;}
.p-card.hl .p-list li::before{color:var(--fern);}
.bundles-intro{padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem) 1.4rem;background:var(--surface);border-bottom:1px solid var(--rule);}
.bundles-intro h2{font-size:clamp(1.4rem,2.8vw,2.1rem);}
.bundles-intro p{font-size:.83rem;color:var(--ink3);font-weight:300;max-width:500px;line-height:1.75;margin-top:.45rem;}
.session-bundles{display:grid;grid-template-columns:repeat(3,1fr);background:var(--surface);border-bottom:1px solid var(--rule);}
.sb-card{padding:1.9rem 1.7rem;border-right:1px solid var(--rule);background:var(--white);position:relative;}
.sb-card:last-child{border-right:none;}
.sb-card.popular{border-top:3px solid var(--moss);}
.sb-badge-pop{position:absolute;top:-1px;left:50%;transform:translateX(-50%);background:var(--moss);color:var(--white);font-size:.58rem;letter-spacing:.12em;text-transform:uppercase;font-weight:600;padding:.18rem .75rem;white-space:nowrap;}
.sb-sessions{font-family:var(--serif);font-size:2.8rem;font-weight:300;line-height:1;color:var(--ink);}
.sb-label{font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;color:var(--ink4);font-weight:500;margin-bottom:1rem;}
.sb-price{font-family:var(--serif);font-size:1.5rem;font-weight:300;color:var(--ink);line-height:1;}
.sb-per{font-size:.7rem;color:var(--ink4);font-weight:300;margin-bottom:.18rem;}
.sb-save{display:inline-block;font-size:.62rem;background:var(--fern-l);color:var(--moss);padding:.15rem .55rem;border-radius:2px;font-weight:600;margin-bottom:1.1rem;}
.sb-includes{border-top:1px solid var(--rule);padding-top:.9rem;margin-top:.9rem;}
.sb-includes h4{font-size:.65rem;letter-spacing:.12em;text-transform:uppercase;font-weight:600;color:var(--moss);margin-bottom:.6rem;}
.sb-includes ul{list-style:none;}
.sb-includes li{font-size:.73rem;color:var(--ink3);font-weight:300;padding:.27rem 0;display:flex;gap:.45rem;align-items:flex-start;line-height:1.45;}
.sb-includes li::before{content:'✓';color:var(--moss);font-size:.62rem;flex-shrink:0;margin-top:.08rem;font-weight:600;}
.sb-note{font-size:.66rem;color:var(--ink4);margin-top:.7rem;font-style:italic;line-height:1.5;}
/* Payment */
.payment-section{padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem);border-bottom:1px solid var(--rule);}
.payment-section h2{font-family:var(--serif);font-size:clamp(1.3rem,2.5vw,1.9rem);font-weight:400;margin-bottom:1.3rem;}
.pay-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:1.3rem;}
.pay-card{border:1px solid var(--rule);padding:1.5rem;border-radius:3px;}
.pay-card h3{font-family:var(--serif);font-size:.95rem;font-weight:500;margin-bottom:.35rem;}
.pay-card p{font-size:.76rem;color:var(--ink3);font-weight:300;margin-bottom:.9rem;line-height:1.65;}
.pay-icons{display:flex;gap:.45rem;flex-wrap:wrap;margin-bottom:.9rem;}
.pay-icon{height:24px;background:var(--surface);border:1px solid var(--rule);border-radius:3px;display:flex;align-items:center;justify-content:center;padding:0 .55rem;font-size:.6rem;font-weight:600;letter-spacing:.04em;color:var(--ink3);transition:background .2s,border-color .2s,color .2s;cursor:default;}
.pay-icon:hover{background:var(--ink);border-color:var(--ink);color:var(--white);}
.stripe-note{font-size:.68rem;color:var(--ink4);margin-top:.45rem;}
.pricing-note{padding:1.3rem clamp(1rem,4vw,3rem);background:var(--surface);border-bottom:1px solid var(--rule);font-size:.76rem;color:var(--ink3);line-height:1.7;font-weight:300;}
.pricing-note strong{color:var(--ink);font-weight:600;}
.pricing-note a{color:var(--slate);font-weight:500;cursor:pointer;}

/* ── ABOUT ── */
.ab-hero{display:grid;grid-template-columns:1fr 1fr;border-bottom:1px solid var(--rule);}
.ab-copy{padding:clamp(2.5rem,5vw,4.5rem) clamp(1rem,4vw,3rem);border-right:1px solid var(--rule);display:flex;flex-direction:column;justify-content:center;}
.ab-copy h1{font-size:clamp(1.9rem,4vw,3.5rem);font-weight:300;margin-bottom:.9rem;}
.ab-copy h1 em{font-style:italic;color:var(--moss);}
.ab-copy p{font-size:.86rem;color:var(--ink3);font-weight:300;line-height:1.85;margin-bottom:.8rem;}
.ab-img .ph{height:100%;min-height:380px;}
.values-grid{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--rule);}
.val-cell{padding:1.3rem 1.9rem;border-right:1px solid var(--rule);border-bottom:1px solid var(--rule);}
.val-cell:nth-child(3n){border-right:none;}
.val-cell:nth-child(n+4){border-bottom:none;}
.val-n{font-family:var(--serif);font-size:1.9rem;font-weight:300;color:var(--rule);line-height:1;margin-bottom:.45rem;}
.val-cell h3{font-size:.95rem;font-weight:500;margin-bottom:.38rem;}
.val-cell p{font-size:.76rem;color:var(--ink3);font-weight:300;line-height:1.75;}
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.1rem;padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem);background:var(--surface);border-bottom:1px solid var(--rule);}
.tm-ph{width:100%;aspect-ratio:3/4;}.tm-ph .ph{height:100%;}
.tm-card h4{font-family:var(--serif);font-size:.92rem;font-weight:500;margin:.65rem 0 .18rem;}
.tm-role{font-size:.65rem;text-transform:uppercase;letter-spacing:.12em;font-weight:600;color:var(--moss);}

/* ── HISTORY ── */
.hist-banner{background:var(--ink2);color:var(--white);padding:clamp(2.5rem,5vw,5rem) clamp(1rem,4vw,3rem);display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;}
.hist-banner h1{font-size:clamp(2rem,4.5vw,4rem);font-weight:300;color:var(--white);}
.hist-banner p{font-size:.86rem;color:rgba(255,255,255,.48);font-weight:300;line-height:1.82;}
.timeline{max-width:760px;margin:0 auto;padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem);}
.tl-item{display:grid;grid-template-columns:60px 18px 1fr;gap:0 1.1rem;margin-bottom:1.7rem;}
.tl-yr{font-family:var(--serif);font-size:.88rem;color:var(--ink4);text-align:right;padding-top:.1rem;}
.tl-track{display:flex;flex-direction:column;align-items:center;}
.tl-dot{width:8px;height:8px;border-radius:50%;background:var(--moss);border:2px solid var(--white);box-shadow:0 0 0 1.5px var(--moss);flex-shrink:0;margin-top:.25rem;}
.tl-line{width:1px;flex:1;background:var(--rule);margin-top:3px;}
.tl-item:last-child .tl-line{display:none;}
.tl-body h3{font-family:var(--serif);font-size:.97rem;font-weight:500;margin-bottom:.3rem;}
.tl-body p{font-size:.78rem;color:var(--ink3);font-weight:300;line-height:1.75;}

/* ── JOIN ── */
.join-hero{display:grid;grid-template-columns:1fr 1fr;border-bottom:1px solid var(--rule);}
.join-copy{padding:clamp(2.5rem,5vw,4.5rem) clamp(1rem,4vw,3rem);border-right:1px solid var(--rule);display:flex;flex-direction:column;justify-content:center;}
.join-copy h1{font-size:clamp(1.8rem,4vw,3.3rem);font-weight:300;margin-bottom:.9rem;}
.join-copy h1 em{font-style:italic;color:var(--moss);}
.join-copy p{font-size:.84rem;color:var(--ink3);font-weight:300;line-height:1.82;margin-bottom:.7rem;}
.join-fw{padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem);background:var(--surface);display:flex;align-items:flex-start;}
.form-card{background:var(--white);border:1px solid var(--rule);padding:1.9rem;width:100%;}
.form-card h2{font-family:var(--serif);font-size:1.25rem;font-weight:400;margin-bottom:1.3rem;}
.fg{margin-bottom:.95rem;}
.fg label{display:block;font-size:.63rem;letter-spacing:.14em;text-transform:uppercase;font-weight:600;color:var(--ink4);margin-bottom:.35rem;}
.fg input,.fg select,.fg textarea{width:100%;padding:.65rem .88rem;border:1px solid var(--rule);font-family:var(--sans);font-size:.82rem;background:var(--surface);color:var(--ink);outline:none;transition:border-color .18s;border-radius:2px;}
.fg input:focus,.fg select:focus,.fg textarea:focus{border-color:var(--ink);background:var(--white);}
.fg textarea{resize:vertical;min-height:88px;}
.fg-row{display:grid;grid-template-columns:1fr 1fr;gap:.65rem;}
.form-note{font-size:.66rem;color:var(--ink4);text-align:center;margin-top:.65rem;line-height:1.5;}

/* ── CAREERS ── */
.careers-banner{background:var(--moss);color:var(--white);padding:clamp(2.5rem,5vw,4.5rem) clamp(1rem,4vw,3rem);display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center;}
.careers-banner h1{font-size:clamp(2rem,4.5vw,4rem);font-weight:300;color:var(--white);}
.careers-banner p{font-size:.86rem;color:rgba(255,255,255,.6);font-weight:300;line-height:1.82;margin-bottom:1rem;}
.careers-banner .eyebrow{color:var(--fern-l);}
.perks-grid{display:grid;grid-template-columns:repeat(3,1fr);border-top:1px solid var(--rule);border-bottom:1px solid var(--rule);}
.pk-cell{padding:1.7rem;border-right:1px solid var(--rule);border-bottom:1px solid var(--rule);}
.pk-cell:nth-child(3n){border-right:none;}.pk-cell:nth-child(n+4){border-bottom:none;}
.pk-label{font-size:.58rem;letter-spacing:.18em;text-transform:uppercase;font-weight:600;color:var(--moss);margin-bottom:.32rem;}
.pk-cell h3{font-family:var(--serif);font-size:.92rem;font-weight:500;margin-bottom:.32rem;}
.pk-cell p{font-size:.74rem;color:var(--ink3);font-weight:300;line-height:1.7;}
.jobs-section{padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem);}
.job-row{display:flex;align-items:center;justify-content:space-between;padding:1.1rem 1.4rem;border:1px solid var(--rule);margin-bottom:-1px;cursor:pointer;transition:background .16s;}
.job-row:hover{background:var(--surface);}
.job-title{font-family:var(--serif);font-size:.92rem;font-weight:400;margin-bottom:.28rem;}
.job-tags-row{display:flex;gap:.38rem;flex-wrap:wrap;}
.job-arr{color:var(--ink4);transition:color .16s;font-size:.88rem;}
.job-row:hover .job-arr{color:var(--ink);}

/* ── SHOP ── */
.shop-banner{padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem);display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:end;border-bottom:1px solid var(--rule);}
.shop-banner h1{font-size:clamp(1.9rem,4vw,3.3rem);font-weight:300;}
.shop-banner p{font-size:.84rem;color:var(--ink3);font-weight:300;line-height:1.78;}
.currency-bar{display:flex;align-items:center;gap:.9rem;padding:.75rem clamp(1rem,4vw,3rem);border-bottom:1px solid var(--rule);background:var(--surface);flex-wrap:wrap;}
.currency-bar label{font-size:.65rem;letter-spacing:.14em;text-transform:uppercase;font-weight:600;color:var(--ink4);}
.currency-select{padding:.35rem .65rem;border:1px solid var(--rule);font-family:var(--sans);font-size:.8rem;background:var(--white);color:var(--ink);border-radius:2px;cursor:pointer;outline:none;}
/* Cart */
.cart-strip{display:flex;align-items:center;justify-content:space-between;padding:.7rem clamp(1rem,4vw,3rem);border-bottom:1px solid var(--rule);background:var(--white);}
.cart-info{display:flex;align-items:center;gap:.8rem;}
.cart-badge{background:var(--moss);color:var(--white);font-size:.65rem;font-weight:600;padding:.18rem .55rem;border-radius:10px;min-width:20px;text-align:center;}
.cart-label{font-size:.78rem;color:var(--ink3);font-weight:300;}
.cart-total{font-family:var(--serif);font-size:1.1rem;font-weight:300;}
.cart-items-list{background:var(--surface);border-bottom:1px solid var(--rule);padding:.6rem clamp(1rem,4vw,3rem);display:none;}
.cart-items-list.open{display:block;}
.cart-item-row{display:flex;align-items:center;justify-content:space-between;padding:.5rem 0;border-bottom:1px solid var(--rule);font-size:.78rem;}
.cart-item-row:last-child{border-bottom:none;}
.cart-remove{background:none;border:none;color:var(--ink4);cursor:pointer;font-size:.8rem;padding:.1rem .3rem;transition:color .15s;}
.cart-remove:hover{color:var(--bark);}
.shop-sec-hd{display:flex;align-items:flex-end;justify-content:space-between;gap:1.4rem;padding:1.9rem clamp(1rem,4vw,3rem) 1.1rem;border-bottom:1px solid var(--rule);}
.shop-sec-hd h2{font-size:clamp(1.2rem,2.5vw,1.75rem);font-weight:400;}
.shop-sec-hd p{font-size:.73rem;color:var(--ink4);font-weight:300;max-width:190px;text-align:right;line-height:1.55;}
.products-grid{display:grid;grid-template-columns:repeat(3,1fr);border-bottom:1px solid var(--rule);}
.prod-card{border-right:1px solid var(--rule);cursor:pointer;transition:box-shadow .2s;}
.prod-card:last-child{border-right:none;}
.prod-card:hover{box-shadow:0 6px 26px rgba(0,0,0,.07);}
.prod-img{aspect-ratio:1;width:100%;}.prod-img .ph{height:100%;}
.prod-info{padding:1.1rem 1.3rem;}
.prod-cat{font-size:.56rem;text-transform:uppercase;letter-spacing:.16em;font-weight:600;color:var(--bark);margin-bottom:.28rem;}
.prod-name{font-family:var(--serif);font-size:.92rem;font-weight:400;margin-bottom:.32rem;line-height:1.3;}
.prod-desc{font-size:.74rem;color:var(--ink3);font-weight:300;line-height:1.62;margin-bottom:.75rem;}
.prod-foot{display:flex;align-items:center;justify-content:space-between;}
.prod-price{font-family:var(--serif);font-size:1.05rem;font-weight:300;}
.btn-add{background:var(--ink);color:var(--white);border:none;padding:.42rem .88rem;font-family:var(--sans);font-size:.63rem;letter-spacing:.1em;text-transform:uppercase;font-weight:500;cursor:pointer;transition:background .2s;border-radius:2px;}
.btn-add:hover{background:var(--bark);}
.bundles-grid{display:grid;grid-template-columns:1fr 1fr;background:var(--surface);border-bottom:1px solid var(--rule);}
.bundle-cell{padding:1.7rem;border-right:1px solid var(--rule);border-bottom:1px solid var(--rule);cursor:pointer;transition:background .16s;}
.bundle-cell:nth-child(2n){border-right:none;}.bundle-cell:nth-child(n+3){border-bottom:none;}
.bundle-cell:hover{background:var(--white);}
.bundle-badge{font-size:.56rem;text-transform:uppercase;letter-spacing:.16em;font-weight:600;color:var(--slate);margin-bottom:.4rem;display:block;}
.bundle-cell h3{font-family:var(--serif);font-size:.95rem;font-weight:400;margin-bottom:.45rem;line-height:1.3;}
.bundle-cell p{font-size:.74rem;color:var(--ink3);font-weight:300;line-height:1.68;margin-bottom:.45rem;}
.bundle-inc{font-size:.66rem;color:var(--ink4);margin-bottom:.85rem;line-height:1.45;}
.bundle-row{display:flex;align-items:center;justify-content:space-between;}
.bundle-price{font-family:var(--serif);font-size:1.2rem;font-weight:300;}
.bundle-fmt{font-size:.58rem;text-transform:uppercase;letter-spacing:.1em;color:var(--ink4);}
.info-note{padding:1.3rem clamp(1rem,4vw,3rem);background:var(--surface);border-bottom:1px solid var(--rule);font-size:.76rem;color:var(--ink3);line-height:1.7;font-weight:300;}
.info-note strong{color:var(--ink);font-weight:600;}
.info-note a{color:var(--slate);font-weight:500;cursor:pointer;}

/* ── CLIENT PORTAL ── */
.portal-layout{display:grid;grid-template-columns:210px 1fr;min-height:calc(100vh - var(--nav-h));}
.portal-sidebar{border-right:1px solid var(--rule);padding:1.8rem 1rem;background:var(--surface);}
.portal-brand{font-family:var(--serif);font-size:.95rem;font-weight:500;margin-bottom:.22rem;}
.portal-sub{font-size:.62rem;color:var(--ink4);text-transform:uppercase;letter-spacing:.1em;margin-bottom:1.6rem;}
.portal-nav-item{display:flex;align-items:center;gap:.62rem;padding:.65rem .75rem;border-radius:4px;cursor:pointer;font-size:.8rem;color:var(--ink3);transition:all .14s;margin-bottom:.12rem;border:1px solid transparent;}
.portal-nav-item:hover{background:var(--white);border-color:var(--rule);}
.portal-nav-item.active{background:var(--white);color:var(--ink);border-color:var(--rule);}
.portal-nav-item svg{width:15px;height:15px;stroke:currentColor;fill:none;stroke-width:1.5;flex-shrink:0;}
.portal-main{padding:1.8rem;overflow-y:auto;}
.portal-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.7rem;flex-wrap:wrap;gap:.8rem;}
.portal-header h1{font-family:var(--serif);font-size:1.5rem;font-weight:400;}
.portal-section{display:none;}
.portal-section.active{display:block;}
/* Register/Login */
.auth-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.2rem;max-width:700px;}
.auth-card{border:1px solid var(--rule);padding:1.6rem;border-radius:4px;}
.auth-card h3{font-family:var(--serif);font-size:1.1rem;font-weight:400;margin-bottom:.3rem;}
.auth-card p{font-size:.76rem;color:var(--ink3);font-weight:300;margin-bottom:1.1rem;line-height:1.65;}
/* Preferences */
.pref-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:.8rem;margin-bottom:1.3rem;}
.pref-card{border:1.5px solid var(--rule);border-radius:5px;padding:1rem;cursor:pointer;transition:all .18s;}
.pref-card:hover{border-color:var(--moss);}
.pref-card.selected{border-color:var(--moss);background:var(--fern-l);}
.pref-card h4{font-size:.82rem;font-weight:600;margin-bottom:.2rem;}
.pref-card p{font-size:.72rem;color:var(--ink3);font-weight:300;}
/* Therapist cards */
.therapist-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:.9rem;}
.therapist-card{border:1px solid var(--rule);border-radius:5px;padding:1.1rem;cursor:pointer;transition:all .18s;}
.therapist-card:hover{box-shadow:0 4px 16px rgba(0,0,0,.07);}
.therapist-card.selected{border-color:var(--moss);background:var(--fern-l);}
.th-photo{width:54px;height:54px;border-radius:50%;background:var(--surface);border:1px dashed var(--rule);margin-bottom:.7rem;display:flex;align-items:center;justify-content:center;}
.th-photo svg{opacity:.28;width:20px;height:20px;stroke:var(--ink3);fill:none;stroke-width:1.5;}
.th-name{font-family:var(--serif);font-size:.9rem;font-weight:500;margin-bottom:.12rem;}
.th-role{font-size:.65rem;text-transform:uppercase;letter-spacing:.1em;color:var(--moss);font-weight:600;margin-bottom:.35rem;}
.th-avail{font-size:.7rem;color:var(--ink3);font-weight:300;}
.th-tags{display:flex;gap:.28rem;flex-wrap:wrap;margin-top:.45rem;}

/* Weekly calendar */
.week-cal-wrap{overflow-x:auto;}
.week-cal{display:grid;grid-template-columns:60px repeat(5,1fr);border:1px solid var(--rule);border-radius:4px;min-width:560px;}
.wc-hd{padding:.55rem .4rem;text-align:center;font-size:.65rem;letter-spacing:.1em;text-transform:uppercase;font-weight:600;color:var(--ink4);border-bottom:1px solid var(--rule);border-right:1px solid var(--rule);}
.wc-hd:last-child{border-right:none;}
.wc-time{font-size:.65rem;color:var(--ink4);padding:.3rem .4rem;border-bottom:1px solid var(--rule);border-right:1px solid var(--rule);text-align:right;display:flex;align-items:flex-start;padding-top:.35rem;}
.wc-slot{border-bottom:1px solid var(--rule);border-right:1px solid var(--rule);min-height:38px;cursor:pointer;transition:background .14s;position:relative;}
.wc-slot:last-child{border-right:none;}
.wc-slot.avail{background:var(--fern-l);}
.wc-slot.avail:hover{background:#b8d8be;}
.wc-slot.booked{background:var(--slate-l);cursor:default;}
.wc-slot.blocked{background:var(--surface);cursor:default;}
.wc-slot-label{font-size:.6rem;font-weight:600;padding:.18rem .3rem;line-height:1.2;}
.wc-slot.avail .wc-slot-label{color:var(--moss);}
.wc-slot.booked .wc-slot-label{color:var(--slate);}
.wc-row:last-child .wc-slot,.wc-row:last-child .wc-time{border-bottom:none;}
.cal-mode-toggle{display:flex;gap:.5rem;margin-bottom:1rem;}
.cal-toggle-btn{padding:.38rem .9rem;border:1px solid var(--rule);border-radius:2px;font-size:.7rem;font-weight:500;cursor:pointer;background:none;transition:all .15s;}
.cal-toggle-btn.active{background:var(--ink);color:var(--white);border-color:var(--ink);}
/* Month calendar */
.month-cal{display:grid;grid-template-columns:repeat(7,1fr);border-left:1px solid var(--rule);border-top:1px solid var(--rule);}
.mc-hd{font-size:.62rem;letter-spacing:.1em;text-transform:uppercase;font-weight:600;color:var(--ink4);text-align:center;padding:.4rem;border-right:1px solid var(--rule);border-bottom:1px solid var(--rule);}
.mc-day{border-right:1px solid var(--rule);border-bottom:1px solid var(--rule);padding:.35rem;min-height:52px;cursor:pointer;transition:background .14s;position:relative;}
.mc-day.avail{background:var(--fern-l);}
.mc-day.avail:hover{background:#b8d8be;}
.mc-day.taken{background:var(--surface);}
.mc-day.other-month{opacity:.35;}
.mc-day-n{font-size:.75rem;font-weight:600;margin-bottom:.15rem;}
.mc-avail-dot{width:5px;height:5px;border-radius:50%;background:var(--moss);display:inline-block;}

/* ── THERAPIST PORTAL ── */
.client-list{border:1px solid var(--rule);border-radius:3px;overflow:hidden;margin-bottom:1.4rem;}
.client-row{display:flex;align-items:center;justify-content:space-between;padding:.85rem 1.1rem;border-bottom:1px solid var(--rule);cursor:pointer;transition:background .14s;}
.client-row:last-child{border-bottom:none;}
.client-row:hover{background:var(--surface);}
.client-name{font-size:.85rem;font-weight:600;}
.client-meta{font-size:.7rem;color:var(--ink4);}
.client-badge{font-size:.6rem;background:var(--fern-l);color:var(--moss);padding:.13rem .48rem;border-radius:2px;font-weight:600;}
.note-area{border:1px solid var(--rule);border-radius:3px;padding:1.1rem;background:var(--white);}
.note-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:.75rem;flex-wrap:wrap;gap:.5rem;}
.note-header h3{font-family:var(--serif);font-size:.97rem;font-weight:500;}
.note-field{width:100%;border:1px solid var(--rule);border-radius:2px;padding:.65rem .85rem;font-family:var(--sans);font-size:.8rem;line-height:1.7;min-height:130px;resize:vertical;background:var(--surface);}
.note-field:focus{outline:none;border-color:var(--ink);}
.doc-list{display:flex;flex-direction:column;gap:0;border:1px solid var(--rule);border-radius:3px;overflow:hidden;}
.doc-item{border:1px solid var(--rule);border-bottom:none;padding:.75rem 1rem;display:flex;align-items:center;gap:.8rem;cursor:pointer;transition:background .14s;}
.doc-item:hover{background:var(--surface);}
.doc-list .doc-item{border:none;border-bottom:1px solid var(--rule);border-radius:0;}
.doc-list .doc-item:last-child{border-bottom:none;}
.doc-icon{width:30px;height:30px;background:var(--slate-l);border-radius:3px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.doc-icon svg{width:14px;height:14px;stroke:var(--slate);fill:none;stroke-width:1.5;}
.doc-name{font-size:.76rem;font-weight:600;}
.doc-date{font-size:.66rem;color:var(--ink4);}
/* Invoice */
.invoice-row{display:flex;align-items:center;justify-content:space-between;padding:.7rem .9rem;border:1px solid var(--rule);margin-bottom:-1px;font-size:.78rem;}
.invoice-row:hover{background:var(--surface);cursor:pointer;}
.invoice-status{font-size:.62rem;padding:.14rem .52rem;border-radius:2px;font-weight:600;}
.invoice-status.paid{background:var(--fern-l);color:var(--moss);}
.invoice-status.pending{background:var(--sand-l);color:var(--bark);}
/* Stats cards */
.stats-row{display:grid;grid-template-columns:repeat(4,1fr);gap:.9rem;margin-bottom:1.5rem;}
.stat-card{border:1px solid var(--rule);padding:1.2rem;border-radius:3px;}
.stat-card .num{font-family:var(--serif);font-size:2rem;font-weight:300;line-height:1;color:var(--ink);}
.stat-card .lbl{font-size:.68rem;color:var(--ink4);font-weight:300;margin-top:.2rem;}
/* Billing calculator */
.billing-row{display:grid;grid-template-columns:1fr 1fr 1fr auto;gap:.7rem;align-items:end;margin-bottom:.7rem;}
.billing-result{background:var(--fern-l);border:1px solid var(--fern);padding:.8rem 1rem;border-radius:3px;font-size:.82rem;color:var(--moss);margin-bottom:1rem;display:none;}
.billing-result.show{display:block;}

/* ── GAMES PAGE ── */
.games-banner{padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem);border-bottom:1px solid var(--rule);}
.games-banner h1{font-size:clamp(1.9rem,4vw,3.3rem);font-weight:300;}
.games-banner p{font-size:.86rem;color:var(--ink3);font-weight:300;max-width:480px;line-height:1.78;margin-top:.7rem;}
.games-grid{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid var(--rule);}
.game-panel{border-right:1px solid var(--rule);border-bottom:1px solid var(--rule);padding:2rem;}
.game-panel:nth-child(2n){border-right:none;}
.game-panel h2{font-family:var(--serif);font-size:1.3rem;font-weight:500;margin-bottom:.35rem;}
.game-panel .game-tag{font-size:.6rem;text-transform:uppercase;letter-spacing:.14em;font-weight:600;color:var(--moss);margin-bottom:.6rem;display:block;}
.game-panel .game-desc{font-size:.78rem;color:var(--ink3);font-weight:300;line-height:1.7;margin-bottom:1.2rem;}
.game-area{border:1px solid var(--rule);border-radius:4px;overflow:hidden;background:var(--surface);}
/* Breathing game */
.breath-game{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:2rem;min-height:260px;gap:1.2rem;}
.breath-circle{width:110px;height:110px;border-radius:50%;background:var(--fern-l);border:2px solid var(--fern);display:flex;align-items:center;justify-content:center;transition:all 4s ease-in-out;font-size:.75rem;font-weight:500;color:var(--moss);text-align:center;line-height:1.3;}
.breath-circle.expand{width:160px;height:160px;background:var(--slate-l);border-color:var(--slate);color:var(--slate);}
.breath-label{font-size:.78rem;color:var(--ink3);font-weight:300;text-align:center;}
.breath-counter{font-family:var(--serif);font-size:1.8rem;font-weight:300;color:var(--ink);}
.breath-controls{display:flex;gap:.6rem;}
/* Emotion match game */
.emotion-game{padding:1.4rem;min-height:260px;}
.emotion-game-header{display:flex;align-items:center;justify-content:space-between;margin-bottom:1rem;}
.emotion-score{font-family:var(--serif);font-size:1.2rem;font-weight:300;}
.emotion-prompt{text-align:center;font-size:.85rem;color:var(--ink3);margin-bottom:1rem;font-weight:300;}
.emotion-prompt strong{font-weight:600;color:var(--ink);}
.emotion-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem;}
.emotion-card{border:1.5px solid var(--rule);border-radius:6px;padding:.6rem .3rem;text-align:center;cursor:pointer;transition:all .18s;font-size:.72rem;font-weight:500;}
.emotion-card:hover{border-color:var(--moss);background:var(--fern-l);}
.emotion-card.correct{border-color:var(--moss);background:var(--fern-l);color:var(--moss);}
.emotion-card.wrong{border-color:var(--bark);background:var(--sand-l);color:var(--bark);}
.emotion-card .emoji{font-size:1.4rem;display:block;margin-bottom:.2rem;}
.emotion-feedback{text-align:center;font-size:.78rem;margin-top:.8rem;font-weight:500;min-height:1.2em;}
.emotion-feedback.good{color:var(--moss);}
.emotion-feedback.bad{color:var(--bark);}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .svc-grid,.therapist-grid,.stats-row{grid-template-columns:repeat(2,1fr);}
  .team-grid,.pay-grid{grid-template-columns:repeat(2,1fr);}
  .p-grid,.session-bundles{grid-template-columns:1fr 1fr;}
  .footer-grid{grid-template-columns:1.2fr 1fr;}
  .footer-left,.footer-right{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){
  .games-grid{grid-template-columns:1fr;}
  .hero,.about-strip,.page-banner,.ab-hero,.hist-banner,.careers-banner,.join-hero,.shop-banner,.games-grid{grid-template-columns:1fr;}
  .hero-art,.page-banner-img,.ab-img{display:none;}
  .hero-copy,.ab-copy,.join-copy,.page-banner-copy{border-right:none;}
  .hero-chips,.svc-grid,.t-grid,.values-grid,.perks-grid,.products-grid,.funding-strip,.session-bundles,.p-grid,.auth-grid,.billing-row{grid-template-columns:1fr;}
  .svc-card:nth-child(4n){border-right:1px solid var(--rule);}
  .svc-card:nth-child(2n){border-right:none;}
  .t-card,.val-cell,.pk-cell,.fn-cell{border-right:none;}
  .portal-layout{grid-template-columns:1fr;padding-bottom:64px;}
  .portal-sidebar{display:none;}
  .portal-mobile-nav{display:flex !important;}
  .pref-grid{grid-template-columns:1fr;}
  .therapist-grid{grid-template-columns:1fr 1fr;}
  .footer-left,.footer-right{grid-template-columns:1fr;}
  .bundles-grid{grid-template-columns:1fr;}
  .bundle-cell:nth-child(2n){border-right:none;}
  .callout{flex-direction:column;align-items:flex-start;}
  .hist-banner,.careers-banner{grid-template-columns:1fr;}
  .pay-grid{grid-template-columns:1fr;}
  .emotion-cards{grid-template-columns:repeat(2,1fr);}
  .game-panel{border-right:none;border-bottom:1px solid var(--rule);}
}
@media(max-width:480px){
  .games-grid{grid-template-columns:1fr !important;}
  .nav-wordmark{font-size:.95rem;}
  .logo-slot{width:38px;height:38px;}
  .hero-copy h1{font-size:2.3rem;}
  .therapist-grid{grid-template-columns:1fr;}
}
@keyframes fadeUp{from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:translateY(0);}}
.hero-copy{animation:fadeUp .6s ease both;}

/* ── FUNDING PILLS ── */
.funding-pill{font-size:.65rem;font-weight:600;padding:.18rem .6rem;border-radius:3px;white-space:nowrap;}
.funding-pill.green{background:var(--fern-l);color:var(--moss);}
.funding-pill.amber{background:var(--sand-l);color:var(--bark);}
.funding-pill.red{background:#fde8e8;color:#b91c1c;}
.funding-bar{height:6px;border-radius:3px;background:var(--rule);overflow:hidden;min-width:60px;}
.client-row-hover:hover{background:var(--surface);}
/* Portal back btn */
.portal-back{display:inline-flex;align-items:center;gap:.4rem;font-size:.72rem;color:var(--ink4);cursor:pointer;margin-bottom:.6rem;border:1px solid var(--rule);border-radius:3px;padding:.32rem .75rem;background:none;transition:all .15s;}
.portal-back:hover{background:var(--surface);color:var(--ink);}


/* ── SENSORY GAME ── */
.sensory-opt{padding:.55rem .4rem;border:1.5px solid var(--rule);border-radius:4px;font-family:var(--sans);font-size:.72rem;font-weight:500;cursor:pointer;transition:all .17s;background:var(--white);color:var(--ink);}
.sensory-opt:hover{border-color:var(--moss);background:var(--fern-l);color:var(--moss);}
.sensory-opt.selected{border-color:var(--moss);background:var(--moss);color:white;}
/* Games grid 2-col wrapping */
.games-grid{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid var(--rule);}

/* ── LOGO ── */
.nav-logo-area .logo-slot{background:none;border:none;}
.nav-logo-area .logo-slot img{width:100%;height:100%;object-fit:contain;border-radius:0;}
.footer-brand .logo-img{height:32px;width:auto;display:block;margin-bottom:.5rem;}
.portal-brand-row{display:flex;align-items:center;gap:.5rem;margin-bottom:.22rem;}
.portal-brand-row img{height:20px;width:auto;}

/* ── EDITABLE PHOTOS ── */
.media{position:relative;overflow:hidden;}
.media img{width:100%;height:100%;object-fit:cover;display:block;}
.svc-photo .media,.svc-photo img{height:100%;}
.tm-ph .media{height:100%;}
.t-av .media{width:38px;height:38px;border-radius:50%;}
.hero-art .media{height:100%;min-height:420px;}
.ab-vis .media{height:200px;}
.page-banner-img .media{height:100%;min-height:250px;}
.ab-img .media{height:100%;min-height:380px;}
.prod-img .media{height:100%;}

/* ── FUNDING BADGES (cleaned, no emoji) ── */
.fn-badge::before{content:'';display:inline-block;width:6px;height:6px;border-radius:50%;margin-right:.4rem;vertical-align:middle;}
.fn-badge.ms::before{background:var(--moss);}
.fn-badge.sl::before{background:var(--slate);}
.fn-badge.sd::before{background:var(--bark);}
.funding-pill{display:inline-flex;align-items:center;gap:.35rem;}
.funding-pill::before{content:'';display:inline-block;width:7px;height:7px;border-radius:50%;flex-shrink:0;}
.funding-pill.green::before{background:var(--moss);}
.funding-pill.amber::before{background:#b45309;}
.funding-pill.red::before{background:#b91c1c;}

/* ── BANK TRANSFER DETAILS ── */
.bank-details{border:1px solid var(--rule);border-radius:3px;padding:1rem 1.2rem;background:var(--surface);margin-top:.9rem;}
.bank-details h4{font-size:.65rem;letter-spacing:.14em;text-transform:uppercase;font-weight:600;color:var(--ink4);margin-bottom:.6rem;}
.bank-row{display:flex;justify-content:space-between;font-size:.8rem;padding:.3rem 0;border-bottom:1px solid var(--rule);}
.bank-row:last-child{border-bottom:none;}
.bank-row span:first-child{color:var(--ink3);font-weight:300;}
.bank-row span:last-child{font-weight:600;font-family:var(--serif);letter-spacing:.03em;}

/* ── PORTAL LOGIN ── */
.auth-error{display:none;background:#fde8e8;border:1px solid #f3c8c8;color:#b91c1c;font-size:.76rem;padding:.6rem .85rem;border-radius:3px;margin-bottom:.8rem;}
.auth-error.show{display:block;}
.auth-demo-note{font-size:.66rem;color:var(--ink4);background:var(--surface);border:1px solid var(--rule);border-radius:3px;padding:.55rem .7rem;margin-bottom:.9rem;line-height:1.55;}
.logged-in-bar{display:none;align-items:center;justify-content:space-between;gap:.6rem;flex-wrap:wrap;background:var(--fern-l);border:1px solid var(--fern);border-radius:3px;padding:.6rem .9rem;margin-bottom:1.2rem;font-size:.8rem;color:var(--moss);}
.logged-in-bar.show{display:flex;}

/* ── FOOTER CONTACT ICONS ── */
.footer-contact-item{display:flex;align-items:center;gap:.55rem;font-size:.78rem;color:rgba(255,255,255,.48);font-weight:300;margin-bottom:.55rem;transition:color .18s;}
.footer-contact-item:hover{color:var(--white);}
.footer-contact-item a{color:inherit;text-decoration:none;transition:color .18s;}
.footer-contact-item svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.6;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0;opacity:.7;}

/* ── STATS ROW ── */
.stats-section{background:var(--ink);color:var(--white);border-bottom:1px solid rgba(255,255,255,.06);}
.stats-inner{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(255,255,255,.07);}
.stat-cell{padding:2.2rem 2rem;border-right:1px solid rgba(255,255,255,.07);text-align:left;}
.stat-cell:last-child{border-right:none;}
.stat-num{font-family:var(--serif);font-size:clamp(2.5rem,4.5vw,4rem);font-weight:300;line-height:1;color:var(--white);}
.stat-num sup{font-size:45%;vertical-align:super;margin-left:.05em;font-family:var(--serif);}
.stat-label{font-size:.7rem;color:rgba(255,255,255,.4);font-weight:300;margin-top:.45rem;letter-spacing:.04em;line-height:1.5;max-width:140px;}
.stat-line{width:20px;height:1.5px;background:var(--moss);margin-bottom:.65rem;}

/* ── ALTERNATING PRICING ROWS ── */
.p-grid-alt{border-bottom:1px solid var(--rule);}
.p-row{display:grid;grid-template-columns:1fr 2fr;border-bottom:1px solid var(--rule);}
.p-row:last-child{border-bottom:none;}
.p-row:nth-child(even){background:var(--surface);}
.p-row-disc{padding:1.4rem 2rem 1.4rem clamp(1rem,4vw,3rem);border-right:1px solid var(--rule);display:flex;flex-direction:column;justify-content:center;}
.p-row-disc .p-disc{font-size:.6rem;letter-spacing:.18em;text-transform:uppercase;font-weight:600;color:var(--moss);margin-bottom:.45rem;}
.p-row-disc h3{font-family:var(--serif);font-size:clamp(1rem,2vw,1.4rem);font-weight:400;margin-bottom:.55rem;line-height:1.2;}
.p-row-disc .p-price{font-family:var(--serif);font-size:clamp(1.6rem,3vw,2.4rem);font-weight:300;line-height:1;}
.p-row-disc .p-unit{font-size:.67rem;color:var(--ink4);font-weight:300;margin-top:.2rem;margin-bottom:.9rem;}
.p-row-body{padding:1.4rem clamp(1rem,4vw,3rem);}
.p-row-body p{font-size:.82rem;color:var(--ink3);font-weight:300;line-height:1.82;margin-bottom:.9rem;max-width:540px;}
.p-row-body ul{list-style:none;}
.p-row-body ul li{font-size:.76rem;color:var(--ink2);font-weight:300;padding:.28rem 0;display:flex;gap:.5rem;align-items:flex-start;line-height:1.45;border-bottom:1px solid var(--rule);}
.p-row-body ul li:last-child{border-bottom:none;}
.p-row-body ul li::before{content:'→';color:var(--moss);font-size:.6rem;flex-shrink:0;margin-top:.15rem;}

/* ── SHOP FILTER BAR ── */
.shop-filter-bar{display:flex;align-items:center;gap:.6rem;padding:.7rem clamp(1rem,4vw,3rem);border-bottom:1px solid var(--rule);flex-wrap:wrap;background:var(--white);}
.shop-filter-btn{padding:.38rem .9rem;border:1.5px solid var(--rule);border-radius:2px;font-family:var(--sans);font-size:.68rem;font-weight:500;letter-spacing:.06em;text-transform:uppercase;background:var(--white);color:var(--ink3);cursor:pointer;transition:all .18s;}
.shop-filter-btn:hover,.shop-filter-btn.active{background:var(--ink);border-color:var(--ink);color:var(--white);}

/* ── TESTIMONIALS + STATS ── */
.testimonials-section{padding:clamp(1.5rem,3vw,2.5rem) clamp(1rem,4vw,3rem);}
.testimonials-section h2{font-size:clamp(1.4rem,2.8vw,2.1rem);margin-bottom:.3rem;}
.testimonials-section .eyebrow{margin-bottom:.6rem;}

/* ── SCROLL OFFSET for anchor links ── */
.section-anchor{display:block;position:relative;top:calc(-1 * var(--nav-h) - 12px);}

/* ── RESPONSIVE STATS ── */
@media(max-width:768px){
  .games-grid{grid-template-columns:1fr;}.stats-inner{grid-template-columns:1fr 1fr;}.stat-cell{border-bottom:1px solid rgba(255,255,255,.07);}}
@media(max-width:480px){
  .games-grid{grid-template-columns:1fr !important;}.stats-inner{grid-template-columns:1fr;}.p-row{grid-template-columns:1fr;}.p-row-disc{border-right:none;border-bottom:1px solid var(--rule);}}

/* ── PAGE HEADING SCROLL OFFSET (prevents nav covering headings) ── */
.page > section:first-of-type,
.hist-banner, .ab-hero, .page-banner, .join-hero,
.careers-banner, .shop-banner, .portal-layout,
.games-grid { scroll-margin-top: var(--nav-h); }
.section-anchor { display: block; height: 0; margin-top: calc(-1 * var(--nav-h) - 8px); padding-top: calc(var(--nav-h) + 8px); }

/* ── FOOTER BRAND ROW (logo beside wordmark) ── */
.footer-brand-row{display:flex;align-items:center;gap:.55rem;margin-bottom:.2rem;}
.footer-brand-row .logo-img{height:26px;width:auto;flex-shrink:0;}
.footer-brand-row .logo{margin-bottom:0;}

/* ── SHOP PRODUCT HOVER ── */
.prod-card{position:relative;overflow:hidden;}
.prod-img-wrap{position:relative;overflow:hidden;aspect-ratio:1;}
.prod-img-wrap img{width:100%;height:100%;object-fit:cover;display:block;transition:opacity .35s ease;}
.prod-img-alt{position:absolute;inset:0;opacity:0;transition:opacity .35s ease;}
.prod-img-alt img{width:100%;height:100%;object-fit:cover;display:block;}
.prod-card:hover .prod-img-wrap > img:first-child{opacity:0;}
.prod-card:hover .prod-img-alt{opacity:1;}

/* ── PORTAL PAGE: scroll-margin-top for first visible section ── */
.portal-layout{scroll-margin-top:0;}
.ps-auth-wrap,.ts-auth-wrap{padding-top:1.5rem;}

/* ── REMOVE DEMO NOTE ── */
.auth-demo-note{display:none !important;}

/* ── SERVICES ALTERNATING ROW ACCENT ── */
.p-row:nth-child(1) .p-row-disc{border-left:3px solid var(--moss);}
.p-row:nth-child(2) .p-row-disc{border-left:3px solid var(--slate);}
.p-row:nth-child(3) .p-row-disc{border-left:3px solid var(--bark);}
.p-row:nth-child(4) .p-row-disc{border-left:3px solid var(--fern);}
.p-row:nth-child(5) .p-row-disc{border-left:3px solid var(--moss);}
.p-row:nth-child(6) .p-row-disc{border-left:3px solid var(--slate);}
.p-row:nth-child(7) .p-row-disc{border-left:3px solid var(--bark);}

/* ── SERVICES: OT row NOT black ── */
.p-row:nth-child(2) .p-row-disc{background:var(--surface) !important;color:var(--ink) !important;}
.p-row:nth-child(2) .p-row-disc h3{color:var(--ink) !important;}
.p-row:nth-child(2) .p-row-disc .p-price{color:var(--ink) !important;}
.p-row:nth-child(2) .p-row-disc .p-unit{color:var(--ink4) !important;}

/* ── PORTAL FIRST SECTION top padding ── */
.portal-section.active{padding-top:0;}
.portal-layout .portal-content{padding-top:.5rem;}

/* ── PORTAL MOBILE NAV BAR ── */
.portal-mobile-nav{display:none;position:fixed;bottom:0;left:0;right:0;z-index:800;background:var(--white);border-top:1px solid var(--rule);height:60px;align-items:stretch;}
.pmn-item{flex:1;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.18rem;cursor:pointer;font-size:.52rem;font-weight:500;color:var(--ink4);letter-spacing:.04em;text-transform:uppercase;padding:.3rem .1rem;transition:color .14s;border:none;background:none;}
.pmn-item svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:1.5;}
.pmn-item.active,.pmn-item:hover{color:var(--moss);}

/* ── SERVICE ROW HOVER IMAGE ── */
.p-row{position:relative;overflow:hidden;transition:box-shadow .25s;}
.p-row-bg{position:absolute;inset:0;z-index:0;opacity:0;transition:opacity .35s ease;pointer-events:none;}
.p-row-bg img{width:100%;height:100%;object-fit:cover;display:block;}
.p-row-bg::after{content:'';position:absolute;inset:0;background:rgba(17,17,16,.72);}
.p-row:hover .p-row-bg{opacity:1;}
.p-row:hover .p-row-disc,.p-row:hover .p-row-body{position:relative;z-index:1;color:white;}
.p-row:hover .p-row-disc h3,.p-row:hover .p-row-disc .p-disc,.p-row:hover .p-row-disc .p-price{color:white !important;}
.p-row:hover .p-row-disc .p-unit{color:rgba(255,255,255,.55) !important;}
.p-row:hover .p-row-body p,.p-row:hover .p-row-body ul li{color:rgba(255,255,255,.8);}
.p-row:hover .p-row-body ul li::before{color:var(--fern);}
.p-row:hover .p-row-disc{background:transparent !important;border-left-color:var(--fern) !important;}
.p-row:hover .p-row-body{background:transparent !important;}

/* ── SESSION BUNDLE HOVER IMAGE ── */
.sb-card{position:relative;overflow:hidden;}
.sb-bg{position:absolute;inset:0;z-index:0;opacity:0;transition:opacity .35s ease;pointer-events:none;}
.sb-bg img{width:100%;height:100%;object-fit:cover;display:block;}
.sb-bg::after{content:'';position:absolute;inset:0;background:rgba(17,17,16,.78);}
.sb-card:hover .sb-bg{opacity:1;}
.sb-card:hover > *:not(.sb-bg){position:relative;z-index:1;color:white;}
.sb-card:hover .sb-sessions,.sb-card:hover .sb-label,.sb-card:hover .sb-price,.sb-card:hover .sb-per,.sb-card:hover .sb-save,.sb-card:hover h4{color:white !important;}
.sb-card:hover .sb-sessions{font-size:inherit;opacity:1;position:static;}
.sb-card:hover p,.sb-card:hover li{color:rgba(255,255,255,.75) !important;}

/* ── SHOP HEADER LAYOUT (fill white space on desktop) ── */
.shop-top-row{display:grid;grid-template-columns:1fr 1fr;gap:0;border-bottom:1px solid var(--rule);}
.shop-intro-block{padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem);}
.shop-intro-block h1{font-family:var(--serif);font-size:clamp(2rem,4vw,3.2rem);font-weight:300;line-height:1.15;margin-bottom:.9rem;}
.shop-stats-block{background:var(--ink);color:white;padding:clamp(2rem,4vw,3.5rem) clamp(1rem,4vw,3rem);display:flex;flex-direction:column;justify-content:space-between;}
.shop-stats-block .eyebrow{color:var(--fern);}
.shop-stat-row{display:flex;gap:2rem;margin-top:auto;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.1);}
.shop-stat-item .n{font-family:var(--serif);font-size:2.4rem;font-weight:300;color:white;line-height:1;}
.shop-stat-item .l{font-size:.65rem;color:rgba(255,255,255,.45);margin-top:.2rem;line-height:1.4;}
@media(max-width:768px){
  .shop-top-row{grid-template-columns:1fr;}
  .shop-stats-block{display:none;}
}

/* ── OUR STORY VISUAL PATTERN ── */
.story-pattern-divider{position:relative;height:80px;overflow:hidden;margin:0;}
.story-pattern-divider svg{width:100%;height:100%;}
.tl-item{position:relative;}


/* ── CAREERS VISUAL ACCENT ── */
.careers-banner{position:relative;overflow:hidden;}
.careers-banner::before{content:'';position:absolute;inset:0;background:radial-gradient(ellipse at 70% 50%, rgba(93,138,106,.18) 0%, transparent 70%);pointer-events:none;z-index:0;}
.careers-banner > *{position:relative;z-index:1;}
.pk-cell{position:relative;overflow:hidden;transition:background .2s;}
.pk-cell::before{content:attr(data-n);position:absolute;bottom:-.5rem;right:.5rem;font-family:var(--serif);font-size:5rem;font-weight:300;color:var(--rule);line-height:1;pointer-events:none;opacity:.5;}
.pk-cell:hover{background:var(--fern-l);}

/* ── ABOUT HERO IMAGE FALLBACK ── */
.ab-img{background:var(--surface);}
.ab-img .media img{object-position:center top;}

/* ── SERVICE ROW HOVER: enquire button white ── */
.p-row:hover .btn-gh{background:white;color:var(--ink);border-color:white;}
.p-row:hover .btn-gh:hover{background:rgba(255,255,255,.85);}

/* ── SESSION BUNDLES ON SERVICES PAGE: hover bg images ── */
.sb-card{position:relative;overflow:hidden;cursor:pointer;transition:box-shadow .25s;}
.sb-bg{position:absolute;inset:0;z-index:0;opacity:0;transition:opacity .4s ease;pointer-events:none;}
.sb-bg img{width:100%;height:100%;object-fit:cover;display:block;}
.sb-bg::after{content:"";position:absolute;inset:0;background:rgba(17,17,16,.78);}
.sb-card:hover .sb-bg{opacity:1;}
.sb-card:hover > *:not(.sb-bg){position:relative;z-index:1;}
.sb-card:hover .sb-sessions,.sb-card:hover .sb-label,.sb-card:hover h3,
.sb-card:hover .sb-price,.sb-card:hover .sb-per,.sb-card:hover .sb-save,
.sb-card:hover h4{color:white !important;}
.sb-card:hover p,.sb-card:hover li{color:rgba(255,255,255,.78) !important;}
.sb-card:hover .btn-gh,.sb-card:hover .btn-dk,.sb-card:hover .btn-ms{
  background:white;color:var(--ink);border-color:white;
}

/* ── SHOP INTRO: clean single-column header ── */
.shop-hero{padding:clamp(2.5rem,5vw,4rem) clamp(1rem,4vw,3rem);border-bottom:1px solid var(--rule);}
.shop-hero h1{font-family:var(--serif);font-size:clamp(2.2rem,5vw,3.8rem);font-weight:300;line-height:1.1;margin-bottom:.8rem;}
.shop-hero p{font-size:.87rem;color:var(--ink3);font-weight:300;line-height:1.8;max-width:560px;}
.shop-hero-inner{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;flex-wrap:wrap;}
.shop-hero-meta{display:flex;gap:2rem;flex-shrink:0;}
.shop-hero-stat .n{font-family:var(--serif);font-size:2rem;font-weight:300;line-height:1;color:var(--ink);}
.shop-hero-stat .l{font-size:.6rem;color:var(--ink4);margin-top:.18rem;line-height:1.4;max-width:90px;}
@media(max-width:600px){.shop-hero-meta{display:none;}}

/* ── BUNDLE CELL HOVER (shop page) ── */
.bundle-cell{position:relative;overflow:hidden;cursor:pointer;transition:box-shadow .25s;}
.bundle-bg{position:absolute;inset:0;z-index:0;opacity:0;transition:opacity .4s ease;pointer-events:none;}
.bundle-bg img{width:100%;height:100%;object-fit:cover;display:block;}
.bundle-bg::after{content:"";position:absolute;inset:0;background:rgba(17,17,16,.8);}
.bundle-cell:hover .bundle-bg{opacity:1;}
.bundle-cell:hover > *:not(.bundle-bg){position:relative;z-index:1;}
.bundle-cell:hover h3,.bundle-cell:hover .bundle-badge,
.bundle-cell:hover .bundle-price,.bundle-cell:hover .bundle-fmt{color:white !important;}
.bundle-cell:hover p,.bundle-cell:hover .bundle-inc{color:rgba(255,255,255,.75) !important;}
.bundle-cell:hover .btn-add{background:white;color:var(--ink);border-color:white;}

/* ── ABOUT: fix team cards spacing ── */
.tm-card{text-align:center;padding:1.2rem;}

/* ── sb-bg alias for bundle-cells (shop page uses sb-bg inside bundle-cell) ── */
.bundle-cell:hover .sb-bg{opacity:1;}
.bundle-cell .sb-bg{position:absolute;inset:0;z-index:0;opacity:0;transition:opacity .4s ease;pointer-events:none;}
.bundle-cell .sb-bg img{width:100%;height:100%;object-fit:cover;display:block;}
.bundle-cell .sb-bg::after{content:"";position:absolute;inset:0;background:rgba(17,17,16,.8);}
.bundle-cell:hover > *:not(.sb-bg){position:relative;z-index:1;}
.bundle-cell:hover h3,.bundle-cell:hover .bundle-badge,
.bundle-cell:hover .bundle-price,.bundle-cell:hover .bundle-fmt{color:white !important;}
.bundle-cell:hover p,.bundle-cell:hover .bundle-inc{color:rgba(255,255,255,.75) !important;}
.bundle-cell:hover .btn-add{background:white;color:var(--ink);}

/* ── tl-item: remove pseudo-element duplicate line ── */
.tl-item::before{display:none;}

/* ── STATS HEADER TIGHT ── */
.stats-header{padding:1.4rem clamp(1rem,4vw,3rem) .8rem;}

/* ── TESTIMONIALS TIGHT ── */
.testimonials-section{padding:1.4rem clamp(1rem,4vw,3rem) 1rem !important;}
.t-grid{border-top:1px solid var(--rule);border-bottom:1px solid var(--rule);}
.t-card{padding:1.4rem 1.3rem !important;}

/* ── FOOTER CONDENSED ── */
.site-footer{padding:1.5rem clamp(1rem,4vw,3rem) 1rem !important;}
.footer-grid{gap:1.2rem !important;padding-bottom:1rem !important;margin-bottom:1rem !important;}
.footer-brand .tagline{margin-top:.4rem !important;}
.footer-col h4{margin-bottom:.5rem !important;}
.footer-col a,.footer-col p{margin-bottom:.35rem !important;}

/* ── NAV DROPDOWN: narrower ── */
.nav-dd{width:min(220px,92vw) !important;}

/* ── HERO BADGE: remove — just subtle bottom caption ── */
.hero-art-badge{display:none;}

/* ── SERVICE CARD HOVER: subtle underline only, no background shift ── */
.svc-card:hover{background:transparent;}
.svc-card{position:relative;}
.svc-card::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--moss);transition:width .22s ease;}
.svc-card:hover::after{width:100%;}
.svc-card:hover .svc-arrow{color:var(--moss);}
.svc-card:hover .svc-disc{color:var(--moss);}

/* ── BUNDLE CELL HOVER: gentle border glow only (no image scale/shift) ── */
.bundle-cell{transition:box-shadow .22s,border-color .22s;}
.bundle-cell:hover{box-shadow:0 0 0 1.5px var(--moss) inset;}

/* ── SB-CARD HOVER: gentle border, no full image takeover on services page ── */
.sb-card{transition:box-shadow .22s;}
.sb-card:hover{box-shadow:0 0 0 2px var(--moss) inset;background:inherit;}

/* ── P-ROW HOVER: keep image reveal (it's the services detailed rows) ── */

/* ── SHOP: remove "Why Shop" section ── */
.shop-stats-block{display:none !important;}

/* ── SHOP HERO: clean ── */
.shop-hero{padding:1.8rem clamp(1rem,4vw,3rem) 1.4rem;border-bottom:1px solid var(--rule);}
.shop-hero h1{font-family:var(--serif);font-size:clamp(1.8rem,3.5vw,2.8rem);font-weight:300;line-height:1.15;margin-bottom:.6rem;}
.shop-hero p{font-size:.82rem;color:var(--ink3);font-weight:300;line-height:1.75;max-width:520px;}
.shop-hero-inner{display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;}
.shop-hero-meta{display:flex;gap:1.5rem;flex-shrink:0;}
.shop-hero-stat .n{font-family:var(--serif);font-size:1.6rem;font-weight:300;line-height:1;color:var(--ink);}
.shop-hero-stat .l{font-size:.58rem;color:var(--ink4);margin-top:.15rem;line-height:1.4;max-width:80px;}

/* ── HERO ART: fade right edge into page white (desktop) ── */
.hero-art{position:relative;}
.hero-art::after{content:'';position:absolute;inset:0;background:linear-gradient(to right,transparent 60%,var(--white) 100%);pointer-events:none;z-index:1;}

/* ── HERO MOBILE: image on top, chips on left side, image fades to right ── */
@media(max-width:768px){
  .hero{grid-template-columns:1fr;min-height:auto;}
  .hero-art{order:-1;position:relative;height:260px;display:block !important;}
  .hero-art .media{height:100%;}
  /* Mobile: image fades to the right so left text area is clear */
  .hero-art::after{background:linear-gradient(to right,rgba(255,255,255,0) 30%,var(--white) 88%);}
  /* Chips sit on the LEFT side of the image */
  .hero-chips{position:absolute;left:0;top:50%;transform:translateY(-50%);z-index:2;background:transparent;border-top:none !important;grid-template-columns:1fr;width:auto;margin:0;}
  .hero-chip{background:rgba(255,255,255,.88);backdrop-filter:blur(6px);border-right:none;border-bottom:1px solid rgba(0,0,0,.07);padding:.55rem .75rem;min-width:130px;}
  .hero-chip .num{font-size:1.1rem;}
  .hero-chip .lbl{font-size:.58rem;}
  .hero-copy{border-right:none;padding:1.4rem 1rem 1.8rem;}
}

/* ── JUSTIFY TEXT globally ── */
.hero-lead,.ab-text p,.svc-card p,.t-card p,.callout p,
.shop-hero p,.bundle-cell p,.bundle-cell h3,
.p-row-body p,.sb-card p,.tl-body p,.section-sm p,
.hist-banner p,.page-banner-copy p,.pk-body,.ab-copy p,
.careers-banner p,.join-copy p{text-align:justify;}

/* ── Remove forced line breaks in headings (h1 br) ── */
.shop-hero h1 br,.page-banner h1 br,.hist-banner h1 br{display:none;}

/* ── SVC-CARD: hover darkens only, no nav on card body click ── */
.svc-card{cursor:default;}
.svc-card .svc-arrow{cursor:pointer;}
.svc-card:hover .svc-photo::after{content:'';position:absolute;inset:0;background:rgba(17,17,16,.25);pointer-events:none;z-index:1;}
.svc-photo{position:relative;}

/* ── CALLOUT: reduce padding ── */
.callout{padding:1.8rem clamp(1rem,4vw,3rem) !important;}

/* ── SESSION BUNDLES on services page: fixed height, no expand ── */
.session-bundles{display:grid;grid-template-columns:repeat(3,1fr);background:var(--surface);border-bottom:1px solid var(--rule);}
.sb-card{height:100%;box-sizing:border-box;}


/* ── PAY-GRID: always 3 col on desktop ── */
.pay-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem;}

/* ── SHOP BUNDLE-CELL as prod-card style (image-first) ── */
.bundle-img-wrap{position:relative;overflow:hidden;aspect-ratio:4/3;width:100%;background:var(--surface);}
.bundle-img-wrap img{width:100%;height:100%;object-fit:cover;display:block;transition:opacity .35s ease;}
.bundle-img-alt{position:absolute;inset:0;opacity:0;transition:opacity .35s ease;}
.bundle-img-alt img{width:100%;height:100%;object-fit:cover;display:block;}
.bundle-cell:hover .bundle-img-wrap > img:first-child{opacity:0;}
.bundle-cell:hover .bundle-img-alt{opacity:1;}
.bundle-cell{padding:0 !important;display:flex;flex-direction:column;}
.bundle-cell-body{padding:1.2rem 1.4rem;flex:1;display:flex;flex-direction:column;}
.bundle-cell:hover{background:var(--white);}

/* ── SHOP BUNDLE-CELL hover: remove old sb-bg approach ── */
.bundle-cell .sb-bg{display:none;}
.bundle-cell:hover .sb-bg{display:none;}

/* ════ V9 PATCHES ════ */

/* 1. Hero: reduce height so image crops tighter (less dead space) */
.hero{min-height:min(58vh,520px);}
.hero-art .media{height:100%;min-height:340px;}

/* 2. Hero → about-strip: fade white over the image transition */
.hero{position:relative;}
.hero::after{content:'';position:absolute;bottom:0;left:0;right:0;height:60px;background:linear-gradient(to bottom,transparent,var(--white));pointer-events:none;z-index:2;}

/* 3. hero-lead: remove max-width so text fills column width (justify) */
.hero-lead{max-width:none;}

/* 4. page-banner: consistent top spacing, body already offsets by nav-h */
.page-banner{padding-top:0;}
.page-banner-copy{padding-top:clamp(2rem,4vw,3.5rem);}

/* 5. Callout: tighter vertical padding */
.callout{padding:1.4rem clamp(1rem,4vw,3rem) !important;}

/* 6. svc-card hover: darken image overlay on hover; navigate only via Learn more */
.svc-card{cursor:default;}
.svc-card .svc-arrow{cursor:pointer;display:inline-block;}
.svc-photo{position:relative;overflow:hidden;}
.svc-photo::after{content:'';position:absolute;inset:0;background:rgba(17,17,16,0);transition:background .22s ease;pointer-events:none;z-index:1;}
.svc-card:hover .svc-photo::after{background:rgba(17,17,16,.28);}

/* 7. Session bundles on services page: 3-col, fixed height, no expand */
.session-bundles{grid-template-columns:repeat(3,1fr) !important;align-items:stretch;}
.sb-card{height:100%;box-sizing:border-box;overflow:visible;}

/* 8. pay-grid: always 3 col on desktop */
.pay-grid{grid-template-columns:repeat(3,1fr) !important;}

/* 9. Shop hero heading: no forced line break */
.shop-hero h1 br{display:none;}

/* 10. About page: remove duplicate Our Story section header */
section.our-story-dup{display:none;}

/* 11. Bundle cells on shop page: fixed image on top (no background on hover expanding) */
.bundle-cell:hover{background:var(--white) !important;box-shadow:0 4px 18px rgba(0,0,0,.07) !important;}

/* 12. Mobile: ensure hero-chips move right with image faded left */
@media(max-width:768px){
  .session-bundles{grid-template-columns:1fr !important;}
  .pay-grid{grid-template-columns:1fr !important;}
  .funding-strip{grid-template-columns:1fr !important;}
}

/* ── V9: Bundle cell body to match prod-info style ── */
.bundle-cell-body{padding:1.1rem 1.3rem !important;}
.bundle-cell h3{font-family:var(--serif);font-size:.92rem;font-weight:400;margin-bottom:.32rem;line-height:1.3;}
.bundle-cell .bundle-row{margin-top:auto;padding-top:.6rem;}

/* ── V9: Remove expanded svc-card borders at new breakpoints ── */
@media(min-width:769px) and (max-width:1024px){
  .svc-grid{grid-template-columns:repeat(2,1fr);}
  .svc-card:nth-child(4n){border-right:1px solid var(--rule);}
  .svc-card:nth-child(2n){border-right:none;}
}

/* ── V9: Session bundles 3-col static height cards (services page) ── */
.sb-card{min-height:420px;}
