/* ============================================================
   SHAVING DISTRICT — Design System
   Palette: ink black / antique gold / belmont mustard / bone
   Type: Bebas Neue (display) + Manrope (body)
   ============================================================ */

:root {
  --ink: #0b0a08;
  --ink-2: #14120e;
  --ink-3: #1d1a14;
  --gold: #c9a227;
  --gold-bright: #e6c14a;
  --mustard: #e8a33d;
  --bone: #f2ede3;
  --bone-dim: #b8b0a0;
  --line: rgba(201, 162, 39, 0.22);
  --font-display: "Bebas Neue", "Oswald", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --nav-h: 76px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: initial; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--ink); }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- grain overlay ---------- */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none; z-index: 2000;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-5%, -5%); }
  30% { transform: translate(3%, -2%); }
  50% { transform: translate(-2%, 4%); }
  70% { transform: translate(4%, 2%); }
  90% { transform: translate(-3%, 3%); }
}

/* ---------- typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-transform: uppercase;
}
.h-hero  { font-size: clamp(3.4rem, 11vw, 10.5rem); }
.h-huge  { font-size: clamp(2.6rem, 7.5vw, 6.5rem); }
.h-big   { font-size: clamp(2rem, 5vw, 4rem); }
.h-mid   { font-size: clamp(1.5rem, 3vw, 2.4rem); letter-spacing: 0.05em; }

.kicker {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 34px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
}

.lead { color: var(--bone-dim); font-size: clamp(0.95rem, 1.4vw, 1.1rem); max-width: 56ch; }
.gold { color: var(--gold); }
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(242, 237, 227, 0.35);
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 17px 38px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  overflow: hidden;
  transition: color 0.35s var(--ease-out);
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--bone);
  transform: translateY(101%);
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}
.btn:hover::before { transform: translateY(0); }
.btn svg { width: 16px; height: 16px; transition: transform 0.35s var(--ease-out); }
.btn:hover svg { transform: translateX(5px); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  box-shadow: inset 0 0 0 1px rgba(242, 237, 227, 0.28);
}
.btn--ghost::before { background: var(--gold); }
.btn--ghost:hover { color: var(--ink); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 clamp(18px, 4vw, 48px);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 10, 8, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(201, 162, 39, 0.14);
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand svg, .nav__brand img { height: 30px; width: auto; }
.nav__brand .word {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.14em;
  color: var(--bone);
}
.nav__links { display: flex; gap: clamp(16px, 2.6vw, 38px); }
.nav__links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bone-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__links a:hover { color: var(--bone); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: inline-flex; }
.nav .btn { padding: 12px 24px; font-size: 0.68rem; }

.burger { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1002; }
.burger span { width: 26px; height: 2px; background: var(--bone); transition: 0.35s var(--ease-out); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1001;
  background: rgba(11, 10, 8, 0.97);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  clip-path: circle(0% at calc(100% - 44px) 38px);
  transition: clip-path 0.65s var(--ease-out);
  pointer-events: none;
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 44px) 38px); pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9vw, 3.4rem);
  color: var(--bone);
  letter-spacing: 0.06em;
  padding: 4px 0;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 26px; }

/* ---------- layout ---------- */
.section { position: relative; padding: clamp(90px, 12vw, 160px) clamp(20px, 6vw, 84px); }
.section--tight { padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(60px, 8vw, 100px); }
.section__head { margin-bottom: clamp(40px, 6vw, 72px); }
.section__head .display { margin-top: 18px; }

/* ---------- marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  background: var(--ink-2);
}
.marquee__track { display: flex; gap: 60px; width: max-content; will-change: transform; }
.marquee__track span {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  letter-spacing: 0.14em;
  color: var(--bone-dim);
  white-space: nowrap;
  display: flex; align-items: center; gap: 60px;
}
.marquee__track span i {
  font-style: normal;
  color: var(--gold);
  font-size: 0.8em;
}

/* ---------- services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc {
  background: var(--ink);
  padding: clamp(26px, 3vw, 40px);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.svc:hover { background: var(--ink-3); }
.svc__img {
  margin: calc(clamp(26px, 3vw, 40px) * -1) calc(clamp(26px, 3vw, 40px) * -1) 24px;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.svc__img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11, 10, 8, 0.55));
}
.svc__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(25%) brightness(0.92);
  transform: scale(1.01);
  transition: filter 0.5s, transform 0.8s var(--ease-out);
}
.svc:hover .svc__img img { filter: grayscale(0) brightness(1); transform: scale(1.07); }
.svc__icon { width: 42px; height: 42px; color: var(--gold); margin-bottom: 22px; }
.svc__icon svg { width: 100%; height: 100%; }
.svc h3 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.05em; margin-bottom: 6px; }
.svc__meta { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 12px; }
.svc__price { font-family: var(--font-display); font-size: 1.9rem; color: var(--gold); }
.svc__dur { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-dim); }
.svc p { font-size: 0.9rem; color: var(--bone-dim); }
.svc::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  height: 2px; width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.svc:hover::after { transform: scaleX(1); }

/* ---------- barbers ---------- */
.barbers__row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
}
.barber {
  position: relative;
  background: linear-gradient(180deg, var(--ink-2), var(--ink-3));
  border: 1px solid rgba(201, 162, 39, 0.12);
  padding-top: 24px;
  overflow: hidden;
}
.barber img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  object-position: bottom;
  filter: grayscale(35%);
  transition: filter 0.45s, transform 0.6s var(--ease-out);
}
.barber:hover img { filter: grayscale(0); transform: scale(1.04); }
.barber__info {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(11, 10, 8, 0.95) 30%, transparent);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.barber__info h3 { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.06em; }
.barber__info small { display: block; font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bone-dim); }
.barber__rating { font-size: 0.78rem; font-weight: 800; color: var(--gold); white-space: nowrap; }

/* ---------- gallery ---------- */
.gallery { padding: 0; overflow: hidden; }
.gallery__track { display: flex; gap: clamp(12px, 1.6vw, 24px); width: max-content; padding: 0 6vw; will-change: transform; }
.gallery__track figure {
  /* fit inside the pinned viewport: header (~space above) + image must never exceed 100svh */
  height: min(calc(100svh - var(--gallery-head, 300px)), 620px);
  width: min(78vw, calc((100svh - var(--gallery-head, 300px)) * 0.78));
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.gallery__track img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery__track figure:hover img { transform: scale(1.06); }
.gallery__track figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bone);
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* ---------- reviews ---------- */
.reviews { background: var(--ink-2); }
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 36px); }
.review { border-left: 2px solid var(--gold); padding: 8px 0 8px 26px; }
.review blockquote { font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 500; color: var(--bone); }
.review cite { display: block; margin-top: 16px; font-style: normal; font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--bone-dim); }
.review .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 10px; font-size: 0.85rem; }

/* ---------- visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 13px 0; border-bottom: 1px solid rgba(242, 237, 227, 0.08); font-size: 0.92rem; }
.hours td:last-child { text-align: right; color: var(--bone-dim); }
.hours tr.today td { color: var(--gold); font-weight: 700; }
.visit__block { margin-bottom: 30px; }
.visit__block h4 { font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.visit__block p, .visit__block a { font-size: 1.05rem; color: var(--bone); }
.visit__block a:hover { color: var(--gold-bright); }

.visit__photo {
  margin-bottom: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.visit__photo img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  object-position: center 62%;
  transition: transform 0.8s var(--ease-out);
}
.visit__photo:hover img { transform: scale(1.04); }

/* ---------- film band (Vimeo background) ---------- */
.film-band {
  position: relative;
  height: 74vh;
  min-height: 480px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-2);
}
.film-band__video {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
}
.film-band__video iframe {
  position: absolute; top: 50%; left: 50%;
  width: 100vw; height: 56.25vw;
  min-height: 100%; min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: 0;
}
.film-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(11,10,8,0.72), rgba(11,10,8,0.25) 45%, rgba(11,10,8,0.78));
}
.film-band__inner {
  position: relative; z-index: 1;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 20px;
  text-shadow: 0 4px 34px rgba(0,0,0,0.7);
}

/* ---------- Google reviews scroller ---------- */
.grev { background: var(--ink-2); padding-left: 0; padding-right: 0; overflow: hidden; }
.grev .section__head { padding: 0 clamp(20px, 6vw, 84px); display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; }
.grev__score { display: flex; align-items: center; gap: 16px; }
.grev__g {
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--bone);
  display: grid; place-items: center;
  font-family: var(--font-body); font-weight: 800; font-size: 1.7rem;
  color: #4285f4;
}
.grev__score strong { font-family: var(--font-display); font-size: 2.2rem; letter-spacing: 0.04em; display: block; line-height: 1; }
.grev__score .stars { color: var(--gold); letter-spacing: 3px; }
.grev__score small { color: var(--bone-dim); font-size: 0.75rem; letter-spacing: 0.12em; }
.grev__viewport { overflow: hidden; margin-top: clamp(30px, 4vw, 50px); }
.grev__viewport:hover .marquee__track { animation-play-state: paused; }
.grev .marquee__track { gap: clamp(14px, 2vw, 24px); padding: 4px 0; }

/* ---------- BusinessRate award plaque (lives inside #reviews) ---------- */
.award {
  margin: clamp(46px, 6vw, 78px) clamp(20px, 6vw, 84px) 0;
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}
.award__frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 3px;
  /* the plaque hangs slightly off-true in the photo; leaning into it reads as a
     wall shot rather than a stock badge, and it straightens on hover */
  transform: rotate(-1.8deg);
  transition: transform 0.7s var(--ease-out);
  box-shadow:
    0 0 0 1px var(--line),
    0 30px 70px -30px #000,
    0 0 70px -22px rgba(201, 162, 39, 0.38);
}
.award__frame::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(115deg, transparent 38%, rgba(242, 237, 227, 0.13) 48%, transparent 58%);
  transform: translateX(-70%);
  transition: transform 1.1s var(--ease-out);
  pointer-events: none;
}
.award:hover .award__frame { transform: rotate(0deg); }
.award:hover .award__frame::after { transform: translateX(70%); }
.award__frame img { width: 100%; height: auto; display: block; }

.award__ttl { margin-top: 18px; }
.award__ttl .reveal-line { display: block; }
.award__lead { color: var(--bone-dim); max-width: 50ch; margin-top: 20px; }

.award__facts {
  list-style: none;
  padding: 0;
  margin: clamp(24px, 3vw, 34px) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.award__facts li {
  flex: 1 1 140px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(201, 162, 39, 0.05);
}
.award__facts strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
}
.award__facts span {
  display: block;
  margin-top: 5px;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-dim);
}
.award__src {
  margin-top: 18px;
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-dim);
}

@media (max-width: 860px) {
  .award { grid-template-columns: 1fr; gap: 32px; }
  .award__frame { max-width: 330px; margin-inline: auto; }
}
.rev-card {
  width: clamp(280px, 30vw, 380px);
  flex-shrink: 0;
  background: var(--ink);
  border: 1px solid rgba(201, 162, 39, 0.14);
  padding: 26px 26px 22px;
  white-space: normal;
  display: flex; flex-direction: column; gap: 12px;
}
.rev-card .stars { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; }
.rev-card p { font-size: 0.92rem; color: var(--bone); line-height: 1.55; flex: 1; }
.rev-card footer { display: flex; align-items: center; justify-content: space-between; }
.rev-card cite { font-style: normal; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-dim); }
.rev-card .src { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; color: var(--bone-dim); border: 1px solid rgba(242,237,227,0.18); padding: 3px 9px; border-radius: 100px; }

/* ---------- app section ---------- */
.app-band { overflow: hidden; }
.app-band__grid {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}
.app-band__phone { position: relative; text-align: center; }
.app-band__phone img { max-height: 540px; margin: 0 auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)); }
.app-band__badges { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.app-band__badges img { height: 52px; width: auto; transition: transform 0.35s var(--ease-out), opacity 0.3s; }
.app-band__badges a:hover img { transform: translateY(-4px); opacity: 0.85; }
@media (max-width: 800px) {
  .app-band__grid { grid-template-columns: 1fr; }
  .app-band__phone { order: -1; }
  .app-band__phone img { max-height: 380px; }
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(110px, 16vw, 200px) 20px;
  overflow: hidden;
  isolation: isolate;
}
.cta-band__bg {
  position: absolute; inset: 0; z-index: -2;
  background-size: cover; background-position: center;
  filter: brightness(0.3) saturate(0.85);
  transform: scale(1.15);
}
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(ellipse at center, transparent 20%, rgba(11,10,8,0.85)); }
.cta-band .h-huge { margin: 14px 0 34px; }

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: clamp(50px, 7vw, 80px) clamp(20px, 6vw, 84px) 36px;
  background: var(--ink-2);
}
.footer__top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 54px; }
.footer__brand img { height: 74px; opacity: 0.92; }
.footer__col h4 { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; color: var(--bone-dim); font-size: 0.9rem; transition: color 0.3s, transform 0.3s; }
.footer__col a:hover { color: var(--bone); transform: translateX(4px); }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; border-top: 1px solid rgba(242,237,227,0.08); padding-top: 26px; font-size: 0.75rem; color: var(--bone-dim); }

/* ---------- eagle mascot ---------- */
#eagle-mascot {
  position: fixed;
  z-index: 900;
  width: 90px; height: auto;
  top: 0; left: 0;
  pointer-events: none;
  color: var(--gold);
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.55));
  will-change: transform;
  opacity: 0;
}
#eagle-mascot svg, #eagle-mascot img { width: 100%; height: auto; }

/* scroll progress: gold feather line */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 1100;
  background: transparent;
}
.progress__bar { height: 100%; width: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-bright)); transform-origin: left; transform: scaleX(0); }

/* ---------- variant switcher chip ---------- */
.variant-switch {
  position: fixed;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 1200;
  display: flex;
  gap: 4px;
  padding: 6px;
  background: rgba(11, 10, 8, 0.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  border-radius: 100px;
}
.variant-switch a {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 8px 14px;
  border-radius: 100px;
  color: var(--bone-dim);
  transition: 0.3s;
  white-space: nowrap;
}
.variant-switch a:hover { color: var(--bone); }
.variant-switch a.active { background: var(--gold); color: var(--ink); }

/* ---------- reveal helpers ---------- */
.reveal-line { overflow: hidden; }
.reveal-line > * { display: inline-block; transform: translateY(110%); }
[data-reveal] { opacity: 0; transform: translateY(40px); }

/* ---------- scroll hint ---------- */
.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.62rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--bone-dim);
  z-index: 30;
}
.scroll-hint::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: hint 1.8s var(--ease-out) infinite;
}
@keyframes hint {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ responsive ============ */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .burger { display: flex; }
  .visit__grid { grid-template-columns: 1fr; }
  .barber img { height: 280px; }
}
@media (max-width: 600px) {
  :root { --nav-h: 64px; }
  .section { padding-left: 20px; padding-right: 20px; }
  .services__grid { grid-template-columns: 1fr; }
  .gallery__track figure {
    height: min(calc(100svh - var(--gallery-head, 260px)), 120vw);
    width: 78vw;
  }
  #eagle-mascot { width: 60px; }
  .variant-switch { bottom: 12px; max-width: calc(100vw - 16px); overflow-x: auto; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================
   POLISH ROUND — ritual accordion, experience, bench, gallery
   marquee, review cards v2, visit cards
   ============================================================ */

/* ---------- experience v2 ---------- */
.xp { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: start; }
.xp__features { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.5vw, 32px); margin-top: 38px; }
.xp-f { display: flex; gap: 16px; align-items: flex-start; }
.xp-f svg { width: 38px; height: 38px; flex-shrink: 0; color: var(--gold); }
.xp-f h4 { font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.07em; margin-bottom: 4px; }
.xp-f p { font-size: 0.85rem; color: var(--bone-dim); line-height: 1.5; }
.xp__visual { position: relative; padding-bottom: 70px; }
.xp__img-main { overflow: hidden; border: 1px solid var(--line); }
.xp__img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.8s var(--ease-out); }
.xp__visual:hover .xp__img-main img { transform: scale(1.05); }
.xp__img-accent {
  position: absolute; right: -4%; bottom: 0;
  width: 52%; overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.xp__img-accent img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.xp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  margin-top: clamp(46px, 6vw, 80px);
  background: var(--ink-2);
}
.xp-stat { padding: clamp(20px, 3vw, 36px); text-align: center; border-right: 1px solid var(--line); }
.xp-stat:last-child { border-right: 0; }
.xp-stat strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 4vw, 3.2rem); color: var(--gold); line-height: 1; }
.xp-stat strong i { font-style: normal; font-size: 0.5em; vertical-align: super; }
.xp-stat span { font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--bone-dim); }
@media (max-width: 900px) {
  .xp { grid-template-columns: 1fr; }
  .xp-stats { grid-template-columns: repeat(2, 1fr); }
  .xp-stat:nth-child(2n) { border-right: 0; }
  .xp-stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

/* ---------- ritual accordion ---------- */
.ritual { display: flex; gap: 8px; height: clamp(480px, 62vh, 620px); }
.ritual__item {
  position: relative; flex: 1; min-width: 0;
  background: var(--ink);
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.65s cubic-bezier(0.6, 0.05, 0.2, 1), border-color 0.4s;
}
.ritual__item:hover { border-color: rgba(201, 162, 39, 0.5); }
.ritual__item.is-active { flex: 6.5; cursor: default; border-color: rgba(201, 162, 39, 0.4); }
.ritual__head {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: space-between;
  padding: 22px 0;
  width: 100%;
  color: var(--bone);
  transition: opacity 0.3s;
}
.ritual__item.is-active .ritual__head { opacity: 0; pointer-events: none; }
.ritual__head .ritual__num { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.2em; color: var(--bone-dim); }
.ritual__head .ritual__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  letter-spacing: 0.12em; text-transform: uppercase;
  writing-mode: vertical-rl; transform: rotate(180deg);
  white-space: nowrap;
}
.ritual__head .ritual__hprice { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold); }
.ritual__body {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 1.1fr 1fr;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s 0.25s;
}
.ritual__item.is-active .ritual__body { opacity: 1; pointer-events: auto; }
.ritual__body figure { overflow: hidden; min-width: 0; }
.ritual__body figure img { width: 100%; height: 100%; object-fit: cover; }
.ritual__info { padding: clamp(22px, 3vw, 44px); display: flex; flex-direction: column; gap: 12px; min-width: 0; overflow: auto; }
.ritual__info .ritual__num { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.25em; }
.ritual__info h3 { font-size: clamp(1.7rem, 2.6vw, 2.6rem); letter-spacing: 0.04em; line-height: 1; }
.ritual__meta { display: flex; align-items: baseline; gap: 18px; }
.ritual__price { font-family: var(--font-display); font-size: clamp(1.6rem, 2.4vw, 2.3rem); color: var(--gold); }
.ritual__dur { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bone-dim); }
.ritual__info p { font-size: 0.92rem; color: var(--bone-dim); line-height: 1.6; }
.ritual__info .btn { margin-top: auto; align-self: flex-start; }
@media (max-width: 860px) {
  .ritual { flex-direction: column; height: auto; gap: 6px; }
  .ritual__item { flex: none; height: 58px; transition: height 0.55s cubic-bezier(0.6, 0.05, 0.2, 1), border-color 0.4s; }
  .ritual__item.is-active { flex: none; height: 560px; }
  .ritual__head { flex-direction: row; padding: 0 18px; align-items: center; gap: 14px; }
  .ritual__head .ritual__title { writing-mode: horizontal-tb; transform: none; flex: 1; text-align: left; }
  .ritual__body { grid-template-columns: 1fr; grid-template-rows: 220px 1fr; }
  .ritual__info { padding: 20px; }
  .ritual__info .btn { margin-top: 10px; }
}

/* ---------- bench: one row desktop, marquee mobile ---------- */
@media (min-width: 1000px) {
  .barbers__row { grid-template-columns: repeat(6, 1fr); }
  .barber img { height: clamp(200px, 17vw, 300px); }
}
.barbers--marquee {
  display: flex !important;
  width: max-content;
  gap: 14px;
  will-change: transform;
}
.barbers--marquee .barber { width: 230px; flex-shrink: 0; }
.barbers__clip { overflow: hidden; }

/* ---------- gallery drift marquee ---------- */
.gallery__marquee { overflow: hidden; padding-bottom: clamp(50px, 7vw, 90px); }
.gallery__marquee .marquee__track { gap: clamp(12px, 1.6vw, 24px); }
.gallery__marquee figure {
  width: clamp(250px, 26vw, 420px);
  height: clamp(330px, 48vh, 540px);
  overflow: hidden; position: relative; flex-shrink: 0;
}
.gallery__marquee img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.gallery__marquee figure:hover img { transform: scale(1.06); }
.gallery__marquee figcaption {
  position: absolute; left: 16px; bottom: 14px;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--bone); text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

/* ---------- review cards v2 ---------- */
.rev-card header { display: flex; align-items: center; gap: 12px; }
.rev-card header > div { flex: 1; min-width: 0; }
.rev-card .stars { font-size: 0.72rem; margin-top: 2px; }
.rev-av {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  font-weight: 800; font-size: 0.85rem; color: #fff;
}
.rev-av.a1 { background: #4285f4; } .rev-av.a2 { background: #b0453a; }
.rev-av.a3 { background: #2e7d52; } .rev-av.a4 { background: #7b5cb8; }
.rev-av.a5 { background: #b8860b; } .rev-av.a6 { background: #4a7a8c; }
.src-ic { width: 22px; height: 22px; flex-shrink: 0; }

/* ---------- visit v2 ---------- */
.vcards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.vcard {
  display: flex; gap: 15px; align-items: flex-start;
  border: 1px solid var(--line);
  background: var(--ink-2);
  padding: 20px;
  transition: border-color 0.35s, transform 0.35s var(--ease-out), background 0.35s;
}
.vcard:hover { border-color: rgba(201, 162, 39, 0.55); background: var(--ink-3); transform: translateY(-3px); }
.vcard svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.vcard h4 { font-size: 0.64rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.vcard p { font-size: 0.95rem; color: var(--bone); line-height: 1.35; word-break: break-word; }
.vcard span { display: block; margin-top: 7px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-dim); transition: color 0.3s; }
.vcard:hover span { color: var(--gold-bright); }
.vmap { margin-top: 26px; border: 1px solid var(--line); overflow: hidden; }
.vmap iframe {
  width: 100%; height: 300px; border: 0; display: block;
  filter: grayscale(1) invert(0.92) hue-rotate(185deg) contrast(0.88) brightness(0.9);
}
@media (max-width: 640px) { .vcards { grid-template-columns: 1fr; } }

/* ============================================================
   POLISH ROUND 2 — mobile stats row, ritual head visible,
   bench 2-up, avatar fix, one-row badges, footer v2
   ============================================================ */

/* stats: always one row of 4, tightened on phones */
@media (max-width: 900px) {
  .xp-stats { grid-template-columns: repeat(4, 1fr); }
  .xp-stat { padding: 14px 6px; border-bottom: 0 !important; border-right: 1px solid var(--line); }
  .xp-stat:last-child { border-right: 0; }
  .xp-stat strong { font-size: clamp(1.15rem, 5.4vw, 1.9rem); }
  .xp-stat span { font-size: 0.5rem; letter-spacing: 0.16em; }
}

/* ritual on mobile: active item keeps its header visible so the row list stays readable */
@media (max-width: 860px) {
  .ritual__item.is-active { height: 618px; }
  .ritual__item.is-active .ritual__head {
    opacity: 1;
    pointer-events: none;
    flex-direction: row;
    height: 58px;
    inset: 0 0 auto 0;
    background: var(--ink-3);
    border-bottom: 1px solid var(--line);
  }
  .ritual__item.is-active .ritual__head .ritual__title { color: var(--gold); }
  .ritual__item.is-active .ritual__body { top: 58px; }
}

/* bench: 2 per row on phones */
@media (max-width: 999px) {
  .barbers__row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .barber img { height: clamp(190px, 46vw, 280px); }
  .barber__info { padding: 12px 12px; }
  .barber__info h3 { font-size: 1.1rem; }
  .barber__rating { font-size: 0.66rem; }
}

/* review avatar: bulletproof circle */
.rev-av {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  min-width: 42px; min-height: 42px;
  border-radius: 50%;
  overflow: hidden;
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--font-body);
}

/* app badges: single row on phones */
.app-band__badges { flex-wrap: nowrap; }
@media (max-width: 480px) {
  .app-band__badges { gap: 10px; }
  .app-band__badges img { height: clamp(38px, 11.5vw, 48px); }
}

/* ---------- footer v2 ---------- */
.footer { padding: 0; border-top: 1px solid var(--line); background: var(--ink-2); overflow: hidden; }
.footer__hero {
  position: relative;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 30px;
  padding: clamp(50px, 7vw, 90px) clamp(20px, 6vw, 84px);
  border-bottom: 1px solid rgba(242, 237, 227, 0.08);
}
.footer__word {
  font-size: clamp(3rem, 8.5vw, 7.5rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201, 162, 39, 0.55);
  transition: color 0.6s;
}
.footer__hero:hover .footer__word { color: rgba(201, 162, 39, 0.12); }
.footer__tag { margin-top: 14px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.34em; text-transform: uppercase; color: var(--bone-dim); }
.footer__cta { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.footer__eagle { height: clamp(70px, 9vw, 120px); width: auto; opacity: 0.95; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5)); }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(26px, 4vw, 60px);
  padding: clamp(40px, 5vw, 64px) clamp(20px, 6vw, 84px);
}
.footer__col h4 { font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer__col a { display: block; padding: 5px 0; color: var(--bone-dim); font-size: 0.9rem; transition: color 0.3s, transform 0.3s; }
.footer__col a:hover { color: var(--bone); transform: translateX(4px); }
.footer__hours-line { display: block; padding: 5px 0; color: var(--bone-dim); font-size: 0.82rem; }
.footer__social { display: flex; gap: 12px; margin-bottom: 20px; }
.footer__social a {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bone-dim);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease-out), background 0.3s;
  padding: 0;
}
.footer__social a:hover { color: var(--ink); background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__apps { display: flex; gap: 10px; flex-wrap: nowrap; }
.footer__apps img { height: 38px; width: auto; transition: transform 0.3s var(--ease-out); }
.footer__apps a:hover img { transform: translateY(-3px); }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 22px clamp(20px, 6vw, 84px) 26px;
  border-top: 1px solid rgba(242, 237, 227, 0.08);
  font-size: 0.72rem; color: var(--bone-dim);
}
.footer__legal { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.footer__d1 { display: inline-flex; align-items: center; gap: 8px; color: var(--bone); transition: opacity 0.3s var(--ease-out); }
.footer__d1:hover { opacity: 0.8; }
.footer__d1 > span { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.04em; }
.footer__d1 img { height: 26px; width: auto; display: block; }
.footer__gent { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.22em; color: var(--gold); text-transform: uppercase; }
.footer__top {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  transition: background 0.3s, color 0.3s, transform 0.35s var(--ease-out);
}
.footer__top:hover { background: var(--gold); color: var(--ink); transform: translateY(-4px); }
.footer__top svg { width: 18px; height: 18px; }
@media (max-width: 700px) {
  .footer__hero { flex-direction: column; align-items: flex-start; }
  .footer__cta { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  .footer__eagle { height: 62px; }
}

/* ============================================================
   EAGLE MASCOT — character appearances per section
   ============================================================ */
.mascot {
  position: absolute;
  z-index: 6;
  pointer-events: none;
  margin: 0;
  filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.55));
  will-change: transform;
}
.mascot img { width: 100%; height: auto; }

/* services: standing guard beside "Pick your ritual" */
.mascot--razor {
  top: clamp(46px, 7vw, 110px);
  right: clamp(8px, 5vw, 90px);
  width: clamp(96px, 14vw, 220px);
}

/* experience: leaning on the photo stack with his whiskey */
.mascot--whiskey {
  position: absolute;
  left: clamp(-30px, -3vw, -14px);
  bottom: 30px;
  width: clamp(110px, 13vw, 200px);
  z-index: 3;
}

/* CTA band: pointing you to the button */
.mascot--point {
  left: clamp(4px, 7vw, 140px);
  bottom: 0;
  width: clamp(110px, 16vw, 250px);
}

/* reviews: thumbs-up over the scroller */
.mascot--thumbs {
  top: clamp(20px, 3vw, 46px);
  right: clamp(8px, 4vw, 70px);
  width: clamp(90px, 12vw, 190px);
}

/* app: showing off the app next to the mockup */
.mascot--phone {
  position: absolute;
  left: -12%;
  bottom: -4%;
  width: 52%;
  z-index: 2;
}
.app-band__phone { position: relative; }

@media (max-width: 700px) {
  .mascot--razor { top: 30px; right: 6px; }
  .mascot--thumbs { top: auto; bottom: -10px; right: 4px; }
  .mascot--point { left: 2px; }
  .mascot--whiskey { bottom: 10px; }
}

/* ============================================================
   ROUND 4 — inline mascots (never cover content) + wings reveal
   ============================================================ */

/* inline mascots occupy their own layout space — no overlap possible */
.mascotin {
  position: relative;
  margin: 0;
  pointer-events: none;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.5));
  will-change: transform;
  flex-shrink: 0;
  align-self: flex-end;
}
.mascotin img { width: 100%; height: auto; display: block; }

.section__head--flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  flex-wrap: wrap;
}

.mascotin--razor { width: clamp(72px, 8.5vw, 140px); }
.mascotin--whiskey { width: clamp(78px, 8vw, 125px); justify-self: center; align-self: end; }
.mascotin--thumbs { width: clamp(66px, 7vw, 112px); }

/* CTA band: eagle and content share a flex row; text stays clear */
.cta-band__flex {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(14px, 4vw, 64px);
  flex-wrap: wrap;
}
.cta-band__content { text-align: center; }
.mascotin--point { width: clamp(84px, 10vw, 160px); }

/* app: eagle and phone side by side */
.app-duo { display: flex; align-items: flex-end; justify-content: center; gap: 4%; }
.mascotin--phone { width: 30%; }
.app-duo__phone { width: 56%; max-height: 540px; object-fit: contain; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.55)); }

@media (max-width: 700px) {
  .mascotin--razor { width: 70px; }
  .mascotin--thumbs { width: 62px; }
  .mascotin--point { width: 80px; }
  .cta-band__flex { gap: 10px; }
}

/* ---------- wings-open reveal over the film band ---------- */
.wings-plate {
  --holeW: 50vw;
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: var(--ink);
  -webkit-mask-image: linear-gradient(#fff, #fff), url("../assets/img/SD_White-e1758854639854.png");
  mask-image: linear-gradient(#fff, #fff), url("../assets/img/SD_White-e1758854639854.png");
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%, var(--holeW) auto;
  mask-size: 100% 100%, var(--holeW) auto;
  -webkit-mask-position: 0 0, center 45%;
  mask-position: 0 0, center 45%;
  -webkit-mask-composite: xor;
  mask-composite: subtract;
  will-change: -webkit-mask-size, mask-size;
}
/* ---------- wings outro (after footer) ---------- */
.wings-outro {
  position: relative;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--ink);
}
.wings-outro__scene {
  position: absolute; inset: -4%;
  background: url("../assets/img/Copy-of-depuhl-220407-22VBL01-PBD_8285-1.jpg") center/cover no-repeat;
}
.wings-outro__scene::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(11,10,8,0.25), rgba(11,10,8,0.75));
}
.wings-outro__content {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  text-align: center;
  text-shadow: 0 4px 34px rgba(0,0,0,0.75);
  padding: 0 20px;
}
.wings-outro .wings-plate { z-index: 2; }

/* ---------- mascot speech bubble ---------- */
.mascot-bubble {
  position: absolute;
  left: 50%;
  bottom: 100%;
  transform: translate(-50%, 6px) scale(0.86);
  margin-bottom: 10px;
  padding: 8px 14px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: 100px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.35s var(--ease-out);
  z-index: 5;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}
.mascot-bubble::after {
  content: "";
  position: absolute;
  left: 50%; top: 100%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--gold);
}
.mascot-bubble.show { opacity: 1; transform: translate(-50%, 0) scale(1); }
.mascotin img { transition: none; }
