/* O.S Smoke - cinematic lounge */

:root {
  --bg: #080706;
  --bg-2: #100e0c;
  --bg-3: #171411;
  --fg: #f3ebe1;
  --muted: #8f877c;
  --line: rgba(243, 235, 225, 0.11);
  --wine: #7a2a34;
  --wine-soft: #9a3d48;
  --ember: #c47a4a;
  --leaf: #2f4a3a;
  --font-d: "Syne", system-ui, sans-serif;
  --font-b: "Instrument Serif", Georgia, serif;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --pad: clamp(1.1rem, 3.8vw, 3rem);
  --nav-h: 4.25rem;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--fg);
  background:
    radial-gradient(900px 500px at 12% 18%, rgba(122, 42, 52, 0.14), transparent 55%),
    radial-gradient(800px 480px at 88% 72%, rgba(47, 74, 58, 0.12), transparent 50%),
    radial-gradient(700px 400px at 50% 100%, rgba(196, 122, 74, 0.07), transparent 55%),
    var(--bg);
  font-family: var(--font-b);
  font-size: 1.125rem;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

body.is-touch {
  cursor: auto;
}

img,
video {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

::selection {
  background: var(--wine);
  color: var(--fg);
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 999;
  background: var(--fg);
  color: var(--bg);
  padding: 0.6rem 1rem;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
}

/* Grain + cursor */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ========== Luxury etched atmosphere ========== */
.lux-scape {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.lux-scape__wash {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  will-change: transform;
}
.lux-scape__wash--a {
  width: min(55vw, 520px);
  height: min(55vw, 520px);
  left: -12%;
  top: 8%;
  background: radial-gradient(circle, rgba(122, 42, 52, 0.45), transparent 70%);
  animation: washDrift 22s ease-in-out infinite alternate;
}
.lux-scape__wash--b {
  width: min(48vw, 460px);
  height: min(48vw, 460px);
  right: -10%;
  top: 42%;
  background: radial-gradient(circle, rgba(196, 122, 74, 0.28), transparent 70%);
  animation: washDrift 28s ease-in-out infinite alternate-reverse;
}
.lux-scape__wash--c {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  left: 30%;
  bottom: -8%;
  background: radial-gradient(circle, rgba(47, 74, 58, 0.4), transparent 70%);
  animation: washDrift 26s ease-in-out infinite alternate;
}
@keyframes washDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(3vw, -4vh, 0) scale(1.08); }
}
.lux-scape__mist {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.15), transparent 20%, transparent 70%, rgba(8, 7, 6, 0.55)),
    radial-gradient(ellipse at 50% 0%, rgba(243, 235, 225, 0.03), transparent 45%);
}
.lux-scape__art {
  position: absolute;
  opacity: 0.07;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
  will-change: transform;
  user-select: none;
}
.lux-scape__art--hookah {
  right: -2%;
  top: 18%;
  width: min(18vw, 200px);
  opacity: 0.08;
  animation: luxFloat 16s ease-in-out infinite alternate;
}
.lux-scape__art--tea {
  left: -3%;
  bottom: 12%;
  width: min(22vw, 240px);
  opacity: 0.09;
  animation: luxFloat 19s ease-in-out infinite alternate-reverse;
}
.lux-scape__art--dragon {
  left: 8%;
  top: 28%;
  width: min(12vw, 130px);
  opacity: 0.11;
  animation: luxFloat 14s ease-in-out infinite alternate;
}
.lux-scape__art--bowl {
  right: 12%;
  bottom: 22%;
  width: min(10vw, 110px);
  opacity: 0.08;
  animation: luxFloat 17s ease-in-out infinite alternate-reverse;
}
@keyframes luxFloat {
  from { transform: translate3d(0, 0, 0) rotate(-1.5deg); }
  to { transform: translate3d(0, -18px, 0) rotate(2deg); }
}
.lux-scape__smoke {
  position: absolute;
  width: 120px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 80%, rgba(243, 235, 225, 0.12), transparent 70%);
  filter: blur(18px);
  opacity: 0.35;
  animation: smokeRise 12s ease-in-out infinite;
}
.lux-scape__smoke.s1 { left: 18%; bottom: 8%; animation-delay: 0s; }
.lux-scape__smoke.s2 { right: 22%; bottom: 18%; width: 90px; height: 180px; animation-delay: -4s; opacity: 0.25; }
.lux-scape__smoke.s3 { left: 55%; bottom: 5%; width: 140px; height: 260px; animation-delay: -7s; opacity: 0.2; }
@keyframes smokeRise {
  0%, 100% { transform: translate3d(0, 20px, 0) scale(0.9); opacity: 0.15; }
  50% { transform: translate3d(8px, -40px, 0) scale(1.15); opacity: 0.4; }
}

.lux-scape__art,
.lux-scape__smoke {
  display: block;
  pointer-events: none;
}
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.ornament span {
  flex: 1;
  height: 1px;
  max-width: 220px;
  background: linear-gradient(90deg, transparent, var(--wine-soft), transparent);
  opacity: 0.45;
}
.ornament img {
  display: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: -5px 0 0 -5px;
  border-radius: 50%;
  background: var(--fg);
  pointer-events: none;
  z-index: 100;
  mix-blend-mode: difference;
  transition: transform 0.2s var(--ease), opacity 0.3s;
  will-change: transform;
}
.cursor__ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 1px solid rgba(243, 235, 225, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100;
  transition: transform 0.45s var(--ease), width 0.35s, height 0.35s, margin 0.35s, opacity 0.3s;
  will-change: transform;
}
.cursor.is-hover,
.cursor__ring.is-hover {
  transform: scale(1.8);
}
.cursor__ring.is-hover {
  width: 64px;
  height: 64px;
  margin: -32px 0 0 -32px;
  border-color: var(--ember);
}
body.is-touch .cursor,
body.is-touch .cursor__ring {
  display: none;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 80;
  background: linear-gradient(90deg, var(--wine), var(--ember));
  transform-origin: left;
}

/* Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner {
  text-align: center;
}
.loader__brand {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 3rem);
  letter-spacing: -0.02em;
  overflow: visible;
  padding: 0.06em 0.08em 0.1em;
  line-height: 1.05;
}
.loader__brand span {
  display: inline-block;
  padding-right: 0.08em;
  animation: rise 0.9s var(--ease) both;
}
.loader__bar {
  width: 120px;
  height: 1px;
  margin: 1.2rem auto 0;
  background: var(--line);
  overflow: hidden;
}
.loader__bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ember);
  animation: load 1.1s var(--ease) forwards;
}
@keyframes rise {
  from {
    transform: translateY(110%);
  }
  to {
    transform: none;
  }
}
@keyframes load {
  to {
    width: 100%;
  }
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
}
.nav.is-on {
  background: rgba(8, 7, 6, 0.72);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav__brand {
  font-family: var(--font-d);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
}
.nav__brand em {
  font-style: normal;
  color: var(--muted);
  font-weight: 500;
  margin-left: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links {
  display: none;
  gap: 1.8rem;
  font-family: var(--font-d);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--muted);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 0;
  height: 1px;
  background: var(--ember);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active {
  color: var(--fg);
}
.nav__links a:hover::after,
.nav__links a.is-active::after {
  width: 100%;
}
.nav__cta {
  display: none;
  font-family: var(--font-d);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--wine-soft);
  transition: background 0.3s, border-color 0.3s, transform 0.35s var(--ease);
}
.nav__cta:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.lang {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  z-index: 2;
}
.lang__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-d);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 0.45rem 0.4rem;
  cursor: none;
  transition: color 0.25s;
}
body.is-touch .lang__btn {
  cursor: pointer;
}
.lang__btn.is-on {
  color: var(--fg);
}
.lang__btn:hover {
  color: var(--ember);
}

@media (max-width: 899px) {
  .lang {
    margin-left: auto;
    margin-right: 0.35rem;
  }
}
.nav__burger {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  place-content: center;
  gap: 6px;
  z-index: 2;
}
.nav__burger span {
  width: 20px;
  height: 1.5px;
  background: var(--fg);
  transition: 0.35s var(--ease);
}
.nav__burger[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}
.drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(8, 7, 6, 0.97);
  display: grid;
  place-content: center;
  gap: 1.4rem;
  text-align: center;
  font-family: var(--font-d);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  font-weight: 700;
}
.drawer[hidden] {
  display: none;
}
.drawer a {
  opacity: 0.85;
}
.drawer a:hover {
  opacity: 1;
  color: var(--ember);
}

@media (min-width: 900px) {
  .nav__links,
  .nav__cta {
    display: flex;
  }
  .nav__burger {
    display: none;
  }
}

main {
  position: relative;
  z-index: 2;
}

/* Type + buttons */
.kicker {
  font-family: var(--font-d);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wine-soft);
  margin: 0 0 1rem;
}
.h2 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.8vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  overflow: visible;
  padding-right: 0.04em;
  padding-bottom: 0.02em;
}
.lead {
  margin: 0;
  max-width: 32rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
}
.btn {
  --mx: 0px;
  --my: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.45rem;
  font-family: var(--font-d);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  background: transparent;
  cursor: none;
  transition: background 0.35s, border-color 0.35s, color 0.35s, transform 0.45s var(--ease);
  transform: translate3d(var(--mx), var(--my), 0);
  will-change: transform;
  text-align: center;
  line-height: 1.2;
}
body.is-touch .btn {
  cursor: pointer;
}
.btn--fill {
  background: var(--wine);
  border-color: var(--wine);
}
.btn--fill:hover {
  background: var(--wine-soft);
  border-color: var(--wine-soft);
}
.btn--line {
  border-color: var(--line);
}
.btn--line:hover {
  border-color: var(--fg);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
/* Soft rise - no overflow clip (avoids cutting letter edges) */
.clip-reveal {
  overflow: visible;
  padding: 0.06em 0.18em 0.12em 0.02em;
}
.clip-reveal > * {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 0.55em, 0);
  transition: opacity 1.05s var(--ease), transform 1.05s var(--ease);
  padding-right: 0.06em;
}
.clip-reveal.is-in > * {
  opacity: 1;
  transform: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 4.5rem;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg);
}
.hero__video,
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero__photo {
  z-index: 0;
}
.hero__video {
  z-index: 1;
  transform: scale(1.06);
  transition: opacity 0.8s;
  opacity: 0;
  will-change: transform, opacity;
}
.hero.is-ready .hero__video {
  opacity: 1;
  transform: scale(1);
}
.hero__shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.55) 0%, rgba(8, 7, 6, 0.28) 35%, rgba(8, 7, 6, 0.72) 72%, var(--bg) 100%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.75), rgba(8, 7, 6, 0.25) 55%, rgba(8, 7, 6, 0.45));
}
.hero__layout {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin: 0 auto;
}
.hero__content {
  max-width: 560px;
}
.hero__word {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(1.95rem, 5.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 0.85rem;
  overflow: visible;
  white-space: nowrap;
  max-width: 100%;
  padding-right: 0.04em;
}
.hero__sub {
  font-family: var(--font-b);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  margin: 0 0 0.85rem;
  color: #e6d8c8;
  line-height: 1.3;
  max-width: none;
  min-height: 1.3em;
  white-space: nowrap;
}
.hero__text {
  margin: 0 0 1.8rem;
  max-width: 26rem;
  min-height: 2.9em;
  color: var(--muted);
  line-height: 1.45;
  text-wrap: balance;
}
.hero__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.55rem;
  width: 100%;
  max-width: 28rem;
}
.hero__actions .btn {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  max-width: none;
  padding-inline: 0.65rem;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.55rem, 2.5vw, 0.7rem);
  letter-spacing: 0.08em;
}
html[lang="uk"] .hero__sub,
html[lang="ru"] .hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
}
html[lang="uk"] .hero__text,
html[lang="ru"] .hero__text {
  font-size: 0.96em;
}
@media (max-width: 480px) {
  .hero__sub {
    white-space: normal;
    max-width: 18rem;
    text-wrap: balance;
  }
  .hero__actions {
    gap: 0.45rem;
  }
  .hero__actions .btn {
    min-height: 46px;
    padding-inline: 0.45rem;
    font-size: 0.55rem;
    letter-spacing: 0.05em;
  }
}
.hero__meta {
  position: absolute;
  right: var(--pad);
  bottom: 4.5rem;
  z-index: 3;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-d);
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  display: none;
}
@media (min-width: 900px) {
  .hero__meta {
    display: block;
  }
}

/* Marquee */
.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 1rem 0;
  background: var(--bg-2);
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  gap: 2.5rem;
  animation: marquee 28s linear infinite;
  font-family: var(--font-d);
  font-size: clamp(1rem, 2.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.marquee__track span {
  color: var(--muted);
}
.marquee__track b {
  color: var(--fg);
  font-weight: 700;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Lounge */
.lounge {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(3.5rem, 9vw, 6.5rem) var(--pad);
  overflow: visible;
}
.lounge__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
@media (min-width: 860px) {
  .lounge__inner {
    grid-template-columns: 1fr 0.9fr;
    gap: 3.5rem;
  }
}
.lounge__copy .lead {
  max-width: 30rem;
  margin-bottom: 0;
}
.lounge__shot {
  margin: 0;
  overflow: hidden;
  background: var(--bg-3);
  aspect-ratio: 4 / 5;
  max-height: 520px;
}
.lounge__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), filter 0.7s;
  filter: saturate(0.92) brightness(0.96);
}
.lounge__shot:hover img {
  transform: scale(1.03);
  filter: saturate(1.02) brightness(1);
}

.statement__big {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(1.55rem, 3.6vw, 2.55rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
  max-width: none;
  overflow: visible;
  padding-right: 0.04em;
  white-space: nowrap;
}
.statement__big em {
  font-family: var(--font-b);
  font-style: italic;
  font-weight: 400;
  color: var(--ember);
}
@media (max-width: 520px) {
  .statement__big {
    white-space: normal;
    font-size: clamp(1.45rem, 7.2vw, 1.85rem);
  }
}

/* Moments (after gallery) */
.moments {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
}
.moments__head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) 1.75rem;
}
.moments__stage {
  display: grid;
  gap: 1.25rem;
  padding: 0 var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .moments__stage {
    grid-template-columns: 1.05fr 0.95fr;
    grid-template-rows: auto auto;
    gap: 1.5rem 1.25rem;
    align-items: end;
  }
  .moments__item--a {
    grid-row: 1 / 3;
  }
  .moments__item--b {
    align-self: start;
    margin-top: 2.5rem;
  }
  .moments__item--c {
    margin-right: 8%;
  }
}
.moments__item {
  margin: 0;
}
.moments__item figure {
  margin: 0;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.moments__item img,
.moments__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.35s var(--ease), filter 0.65s;
  filter: saturate(0.92);
}
.moments__item:hover img,
.moments__item:hover video {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.moments__item--a figure {
  aspect-ratio: 3 / 4;
  max-height: 640px;
}
.moments__item--b figure {
  aspect-ratio: 16 / 11;
  max-height: 300px;
}
.moments__item--c figure {
  aspect-ratio: 5 / 4;
  max-height: 280px;
}
.moments__cap {
  margin: 0.7rem 0 0;
  padding: 0;
  color: var(--muted);
  font-family: var(--font-b);
  font-style: italic;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.35;
  max-width: 22ch;
}
@media (max-width: 899px) {
  .moments {
    padding: clamp(2.75rem, 8vw, 4rem) var(--pad) clamp(2rem, 5vw, 3rem);
  }
  .moments__head {
    padding: 0 0 1.25rem;
  }
  .moments__stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 0.65rem;
    padding: 0;
    align-items: start;
  }
  .moments__item--a {
    grid-column: 1 / -1;
  }
  .moments__item--a figure {
    aspect-ratio: 16 / 10;
    max-height: 260px;
  }
  .moments__item--b figure,
  .moments__item--c figure {
    aspect-ratio: 3 / 4;
    max-height: 220px;
    margin-top: 0;
  }
  .moments__cap {
    max-width: none;
    font-size: 0.95rem;
    margin-top: 0.55rem;
  }
}

/* Legacy mosaic kept minimal for safety */
.mosaic {
  display: none;
}

/* Feature strip (legacy) */
.feature {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) var(--pad);
  display: grid;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  overflow: visible;
}
.feature__row {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.feature__row:last-child {
  border-bottom: 1px solid var(--line);
}
.feature__num {
  font-family: var(--font-d);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--wine-soft);
}
.feature__title {
  font-family: var(--font-d);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  margin: 0.35rem 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.feature__copy {
  margin: 0;
  color: var(--muted);
  max-width: 34rem;
}
@media (min-width: 800px) {
  .feature__row {
    grid-template-columns: 80px 1fr 1.2fr;
    gap: 2rem;
  }
}

/* Home menu teaser */
.teaser {
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
  background:
    radial-gradient(700px 400px at 80% 20%, rgba(122, 42, 52, 0.22), transparent 60%),
    var(--bg-2);
  border-block: 1px solid var(--line);
}
.teaser__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}
.teaser__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.teaser__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-d);
}
.teaser__list li:first-child {
  border-top: 1px solid var(--line);
}
.teaser__list strong {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 700;
}
.teaser__list span {
  color: var(--ember);
  font-weight: 600;
}
.teaser__list small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-family: var(--font-b);
  font-size: 1.05rem;
}

/* Gallery */
.gallery {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  overflow: visible;
}
.gallery__head {
  padding: 0 var(--pad) 1.5rem;
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
}
.gallery__hint {
  font-family: var(--font-d);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.rail {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding: 0 var(--pad) 0.5rem;
  scroll-snap-type: x mandatory;
  cursor: grab;
  scrollbar-width: none;
}
.rail::-webkit-scrollbar {
  display: none;
}
.rail.is-drag {
  cursor: grabbing;
  scroll-snap-type: none;
}
.rail figure {
  margin: 0;
  flex: 0 0 min(70vw, 300px);
  aspect-ratio: 3/4;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--bg-3);
  position: relative;
}
.rail figure:has(img) {
  cursor: zoom-in;
}
.rail figure:nth-child(3n) {
  flex-basis: min(55vw, 240px);
  aspect-ratio: 3/5;
  align-self: end;
}
.rail img,
.rail video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
  pointer-events: none;
}
.rail figure:hover img,
.rail figure:hover video {
  transform: scale(1.06);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  background: rgba(8, 7, 6, 0.92);
  backdrop-filter: blur(10px);
  padding: 4.5rem 3.5rem 2.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox[hidden] {
  display: none;
}
.lightbox.is-open[hidden] {
  display: grid;
}
.lightbox__stage {
  margin: 0;
  max-width: min(92vw, 920px);
  max-height: min(84vh, 1100px);
  width: auto;
  height: auto;
}
.lightbox__img {
  width: auto;
  height: auto;
  max-width: min(92vw, 920px);
  max-height: min(84vh, 1100px);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transform: scale(0.94);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.35s;
}
.lightbox.is-open .lightbox__img {
  transform: scale(1);
  opacity: 1;
}
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: rgba(16, 14, 12, 0.7);
  color: var(--fg);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--line);
  background: rgba(16, 14, 12, 0.7);
  color: var(--fg);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}
.lightbox__nav--prev {
  left: 0.75rem;
}
.lightbox__nav--next {
  right: 0.75rem;
}
@media (max-width: 700px) {
  .lightbox {
    padding: 4rem 0.75rem 1.5rem;
  }
  .lightbox__nav {
    top: auto;
    bottom: 1rem;
    transform: none;
  }
  .lightbox__nav--prev {
    left: calc(50% - 3.4rem);
  }
  .lightbox__nav--next {
    right: calc(50% - 3.4rem);
  }
}
body.is-lightbox {
  overflow: hidden;
}
body.is-touch .lightbox__close,
body.is-touch .lightbox__nav {
  cursor: pointer;
}

/* Visit */
.visit {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  overflow: visible;
}
.visit__map {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--bg-3);
  z-index: 1;
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.65) contrast(1.08) brightness(0.72) sepia(0.12);
  display: block;
}
.visit__map-link {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 2;
  font-family: var(--font-d);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 0.8rem;
  background: rgba(8, 7, 6, 0.82);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.visit__map-link:hover {
  border-color: var(--ember);
  color: var(--ember);
}
.visit__actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 1.5rem;
  width: 100%;
  max-width: 28rem;
}
.visit__actions .btn {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
  max-width: none;
  padding-inline: 0.55rem;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(0.52rem, 2.2vw, 0.68rem);
  letter-spacing: 0.07em;
}
@media (max-width: 420px) {
  .visit__actions {
    gap: 0.4rem;
  }
  .visit__actions .btn {
    min-height: 46px;
    padding-inline: 0.35rem;
    font-size: 0.5rem;
    letter-spacing: 0.04em;
  }
}
@media (min-width: 860px) {
  .visit {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }
  .visit__map {
    min-height: 420px;
  }
  .visit__map iframe {
    min-height: 420px;
    height: 100%;
  }
}

/* Page hero (legacy shared) */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) var(--pad) 3rem;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2.4rem, 7vw, 4rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
  overflow: visible;
  padding-right: 0.04em;
  padding-bottom: 0.04em;
  margin: 0 0 1rem;
  position: relative;
}

/* Menu page */
.menu-sheet.book-page {
  grid-template-columns: 1fr;
  max-width: 760px;
  gap: 0;
}
.menu-switch {
  position: sticky;
  top: calc(var(--nav-h) + 0.35rem);
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  gap: 0;
  margin: 0 0 1.75rem;
  padding: 0.25rem;
  background: rgba(8, 7, 6, 0.98);
  border: 1px solid rgba(243, 235, 225, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  flex-shrink: 0;
  isolation: isolate;
}
.menu-panel {
  min-width: 0;
}
.menu-switch button {
  appearance: none;
  border: 0;
  background: transparent;
  min-width: 0;
  width: 100%;
  padding: 0.85rem 0.75rem;
  font-family: var(--font-d);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: none;
  transition: color 0.25s, background 0.25s;
  text-align: center;
}
body.is-touch .menu-switch button {
  cursor: pointer;
}
.menu-switch button.is-on {
  background: var(--wine);
  color: var(--fg);
}
.menu-panel[hidden] {
  display: none;
}

.menu-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.menu-row {
  display: grid;
  gap: 0.55rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.menu-row__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: start;
}
.menu-row__top h3 {
  margin: 0;
  font-family: var(--font-d);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  min-width: 0;
}
.menu-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  max-width: 36rem;
}
.menu-row__note {
  font-family: var(--font-d) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine-soft) !important;
}
.menu-row--accent {
  background: linear-gradient(90deg, rgba(122, 42, 52, 0.14), transparent 70%);
  padding-inline: 0.75rem;
  margin-inline: -0.75rem;
  width: calc(100% + 1.5rem);
  box-sizing: border-box;
}
.menu-row__price {
  display: grid;
  gap: 0.35rem;
  justify-items: end;
  text-align: right;
  font-family: var(--font-d);
  flex-shrink: 0;
}
.menu-row__price span {
  display: grid;
  gap: 0.08rem;
  justify-items: end;
}
.menu-row__price b {
  color: var(--ember);
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  white-space: nowrap;
}
.menu-row__price small {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-note {
  margin: 1.75rem 0 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.55rem;
  font-family: var(--font-d);
  font-size: 0.78rem;
}
.menu-note p {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  color: var(--muted);
}
.menu-note strong {
  color: var(--fg);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.68rem;
}
.menu-note__service {
  color: var(--wine-soft) !important;
  margin-top: 0.2rem !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.65rem !important;
}

.tea-price {
  font-family: var(--font-d);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
}
.tea-price b {
  color: var(--ember);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}
.tea-grid {
  display: grid;
  gap: 1.75rem;
}
@media (min-width: 760px) {
  .tea-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }
}
.tea-sec h3 {
  margin: 0 0 0.8rem;
  font-family: var(--font-d);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--wine-soft);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(154, 61, 72, 0.35);
}
.tea-sec ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}
.tea-sec li {
  display: grid;
  gap: 0.15rem;
}
.tea-sec strong {
  font-family: var(--font-d);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.tea-sec span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.35;
}
.tea-sec--mood {
  grid-column: 1 / -1;
}
@media (min-width: 760px) {
  .tea-sec--mood ul {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 2rem;
  }
}

.menu-cta {
  position: relative;
  z-index: 2;
  margin-top: 2.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

/* Keep rows under sticky tabs - never override .menu-switch sticky */
.menu-panel,
.menu-row,
.menu-cta {
  position: relative;
  z-index: 1;
}

/* Book page */
.book-main {
  position: relative;
  z-index: 2;
}
.book-hero {
  position: relative;
  min-height: min(52svh, 420px);
  display: grid;
  align-items: end;
  padding: calc(var(--nav-h) + 2rem) var(--pad) 2.5rem;
  overflow: hidden;
}
.book-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.book-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.04);
}
.book-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 6, 0.55) 0%, rgba(8, 7, 6, 0.35) 40%, rgba(8, 7, 6, 0.92) 100%),
    linear-gradient(90deg, rgba(8, 7, 6, 0.7), transparent 55%);
}
.book-hero__copy {
  position: relative;
  z-index: 1;
  max-width: 34rem;
}
.book-hero__mark {
  display: block;
  width: 44px;
  height: auto;
  margin: 0 0 1rem;
  opacity: 0.85;
}
.book-hero h1 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin: 0 0 0.85rem;
  overflow: visible;
  padding-right: 0.06em;
  white-space: nowrap;
}
html[lang="uk"] .book-hero h1,
html[lang="ru"] .book-hero h1 {
  font-size: clamp(1.85rem, 4.8vw, 3rem);
}
@media (max-width: 520px) {
  .book-hero h1 {
    white-space: normal;
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }
}
.book-hero .lead {
  color: #d9cfc2;
  max-width: 26rem;
}

.book-page {
  padding: 0 var(--pad) clamp(4rem, 10vw, 7rem);
  max-width: 880px;
  margin: -1.5rem auto 0;
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 860px) {
  .book-page {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 2rem;
    align-items: start;
    margin-top: -2rem;
  }
}

.hours {
  border: 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(165deg, rgba(122, 42, 52, 0.16), transparent 50%),
    rgba(16, 14, 12, 0.92);
  padding: 1.35rem 1.25rem 1.4rem;
  backdrop-filter: blur(12px);
}
.hours__title {
  font-family: var(--font-d);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine-soft);
  margin: 0 0 1rem;
}
.hours__grid {
  display: grid;
  gap: 0.85rem;
}
.hours__grid p {
  margin: 0;
  display: grid;
  gap: 0.25rem;
}
.hours__grid span {
  font-family: var(--font-d);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.hours__grid b {
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--fg);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}
.hours__note {
  margin: 1.15rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-d);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.form {
  display: grid;
  gap: 1.05rem;
  padding: 1.5rem 1.35rem 1.6rem;
  border: 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(122, 42, 52, 0.14), transparent 42%),
    rgba(16, 14, 12, 0.94);
  backdrop-filter: blur(12px);
}
.form__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 560px) {
  .form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.form label {
  display: grid;
  gap: 0.45rem;
}
.form label > span {
  font-family: var(--font-d);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.form input:not([type="checkbox"]),
.form select,
.form textarea {
  width: 100%;
  min-height: 48px;
  background: rgba(8, 7, 6, 0.55);
  border: 1px solid rgba(243, 235, 225, 0.14);
  border-bottom-color: rgba(243, 235, 225, 0.28);
  padding: 0.8rem 0.95rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 0;
  color: var(--fg);
  font-family: var(--font-b);
  font-size: 1.05rem;
}
.form textarea {
  min-height: 96px;
  resize: vertical;
}
.form input:not([type="checkbox"])::placeholder,
.form textarea::placeholder {
  color: rgba(143, 135, 124, 0.85);
  font-style: italic;
}
.form input:not([type="checkbox"]):focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(196, 122, 74, 0.65);
  background: rgba(8, 7, 6, 0.75);
}
.form input[type="date"] {
  color-scheme: dark;
}
.form input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.55;
  cursor: pointer;
  filter: invert(0.85);
}

.field-select {
  position: relative;
}
.field-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.6rem;
  cursor: pointer;
  background-color: rgba(8, 7, 6, 0.55);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238f877c' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}
.field-select select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23c47a4a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.field-select::after {
  display: none;
}
.form .is-bad {
  border-color: #a33 !important;
}
.form__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.35rem;
}
.form__status {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.form__status.ok {
  color: #9cba8b;
}
.form__status.err {
  color: #d98a8a;
}
.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

@media (max-width: 700px) {
  .book-hero {
    min-height: 44svh;
  }
  .book-page {
    margin-top: -1rem;
  }
}

/* Footer - quiet closing signature */
.footer {
  position: relative;
  z-index: 2;
  margin-top: clamp(1rem, 4vw, 2.5rem);
  padding: clamp(3rem, 8vw, 5rem) var(--pad) clamp(1.75rem, 4vw, 2.5rem);
  color: var(--muted);
  background:
    linear-gradient(180deg, transparent, rgba(16, 14, 12, 0.9) 28%),
    radial-gradient(640px 240px at 50% 0%, rgba(122, 42, 52, 0.14), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.footer__inner {
  max-width: 36rem;
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 1.5rem;
}
.footer__sign {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
}
.footer__brand {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--fg);
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.footer__brand em {
  font-family: var(--font-d);
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.footer__tag {
  margin: 0;
  font-family: var(--font-d);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  line-height: 1.4;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.15rem 0;
  font-family: var(--font-d);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-style: normal;
}
.footer__nav a {
  color: var(--fg);
  padding: 0.2rem 0.7rem;
  text-decoration: none;
  transition: color 0.25s;
}
.footer__nav a:hover {
  color: var(--ember);
}
.footer__nav a + a::before {
  content: "·";
  margin-right: 0.7rem;
  color: var(--muted);
  pointer-events: none;
}
.footer__fine {
  margin: 0.35rem 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.55rem;
  font-family: var(--font-d);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.85;
}
.footer__fine a {
  color: var(--muted);
  text-decoration: none;
}
.footer__fine a:hover {
  color: var(--ember);
}
.footer__sep {
  opacity: 0.55;
}
.footer__credit a {
  color: var(--fg);
  border-bottom: 1px solid rgba(243, 235, 225, 0.22);
}
.footer__credit a:hover {
  color: var(--ember);
  border-bottom-color: var(--ember);
}

/* Legal pages */
.legal-main {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 2.5rem) var(--pad) clamp(3.5rem, 8vw, 5.5rem);
  max-width: 760px;
  margin: 0 auto;
}
.legal-head {
  margin: 0 0 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.legal-head h1 {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin: 0 0 0.65rem;
}
.legal-updated {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-d);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.legal-sheet {
  display: grid;
  gap: 1.75rem;
}
.legal-sheet section h2 {
  margin: 0 0 0.55rem;
  font-family: var(--font-d);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wine-soft);
}
.legal-sheet section p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 40rem;
}
.legal-sheet a {
  color: var(--ember);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  margin-top: 0.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-d);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.legal-nav a {
  color: var(--fg);
  text-decoration: none;
}
.legal-nav a:hover {
  color: var(--ember);
}

/* Booking consent */
.form label.form__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.1rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.form label.form__consent > span {
  font-family: var(--font-b);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
  line-height: 1.4;
}
.form__consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  width: 1rem !important;
  height: 1rem !important;
  min-width: 1rem !important;
  min-height: 1rem !important;
  max-width: 1rem !important;
  max-height: 1rem !important;
  margin: 0.2rem 0 0;
  padding: 0 !important;
  border: 1px solid rgba(243, 235, 225, 0.35) !important;
  border-radius: 0 !important;
  background: rgba(8, 7, 6, 0.75) !important;
  flex: 0 0 1rem;
  cursor: pointer;
  position: relative;
  display: inline-block;
  vertical-align: top;
  accent-color: var(--wine);
}
.form__consent input[type="checkbox"]:checked {
  background: var(--wine) !important;
  border-color: var(--wine) !important;
}
.form__consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: 0.05rem;
  width: 0.22rem;
  height: 0.45rem;
  border: solid #f3ebe1;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.form__consent input[type="checkbox"]:focus {
  outline: none;
  border-color: var(--ember) !important;
  box-shadow: none;
}
.form__consent input.is-bad {
  border-color: #d98a8a !important;
}
.form__consent a {
  color: var(--ember);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

/* Cookie banner */
.cookie {
  position: fixed;
  left: var(--pad);
  right: var(--pad);
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 70;
  max-width: 520px;
  margin: 0 auto;
  padding: 1.15rem 1.2rem 1.2rem;
  background: rgba(16, 14, 12, 0.96);
  border: 1px solid rgba(243, 235, 225, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease), opacity 0.35s;
}
.cookie.is-on {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}
.cookie a {
  color: var(--ember);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.cookie__actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.cookie__actions .btn {
  flex: 1 1 0;
  min-width: 0;
  min-height: 44px;
  padding-inline: 0.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  justify-content: center;
  white-space: nowrap;
}
@media (min-width: 700px) {
  .cookie {
    left: auto;
    right: var(--pad);
    margin: 0;
  }
}

/* ========== Real menu art (from printed menus) ========== */
.ink-panel {
  display: none;
}

.menu-art-wrap {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem 0.5rem;
  overflow: visible;
  min-height: 280px;
}
.menu-art {
  display: block;
  width: min(100%, 260px);
  height: auto;
  margin: 0 auto;
  opacity: 0.55;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.4));
  transform-origin: center;
  will-change: transform;
}
.menu-art--hookah {
  width: min(100%, 220px);
  opacity: 0.48;
  max-height: none;
}
.menu-art--tea {
  width: min(100%, 220px);
  opacity: 0.4;
}

.menu-art-bg {
  position: absolute;
  pointer-events: none;
  user-select: none;
  opacity: 0.1;
  z-index: 0;
  will-change: transform;
}
.menu-art-bg--hookah {
  right: -4%;
  top: 4%;
  width: min(28vw, 220px);
  opacity: 0.09;
}
.menu-art-bg--tea {
  left: -2%;
  top: 10%;
  width: min(32vw, 240px);
  opacity: 0.1;
}
.menu-art-bg--dragon {
  right: 8%;
  top: 12%;
  width: 96px;
  opacity: 0.14;
}
.menu-art-bg--tea-soft {
  left: auto;
  right: 4%;
  bottom: 6%;
  top: auto;
  width: min(28vw, 200px);
  opacity: 0.1;
}
.ink-panel .menu-art-bg--tea-soft {
  left: 4%;
  right: auto;
  top: 55%;
  bottom: auto;
  width: min(24vw, 170px);
  opacity: 0.09;
}
.menu-art-bg--bowl {
  right: 6%;
  top: 55%;
  width: min(14vw, 120px);
  opacity: 0.1;
}
.feature .menu-art-bg--bowl {
  right: 2%;
  left: auto;
  top: 8%;
  width: min(12vw, 100px);
}
.gallery .menu-art-bg--bowl {
  left: 6%;
  right: auto;
  top: 35%;
  width: min(12vw, 100px);
  opacity: 0.08;
}
.visit .menu-art-bg--tea-soft {
  right: 4%;
  left: auto;
  bottom: 8%;
  top: auto;
  width: min(22vw, 160px);
}
.teaser .menu-art-bg--tea-soft {
  left: 35%;
  top: 8%;
  width: min(20vw, 160px);
  opacity: 0.08;
}
.gallery .menu-art-bg--tea {
  right: 4%;
  left: auto;
  top: auto;
  bottom: 8%;
  width: min(28vw, 200px);
}
.visit .menu-art-bg--dragon {
  left: 6%;
  right: auto;
  top: 8%;
  width: 72px;
}
.feature .menu-art-bg--hookah {
  left: -2%;
  right: auto;
  top: 20%;
  width: min(22vw, 160px);
  opacity: 0.07;
}

.decor-drift {
  animation: decorDrift 14s ease-in-out infinite alternate;
}
@keyframes decorDrift {
  from { filter: brightness(0.95); }
  to { filter: brightness(1.15); }
}

/* Scroll depth: marker class only (no continuous opacity updates) */

.lounge__copy,
.moments__head,
.teaser__inner,
.gallery__head,
.visit > div {
  position: relative;
  z-index: 1;
}

.rule-line {
  display: block;
  width: 64px;
  height: 1px;
  background: var(--wine-soft);
  margin: 0 0 1rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s var(--ease);
}
.rule-line.is-in {
  transform: scaleX(1);
}

.feature__svg-line {
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 1rem;
  background: linear-gradient(90deg, var(--wine-soft), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.1s var(--ease);
}
.feature__svg-line.is-on {
  transform: scaleX(1);
}

.loader__dragon-img {
  width: 56px;
  height: auto;
  margin: 0 auto 1rem;
  display: block;
  opacity: 0.85;
  animation: dragonPulse 2.4s ease-in-out infinite;
}
@keyframes dragonPulse {
  0%, 100% { transform: translateY(0); opacity: 0.72; }
  50% { transform: translateY(-5px); opacity: 1; }
}

.teaser { position: relative; overflow: visible; }
.teaser__inner { position: relative; z-index: 1; }

.divider {
  position: relative;
  height: 40px;
  margin: 0 var(--pad);
}
.divider-line {
  display: block;
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, var(--wine-soft), transparent);
  opacity: 0.55;
  transform: scaleX(0.2);
  transition: transform 1.2s var(--ease);
}
.divider-line.is-in { transform: scaleX(1); }

.teaser__list span[data-count] { font-variant-numeric: tabular-nums; }

/* Image wipe reveal */
.mask-reveal {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.15s var(--ease);
}
.mask-reveal.is-in {
  clip-path: inset(0 0 0% 0);
}
.lounge__shot.mask-reveal,
.moments__item figure.mask-reveal,
.rail figure.mask-reveal {
  clip-path: inset(12% 12% 12% 12%);
  transition: clip-path 1.2s var(--ease), opacity 0.8s;
  opacity: 0.55;
}
.lounge__shot.mask-reveal.is-in,
.moments__item figure.mask-reveal.is-in,
.rail figure.mask-reveal.is-in {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

/* Soft ambient glow following pointer */
.ambient {
  pointer-events: none;
  position: fixed;
  width: 42vw;
  height: 42vw;
  max-width: 520px;
  max-height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 42, 52, 0.18), transparent 68%);
  z-index: 1;
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 0.6s;
  will-change: transform;
}
body.is-ambient .ambient {
  opacity: 1;
}
body.is-touch .ambient {
  display: none;
}

/* Floating scroll orbs */
.scroll-orbs {
  display: none !important;
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.scroll-orbs i {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.22;
  transform: translate3d(0, var(--sy, 0px), 0);
  background: radial-gradient(circle, rgba(196, 122, 74, 0.45), transparent 70%);
}
.scroll-orbs i:nth-child(1) {
  width: 280px;
  height: 280px;
  left: -6%;
  top: 18%;
  background: radial-gradient(circle, rgba(122, 42, 52, 0.5), transparent 70%);
}
.scroll-orbs i:nth-child(2) {
  width: 360px;
  height: 360px;
  right: -8%;
  top: 48%;
  opacity: 0.16;
}
.scroll-orbs i:nth-child(3) {
  width: 220px;
  height: 220px;
  left: 35%;
  top: 72%;
  background: radial-gradient(circle, rgba(47, 74, 58, 0.55), transparent 70%);
  opacity: 0.18;
}

.depth-layer {
  transition: opacity 0.4s linear;
}

/* Gallery hint pulse */
.gallery__hint {
  position: relative;
}
.gallery__hint::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin-left: 0.55rem;
  vertical-align: middle;
  background: var(--ember);
  transform-origin: left;
  animation: hintPulse 2.4s var(--ease) infinite;
}
@keyframes hintPulse {
  0%, 100% { transform: scaleX(0.35); opacity: 0.35; }
  50% { transform: scaleX(1); opacity: 1; }
}

/* Menu art mouse lean */
.menu-art,
.menu-art-bg {
  transition: filter 0.6s;
}

/* ========== Mobile: smooth wow, no jumps ========== */
body.is-touch {
  overscroll-behavior-y: none;
}

body.is-touch .reveal {
  transform: translate3d(0, 16px, 0);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

body.is-touch .hero {
  /* svh only - don't fight collapsing browser chrome */
  min-height: 100svh;
}

body.is-touch .hero__video {
  transform: scale(1.04);
  opacity: 1;
  transition: opacity 0.8s, transform 8s linear;
}
body.is-touch .hero.is-ready .hero__video,
body.is-touch .hero__video--mobile {
  opacity: 1;
  transform: scale(1);
  animation: mobileKen 18s ease-in-out infinite alternate;
}
@keyframes mobileKen {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(0, -1.5%, 0); }
}

body.is-touch .float-css {
  animation: mobileFloat 9s ease-in-out infinite alternate;
  animation-delay: var(--float-delay, 0s);
  will-change: transform;
}
@keyframes mobileFloat {
  from { transform: translate3d(0, 0, 0) rotate(-1deg); }
  to { transform: translate3d(0, -10px, 0) rotate(1.2deg); }
}

body.is-touch .menu-art-bg {
  animation: mobileFloatSlow 12s ease-in-out infinite alternate;
  opacity: 0.12;
}
@keyframes mobileFloatSlow {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -14px, 0); }
}

body.is-touch .scroll-orbs--mobile i {
  animation: orbDrift 16s ease-in-out infinite alternate;
  transform: none;
}
body.is-touch .scroll-orbs--mobile i:nth-child(1) { animation-duration: 18s; }
body.is-touch .scroll-orbs--mobile i:nth-child(2) { animation-duration: 22s; animation-delay: -4s; }
body.is-touch .scroll-orbs--mobile i:nth-child(3) { animation-duration: 20s; animation-delay: -8s; }
@keyframes orbDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4vw, -6vh, 0) scale(1.12); }
}

body.is-touch .lounge__shot.mask-reveal,
body.is-touch .moments__item figure.mask-reveal,
body.is-touch .rail figure.mask-reveal {
  clip-path: inset(6% 6% 6% 6%);
  opacity: 0.7;
  transition: clip-path 0.9s var(--ease), opacity 0.7s;
}
body.is-touch .lounge__shot.mask-reveal.is-in,
body.is-touch .moments__item figure.mask-reveal.is-in,
body.is-touch .rail figure.mask-reveal.is-in {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

body.is-touch .rail {
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}
body.is-touch .rail--hint {
  animation: railHint 1.8s var(--ease) 0.6s 1;
}
@keyframes railHint {
  0%, 100% { transform: translate3d(0, 0, 0); }
  40% { transform: translate3d(-18px, 0, 0); }
  70% { transform: translate3d(0, 0, 0); }
}

body.is-touch .btn {
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
body.is-touch .btn:active {
  transform: scale(0.97);
}

body.is-touch .marquee__track {
  animation-duration: 36s;
}

body.is-touch .visit__map iframe {
  /* avoid filter repaint jank while scrolling */
  filter: grayscale(0.55) brightness(0.75);
}

body.is-touch .menu-art-wrap {
  min-height: 240px;
  padding: 1rem 0;
}

body.is-touch .lounge,
body.is-touch .moments,
body.is-touch .teaser,
body.is-touch .gallery,
body.is-touch .visit {
  overflow: visible;
}

/* Prevent horizontal jump from floating art */
@media (max-width: 900px) {
  .menu-art-bg--hookah,
  .menu-art-bg--tea {
    width: min(42vw, 160px);
    opacity: 0.08;
  }
  .statement__big {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  }
}

body.is-touch .lux-scape__art--hookah,
body.is-touch .lux-scape__art--tea {
  width: min(28vw, 140px);
  opacity: 0.06;
}
body.is-touch .lux-scape__smoke {
  animation-duration: 16s;
}
@media (max-width: 700px) {
  .lux-scape__art--bowl,
  .lux-scape__art--dragon {
    display: none;
  }
  .lux-scape__art--hookah {
    top: auto;
    bottom: 30%;
    right: -8%;
  }
  .lux-scape__art--tea {
    top: 22%;
    bottom: auto;
    left: -10%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .clip-reveal > *, .marquee__track, .loader__brand span, .loader__bar i,
  .hero.is-ready .hero__video, .loader__dragon-img, .mask-reveal,
  .gallery__hint::after, .decor-drift, .float-css, .hero__video--mobile,
  .scroll-orbs--mobile i, .rail--hint, .menu-art-bg,
  .lux-scape__art, .lux-scape__wash, .lux-scape__smoke,
  .wow-ken, .wow-sparks i, .wow-ember i, .wow-sheen,
  .sec-art {
    animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important;
    clip-path: none !important; filter: none !important;
  }
  .sec-art { opacity: 0.1 !important; }
  .lux-scape__art { opacity: 0.05 !important; }
  .cursor, .cursor__ring, .ambient, .scroll-orbs, .wow-sparks, .wow-ember { display: none !important; }
  body { cursor: auto; }
}

/* ========== Wow décor layer (additive, lightweight) ========== */
/* lux-scape__art positioning/motion defined later (scroll drift + float) */

.wow-sparks,
.wow-ember {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}
.wow-sparks i,
.wow-ember i {
  position: absolute;
  display: block;
  border-radius: 50%;
  will-change: transform, opacity;
}
.wow-sparks i {
  width: 3px;
  height: 3px;
  background: rgba(243, 235, 225, 0.7);
  box-shadow: 0 0 8px rgba(196, 122, 74, 0.45);
  animation: wowSpark 9s ease-in-out infinite;
  opacity: 0;
}
.wow-sparks i:nth-child(1) { left: 12%; top: 28%; animation-delay: 0s; }
.wow-sparks i:nth-child(2) { left: 78%; top: 22%; animation-delay: -2s; }
.wow-sparks i:nth-child(3) { left: 64%; top: 68%; animation-delay: -4s; }
.wow-sparks i:nth-child(4) { left: 28%; top: 74%; animation-delay: -1.5s; }
.wow-sparks i:nth-child(5) { left: 46%; top: 18%; animation-delay: -5s; }
.wow-sparks i:nth-child(6) { left: 88%; top: 52%; animation-delay: -3s; }
@keyframes wowSpark {
  0%, 100% { opacity: 0; transform: translate3d(0, 8px, 0) scale(0.6); }
  40% { opacity: 0.75; transform: translate3d(0, -6px, 0) scale(1); }
  70% { opacity: 0.2; transform: translate3d(4px, -14px, 0) scale(0.8); }
}
.wow-ember i {
  width: 10px;
  height: 10px;
  filter: blur(4px);
  background: radial-gradient(circle, rgba(196, 122, 74, 0.55), transparent 70%);
  animation: wowEmber 14s linear infinite;
  opacity: 0;
}
.wow-ember i:nth-child(1) { left: 18%; bottom: -2%; animation-delay: 0s; }
.wow-ember i:nth-child(2) { left: 55%; bottom: -2%; animation-delay: -4s; }
.wow-ember i:nth-child(3) { left: 82%; bottom: -2%; animation-delay: -8s; }
.wow-ember i:nth-child(4) { left: 36%; bottom: -2%; animation-delay: -11s; }
@keyframes wowEmber {
  0% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.5); }
  15% { opacity: 0.55; }
  100% { opacity: 0; transform: translate3d(12px, -55vh, 0) scale(0.2); }
}

.wow-ken {
  animation: wowKen 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes wowKen {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.09) translate3d(1.2%, -0.8%, 0); }
}

.wow-sheen {
  position: relative;
}
/* Sticky tabs must stay sticky — .wow-sheen would otherwise win */
.menu-switch.wow-sheen {
  position: sticky;
  top: calc(var(--nav-h) + 0.35rem);
  z-index: 30;
}
.wow-sheen::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(243, 235, 225, 0.08) 48%,
    transparent 62%
  );
  transform: translate3d(-120%, 0, 0);
  animation: wowSheen 8s ease-in-out infinite;
  mix-blend-mode: screen;
}
@keyframes wowSheen {
  0%, 60% { transform: translate3d(-120%, 0, 0); }
  85%, 100% { transform: translate3d(120%, 0, 0); }
}

body.is-touch .wow-sparks i:nth-child(n + 4),
body.is-touch .wow-ember i:nth-child(n + 3) {
  display: none;
}
body.is-touch .wow-sheen::after {
  animation-duration: 12s;
  opacity: 0.7;
}
@media (max-width: 700px) {
  .lux-scape__art--menu-top {
    display: none;
  }
}

.lux-scape__art,
.lux-scape__smoke {
  display: none !important;
}

/* ========== Section etch arts (no crop, parallax + float) ========== */
.has-art {
  position: relative;
  isolation: isolate;
}
.moments.has-art,
.book-hero.has-art {
  overflow: visible;
}
.book-hero.has-art > .book-hero__media {
  overflow: hidden;
}
.sec-art-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: visible;
  pointer-events: none;
}
.lounge.has-art > .lounge__inner,
.teaser.has-art > .teaser__inner,
.gallery.has-art > .gallery__head,
.gallery.has-art > .rail,
.moments.has-art > .moments__head,
.moments.has-art > .moments__stage,
.book-hero.has-art > .book-hero__copy,
.visit > div.has-art > *:not(.sec-art-layer),
.hours.has-art > *:not(.sec-art-layer),
.legal-main.has-art > *:not(.sec-art-layer) {
  position: relative;
  z-index: 1;
}

.sec-art {
  position: absolute;
  top: var(--ay, 20%);
  width: var(--sz, 160px);
  opacity: 0;
  pointer-events: none;
  filter: blur(8px);
  transform: translate3d(0, 28px, 0) scale(0.92);
}
.sec-art--right {
  right: 2%;
  left: auto;
}
.sec-art--left {
  left: 2%;
  right: auto;
}
.sec-art.is-in {
  opacity: var(--op, 0.28);
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms),
    filter 1.1s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms),
    transform 1.1s cubic-bezier(0.16, 1, 0.3, 1) var(--d, 0ms);
}
/* CSS-only drift — no JS layout reads on every frame */
.sec-art.is-in.sec-art--float {
  animation: secFloat 9s ease-in-out infinite alternate;
}
.sec-art.is-in.sec-art--sway {
  animation: secSway 11s ease-in-out infinite alternate;
}
.sec-art.is-in.sec-art--rise {
  animation: secRise 10s ease-in-out infinite alternate;
}
.sec-art.is-in.sec-art--drift {
  animation: secDrift 13s ease-in-out infinite alternate;
}
.sec-art.is-in.sec-art--pulse {
  animation: secPulse 8s ease-in-out infinite alternate;
}
@keyframes secFloat {
  from { transform: translate3d(0, 0, 0) rotate(-1deg); }
  to { transform: translate3d(4px, -10px, 0) rotate(1.2deg); }
}
@keyframes secSway {
  from { transform: translate3d(-6px, 0, 0) rotate(-2deg); }
  to { transform: translate3d(8px, -4px, 0) rotate(2.4deg); }
}
@keyframes secRise {
  from { transform: translate3d(0, 6px, 0) scale(0.98); }
  to { transform: translate3d(-3px, -12px, 0) scale(1.03); }
}
@keyframes secDrift {
  from { transform: translate3d(-10px, 2px, 0) rotate(-1deg); }
  to { transform: translate3d(10px, -8px, 0) rotate(1.5deg); }
}
@keyframes secPulse {
  from { transform: translate3d(0, 0, 0) scale(0.98); }
  to { transform: translate3d(2px, -6px, 0) scale(1.04); }
}
.sec-art img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: plus-lighter;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.4));
  user-select: none;
  -webkit-user-drag: none;
}
@supports not (mix-blend-mode: plus-lighter) {
  .sec-art img {
    mix-blend-mode: screen;
  }
}

@media (max-width: 700px) {
  .sec-art--right {
    right: 3%;
  }
  .sec-art--left {
    left: 3%;
  }
  .sec-art {
    max-width: min(38vw, 150px);
  }
  .sec-art.is-in {
    opacity: calc(var(--op, 0.24) * 1.15);
  }
  /* Fewer animated washes on small screens */
  .lux-scape__wash {
    animation: none;
    opacity: 0.22;
  }
  .grain {
    opacity: 0.03;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sec-art,
  .sec-art.is-in {
    opacity: var(--op, 0.16) !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}
