@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&display=swap');

:root{
  --brand:#3c6ac0;
  --brand-700:#234f9c;
  --navy:#102846;
  --navy-2:#17375f;
  --ink:#152131;
  --muted:#657384;
  --paper:#fbfaf7;
  --bluewash:#edf4ff;
  --bluewash-2:#dfeafc;
  --steel:#e9eef4;
  --white:#fff;
  --gold:#b9934b;
  --salon:#1c1414;
  --salon-2:#2b1e1d;
  --salmon:#c97863;
  --cream:#f7efe4;
  --line:rgba(16,40,70,.12);
  --soft-shadow:0 16px 38px rgba(16,40,70,.10);
  --hard-shadow:12px 14px 0 rgba(60,106,192,.12);
  --sans:'DM Sans',system-ui,sans-serif;
  --serif:'Fraunces',Georgia,serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--paper);color:var(--ink);font-family:var(--sans);line-height:1.55;-webkit-font-smoothing:antialiased}
body.menu-lock{overflow:hidden}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,select,textarea{font:inherit}
.container{width:min(1200px,calc(100% - 40px));margin-inline:auto}

.utility{background:var(--navy);color:#dbe7f6;font-size:.78rem}
.utility .container{display:flex;justify-content:space-between;gap:18px;padding:8px 0;flex-wrap:wrap}

.site-header{position:sticky;top:0;z-index:50;background:rgba(251,250,247,.92);backdrop-filter:blur(14px);border-bottom:1px solid rgba(16,40,70,.07)}
.site-header.salon-header{background:rgba(28,20,20,.9);border-color:rgba(255,255,255,.08)}
.header-inner{min-height:82px;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:28px}
.brandmark{display:flex;align-items:center;min-width:155px}
.brandmark img{height:66px;width:auto;object-fit:contain}
.nav{display:flex;align-items:center;justify-content:center;gap:24px}
.nav a{font-size:.88rem;font-weight:600;color:#314154;position:relative;padding:31px 0}
.nav a::after{content:'';position:absolute;left:0;right:100%;bottom:24px;height:2px;background:var(--brand);transition:right .28s ease}
.nav a:hover::after,.nav a.active::after{right:0}
.salon-header .nav a{color:#eadfd8}
.salon-header .nav a::after{background:var(--salmon)}
.header-cta{display:flex;align-items:center;gap:12px}
.phone-link{font-size:.78rem;font-weight:700;color:var(--navy)}
.salon-header .phone-link{color:#f0e4dc}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:1px solid transparent;padding:12px 17px;font-weight:700;font-size:.86rem;cursor:pointer;transition:transform .22s ease,background .22s ease,color .22s ease,border .22s ease}
.btn:hover{transform:translateY(-2px)}
.btn-blue{background:var(--brand);color:#fff}
.btn-blue:hover{background:var(--brand-700)}
.btn-navy{background:var(--navy);color:#fff}
.btn-light{background:#fff;color:var(--navy);border-color:rgba(16,40,70,.13)}
.btn-gold{background:var(--gold);color:#fff}
.btn-salon{background:var(--salmon);color:#fff}
.menu-btn{display:none;border:0;background:transparent;padding:8px}
.menu-btn i{display:block;width:25px;height:2px;background:var(--ink);margin:5px 0}
.salon-header .menu-btn i{background:#fff}
.mobile-nav{display:none;position:fixed;inset:0;z-index:45;background:var(--paper);padding:110px 24px 30px}
.mobile-nav.open{display:block}
.mobile-nav nav{display:grid;gap:16px}
.mobile-nav a{font-family:var(--serif);font-size:1.9rem;color:var(--navy)}
.mobile-nav.salon-mobile{background:var(--salon)}
.mobile-nav.salon-mobile a{color:var(--cream)}

/* editorial type */
.kicker{display:inline-block;font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;font-weight:700;color:var(--brand)}
.h-display{font-family:var(--serif);font-size:clamp(48px,6.4vw,92px);font-weight:500;line-height:.92;letter-spacing:-.045em;margin:0;color:var(--navy)}
.h-section{font-family:var(--serif);font-size:clamp(36px,4.6vw,66px);font-weight:500;line-height:.98;letter-spacing:-.035em;margin:0;color:var(--navy)}
.lead{font-size:1.03rem;color:var(--muted);max-width:58ch}

/* home hero */
.home-hero{background:var(--navy);color:#fff;position:relative;overflow:hidden}
.home-hero::before{content:'';position:absolute;inset:auto auto -140px -120px;width:360px;height:360px;border:1px solid rgba(255,255,255,.12);border-radius:50%}
.home-hero::after{content:'';position:absolute;right:42%;top:-80px;width:220px;height:340px;border-right:1px solid rgba(255,255,255,.10);transform:rotate(18deg)}
.hero-grid{display:grid;grid-template-columns:.92fr 1.08fr;min-height:650px}
.hero-copy{padding:76px 64px 64px 0;display:flex;flex-direction:column;justify-content:center;position:relative;z-index:2}
.hero-copy .kicker{color:#aecaef}
.hero-copy .h-display{color:#fff;max-width:10ch}
.hero-copy .lead{color:#c8d7e9;margin:22px 0 26px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap}
.hero-meta{margin-top:28px;display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:center;color:#b9cade;font-size:.8rem}
.hero-meta::before{content:'';height:1px;background:rgba(255,255,255,.24)}
.hero-visual{position:relative;min-height:650px}
.hero-visual > img{width:100%;height:100%;object-fit:cover;object-position:center;filter:saturate(.94) contrast(1.02)}
.hero-visual::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,var(--navy) 0%,rgba(16,40,70,.48) 18%,transparent 56%)}
.hero-badge{position:absolute;left:28px;bottom:28px;z-index:2;width:238px;background:rgba(255,255,255,.96);color:var(--navy);padding:20px 20px 18px;box-shadow:var(--hard-shadow);backdrop-filter:blur(8px)}
.hero-badge strong{font-family:var(--serif);display:block;font-size:1.8rem;line-height:1.02;font-weight:500}
.hero-badge span{font-size:.76rem;color:var(--muted)}

.fact-ribbon{background:#fff;border-bottom:1px solid var(--line)}
.fact-ribbon .container{position:relative}
.fact-note{margin:0;padding:13px 26px 0;font-size:.66rem;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.fact-grid{display:grid;grid-template-columns:repeat(3,1fr)}
.fact{padding:18px 26px 23px;border-right:1px solid var(--line);display:grid;grid-template-columns:auto 1fr;gap:14px;align-items:center}
.fact:last-child{border-right:0}
.fact strong{font-family:var(--serif);font-size:2.2rem;font-weight:500;color:var(--brand)}
.fact span{font-size:.8rem;color:var(--muted);max-width:25ch}

/* sections */
.section{padding:72px 0}
.section-tight{padding:54px 0}
.section-intro{display:grid;grid-template-columns:1.05fr .95fr;align-items:end;gap:36px;margin-bottom:34px}
.section-intro p{margin:0;color:var(--muted);max-width:52ch;justify-self:end}

.practice{background:var(--paper)}
.practice-layout{display:grid;grid-template-columns:1.22fr .78fr;gap:18px}
.practice-feature{position:relative;min-height:560px;overflow:hidden;background:#d8e4f7}
.practice-feature img{width:100%;height:100%;object-fit:cover}
.practice-feature::after{content:'';position:absolute;inset:36% 0 0;background:linear-gradient(0deg,rgba(10,30,54,.92),transparent)}
.practice-feature .overlay{position:absolute;left:30px;right:30px;bottom:28px;color:#fff;z-index:2}
.practice-feature h3{font-family:var(--serif);font-size:2.6rem;font-weight:500;line-height:1;margin:0 0 10px}
.practice-feature p{margin:0;color:#d8e5f3;max-width:50ch}
.practice-side{display:grid;grid-template-rows:1fr 1fr;gap:18px}
.practice-slice{display:grid;grid-template-columns:.92fr 1.08fr;background:#fff;border:1px solid var(--line);overflow:hidden}
.practice-slice img{width:100%;height:100%;object-fit:cover;object-position:center}
.practice-slice .copy{padding:24px;display:flex;flex-direction:column;justify-content:center}
.practice-slice h3{font-family:var(--serif);font-weight:500;font-size:1.8rem;line-height:1.02;margin:0 0 9px;color:var(--navy)}
.practice-slice p{font-size:.83rem;color:var(--muted);margin:0 0 13px}
.text-link{font-size:.78rem;font-weight:700;color:var(--brand)}

.doctor-section{background:var(--bluewash)}
.doctor-layout{display:grid;grid-template-columns:.8fr 1.2fr;gap:54px;align-items:center}
.doctor-photo{position:relative}
.doctor-photo img{width:100%;height:540px;object-fit:cover;object-position:top center;box-shadow:var(--hard-shadow)}
.doctor-photo .vertical{position:absolute;left:-27px;top:38px;writing-mode:vertical-rl;transform:rotate(180deg);font-size:.68rem;letter-spacing:.19em;text-transform:uppercase;color:var(--brand);font-weight:700}
.doctor-copy .credentials{display:flex;flex-wrap:wrap;gap:8px;margin:18px 0}
.doctor-copy .credentials span{font-size:.73rem;font-weight:700;color:var(--navy);border-bottom:1px solid var(--brand);padding:6px 0;margin-right:12px}
.doctor-copy p{color:var(--muted);max-width:62ch}
.pullquote{font-family:var(--serif);font-size:1.55rem;line-height:1.25;color:var(--navy);border-left:3px solid var(--brand);padding-left:18px;margin:22px 0 26px}

.treatment-section{background:#fff}
.treatment-shell{border-top:1px solid var(--line)}
.treatment-row{display:grid;grid-template-columns:70px 1.3fr 1fr 160px;gap:22px;align-items:center;padding:22px 0;border-bottom:1px solid var(--line);transition:padding .25s ease,background .25s ease}
.treatment-row:hover{background:var(--bluewash);padding-left:18px;padding-right:18px}
.treatment-row .num{font-family:var(--serif);font-size:1.3rem;color:var(--brand)}
.treatment-row h3{font-family:var(--serif);font-size:1.8rem;font-weight:500;margin:0;color:var(--navy)}
.treatment-row p{font-size:.83rem;color:var(--muted);margin:0}
.treatment-row img{width:160px;height:96px;object-fit:cover}

.why-section{background:var(--navy);color:#fff;overflow:hidden}
.why-layout{display:grid;grid-template-columns:.88fr 1.12fr;gap:50px}
.why-copy .h-section{color:#fff}
.why-copy p{color:#bdcce0}
.why-list{border-top:1px solid rgba(255,255,255,.14)}
.why-item{display:grid;grid-template-columns:46px 1fr;gap:18px;padding:20px 0;border-bottom:1px solid rgba(255,255,255,.14)}
.why-item span{font-family:var(--serif);font-size:1.35rem;color:#8fb0df}
.why-item h3{margin:0 0 5px;font-size:1rem;color:#fff}
.why-item p{margin:0;font-size:.82rem;color:#b9c8da}

.portfolio{background:#f5f1e9}
.portfolio-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:12px}
.work{position:relative;overflow:hidden;background:#fff}
.work:first-child{grid-row:span 2}
.work img{width:100%;height:100%;min-height:260px;object-fit:cover;transition:transform .7s ease}
.work:first-child img{min-height:532px}
.work:hover img{transform:scale(1.025)}
.work .caption{position:absolute;left:0;right:0;bottom:0;padding:36px 18px 16px;background:linear-gradient(transparent,rgba(10,25,45,.86));color:#fff}
.work h3{font-family:var(--serif);font-weight:500;font-size:1.55rem;margin:0}
.work p{font-size:.72rem;margin:3px 0 0;color:#dfe6ef}

.salon-preview{display:grid;grid-template-columns:1fr 1fr;background:var(--salon);color:var(--cream)}
.salon-preview .copy{padding:58px 60px;display:flex;flex-direction:column;justify-content:center}
.salon-preview .copy .kicker{color:var(--salmon)}
.salon-preview .copy .h-section{color:#fff}
.salon-preview .copy p{color:#cdbeb5;max-width:50ch}
.salon-preview .visual{display:grid;grid-template-columns:1fr 1fr;gap:0}
.salon-preview .visual img{height:100%;min-height:410px;width:100%;object-fit:cover}

.location-strip{background:#fff}
.location-layout{display:grid;grid-template-columns:1.3fr .7fr;gap:22px;align-items:stretch}
.location-card{background:var(--bluewash);padding:34px;display:flex;flex-direction:column;justify-content:center}
.location-card h2{font-family:var(--serif);font-weight:500;font-size:2.5rem;line-height:1;margin:0 0 15px;color:var(--navy)}
.location-card p{margin:0 0 18px;color:var(--muted)}
.map-mini iframe{width:100%;height:100%;min-height:310px;border:0}

/* inner heroes */
.inner-hero{padding:58px 0;background:#fff;border-bottom:1px solid var(--line)}
.inner-hero.dark{background:var(--navy);color:#fff}
.inner-hero.dark .h-display{color:#fff}
.inner-hero.dark .lead{color:#c7d5e6}
.inner-grid{display:grid;grid-template-columns:1fr .86fr;gap:46px;align-items:end}
.inner-photo img{width:100%;height:400px;object-fit:cover;box-shadow:var(--hard-shadow)}

.story-grid{display:grid;grid-template-columns:.7fr 1.3fr;gap:46px}
.story-pull{font-family:var(--serif);font-size:2.5rem;line-height:1.08;color:var(--brand);position:sticky;top:118px;align-self:start}
.story-body p{color:var(--muted);font-size:1rem;margin:0 0 18px}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-left:1px solid var(--line)}
.value{padding:22px;border-right:1px solid var(--line);border-bottom:1px solid var(--line);min-height:190px}
.value b{font-family:var(--serif);font-size:2rem;color:var(--brand)}
.value h3{font-family:var(--serif);font-weight:500;font-size:1.35rem;color:var(--navy);margin:18px 0 7px}
.value p{font-size:.8rem;color:var(--muted);margin:0}

.doctor-list{display:grid;gap:20px}
.doctor-card{display:grid;grid-template-columns:300px 1fr;background:#fff;border:1px solid var(--line)}
.doctor-card:nth-child(even){grid-template-columns:1fr 300px}
.doctor-card:nth-child(even) .doctor-media{order:2}
.doctor-media img,.doctor-mono{width:100%;height:330px;object-fit:cover}
.doctor-mono{
  position:relative;display:grid;place-items:center;overflow:hidden;
  background:
    radial-gradient(circle at 18% 22%,rgba(143,176,223,.22) 0 2px,transparent 3px),
    radial-gradient(circle at 78% 72%,rgba(255,255,255,.12) 0 2px,transparent 3px),
    linear-gradient(145deg,var(--navy-2),var(--navy));
  background-size:38px 38px,52px 52px,auto;
  color:#fff;font-family:var(--serif);font-size:5rem;letter-spacing:-.04em;
}
.doctor-mono::before,.doctor-mono::after{content:'';position:absolute;border:1px solid rgba(255,255,255,.12);border-radius:50%}
.doctor-mono::before{width:210px;height:210px;right:-78px;top:-70px}
.doctor-mono::after{width:140px;height:140px;left:-55px;bottom:-58px}
.doctor-info{padding:30px;display:flex;flex-direction:column;justify-content:center}
.doctor-info h2{font-family:var(--serif);font-size:2.2rem;font-weight:500;margin:0;color:var(--navy)}
.doctor-info .role{font-size:.75rem;color:var(--brand);letter-spacing:.1em;text-transform:uppercase;font-weight:700;margin:7px 0 12px}
.doctor-info p{color:var(--muted);margin:0 0 14px}
.tags{display:flex;gap:7px;flex-wrap:wrap}
.tags span{font-size:.7rem;background:var(--bluewash);color:var(--brand-700);padding:6px 8px}

.treat-nav{display:grid;grid-template-columns:repeat(3,1fr);gap:1px;background:rgba(255,255,255,.14)}
.treat-nav a{padding:24px;background:var(--navy);color:#fff}
.treat-nav a:hover{background:var(--brand)}
.treat-nav strong{font-family:var(--serif);font-size:1.8rem;display:block;font-weight:500}
.treat-nav span{font-size:.76rem;color:#bacbe0}
.service-block{display:grid;grid-template-columns:.65fr 1.35fr;gap:40px;padding:64px 0;border-bottom:1px solid var(--line)}
.service-heading{position:sticky;top:118px;align-self:start}
.service-heading h2{font-family:var(--serif);font-size:2.8rem;line-height:1;font-weight:500;color:var(--navy);margin:10px 0}
.service-heading p{color:var(--muted)}
.service-list{display:grid;grid-template-columns:1fr 1fr;border-top:1px solid var(--line);border-left:1px solid var(--line)}
.service-item{
  position:relative;padding:24px 24px 26px;border-right:1px solid var(--line);
  border-bottom:1px solid var(--line);min-height:218px;background:#fff;
  transition:background .25s ease,transform .25s ease,box-shadow .25s ease;
}
.service-item::after{content:'';position:absolute;left:24px;right:24px;bottom:0;height:2px;background:var(--brand);transform:scaleX(0);transform-origin:left;transition:transform .28s ease}
.service-item:hover{background:#f9fbff;transform:translateY(-2px);box-shadow:0 14px 30px rgba(16,40,70,.07)}
.service-item:hover::after{transform:scaleX(1)}
.service-icon{width:46px;height:46px;display:grid;place-items:center;margin-bottom:20px;color:var(--brand)}
.service-icon svg{width:46px;height:46px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.service-item h3{font-family:var(--serif);font-size:1.45rem;font-weight:500;color:var(--navy);margin:0 0 7px}
.service-item p{font-size:.82rem;color:var(--muted);margin:0;max-width:35ch}

.gallery-intro{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:end}
.filter-bar{display:flex;gap:8px;flex-wrap:wrap;margin:24px 0}
.filter-bar button{border:1px solid var(--line);background:#fff;padding:9px 13px;font-weight:700;font-size:.74rem;cursor:pointer}
.filter-bar button.active{background:var(--navy);color:#fff}
.masonry{columns:3 290px;column-gap:14px}
.gallery-item{break-inside:avoid;margin-bottom:14px;background:#fff;cursor:pointer;border:1px solid var(--line)}
.gallery-item img{width:100%;height:auto}
.gallery-item .cap{padding:12px 14px 14px}
.gallery-item h3{font-family:var(--serif);font-size:1.25rem;font-weight:500;color:var(--navy);margin:0}
.gallery-item p{font-size:.72rem;color:var(--muted);margin:3px 0 0}
.lightbox{display:none;position:fixed;inset:0;z-index:100;background:rgba(7,17,30,.94);place-items:center;padding:30px}
.lightbox.open{display:grid}
.lightbox img{max-width:92vw;max-height:84vh}
.lightbox button{position:absolute;top:20px;right:20px;width:42px;height:42px;border:0;background:#fff;font-size:1.2rem;cursor:pointer}

.review-hero blockquote,.review-hero h1{font-family:var(--serif);font-size:clamp(40px,5.4vw,76px);line-height:1.02;color:#fff;margin:0;max-width:18ch}
.review-hero cite{display:block;margin-top:18px;font-style:normal;color:#aecaef;font-size:.75rem;letter-spacing:.16em;text-transform:uppercase}
.trust-grid{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.trust-box{padding:28px;background:#fff;border:1px solid var(--line)}
.trust-box h3{font-family:var(--serif);font-size:1.8rem;font-weight:500;color:var(--navy);margin:0 0 10px}
.trust-box p{color:var(--muted);margin:0}

.contact-grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:20px}
.contact-details{background:var(--navy);color:#fff;padding:32px}
.contact-details h2{font-family:var(--serif);font-size:2.4rem;font-weight:500;margin:0 0 20px}
.contact-line{padding:15px 0;border-top:1px solid rgba(255,255,255,.14)}
.contact-line span{display:block;font-size:.68rem;letter-spacing:.14em;text-transform:uppercase;color:#aecaef;margin-bottom:5px}
.contact-line b,.contact-line a{font-size:.9rem;color:#fff}
.contact-form{background:#fff;border:1px solid var(--line);padding:32px}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.form-grid .full{grid-column:1/-1}
label{display:grid;gap:6px;font-size:.76rem;font-weight:700;color:var(--navy)}
input,select,textarea{width:100%;padding:12px;border:1px solid var(--line);background:#fff;color:var(--ink)}
textarea{min-height:110px;resize:vertical}
.map-frame iframe{width:100%;height:360px;border:0}

/* salon page */
.salon-page{background:var(--salon);color:var(--cream)}
.salon-page .utility{background:#130e0e}
.salon-hero{background:var(--salon);padding:46px 0}
.salon-hero-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:28px;align-items:center}
.salon-hero .h-display{color:#fff}
.salon-hero .lead{color:#cdbeb6}
.salon-photos{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.salon-photos img{width:100%;height:260px;object-fit:cover}
.salon-photos img:first-child{grid-column:span 2;height:320px}
.salon-section{padding:66px 0}
.salon-panel{background:var(--salon-2)}
.salon-page .h-section{color:#fff}
.salon-page .section-intro p{color:#cdbeb6}
.salon-services{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.salon-service{background:#241919;border:1px solid rgba(255,255,255,.08)}
.salon-service img{width:100%;height:180px;object-fit:cover}
.salon-service .copy{padding:16px}
.salon-service h3{font-family:var(--serif);font-weight:500;font-size:1.45rem;color:#fff;margin:0 0 7px}
.salon-service p{font-size:.8rem;color:#cdbeb6;margin:0}
.process{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.process article{padding:22px;border-top:1px solid rgba(255,255,255,.16);background:#211717}
.process b{font-family:var(--serif);font-size:2rem;color:var(--salmon)}
.process h3{font-family:var(--serif);font-size:1.45rem;font-weight:500;color:#fff;margin:12px 0 6px}
.process p{font-size:.8rem;color:#cdbeb6;margin:0}
.review-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.review-card{background:#241919;padding:22px;border:1px solid rgba(255,255,255,.08)}
.review-card p{font-family:var(--serif);font-size:1.15rem;line-height:1.35;color:#fff;margin:0 0 14px}
.review-card span{font-size:.75rem;color:#cdbeb6}

.footer{background:#0d213a;color:#dbe6f3;padding:48px 0 20px}
.footer.salon-footer{background:#110c0c;color:#dfd2ca}
.footer-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr 1fr;gap:28px}
.footer-logo{display:inline-flex;background:#fff;padding:8px 10px;margin-bottom:14px}
.footer-logo img{height:60px;width:auto}
.footer h3{font-size:.84rem;text-transform:uppercase;letter-spacing:.12em;margin:0 0 13px;color:#fff}
.footer p,.footer li,.footer a{font-size:.8rem;color:inherit}
.footer ul{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.copyright{margin-top:24px;padding-top:16px;border-top:1px solid rgba(255,255,255,.10);font-size:.72rem;color:rgba(255,255,255,.64)}

/* motion */
[data-reveal]{opacity:0;transition:opacity .7s ease,transform .7s cubic-bezier(.22,.75,.25,1)}
[data-reveal="up"]{transform:translateY(22px)}
[data-reveal="left"]{transform:translateX(-30px)}
[data-reveal="right"]{transform:translateX(30px)}
[data-reveal="clip"]{clip-path:inset(0 100% 0 0);opacity:1;transition:clip-path .9s cubic-bezier(.2,.8,.2,1)}
[data-reveal].visible{opacity:1;transform:none;clip-path:inset(0 0 0 0)}

@media (max-width:1080px){
  .nav,.phone-link{display:none}
  .menu-btn{display:block}
  .header-inner{grid-template-columns:auto 1fr auto}
  .hero-grid,.doctor-layout,.practice-layout,.salon-preview,.inner-grid,.story-grid,.service-block,.contact-grid,.salon-hero-grid{grid-template-columns:1fr}
  .hero-copy{padding:58px 0 34px}
  .hero-visual{min-height:520px}
  .practice-side{grid-template-columns:1fr 1fr;grid-template-rows:none}
  .practice-slice{grid-template-columns:1fr}
  .practice-slice img{height:190px}
  .doctor-photo{max-width:620px}
  .story-pull,.service-heading{position:static}
  .values-grid,.salon-services{grid-template-columns:1fr 1fr}
  .location-layout{grid-template-columns:1fr}
}

@media (max-width:760px){
  .container{width:min(100% - 24px,1200px)}
  .utility .container{padding:7px 0}
  .utility span:last-child{display:none}
  .header-inner{min-height:72px}
  .brandmark img{height:54px}
  .header-cta .btn{display:none}
  .section,.salon-section{padding:50px 0}
  .hero-grid{min-height:auto}
  .hero-copy{padding:46px 0 28px}
  .hero-visual{min-height:430px}
  .hero-badge{left:14px;bottom:14px;width:200px;padding:14px}
  .fact-grid,.section-intro,.practice-side,.portfolio-grid,.values-grid,.service-list,.trust-grid,.form-grid,.salon-services,.process,.review-cards,.footer-grid,.treat-nav{grid-template-columns:1fr}
  .fact{border-right:0;border-bottom:1px solid var(--line)}
  .fact:last-child{border-bottom:0}
  .section-intro p{justify-self:start}
  .practice-feature{min-height:480px}
  .practice-slice{grid-template-columns:.9fr 1.1fr}
  .practice-slice img{height:100%}
  .treatment-row{grid-template-columns:42px 1fr}
  .treatment-row p,.treatment-row img{display:none}
  .why-layout{grid-template-columns:1fr}
  .portfolio-grid .work:first-child{grid-row:auto}
  .work:first-child img,.work img{min-height:330px}
  .salon-preview .copy{padding:42px 24px}
  .salon-preview .visual img{min-height:260px}
  .doctor-card,.doctor-card:nth-child(even){grid-template-columns:1fr}
  .doctor-card:nth-child(even) .doctor-media{order:0}
  .doctor-media img,.doctor-mono{height:280px}
  .service-block{padding:48px 0}
  .salon-photos img,.salon-photos img:first-child{height:230px}
}


@media (max-width:600px){
  .service-item{padding:21px 20px 23px;min-height:auto}
  .service-item::after{left:20px;right:20px}
  .service-icon{margin-bottom:16px}
  .treatment-row{padding:20px 2px;column-gap:14px}
  .treatment-row:hover{padding-left:10px;padding-right:10px}
  .section-intro{gap:16px;margin-bottom:28px}
  .fact-note{padding-left:0;padding-right:0}
}

@media (prefers-reduced-motion:reduce){
  *{scroll-behavior:auto!important;transition:none!important;animation:none!important}
  [data-reveal]{opacity:1;transform:none;clip-path:none}
}

.gallery-item.comparison-full img{object-fit:contain;background:#eef3f9}

/* 2026 gap + content pass: keep every section visible even if scroll observers are delayed */
[data-reveal],
[data-reveal="up"],
[data-reveal="left"],
[data-reveal="right"],
[data-reveal="clip"]{
  opacity:1;
  transform:none;
  clip-path:none;
}

/* Tighter vertical rhythm after real photography was added */
.section{padding:58px 0}
.section-tight{padding:44px 0}
.inner-hero{padding:44px 0}
.salon-section{padding:54px 0}
.hero-grid{min-height:580px}
.hero-visual{min-height:580px}
.practice-feature{min-height:500px}
.doctor-photo img{height:470px}
.work img{min-height:235px}
.work:first-child img{min-height:482px}
.salon-preview .visual img{min-height:350px}
.section-intro{margin-bottom:28px}

/* Larger, image-rich results page */
.results-gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}
.results-gallery-grid .work{min-height:0}
.results-gallery-grid .work:first-child{grid-row:auto}
.results-gallery-grid .work img,
.results-gallery-grid .work:first-child img{
  width:100%;
  height:300px;
  min-height:0;
  object-fit:cover;
}
.results-gallery-grid .work:nth-child(1),
.results-gallery-grid .work:nth-child(6),
.results-gallery-grid .work:nth-child(10){grid-column:span 2}
.results-gallery-grid .work:nth-child(1) img,
.results-gallery-grid .work:nth-child(6) img,
.results-gallery-grid .work:nth-child(10) img{height:360px}

/* Footer agency credit */
.copyright a{
  color:#fff;
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:3px;
}
.copyright a:hover{color:#bcd2f3}
.salon-footer .copyright a:hover{color:#e5a18f}

@media (max-width:1080px){
  .hero-grid{min-height:auto}
  .hero-visual{min-height:480px}
  .doctor-photo img{height:440px}
  .results-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .results-gallery-grid .work:nth-child(1),
  .results-gallery-grid .work:nth-child(6),
  .results-gallery-grid .work:nth-child(10){grid-column:auto}
}

@media (max-width:760px){
  .section,.salon-section{padding:42px 0}
  .section-tight{padding:36px 0}
  .inner-hero{padding:36px 0}
  .hero-visual{min-height:380px}
  .practice-feature{min-height:420px}
  .doctor-photo img{height:390px}
  .results-gallery-grid{grid-template-columns:1fr}
  .results-gallery-grid .work img,
  .results-gallery-grid .work:first-child img,
  .results-gallery-grid .work:nth-child(1) img,
  .results-gallery-grid .work:nth-child(6) img,
  .results-gallery-grid .work:nth-child(10) img{height:auto;min-height:280px}
}

/* ========================================================================== */
/* SITE-WIDE RHYTHM PASS — remove unused vertical space on every page          */
/* ========================================================================== */

/* Never let a content section reserve viewport-like empty height. */
main > section,
main > .container,
.inner-hero,
.home-hero,
.review-hero,
.salon-hero,
.section,
.section-tight,
.salon-section{
  min-height:0 !important;
}

/* More deliberate, compact vertical rhythm. */
.section{padding:46px 0}
.section-tight{padding:34px 0}
.inner-hero{padding:38px 0}
.salon-section{padding:44px 0}
.salon-hero{padding:36px 0}
.section-intro{gap:28px;margin-bottom:22px}
.section-intro .h-section{max-width:15ch}
.section-intro p{align-self:end}

/* Home hero: fixed visual composition, no excess minimum-height. */
.hero-grid{min-height:0 !important;align-items:stretch}
.hero-copy{padding:52px 54px 52px 0}
.hero-visual{min-height:0 !important;height:520px}
.hero-visual > img{height:520px}
.hero-badge{left:22px;bottom:22px;width:224px;padding:17px 18px}
.fact-note{padding-top:10px}
.fact{padding-top:15px;padding-bottom:18px}

/* Practice section: every column is filled and image-led. */
.practice-layout{align-items:stretch}
.practice-feature{min-height:0 !important;height:442px}
.practice-side{grid-template-rows:repeat(2,minmax(0,1fr))}
.practice-slice{min-height:212px}
.practice-slice img{min-height:0;height:100%}
.practice-slice .copy{padding:20px}

/* Doctor section: image and copy remain visually balanced. */
.doctor-layout{gap:40px}
.doctor-photo img{height:410px;min-height:0}
.doctor-photo .vertical{left:-22px}
.doctor-copy .h-section{max-width:14ch}
.doctor-copy p{margin:12px 0}
.pullquote{margin:17px 0 20px}

/* Treatment index on home. */
.treatment-row{padding:17px 0;gap:18px;grid-template-columns:58px 1.2fr 1fr 146px}
.treatment-row img{width:146px;height:82px}
.treatment-row:hover{padding-top:17px;padding-bottom:17px}

/* Dark information sections should be content-height, not screen-height. */
.why-layout{gap:36px;align-items:start}
.why-copy p{margin-bottom:0}
.why-item{padding:16px 0}
.why-support-image{display:block;width:100%;height:170px;object-fit:cover;margin-top:22px;border:1px solid rgba(255,255,255,.12)}

/* Portfolio/results: consistent image height, no oversized blank cells. */
.portfolio-grid{align-items:stretch}
.work,.portfolio-grid .work:first-child{min-height:0}
.work img{min-height:0;height:242px}
.work:first-child img{min-height:0;height:496px}
.work .caption{padding-top:30px}
.results-gallery-grid .work img,
.results-gallery-grid .work:first-child img{height:270px}
.results-gallery-grid .work:nth-child(1) img,
.results-gallery-grid .work:nth-child(6) img,
.results-gallery-grid .work:nth-child(10) img{height:318px}

/* Salon teaser: keep photography present without making the block too tall. */
.salon-preview .copy{padding:40px 44px}
.salon-preview .visual img{min-height:0;height:320px}

/* Location and map sections. */
.location-layout{align-items:stretch}
.location-card{padding:28px;min-height:0}
.location-image{display:block;width:100%;height:270px !important;min-height:0 !important;object-fit:cover}
.map-mini,.map-frame{min-height:0}
.map-mini iframe{min-height:0;height:270px}
.map-frame iframe{height:320px}

/* Internal page heroes: compact and filled. */
.inner-grid{gap:34px;align-items:center}
.inner-photo img{height:330px;min-height:0}
.review-hero{padding:40px 0 !important}
.review-hero blockquote,.review-hero h1{font-size:clamp(38px,4.8vw,66px);max-width:20ch}
.gallery-intro{gap:30px;align-items:center}

/* About page: text + compact visual strip instead of a text-only empty band. */
.story-grid{gap:34px;align-items:start}
.story-pull{position:static;font-size:2.25rem}
.story-body p:last-child{margin-bottom:0}
.story-media-strip{display:grid;grid-template-columns:1.15fr .85fr .85fr;gap:12px;margin-top:24px}
.story-media-strip figure{margin:0;position:relative;overflow:hidden;background:#fff;border:1px solid var(--line)}
.story-media-strip img{width:100%;height:190px;object-fit:cover}
.story-media-strip figure:first-child img{height:190px}
.story-media-strip figcaption{position:absolute;left:0;bottom:0;background:rgba(16,40,70,.88);color:#fff;padding:7px 10px;font-size:.7rem}
.values-grid{align-items:stretch}
.value{min-height:0;padding:19px}
.value h3{margin:13px 0 6px}

/* Team page. */
.doctor-list{gap:16px}
.doctor-card,.doctor-card:nth-child(even){min-height:0}
.doctor-media img,.doctor-mono{height:286px;min-height:0}
.doctor-info{padding:25px}

/* Treatments page: service headings now carry relevant photography. */
.service-block{gap:30px;padding:42px 0}
.service-heading{position:static}
.service-heading h2{font-size:2.45rem}
.service-heading-image{display:block;width:100%;height:180px;object-fit:cover;margin-top:20px;border:1px solid var(--line)}
.service-item{min-height:184px;padding:20px 21px 22px}
.service-icon{width:40px;height:40px;margin-bottom:14px}
.service-icon svg{width:40px;height:40px}
.service-item::after{left:21px;right:21px}

/* Gallery and results sections. */
.filter-bar{margin:18px 0 22px}
.masonry{column-gap:12px}
.gallery-item{margin-bottom:12px}
.trust-grid{gap:14px}
.trust-box{padding:20px;display:grid;grid-template-columns:118px 1fr;column-gap:18px;align-items:center}
.trust-thumb{width:118px;height:94px;object-fit:cover;grid-row:1 / span 2}
.trust-box h3,.trust-box p{grid-column:2}

/* Contact page. */
.contact-details,.contact-form{padding:27px}
.contact-line{padding:12px 0}

/* Salon page: all photography visible, text-only bands kept compact. */
.salon-hero-grid{gap:24px}
.salon-photos img{height:210px}
.salon-photos img:first-child{height:270px}
.salon-services{align-items:stretch}
.salon-service img{height:165px}
.process article,.review-card{padding:19px}
.salon-page .section-intro{margin-bottom:20px}
.salon-page .portfolio-grid .work img{height:235px}
.salon-page .portfolio-grid .work:first-child img{height:482px}

/* Footer compactness while keeping full content and agency credit. */
.footer{padding:38px 0 16px}
.footer-grid{gap:22px}
.copyright{margin-top:18px;padding-top:13px}

@media (max-width:1080px){
  .hero-copy{padding:40px 0 28px}
  .hero-visual,.hero-visual > img{height:430px;min-height:0 !important}
  .practice-feature{height:390px;min-height:0 !important}
  .practice-slice{min-height:0}
  .practice-slice img{height:175px}
  .doctor-photo img{height:390px}
  .story-media-strip{grid-template-columns:repeat(3,1fr)}
  .service-heading-image{height:210px}
}

@media (max-width:760px){
  .section{padding:36px 0}
  .section-tight{padding:28px 0}
  .inner-hero{padding:30px 0}
  .salon-section{padding:34px 0}
  .salon-hero{padding:30px 0}
  .section-intro{gap:12px;margin-bottom:18px}
  .hero-copy{padding:34px 0 24px}
  .hero-visual,.hero-visual > img{height:340px;min-height:0 !important}
  .hero-badge{left:12px;bottom:12px;width:190px;padding:12px}
  .practice-feature{height:350px;min-height:0 !important}
  .practice-side{grid-template-columns:1fr}
  .practice-slice{grid-template-columns:42% 58%}
  .practice-slice img{height:190px}
  .doctor-photo img{height:340px}
  .treatment-row{padding:16px 2px}
  .why-support-image{height:190px}
  .work img,.work:first-child img{height:300px;min-height:0}
  .salon-preview .copy{padding:30px 22px}
  .salon-preview .visual img{height:240px;min-height:0}
  .inner-photo img{height:270px}
  .story-media-strip{grid-template-columns:1fr}
  .story-media-strip img,.story-media-strip figure:first-child img{height:210px}
  .doctor-media img,.doctor-mono{height:255px}
  .service-block{padding:32px 0}
  .service-heading-image{height:190px}
  .service-item{min-height:0}
  .trust-box{grid-template-columns:92px 1fr;padding:16px}
  .trust-thumb{width:92px;height:80px}
  .location-image{height:230px !important}
  .map-mini iframe,.map-frame iframe{height:280px}
  .salon-photos img,.salon-photos img:first-child{height:215px}
  .salon-page .portfolio-grid .work img,.salon-page .portfolio-grid .work:first-child img{height:270px}
}

/* V7 treatment photography supplied by the client.
   Every treatment card now uses a matching service image instead of an icon-only placeholder. */
.service-list{
  border:0;
  gap:14px;
  align-content:start;
}
.service-item{
  min-height:0;
  padding:0;
  border:1px solid var(--line);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  background:#fff;
}
.service-item::after{display:none}
.service-item:hover{
  background:#fff;
  transform:translateY(-3px);
  box-shadow:0 18px 34px rgba(16,40,70,.09);
}
.service-media{
  position:relative;
  width:100%;
  aspect-ratio:4 / 3;
  overflow:hidden;
  background:var(--bluewash);
}
.service-media::after{
  content:'';
  position:absolute;
  inset:auto 0 0;
  height:32%;
  background:linear-gradient(0deg,rgba(10,30,54,.12),transparent);
  pointer-events:none;
}
.service-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .55s cubic-bezier(.2,.65,.25,1);
}
.service-item:hover .service-media img{transform:scale(1.025)}
.service-body{
  padding:18px 20px 20px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.service-body h3{
  font-family:var(--serif);
  font-size:1.42rem;
  font-weight:500;
  line-height:1.08;
  color:var(--navy);
  margin:0 0 8px;
}
.service-body p{
  font-size:.82rem;
  line-height:1.6;
  color:var(--muted);
  margin:0;
}

@media (max-width:760px){
  .service-list{gap:12px}
  .service-media{aspect-ratio:16 / 10}
  .service-body{padding:16px 17px 18px}
  .service-body h3{font-size:1.35rem}
}

/* ========================================================================== */
/* V8 — FINAL RESPONSIVE SYSTEM                                                */
/* Audited at 320, 360, 390, 430, 768, 1024 and 1160px viewports.             */
/* ========================================================================== */

html{
  -webkit-text-size-adjust:100%;
  text-size-adjust:100%;
  overflow-x:hidden;
}
body{
  min-width:0;
  overflow-x:hidden;
}
main,section,header,footer,.container,
.hero-grid,.inner-grid,.doctor-layout,.practice-layout,.practice-side,
.why-layout,.location-layout,.salon-preview,.salon-hero-grid,
.service-block,.service-list,.doctor-card,.contact-grid,.gallery-intro{
  min-width:0;
}
img,video,iframe,svg{max-width:100%}

/* Larger, more reliable touch target for the compact navigation button. */
.menu-btn{
  width:44px;
  height:44px;
  padding:10px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  position:relative;
  z-index:55;
}
.menu-btn i{
  width:24px;
  margin:4px auto;
  transform-origin:center;
  transition:transform .25s ease,opacity .2s ease;
}
.menu-btn.open i:first-child{transform:translateY(3px) rotate(45deg)}
.menu-btn.open i:last-child{transform:translateY(-3px) rotate(-45deg)}

.mobile-nav{
  height:100dvh;
  overflow-y:auto;
  overscroll-behavior:contain;
  padding-top:calc(112px + env(safe-area-inset-top));
  padding-bottom:calc(32px + env(safe-area-inset-bottom));
}
.mobile-nav nav{max-width:560px;margin-inline:auto}
.mobile-nav a{
  display:flex;
  align-items:center;
  min-height:48px;
  border-bottom:1px solid var(--line);
}
.mobile-nav.salon-mobile a{border-bottom-color:rgba(255,255,255,.10)}
.mobile-nav-actions{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:24px;
}
.mobile-nav-actions .btn{
  min-height:48px;
  border-bottom:0;
  font-family:var(--sans);
  font-size:.84rem;
}

/* Prevent long words, addresses and email links from causing overflow. */
.footer p,.footer li,.footer a,
.contact-line b,.contact-line a,
.location-card p,.lead,.section-intro p,.story-body p,
.doctor-info p,.service-body p,.review-card p{
  overflow-wrap:anywhere;
}

/* Tablet navigation breakpoint — desktop nav becomes crowded before 1080px. */
@media (max-width:1160px){
  .nav,.phone-link{display:none}
  .menu-btn{display:flex}
  .header-inner{grid-template-columns:auto 1fr auto;gap:18px}
  .header-cta{justify-self:end}
  .footer-grid{grid-template-columns:1.2fr 1fr 1fr}
  .footer-grid > div:last-child{grid-column:2 / -1}
}

/* Tablet layouts. */
@media (max-width:900px){
  .container{width:min(100% - 32px,1200px)}
  .h-display{font-size:clamp(44px,8vw,72px)}
  .h-section{font-size:clamp(34px,6.8vw,56px)}

  .hero-grid,.inner-grid,.doctor-layout,.practice-layout,.why-layout,
  .location-layout,.salon-preview,.salon-hero-grid,.service-block,
  .contact-grid,.story-grid{grid-template-columns:1fr}

  .hero-copy{padding:42px 0 30px}
  .hero-copy .h-display{max-width:12ch}
  .hero-visual,.hero-visual > img{height:460px}

  .practice-feature{height:420px}
  .practice-side{grid-template-columns:1fr 1fr;grid-template-rows:none}
  .practice-slice{grid-template-columns:1fr}
  .practice-slice img{height:190px}

  .doctor-photo{max-width:620px;width:100%;margin-inline:auto}
  .doctor-copy{max-width:720px}

  .section-intro{grid-template-columns:1fr;gap:14px}
  .section-intro .h-section{max-width:18ch}
  .section-intro p{justify-self:start;max-width:66ch}

  .portfolio-grid{grid-template-columns:1fr 1fr}
  .portfolio-grid .work:first-child{grid-row:auto;grid-column:1 / -1}
  .portfolio-grid .work:first-child img{height:420px}
  .portfolio-grid .work img{height:285px}

  .salon-preview .copy{padding:38px 32px}
  .salon-preview .visual img{height:300px}

  .values-grid{grid-template-columns:1fr 1fr}
  .story-pull{position:static;max-width:18ch}

  .service-heading{position:static}
  .service-list{grid-template-columns:1fr 1fr}

  .doctor-card,.doctor-card:nth-child(even){grid-template-columns:260px 1fr}
  .doctor-card:nth-child(even) .doctor-media{order:0}
  .doctor-media img,.doctor-mono{height:300px}

  .gallery-intro{grid-template-columns:1fr;gap:16px;align-items:start}
  .gallery-intro .h-display{max-width:12ch}
  .gallery-intro .lead{max-width:64ch}

  .trust-grid{grid-template-columns:1fr}
  .salon-services{grid-template-columns:1fr 1fr}
  .process,.review-cards{grid-template-columns:1fr 1fr}
  .review-cards .review-card:last-child{grid-column:1 / -1}

  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-grid > div:last-child{grid-column:auto}
}

/* Primary mobile breakpoint. */
@media (max-width:760px){
  .container{width:min(100% - 24px,1200px)}
  .utility{font-size:.72rem}
  .utility .container{min-height:33px;align-items:center;padding:6px 0}
  .utility span:first-child{white-space:normal}
  .utility span:last-child{display:none}

  .site-header{backdrop-filter:blur(10px)}
  .header-inner{min-height:72px;gap:12px}
  .brandmark{min-width:0}
  .brandmark img{height:56px;max-width:120px}
  .header-cta{gap:0}
  .header-cta > .btn{display:none}

  .mobile-nav{padding-left:20px;padding-right:20px}
  .mobile-nav a{font-size:clamp(1.55rem,7vw,1.9rem)}

  .h-display{
    font-size:clamp(40px,12vw,58px);
    line-height:.96;
    letter-spacing:-.04em;
  }
  .h-section{
    font-size:clamp(32px,9.5vw,46px);
    line-height:1;
  }
  .lead{font-size:.98rem;line-height:1.65}
  .kicker{font-size:.68rem;letter-spacing:.18em}

  .section{padding:38px 0}
  .section-tight{padding:30px 0}
  .inner-hero{padding:32px 0}
  .salon-section{padding:36px 0}
  .salon-hero{padding:32px 0}

  .hero-copy{padding:34px 0 24px}
  .hero-copy .h-display{max-width:11ch}
  .hero-actions{display:grid;grid-template-columns:1fr 1fr;gap:9px}
  .hero-actions .btn{min-height:48px;padding:12px 13px;text-align:center}
  .hero-meta{margin-top:22px;grid-template-columns:34px 1fr}
  .hero-visual,.hero-visual > img{height:350px}
  .hero-badge{left:12px;bottom:12px;width:min(200px,calc(100% - 24px));padding:13px 14px}
  .hero-badge strong{font-size:1.35rem}

  .fact-grid{grid-template-columns:1fr}
  .fact{border-right:0;border-bottom:1px solid var(--line);display:grid;grid-template-columns:76px 1fr;align-items:center;gap:8px;padding:16px 0}
  .fact:last-child{border-bottom:0}
  .fact strong{font-size:2rem}

  .practice-feature{height:365px}
  .practice-feature .overlay{padding:54px 20px 18px}
  .practice-feature h3{font-size:1.85rem}
  .practice-side{grid-template-columns:1fr}
  .practice-slice{grid-template-columns:42% 58%;min-height:190px}
  .practice-slice img{height:190px}
  .practice-slice .copy{padding:17px}
  .practice-slice h3{font-size:1.5rem}

  .doctor-layout{gap:28px}
  .doctor-photo img{height:350px}
  .doctor-photo .vertical{display:none}
  .doctor-copy .h-section{max-width:none}
  .doctor-copy .credentials{gap:6px;margin:14px 0}
  .pullquote{font-size:1.3rem;margin:16px 0 20px}

  /* Keep the home treatment imagery and descriptions visible on mobile. */
  .treatment-row{
    grid-template-columns:38px minmax(0,1fr) 92px;
    grid-template-rows:auto auto;
    column-gap:12px;
    row-gap:7px;
    padding:16px 0;
  }
  .treatment-row .num{grid-column:1;grid-row:1 / 3;align-self:start}
  .treatment-row h3{grid-column:2;grid-row:1;font-size:1.45rem;line-height:1.08}
  .treatment-row p{display:block;grid-column:2;grid-row:2;font-size:.78rem;line-height:1.5}
  .treatment-row img{display:block;grid-column:3;grid-row:1 / 3;width:92px;height:76px;align-self:center}
  .treatment-row:hover{padding:16px 8px}

  .why-layout{gap:26px}
  .why-support-image{height:200px}
  .why-item{grid-template-columns:38px 1fr;gap:12px}

  .portfolio-grid,.results-gallery-grid{grid-template-columns:1fr}
  .portfolio-grid .work:first-child{grid-column:auto}
  .portfolio-grid .work img,.portfolio-grid .work:first-child img,
  .results-gallery-grid .work img,.results-gallery-grid .work:first-child img,
  .results-gallery-grid .work:nth-child(1) img,
  .results-gallery-grid .work:nth-child(6) img,
  .results-gallery-grid .work:nth-child(10) img{
    height:auto;
    min-height:260px;
    max-height:420px;
    object-fit:cover;
  }

  .salon-preview .copy{padding:32px 22px}
  .salon-preview .visual{grid-template-columns:1fr 1fr}
  .salon-preview .visual img{height:245px}

  .location-card{padding:24px 22px}
  .location-card h2{font-size:2rem}
  .map-mini iframe,.map-frame iframe{height:285px}

  .inner-grid{gap:24px}
  .inner-photo img{height:280px}
  .inner-grid .h-display{max-width:12ch}

  .story-media-strip{grid-template-columns:1fr}
  .story-media-strip img,.story-media-strip figure:first-child img{height:220px}
  .values-grid{grid-template-columns:1fr}
  .value{padding:18px}

  .doctor-card,.doctor-card:nth-child(even){grid-template-columns:1fr}
  .doctor-media img,.doctor-mono{height:290px}
  .doctor-info{padding:22px}
  .doctor-info h2{font-size:1.95rem}

  .treat-nav{grid-template-columns:1fr}
  .treat-nav a{padding:18px 22px;border-bottom:1px solid rgba(255,255,255,.14)}
  .service-block{padding:34px 0;gap:22px}
  .service-heading h2{font-size:2.2rem}
  .service-heading-image{height:210px;margin-top:16px}
  .service-list{grid-template-columns:1fr;gap:12px}
  .service-media{aspect-ratio:16 / 10}
  .service-body{padding:16px 17px 18px}

  .gallery-intro{grid-template-columns:1fr}
  .gallery-intro .h-display{max-width:10ch}
  .filter-bar{display:flex;flex-wrap:nowrap;overflow-x:auto;padding-bottom:6px;margin-right:-12px;scrollbar-width:none}
  .filter-bar::-webkit-scrollbar{display:none}
  .filter-bar button{flex:0 0 auto;min-height:44px;padding:10px 15px}
  .masonry{columns:1}
  .gallery-item{margin-bottom:12px}

  .trust-box{grid-template-columns:110px minmax(0,1fr);padding:16px;gap:14px}
  .trust-thumb{width:110px;height:92px}
  .trust-box h3{font-size:1.55rem}

  .contact-details,.contact-form{padding:24px 20px}
  .contact-details h2{font-size:2rem}
  .form-grid{grid-template-columns:1fr}
  .form-grid .full{grid-column:auto}
  input,select,textarea{font-size:16px;min-height:48px;padding:12px 13px}
  textarea{min-height:120px}

  .salon-hero-grid{gap:24px}
  .salon-photos img{height:220px}
  .salon-photos img:first-child{height:270px}
  .salon-services{grid-template-columns:1fr 1fr}
  .salon-service img{height:170px}
  .process,.review-cards{grid-template-columns:1fr}
  .review-cards .review-card:last-child{grid-column:auto}
  .salon-page .portfolio-grid{grid-template-columns:1fr}

  .footer{padding:34px 0 16px}
  .footer-grid{grid-template-columns:1fr 1fr;gap:24px 18px}
  .footer-grid > div:first-child{grid-column:1 / -1}
  .footer-logo img{height:56px}
  .copyright{line-height:1.6}
}

/* Small phones: 320–520px. */
@media (max-width:520px){
  .container{width:min(100% - 20px,1200px)}
  .brandmark img{height:52px;max-width:108px}
  .mobile-nav{padding-left:16px;padding-right:16px}
  .mobile-nav-actions{grid-template-columns:1fr}

  .hero-actions{grid-template-columns:1fr}
  .hero-actions .btn{width:100%}
  .hero-visual,.hero-visual > img{height:320px}
  .hero-badge{width:180px}

  .practice-feature{height:330px}
  .practice-slice{grid-template-columns:1fr}
  .practice-slice img{height:210px}
  .practice-slice .copy{padding:18px}

  .doctor-photo img{height:320px}
  .doctor-copy .credentials span{margin-right:6px}

  .treatment-row{
    grid-template-columns:34px minmax(0,1fr);
    grid-template-rows:auto auto auto;
    column-gap:10px;
  }
  .treatment-row .num{grid-column:1;grid-row:1 / 3}
  .treatment-row h3{grid-column:2;grid-row:1}
  .treatment-row p{grid-column:2;grid-row:2}
  .treatment-row img{grid-column:1 / -1;grid-row:3;width:100%;height:150px;margin-top:6px}

  .salon-preview .visual{grid-template-columns:1fr}
  .salon-preview .visual img{height:260px}

  .inner-photo img{height:250px}
  .doctor-media img,.doctor-mono{height:265px}

  .trust-box{grid-template-columns:1fr}
  .trust-thumb{width:100%;height:180px;grid-row:auto}
  .trust-box h3,.trust-box p{grid-column:auto}

  .salon-photos{grid-template-columns:1fr}
  .salon-photos img,.salon-photos img:first-child{grid-column:auto;height:245px}
  .salon-services{grid-template-columns:1fr}
  .salon-service img{height:210px}

  .footer-grid{grid-template-columns:1fr}
  .footer-grid > div:first-child{grid-column:auto}
}

/* Extra-small devices. */
@media (max-width:360px){
  .h-display{font-size:clamp(36px,11.5vw,44px)}
  .h-section{font-size:clamp(30px,9vw,38px)}
  .hero-copy .h-display,.inner-grid .h-display,.gallery-intro .h-display{max-width:none}
  .hero-visual,.hero-visual > img{height:290px}
  .hero-badge{width:166px;padding:11px 12px}
  .hero-badge strong{font-size:1.15rem}
  .practice-feature{height:300px}
  .doctor-photo img{height:290px}
  .contact-details,.contact-form{padding:21px 17px}
}

/* ========================================================================== */
/* V9 — Premium 3-banner hero slider + authentic social media icons           */
/* ========================================================================== */

/* Social media icons use the official Instagram and Facebook brand marks. */
.social-icons{display:flex;align-items:center;gap:8px}
.social-icon{width:34px;height:34px;display:inline-flex;align-items:center;justify-content:center;border:1px solid rgba(16,40,70,.14);background:rgba(255,255,255,.72);color:var(--navy);transition:transform .22s ease,background .22s ease,color .22s ease,border-color .22s ease}
.social-icon svg{width:16px;height:16px;display:block;fill:currentColor}
.social-icon:hover{transform:translateY(-2px);color:#fff;border-color:transparent}
.social-icon.instagram:hover{background:#e4405f}
.social-icon.facebook:hover{background:#1877f2}
.salon-header .social-icon{color:#f2e5de;border-color:rgba(255,255,255,.16);background:rgba(255,255,255,.04)}
.footer-social{margin-top:16px}
.footer .social-icon{color:#fff;border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.06)}
.mobile-social{margin-top:24px;padding-top:22px;border-top:1px solid var(--line)}
.mobile-nav.salon-mobile .mobile-social{border-top-color:rgba(255,255,255,.12)}
.mobile-nav .social-icon{font-family:var(--sans);font-size:0;width:42px;height:42px;color:var(--navy)}
.mobile-nav.salon-mobile .social-icon{color:var(--cream);border-color:rgba(255,255,255,.18);background:rgba(255,255,255,.05)}
.mobile-nav .social-icon svg{width:19px;height:19px}

/* Hero slider */
.hero-slider{position:relative;height:650px;background:var(--navy);overflow:hidden;color:#fff;isolation:isolate}
.hero-slides,.hero-slide{position:absolute;inset:0}
.hero-slide{opacity:0;visibility:hidden;pointer-events:none;transition:opacity .75s ease,visibility .75s ease}
.hero-slide.is-active{opacity:1;visibility:visible;pointer-events:auto;z-index:2}
.hero-slide > img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center center;transform:scale(1.015);transition:transform 7s ease}
.hero-slide.is-active > img{transform:scale(1)}
.hero-shade{position:absolute;inset:0;background:linear-gradient(90deg,rgba(9,28,51,.96) 0%,rgba(11,34,61,.88) 30%,rgba(11,34,61,.48) 49%,rgba(11,34,61,.12) 70%,rgba(11,34,61,0) 84%)}
.hero-shade::after{content:'';position:absolute;inset:0;background:linear-gradient(0deg,rgba(7,22,41,.36) 0%,transparent 38%)}
.hero-slide-inner{height:100%;display:flex;align-items:center;position:relative;z-index:3;padding-top:28px;padding-bottom:90px}
.hero-slide-copy{max-width:650px;color:#fff}
.hero-eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:.72rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:#c9dcf8;margin-bottom:17px}
.hero-eyebrow::before{content:'';width:40px;height:1px;background:#8cb0e7}
.hero-slide h1,.hero-slide h2{font-family:var(--serif);font-size:clamp(50px,5.7vw,82px);font-weight:500;line-height:.94;letter-spacing:-.045em;color:#fff;margin:0;max-width:10.5ch;text-wrap:balance}
.hero-slide p{max-width:56ch;margin:20px 0 25px;color:#d7e3f2;font-size:1.02rem;line-height:1.62}
.hero-slide-actions{display:flex;gap:12px;flex-wrap:wrap}
.btn-hero-ghost{color:#fff;border-color:rgba(255,255,255,.42);background:rgba(8,28,51,.18);backdrop-filter:blur(8px)}
.btn-hero-ghost:hover{background:#fff;color:var(--navy);border-color:#fff}
.hero-location{display:block;margin-top:26px;font-size:.76rem;letter-spacing:.08em;color:#bed0e6}
.hero-controls{position:absolute;left:50%;bottom:28px;transform:translateX(-50%);z-index:6;display:flex;align-items:center;gap:16px;pointer-events:none}
.hero-arrow,.hero-dot{pointer-events:auto;cursor:pointer}
.hero-arrow{width:42px;height:42px;border:1px solid rgba(255,255,255,.28);background:rgba(8,28,51,.36);color:#fff;display:grid;place-items:center;backdrop-filter:blur(8px);transition:background .2s ease,border .2s ease,transform .2s ease}
.hero-arrow:hover{background:var(--brand);border-color:var(--brand);transform:translateY(-2px)}
.hero-dots{display:flex;align-items:center;gap:8px}
.hero-dot{width:30px;height:3px;padding:0;border:0;background:rgba(255,255,255,.34);transition:width .28s ease,background .28s ease}
.hero-dot.is-active{width:58px;background:#fff}

/* Keep the wide desktop header balanced after adding social icons. */
@media (max-width:1320px){
  .header-inner{gap:18px}
  .nav{gap:18px}
  .nav a{font-size:.84rem}
  .header-cta{gap:9px}
}
@media (max-width:1240px){
  .phone-link{display:none}
  .nav{gap:16px}
}
@media (max-width:1160px){
  .nav,.phone-link,.header-social{display:none}
  .menu-btn{display:block}
  .header-inner{grid-template-columns:auto 1fr auto}
  .hero-slider{height:610px}
  .hero-slide-inner{padding-bottom:86px}
}

@media (max-width:760px){
  .hero-slider{height:620px;min-height:620px}
  .hero-slide > img{object-position:68% center}
  .hero-shade{background:linear-gradient(0deg,rgba(8,26,48,.98) 0%,rgba(8,26,48,.92) 37%,rgba(8,26,48,.42) 69%,rgba(8,26,48,.12) 100%)}
  .hero-slide-inner{align-items:flex-end;padding-top:92px;padding-bottom:92px}
  .hero-slide-copy{max-width:100%}
  .hero-eyebrow{font-size:.63rem;letter-spacing:.16em;margin-bottom:12px}
  .hero-eyebrow::before{width:28px}
  .hero-slide h1,.hero-slide h2{font-size:clamp(39px,11vw,57px);max-width:12ch;line-height:.96}
  .hero-slide p{font-size:.91rem;line-height:1.52;margin:15px 0 18px;max-width:42ch}
  .hero-slide-actions{display:grid;grid-template-columns:1fr 1fr;gap:9px}
  .hero-slide-actions .btn{padding:12px 10px;font-size:.75rem;text-align:center}
  .hero-location{margin-top:16px;font-size:.64rem;letter-spacing:.04em}
  .hero-controls{bottom:22px;justify-content:center}
  .hero-arrow{width:38px;height:38px}
  .hero-dot{width:22px}
  .hero-dot.is-active{width:42px}
  .mobile-nav{overflow-y:auto;padding-bottom:36px}
}

@media (max-width:430px){
  .hero-slider{height:650px;min-height:650px}
  .hero-slide > img{object-position:70% center}
  .hero-slide-inner{padding-bottom:88px}
  .hero-slide-actions{grid-template-columns:1fr}
  .hero-slide h1,.hero-slide h2{font-size:clamp(38px,12vw,51px)}
  .hero-slide p{font-size:.87rem}
  .hero-location{display:none}
}

@media (prefers-reduced-motion:reduce){
  .hero-slide,.hero-slide > img{transition:none!important}
}
.mobile-nav .mobile-social .social-icon{
  min-height:42px;
  border-bottom:0;
  padding:0;
}

/* Salon choice modal — shown when a visitor selects Salon from the clinic site */
.salon-choice-backdrop{
  position:fixed;inset:0;z-index:220;background:rgba(7,19,35,.64);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  display:grid;place-items:center;padding:22px;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .24s ease,visibility .24s ease;
}
.salon-choice-backdrop.is-open{opacity:1;visibility:visible;pointer-events:auto}
.salon-choice-dialog{
  width:min(820px,100%);background:#fff;color:var(--ink);position:relative;
  box-shadow:0 28px 90px rgba(7,21,39,.28);overflow:hidden;
  transform:translateY(14px) scale(.99);transition:transform .28s ease;
}
.salon-choice-backdrop.is-open .salon-choice-dialog{transform:none}
.salon-choice-top{padding:34px 38px 24px;background:linear-gradient(135deg,#f9fbff 0%,#edf4ff 100%);border-bottom:1px solid var(--line)}
.salon-choice-kicker{display:block;margin-bottom:10px;color:var(--brand);font-size:.69rem;font-weight:800;letter-spacing:.17em;text-transform:uppercase}
.salon-choice-top h2{font-family:var(--serif);font-size:clamp(32px,4vw,48px);font-weight:500;line-height:1.02;letter-spacing:-.035em;color:var(--navy);margin:0 44px 10px 0}
.salon-choice-top p{max-width:64ch;margin:0;color:var(--muted);font-size:.92rem}
.salon-choice-close{position:absolute;top:18px;right:18px;width:42px;height:42px;border:1px solid var(--line);background:#fff;color:var(--navy);display:grid;place-items:center;cursor:pointer;font-size:1.3rem;line-height:1;transition:.2s ease}
.salon-choice-close:hover{background:var(--navy);color:#fff}
.salon-choice-options{display:grid;grid-template-columns:1fr 1fr;gap:0}
.salon-choice-option{padding:30px 32px 32px;display:flex;min-height:240px;flex-direction:column;align-items:flex-start;justify-content:space-between;gap:22px;transition:background .22s ease,transform .22s ease}
.salon-choice-option + .salon-choice-option{border-left:1px solid var(--line)}
.salon-choice-option:hover{background:#f8faff}
.salon-choice-num{font-family:var(--serif);font-size:1.5rem;color:#86a9dc}
.salon-choice-option h3{font-family:var(--serif);font-size:1.75rem;line-height:1.08;font-weight:500;color:var(--navy);margin:0 0 9px}
.salon-choice-option p{font-size:.84rem;line-height:1.55;color:var(--muted);margin:0}
.salon-choice-link{display:inline-flex;align-items:center;gap:9px;font-size:.78rem;font-weight:800;letter-spacing:.02em;color:var(--brand)}
.salon-choice-option.external{background:#1c1414;color:#f7efe4}
.salon-choice-option.external:hover{background:#251919}
.salon-choice-option.external .salon-choice-num{color:#cf7e68}
.salon-choice-option.external h3{color:#fff}
.salon-choice-option.external p{color:#cbbdb6}
.salon-choice-option.external .salon-choice-link{color:#e69078}
body.salon-choice-open{overflow:hidden}

@media(max-width:640px){
  .salon-choice-backdrop{padding:14px;align-items:end}
  .salon-choice-dialog{max-height:92vh;overflow:auto}
  .salon-choice-top{padding:27px 23px 20px}
  .salon-choice-top h2{font-size:clamp(30px,9vw,40px);margin-right:38px}
  .salon-choice-top p{font-size:.84rem}
  .salon-choice-close{top:14px;right:14px;width:38px;height:38px}
  .salon-choice-options{grid-template-columns:1fr}
  .salon-choice-option{min-height:0;padding:23px;gap:16px}
  .salon-choice-option + .salon-choice-option{border-left:0;border-top:1px solid var(--line)}
  .salon-choice-option h3{font-size:1.5rem}
}

@media(prefers-reduced-motion:reduce){
  .salon-choice-backdrop,.salon-choice-dialog{transition:none!important}
}

/* Salon discovery triggers: any intentional salon-related touchpoint opens the destination chooser */
[data-salon-choice="true"]{cursor:pointer}
[data-salon-choice="true"][role="button"]:focus-visible{
  outline:3px solid rgba(60,106,192,.38);
  outline-offset:4px;
}
.gallery-item[data-salon-choice="true"]{position:relative}
.gallery-item[data-salon-choice="true"]::after{
  content:'Salon options';position:absolute;right:10px;top:10px;padding:6px 9px;
  background:rgba(28,20,20,.88);color:#fff;font-size:.64rem;font-weight:800;
  letter-spacing:.06em;text-transform:uppercase;opacity:0;transform:translateY(-4px);
  transition:.2s ease;pointer-events:none
}
.gallery-item[data-salon-choice="true"]:hover::after,.gallery-item[data-salon-choice="true"]:focus-visible::after{opacity:1;transform:none}
@media(max-width:700px){.gallery-item[data-salon-choice="true"]::after{opacity:1;transform:none}}


/* First-entry experience chooser on the homepage */
body.entry-gate-open{overflow:hidden}
.site-entry-gate{
  position:fixed;inset:0;z-index:500;display:grid;place-items:center;padding:28px;
  background:
    radial-gradient(circle at 18% 12%,rgba(85,133,202,.22),transparent 34%),
    radial-gradient(circle at 86% 84%,rgba(199,111,88,.18),transparent 32%),
    #f5f2ec;
  overflow:auto;opacity:1;visibility:visible;transition:opacity .3s ease,visibility .3s ease;
}
.site-entry-gate.is-closing{opacity:0;visibility:hidden;pointer-events:none}
.entry-gate-shell{width:min(1160px,100%);margin:auto}
.entry-gate-brand{display:grid;grid-template-columns:auto minmax(0,1fr);align-items:center;gap:24px;margin-bottom:26px}
.entry-gate-logo{width:116px;height:auto;display:block}
.entry-gate-kicker{display:block;margin-bottom:8px;color:var(--brand);font-size:.7rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase}
.entry-gate-brand h1{margin:0;color:var(--navy);font-family:var(--serif);font-weight:500;font-size:clamp(38px,5vw,66px);line-height:.96;letter-spacing:-.045em}
.entry-gate-brand p{margin:11px 0 0;color:var(--muted);font-size:.95rem;max-width:60ch}
.entry-gate-options{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.entry-gate-card{
  position:relative;min-height:430px;overflow:hidden;border:0;padding:0;text-align:left;cursor:pointer;
  background:#111;color:#fff;box-shadow:0 24px 70px rgba(11,29,50,.16);text-decoration:none;
  isolation:isolate;transition:transform .28s ease,box-shadow .28s ease;
}
.entry-gate-card:hover,.entry-gate-card:focus-visible{transform:translateY(-5px);box-shadow:0 30px 90px rgba(11,29,50,.24)}
.entry-gate-card:focus-visible{outline:3px solid rgba(60,106,192,.58);outline-offset:4px}
.entry-gate-card>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;transition:transform .7s ease}
.entry-gate-card:hover>img,.entry-gate-card:focus-visible>img{transform:scale(1.035)}
.entry-gate-card-shade{position:absolute;inset:0;z-index:-1;background:linear-gradient(0deg,rgba(8,20,34,.94) 0%,rgba(8,20,34,.58) 45%,rgba(8,20,34,.08) 78%)}
.entry-gate-card-salon .entry-gate-card-shade{background:linear-gradient(0deg,rgba(31,18,18,.95) 0%,rgba(31,18,18,.58) 45%,rgba(31,18,18,.08) 78%)}
.entry-gate-card-copy{position:absolute;left:0;right:0;bottom:0;display:block;padding:32px}
.entry-gate-label{display:block;margin-bottom:10px;font-size:.69rem;font-weight:800;letter-spacing:.13em;text-transform:uppercase;color:#d9e7fb}
.entry-gate-card-salon .entry-gate-label{color:#f2c0b2}
.entry-gate-card strong{display:block;max-width:12ch;font-family:var(--serif);font-size:clamp(32px,3.5vw,49px);line-height:.98;font-weight:500;letter-spacing:-.035em;color:#fff}
.entry-gate-action{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:24px;padding-top:17px;border-top:1px solid rgba(255,255,255,.28);font-size:.78rem;font-weight:800;letter-spacing:.02em;color:#fff}
.entry-gate-action b{font-size:1.2rem;font-weight:400;transition:transform .2s ease}
.entry-gate-card:hover .entry-gate-action b,.entry-gate-card:focus-visible .entry-gate-action b{transform:translateX(5px)}
.entry-gate-note{margin:18px 0 0;text-align:center;color:#7b8189;font-size:.76rem}
@media(max-width:760px){
  .site-entry-gate{place-items:start center;padding:20px 14px}
  .entry-gate-shell{margin:auto 0}
  .entry-gate-brand{grid-template-columns:1fr;gap:13px;margin-bottom:18px;text-align:center}
  .entry-gate-logo{width:92px;margin:0 auto}
  .entry-gate-brand h1{font-size:clamp(35px,10vw,48px)}
  .entry-gate-brand p{font-size:.84rem;margin-left:auto;margin-right:auto}
  .entry-gate-options{grid-template-columns:1fr;gap:12px}
  .entry-gate-card{min-height:245px}
  .entry-gate-card-copy{padding:22px}
  .entry-gate-card strong{font-size:clamp(29px,8.8vw,39px);max-width:13ch}
  .entry-gate-action{margin-top:16px;padding-top:13px}
  .entry-gate-note{margin-top:13px}
}
@media(max-width:430px){
  .site-entry-gate{padding:14px 11px}
  .entry-gate-brand{margin-bottom:14px}
  .entry-gate-logo{width:78px}
  .entry-gate-brand h1{font-size:34px}
  .entry-gate-brand p{display:none}
  .entry-gate-card{min-height:210px}
  .entry-gate-card-copy{padding:18px}
  .entry-gate-label{font-size:.59rem;margin-bottom:7px}
  .entry-gate-card strong{font-size:29px}
  .entry-gate-action{font-size:.7rem;margin-top:13px;padding-top:11px}
  .entry-gate-note{font-size:.67rem}
}
@media(prefers-reduced-motion:reduce){
  .site-entry-gate,.entry-gate-card,.entry-gate-card>img,.entry-gate-action b{transition:none!important}
}


/* ========================================================================== */
/* V14 — Premium entrance + complete Reya service catalogue                   */
/* ========================================================================== */
.entry-gate-kicker{font-size:.76rem;line-height:1.35;letter-spacing:.12em;max-width:760px}
.entry-gate-card{background:#0f2136;isolation:isolate}
.entry-gate-card-salon{background:linear-gradient(145deg,#291b1a 0%,#5e3028 54%,#bb715e 100%)}
.entry-gate-card-clinic{background:linear-gradient(145deg,#102846 0%,#285692 55%,#6f9bdd 100%)}
.entry-gate-card-shade{background:linear-gradient(0deg,rgba(8,18,31,.94) 0%,rgba(8,18,31,.68) 35%,rgba(8,18,31,.04) 77%)}
.entry-gate-card-salon .entry-gate-card-shade{background:linear-gradient(0deg,rgba(35,18,17,.96) 0%,rgba(35,18,17,.68) 35%,rgba(35,18,17,.03) 77%)}
.entry-card-art{position:absolute;inset:0;overflow:hidden;z-index:-1}
.entry-card-art::before{content:'';position:absolute;width:290px;height:290px;border:1px solid rgba(255,255,255,.25);border-radius:50%;left:50%;top:-24px;transform:translateX(-50%)}
.entry-card-art::after{content:'';position:absolute;width:210px;height:210px;border:1px solid rgba(255,255,255,.16);border-radius:50%;left:50%;top:18px;transform:translateX(-50%)}
.art-glow{position:absolute;border-radius:50%;filter:blur(1px);opacity:.8}
.art-glow-a{width:170px;height:170px;top:-34px;left:-28px;background:rgba(255,255,255,.16)}
.art-glow-b{width:190px;height:190px;right:-50px;top:76px;background:rgba(255,255,255,.10)}
.art-monogram{position:absolute;left:50%;top:38px;transform:translateX(-50%);font-family:var(--serif);font-size:136px;line-height:1;color:rgba(255,255,255,.09);font-weight:500}
.art-line-icon{position:absolute;left:50%;top:32px;transform:translateX(-50%);width:170px;height:170px;fill:none;stroke:rgba(255,255,255,.9);stroke-width:2.2;stroke-linecap:round;stroke-linejoin:round}
.art-chip{position:absolute;padding:8px 12px;border:1px solid rgba(255,255,255,.28);background:rgba(255,255,255,.10);backdrop-filter:blur(8px);color:#fff;font-size:.61rem;font-weight:800;letter-spacing:.16em}
.art-chip-1{top:48px;left:36px;transform:rotate(-6deg)}
.art-chip-2{top:104px;right:32px;transform:rotate(5deg)}
.art-chip-3{top:174px;left:56px;transform:rotate(3deg)}
.art-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);background-size:44px 44px;mask-image:linear-gradient(to bottom,#000 0%,transparent 70%)}
.entry-gate-card-copy{padding:34px}
.entry-gate-card strong{max-width:14ch}
.entry-gate-action{margin-top:20px}

.services-hero-collage{display:grid;grid-template-columns:1.1fr .9fr;gap:10px;background:transparent}
.services-hero-collage img{height:330px!important;width:100%;object-fit:cover}
.services-hero-collage img:last-child{transform:translateY(24px)}
.service-count-strip{background:#fff;border-bottom:1px solid var(--line)}
.service-count-strip .container{display:grid;grid-template-columns:repeat(3,1fr) auto;align-items:center;gap:0}
.service-count-strip .container>div{display:flex;align-items:center;gap:12px;padding:18px 24px;border-right:1px solid var(--line)}
.service-count-strip strong{font-family:var(--serif);font-size:2.2rem;font-weight:500;color:var(--brand)}
.service-count-strip span{font-size:.78rem;color:var(--muted)}
.service-count-strip a{padding:18px 24px;font-size:.78rem;font-weight:800;color:var(--brand)}
.complete-services{background:var(--paper)}
.complete-service-block{display:grid;grid-template-columns:.58fr 1.42fr;gap:34px;padding:42px 0;border-bottom:1px solid var(--line);align-items:start}
.complete-service-heading{position:sticky;top:112px}
.complete-service-heading .h-section{font-size:clamp(34px,3.4vw,51px);margin:8px 0 14px}
.complete-service-heading p{color:var(--muted);max-width:43ch}
.service-list-complete{grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}
.service-item-complete .service-media{aspect-ratio:4/2.65}
.service-item-complete .service-body{padding:15px 16px 17px}
.service-item-complete .service-body h3{font-size:1.18rem;line-height:1.08}
.service-item-complete .service-body p{font-size:.75rem;line-height:1.52}
.service-enquire{margin-top:auto;padding-top:13px;font-size:.69rem;font-weight:800;color:var(--brand)}
.salon-crosslink{background:#1c1414;color:#fff}
.salon-crosslink-grid{display:grid;grid-template-columns:1fr .8fr;gap:38px;align-items:center}
.salon-crosslink .h-section{color:#fff;margin:8px 0 14px}
.salon-crosslink p{color:#cdbeb6;max-width:55ch}
.salon-crosslink-art{height:290px;position:relative;border:1px solid rgba(255,255,255,.12);background:radial-gradient(circle at 50% 45%,rgba(201,120,99,.22),transparent 34%),linear-gradient(135deg,#251919,#3e2826);overflow:hidden}
.salon-crosslink-art b{position:absolute;inset:50% auto auto 50%;transform:translate(-50%,-50%);font-family:var(--serif);font-size:9rem;color:rgba(255,255,255,.12);font-weight:500}
.salon-crosslink-art span{position:absolute;border:1px solid rgba(255,255,255,.24);padding:9px 14px;font-size:.62rem;font-weight:800;letter-spacing:.16em}
.salon-crosslink-art span:nth-child(1){left:12%;top:20%;transform:rotate(-7deg)}
.salon-crosslink-art span:nth-child(2){right:10%;top:38%;transform:rotate(7deg)}
.salon-crosslink-art span:nth-child(3){left:24%;bottom:18%;transform:rotate(4deg)}

.salon-hero-v14{padding:46px 0}
.salon-photos-v14{display:grid;grid-template-columns:1.25fr .75fr;grid-template-rows:1fr 1fr;gap:10px}
.salon-photos-v14 img{height:180px!important;width:100%;object-fit:cover}
.salon-photos-v14 img:first-child{grid-row:1/span 2;height:370px!important}
.salon-service-count{background:#2a1c1b;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08)}
.salon-service-count .container{display:flex;align-items:center;gap:16px;padding:15px 0;color:#fff}
.salon-service-count strong{font-family:var(--serif);font-size:2.25rem;color:var(--salmon);font-weight:500}
.salon-service-count span{font-weight:700}
.salon-service-count i{margin-left:auto;color:#bfaea7;font-style:normal;font-size:.76rem}
.salon-service-directory{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.salon-directory-card{background:#251a19;border:1px solid rgba(255,255,255,.08);overflow:hidden;transition:transform .25s ease,box-shadow .25s ease}
.salon-directory-card:hover{transform:translateY(-4px);box-shadow:0 18px 38px rgba(0,0,0,.22)}
.salon-directory-media{position:relative;aspect-ratio:4/2.75;overflow:hidden;background:#3a2724}
.salon-directory-media img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.salon-directory-card:hover img{transform:scale(1.03)}
.salon-directory-media span{position:absolute;top:12px;left:12px;background:rgba(28,20,20,.82);color:#fff;padding:6px 9px;font-family:var(--serif);font-size:1rem}
.salon-directory-copy{padding:17px 18px 19px}
.salon-directory-copy h3{font-family:var(--serif);font-size:1.35rem;font-weight:500;color:#fff;margin:0 0 8px;line-height:1.1}
.salon-directory-copy p{font-size:.78rem;color:#cdbeb6;margin:0 0 13px}
.salon-directory-copy a{font-size:.72rem;font-weight:800;color:#e39a86}

@media(max-width:1080px){
  .service-list-complete{grid-template-columns:repeat(2,minmax(0,1fr))}
  .complete-service-block{grid-template-columns:.65fr 1.35fr}
  .salon-service-directory{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:760px){
  .entry-gate-kicker{font-size:.66rem}
  .entry-gate-card{min-height:255px}
  .entry-card-art::before{width:190px;height:190px;top:-14px}
  .entry-card-art::after{width:140px;height:140px;top:12px}
  .art-line-icon{width:112px;height:112px;top:18px}
  .art-monogram{font-size:90px;top:18px}
  .art-chip{padding:5px 8px;font-size:.52rem}
  .art-chip-1{top:25px;left:20px}.art-chip-2{top:62px;right:18px}.art-chip-3{top:112px;left:28px}
  .entry-gate-card-copy{padding:21px}
  .service-count-strip .container{grid-template-columns:1fr 1fr}
  .service-count-strip .container>div{padding:14px 12px;border-bottom:1px solid var(--line)}
  .service-count-strip a{padding:14px 12px}
  .complete-service-block{grid-template-columns:1fr;gap:18px;padding:34px 0}
  .complete-service-heading{position:static}
  .service-list-complete{grid-template-columns:1fr}
  .services-hero-collage{grid-template-columns:1fr 1fr}
  .services-hero-collage img{height:220px!important}.services-hero-collage img:last-child{transform:translateY(12px)}
  .salon-crosslink-grid{grid-template-columns:1fr}
  .salon-crosslink-art{height:220px}
  .salon-service-directory{grid-template-columns:1fr}
  .salon-service-count .container{flex-wrap:wrap;gap:8px 12px}
  .salon-service-count i{width:100%;margin-left:0}
  .salon-photos-v14{grid-template-columns:1fr 1fr}.salon-photos-v14 img:first-child{grid-column:1/span 2;height:240px!important}.salon-photos-v14 img{height:150px!important}
}

/* ========================================================================== */
/* V15 — logo-led entrance + complete salon catalogue                         */
/* ========================================================================== */
.entry-gate-brand{display:block;max-width:940px;margin:0 auto 26px;text-align:center}
.entry-gate-brand>div{max-width:900px;margin:auto}
.entry-gate-brand p{margin-left:auto;margin-right:auto;max-width:66ch}
.entry-gate-card{min-height:440px;border-radius:2px}
.entry-gate-card>.entry-card-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-3;filter:saturate(.84) contrast(.98);transition:transform .7s ease,filter .4s ease}
.entry-gate-card:hover>.entry-card-bg,.entry-gate-card:focus-visible>.entry-card-bg{transform:scale(1.045);filter:saturate(.96) contrast(1.02)}
.entry-gate-card-shade{z-index:-1;background:linear-gradient(0deg,rgba(6,22,42,.96) 0%,rgba(6,22,42,.68) 48%,rgba(6,22,42,.13) 100%)}
.entry-gate-card-salon .entry-gate-card-shade{background:linear-gradient(0deg,rgba(49,16,18,.97) 0%,rgba(65,21,23,.68) 48%,rgba(69,18,21,.13) 100%)}
.entry-card-logo{position:absolute;z-index:2;left:28px;top:26px;display:grid;place-items:center;min-height:94px;padding:13px 18px;background:rgba(255,255,255,.93);box-shadow:0 12px 34px rgba(10,18,28,.16);backdrop-filter:blur(10px)}
.entry-card-logo img{display:block;width:auto;max-width:210px;max-height:84px;object-fit:contain}
.entry-card-logo-salon img{max-width:220px;max-height:74px}
.entry-card-logo-clinic img{max-width:180px;max-height:98px}
.entry-gate-card-copy{z-index:3}
.entry-gate-card strong{max-width:15ch}
.salon-header .brandmark img{max-width:155px;max-height:72px;object-fit:contain}
.salon-footer .footer-logo img{max-width:180px;max-height:86px;object-fit:contain}
.salon-directory-card{display:flex;flex-direction:column}
.salon-directory-copy{display:flex;flex-direction:column;flex:1}
.salon-directory-copy>p{min-height:3.7em}
.salon-service-more{margin:2px 0 15px;border-top:1px solid rgba(255,255,255,.1);border-bottom:1px solid rgba(255,255,255,.1);padding:10px 0;color:#d7c9c2}
.salon-service-more summary{cursor:pointer;font-size:.72rem;font-weight:800;color:#f0a28d;list-style:none}
.salon-service-more summary::-webkit-details-marker{display:none}
.salon-service-more summary::after{content:' +';float:right}
.salon-service-more[open] summary::after{content:' –'}
.salon-service-more ul{margin:10px 0 2px;padding-left:18px}
.salon-service-more li{font-size:.72rem;line-height:1.55;margin:3px 0;color:#cdbeb6}
.salon-book-link{margin-top:auto;display:inline-flex!important;align-items:center;justify-content:space-between}
.salon-directory-media img{background:#3a2724}
@media(max-width:760px){
  .entry-gate-brand{margin-bottom:18px}
  .entry-card-logo{left:18px;top:17px;min-height:66px;padding:9px 12px}
  .entry-card-logo-salon img{max-width:150px;max-height:54px}
  .entry-card-logo-clinic img{max-width:125px;max-height:70px}
  .entry-gate-card{min-height:280px}
  .salon-directory-copy>p{min-height:0}
}
@media(max-width:430px){
  .entry-gate-brand h1{font-size:31px}
  .entry-gate-kicker{font-size:.61rem;letter-spacing:.1em}
  .entry-gate-card{min-height:238px}
  .entry-card-logo{left:14px;top:13px;min-height:54px;padding:7px 10px}
  .entry-card-logo-salon img{max-width:124px;max-height:44px}
  .entry-card-logo-clinic img{max-width:104px;max-height:56px}
}
/* V15.1 — keep both option logos centered inside their cards */
.entry-card-logo{left:50%;right:auto;transform:translateX(-50%);top:24px}
@media(max-width:760px){.entry-card-logo{left:50%;top:16px}}
@media(max-width:430px){.entry-card-logo{left:50%;top:12px}}
