/* Waflin — spec site
 * Zero external requests. System type stacks only.
 * Motion is defined here and killed here; main.js mirrors the kill switch in JS.
 */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font: 400 var(--fs-base)/1.62 var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; line-height: 1.08; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; color: inherit; }
:focus-visible {
  outline: 2px solid var(--pink);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: var(--sp-4); top: -100px; z-index: 200;
  background: var(--pink); color: #14060d; padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r); font-weight: 700; text-decoration: none;
}
.skip:focus { top: var(--sp-4); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--sp-5); }
.mono { font-family: var(--mono); font-size: var(--fs-sm); letter-spacing: 0.01em; }
.dot { color: var(--text-3); margin-inline: 0.35em; }

/* ------------------------------- spec banner ------------------------------ */
.specbar {
  background: var(--cocoa);
  border-bottom: 1px solid #52412f;
  color: #f0e4d4;
  font-size: var(--fs-sm);
  line-height: 1.5;
  padding: var(--sp-3) var(--sp-5);
  text-align: center;
}
.specbar strong { color: var(--gold); }

/* --------------------------------- header --------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 90;
  background: rgba(14, 15, 19, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.hdr.is-stuck { border-bottom-color: var(--line-soft); background: rgba(14, 15, 19, 0.95); }
.hdr__in { display: flex; align-items: center; gap: var(--sp-5); min-height: 62px; }
.brand {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  text-decoration: none; margin-right: auto;
}
.brand__mark { color: var(--pink); display: inline-flex; }
.brand__word {
  font-family: var(--display);
  font-weight: 800; font-size: var(--fs-md); letter-spacing: -0.01em;
}
.hdr__nav { display: none; gap: var(--sp-5); }
.hdr__nav a {
  text-decoration: none; color: var(--text-2); font-size: var(--fs-sm); font-weight: 600;
  letter-spacing: 0.02em; transition: color var(--dur-1) var(--ease);
}
.hdr__nav a:hover { color: var(--ivory); }
.hdr .hdr__call { display: none; }
@media (min-width: 760px) {
  .hdr__nav { display: flex; }
  .hdr .hdr__call { display: inline-flex; }
}

/* --------------------------------- buttons -------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  padding: 0.82em 1.35em;
  border: 1px solid transparent; border-radius: var(--r);
  font-weight: 700; font-size: var(--fs-sm); letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer;
  transition: transform var(--dur-1) var(--ease), background var(--dur-1) var(--ease),
    border-color var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
}
.btn--sm { padding: 0.6em 1em; }
.btn--primary { background: var(--pink); color: #16060e; }
.btn--primary:hover { background: #ff69b0; }
.btn--ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn--ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn:active { transform: translateY(1px); }
.linkbtn {
  background: none; border: 0; padding: 0; color: var(--pink);
  text-decoration: underline; cursor: pointer; font-weight: 600;
}

/* ---------------------------------- hero ---------------------------------- */
.hero { position: relative; padding: var(--sp-8) 0 var(--sp-6); overflow: hidden; }
.hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 130%;
  background: var(--lamp-glow); pointer-events: none;
}
.hero__lattice {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.075; pointer-events: none;
  will-change: transform;
}
.hero__in { position: relative; }
.eyebrow {
  font-size: var(--fs-xs); font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pink);
}
.hero__h1 {
  font-family: var(--display);
  font-size: var(--fs-3xl); margin-top: var(--sp-3);
  letter-spacing: -0.045em;
  background: linear-gradient(178deg, var(--ivory) 30%, #cbc4b8 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lede {
  margin-top: var(--sp-4); max-width: 40ch;
  font-size: var(--fs-lg); line-height: 1.42; color: var(--text);
  font-weight: 500;
}
.hero__state { margin-top: var(--sp-5); }
.openpill {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.55em 1em 0.55em 0.8em;
  border: 1px solid var(--line); border-radius: var(--r-pill);
  background: var(--raised); font-size: var(--fs-sm); color: var(--text-2);
  max-width: 100%;
}
.openpill__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--text-3); flex: none;
}
.openpill--open .openpill__dot { background: #46d07f; }
.openpill--open { color: var(--text); border-color: #2c5a3f; }
.openpill--closed .openpill__dot { background: var(--crimson); }
.openpill--unknown .openpill__dot { background: var(--gold); }
.openpill--unknown { border-color: #4b4126; }
.hero__cta { margin-top: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero__facts {
  margin-top: var(--sp-7); display: flex; flex-wrap: wrap; gap: var(--sp-6) var(--sp-7);
  border-top: 1px solid var(--line-soft); padding-top: var(--sp-5);
}
.hero__facts li { display: flex; flex-direction: column; gap: 0.15em; }
.hero__facts strong {
  font-family: var(--display);
  font-size: var(--fs-xl); font-weight: 800; color: var(--gold); letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.hero__facts span { font-size: var(--fs-sm); color: var(--text-2); }
.hero__facts li.is-note { max-width: 24ch; }
.hero__facts li.is-note strong {
  font-size: var(--fs-sm); color: var(--ivory);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.hero__addr { position: relative; margin-top: var(--sp-6); }
.hero__addr p { font-size: var(--fs-sm); color: var(--text-2); }
.hero__addr-street { color: var(--ivory); font-weight: 700; }

/* --------------------------------- sections -------------------------------- */
.sec { padding: var(--sp-8) 0; position: relative; }
.sec + .sec { border-top: 1px solid var(--line-soft); }
.sechead { max-width: var(--measure); margin-bottom: var(--sp-6); }
.sechead__h { font-size: var(--fs-2xl); margin-top: var(--sp-3); color: var(--ivory); }
.sechead__sub { margin-top: var(--sp-4); color: var(--text-2); font-size: var(--fs-md); }
.score { color: var(--gold); }

/* ---------------------------------- proof ---------------------------------- */
.quotes { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 720px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--raised); border: 1px solid var(--line-soft);
  border-radius: var(--r); padding: var(--sp-5);
  display: flex; flex-direction: column; gap: var(--sp-4);
  position: relative; overflow: hidden;
}
.quote::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--pink);
  opacity: 0.55;
}
.quote__txt { font-size: var(--fs-md); line-height: 1.5; color: var(--ivory); }
.quote__by {
  margin-top: auto; font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-3); font-weight: 700;
}

/* ----------------------------------- room ---------------------------------- */
.pullquote {
  margin: 0 0 var(--sp-6); padding-left: var(--sp-5);
  border-left: 3px solid var(--gold); max-width: 46ch;
}
.pullquote p {
  font-family: var(--display);
  font-size: var(--fs-lg); line-height: 1.35; color: var(--ivory); font-weight: 600;
}
.pullquote cite {
  display: block; margin-top: var(--sp-3); font-style: normal;
  font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3);
  font-weight: 700;
}
.pullquote--sm { margin: var(--sp-5) 0 0; border-left-color: var(--pink); }
.pullquote--sm p { font-size: var(--fs-md); }

.gal { display: grid; gap: var(--sp-4); grid-template-columns: 1fr; }
@media (min-width: 620px) { .gal { grid-template-columns: repeat(3, 1fr); } }
.gal__i { margin: 0; }
.gal__i .art {
  border: 1px solid var(--line-soft); border-radius: var(--r); overflow: hidden;
  background: var(--raised); cursor: zoom-in;
  transition: border-color var(--dur-1) var(--ease), transform var(--dur-2) var(--ease-out);
  transform-style: preserve-3d;
}
.gal__i:hover .art { border-color: var(--pink-dim); }
.gal__i svg { width: 100%; height: auto; }
.gal__i figcaption {
  margin-top: var(--sp-3); font-size: var(--fs-sm); color: var(--text-2);
  display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap;
}
.tag {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800;
  color: var(--duckegg); border: 1px solid #354343; border-radius: var(--r-pill);
  padding: 0.15em 0.55em;
}
.gal__note {
  margin-top: var(--sp-5); font-size: var(--fs-sm); color: var(--text-3); max-width: var(--measure);
}

.facts {
  margin-top: var(--sp-7); display: grid; gap: 0;
  grid-template-columns: 1fr; border-top: 1px solid var(--line-soft);
}
@media (min-width: 620px) { .facts { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.facts li {
  display: flex; flex-direction: column; gap: 0.2em;
  padding: var(--sp-4) 0; border-bottom: 1px solid var(--line-soft);
}
@media (min-width: 620px) { .facts li { padding-right: var(--sp-5); } }
.facts__k {
  font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); font-weight: 700;
}
.facts__v { font-size: var(--fs-sm); color: var(--ivory); }

/* ----------------------------------- menu ---------------------------------- */
.notice {
  border: 1px solid #4b4126; background: rgba(233, 199, 74, 0.06);
  border-radius: var(--r); padding: var(--sp-4) var(--sp-5);
  font-size: var(--fs-sm); color: var(--text); max-width: 70ch; line-height: 1.55;
}
.notice strong { color: var(--gold); }
.notice a { color: var(--pink); font-weight: 700; }

.mfilter { margin: var(--sp-6) 0 var(--sp-6); }
.mfilter__chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.chip {
  background: var(--raised); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 0.5em 0.95em; font-size: var(--fs-sm); font-weight: 600; cursor: pointer;
  color: var(--text-2); display: inline-flex; align-items: center; gap: 0.5em;
  transition: border-color var(--dur-1) var(--ease), color var(--dur-1) var(--ease),
    background var(--dur-1) var(--ease);
}
.chip span { font-size: 0.72rem; color: var(--text-3); font-variant-numeric: tabular-nums; }
.chip:hover { color: var(--ivory); border-color: var(--pink-dim); }
.chip.is-on { background: var(--pink-wash); border-color: var(--pink); color: var(--ivory); }
.chip.is-on span { color: var(--pink); }
.mfilter__search { margin-top: var(--sp-4); }
.mfilter__search input {
  width: 100%; max-width: 380px;
  background: var(--raised); border: 1px solid var(--line); border-radius: var(--r);
  color: var(--text); padding: 0.75em 1em; font: inherit; font-size: var(--fs-sm);
}
.mfilter__search input::placeholder { color: var(--text-3); }
.mfilter__count { margin-top: var(--sp-3); font-size: var(--fs-xs); color: var(--text-3); }

.menu { display: flex; flex-direction: column; gap: var(--sp-7); }
.mcat[hidden] { display: none; }
.mcat__h {
  font-size: var(--fs-lg); color: var(--ivory);
  display: flex; align-items: baseline; gap: var(--sp-3);
  padding-bottom: var(--sp-3); border-bottom: 1px solid var(--line);
}
.mcat__h em {
  font-style: normal; font-size: var(--fs-xs); color: var(--pink); font-weight: 800;
  letter-spacing: 0.08em;
}
.mcat__note {
  margin-top: var(--sp-4); font-size: var(--fs-sm); color: var(--text-2); max-width: var(--measure);
}
.mitems {
  margin-top: var(--sp-5); display: grid; gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 660px) { .mitems { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .mitems { grid-template-columns: repeat(3, 1fr); } }
.mitem {
  background: var(--raised); border: 1px solid var(--line-soft); border-radius: var(--r);
  padding: var(--sp-4) var(--sp-5);
  transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.mitem[hidden] { display: none; }
.mitem:hover { border-color: var(--line); background: var(--raised-2); }
.mitem h4 { font-size: var(--fs-md); color: var(--ivory); font-weight: 700; letter-spacing: -0.01em; }
.mitem p { margin-top: var(--sp-2); font-size: var(--fs-sm); color: var(--text-2); }
.mitem mark { background: var(--pink-wash); color: var(--pink); border-radius: 3px; padding: 0 2px; }
.mempty { margin-top: var(--sp-5); color: var(--text-2); font-size: var(--fs-sm); }

/* ---------------------------------- visit ---------------------------------- */
.visit { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 800px) { .visit { grid-template-columns: repeat(3, 1fr); gap: var(--sp-7); } }
.visit__col {
  background: var(--raised); border: 1px solid var(--line-soft); border-radius: var(--r);
  padding: var(--sp-5);
}
.visit__h {
  font-size: var(--fs-md); color: var(--ivory);
  display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap;
  padding-bottom: var(--sp-4); border-bottom: 1px solid var(--line-soft);
}
.badge {
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 800;
  border-radius: var(--r-pill); padding: 0.2em 0.6em;
}
.badge--warn { color: var(--gold); border: 1px solid #4b4126; background: rgba(233,199,74,.08); }
.visit__addr {
  margin-top: var(--sp-4); font-size: var(--fs-md); color: var(--ivory); font-weight: 600;
  line-height: 1.4;
}
.visit__hint { margin-top: var(--sp-3); font-size: var(--fs-sm); color: var(--text-2); }
.visit__geo { margin-top: var(--sp-3); color: var(--text-3); }
.visit__btns { margin-top: var(--sp-5); display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hours { margin-top: var(--sp-4); width: 100%; border-collapse: collapse; }
.hours th, .hours td {
  text-align: left; padding: 0.5em 0; font-size: var(--fs-sm); font-weight: 400;
  border-bottom: 1px solid var(--line-soft);
}
.hours th { color: var(--text-2); font-weight: 400; }
.hours td { color: var(--ivory); text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--pink); font-weight: 700; }
.hours__warn { margin-top: var(--sp-4); font-size: var(--fs-xs); color: var(--text-3); line-height: 1.6; }
.hours__warn strong { color: var(--gold); }
.visit__list { margin-top: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-3); }
.visit__list li { font-size: var(--fs-sm); color: var(--text-2); padding-left: 1em; position: relative; }
.visit__list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--pink);
}
.visit__list strong { color: var(--ivory); }

/* ---------------------------------- footer --------------------------------- */
.ftr { border-top: 1px solid var(--line); padding: var(--sp-7) 0 var(--sp-9); }
.ftr__in { display: grid; gap: var(--sp-6); grid-template-columns: 1fr; }
@media (min-width: 760px) { .ftr__in { grid-template-columns: 1fr 1fr 1.4fr; gap: var(--sp-7); } }
.ftr__word {
  font-family: var(--display); font-size: var(--fs-xl); font-weight: 800;
  color: var(--ivory); letter-spacing: -0.035em;
}
.ftr__tag {
  margin-top: var(--sp-2); font-size: var(--fs-xs); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pink); font-weight: 700;
}
.ftr__k {
  font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-3); font-weight: 700; margin-bottom: var(--sp-3);
}
.ftr__col p { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.6; }
.ftr__col p + p { margin-top: var(--sp-2); }
.ftr__col a { color: var(--pink); text-decoration: none; }
.ftr__col a:hover { text-decoration: underline; }
.ftr__note { color: var(--text-3) !important; font-size: var(--fs-xs) !important; }
.ftr__note strong { color: var(--text-2); }

/* ------------------------------- sticky bar -------------------------------- */
.sticky {
  position: fixed; inset: auto var(--sp-4) var(--sp-4) var(--sp-4); z-index: 95;
  display: flex; gap: var(--sp-3);
  padding: var(--sp-3); border-radius: var(--r-lg);
  background: rgba(23, 26, 32, 0.94); border: 1px solid var(--line);
  backdrop-filter: blur(10px); box-shadow: var(--shadow-3);
  transform: translateY(140%);
  transition: transform var(--dur-2) var(--ease-out);
}
.sticky[hidden] { display: none; }
.sticky.is-in { transform: translateY(0); }
.sticky .btn { flex: 1; }
@media (min-width: 760px) { .sticky { display: none !important; } }

/* -------------------------------- lightbox --------------------------------- */
.lb {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(6, 7, 9, 0.94);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--sp-4); padding: var(--sp-5);
  opacity: 0; transition: opacity var(--dur-2) var(--ease);
}
.lb[hidden] { display: none; }
.lb.is-in { opacity: 1; }
.lb__stage { max-width: min(560px, 92vw); width: 100%; }
.lb__stage svg, .lb__stage img { width: 100%; height: auto; border-radius: var(--r); }
.lb__cap { font-size: var(--fs-sm); color: var(--text-2); text-align: center; }
.lb__x {
  position: absolute; top: var(--sp-4); right: var(--sp-4);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--raised); border: 1px solid var(--line);
  font-size: 1.5rem; line-height: 1; cursor: pointer;
}
.lb__x:hover { border-color: var(--pink); color: var(--pink); }

/* ------------------------------ pointer effects ----------------------------
 * Everything here is behind (pointer: fine). Most local traffic is a thumb. */
.cursor { display: none; }
@media (pointer: fine) {
  .cursor {
    display: block; position: fixed; top: 0; left: 0; z-index: 1;
    width: 380px; height: 380px; margin: -190px 0 0 -190px;
    border-radius: 50%; pointer-events: none; opacity: 0;
    background: radial-gradient(circle, rgba(255,79,163,.13) 0%, transparent 66%);
    transition: opacity var(--dur-3) var(--ease);
    will-change: transform;
  }
  .cursor.is-on { opacity: 1; }
  .magnetic { will-change: transform; }
}

/* Hero entrance. Deliberately an ANIMATION from page load, not a scroll reveal:
 * above-the-fold content must never depend on an observer firing. `fill-mode: both` plus
 * the reduced-motion block below mean there is no state in which this leaves the hero
 * invisible. Only the heading and eyebrow move; the CTA and the numbers never do. */
@media (prefers-reduced-motion: no-preference) {
  .js .hero__h1, .js .hero .eyebrow {
    animation: heroIn var(--dur-3) var(--ease-out) both;
  }
  .js .hero__h1 { animation-delay: 60ms; }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

/* --------------------------------- reveals ---------------------------------
 * Scoped to .js — set by an inline script in <head> — so that with JavaScript off
 * nothing is ever hidden. An invisible page is a worse failure than an unanimated one. */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--dur-3) var(--ease-out), transform var(--dur-3) var(--ease-out);
  transition-delay: calc(var(--rd, 0) * 70ms);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* Progressive enhancement: where scroll-driven animation is supported the reveal is
 * driven by the viewport directly and the observer becomes a no-op fallback. */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .js .mitem.reveal, .js .gal__i.reveal, .js .quote.reveal {
      animation: revealIn linear both;
      animation-timeline: view();
      animation-range: entry 8% cover 26%;
    }
  }
}
@keyframes revealIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ------------------------------ MOTION KILL SWITCH -------------------------
 * Mirrored in main.js: every initializer early-returns on the same query. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .hero__lattice { transform: none !important; }
  .cursor { display: none !important; }
  .sticky { transition: none; }
}

/* ---------------------------------- print --------------------------------- */
@media print {
  .hdr, .sticky, .cursor, .hero__glow, .hero__lattice, .specbar { display: none !important; }
  body { background: #fff; color: #111; }
  .mitem, .visit__col, .quote { border-color: #ccc; background: #fff; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------------------- proof carousel (reviews.js, narrow) ---------------- */
.quotes.is-carousel {
  display: flex; grid-template-columns: none;
  gap: var(--sp-4);
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  padding-bottom: var(--sp-2);
}
.quotes.is-carousel::-webkit-scrollbar { display: none; }
.quotes.is-carousel > .quote { flex: 0 0 88%; scroll-snap-align: center; }
.qnav { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-4); }
.qnav__b {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--raised); border: 1px solid var(--line); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.qnav__b:hover { border-color: var(--pink); color: var(--pink); }
.qnav__b[disabled] { opacity: 0.35; cursor: default; }
.qnav__dots { display: flex; gap: var(--sp-2); margin-left: auto; }
.qnav__dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--line);
  border: 0; padding: 0; cursor: pointer;
}
.qnav__dot.is-on { background: var(--pink); }
