/* ============ LIZ VAMPIRE TATTOO ============ */
:root{
  --black:#060606;
  --ink:#0d0d0d;
  --bone:#ece7dd;
  --bone-dim:#c6c1b7;
  --gray:#8a857c;
  --line:rgba(236,231,221,.16);
  --serif:"Suez One", serif;
  --sans:"Assistant", sans-serif;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:auto}
body{
  background:var(--black);
  color:var(--bone);
  font-family:var(--sans);
  font-weight:300;
  direction:rtl;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  line-height:1.7;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
::selection{background:var(--bone);color:var(--black)}

.display{
  font-family:var(--serif);
  font-weight:400;
  line-height:1.18;
  letter-spacing:.005em;
}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* ---------- film grain ---------- */
.grain{
  position:fixed;inset:-100px;z-index:9000;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity:.09;
  animation:grain 0.9s steps(4) infinite;
}
@keyframes grain{
  0%{transform:translate(0,0)}
  25%{transform:translate(-40px,30px)}
  50%{transform:translate(30px,-50px)}
  75%{transform:translate(-30px,-20px)}
  100%{transform:translate(0,0)}
}

/* ---------- loader ---------- */
#loader{
  position:fixed;inset:0;z-index:9500;background:var(--black);
  display:flex;align-items:center;justify-content:center;
  transition:opacity .8s ease;
}
#loader.done{opacity:0;pointer-events:none}
.loader-mark{
  font-family:var(--serif);font-size:clamp(1.4rem,3vw,2.2rem);
  color:var(--bone);opacity:0;animation:pulse 1.6s ease infinite alternate;
}
@keyframes pulse{from{opacity:.25}to{opacity:.9}}

/* ---------- topbar (brand right, links center, CTA left) ---------- */
.topbar{
  position:fixed;top:0;right:0;left:0;z-index:8000;
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;
  padding:1.1rem clamp(1.2rem,4vw,3rem);
  mix-blend-mode:difference;
}
.brand{justify-self:start;display:inline-flex;align-items:center;line-height:0}
.brand-mark{height:44px;width:auto;display:block}
.topbar nav{display:flex;gap:2.2rem;font-size:.95rem;font-weight:400;justify-self:center}
.topbar nav a{opacity:.75;transition:opacity .3s}
.topbar nav a:hover{opacity:1}
.nav-cta{
  justify-self:end;border:1px solid var(--bone);padding:.3rem 1.1rem;border-radius:999px;
  font-size:.95rem;font-weight:400;
}
#menuBtn{
  display:none;background:none;border:none;cursor:pointer;padding:.7rem .4rem;
  flex-direction:column;gap:7px;
}
#menuBtn span{display:block;width:26px;height:2px;background:var(--bone)}

/* ---------- mobile menu overlay ---------- */
#mobileMenu{
  position:fixed;inset:0;z-index:9300;background:var(--black);
  display:flex;align-items:center;justify-content:center;
  opacity:0;transition:opacity .35s ease;
}
#mobileMenu[hidden]{display:none}
#mobileMenu.open{opacity:1}
#mobileMenu nav{display:flex;flex-direction:column;gap:1.7rem;text-align:center}
#mobileMenu nav a{
  font-family:var(--serif);font-size:2rem;color:var(--bone);
  opacity:0;transform:translateY(16px);
  transition:opacity .45s ease,transform .45s ease;
}
#mobileMenu.open nav a{opacity:1;transform:none}
#mobileMenu nav a:nth-child(2){transition-delay:.05s}
#mobileMenu nav a:nth-child(3){transition-delay:.1s}
#mobileMenu nav a:nth-child(4){transition-delay:.15s}
#mobileMenu nav a:nth-child(5){transition-delay:.2s}
#mobileMenu nav a:nth-child(6){transition-delay:.25s}
#mobileMenu nav a:nth-child(7){transition-delay:.3s}
#mobileMenu .menu-cta{
  font-family:var(--sans);font-size:1.1rem;letter-spacing:.12em;
  background:var(--bone);color:var(--black);padding:.85rem 2.6rem;margin-top:1.2rem;
}
#menuClose{
  position:absolute;top:1.4rem;left:1.6rem;background:none;border:1px solid var(--line);
  color:var(--bone);width:2.6rem;height:2.6rem;border-radius:50%;cursor:pointer;font-size:1rem;
}

/* ---------- HERO — ink mask: film inside the letters, zoom through ---------- */
.hero-mask{position:relative;height:320vh}
.hero-video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  filter:grayscale(1);
}
#hero .vignette{z-index:1}
.mask-canvas{
  position:absolute;inset:0;width:100%;height:100%;z-index:2;
  will-change:opacity;
}
.hero-copy-mobile{display:none}
.hero-title-m{font-family:"Metamorphous",serif;font-size:clamp(2rem,10.5vw,3.2rem);line-height:1.25;text-shadow:0 4px 60px rgba(0,0,0,.85)}
.hero-sub{
  position:absolute;bottom:15vh;right:50%;transform:translateX(50%);z-index:3;
  font-size:clamp(1.05rem,1.8vw,1.4rem);letter-spacing:.14em;
  color:var(--bone);font-weight:300;white-space:nowrap;
  text-shadow:0 1px 8px rgba(0,0,0,.95),0 2px 30px rgba(0,0,0,.9);
}
#hero .scroll-hint{z-index:3}

/* ---------- scrub / pinned sections ---------- */
.scrub-section{position:relative;height:250vh}
.pin{position:sticky;top:0;height:100vh;overflow:hidden}
.scrub-canvas{position:absolute;inset:0;width:100%;height:100%}
.scrub-fallback{display:none;position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:grayscale(1)}
.vignette{
  position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse at center,transparent 40%,rgba(0,0,0,.72) 100%);
}

/* staged copy over video */
.stage{opacity:0;transform:translateY(24px);will-change:opacity,transform;z-index:4}
.stage-line{
  position:absolute;top:50%;right:50%;transform:translate(50%,-40%);
  font-family:var(--serif);text-align:center;width:92%;
  font-size:clamp(1.9rem,4.6vw,3.8rem);line-height:1.35;color:var(--bone);
  text-shadow:0 2px 26px rgba(0,0,0,.95),0 0 90px rgba(0,0,0,.85);
  padding:2.5rem 1rem;
  background:radial-gradient(ellipse at center,rgba(6,6,6,.5),transparent 70%);
}
.scroll-hint{
  position:absolute;bottom:2.2rem;right:50%;transform:translateX(50%);
  display:flex;flex-direction:column;align-items:center;gap:.6rem;
  font-size:.9rem;letter-spacing:.2em;color:var(--bone-dim);
}
.hint-bar{width:1px;height:52px;background:linear-gradient(var(--bone),transparent);animation:hint 1.8s ease infinite}
@keyframes hint{0%{transform:scaleY(0);transform-origin:top}50%{transform:scaleY(1);transform-origin:top}51%{transform-origin:bottom}100%{transform:scaleY(0);transform-origin:bottom}}

/* ---------- generic sections ---------- */
section{position:relative}
.section-inner{
  max-width:1200px;margin:0 auto;
  padding:clamp(5rem,12vh,9rem) clamp(1.4rem,5vw,3rem);
}
.kicker{
  font-size:1.05rem;letter-spacing:.18em;color:var(--bone-dim);
  margin-bottom:2.5rem;font-weight:400;
}
.reveal{opacity:0;transform:translateY(36px);transition:opacity 1s ease,transform 1s ease}
.reveal.visible{opacity:1;transform:none}

/* ---------- video sections ---------- */
.video-section{overflow:hidden}
.bg-video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  filter:grayscale(1) contrast(1.05);
}
.video-shade{position:absolute;inset:0;background:linear-gradient(rgba(6,6,6,.84),rgba(6,6,6,.6) 50%,rgba(6,6,6,.87))}
.video-section .section-inner{position:relative;z-index:2;min-height:100vh;display:flex;flex-direction:column;justify-content:center}

/* story */
.story-inner h2{font-size:clamp(3rem,8vw,6.4rem)}
.story-p{margin-top:2.6rem;font-size:clamp(1.15rem,1.9vw,1.5rem);color:var(--bone-dim);font-weight:300;line-height:1.9}

/* ---------- artists ---------- */
#artists{border-top:1px solid var(--line)}
.artists-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(2rem,5vw,5rem)}
.artist{position:relative;padding:3.2rem 2.6rem;border:1px solid var(--line);overflow:hidden}
.artist-num{
  position:absolute;top:-1.4rem;left:.6rem;
  font-family:var(--serif);font-size:7rem;color:transparent;
  -webkit-text-stroke:1px rgba(236,231,221,.14);pointer-events:none;
}
.artist h3{font-size:clamp(3rem,5.5vw,4.8rem)}
.artist-role{margin-top:.6rem;letter-spacing:.16em;font-size:1.05rem;color:var(--bone-dim);font-weight:400}
.artist-bio{margin-top:1.6rem;color:var(--bone-dim);font-weight:300;font-size:1.1rem;line-height:1.85}
.artist-ig{
  display:inline-block;margin-top:1.6rem;font-size:1.05rem;letter-spacing:.06em;
  border-bottom:1px solid var(--line);padding-bottom:.15rem;direction:ltr;
  transition:border-color .3s;
}
.artist-ig:hover{border-color:var(--bone)}

/* ---------- styles list ---------- */
.styles-lede{
  font-size:clamp(1.1rem,1.8vw,1.4rem);color:var(--bone-dim);
  margin:-1.2rem 0 3rem;font-weight:300;
}
.styles-list{list-style:none;display:flex;flex-direction:column;gap:.15em}
/* ink fill sweep: bone fill wipes through the word from the right (RTL) */
.styles-list li{
  font-size:clamp(2.6rem,6.5vw,5.4rem);
  color:transparent;
  background:linear-gradient(to left, var(--bone) 48%, rgba(236,231,221,.34) 52%);
  background-size:220% 100%;
  background-position:0% 0;
  -webkit-background-clip:text;background-clip:text;
  transition:background-position .55s cubic-bezier(.4,0,.2,1),opacity .45s ease;
  width:fit-content;cursor:default;
}
.styles-list li:hover{background-position:100% 0}
.styles-list:hover li:not(:hover){opacity:.4}
@media (prefers-reduced-motion:reduce){
  .styles-list li{transition:none;background-position:100% 0}
}

/* ---------- gallery ---------- */
#gallery{border-top:1px solid var(--line)}
.gallery-note{color:var(--bone-dim);font-size:clamp(1.1rem,1.7vw,1.35rem);font-weight:300;margin:-1.6rem 0 .5rem}
.gallery-hint{color:var(--bone-dim);font-size:1.05rem;margin:0 0 2rem;opacity:.75}
.gallery-filters{display:flex;flex-wrap:wrap;gap:.7rem;margin-bottom:2.8rem}
.gf{
  background:none;border:1px solid var(--line);color:var(--bone-dim);
  font-family:var(--sans);font-weight:400;font-size:1rem;
  padding:.55rem 1.4rem;border-radius:999px;cursor:pointer;
  transition:all .3s;
}
.gf:hover{border-color:var(--bone-dim);color:var(--bone)}
.gf.active{background:var(--bone);color:var(--black);border-color:var(--bone)}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem}
.gitem{position:relative;overflow:hidden;cursor:pointer;aspect-ratio:3/4;background:var(--ink)}
.gitem.hide{display:none}
.gitem img{
  width:100%;height:100%;object-fit:cover;
  filter:grayscale(1) contrast(1.05);
  transform:scale(1.02);
  transition:filter .7s ease,transform .7s ease;
}
.gitem:hover img{filter:grayscale(0) contrast(1);transform:scale(1.07)}
.gitem figcaption{
  position:absolute;bottom:0;right:0;left:0;padding:2rem 1rem .9rem;
  background:linear-gradient(transparent,rgba(0,0,0,.8));
  font-size:.95rem;letter-spacing:.12em;color:var(--bone);
  opacity:0;transition:opacity .4s;font-weight:400;
}
.gitem:hover figcaption{opacity:1}

/* ---------- studio film strip ---------- */
.strip-section{height:280vh;border-top:1px solid var(--line)}
.strip-pin{
  position:sticky;top:0;height:100vh;overflow:hidden;
  display:flex;align-items:center;
}
.strip-track{
  display:flex;align-items:center;gap:3vw;
  padding:0 clamp(1.4rem,5vw,3rem);
  will-change:transform;
}
.strip-lead{flex:none;width:min(34vw,480px)}
.strip-lead .kicker{margin-bottom:1.6rem}
.strip-lead h2{font-size:clamp(2.2rem,4.2vw,3.8rem)}
.strip-lede{margin-top:1.4rem;color:var(--bone-dim);font-size:clamp(1.05rem,1.6vw,1.3rem)}
.sframe{
  flex:none;margin:0;
  width:min(34vw, calc(62vh * 0.75));
}
.sframe img{
  width:100%;aspect-ratio:3/4;object-fit:cover;
  filter:grayscale(1) contrast(1.06);
  border:1px solid var(--line);
}
.sframe figcaption{
  margin-top:.8rem;font-size:.95rem;letter-spacing:.12em;
  color:var(--bone-dim);font-weight:400;
}

/* ---------- consult ---------- */
#consult{border-top:1px solid var(--line)}
.consult-inner{text-align:center}
.consult-inner h2{font-size:clamp(3rem,8.5vw,6.6rem)}
.consult-inner p{margin:2rem 0 2.8rem;color:var(--bone-dim);font-size:clamp(1.1rem,1.8vw,1.4rem);line-height:1.9}

/* ---------- buttons ---------- */
.btn{
  display:inline-block;border:1px solid var(--bone);color:var(--bone);
  padding:.9rem 2.8rem;letter-spacing:.12em;font-size:1.05rem;font-weight:400;
  transition:all .35s;background:none;cursor:pointer;font-family:var(--sans);
}
.btn:hover{background:var(--bone);color:var(--black)}
.btn-solid{background:var(--bone);color:var(--black)}
.btn-solid:hover{background:transparent;color:var(--bone)}
.btn-ghost{border-color:var(--line);color:var(--bone-dim)}
.btn-ghost:hover{border-color:var(--bone);background:none;color:var(--bone)}

/* ---------- social proof ---------- */
#proof{border-top:1px solid var(--line)}
.proof-inner{text-align:center;padding-top:clamp(4rem,9vh,6rem);padding-bottom:clamp(4rem,9vh,6rem)}
.stars{width:150px;height:28px;margin:0 auto 1.2rem;display:block}
.proof-score{font-family:var(--serif);font-size:clamp(1.6rem,3vw,2.2rem)}
.proof-score strong{font-weight:400}
.proof-line{margin-top:.8rem;color:var(--bone-dim);font-size:1.1rem}
.proof-link{
  display:inline-block;margin-top:1.6rem;font-size:1rem;letter-spacing:.08em;
  color:var(--bone-dim);border-bottom:1px solid var(--line);padding-bottom:.15rem;
  transition:color .3s,border-color .3s;
}
.proof-link:hover{color:var(--bone);border-color:var(--bone)}

/* ---------- faq ---------- */
#faq{border-top:1px solid var(--line)}
.faq-inner{max-width:760px}
.faq-item{border-bottom:1px solid var(--line)}
.faq-item summary{
  cursor:pointer;list-style:none;position:relative;
  font-family:var(--serif);font-size:clamp(1.2rem,2.2vw,1.6rem);
  padding:1.4rem 0 1.4rem 2.2rem;
  transition:color .3s;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';position:absolute;left:.2rem;top:50%;transform:translateY(-50%);
  font-family:var(--sans);font-weight:200;font-size:1.6rem;color:var(--bone-dim);
  transition:transform .3s;
}
.faq-item[open] summary::after{content:'−'}
.faq-item summary:hover{color:var(--bone-dim)}
.faq-item p{padding:0 0 1.5rem;color:var(--bone-dim);font-size:1.1rem;line-height:1.85;max-width:60ch}

/* ---------- booking ---------- */
#booking{border-top:1px solid var(--line)}
.booking-inner{max-width:760px}
.booking-inner h2{font-size:clamp(2.2rem,5.5vw,3.9rem);margin-bottom:1.4rem}
.booking-intro{color:var(--bone-dim);font-size:clamp(1.05rem,1.7vw,1.3rem);line-height:1.85;margin-bottom:1.8rem}
.quick-contact{display:flex;gap:1rem;flex-wrap:wrap;margin-bottom:2.6rem}
.form-lead{color:var(--bone-dim);font-size:1rem;letter-spacing:.04em;margin-bottom:1.6rem}
#waForm label{
  display:flex;flex-direction:column;gap:.5rem;
  font-size:.95rem;letter-spacing:.1em;color:var(--bone-dim);font-weight:400;
  margin-bottom:1.5rem;flex:1;
}
.frow{display:flex;gap:1.4rem}
#waForm input,#waForm select,#waForm textarea{
  background:transparent;border:none;border-bottom:1px solid var(--line);
  color:var(--bone);font-family:var(--sans);font-weight:300;font-size:1.1rem;
  padding:.55rem 0;outline:none;transition:border-color .3s;border-radius:0;
  letter-spacing:normal;resize:vertical;
}
#waForm select{cursor:pointer}
#waForm select option{background:var(--ink);color:var(--bone)}
#waForm input:focus,#waForm select:focus,#waForm textarea:focus{border-bottom-color:var(--bone)}
#waForm input.err{border-bottom-color:#fff;box-shadow:0 1px 0 #fff}
.form-actions{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.6rem;align-items:center}
.form-err{margin-top:1rem;font-size:1rem;color:var(--bone);letter-spacing:.03em}

/* ---------- piercing (statement) ---------- */
#piercing{border-top:1px solid var(--line)}
.piercing-inner{text-align:center}
.piercing-inner h2{font-size:clamp(3rem,8.5vw,6.6rem)}
.piercing-inner p{margin:2rem 0 2.8rem;color:var(--bone-dim);font-size:clamp(1.1rem,1.8vw,1.4rem);line-height:1.9}

/* ---------- academy (the one inversion) ---------- */
#academy.inverted{background:var(--bone);color:var(--black)}
.academy-inner{
  display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;
  padding-top:3.2rem;padding-bottom:3.2rem;
}
.academy-line{font-family:var(--serif);font-size:clamp(1.5rem,3.2vw,2.3rem)}
.btn-invert{border-color:var(--black);color:var(--black)}
.btn-invert:hover{background:var(--black);color:var(--bone)}

/* ---------- contact ---------- */
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:clamp(2rem,5vw,4rem);align-items:center}
.contact-big{font-size:clamp(2.2rem,4.5vw,3.4rem);margin-bottom:1.6rem}
address{font-style:normal;color:var(--bone-dim);font-size:1.1rem}
address p{margin-bottom:.6rem}
address a{border-bottom:1px solid var(--line);transition:border-color .3s}
address a:hover{border-color:var(--bone)}
.map-wrap{aspect-ratio:4/3;background:var(--ink)}
.map-wrap iframe{
  width:100%;height:100%;border:0;
  filter:grayscale(1) invert(0.92) contrast(0.9) brightness(0.9);
}

/* ---------- footer ---------- */
footer{
  border-top:1px solid var(--line);
  padding:2.4rem 1.5rem 3rem;text-align:center;
  font-size:.95rem;letter-spacing:.12em;color:var(--gray);
}

/* ---------- lightbox ---------- */
#lightbox{
  position:fixed;inset:0;z-index:9600;background:rgba(4,4,4,.94);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;
}
#lightbox[hidden]{display:none}
#lbImg{max-width:min(92vw,760px);max-height:78vh;object-fit:contain}
#lbCap{font-size:1rem;letter-spacing:.15em;color:var(--bone-dim)}
#lbClose{
  position:absolute;top:1.4rem;left:1.6rem;background:none;border:1px solid var(--line);
  color:var(--bone);width:2.6rem;height:2.6rem;border-radius:50%;cursor:pointer;font-size:1rem;
  transition:all .3s;
}
#lbClose:hover{background:var(--bone);color:var(--black)}
.lb-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  background:none;border:1px solid var(--line);color:var(--bone);
  width:3rem;height:3rem;border-radius:50%;cursor:pointer;font-size:1.5rem;
  line-height:1;transition:all .3s;z-index:2;
}
.lb-nav:hover{background:var(--bone);color:var(--black)}
#lbPrev{right:1.6rem}
#lbNext{left:1.6rem}
@media (max-width:820px){
  #lbPrev{right:.7rem}
  #lbNext{left:.7rem}
  .lb-nav{width:2.6rem;height:2.6rem}
}

/* ---------- mobile bar ---------- */
.mobile-bar{display:none}

/* ============ LAPTOP / SHORT-VIEWPORT TIER ============ */
/* wide but short screens (most laptops: 1366x768, 1080p @125% = 1536x720, 13" panels).
   the big display headings are sized by width (vw) so on a short screen they eat the
   viewport — here they become height-aware and vertical rhythm tightens so more of each
   section lands on screen at once. desktop (tall monitors) is untouched. */
@media (min-width:821px) and (max-height:820px){
  .section-inner{padding-top:clamp(3rem,8vh,5.5rem);padding-bottom:clamp(3rem,8vh,5.5rem)}
  .kicker{margin-bottom:1.8rem}
  .story-inner h2{font-size:clamp(2.6rem,9vh,4.8rem)}
  .story-p{margin-top:1.8rem;font-size:clamp(1.1rem,2.4vh,1.35rem)}
  .consult-inner h2{font-size:clamp(2.6rem,9.2vh,5rem)}
  .consult-inner p{margin:1.5rem 0 2rem}
  .styles-list li{font-size:clamp(2.3rem,7.6vh,4.4rem)}
  .styles-lede{margin:-.8rem 0 2rem}
  .artist h3{font-size:clamp(2.4rem,7vh,3.9rem)}
  .artist{padding:2.6rem 2.2rem}
  .artist-num{font-size:5.4rem;top:-1rem}
  .booking-inner h2{font-size:clamp(2rem,6.5vh,3.4rem);margin-bottom:2rem}
  /* pinned beats resolve a touch sooner so the cinematic sequence isn't a marathon on a laptop */
  .strip-lead h2{font-size:clamp(2rem,5.2vh,3.2rem)}
}

/* ============ MOBILE — full 3D stays on; layout adapts ============ */
@media (max-width:820px){
  .topbar{display:flex;justify-content:space-between;align-items:center}
  .topbar nav,.nav-cta{display:none}
  #menuBtn{display:flex}

  /* pinned 3D sections: shorter travel for thumbs, svh against the URL bar */
  .hero-mask{height:250vh}
  .scrub-section{height:220vh}
  .pin{height:100svh}
  .hero-sub{bottom:22vh;font-size:1rem}
  #hero .scroll-hint{bottom:calc(72px + env(safe-area-inset-bottom))}
  .hint-bar{height:34px}
  .stage-line{width:94%;font-size:clamp(1.5rem,6.5vw,2.4rem);padding:1.8rem .6rem}

  /* let Hebrew wrap naturally on narrow screens */
  .story-p br,.artist-bio br,.stage-line br{display:none}

  .strip-section{height:auto}
  .strip-pin{position:relative;height:auto;display:block;padding:4rem 0}
  .strip-track{
    overflow-x:auto;flex-wrap:nowrap;gap:4vw;
    scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
    scrollbar-width:none;transform:none!important;
    padding:0 1.4rem;
  }
  .strip-track::-webkit-scrollbar{display:none}
  .strip-lead{width:82vw;scroll-snap-align:center}
  .sframe{width:78vw;scroll-snap-align:center}
  .artists-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr);gap:.7rem}
  .gallery-filters{gap:.5rem}
  .gf{font-size:.9rem;padding:.45rem 1.1rem}
  .frow{flex-direction:column;gap:0}
  .contact-grid{grid-template-columns:1fr}
  .academy-inner{flex-direction:column;text-align:center}
  .consult-inner h2{font-size:clamp(2.4rem,11vw,3.4rem)}
  .booking-inner h2{font-size:clamp(1.7rem,7.5vw,2.4rem)}
  .proof-score{font-size:1.5rem}
  body{padding-bottom:calc(60px + env(safe-area-inset-bottom))}
  .mobile-bar{
    display:flex;position:fixed;bottom:0;right:0;left:0;z-index:8500;
    height:calc(60px + env(safe-area-inset-bottom));
    padding-bottom:env(safe-area-inset-bottom);
    background:rgba(6,6,6,.92);backdrop-filter:blur(12px);border-top:1px solid var(--line);
  }
  .mobile-bar a{
    flex:1;display:flex;align-items:center;justify-content:center;
    font-size:1.05rem;letter-spacing:.1em;font-weight:400;
  }
  .mb-book{background:var(--bone);color:var(--black)}
  .mb-wa{color:var(--bone)}
}
@media (prefers-reduced-motion:reduce){
  .grain{animation:none}
  .reveal{transition:none;opacity:1;transform:none}
  .hint-bar{animation:none}
  /* degrade pinned/scrubbed sections to the static mobile layout */
  .hero-mask{height:auto}
  .scrub-section{height:auto}
  .strip-section{height:auto}
  .pin{position:relative;height:100svh;display:flex;flex-direction:column;justify-content:center}
  .mask-canvas,.scrub-canvas{display:none}
  .scrub-fallback{display:block}
  .stage{opacity:1;transform:none}
  .stage-line{position:relative;top:auto;right:auto;transform:none;margin:1.2rem auto;width:92%}
  .hero-copy-mobile{
    display:flex;position:relative;z-index:3;
    align-items:center;justify-content:center;text-align:center;padding:0 1.2rem;
  }
  .hero-sub{position:relative;bottom:auto;right:auto;transform:none;text-align:center;margin-top:1.2rem;white-space:normal}
  .scroll-hint{display:none}
  .strip-pin{position:relative;height:auto;display:block;padding:4rem 0}
  .strip-track{
    overflow-x:auto;scroll-snap-type:x mandatory;transform:none!important;
    scrollbar-width:none;padding:0 1.4rem;
  }
  .strip-track::-webkit-scrollbar{display:none}
}
