:root{
  --ivory:#f8f5f2;
  --ivory-soft:#fcfaf8;
  --taupe-light:#c0b5ad;
  --taupe:#9a8e86;
  --taupe-deep:#6e615a;
  --espresso:#3a3330;
  --espresso-deep:#141313;
  --ink:#221e1b;
  --line:#e2d9cf;
  --serif:'Playfair Display',Georgia,serif;
  --sans:'Jost',system-ui,sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{font-family:var(--sans);color:var(--ink);background:var(--ivory-soft);font-weight:300;line-height:1.75;letter-spacing:.01em;-webkit-font-smoothing:antialiased;}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.ph{color:var(--taupe-deep);font-style:italic;font-size:.82em;font-weight:400;}
::selection{background:var(--taupe-light);color:var(--espresso-deep);}
:focus-visible{outline:2px solid var(--espresso-deep);outline-offset:3px;border-radius:2px;}
.section-dark :focus-visible,.section-photo :focus-visible,footer :focus-visible,header:not(.scrolled) :focus-visible{outline-color:var(--taupe-light);}
.skip-link{position:absolute;top:-3rem;left:1rem;z-index:1000;background:var(--espresso-deep);color:var(--ivory-soft);padding:.8rem 1.3rem;border-radius:4px;font-size:.85rem;transition:top .2s ease;}
.skip-link:focus{top:1rem;}

/* ---------- header / nav ---------- */
header{position:fixed;top:0;left:0;right:0;height:112px;z-index:100;background:transparent;border-bottom:1px solid transparent;transition:background .4s ease,border-color .4s ease,opacity .4s ease,transform .4s ease;}
header.on-hero{opacity:0;transform:translateY(-10px);pointer-events:none;}
header.on-hero.scrolled{opacity:1;transform:translateY(0);pointer-events:auto;}
header.scrolled{background:rgba(252,250,248,.94);backdrop-filter:blur(12px);border-bottom-color:var(--line);}
.nav{max-width:1280px;margin:0 auto;height:112px;padding:0 2.2rem;display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:1.5rem;}
.brand{display:flex;flex-direction:column;justify-self:start;line-height:1;gap:.05rem;}
.brand .b-eyebrow{display:block;font-family:var(--serif);font-style:italic;font-weight:400;font-size:1.15rem;letter-spacing:.02em;color:var(--taupe-light);margin-left:.4rem;transition:color .4s;}
.brand .b-main{display:block;font-family:var(--serif);font-weight:700;font-size:2.4rem;letter-spacing:-.005em;text-transform:uppercase;color:var(--ivory-soft);white-space:nowrap;transition:color .4s;margin-top:.05rem;}
.brand .b-sub-row{display:flex;align-items:center;gap:.5rem;margin-top:.5rem;margin-left:.1rem;}
.brand .b-bar{width:30px;height:2px;background:var(--taupe-light);transition:background .4s;}
.brand .b-sub{font-family:var(--sans);font-size:.7rem;font-weight:500;letter-spacing:.22em;text-transform:uppercase;color:var(--taupe-light);white-space:nowrap;transition:color .4s;}
header.scrolled .brand .b-main{color:var(--espresso-deep);}
header.scrolled .brand .b-eyebrow,header.scrolled .brand .b-sub{color:var(--taupe-deep);}
header.scrolled .brand .b-bar{background:var(--taupe-deep);}
.nav-links{display:flex;align-items:center;gap:2.4rem;list-style:none;justify-self:center;}
.nav-links a{font-size:.78rem;letter-spacing:.16em;text-transform:uppercase;font-weight:400;color:rgba(248,245,242,.92);padding:.3rem 0;position:relative;transition:color .3s;}
header.scrolled .nav-links a{color:var(--ink);}
.nav-links a:hover,.nav-links a.active{color:var(--ivory-soft);}
header.scrolled .nav-links a:hover,header.scrolled .nav-links a.active{color:var(--espresso-deep);}
.btn-book{font-family:var(--sans);font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;font-weight:500;color:var(--ivory-soft);background:transparent;padding:.75rem 1.7rem;border:1px solid var(--ivory-soft);cursor:pointer;border-radius:0;transition:background .3s,color .3s,border-color .3s,transform .25s;justify-self:end;}
header.scrolled .btn-book{color:var(--espresso-deep);border-color:var(--espresso-deep);background:transparent;}
.btn-book:hover{background:var(--ivory-soft);color:var(--espresso-deep);transform:translateY(-1px);}
header.scrolled .btn-book:hover{background:var(--espresso-deep);color:var(--ivory-soft);}
.nav-toggle{display:none;background:none;border:none;cursor:pointer;font-size:1.5rem;color:var(--ivory-soft);transition:color .4s;justify-self:end;}
header.scrolled .nav-toggle{color:var(--espresso-deep);}

.page-content{animation:fade .6s ease;padding-top:112px;}
@keyframes fade{from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:none;}}

/* ---------- buttons ---------- */
.btn-lg{font-family:var(--sans);font-size:.76rem;letter-spacing:.16em;text-transform:uppercase;font-weight:500;padding:1rem 2.3rem;cursor:pointer;border-radius:100px;transition:.3s;display:inline-block;}
.btn-primary{background:var(--espresso-deep);color:var(--ivory-soft);border:1px solid var(--espresso-deep);}
.btn-primary:hover{background:var(--taupe-deep);border-color:var(--taupe-deep);transform:translateY(-1px);}
.btn-ghost{background:transparent;color:var(--espresso-deep);border:1px solid var(--taupe);}
.btn-ghost:hover{border-color:var(--espresso-deep);background:rgba(20,19,19,.04);}
.section-taupe .btn-ghost{border-color:var(--espresso-deep);}
.btn-cream{background:var(--ivory-soft);color:var(--espresso-deep);border:1px solid var(--ivory-soft);}
.btn-cream:hover{background:var(--taupe-light);border-color:var(--taupe-light);transform:translateY(-1px);}

/* ---------- hero ---------- */
.hero-full{position:relative;min-height:100vh;display:flex;flex-direction:column;align-items:center;justify-content:center;overflow:hidden;background:url('images/legs-group-photo.jpg') center 25% / cover no-repeat;}
.hero-full::before{content:'';position:absolute;inset:0;z-index:0;background:linear-gradient(180deg,rgba(20,19,19,.72) 0%,rgba(20,19,19,.6) 45%,rgba(20,19,19,.82) 100%);pointer-events:none;}
.hero-eyebrow{position:relative;z-index:2;font-family:var(--sans);font-size:.75rem;letter-spacing:.4em;text-transform:uppercase;color:var(--taupe-light);margin-bottom:1.6rem;}
.hero-brand{position:relative;z-index:2;text-align:center;line-height:1;padding:0 1rem;}
.hero-brand .hb-eyebrow{display:block;font-family:var(--serif);font-style:italic;font-weight:400;font-size:clamp(1.7rem,3.2vw,2.5rem);letter-spacing:.02em;color:var(--taupe-light);}
.hero-brand .hb-main{display:block;font-family:var(--serif);font-weight:700;font-size:clamp(5.4rem,13.5vw,11rem);line-height:.95;letter-spacing:-.01em;text-transform:uppercase;color:var(--ivory-soft);margin-top:.1rem;}
.hero-brand .hb-divider{display:block;width:92px;height:1px;background:rgba(248,245,242,.45);margin:1.9rem auto;}
.hero-brand .hb-sub{display:block;font-family:var(--sans);font-size:clamp(1.15rem,2.3vw,1.55rem);font-weight:500;letter-spacing:.35em;text-transform:uppercase;color:var(--taupe-light);}
.hero-lead{position:relative;z-index:2;text-align:center;color:rgba(248,245,242,.78);font-size:1.18rem;font-weight:300;max-width:62ch;margin:1.6rem auto 0;padding:0 1rem;}
.hero-cta-row{position:relative;z-index:2;display:flex;gap:1.3rem;margin-top:2.8rem;flex-wrap:wrap;justify-content:center;padding:0 1rem;}
.hero-cta-row .btn-lg{font-size:.98rem;padding:1.3rem 3rem;}
.hero-badge{position:relative;z-index:2;margin-top:2.1rem;display:flex;align-items:center;gap:.7rem;color:var(--taupe-light);font-size:1.08rem;letter-spacing:.06em;}
.hero-badge .stars{color:var(--taupe-light);letter-spacing:.1em;}
.hero-scroll{position:absolute;bottom:2.2rem;left:50%;transform:translateX(-50%);z-index:2;width:1px;height:46px;background:linear-gradient(rgba(248,245,242,.6),transparent);}

/* ---------- sections ---------- */
section{padding:6.5rem 2.2rem;}
.wrap{max-width:1280px;margin:0 auto;}
.wrap-narrow{max-width:820px;margin:0 auto;}
.section-ivory{background:var(--ivory);}
.section-taupe{background:var(--taupe-light);}
.section-dark{background:var(--espresso);color:var(--ivory);}
.section-photo{position:relative;color:var(--ivory);background:url('images/visit-us-bg.jpg') center 62% / cover no-repeat;overflow:hidden;padding:9.5rem 2.2rem;}
.section-photo .wrap-narrow{max-width:1040px;}
.section-photo h2.sec-title{font-size:clamp(2.1rem,3.6vw,3.4rem);white-space:nowrap;}
.section-photo::before{content:'';position:absolute;inset:0;background:linear-gradient(180deg,rgba(20,19,19,.74) 0%,rgba(20,19,19,.84) 100%);pointer-events:none;}
.section-photo>*{position:relative;z-index:1;}
.center{text-align:center;}
.sec-eyebrow{font-size:.72rem;letter-spacing:.36em;text-transform:uppercase;color:var(--taupe-deep);font-weight:500;margin-bottom:1.3rem;}
.section-dark .sec-eyebrow,.section-photo .sec-eyebrow{color:var(--taupe-light);}
h1.pg-title,h2.sec-title{font-family:var(--serif);font-size:clamp(2.3rem,4vw,3.3rem);font-weight:400;line-height:1.12;color:var(--espresso-deep);margin-bottom:1.4rem;letter-spacing:.005em;}
.section-dark h2.sec-title,.section-photo h2.sec-title{color:var(--ivory-soft);}
h2.sec-title em,h1.pg-title em{font-style:italic;color:var(--taupe-deep);}
.section-dark h2.sec-title em,.section-photo h2.sec-title em{color:var(--taupe-light);}
.lead{font-size:1.06rem;color:var(--espresso-deep);opacity:.75;max-width:62ch;font-weight:300;}
.section-dark .lead,.section-photo .lead{color:var(--ivory-soft);opacity:.85;}
.section-photo .btn-ghost{color:var(--ivory-soft);border-color:rgba(248,245,242,.4);}
.section-photo .btn-ghost:hover{border-color:var(--ivory-soft);background:rgba(248,245,242,.08);}
.center .lead{margin-left:auto;margin-right:auto;}
.divider{width:52px;height:1px;background:var(--taupe-deep);margin:1.8rem 0;opacity:.7;}
.center .divider{margin-left:auto;margin-right:auto;}

/* ---------- placeholder image blocks (no fake photography) ---------- */
.img-slot{position:relative;border-radius:4px;overflow:hidden;background:linear-gradient(135deg,var(--taupe-light),var(--taupe));display:flex;align-items:center;justify-content:center;min-height:340px;}
.img-slot::before{content:'';position:absolute;inset:0;background-image:repeating-linear-gradient(135deg,rgba(255,255,255,.06) 0 2px,transparent 2px 26px);}
.img-slot-label{position:relative;z-index:1;font-family:var(--sans);font-size:.7rem;letter-spacing:.24em;text-transform:uppercase;color:var(--ivory-soft);background:rgba(20,19,19,.42);padding:.7rem 1.1rem;border-radius:100px;}
.img-photo{border-radius:4px;overflow:hidden;min-height:340px;}
.img-photo img{width:100%;height:100%;object-fit:cover;object-position:center 18%;}

/* ---------- services grid ---------- */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2.2rem;margin-top:3.5rem;}
.services-grid-2{grid-template-columns:repeat(2,1fr);gap:2.6rem;}
.services-grid-2 .service-img,.services-grid-2 .service-img-bottom{height:300px;}
.service-card{background:var(--ivory-soft);border:1px solid var(--line);border-radius:6px;padding:2.6rem 2.1rem;transition:transform .3s,box-shadow .3s;overflow:hidden;}
.service-card:hover{transform:translateY(-6px);box-shadow:0 22px 44px -20px rgba(20,19,19,.25);}
.service-img{width:calc(100% + 4.2rem);max-width:none;margin:-2.6rem -2.1rem 1.8rem;display:block;height:200px;object-fit:cover;}
.service-img-bottom{width:calc(100% + 4.2rem);max-width:none;display:block;height:200px;object-fit:cover;margin:1.8rem -2.1rem -2.6rem;}
.service-num{font-family:var(--serif);font-style:italic;font-size:1.1rem;color:var(--taupe-deep);margin-bottom:1.4rem;}
.service-card h3{font-family:var(--serif);font-size:1.5rem;font-weight:400;color:var(--espresso-deep);margin-bottom:.4rem;}
.service-tag{font-size:.68rem;letter-spacing:.16em;text-transform:uppercase;color:var(--taupe-deep);margin-bottom:1.1rem;font-weight:500;}
.service-card p{font-size:.94rem;color:var(--ink);opacity:.82;margin-bottom:1.3rem;}
.service-card ul{list-style:none;font-size:.88rem;color:var(--ink);opacity:.8;display:flex;flex-direction:column;gap:.5rem;margin-bottom:1.5rem;}
.service-card li{padding-left:1.1rem;position:relative;}
.service-card li::before{content:'';position:absolute;left:0;top:.55em;width:6px;height:1px;background:var(--taupe-deep);}
.service-card a.card-link{font-size:.75rem;letter-spacing:.14em;text-transform:uppercase;color:var(--espresso-deep);border-bottom:1px solid var(--taupe);padding-bottom:.2rem;}

/* ---------- instagram ---------- */
.insta-section{padding-bottom:0;}
.insta-head{display:flex;align-items:center;gap:2rem;margin-bottom:2.6rem;}
.insta-head .sec-title{margin-bottom:0;white-space:nowrap;}
.insta-line{flex:1;height:1px;background:rgba(248,245,242,.2);}
.insta-handle{flex-shrink:0;font-family:var(--sans);font-size:.8rem;letter-spacing:.14em;text-transform:uppercase;color:var(--taupe-light);transition:color .3s;}
.insta-handle:hover{color:var(--ivory-soft);}
.insta-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:.5rem;}
.insta-item{display:block;aspect-ratio:1/1;overflow:hidden;position:relative;}
.insta-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease;}
.insta-item:hover img{transform:scale(1.06);}

/* ---------- reviews ---------- */
.reviews-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:1.4rem;margin-top:3.5rem;text-align:left;align-items:start;}
.review-card{background:var(--ivory-soft);border:1px solid var(--line);border-radius:6px;padding:1.6rem 1.4rem;}
.review-head{display:flex;align-items:center;gap:.7rem;margin-bottom:.9rem;}
.review-avatar{flex-shrink:0;width:36px;height:36px;border-radius:50%;background:var(--espresso-deep);color:var(--ivory-soft);display:flex;align-items:center;justify-content:center;font-family:var(--serif);font-size:.95rem;}
.review-name{font-size:.86rem;font-weight:500;color:var(--espresso-deep);line-height:1.3;}
.review-meta{font-size:.72rem;color:var(--taupe-deep);}
.review-stars{color:#d4a94e;font-size:.85rem;letter-spacing:.1em;margin-bottom:.8rem;}
.review-text{font-size:.82rem;line-height:1.6;color:var(--ink);opacity:.82;}

/* ---------- full menu ---------- */
.menu-cat{margin-bottom:4.2rem;}
.menu-cat:last-of-type{margin-bottom:0;}
.menu-cat h2{font-family:var(--serif);font-size:1.3rem;font-weight:700;text-transform:uppercase;letter-spacing:-.005em;text-align:center;color:var(--espresso-deep);margin-bottom:1.1rem;padding-bottom:.7rem;border-bottom:1px solid var(--taupe);}
.menu-cat-note{font-family:var(--serif);font-style:italic;font-size:.9rem;text-align:center;color:var(--taupe-deep);margin:-.6rem 0 1.4rem;}
.menu-item{display:flex;justify-content:space-between;align-items:baseline;gap:1.5rem;padding:.9rem 0;border-bottom:1px solid var(--line);}
.menu-item:last-child{border-bottom:none;}
.menu-name{display:block;font-size:.98rem;font-weight:500;color:var(--espresso-deep);}
.menu-desc{display:block;font-size:.82rem;color:var(--ink);opacity:.72;margin-top:.3rem;max-width:56ch;line-height:1.55;}
.menu-price{flex-shrink:0;font-size:.95rem;font-weight:600;color:var(--taupe-deep);white-space:nowrap;}
.menu-price-was{display:block;font-size:.72rem;font-weight:400;text-decoration:line-through;color:var(--taupe-deep);text-align:right;}
.menu-band{padding:5rem 2.2rem;}
.section-dark .menu-cat h2{color:var(--ivory-soft);border-bottom-color:rgba(248,245,242,.25);}
.section-dark .menu-item{border-bottom-color:rgba(248,245,242,.14);}
.section-dark .menu-name{color:var(--ivory-soft);}
.section-dark .menu-desc{color:var(--ivory-soft);opacity:.72;}
.section-dark .menu-price{color:var(--taupe-light);}
.section-dark .menu-price-was{color:rgba(192,181,173,.88);}

/* ---------- credentials / about ---------- */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:center;}
.cred-list{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:.9rem 1.6rem;margin-top:2rem;}
.cred-list li{font-size:.9rem;color:var(--ink);opacity:.85;padding-left:1.2rem;position:relative;}
.cred-list li::before{content:'\2713';position:absolute;left:0;color:var(--taupe-deep);font-weight:600;}
.cred-section{position:relative;background:url('images/cred-bg.jpg') center 35% / cover no-repeat;overflow:hidden;}
.cred-section::before{content:'';position:absolute;inset:0;background:rgba(252,250,248,.78);pointer-events:none;}
.cred-section .wrap{position:relative;z-index:1;}
.cred-grid{display:grid;grid-template-columns:repeat(2,1fr);column-gap:3.5rem;row-gap:1.6rem;margin-top:2.8rem;max-width:640px;margin-left:auto;margin-right:auto;}
.cred-chip{display:flex;align-items:center;justify-content:flex-start;gap:.8rem;padding:.4rem 0;font-size:.92rem;font-weight:500;color:var(--espresso-deep);border-bottom:1px solid rgba(20,19,19,.12);padding-bottom:1rem;}
.cred-check{flex-shrink:0;width:22px;height:22px;border-radius:50%;background:var(--espresso-deep);color:var(--ivory-soft);font-size:.66rem;display:flex;align-items:center;justify-content:center;}

/* ---------- rating strip ---------- */
.rating-strip{display:flex;align-items:center;justify-content:center;gap:.8rem;flex-wrap:wrap;}
.rating-stars{color:var(--taupe-deep);letter-spacing:.15em;font-size:1.1rem;}
.section-dark .rating-stars{color:var(--taupe-light);}
.section-dark .ph{color:var(--taupe-light);opacity:.85;}
.section-dark .btn-primary{background:var(--taupe-light);color:var(--espresso-deep);border-color:var(--taupe-light);}
.section-dark .btn-primary:hover{background:var(--ivory-soft);border-color:var(--ivory-soft);}

/* ---------- promo banner ---------- */

/* ---------- contact ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:4rem;}
.info-row{display:flex;gap:1rem;padding:1.3rem 0;border-bottom:1px solid var(--line);}
.info-row .lbl{font-size:.68rem;letter-spacing:.2em;text-transform:uppercase;color:var(--taupe-deep);width:110px;flex-shrink:0;padding-top:.15rem;}
.info-row .val{font-size:.98rem;color:var(--espresso-deep);}
.hours-list{display:flex;flex-direction:column;gap:.5rem;}
.hours-row{display:flex;justify-content:space-between;gap:1.5rem;max-width:300px;font-size:.92rem;}
.hours-row span:first-child{color:var(--espresso-deep);font-weight:500;}
.hours-row span:last-child{color:var(--ink);opacity:.75;}
.social-row{display:flex;gap:1rem;margin-top:2rem;}
.social-row a{font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;border:1px solid var(--taupe);border-radius:100px;padding:.6rem 1.3rem;color:var(--espresso-deep);transition:.3s;}
.social-row a:hover{background:var(--espresso-deep);color:var(--ivory-soft);border-color:var(--espresso-deep);}
.map-embed{border:1px solid var(--line);border-radius:6px;overflow:hidden;min-height:420px;}
.map-embed iframe{width:100%;height:100%;min-height:420px;border:0;display:block;}

/* ---------- footer ---------- */
footer{background:var(--espresso);color:var(--ivory-soft);padding:4.5rem 2.2rem 2rem;}
.foot-grid{max-width:1280px;margin:0 auto;display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:3rem;padding-bottom:3rem;border-bottom:1px solid rgba(248,245,242,.14);}
.foot-brand{font-family:var(--serif);font-size:1.5rem;color:var(--ivory-soft);margin-bottom:.9rem;}
.foot-tag{font-size:.85rem;color:rgba(248,245,242,.6);max-width:32ch;}
.foot-social{display:flex;gap:1rem;margin-top:1.3rem;}
.foot-social a{color:rgba(248,245,242,.6);transition:color .3s;}
.foot-social a:hover{color:var(--ivory-soft);}
.foot-social svg{display:block;}
.foot-col h3{font-size:.7rem;letter-spacing:.2em;text-transform:uppercase;color:var(--taupe-light);margin-bottom:1.2rem;font-weight:400;}
.foot-col a,.foot-col p{display:block;font-size:.88rem;color:rgba(248,245,242,.72);margin-bottom:.7rem;}
.foot-col a:hover{color:var(--ivory-soft);}
.foot-bottom{max-width:1280px;margin:0 auto;padding-top:1.8rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:1rem;font-size:.76rem;color:rgba(248,245,242,.65);}
.foot-bottom a{color:rgba(248,245,242,.65);}
.foot-bottom a:hover{color:var(--ivory-soft);}

/* ---------- legal pages ---------- */
.legal-body h2{font-family:var(--serif);font-size:1.5rem;color:var(--espresso-deep);margin:2.2rem 0 .9rem;}
.legal-body p,.legal-body li{font-size:.96rem;color:var(--ink);opacity:.85;margin-bottom:.9rem;}
.legal-body ul{padding-left:1.4rem;}
.legal-updated{font-size:.82rem;color:var(--taupe-deep);margin-bottom:2.5rem;}

/* ---------- responsive ---------- */
@media(max-width:900px){
  .services-grid{grid-template-columns:1fr;}
  .reviews-grid{grid-template-columns:repeat(2,1fr);}
  .about-grid,.contact-grid{grid-template-columns:1fr;gap:2.5rem;}
  .foot-grid{grid-template-columns:1fr;gap:2.2rem;}
  .cred-list{grid-template-columns:1fr;}
  .cred-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:760px){
  .section-photo h2.sec-title{white-space:normal;font-size:clamp(1.9rem,7vw,2.6rem);}
  .nav-links{position:fixed;top:112px;left:0;right:0;bottom:0;background:var(--ivory-soft);flex-direction:column;justify-content:flex-start;padding:3rem 2rem;gap:2rem;transform:translateX(100%);transition:transform .35s ease,visibility 0s linear .35s;visibility:hidden;}
  .nav-links.open{transform:translateX(0);transition:transform .35s ease;visibility:visible;}
  .nav-links a{color:var(--espresso-deep)!important;font-size:1rem;}
  .nav-toggle{display:block;}
  .brand .b-main{color:var(--ivory-soft);font-size:1.35rem;}
  header.scrolled .brand .b-main{color:var(--espresso-deep);}
  .brand .b-eyebrow{font-size:.76rem;}
  .brand .b-sub{font-size:.52rem;letter-spacing:.18em;}
  .brand .b-bar{width:18px;}
  .btn-book{display:none;}
  .reviews-grid{grid-template-columns:1fr;}
  .cred-grid{grid-template-columns:1fr;}
  .insta-grid{grid-template-columns:repeat(2,1fr);}
  .insta-head{flex-wrap:wrap;gap:1rem;}
}
