/* Galaxy Nails demo. Night-sky base, pearl content, and one live variable: --shade (the polish colour the visitor picks). */
@font-face { font-family: "Bricolage Grotesque"; src: url(../fonts/BricolageGrotesque-var.woff2) format("woff2"); font-weight: 200 800; font-stretch: 75% 100%; font-display: swap; }
@font-face { font-family: "Figtree"; src: url(../fonts/Figtree-var.woff2) format("woff2"); font-weight: 300 900; font-display: swap; }

:root {
  --night: #1b1226; --night-2: #2b1c3f; --night-3: #3a2754;
  --pearl: #f6f1fa; --white: #fff; --ink: #241a30; --muted: #645873;
  --gold: #e6bd6b; --line: rgba(36, 26, 48, .14); --line-d: rgba(255, 255, 255, .16);
  --shade: #e6bd6b; --on: #241a30;
  --soft: color-mix(in srgb, var(--shade) 18%, #fff);
  --display: "Bricolage Grotesque", "Trebuchet MS", system-ui, sans-serif;
  --body: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
  --gut: clamp(16px, 4.5vw, 44px);
  --topbar: 40px; --header: 64px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 120px; }
body { margin: 0; background: var(--pearl); color: var(--ink); font: 400 1.0625rem/1.55 var(--body); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.02; margin: 0; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(2.7rem, 10.5vw, 6.4rem); font-weight: 800; font-stretch: 78%; letter-spacing: -.025em; line-height: .92; }
h2 { font-size: clamp(2rem, 6vw, 3.6rem); font-stretch: 86%; }
h3 { font-size: 1.35rem; font-stretch: 92%; }
p { margin: 0 0 1em; max-width: 62ch; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
:focus-visible { outline: 3px solid var(--shade); outline-offset: 3px; border-radius: 6px; }
.dark :focus-visible, .topbar :focus-visible, .menu :focus-visible, .dock :focus-visible { outline-color: #fff; }
.skip { position: absolute; left: 8px; top: -60px; background: #fff; color: var(--ink); padding: 10px 14px; border-radius: 8px; z-index: 200; }
.skip:focus { top: 8px; }
.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--gut); }
.lead { font-size: 1.2rem; color: var(--muted); }
.dark .lead, .dark p { color: rgba(255, 255, 255, .82); }
.est { font-style: normal; font-weight: 600; font-size: .78em; color: var(--muted); }
[hidden] { display: none !important; }

/* ---------- top bar (live open status + shop switch) and header ---------- */
.top { position: sticky; top: 0; z-index: 60; background: rgba(27, 18, 38, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); color: #fff; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-height: var(--topbar); border-bottom: 1px solid var(--line-d); font-size: .82rem; }
.open-dot { display: inline-flex; align-items: center; gap: 8px; min-width: 0; }
.open-dot span:last-child { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.dot { flex: none; width: 9px; height: 9px; border-radius: 50%; background: #c9748a; box-shadow: 0 0 0 3px rgba(201, 116, 138, .25); }
.dot.is-open { background: #45e08d; box-shadow: 0 0 0 3px rgba(69, 224, 141, .25); }
.switch { display: inline-flex; flex: none; padding: 3px; border-radius: 999px; background: rgba(255, 255, 255, .1); }
.switch button { font: 600 .82rem/1 var(--body); color: rgba(255, 255, 255, .8); background: none; border: 0; padding: 8px 14px; min-height: 30px; border-radius: 999px; cursor: pointer; transition: background .25s var(--ease), color .25s; }
.switch button[aria-checked=true] { background: var(--shade); color: var(--on); }
.head { display: flex; align-items: center; justify-content: space-between; height: var(--header); gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font: 800 1.45rem/1 var(--display); font-stretch: 80%; letter-spacing: -.01em; }
.logo svg { width: 26px; height: 26px; fill: var(--shade); transition: fill .4s; }
.nav { display: none; }
.nav a { text-decoration: none; padding: 8px 12px; border-radius: 999px; font-weight: 600; font-size: .95rem; }
.nav a:hover, .nav a[aria-current=page] { background: rgba(255, 255, 255, .12); }
.head .btn { display: none; }
.menu-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-d); background: rgba(255, 255, 255, .08); color: #fff; display: grid; place-items: center; cursor: pointer; }
.menu-btn span, .menu-btn span::before, .menu-btn span::after { display: block; width: 18px; height: 2px; background: currentColor; border-radius: 2px; content: ""; position: relative; }
.menu-btn span::before { position: absolute; top: -6px; } .menu-btn span::after { position: absolute; top: 6px; }
.menu { position: fixed; inset: 0; z-index: 90; background: var(--night); color: #fff; padding: 18px var(--gut) 28px; display: flex; flex-direction: column; gap: 18px; overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-12px); transition: opacity .25s, transform .3s var(--ease), visibility 0s .3s; }
.menu.open { visibility: visible; opacity: 1; transform: none; transition: opacity .25s, transform .3s var(--ease); }
.menu-top { display: flex; justify-content: space-between; align-items: center; }
.menu nav { display: grid; gap: 4px; }
.menu nav a { font: 700 2.1rem/1.1 var(--display); font-stretch: 82%; text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--line-d); min-height: 48px; }
.menu-foot { margin-top: auto; display: grid; gap: 12px; }
.menu-foot .btn { justify-content: center; }

/* ---------- buttons, chips, shades ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 12px 22px; border-radius: 999px; border: 2px solid transparent; font: 700 1rem/1.1 var(--body); text-decoration: none; cursor: pointer; background: var(--shade); color: var(--on); transition: transform .2s var(--ease), background .35s, box-shadow .25s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--shade) 70%, #000); }
.btn:active { transform: scale(.97); }
.btn.ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn.ghost:hover { background: rgba(127, 127, 127, .14); box-shadow: none; }
.btn.wa-btn { background: #25d366; color: #0b2b16; }
.btn.is-off { opacity: .55; }
.btn svg { width: 20px; height: 20px; flex: none; }
.chip { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font: 600 .95rem/1 var(--body); color: var(--ink); cursor: pointer; transition: background .2s, border-color .2s, transform .2s var(--ease); }
.chip i { width: 14px; height: 14px; border-radius: 50%; background: var(--c); }
.chip[aria-pressed=true] { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip:active { transform: scale(.96); }
.shades { display: flex; gap: 12px; flex-wrap: wrap; }
.shade { width: 46px; height: 46px; border-radius: 50%; border: 3px solid rgba(255, 255, 255, .25); background: var(--c); cursor: pointer; padding: 0; position: relative; transition: transform .25s var(--ease), border-color .25s; box-shadow: inset 0 6px 8px rgba(255, 255, 255, .35), inset 0 -6px 8px rgba(0, 0, 0, .2); }
.shade:hover { transform: translateY(-3px); }
.shade[aria-checked=true] { border-color: #fff; transform: scale(1.14); }
.light .shade { border-color: rgba(36, 26, 48, .18); } .light .shade[aria-checked=true] { border-color: var(--ink); }

/* ---------- hero ---------- */
.dark { background: var(--night); color: #fff; }
.sky { position: relative; isolation: isolate; overflow-x: clip; background:
  radial-gradient(60% 55% at 78% 20%, color-mix(in srgb, var(--shade) 30%, transparent), transparent 70%),
  radial-gradient(50% 60% at 8% 90%, rgba(117, 66, 190, .45), transparent 70%),
  linear-gradient(180deg, #1b1226, #22142f); transition: background .6s; }
.sky::before { content: ""; position: absolute; inset: 0; z-index: -1; background: url(../images/stars.svg) center / 700px repeat; opacity: .85; animation: twinkle 7s ease-in-out infinite alternate; }
@keyframes twinkle { from { opacity: .55; } to { opacity: 1; } }
.hero { padding-block: clamp(28px, 5vw, 64px) clamp(40px, 7vw, 88px); display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; }
.hero h1 { margin-bottom: .35em; }
.hero .lead { max-width: 34ch; margin-bottom: 1.2em; }
.hero .pick { display: grid; gap: 12px; margin-bottom: 26px; }
.hero .pick b { font: 600 .95rem/1.2 var(--body); color: rgba(255, 255, 255, .8); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.rate { display: inline-flex; align-items: center; gap: 10px; margin-top: 22px; font-weight: 600; font-size: .95rem; color: rgba(255, 255, 255, .9); }
.rate .stars { color: var(--gold); letter-spacing: 2px; }
.deck { position: relative; width: min(84vw, 340px); aspect-ratio: 4 / 5; margin: 0 auto; cursor: pointer; }
.deck-card { position: absolute; inset: 0; margin: 0; border-radius: 22px; overflow: hidden; background: var(--night-2); border: 5px solid #fff; box-shadow: 0 30px 50px -22px rgba(0, 0, 0, .7); transition: transform .7s var(--ease), opacity .5s, filter .5s; transform-origin: 50% 90%; }
.deck-card img { width: 100%; height: 100%; object-fit: cover; }
.deck-card[data-o="0"] { transform: none; z-index: 4; }
.deck-card[data-o="1"] { transform: translate(14%, 4%) rotate(7deg) scale(.94); z-index: 3; filter: brightness(.8); }
.deck-card[data-o="2"] { transform: translate(-14%, 6%) rotate(-8deg) scale(.9); z-index: 2; filter: brightness(.65); }
.deck-card[data-o="3"] { transform: translateY(10%) scale(.85); opacity: 0; z-index: 1; }
.deck-cap { position: relative; z-index: 6; text-align: center; margin: 44px auto 0; font-weight: 600; color: rgba(255, 255, 255, .9); min-height: 1.6em; }
.deck-wrap { padding-bottom: 8px; }
@media (min-width: 900px) {
  .hero { grid-template-columns: 1.1fr .9fr; }
  .deck { width: min(100%, 400px); }
  .nav { display: flex; gap: 2px; }
  .head .btn { display: inline-flex; min-height: 42px; padding: 8px 18px; }
  .menu-btn { display: none; }
}

/* ---------- sections ---------- */
section { padding-block: clamp(44px, 7vw, 96px); }
.light { background: var(--pearl); }
.white { background: #fff; }
.sec-head { display: grid; gap: 12px; margin-bottom: clamp(24px, 4vw, 44px); }
.sec-head p { margin: 0; color: var(--muted); font-size: 1.1rem; }
.dark .sec-head p { color: rgba(255, 255, 255, .82); }
.split { display: grid; gap: 28px; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; align-items: start; gap: 56px; } .sec-head.row { grid-template-columns: 1fr auto; align-items: end; } }
.page-hero { padding-block: clamp(36px, 6vw, 72px) clamp(28px, 4vw, 48px); }
.page-hero h1 { font-size: clamp(2.5rem, 9vw, 5rem); margin-bottom: .3em; }
.page-hero p { margin: 0; font-size: 1.2rem; max-width: 44ch; }

/* what are you after tiles */
.tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.tile { display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; min-height: 150px; padding: 18px; border-radius: 22px; text-decoration: none; background: #fff; border: 1.5px solid var(--line); transition: transform .3s var(--ease), background .3s, border-color .3s; }
.tile::before { content: ""; width: 30px; height: 30px; border-radius: 50%; background: var(--shade); margin-bottom: auto; box-shadow: inset 0 5px 6px rgba(255,255,255,.4), inset 0 -5px 6px rgba(0,0,0,.15); transition: background .4s; }
.tile b { font: 700 1.3rem/1.05 var(--display); font-stretch: 88%; }
.tile span { color: var(--muted); font-size: .92rem; }
.tile em { font-style: normal; font-weight: 700; margin-top: 8px; color: var(--ink); }
.tile:hover { transform: translateY(-4px) rotate(-.6deg); background: var(--soft); border-color: var(--shade); }
@media (min-width: 760px) { .tiles { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .tile { min-height: 190px; } }

/* marquees */
.marquee { overflow: hidden; -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; }
.marquee-track.run { animation: run 46s linear infinite; }
.marquee:hover .marquee-track.run, .marquee:focus-within .marquee-track.run { animation-play-state: paused; }
@keyframes run { to { transform: translateX(calc(-50% - 7px)); } }
.rail-item { flex: none; width: clamp(150px, 38vw, 210px); aspect-ratio: 4 / 5; border-radius: 18px; overflow: hidden; display: block; background: var(--night-2); }
.rail-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.rail-item:hover img { transform: scale(1.06); }
.quote { margin: 0; padding: 22px; border-radius: 22px; background: #fff; border: 1.5px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; gap: 14px; break-inside: avoid; }
.quote blockquote { margin: 0; font: 600 1.15rem/1.3 var(--display); font-stretch: 92%; }
.quote figcaption { font-size: .9rem; color: var(--muted); }
.quote.sm { flex: none; width: min(78vw, 320px); }
@media (prefers-reduced-motion: reduce) { .marquee { overflow-x: auto; -webkit-mask: none; mask: none; } .sky::before { animation: none; } }

/* shops */
.shops { display: grid; gap: 16px; }
.shop { border-radius: 26px; padding: clamp(20px, 3vw, 32px); background: var(--night); color: #fff; display: grid; gap: 14px; align-content: start; }
.shop h3 { font-size: 2rem; font-stretch: 80%; }
.shop p { margin: 0; color: rgba(255, 255, 255, .85); }
.shop .st { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.shop .st::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #c9748a; }
.shop .st.is-open::before { background: #45e08d; }
.shop .cta-row { margin-top: 6px; }
.shop.alt { background: var(--night-3); }
@media (min-width: 800px) { .shops { grid-template-columns: 1fr 1fr; } }
table.hours { border-collapse: collapse; width: 100%; max-width: 340px; font-size: .98rem; }
table.hours th, table.hours td { text-align: left; padding: 7px 0; border-bottom: 1px solid var(--line-d); font-weight: 400; }
table.hours td { text-align: right; }
table.hours tr.today th, table.hours tr.today td { font-weight: 700; color: var(--shade); }
.shopfront { width: 100%; height: 300px; object-fit: cover; object-position: 50% 25%; border-radius: 18px; }

/* closing band */
.band { background: var(--shade); color: var(--on); transition: background .5s; }
.band .wrap { display: grid; gap: 20px; }
.band h2 { font-size: clamp(2rem, 6vw, 3.8rem); }
.band .btn { background: var(--night); color: #fff; justify-self: start; }
.band p { color: inherit; margin: 0; }
@media (min-width: 800px) { .band .wrap { grid-template-columns: 1fr auto; align-items: center; } }

/* ---------- treatments ---------- */
.picker { display: grid; gap: 28px; }
.tgroup { border: 0; padding: 0; margin: 0 0 28px; min-width: 0; }
.tgroup legend { font: 700 1.5rem/1 var(--display); font-stretch: 86%; padding: 0; margin-bottom: 14px; }
.tlist { display: grid; gap: 10px; }
.tcard { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 2px 14px; padding: 16px 16px 16px 58px; border-radius: 18px; background: #fff; border: 1.5px solid var(--line); cursor: pointer; transition: border-color .2s, background .25s, transform .25s var(--ease); min-height: 64px; align-items: center; }
.tcard:hover { border-color: var(--shade); }
.tcard input { position: absolute; opacity: 0; inset: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.tcard:has(input:focus-visible) { outline: 3px solid var(--shade); outline-offset: 2px; }
.tcard .tick { position: absolute; left: 16px; top: 50%; width: 28px; height: 28px; margin-top: -14px; border-radius: 50%; border: 2px solid var(--line); background: #fff; transition: background .25s, border-color .25s, transform .3s var(--ease); }
.tcard.on { background: var(--soft); border-color: var(--shade); }
.tcard.on .tick { background: var(--shade); border-color: var(--shade); transform: scale(1.1); }
.tcard.on .tick::after { content: ""; position: absolute; left: 8px; top: 4px; width: 8px; height: 13px; border: solid var(--on); border-width: 0 3px 3px 0; transform: rotate(45deg); }
.tname { font: 700 1.1rem/1.2 var(--display); font-stretch: 92%; grid-column: 1; }
.tblurb { grid-column: 1; color: var(--muted); font-size: .92rem; line-height: 1.35; }
.tmeta { grid-column: 2; grid-row: 1 / span 2; display: grid; text-align: right; font-size: .85rem; color: var(--muted); }
.tmeta b { color: var(--ink); font-size: 1rem; white-space: nowrap; }
.tmeta i { font-style: normal; font-weight: 600; font-size: .72rem; color: var(--muted); }
.note { padding: 14px 16px; border-radius: 14px; background: var(--soft); font-size: .95rem; margin: 0; max-width: none; }
.sumbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 75; background: var(--night); color: #fff; padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom)); display: flex; gap: 14px; align-items: center; justify-content: space-between; }
body[data-page=treatments] .dock { display: none; }
body[data-page=treatments] { padding-bottom: 84px; }
.sumbar b { display: block; font: 700 1.3rem/1 var(--display); }
.sumbar small { color: rgba(255, 255, 255, .75); }
.pop { animation: pop .35s var(--ease); }
@keyframes pop { 0% { transform: scale(.85); } 60% { transform: scale(1.1); } 100% { transform: none; } }
@media (min-width: 960px) {
  .picker { grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
  .picker aside { position: sticky; top: 130px; display: grid; gap: 16px; }
  .sumbar { position: static; border-radius: 22px; padding: 18px 20px; }
  body[data-page=treatments] { padding-bottom: 0; }
  .tlist { grid-template-columns: 1fr; }
}
@media (max-width: 959px) { .picker aside .wa-wrap { display: none; } }

/* ---------- WhatsApp preview ---------- */
.wa { border-radius: 24px; overflow: hidden; background: #efe7dd; box-shadow: 0 24px 40px -24px rgba(0, 0, 0, .5); border: 1px solid var(--line); }
.wa-head { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #0b6b5b; color: #fff; }
.wa-head .av { width: 38px; height: 38px; border-radius: 50%; background: var(--night); display: grid; place-items: center; }
.wa-head .av svg { width: 20px; height: 20px; fill: var(--gold); }
.wa-head b { display: block; font-size: 1rem; line-height: 1.1; }
.wa-head small { opacity: .85; font-size: .8rem; }
.wa-body { padding: 18px 14px 20px; min-height: 180px; background: repeating-linear-gradient(45deg, rgba(0, 0, 0, .02) 0 10px, transparent 10px 20px), #efe7dd; }
.bubble { position: relative; margin-left: auto; max-width: 92%; background: #d9fdd3; color: #0f2a18; border-radius: 14px 14px 4px 14px; padding: 10px 12px 22px; box-shadow: 0 1px 1px rgba(0, 0, 0, .12); font-size: .95rem; line-height: 1.4; }
.bubble p { margin: 0 0 4px; max-width: none; color: #0f2a18; overflow-wrap: anywhere; animation: line .35s var(--ease) both; }
.bubble p.ghost { color: rgba(15, 42, 24, .38); font-style: italic; }
.bubble .tick { position: absolute; right: 10px; bottom: 5px; font-size: .7rem; color: #4d7a5d; }
@keyframes line { from { opacity: 0; transform: translateY(6px); } }
.wa-actions { display: grid; gap: 10px; }
.wa-actions .row { display: flex; gap: 10px; flex-wrap: wrap; }
.wa-actions .btn { flex: 1 1 auto; }
.small { font-size: .88rem; color: var(--muted); max-width: none; margin: 0; }
#missing { color: #a3213b; font-weight: 600; min-height: 1.4em; margin: 0; font-size: .95rem; }

/* ---------- lookbook ---------- */
.toolbar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 22px; }
.toolbar .count { margin-left: auto; color: var(--muted); font-size: .92rem; }
.look-grid { columns: 2; column-gap: 12px; }
.look { break-inside: avoid; margin: 0 0 12px; border-radius: 20px; overflow: hidden; background: #fff; border: 1.5px solid var(--line); }
.look.in { animation: fadein .45s var(--ease) both; }
@keyframes fadein { from { opacity: 0; transform: scale(.96); } }
.look-open { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; }
.look img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.look figcaption { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 10px 6px 10px 14px; font-weight: 700; font-family: var(--display); font-stretch: 92%; line-height: 1.15; }
.look small { display: block; font: 400 .78rem var(--body); color: var(--muted); }
.save { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 0; background: transparent; cursor: pointer; display: grid; place-items: center; }
.save svg { fill: none; stroke: var(--ink); stroke-width: 1.8; transition: fill .25s, transform .3s var(--ease); }
.save.on svg { fill: var(--shade); stroke: var(--ink); transform: scale(1.15); }
@media (min-width: 700px) { .look-grid { columns: 3; column-gap: 16px; } .look { margin-bottom: 16px; } }
@media (min-width: 1100px) { .look-grid { columns: 4; } }
.saved-pill { position: fixed; z-index: 70; left: 50%; transform: translateX(-50%); bottom: calc(76px + env(safe-area-inset-bottom)); display: flex; align-items: center; gap: 14px; padding: 8px 8px 8px 20px; border-radius: 999px; background: var(--night); color: #fff; box-shadow: 0 16px 30px -10px rgba(0, 0, 0, .5); font-weight: 600; white-space: nowrap; }
.saved-pill .btn { min-height: 44px; padding: 8px 18px; }
@media (min-width: 900px) { .saved-pill { bottom: 24px; } }
dialog.lb { border: 0; padding: 0; background: transparent; color: #fff; width: min(96vw, 520px); max-height: 96vh; overflow: visible; touch-action: pan-y; }
dialog.lb::backdrop { background: rgba(14, 8, 20, .88); }
.lb-card { border-radius: 24px; overflow: hidden; background: var(--night-2); }
.lb-card img { width: 100%; max-height: 66vh; object-fit: contain; background: #000; }
.lb-info { padding: 16px 18px 18px; display: grid; gap: 10px; }
.lb-info b { font: 700 1.4rem/1.1 var(--display); }
.lb-info .lb-when { color: rgba(255, 255, 255, .75); font-size: .9rem; margin: 0; }
.lb-info .row { display: flex; gap: 10px; flex-wrap: wrap; }
.lb-info .btn { flex: 1 1 auto; }
.lb-nav { position: absolute; top: 30%; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92); color: var(--ink); font-size: 1.4rem; cursor: pointer; }
.lb-prev { left: -8px; } .lb-next { right: -8px; }
.lb-close { position: absolute; top: -52px; right: 0; min-height: 44px; }

/* ---------- booking ---------- */
.book-grid { display: grid; gap: 28px; }
.steps { display: grid; gap: 18px; min-width: 0; }
.step { background: #fff; border: 1.5px solid var(--line); border-radius: 26px; padding: clamp(18px, 3vw, 30px); min-width: 0; }
.step > h2 { font-size: 1.7rem; display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.step > h2 .n { flex: none; width: 36px; height: 36px; border-radius: 50%; background: var(--shade); color: var(--on); display: grid; place-items: center; font: 800 1.05rem var(--display); transition: background .4s; }
.shopcards { display: grid; gap: 10px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.shopcard { position: relative; display: grid; gap: 2px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 18px; cursor: pointer; transition: border-color .2s, background .25s; min-height: 92px; align-content: start; }
.shopcard input { position: absolute; opacity: 0; inset: 0; margin: 0; width: 100%; height: 100%; cursor: pointer; }
.shopcard:has(input:focus-visible) { outline: 3px solid var(--shade); outline-offset: 2px; }
.shopcard.on { border-color: var(--shade); background: var(--soft); }
.shopcard .sn { font: 700 1.3rem/1 var(--display); }
.shopcard .sa { color: var(--muted); font-size: .88rem; }
.shopcard .ss { font-size: .82rem; font-weight: 600; margin-top: 4px; }
.shopcard .ss.is-open { color: #12793f; }
.dthumbs { display: flex; gap: 10px; overflow-x: auto; padding: 4px 2px 14px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.dthumb { flex: none; width: 96px; scroll-snap-align: start; background: none; border: 2px solid transparent; border-radius: 16px; padding: 3px; cursor: pointer; text-align: left; font: 600 .74rem/1.15 var(--body); color: var(--ink); }
.dthumb img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 12px; margin-bottom: 4px; }
.dthumb.on { border-color: var(--shade); background: var(--soft); }
.days { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 12px; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch; }
.day { flex: none; width: 74px; min-height: 76px; border-radius: 16px; border: 1.5px solid var(--line); background: #fff; display: grid; place-items: center; align-content: center; gap: 1px; cursor: pointer; scroll-snap-align: start; font-family: var(--body); color: var(--ink); transition: transform .2s var(--ease), background .2s; }
.day b { font-size: 1rem; } .day span { font-size: .82rem; color: var(--muted); } .day em { font-style: normal; font-size: .7rem; color: var(--muted); }
.day.on { background: var(--shade); border-color: var(--shade); color: var(--on); } .day.on span { color: inherit; }
.day:disabled { opacity: .45; cursor: not-allowed; background: transparent; }
.day:active:not(:disabled) { transform: scale(.95); }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); gap: 8px; margin-top: 8px; }
.slot { min-height: 46px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; font: 600 .98rem var(--body); cursor: pointer; color: var(--ink); transition: background .2s, transform .2s var(--ease); }
.slot.on { background: var(--shade); border-color: var(--shade); color: var(--on); }
.slot:active { transform: scale(.95); }
.slots .hint { grid-column: 1 / -1; margin: 0; }
.steps .tcard .tname { align-self: center; }
.steps .tcard .tmeta { grid-row: 1; align-self: center; }
.hint { color: var(--muted); margin: 8px 0 0; font-size: .95rem; }
label.f { display: grid; gap: 6px; font-weight: 600; margin-bottom: 14px; }
label.f span { font-size: .95rem; }
input[type=text], select, textarea { font: 400 1rem var(--body); padding: 12px 14px; min-height: 48px; border-radius: 14px; border: 1.5px solid var(--line); background: #fff; color: var(--ink); width: 100%; }
textarea { min-height: 84px; resize: vertical; }
input[type=text]:focus, select:focus, textarea:focus { border-color: var(--ink); outline: 3px solid color-mix(in srgb, var(--shade) 60%, transparent); outline-offset: 0; }
.deposit { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: 18px; background: var(--soft); cursor: pointer; }
.deposit input { width: 24px; height: 24px; margin: 2px 0 0; accent-color: var(--ink); flex: none; }
.deposit b { display: block; }
.deposit span { color: var(--muted); font-size: .92rem; }
#dep-note { margin: 12px 0 0; font-size: .92rem; color: var(--muted); max-width: none; }
.book-aside { display: grid; gap: 14px; align-content: start; min-width: 0; }
.book-bar { display: none; }
@media (min-width: 980px) {
  .book-grid { grid-template-columns: 1fr 400px; gap: 40px; align-items: start; }
  .book-aside { position: sticky; top: 130px; }
}
@media (max-width: 979px) {
  body[data-page=book] .book-bar { display: flex; position: fixed; z-index: 75; left: 0; right: 0; bottom: 0; padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom)); background: var(--night); color: #fff; align-items: center; justify-content: space-between; gap: 12px; }
  .book-bar b { display: block; font: 700 1.2rem/1 var(--display); }
  .book-bar small { color: rgba(255, 255, 255, .75); }
  body[data-page=book] .dock { display: none; }
  body[data-page=book] { padding-bottom: 76px; }
}

/* ---------- reviews ---------- */
.bigrate { display: grid; gap: 6px; }
.bigrate b { font: 800 clamp(4rem, 16vw, 8rem)/.85 var(--display); font-stretch: 76%; color: var(--shade); }
.topics { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.topics li { position: relative; display: flex; justify-content: space-between; gap: 12px; padding: 12px 16px; border-radius: 14px; background: #fff; overflow: hidden; border: 1.5px solid var(--line); z-index: 0; }
.topics li i { position: absolute; left: 0; top: 0; bottom: 0; width: var(--w); background: var(--soft); z-index: -1; transition: width .6s var(--ease); }
.topics b { font-variant-numeric: tabular-nums; }
.quotes { columns: 1; column-gap: 14px; }
.quotes .quote { margin-bottom: 14px; }
@media (min-width: 700px) { .quotes { columns: 2; } } @media (min-width: 1050px) { .quotes { columns: 3; } }

/* ---------- about / faq ---------- */
details { border-bottom: 1px solid var(--line); padding: 4px 0; }
summary { cursor: pointer; font: 700 1.15rem/1.3 var(--display); padding: 14px 32px 14px 0; list-style: none; position: relative; min-height: 48px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 8px; font-size: 1.6rem; transition: transform .25s var(--ease); }
details[open] summary::after { transform: rotate(45deg); }
details p { color: var(--muted); }
.photo-frame { border-radius: 24px; overflow: hidden; }

/* ---------- footer + dock ---------- */
footer { background: var(--night); color: #fff; padding-block: 48px 30px; }
footer .cols { display: grid; gap: 30px; }
footer h3 { font-size: 1.1rem; margin-bottom: 10px; }
footer p, footer li { color: rgba(255, 255, 255, .8); margin: 0 0 6px; font-size: .96rem; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer a { text-decoration: none; padding: 4px 0; display: inline-block; }
footer a:hover { text-decoration: underline; }
footer .fine { margin-top: 30px; padding-top: 18px; border-top: 1px solid var(--line-d); display: grid; gap: 6px; font-size: .84rem; color: rgba(255, 255, 255, .65); }
footer .shades { margin-top: 6px; }
@media (min-width: 800px) { footer .cols { grid-template-columns: 1.2fr 1fr 1fr 1fr; } }
.dock { display: none; }
@media (max-width: 899px) {
  body { padding-bottom: 72px; }
  .dock { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; position: fixed; z-index: 65; left: 0; right: 0; bottom: 0; padding: 8px var(--gut) calc(8px + env(safe-area-inset-bottom)); background: rgba(27, 18, 38, .96); }
  .dock a { display: grid; place-items: center; min-height: 48px; border-radius: 14px; font-weight: 700; font-size: .95rem; text-decoration: none; color: #fff; background: rgba(255, 255, 255, .1); }
  .dock a.go { background: var(--shade); color: var(--on); }
  .dock a.wa-go { background: #25d366; color: #0b2b16; }
}
@media (max-width: 380px) { .shopcards { grid-template-columns: minmax(0, 1fr); } .switch button { padding: 8px 10px; } .btn { padding-inline: 16px; } }
@media (max-height: 460px) and (orientation: landscape) { .hero { padding-block: 20px; } .deck { width: 200px; } .menu nav a { font-size: 1.5rem; padding: 4px 0; min-height: 44px; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } html { scroll-behavior: auto; } }
