/* =========================================================================
   THE NAIL GURU JA · SOFT LUXURY
   Brand: white · pink · grey. Centered section headings. Clean conventional
   modern-salon layout, executed at high craft.
   ========================================================================= */

/* ---------------------------------------------------------------
   1 · Tokens
   --------------------------------------------------------------- */
:root {
  --white:        #FFFFFF;
  --offwhite:     #FCFAFC;
  --pink-mist:    #FEECF3;    /* soft pink band bg */
  --pink-mist-2:  #FBD5E3;
  --pink:         #EC1D7A;    /* brand hot magenta (from logo) */
  --pink-deep:    #B7115C;    /* pressed / underline */
  --pink-soft:    #F9C4DA;
  --grey:         #0F0F10;    /* near-black matching logo body */
  --grey-2:       #4A4A4E;
  --grey-mute:    #8C8A90;
  --grey-line:    #E7E4E8;
  --grey-fog:     #F5F3F5;

  --font-display: "Playfair Display", "Bodoni Moda", "Didot", "Georgia", serif;
  --font-body:    "Inter", "Söhne", system-ui, sans-serif;
  --font-alt:     "Archivo", "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(.2,.7,.1,1);
  --pad-x: clamp(20px, 5vw, 96px);
  --sec-py: clamp(96px, 12vw, 156px);

  --shadow-card: 0 20px 40px -22px rgba(15,15,16,.14), 0 2px 6px -3px rgba(15,15,16,.06);
  --shadow-btn:  0 12px 22px -12px rgba(236,29,122,.55);
}

/* ---------------------------------------------------------------
   2 · Reset + base
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey-2);
  background: var(--offwhite);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--pink); color: var(--white); }

/* Visually hidden, still read by screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---------------------------------------------------------------
   3 · Typography atoms
   --------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--pink-deep);
}
.display {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--grey);
}
.display em {
  font-style: italic;
  font-weight: 500;
  color: var(--pink-deep);
}
.lede {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  line-height: 1.6;
  color: var(--grey-2);
  margin: 0;
  max-width: 60ch;
}
.link-under {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--grey);
  transition: color .25s var(--ease), gap .25s var(--ease);
}
.link-under:hover { color: var(--pink-deep); gap: 14px; }

/* ---------------------------------------------------------------
   4 · Buttons
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .005em;
  line-height: 1;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: var(--shadow-btn);
}
.btn--pink:hover { background: var(--pink-deep); transform: translateY(-2px); box-shadow: 0 16px 26px -12px rgba(236,29,122,.75); }
.btn--ghost {
  color: var(--grey);
  border: 1.5px solid var(--grey);
}
.btn--ghost:hover { background: var(--grey); color: var(--white); }
.btn--ghost-light {
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
}
.btn--ghost-light:hover { background: var(--white); color: var(--grey); border-color: var(--white); }

/* Glass button — for use over photography */
.btn--glass {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.10);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
          backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24);
}
.btn--glass:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}
.btn--ghost-pink {
  color: var(--pink-deep);
  border: 1.5px solid var(--pink);
}
.btn--ghost-pink:hover { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn--lg { padding: 17px 32px; font-size: 1rem; }
.btn--xl { padding: 22px 40px; font-size: 1.1rem; }
.btn--full { display: flex; }

/* ---------------------------------------------------------------
   5 · Live status pill (used on the map card)
   --------------------------------------------------------------- */
.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 15px;
  border: 1px solid var(--grey-line);
  border-radius: 999px;
  background: var(--offwhite);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
}
.status__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grey-mute);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.status__dot[data-open="true"] {
  background: #7cb17c;
  box-shadow: 0 0 0 3px color-mix(in oklab, #7cb17c 25%, transparent);
  animation: pulse 2.4s var(--ease) infinite;
}
.status--inline { border: 0; padding: 0; background: none; color: var(--grey); font-size: .78rem; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px color-mix(in oklab, #7cb17c 25%, transparent); }
  50%      { box-shadow: 0 0 0 7px color-mix(in oklab, #7cb17c 8%, transparent); }
}

/* ---------------------------------------------------------------
   6 · Nav — floating glass pill, logo dead centre
   --------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 30;
  padding: clamp(12px, 1.6vw, 20px) clamp(14px, 3vw, 32px);
  background: transparent;
  pointer-events: none;      /* only the pill is interactive */
}
.nav__pill {
  pointer-events: auto;
  max-width: 1180px;
  margin: 0 auto;
  /* 1fr auto 1fr keeps the logo optically centred no matter how
     wide either link group gets */
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(14px, 2.4vw, 36px);
  padding: 9px 9px 9px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(22px) saturate(1.6);
          backdrop-filter: blur(22px) saturate(1.6);
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 12px 34px -18px rgba(15,15,16,.45);
  transition: background .4s var(--ease), border-color .4s var(--ease),
              box-shadow .4s var(--ease);
}
/* once scrolled past the hero the pill firms up for legibility */
body[data-scroll="1"] .nav__pill {
  background: rgba(255,255,255,.92);
  border-color: var(--grey-line);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 14px 38px -20px rgba(15,15,16,.4);
}

.nav__side {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 28px);
  min-width: 0;
}
.nav__side--l { justify-content: flex-end; }
.nav__side--r { justify-content: flex-start; gap: clamp(12px, 1.6vw, 22px); }
.nav__side-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.9vw, 28px);
}

/* Text nav links only — the CTA is a button and must NOT inherit the
   plain-link padding/type or its pink pill collapses to a thin sliver. */
.nav__side a:not(.nav__cta),
.nav__side-links a {
  position: relative;
  padding: 6px 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-2);
  white-space: nowrap;
  transition: color .28s var(--ease);
}
.nav__side a:not(.nav__cta)::after,
.nav__side-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  border-radius: 2px;
  background: var(--pink);
  transition: width .3s var(--ease);
}
.nav__side a:not(.nav__cta):hover,
.nav__side-links a:hover { color: var(--grey); }
.nav__side a:not(.nav__cta):hover::after,
.nav__side-links a:hover::after { width: 100%; }

.nav__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  padding: 0 4px;
}
.nav__mark img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__cta {
  padding: 11px 20px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  gap: 7px;
  flex: none;
}

.nav__burger { display: none; width: 40px; height: 40px; position: relative; cursor: pointer; flex: none; }
.nav__burger span {
  position: absolute; left: 9px; right: 9px;
  height: 1.6px;
  background: var(--grey);
  border-radius: 2px;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav__burger span:nth-child(1) { top: 15px; }
.nav__burger span:nth-child(2) { top: 23px; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav__pill {
    grid-template-columns: 1fr auto 1fr;
    padding: 8px 8px 8px 8px;
  }
  .nav__side--l { display: none; }
  .nav__side-links { display: none; }
  .nav__side--r { justify-content: flex-end; }
  /* logo stays centred: empty left cell balances the right */
  .nav__pill::before { content: ""; }
  .nav__burger { display: block; }
}
@media (max-width: 560px) {
  .nav { padding: 10px 12px; }
  .nav__pill { gap: 8px; padding: 7px; }
  .nav__mark img { height: 30px; }
  .nav__cta { padding: 10px 15px; font-size: .7rem; }
}

/* Anchor targets must clear the fixed pill */
[id] { scroll-margin-top: calc(var(--nav-h, 85px) + 18px); }

.drawer {
  position: fixed;
  inset: 0;
  z-index: 25;
  background: var(--white);
  padding: 110px var(--pad-x) 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform .5s var(--ease), opacity .3s var(--ease);
}
.drawer[data-open="true"] { opacity: 1; pointer-events: auto; transform: translateY(0); }
.drawer__links { display: flex; flex-direction: column; gap: 4px; }
.drawer__links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-line);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  letter-spacing: -0.02em;
  color: var(--grey);
}
.drawer__links a span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .18em;
  color: var(--pink-deep);
}
.drawer__foot {
  display: flex; gap: 10px;
  color: var(--grey-mute);
  font-size: .82rem;
}
.drawer__foot a:hover { color: var(--pink-deep); }

/* ---------------------------------------------------------------
   7 · Hero — photo-first stage. The image is the message;
        text sits in the corners and stays out of its way.
   --------------------------------------------------------------- */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 160px) var(--pad-x) clamp(60px, 8vw, 120px);
  overflow: hidden;
  background: var(--offwhite);
  isolation: isolate;
}
.hero--photo {
  /* the nav pill floats over the hero, so the photo runs full-bleed
     and the chips simply start below the pill */
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h, 85px) + clamp(14px, 1.8vw, 22px))
           clamp(20px, 4vw, 52px)
           clamp(24px, 3.5vw, 40px);
  color: var(--white);
  text-align: left;
}

/* --- background stack --- */
.hero__bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__bg picture { display: block; width: 100%; height: 100%; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  animation: heroDrift 28s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

/* Light scrim only — just enough to hold the corner text.
   The middle of the frame stays open so the salon reads clearly. */
.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8,8,10,.46) 0%,
      rgba(8,8,10,.10) 20%,
      rgba(8,8,10,.06) 46%,
      rgba(8,8,10,.30) 72%,
      rgba(8,8,10,.72) 100%),
    radial-gradient(110% 60% at 50% 118%,
      rgba(236,29,122,.30) 0%,
      rgba(236,29,122,0) 68%);
}

/* faint technical grid, kept very quiet */
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 96px 96px;
  -webkit-mask-image: radial-gradient(120% 90% at 50% 40%, #000 12%, transparent 74%);
          mask-image: radial-gradient(120% 90% at 50% 40%, #000 12%, transparent 74%);
}

/* --- top chips --- */
.hero__chips {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 17px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(14,14,16,.32);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
          backdrop-filter: blur(14px) saturate(1.3);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.94);
  white-space: nowrap;
}
.chip b { color: rgba(255,255,255,.42); font-weight: 400; }
.chip__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex: none;
}
/* the live open/closed chip reuses .status internals */
.hero__chips .status {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(14,14,16,.32);
  color: rgba(255,255,255,.94);
  font-size: .66rem;
  letter-spacing: .2em;
  padding: 10px 17px;
}
.hero__chips .status .status__dot { background: rgba(255,255,255,.5); }
.hero__chips .status .status__dot[data-open="true"] {
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.22);
}

/* --- bottom bar --- */
.hero__foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: clamp(18px, 2.4vw, 26px);
  border-top: 1px solid rgba(255,255,255,.20);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(20px, 4vw, 60px);
}
.hero__blurb {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(.98rem, 1.15vw, 1.14rem);
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  max-width: 46ch;
  text-shadow: 0 2px 14px rgba(0,0,0,.6);
}
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.hero__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
  transition: color .3s var(--ease), gap .3s var(--ease);
}
.hero__link i {
  width: 26px; height: 1.5px;
  background: var(--pink);
  border-radius: 2px;
  transition: width .3s var(--ease);
}
.hero__link:hover { color: var(--white); gap: 16px; }
.hero__link:hover i { width: 38px; }

@media (max-width: 760px) {
  .hero--photo { min-height: 94svh; }
  .hero__chips { justify-content: center; gap: 10px; }
  .chip, .hero__chips .status { font-size: .56rem; letter-spacing: .14em; padding: 8px 13px; }
  .hero__foot {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }
  .hero__blurb { font-size: 1rem; max-width: none; }
  .hero__actions { align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .hero__link { justify-content: center; }
  .hero__grid { background-size: 60px 60px; }
}
@media (max-width: 420px) {
  .chip b, .chip:first-child { display: none; }
  .hero__chips { justify-content: center; }
}

/* ---------------------------------------------------------------
   8 · Section shell + centered head
   --------------------------------------------------------------- */
.section {
  position: relative;
  padding: var(--sec-py) var(--pad-x);
  background: var(--white);
}
.section--pink { background: var(--pink-mist); }
.section--fog  { background: var(--grey-fog); }

.sec-head {
  max-width: 780px;
  margin: 0 auto clamp(56px, 6vw, 96px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.sec-head .eyebrow { margin: 0; }
.sec-head .display {
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
}
.sec-head .divider { margin: 4px auto 8px; }
.sec-head .lede { color: var(--grey-2); max-width: 56ch; margin: 0 auto; text-align: center; }

/* ---------------------------------------------------------------
   9 · About — stacked polaroids + studio introduction
   --------------------------------------------------------------- */
.about { background: var(--offwhite); }

.about__wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

/* --- polaroid stack --- */
.about__stack {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(360px, 42vw, 520px);
  perspective: 1200px;
}

.pola {
  position: absolute;
  margin: 0;
  width: clamp(190px, 22vw, 268px);
  background: var(--white);
  /* classic polaroid proportions: even sides, deep chin */
  padding: 13px 13px 52px;
  border-radius: 3px;
  rotate: var(--rest, 0deg);
  box-shadow:
    0 1px 2px rgba(15,15,16,.10),
    0 18px 34px -18px rgba(15,15,16,.34),
    0 40px 70px -40px rgba(15,15,16,.42);
  transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out);
}
/* offsets are large enough that each card's caption clears the other */
.pola--a { margin-right: clamp(92px, 12vw, 168px); margin-bottom: clamp(92px, 11vw, 150px); z-index: 1; }
.pola--b { margin-left:  clamp(92px, 12vw, 168px); margin-top:    clamp(92px, 11vw, 150px); z-index: 2; }

.pola__win {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(120% 120% at 30% 22%, var(--pink-mist) 0%, var(--grey-fog) 100%);
  border: 1px solid color-mix(in oklab, var(--grey-line) 70%, transparent);
}
.pola__win picture,
.pola__win > img {
  display: block;
  width: 100%;
  height: 100%;
}
.pola__win img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s var(--ease-out), filter .5s var(--ease-out);
}
.pola:hover .pola__win img { transform: scale(1.04); }

/* pola--b: portrait aspect window matching the photo so both feet, the
   slides and the nail set all stay in frame with no letterboxing. */
.pola--b .pola__win { aspect-ratio: 5 / 7; }
.pola--b .pola__win img {
  object-fit: cover;
  object-position: center;
  padding: 0;
}

/* pola--a: the photo is portrait, so give this polaroid's window a
   portrait aspect ratio that matches — the whole mug + hands stays
   in frame and the window fills edge to edge with no pink margins
   and no cropping. */
.pola--a .pola__win { aspect-ratio: 5 / 7; }
.pola--a .pola__win img {
  object-fit: cover;
  object-position: center;
  padding: 0;
}
/* the chin carries the brand mark rather than a caption */
.pola__cap {
  position: absolute;
  left: 0; right: 0; bottom: 14px;
  display: grid;
  place-items: center;
}
.pola__cap img {
  width: 58%;
  max-width: 130px;
  height: auto;
  object-fit: contain;
  opacity: .9;
}

.pola:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 1px 2px rgba(15,15,16,.10),
    0 26px 44px -18px rgba(183,17,92,.34),
    0 52px 84px -44px rgba(183,17,92,.4);
  z-index: 3;
}
.pola:hover .pola__win img { opacity: .62; transform: scale(1.05); }

/* a soft pink glow behind the stack rather than a literal piece of tape —
   keeps the arrangement sleek instead of scrapbook-y */
.about__tape {
  position: absolute;
  inset: 12% 8%;
  border-radius: 50%;
  background: radial-gradient(closest-side,
    color-mix(in oklab, var(--pink) 16%, transparent) 0%,
    transparent 100%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

/* polaroids drop in and settle onto their resting tilt */
.pola.reveal {
  opacity: 0;
  translate: var(--dx, 0) var(--dy, 0);
  rotate: var(--start, 0deg);
  scale: .9;
  transition:
    opacity .9s var(--ease-out),
    translate 1s var(--ease-out),
    rotate 1s var(--ease-out),
    scale 1s var(--ease-out);
  transition-delay: var(--pd, 0ms);
}
.pola.reveal.in-view {
  opacity: 1;
  translate: none;
  rotate: var(--rest, 0deg);
  scale: 1;
}

/* --- copy --- */
.about__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 0;
}
.about__title {
  margin: 16px 0 0;
  line-height: .92;
  color: var(--grey);
}
.about__title em {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  letter-spacing: -0.01em;
  color: var(--pink);
  /* tuck the serif word over the sans line beneath it */
  margin-left: .06em;
}
.about__title span {
  display: block;
  font-family: var(--font-alt);
  font-weight: 800;
  font-size: clamp(2.5rem, 5.4vw, 4.4rem);
  letter-spacing: -0.04em;
  margin-top: -.06em;
}

.about__lead {
  margin: 22px 0 0;
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  line-height: 1.62;
  color: var(--grey);
  max-width: 46ch;
}
.about__text {
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-size: .98rem;
  line-height: 1.72;
  color: var(--grey-2);
  max-width: 50ch;
}

.about__cta { margin-top: 30px; }

/* --- credentials strip: what the business has actually built --- */
.cred {
  list-style: none;
  max-width: 1160px;
  margin: clamp(60px, 7vw, 96px) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}
.cred__item {
  --mx: 50%;
  --my: 50%;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: clamp(24px, 2.4vw, 32px) clamp(20px, 2vw, 26px) clamp(22px, 2.2vw, 28px);
  border-radius: 20px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(150deg,
      rgba(236,29,122,.30) 0%,
      rgba(15,15,16,.10) 44%,
      rgba(15,15,16,.05) 100%) border-box;
  box-shadow:
    0 1px 2px rgba(15,15,16,.04),
    0 14px 30px -22px rgba(15,15,16,.24);
  transition:
    transform .45s var(--ease-out),
    box-shadow .45s var(--ease-out),
    background .45s var(--ease-out);
}
.cred__item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(300px circle at var(--mx) var(--my),
    rgba(236,29,122,.13) 0%, rgba(236,29,122,.05) 36%, transparent 70%);
  transition: opacity .4s var(--ease-soft);
}
.cred__item:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(15,15,16,.05),
    0 22px 42px -24px rgba(183,17,92,.4);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(150deg,
      rgba(236,29,122,.9) 0%,
      rgba(236,29,122,.35) 46%,
      rgba(236,29,122,.16) 100%) border-box;
}
.cred__item:hover::before { opacity: 1; }

.cred__ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--pink-mist);
  color: var(--pink-deep);
  margin-bottom: 6px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .45s var(--ease-out);
}
.cred__ico svg { width: 19px; height: 19px; }
.cred__item:hover .cred__ico { background: var(--pink); color: var(--white); transform: scale(1.06); }
.cred__ico--solid { background: var(--pink); color: var(--white); }

.cred__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.3rem, 3.4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(170deg, #FF5EA8 0%, var(--pink) 55%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.cred__crown {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  background: linear-gradient(170deg, #FF5EA8 0%, var(--pink) 55%, var(--pink-deep) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.cred__lbl {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  line-height: 1.35;
  color: var(--grey);
  margin-top: 2px;
}
.cred__note {
  font-family: var(--font-body);
  font-size: .74rem;
  line-height: 1.45;
  color: var(--grey-mute);
}

/* the featured card reads as the trophy of the row */
.cred__item--feat {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(150deg, rgba(236,29,122,.75) 0%, rgba(236,29,122,.28) 60%, rgba(236,29,122,.14) 100%) border-box;
}

@media (max-width: 940px) {
  .cred { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .cred { grid-template-columns: 1fr; }
  .cred__item { align-items: center; text-align: center; }
}

@media (max-width: 940px) {
  .about__wrap { grid-template-columns: 1fr; gap: 44px; }
  .about__stack { min-height: clamp(330px, 78vw, 440px); }
  .about__body { align-items: center; text-align: center; }
  .about__lead, .about__text { max-width: 56ch; }
  .about__facts { justify-content: center; }
}
@media (max-width: 480px) {
  .pola { width: clamp(148px, 41vw, 190px); padding: 9px 9px 38px; }
  /* wider horizontal spread so the lower card doesn't eat the upper caption */
  .pola--a { margin-right: clamp(86px, 30vw, 124px); margin-bottom: clamp(58px, 19vw, 84px); }
  .pola--b { margin-left:  clamp(86px, 30vw, 124px); margin-top:    clamp(58px, 19vw, 84px); }
  .pola__cap { font-size: .82rem; bottom: 11px; }
  .about__facts { gap: 18px 26px; }
}

/* ---------------------------------------------------------------
   10 · Services — filterable live menu
   --------------------------------------------------------------- */

/* --- filter pills --- */
.svc-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto clamp(18px, 2.4vw, 26px);
}
.svc-filter {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .01em;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--pink) 26%, transparent);
  background: var(--white);
  color: var(--grey-2);
  cursor: pointer;
  transition: background .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .28s var(--ease),
              box-shadow .28s var(--ease);
  white-space: nowrap;
}
.svc-filter:hover {
  color: var(--pink-deep);
  border-color: var(--pink);
  transform: translateY(-1px);
}
.svc-filter.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 22px -12px rgba(236,29,122,.6);
}

.svc-count {
  text-align: center;
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-mute);
  margin: 0 0 clamp(26px, 3.4vw, 40px);
}

/* --- menu grid --- */
.svc-menu {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1180px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  perspective: 1200px;   /* gives the hover tilt real depth */
}

.svc-item {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 30px 26px;
  border-radius: 20px;
  isolation: isolate;
  transform-style: preserve-3d;
  /* gradient hairline: padding-box paints the card, border-box the edge */
  border: 1px solid transparent;
  background:
    /* soft pink bloom in the top-right corner as an ornament */
    radial-gradient(140% 90% at 100% 0%,
      rgba(236,29,122,.06) 0%, transparent 42%) padding-box,
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(145deg,
      rgba(236,29,122,.32) 0%,
      rgba(15,15,16,.10) 38%,
      rgba(15,15,16,.06) 100%) border-box;
  /* inner engraved frame — modern browsers follow border-radius on
     outline, so it hugs the rounded corner cleanly. */
  outline: 1px solid color-mix(in oklab, var(--pink) 22%, transparent);
  outline-offset: -12px;
  box-shadow:
    0 1px 2px rgba(15,15,16,.04),
    0 10px 24px -18px rgba(15,15,16,.22);
  transition:
    transform .45s var(--ease-out),
    box-shadow .45s var(--ease-out),
    background .45s var(--ease-out),
    outline-color .35s var(--ease-out);
}


/* cursor spotlight */
.svc-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  background: radial-gradient(340px circle at var(--mx) var(--my),
    rgba(236,29,122,.13) 0%,
    rgba(236,29,122,.05) 34%,
    transparent 68%);
  transition: opacity .4s var(--ease-soft);
}

/* top catch-light + diagonal sheen sweep */
.svc-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg,
    transparent 38%,
    rgba(255,255,255,.62) 50%,
    transparent 62%);
  transform: translateX(-120%);
  opacity: 0;
  transition: opacity .2s var(--ease-soft);
}

.svc-item:hover,
.svc-item:focus-within {
  transform:
    perspective(1200px)
    rotateX(var(--rx))
    rotateY(var(--ry))
    translateY(-7px);
  box-shadow:
    0 2px 4px rgba(15,15,16,.05),
    0 18px 34px -20px rgba(183,17,92,.35),
    0 34px 62px -34px rgba(183,17,92,.42);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(145deg,
      rgba(236,29,122,.85) 0%,
      rgba(236,29,122,.35) 42%,
      rgba(236,29,122,.18) 100%) border-box;
  outline-color: color-mix(in oklab, var(--pink) 55%, transparent);
}
.svc-item:hover::before,
.svc-item:focus-within::before { opacity: 1; }
.svc-item:hover::after {
  opacity: 1;
  animation: cardSheen .9s var(--ease-out) forwards;
}
@keyframes cardSheen {
  from { transform: translateX(-120%); }
  to   { transform: translateX(120%); }
}

.svc-item[hidden] { display: none; }

/* --- card content --- */
.svc-item__top {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  padding-right: 48px;  /* leave room for the top-right book chip */
}
.svc-item__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.34rem;
  line-height: 1.15;
  letter-spacing: -0.018em;
  color: var(--grey);
  margin: 0;
  transition: color .35s var(--ease);
}
.svc-item:hover .svc-item__name { color: var(--pink-deep); }

.svc-item__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: .855rem;
  line-height: 1.6;
  color: var(--grey-2);
}

.svc-item__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 22px;
  position: relative;
  border-top: 1px solid var(--grey-line);
  transition: border-color .35s var(--ease);
}
.svc-item:hover .svc-item__foot {
  border-top-color: color-mix(in oklab, var(--pink) 32%, transparent);
}
/* Centered diamond ornament sitting over the hairline — the framed
   "◆" is the same motif inside every printed spa/atelier menu. */
.svc-item__foot::before {
  content: "◆";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
  font-size: .5rem;
  color: var(--pink);
  line-height: 1;
  background: var(--white);
  transition: color .35s var(--ease);
}

/* duration: small line with a nail-tip icon */
.svc-item__dur {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--grey-mute);
  white-space: nowrap;
  transition: color .35s var(--ease);
}
.svc-item__dur::before {
  content: "";
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.4px solid currentColor;
  border-top-color: transparent;
  transform: rotate(45deg);
  transition: border-color .35s var(--ease);
}
.svc-item:hover .svc-item__dur { color: var(--pink-deep); }

/* price — the anchor of the card, editorial italic serif */
.svc-item__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--grey);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  line-height: 1;
  transition: color .4s var(--ease), transform .5s var(--ease-out);
}
.svc-item:hover .svc-item__price {
  color: var(--pink);
  transform: translateY(-1px) scale(1.02);
}
.svc-item__price i {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .58rem;
  letter-spacing: .14em;
  color: var(--pink);
  align-self: center;
  transform: translateY(-.4em);
  transition: color .35s var(--ease);
}
.svc-item:hover .svc-item__price i { color: var(--pink-deep); }
.svc-item__price b {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey-mute);
  align-self: center;
  transform: translateY(-.4em);
}

/* Book — always visible as an elegant circular arrow in the top-right,
   expands to a full pink pill on hover. */
.svc-item__book {
  position: absolute;
  top: 22px; right: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  height: 36px;
  padding: 0 0 0 0;
  border-radius: 999px;
  background: transparent;
  border: 1px solid color-mix(in oklab, var(--pink) 40%, transparent);
  color: var(--pink-deep);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0;               /* label hidden by default */
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    width .4s var(--ease-out),
    padding .4s var(--ease-out),
    background .35s var(--ease-soft),
    color .35s var(--ease-soft),
    border-color .35s var(--ease-soft),
    box-shadow .4s var(--ease-out),
    font-size .35s var(--ease-out);
  width: 36px;
}
.svc-item__book::before {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: currentColor;
  transition: transform .35s var(--ease-out);
  flex: none;
}
.svc-item:hover .svc-item__book,
.svc-item__book:focus-visible {
  width: 116px;
  padding: 0 4px 0 16px;
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  font-size: .68rem;
  box-shadow: 0 10px 22px -12px rgba(236,29,122,.7);
}
.svc-item__book:hover { background: var(--pink-deep); border-color: var(--pink-deep); }
.svc-item__book:hover::before { transform: translateX(2px); }

/* Touch devices: keep the arrow visible but skip the label expansion. */
@media (hover: none) {
  .svc-item__book { background: var(--pink); border-color: var(--pink); color: var(--white); }
}

/* signature card — pinned above the filters, outside the grid */
.svc-item--hero {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(26px, 3vw, 38px);
  border-radius: 22px;
  background:
    radial-gradient(120% 160% at 88% 8%, rgba(236,29,122,.16) 0%, transparent 58%),
    var(--white);
  border-color: color-mix(in oklab, var(--pink) 36%, transparent);
  flex-wrap: wrap;
}
.svc-signature {
  max-width: 1180px;
  margin: 0 auto clamp(30px, 4vw, 46px);
}
.svc-item--hero .svc-item__name {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  padding-right: 0;
}
.svc-item--hero .svc-item__desc { font-size: .95rem; max-width: 56ch; }
.svc-item--hero .svc-item__foot {
  border-top: 0;
  padding-top: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex: none;
}
.svc-item--hero .svc-item__price { font-size: 1.75rem; }
.svc-item--hero .svc-item__book {
  position: static;
  opacity: 1;
  transform: none;
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  padding: 12px 24px;
  font-size: .74rem;
  align-self: center;
}
.svc-item--hero .svc-item__book:hover { background: var(--pink-deep); }
.svc-item__badge {
  display: inline-block;
  width: fit-content;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--pink);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 4px;
}

.svc-note {
  max-width: 62ch;
  margin: clamp(28px, 3.4vw, 42px) auto 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: .84rem;
  line-height: 1.6;
  color: var(--grey-2);
}
.svc-note b { font-weight: 600; color: var(--grey); }

.svc-cta {
  display: flex; justify-content: center; margin-top: clamp(28px, 3.4vw, 40px);
}

@media (max-width: 1000px) {
  .svc-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .svc-menu { grid-template-columns: 1fr; }
  .svc-item--hero { flex-direction: column; align-items: flex-start; }
  .svc-item--hero .svc-item__foot { align-items: flex-start; }
  .svc-item--hero .svc-item__book { align-self: stretch; text-align: center; }
  .svc-filters { gap: 8px; }
  .svc-filter { font-size: .76rem; padding: 9px 15px; }
}

/* ---------------------------------------------------------------
   11.5 · Gallery — tiles scattered, assembling on scroll
   --------------------------------------------------------------- */
.gallery {
  position: relative;
  background: var(--white);
  padding: var(--sec-py) clamp(20px, 5vw, 56px);
  overflow: hidden;   /* scattered start positions must not widen the page */
  isolation: isolate;
}

.g-grid {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* rows slightly taller than before so portrait shots keep more of the
     subject visible without a bigger visual footprint */
  grid-auto-rows: clamp(180px, 20vw, 260px);
  gap: clamp(10px, 1.4vw, 18px);
  /* dense so the wide/tall tiles don't leave holes behind them */
  grid-auto-flow: dense;
}

.g-tile {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--grey-fog);
  border: 1px solid var(--grey-line);
  box-shadow:
    0 1px 2px rgba(15,15,16,.04),
    0 14px 30px -22px rgba(15,15,16,.28);
  transition:
    transform .5s var(--ease-out),
    box-shadow .5s var(--ease-out),
    border-color .5s var(--ease-out);
}
.g-tile--wide { grid-column: span 2; }
.g-tile--tall { grid-row: span 2; }

/* Real photography fills the tile edge to edge */
.g-tile picture,
.g-tile > img {
  display: block;
  width: 100%;
  height: 100%;
}
.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Pull the crop toward the top-third of the frame. Faces, crowns and
     the tips of hands almost always sit in the upper part of a portrait,
     so this loses less of the subject than a dead-centre crop. */
  object-position: center 30%;
  transition: transform .8s var(--ease-out), filter .5s var(--ease-out);
}
/* Per-slot focal adjustments — refined against the specific photos in
   assets/gallery-N.jpg. If you re-shuffle the images, just resync these. */
.g-tile:nth-child(1) img { object-position: center 34%; }  /* 3D floral nails */
.g-tile:nth-child(2) img { object-position: center 24%; }  /* Miss Universe: keep face */
.g-tile:nth-child(3) img { object-position: center 40%; }  /* nail closeup */
.g-tile:nth-child(4) img { object-position: center 42%; }  /* wide: nail set */
.g-tile:nth-child(5) img { object-position: center 22%; }  /* Miss Universe crown */
.g-tile:nth-child(6) img { object-position: center 38%; }  /* nail closeup */
.g-tile:nth-child(7) img { object-position: center 26%; }  /* girl seated */
.g-tile:nth-child(8) img { object-position: center 34%; }  /* birthday set */
.g-tile:nth-child(9) img { object-position: center 30%; }
.g-tile:hover {
  transform: translateY(-5px);
  border-color: color-mix(in oklab, var(--pink) 45%, transparent);
  box-shadow:
    0 2px 4px rgba(15,15,16,.05),
    0 24px 46px -24px rgba(183,17,92,.4);
  z-index: 2;
}
.g-tile:hover img { transform: scale(1.06); }

/* --- per-tile floating watermark: naked logo, no pill --- */
.g-tile::after {
  content: "";
  position: absolute;
  right: clamp(8px, 1.2vw, 14px);
  bottom: clamp(8px, 1.2vw, 14px);
  z-index: 2;
  pointer-events: none;
  width: clamp(64px, 9vw, 92px);
  aspect-ratio: 3.4 / 1;
  background: url("assets/logo.webp") no-repeat center / contain;
  /* soft double drop-shadow keeps the mark legible over darker photos
     without needing a white card behind it */
  filter:
    drop-shadow(0 1px 1px rgba(255,255,255,.7))
    drop-shadow(0 2px 6px rgba(15,15,16,.55));
  /* per-tile stagger so nine watermarks don't bob in lockstep — reuses
     the same --gd offset the assemble-on-scroll motion already uses */
  animation: tileWmFloat 5.4s var(--ease-out) infinite;
  animation-delay: calc(var(--gd, 0ms) - 200ms);
}
@keyframes tileWmFloat {
  0%, 100% { transform: translateY(0);   }
  50%      { transform: translateY(-4px); }
}
@media (max-width: 520px) {
  .g-tile::after { width: 60px; }
}

/* --- logo watermark pinned bottom-right of the gallery --- */
.g-watermark {
  position: absolute;
  right: clamp(4px, 1vw, 14px);
  bottom: clamp(4px, 1vw, 14px);
  z-index: 3;
  pointer-events: none;
  padding: 10px 14px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--white) 88%, transparent);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px -10px rgba(15,15,16,.35);
  display: grid;
  place-items: center;
}
.g-watermark img {
  height: clamp(24px, 3.4vw, 40px);
  width: auto;
  opacity: .88;
}

/* --- the assemble-on-scroll move --- */
.g-tile.reveal {
  opacity: 0;
  translate: var(--dx, 0) var(--dy, 0);
  rotate: var(--rot, 0deg);
  scale: .9;
  transition:
    opacity .9s var(--ease-out),
    translate 1.05s var(--ease-out),
    rotate 1.05s var(--ease-out),
    scale 1.05s var(--ease-out);
  transition-delay: var(--gd, 0ms);
}
.g-tile.reveal.in-view {
  opacity: 1;
  translate: none;
  rotate: 0deg;
  scale: 1;
}

/* --- Instagram call-out under the gallery --- */
.g-cta {
  display: flex;
  justify-content: center;
  margin: clamp(34px, 4.2vw, 52px) auto 0;
}
.btn-ig {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 22px 14px 16px;
  border-radius: 999px;
  overflow: hidden;
  color: var(--white);
  /* the Instagram gradient, tuned toward the brand pink */
  background: linear-gradient(105deg, #B7115C 0%, #EC1D7A 34%, #F4568F 62%, #F79E4B 100%);
  box-shadow:
    0 2px 4px rgba(15,15,16,.08),
    0 16px 34px -16px rgba(236,29,122,.7);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.btn-ig::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 34%, rgba(255,255,255,.34) 50%, transparent 66%);
  transform: translateX(-120%);
  pointer-events: none;
}
.btn-ig:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 4px rgba(15,15,16,.1),
    0 24px 46px -18px rgba(236,29,122,.8);
}
.btn-ig:hover::after { animation: cardSheen .9s var(--ease-out) forwards; }

.btn-ig__ico {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(6px);
}
.btn-ig__ico svg { width: 20px; height: 20px; }

.btn-ig__txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  min-width: 0;
}
.btn-ig__txt strong {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .005em;
}
.btn-ig__txt small {
  font-family: var(--font-body);
  font-size: .72rem;
  color: rgba(255,255,255,.82);
}

.btn-ig__go {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.2);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.btn-ig:hover .btn-ig__go { background: var(--white); color: var(--pink); transform: translateX(3px); }

@media (max-width: 460px) {
  .btn-ig { grid-template-columns: auto 1fr; gap: 12px; padding: 12px 18px 12px 12px; }
  .btn-ig__go { display: none; }
  .btn-ig__txt strong { font-size: .88rem; }
  .btn-ig__txt small { font-size: .68rem; }
}

.g-note {
  max-width: 60ch;
  margin: clamp(24px, 3vw, 36px) auto 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--grey-mute);
}

@media (max-width: 860px) {
  .g-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(140px, 30vw, 200px);
  }
  .g-tile--wide { grid-column: span 2; }
  .g-tile--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  /* halve the scatter so nothing flies too far on a narrow screen */
  .g-tile.reveal {
    translate: calc(var(--dx, 0) * .4) calc(var(--dy, 0) * .4);
    rotate: calc(var(--rot, 0deg) * .5);
  }
}

/* ---------------------------------------------------------------
   12 · Reviews — fixed statement panel + endless marquee
   --------------------------------------------------------------- */
.rev {
  position: relative;
  background: var(--grey);
  padding: clamp(70px, 9vw, 120px) 0;
  overflow: hidden;
  isolation: isolate;
}
.rev::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(70% 90% at 12% 50%, rgba(236,29,122,.14) 0%, transparent 68%);
}

.rev__wrap {
  display: grid;
  grid-template-columns: clamp(260px, 27vw, 400px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(14px, 2vw, 26px);
  padding-left: clamp(20px, 4vw, 56px);
}

/* --- left statement panel --- */
.rev__panel {
  position: relative;
  border-radius: 22px;
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(155deg, var(--pink-mist) 0%, var(--pink-mist-2) 100%);
  box-shadow: 0 30px 60px -34px rgba(0,0,0,.7);
  overflow: hidden;
}
/* a large ghosted quote glyph bleeding off the corner */
.rev__panel::after {
  content: "\201D";
  position: absolute;
  right: -10px; bottom: -74px;
  font-family: var(--font-display);
  font-size: 15rem;
  line-height: 1;
  color: rgba(236,29,122,.12);
  pointer-events: none;
}
.rev__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 5vw, 5rem);
  line-height: .6;
  color: var(--pink);
  height: .55em;
}
.rev__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 2.9vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--grey);
  margin: 6px 0 0;
}
.rev__title em { font-style: italic; color: var(--pink); }
.rev__note {
  margin: 6px 0 0;
  font-family: var(--font-body);
  font-size: .8rem;
  line-height: 1.6;
  color: var(--grey-2);
  max-width: 34ch;
}

/* --- marquee --- */
.rev__marquee {
  position: relative;
  overflow: hidden;
  /* the track fades out on the right so cards slide away, not cut off */
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 86%, transparent 100%);
          mask-image: linear-gradient(90deg, #000 0%, #000 86%, transparent 100%);
}
.rev__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  width: max-content;
  animation: revScroll 52s linear infinite;
  will-change: transform;
}
/* the track holds the set twice, so -50% lands exactly on the seam */
@keyframes revScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.rev__marquee:hover .rev__track { animation-play-state: paused; }

.rev-card {
  flex: 0 0 auto;
  width: clamp(268px, 25vw, 348px);
  min-height: 100%;
  border-radius: 20px;
  padding: clamp(26px, 2.4vw, 34px) clamp(22px, 2vw, 30px);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow:
    0 2px 4px rgba(0,0,0,.18),
    0 22px 44px -26px rgba(0,0,0,.6);
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.rev-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 2px 4px rgba(0,0,0,.2),
    0 28px 54px -24px rgba(236,29,122,.5);
}
.rev-card__stars {
  color: var(--pink);
  font-size: .82rem;
  letter-spacing: .28em;
}
.rev-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.5;
  color: var(--grey);
  flex: 1;
  display: flex;
  align-items: center;
}
.rev-card cite {
  font-style: normal;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .64rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey-mute);
  padding-top: 14px;
  border-top: 1px solid var(--grey-line);
  width: 100%;
}

@media (max-width: 900px) {
  .rev__wrap {
    grid-template-columns: 1fr;
    padding-right: clamp(20px, 4vw, 56px);
    gap: 22px;
  }
  .rev__panel { text-align: left; }
  .rev__marquee {
    /* full-bleed the marquee on mobile so it reads as endless */
    margin: 0 calc(clamp(20px, 4vw, 56px) * -1);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 90%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 90%, transparent 100%);
  }
  .rev__track { padding: 0 clamp(20px, 4vw, 56px); animation-duration: 38s; }
}

/* ---------------------------------------------------------------
   12.7 · Why clients return — dark stage, cards scattered
          around a centred statement
   --------------------------------------------------------------- */
.why {
  position: relative;
  background: var(--grey);
  color: var(--white);
  padding: clamp(90px, 11vw, 150px) clamp(20px, 4vw, 56px);
  overflow: hidden;
  isolation: isolate;
}
/* soft pink bloom behind the centre so the black isn't dead flat */
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 55% at 50% 46%, rgba(236,29,122,.16) 0%, transparent 70%),
    radial-gradient(90% 70% at 50% 120%, rgba(236,29,122,.10) 0%, transparent 66%);
}

.why__wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .92fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 52px);
  align-items: center;
}

.why__col { display: flex; flex-direction: column; gap: clamp(16px, 2.2vw, 30px); }

/* --- centre statement --- */
.why__mid { text-align: center; padding: 0 4px; }
.why__mid .eyebrow { color: var(--pink); }
.why__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 14px 0 18px;
}
.why__title em {
  font-style: italic;
  background: linear-gradient(180deg, #FFB4D4 0%, var(--pink) 70%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.why__sub {
  margin: 0 auto;
  max-width: 34ch;
  font-family: var(--font-body);
  font-size: clamp(.95rem, 1.1vw, 1.06rem);
  line-height: 1.65;
  color: rgba(255,255,255,.7);
}

/* --- cards --- */
.why-card {
  --rx: 0deg; --ry: 0deg;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: clamp(22px, 2.4vw, 32px) clamp(20px, 2.2vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform-style: preserve-3d;
  box-shadow:
    0 2px 4px rgba(0,0,0,.2),
    0 26px 50px -26px rgba(0,0,0,.65);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
/* the scattered stagger — each card sits at its own offset */
.why-card--a { margin-right: clamp(0px, 3vw, 44px); }
.why-card--b { margin-left:  clamp(0px, 4vw, 62px); }
.why-card--c { margin-left:  clamp(0px, 3vw, 44px); }
.why-card--d { margin-right: clamp(0px, 4vw, 62px); }

.why-card:hover {
  transform: perspective(1000px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px);
  box-shadow:
    0 2px 4px rgba(0,0,0,.22),
    0 30px 60px -26px rgba(236,29,122,.5);
}

.why-card__ico {
  width: 62px; height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--pink-mist);
  color: var(--pink-deep);
  transition: background .35s var(--ease), color .35s var(--ease), transform .5s var(--ease-out);
}
.why-card__ico svg { width: 26px; height: 26px; }
.why-card:hover .why-card__ico {
  background: var(--pink);
  color: var(--white);
  transform: scale(1.06);
}

.why-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.14rem, 1.5vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: -0.012em;
  color: var(--grey);
  margin: 2px 0 0;
}
.why-card p {
  margin: 0;
  font-family: var(--font-body);
  font-size: .875rem;
  line-height: 1.62;
  color: var(--grey-2);
  max-width: 30ch;
}

/* --- scroll entrance: cards fly in from their own side --- */
.why-card.reveal {
  opacity: 0;
  rotate: 0deg;
  transition:
    opacity .85s var(--ease-out),
    translate .85s var(--ease-out),
    rotate .85s var(--ease-out);
  transition-delay: var(--rd, 0ms);
}
.why__col--l .why-card.reveal { translate: -70px 34px; rotate: -7deg; }
.why__col--r .why-card.reveal { translate:  70px 34px; rotate:  7deg; }
.why-card.reveal.in-view { opacity: 1; translate: none; rotate: 0deg; }

/* deliberate stagger: outer cards land first, inner ones follow */
.why-card--a { --rd: 0ms; }
.why-card--c { --rd: 90ms; }
.why-card--b { --rd: 180ms; }
.why-card--d { --rd: 270ms; }

@media (max-width: 1000px) {
  .why__wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
  .why__mid {
    grid-column: 1 / -1;
    order: -1;
    margin-bottom: clamp(10px, 2vw, 24px);
  }
  .why-card--a, .why-card--b, .why-card--c, .why-card--d {
    margin-left: 0; margin-right: 0;
  }
}
@media (max-width: 620px) {
  .why__wrap { grid-template-columns: 1fr; }
  .why-card p { max-width: none; }
  /* straight fade-up on small screens — no sideways travel */
  .why__col--l .why-card.reveal,
  .why__col--r .why-card.reveal { translate: 0 26px; rotate: 0deg; }
}

/* ---------------------------------------------------------------
   13 · FAQ — centered column of accordion rows
   --------------------------------------------------------------- */
.acc {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.acc__row {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 20px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.section--pink .acc__row { background: var(--white); }
.section--fog  .acc__row { background: var(--white); }
.acc__row.is-open {
  border-color: var(--pink);
  box-shadow: 0 18px 34px -24px rgba(236,29,122,.35);
}
.acc__q {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 30px;
  text-align: left;
  transition: color .3s var(--ease);
  cursor: pointer;
}
.acc__q:hover { color: var(--pink-deep); }
.acc__t {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--grey);
}
.acc__i {
  position: relative;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--pink-mist);
  transition: background .3s var(--ease), transform .35s var(--ease);
}
.acc__i i {
  position: absolute;
  background: var(--pink-deep);
  transition: transform .3s var(--ease), background .3s var(--ease);
  border-radius: 2px;
}
.acc__i i:nth-child(1) { top: 50%; left: 8px; right: 8px; height: 1.5px; transform: translateY(-50%); }
.acc__i i:nth-child(2) { left: 50%; top: 8px; bottom: 8px; width: 1.5px; transform: translateX(-50%); }
.acc__q[aria-expanded="true"] .acc__i { background: var(--pink); transform: rotate(180deg); }
.acc__q[aria-expanded="true"] .acc__i i { background: var(--white); }
.acc__q[aria-expanded="true"] .acc__i i:nth-child(2) { transform: translateX(-50%) rotate(90deg) scaleX(0); }
.acc__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .45s var(--ease);
}
.acc__a > div {
  overflow: hidden;
  padding: 0 30px;
  color: var(--grey-2);
  max-width: 72ch;
}
.acc__a > div > * { margin: 0 0 12px; font-size: 1rem; line-height: 1.7; }
.acc__a > div > *:last-child { margin-bottom: 26px; }

/* Bank-transfer detail block used inside the "How do I pay?" answer. */
.bank {
  list-style: none;
  padding: 14px 18px;
  margin: 4px 0 12px;
  border-radius: 14px;
  background: var(--pink-mist);
  border: 1px solid color-mix(in oklab, var(--pink) 22%, transparent);
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 6px 18px;
  align-items: baseline;
  font-size: .94rem;
}
.bank li {
  display: contents;
}
.bank li > span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey-mute);
  padding: 8px 0;
}
.bank li > b {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--grey);
  letter-spacing: -0.005em;
  font-variant-numeric: tabular-nums;
  padding: 8px 0;
  border-bottom: 1px dashed color-mix(in oklab, var(--pink) 26%, transparent);
}
.bank li:last-child > b { border-bottom: 0; }
@media (max-width: 480px) {
  .bank { grid-template-columns: 1fr; padding: 14px; gap: 2px; }
  .bank li > span { padding-top: 10px; padding-bottom: 2px; }
  .bank li > b { padding-top: 0; padding-bottom: 10px; }
}
.acc__row.is-open .acc__a { grid-template-rows: 1fr; }

/* ---------------------------------------------------------------
   13.4a · Policies panel — hidden until the Policies nav link is
   clicked. Using :target so the salon can share a direct link too
   (e.g. nailguru.vercel.app/#policies) and it still appears.
   --------------------------------------------------------------- */
.policies-panel { display: none; }
.policies-panel:target { display: block; }
.policies-panel__close {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  left: clamp(18px, 4vw, 44px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  color: var(--grey-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 16px -12px rgba(30, 20, 40, .2);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}
.policies-panel__close:hover {
  color: var(--pink-deep);
  border-color: rgba(230, 92, 152, .35);
  transform: translateX(-2px);
}
.policies-panel .sec-head { margin-top: clamp(20px, 4vw, 40px); }

/* ---------------------------------------------------------------
   13.4b · House rules — always-open policy list
   Two-column editorial grid on desktop, single column on phones.
   Numbered so the sequence reads like a printed rulebook.
   --------------------------------------------------------------- */
.rules {
  list-style: none;
  padding: 0;
  margin: 40px auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  counter-reset: rule;
}
.rule {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 24px 22px 20px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 8px 24px -18px rgba(30, 20, 40, .18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.rule:hover {
  transform: translateY(-2px);
  border-color: rgba(230, 92, 152, .35);
  box-shadow:
    0 1px 0 rgba(255,255,255,.9) inset,
    0 14px 28px -18px rgba(230, 92, 152, .28);
}
.rule__n {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--pink-soft), var(--pink) 90%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 14px -6px rgba(230, 92, 152, .55);
}
.rule__body { min-width: 0; }
.rule__t {
  margin: 4px 0 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.15;
  color: var(--grey);
  letter-spacing: -.005em;
}
.rule__t em { font-style: italic; color: var(--pink-deep); font-weight: 500; }
.rule b { color: var(--grey); font-weight: 700; }
.rule__p {
  margin: 0;
  font-family: var(--font-body);
  font-size: .96rem;
  line-height: 1.6;
  color: var(--grey-2);
}
.rule__p b { color: var(--ink); font-weight: 700; }
.rules__foot {
  max-width: 1080px;
  margin: 34px auto 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: .9rem;
  letter-spacing: .02em;
  color: var(--grey-2);
  font-style: italic;
}
@media (max-width: 780px) {
  .rules { grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
  .rule { padding: 18px 18px 18px 16px; grid-template-columns: 36px 1fr; gap: 12px; }
  .rule__n { width: 34px; height: 34px; font-size: .72rem; }
  .rule__t { font-size: 1.08rem; }
  .rule__p { font-size: .92rem; }
}

/* ---------------------------------------------------------------
   13.5 · Mailing list
   --------------------------------------------------------------- */
.loop {
  position: relative;
  background: var(--grey);
  padding: clamp(52px, 6vw, 76px) clamp(20px, 5vw, 56px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.loop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(58% 62% at 50% 42%, rgba(236,29,122,.15) 0%, transparent 70%),
    radial-gradient(100% 60% at 50% 120%, rgba(236,29,122,.10) 0%, transparent 70%);
}

/* full-bleed image behind the mailing-list block, held back with a
   dark scrim so the copy stays legible */
.loop.has-bg .loop__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.loop.has-bg .loop__bg picture,
.loop.has-bg .loop__bg > img {
  display: block;
  width: 100%;
  height: 100%;
}
.loop.has-bg .loop__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(.7);
}
.loop.has-bg::before {
  background:
    radial-gradient(70% 80% at 50% 50%, rgba(15,15,16,.62) 0%, rgba(15,15,16,.78) 60%, rgba(15,15,16,.88) 100%),
    radial-gradient(90% 60% at 50% 120%, rgba(236,29,122,.32) 0%, transparent 70%);
}
.loop__wrap {
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* — kicker — with a rule either side */
.loop__kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .66rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink);
}
.loop__kicker::before,
.loop__kicker::after {
  content: "";
  width: 30px; height: 1px;
  background: currentColor;
  opacity: .55;
}

.loop__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--white);
  margin: 12px 0 0;
  text-wrap: balance;
}
.loop__title em {
  font-style: italic;
  background: linear-gradient(180deg, #FFB4D4 0%, var(--pink) 72%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.loop__sub {
  margin: 10px 0 0;
  max-width: 52ch;
  font-family: var(--font-body);
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(255,255,255,.62);
}

/* — the input pill — */
.loop__form {
  position: relative;
  margin: 20px 0 0;
  width: 100%;
  max-width: 520px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 7px 7px 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
          backdrop-filter: blur(16px) saturate(1.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  transition: border-color .32s var(--ease), background .32s var(--ease),
              box-shadow .32s var(--ease);
}
.loop__form:focus-within {
  border-color: color-mix(in oklab, var(--pink) 65%, transparent);
  background: rgba(255,255,255,.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.16),
    0 0 0 4px rgba(236,29,122,.16);
}
.loop__form.is-bad {
  border-color: rgba(255,120,120,.7);
  box-shadow: 0 0 0 4px rgba(255,120,120,.14);
}
.loop__ico { display: grid; place-items: center; color: rgba(255,255,255,.5); }
.loop__ico svg { width: 18px; height: 18px; }

.loop__input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: none;
  outline: none;
  font-family: var(--font-body);
  font-size: .88rem;
  color: var(--white);
  padding: 9px 0;
}
.loop__input::placeholder { color: rgba(255,255,255,.42); }
/* the pill itself shows focus — no double ring on the input */
.loop__input:focus-visible { outline: none; }

.loop__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 10px 22px -12px rgba(236,29,122,.8);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.loop__btn:hover { background: var(--pink-deep); transform: translateY(-1px); }
.loop__btn svg { transition: transform .3s var(--ease); }
.loop__btn:hover svg { transform: translateX(3px); }
.loop__btn[disabled] { opacity: .6; cursor: default; transform: none; }

.loop__msg {
  margin: 10px 0 0;
  min-height: 1em;
  font-family: var(--font-body);
  font-size: .78rem;
  line-height: 1.4;
  color: var(--pink-soft);
}
.loop__msg a { color: var(--white); border-bottom: 1px solid var(--pink); }
.loop__msg a:hover { color: var(--pink-soft); }
.loop__msg.is-bad { color: #FFB4B4; }

.loop__fine {
  margin: 12px 0 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
}

@media (max-width: 560px) {
  .loop__form {
    grid-template-columns: auto minmax(0, 1fr);
    border-radius: 22px;
    padding: 12px 14px;
    gap: 8px 10px;
  }
  .loop__btn { grid-column: 1 / -1; justify-content: center; padding: 14px 20px; }
}

/* ---------------------------------------------------------------
   14 · Visit — one soft card: details + live hours + map
   --------------------------------------------------------------- */
.visit { background: var(--offwhite); }

.visit-card {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 32px;
  background: var(--pink-mist);
  border: 1px solid color-mix(in oklab, var(--pink) 14%, transparent);
  box-shadow:
    0 1px 2px rgba(15,15,16,.03),
    0 30px 70px -46px rgba(183,17,92,.30);
}
.visit-card__left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* kicker: — LABEL */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--pink-deep);
}
.kicker i {
  width: 26px; height: 1.5px;
  background: var(--pink);
  border-radius: 2px;
  flex: none;
}
.kicker--mt { margin-top: clamp(34px, 4vw, 52px); }

.visit-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: var(--grey);
  margin: 12px 0 clamp(22px, 2.6vw, 32px);
  text-align: left;
}
.visit-h em { font-style: italic; color: var(--pink); }

/* --- 2x2 detail grid --- */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px) clamp(16px, 2vw, 26px);
}
.detail {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  min-width: 0;
}
.detail__ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in oklab, var(--pink) 34%, transparent);
  background: var(--white);
  color: var(--pink);
  flex: none;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.detail__ico svg { width: 19px; height: 19px; }
.detail:hover .detail__ico {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.detail__body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.detail__k {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grey-mute);
}
.detail__v {
  font-family: var(--font-body);
  font-size: .96rem;
  line-height: 1.45;
  color: var(--grey);
  font-weight: 500;
}
.detail__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  border-bottom: 1px solid color-mix(in oklab, var(--pink) 45%, transparent);
  padding-bottom: 2px;
  transition: color .25s var(--ease), border-color .25s var(--ease), gap .25s var(--ease);
}
.detail__link b { font-weight: 500; transition: transform .25s var(--ease); }
.detail__link:hover { color: var(--pink); border-color: var(--pink); gap: 10px; }

/* --- live hours list --- */
.hours {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px clamp(16px, 2vw, 28px);
}
.hours li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 10px;
  border-bottom: 1px solid color-mix(in oklab, var(--pink) 16%, transparent);
  transition: background .3s var(--ease);
}
.hours__d {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--grey);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.hours__t {
  font-family: var(--font-body);
  font-size: .86rem;
  color: var(--grey-2);
  text-align: right;
}
.hours__t.is-closed {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey-mute);
}
/* today */
.hours li.is-today {
  background: var(--white);
  border-bottom-color: transparent;
  box-shadow: 0 8px 20px -14px rgba(183,17,92,.35);
}
.hours li.is-today .hours__t { color: var(--grey); font-weight: 500; }
.hours__today {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--pink);
  padding: 3px 8px;
  border-radius: 999px;
  line-height: 1;
}

/* --- map --- */
.visit-card__map { min-width: 0; display: flex; }
.map__frame {
  position: relative;
  width: 100%;
  min-height: clamp(380px, 52vh, 620px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--pink) 16%, transparent);
  box-shadow: 0 24px 56px -34px rgba(15,15,16,.34);
  background: var(--white);
}
.map__frame iframe {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  filter: grayscale(.2) contrast(.98) saturate(.92);
  transition: filter .6s var(--ease);
  border: 0;
}
.map__frame:hover iframe { filter: grayscale(0) contrast(1) saturate(1); }

/* floating live status pill on the map */
.map__status {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--grey);
  border: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px -12px rgba(15,15,16,.55);
  max-width: calc(100% - 32px);
}
.map__status .status__dot { background: var(--grey-mute); }
.map__status .status__dot[data-open="true"] { background: #4ADE80; box-shadow: 0 0 0 3px rgba(74,222,128,.25); }

/* floating destination card */
.map__card {
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: 42px 1fr 38px;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--white) 94%, transparent);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
          backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 16px 40px -18px rgba(15,15,16,.42);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.map__card:hover { transform: translateY(-3px); box-shadow: 0 22px 50px -20px rgba(15,15,16,.5); }
.map__card-ico {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--pink-mist);
  color: var(--pink);
}
.map__card-ico svg { width: 19px; height: 19px; }
.map__card-body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.map__card-body strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--grey);
  letter-spacing: -0.01em;
}
.map__card-body span {
  font-family: var(--font-body);
  font-size: .78rem;
  color: var(--grey-2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.map__card-go {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--grey);
  color: var(--white);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.map__card:hover .map__card-go { background: var(--pink); transform: translateX(2px); }

@media (max-width: 1000px) {
  .visit-card { grid-template-columns: 1fr; }
  .map__frame { min-height: 440px; }
}
@media (max-width: 620px) {
  .visit-card { padding: 24px 18px; border-radius: 24px; }
  .detail-grid { grid-template-columns: 1fr; }
  .hours { grid-template-columns: 1fr; }
  .map__frame { min-height: 380px; }
  .map__card { grid-template-columns: 38px 1fr 32px; gap: 10px; padding: 11px; }
  .map__card-ico { width: 38px; height: 38px; }
  .map__card-go { width: 32px; height: 32px; }
}

/* ---------------------------------------------------------------
   16 · Footer
   --------------------------------------------------------------- */
.foot {
  background: var(--grey);
  color: var(--white);
  padding: clamp(60px, 8vw, 96px) var(--pad-x) 0;
}
.foot__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.foot__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 48px);
  padding-bottom: 40px;
  border-bottom: 1px solid color-mix(in oklab, var(--white) 15%, transparent);
}
.foot__grid > div { display: flex; flex-direction: column; gap: 8px; }
.foot__mark { align-items: flex-start; }
.foot__logo {
  display: block;
  height: 68px;
  width: auto;
  padding: 14px 20px;
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 4px;
}
@media (max-width: 900px) { .foot__logo { height: 56px; padding: 12px 18px; } }
.foot__grid .eyebrow { color: var(--pink); margin-bottom: 8px; }
.foot__grid a {
  font-size: .95rem;
  color: color-mix(in oklab, var(--white) 82%, transparent);
  transition: color .25s var(--ease);
}
.foot__grid a:hover { color: var(--pink); }
.foot__grid span { font-size: .95rem; color: color-mix(in oklab, var(--white) 82%, transparent); }
.foot__mark p {
  margin: 12px 0 0;
  font-size: .9rem;
  color: color-mix(in oklab, var(--white) 60%, transparent);
  max-width: 32ch;
  font-family: var(--font-display);
  font-style: italic;
}
.foot__bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--white) 55%, transparent);
}
.foot__poster {
  padding: 30px 0 40px;
  overflow: hidden;
  text-align: center;
}
.foot__poster span {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.6rem, 14vw, 11rem);
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: color-mix(in oklab, var(--pink) 40%, transparent);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .foot__mark { grid-column: 1 / -1; }
  .foot__bar { flex-direction: column; gap: 12px; }
}

/* ---------------------------------------------------------------
   17 · Motion system
   --------------------------------------------------------------- */

/* Motion grammar — one easing family, one duration scale.
   z-index scale: curtain 100 · wa 60 · nav 30 · drawer 25
                  content 1 · hero bg -1                              */
:root {
  --ease-out:  cubic-bezier(.16, 1, .3, 1);    /* entrances, reveals */
  --ease-soft: cubic-bezier(.4, 0, .2, 1);     /* state changes      */
  --ease-in:   cubic-bezier(.7, 0, .84, 0);    /* exits, curtain in  */
  --t-fast: 240ms;
  --t-base: 420ms;
  --t-slow: 760ms;
}

/* --- scroll reveal: fade + rise + settle --- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
  will-change: auto;
}
/* Headlines get a touch more travel and a soft focus-in */
.sec-head .display.reveal {
  transform: translateY(30px);
  filter: blur(7px);
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out),
    filter var(--t-slow) var(--ease-out);
}
/* Must restate transform: the headline rule above has equal specificity
   and comes later than `.reveal.in-view`, so it would otherwise win. */
.sec-head .display.reveal.in-view {
  filter: blur(0);
  transform: none;
}

/* Cards rise with a hint of scale */
/* Cards reveal with the INDIVIDUAL translate/scale properties, not the
   `transform` shorthand — that leaves `transform` free for the hover
   tilt so the two systems never fight each other. */
.svc-item.reveal {
  translate: 0 26px;
  scale: .985;
}
.svc-item.reveal.in-view {
  translate: none;
  scale: none;
}

/* --- hero parallax hook (set by JS) --- */
.hero__bg img { will-change: transform; }
@media (prefers-reduced-motion: no-preference) {
  .hero__bg img { translate: 0 var(--py, 0px); }
}

/* --- curtain transition --- */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 100;   /* top of the stack — see the scale note above */
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.curtain[aria-hidden="true"] { visibility: hidden; }
.curtain[aria-hidden="false"] { visibility: visible; }

.curtain__panel {
  position: relative;
  transform: scaleY(0);
  transform-origin: 50% 0%;
  background: linear-gradient(180deg, #FF3F94 0%, var(--pink) 46%, var(--pink-deep) 100%);
}
/* subtle silk sheen so it reads as fabric, not a flat block */
.curtain__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(255,255,255,0) 34%,
    rgba(255,255,255,.13) 50%,
    rgba(255,255,255,0) 66%);
}
.curtain__panel + .curtain__panel::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 1px;
  background: rgba(255,255,255,.14);
}

/* sweeping in: panels drop, staggered left → right */
.curtain.is-in .curtain__panel {
  animation: curtainIn 620ms var(--ease-in) forwards;
}
.curtain.is-in .curtain__panel:nth-child(1) { animation-delay: 0ms; }
.curtain.is-in .curtain__panel:nth-child(2) { animation-delay: 55ms; }
.curtain.is-in .curtain__panel:nth-child(3) { animation-delay: 110ms; }
.curtain.is-in .curtain__panel:nth-child(4) { animation-delay: 165ms; }
.curtain.is-in .curtain__panel:nth-child(5) { animation-delay: 220ms; }

/* sweeping out: panels lift away from the bottom, reverse stagger */
.curtain.is-out .curtain__panel {
  transform: scaleY(1);
  transform-origin: 50% 100%;
  animation: curtainOut 700ms var(--ease-out) forwards;
}
.curtain.is-out .curtain__panel:nth-child(5) { animation-delay: 0ms; }
.curtain.is-out .curtain__panel:nth-child(4) { animation-delay: 55ms; }
.curtain.is-out .curtain__panel:nth-child(3) { animation-delay: 110ms; }
.curtain.is-out .curtain__panel:nth-child(2) { animation-delay: 165ms; }
.curtain.is-out .curtain__panel:nth-child(1) { animation-delay: 220ms; }

@keyframes curtainIn  { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes curtainOut { from { transform: scaleY(1); } to { transform: scaleY(0); } }

.curtain__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease-soft);
}
.curtain.is-in .curtain__content {
  opacity: 1;
  transition-delay: 330ms;
}
.curtain.is-out .curtain__content { opacity: 0; transition-duration: 160ms; }
.curtain__mark {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .66rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.curtain__label {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
}

/* --- floating WhatsApp chat --- */
.wa {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  background: linear-gradient(140deg, #25D366 0%, #128C7E 100%);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    0 2px 4px rgba(15,15,16,.15),
    0 18px 34px -14px rgba(37,211,102,.55),
    inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform .32s var(--ease-out), box-shadow .32s var(--ease-out);
}
.wa:hover {
  transform: translateY(-3px);
  box-shadow:
    0 2px 4px rgba(15,15,16,.15),
    0 26px 44px -16px rgba(37,211,102,.72),
    inset 0 1px 0 rgba(255,255,255,.32);
}
.wa__ico {
  flex: none;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.15));
}
.wa__label { position: relative; }

/* soft "you're being called" pulse ring behind the button */
.wa__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  box-shadow: 0 0 0 0 rgba(37,211,102,.55);
  animation: waPulse 2.4s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { box-shadow: 0 0 0 0    rgba(37,211,102,.55); }
  70%  { box-shadow: 0 0 0 22px rgba(37,211,102,0);   }
  100% { box-shadow: 0 0 0 0    rgba(37,211,102,0);   }
}

@media (max-width: 480px) {
  .wa { padding: 12px; }
  .wa__label { display: none; }        /* icon only on small screens */
}

/* --- focus ring --- */
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: 6px;
}

/* --- reduced motion: neutralise everything --- */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .sec-head .display.reveal,
  .svc-item.reveal {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    scale: none !important;
    filter: none !important;
    transition: none !important;
  }
  .svc-item::before,
  .svc-item::after { display: none !important; }
  .why-card.reveal,
  .g-tile.reveal,
  .pola.reveal {
    opacity: 1 !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
    transition: none !important;
  }
  .rev__track { animation: none !important; }
  .curtain { display: none !important; }
  .hero__bg img { animation: none !important; translate: none !important; }
  .chip__dot { animation: none !important; }
  .wa__pulse { animation: none !important; }
}
