:root {
  --bg: #060606;
  --surface: #0c0c0e;
  --surface-soft: #111115;
  --text: #f3f0ea;
  --muted: #9c9a96;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #e6c9a7;
  --violet: #a996c8;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

section[id] {
  scroll-margin-top: 86px;
}

#menu-prices {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 5%, rgba(151, 124, 171, 0.08), transparent 30%),
    var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 92px;
  padding: 0 clamp(24px, 4vw, 72px);
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, height 240ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: var(--line);
  background: rgba(6, 6, 6, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 10px;
  border-top: 1px solid var(--gold);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.brand-mark span {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 16px rgba(255, 247, 231, 0.8);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.brand-name b {
  color: var(--gold);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 52px);
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav-booking {
  display: none;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  transition: color 180ms ease;
}

.header-instagram:hover {
  color: var(--text);
}

.header-instagram i {
  color: var(--gold);
  font-style: normal;
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(10, 10, 12, 0.82);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 15px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-3px);
}

.nav-toggle span:last-child {
  transform: translateY(3px);
}

.site-header.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 600;
}

.header-cta span {
  display: grid;
  place-items: center;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover span {
  color: var(--gold);
  border-color: var(--gold);
  transform: rotate(45deg);
}

.hero-cinematic {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 138px clamp(24px, 7vw, 128px) 64px;
  border-bottom: 1px solid var(--line);
  background: #060606;
}

.hero-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.76) 0%, rgba(6, 6, 6, 0.28) 42%, rgba(6, 6, 6, 0.04) 100%),
    linear-gradient(0deg, #060606 0%, rgba(6, 6, 6, 0.76) 23%, transparent 52%);
}

.cinematic-space {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.cinematic-hole-stage {
  position: absolute;
  top: 48%;
  right: -8%;
  width: min(88vw, 1560px);
  aspect-ratio: 2 / 1;
  transform: translate3d(0, -50%, 0);
}

.cinematic-black-hole-video {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.82) contrast(1.04);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 52% at 68% 50%,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.9) 58%,
    rgba(0, 0, 0, 0.42) 78%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 52% at 68% 50%,
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.9) 58%,
    rgba(0, 0, 0, 0.42) 78%,
    transparent 100%
  );
}

.cinematic-wordmark {
  position: relative;
  z-index: 1;
  margin: 4vh 0 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 54px);
  font-weight: 400;
  letter-spacing: 0.13em;
}

.cinematic-wordmark span {
  color: var(--gold);
}

.cinematic-bottom {
  position: absolute;
  bottom: clamp(60px, 8vh, 104px);
  left: clamp(24px, 7vw, 128px);
  z-index: 1;
  width: min(1120px, 58vw);
}

.cinematic-bottom h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 6.3vw, 168px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.91;
}

.cinematic-bottom h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #fff 10%, #ddcab8 56%, #9d8cac 96%);
  background-clip: text;
  -webkit-background-clip: text;
}

.cinematic-copy {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: 0.035em;
}

.cinematic-cta {
  width: fit-content;
  margin-top: 28px;
}

.cinematic-next {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: clamp(42px, 7vh, 76px);
  z-index: 2;
  display: grid;
  width: 52px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color 180ms ease, transform 180ms ease;
}

.cinematic-next i {
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.cinematic-next:hover {
  border-color: var(--gold);
  transform: translateY(3px);
}

@media (min-width: 1800px) {
  .hero-cinematic::after {
    background:
      linear-gradient(90deg, rgba(6, 6, 6, 0.82) 0%, rgba(6, 6, 6, 0.34) 38%, rgba(6, 6, 6, 0.03) 76%),
      linear-gradient(0deg, #060606 0%, rgba(6, 6, 6, 0.8) 24%, transparent 52%);
  }

  .cinematic-hole-stage {
    top: 45%;
    right: -2%;
    width: min(64vw, 2300px);
  }

  .cinematic-wordmark {
    margin-top: 5vh;
    font-size: clamp(42px, 1.55vw, 62px);
  }

  .cinematic-bottom {
    bottom: clamp(100px, 7vh, 156px);
    width: min(1480px, 58vw);
  }

  .cinematic-bottom h1 {
    font-size: clamp(138px, 5.1vw, 204px);
  }

  .cinematic-copy {
    margin-top: 34px;
    font-size: 17px;
  }
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  padding: 138px clamp(24px, 7vw, 128px) 72px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #060606 0%, rgba(6, 6, 6, 0.98) 26%, rgba(6, 6, 6, 0.5) 57%, rgba(6, 6, 6, 0.04) 100%),
    linear-gradient(0deg, rgba(6, 6, 6, 0.82), transparent 28%);
}

.hero-space {
  --parallax-x: 0px;
  --parallax-y: 0px;
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-black-hole {
  position: absolute;
  top: 50%;
  right: -7%;
  width: min(78vw, 1380px);
  max-width: none;
  height: auto;
  transform: translate3d(var(--parallax-x), calc(-50% + var(--parallax-y)), 0) scale(1.06);
  filter: saturate(0.82) contrast(1.04);
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(
    ellipse 68% 50% at 68% 50%,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.94) 54%,
    rgba(0, 0, 0, 0.48) 74%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 68% 50% at 68% 50%,
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.94) 54%,
    rgba(0, 0, 0, 0.48) 74%,
    transparent 100%
  );
  will-change: transform;
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-content {
  width: min(760px, 58vw);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero-title,
.section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-title {
  max-width: 760px;
  font-size: clamp(48px, 6.2vw, 112px);
  line-height: 0.97;
}

.hero-title span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, #fff 10%, #ddcab8 55%, #9d8cac 95%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 530px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #111;
  border-color: #f0ebe3;
  background: #f0ebe3;
}

.button-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.button-arrow {
  font-size: 17px;
  transition: transform 180ms ease;
}

.button-primary:hover .button-arrow {
  transform: rotate(45deg);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.scroll-hint {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-hint i {
  position: relative;
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.scroll-hint i::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 17px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--text);
  border-bottom: 1px solid var(--text);
  transform: rotate(45deg);
}

.section {
  position: relative;
  padding: clamp(96px, 11vw, 180px) clamp(24px, 7vw, 128px);
}

.spaces {
  overflow: hidden;
  isolation: isolate;
  padding-bottom: clamp(56px, 6vw, 96px);
  background:
    radial-gradient(circle at 13% 45%, rgba(183, 146, 106, 0.08), transparent 25%),
    radial-gradient(circle at 88% 80%, rgba(118, 86, 147, 0.08), transparent 24%),
    #080809;
}

.spaces-tesseract {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(650px, 64vw, 1040px);
  overflow: hidden;
  pointer-events: none;
}

.spaces-tesseract img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: brightness(0.66) saturate(0.64) contrast(1.02);
}

.spaces-tesseract::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #080809 0%, rgba(8, 8, 9, 0.94) 31%, rgba(8, 8, 9, 0.42) 66%, rgba(8, 8, 9, 0.15) 100%),
    linear-gradient(180deg, rgba(8, 8, 9, 0.36) 0%, transparent 34%, rgba(8, 8, 9, 0.35) 68%, #080809 100%);
}

.spaces::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 7vw;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--line) 18%, var(--line) 82%, transparent);
}

.spaces > .section-heading,
.spaces > .space-grid {
  position: relative;
  z-index: 1;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 86px);
}

.section-heading h2 {
  max-width: 900px;
  font-size: clamp(42px, 5.5vw, 94px);
  line-height: 1.03;
}

.section-heading h2 span {
  color: rgba(255, 255, 255, 0.3);
}

.section-intro {
  max-width: 450px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 14px;
}

.format-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  grid-column: span 4;
  display: flex;
  min-height: 310px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 2.5vw, 38px);
  border: 1px solid var(--line);
  border-radius: 3px;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(230, 201, 167, 0.09), transparent 30%),
    rgba(255, 255, 255, 0.018);
  transition: border-color 220ms ease, transform 220ms ease, background-color 220ms ease;
}

.format-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 45%);
  transition: opacity 220ms ease;
}

.format-card:hover {
  border-color: rgba(230, 201, 167, 0.36);
  transform: translateY(-3px);
}

.format-card:hover::after {
  opacity: 1;
}

.format-card-featured {
  grid-row: span 2;
  min-height: 634px;
  background:
    linear-gradient(180deg, rgba(230, 201, 167, 0.04), transparent 45%),
    #0b0b0d;
}

.card-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-number,
.card-tag {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.card-icon {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: rgba(230, 201, 167, 0.72);
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-content {
  position: relative;
  z-index: 2;
  max-width: 330px;
}

.card-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.format-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 42px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.format-card .card-content > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.card-link {
  position: absolute;
  right: clamp(24px, 2.5vw, 38px);
  bottom: clamp(24px, 2.5vw, 38px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.55);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.format-card:hover .card-link {
  color: var(--gold);
  border-color: rgba(230, 201, 167, 0.5);
  transform: rotate(45deg);
}

.card-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(28vw, 380px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  transform: translate(-50%, -58%);
}

.card-orbit::before,
.card-orbit::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.card-orbit::after {
  inset: 36%;
  background: rgba(0, 0, 0, 0.54);
  box-shadow: 0 0 60px rgba(230, 201, 167, 0.06);
}

.card-orbit span {
  position: absolute;
  top: 49%;
  left: -4%;
  width: 108%;
  height: 9%;
  border-top: 1px solid rgba(230, 201, 167, 0.24);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.card-orbit i {
  position: absolute;
  top: 21%;
  right: 10%;
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(230, 201, 167, 0.9);
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.space-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --accent-rgb: 230, 201, 167;
  position: relative;
  grid-column: span 6;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 34%),
    #0b0b0d;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 8px 18px rgba(0, 0, 0, 0.2),
    0 26px 60px rgba(0, 0, 0, 0.3);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.space-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 40%);
  transition: opacity 220ms ease;
}

.space-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 12px 24px rgba(0, 0, 0, 0.24),
    0 34px 72px rgba(0, 0, 0, 0.38);
}

.space-card:hover::after {
  opacity: 1;
}

.space-card-karaoke {
  --accent-rgb: 190, 92, 255;
}

.space-card-large {
  --accent-rgb: 83, 191, 124;
}

.space-card-comfort {
  --accent-rgb: 176, 188, 174;
}

.space-card-standard {
  --accent-rgb: 170, 177, 193;
}

.space-card-visual {
  position: relative;
  min-height: clamp(250px, 25vw, 360px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.045), transparent 58%),
    radial-gradient(circle at 50% 112%, rgba(var(--accent-rgb), 0.13), transparent 48%),
    #08080a;
}

.space-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, #000 32%, #000);
}

.space-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.04) brightness(0.8);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.space-card-karaoke .space-card-visual::after,
.space-card-large .space-card-visual::after,
.space-card-comfort .space-card-visual::after,
.space-card-standard .space-card-visual::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 4, 8, 0.64), transparent 34%),
    linear-gradient(0deg, rgba(5, 4, 8, 0.46), transparent 38%);
  mask-image: none;
}

.space-card-karaoke:hover .space-card-photo,
.space-card-large:hover .space-card-photo,
.space-card-comfort:hover .space-card-photo,
.space-card-standard:hover .space-card-photo {
  transform: scale(1.025);
  filter: saturate(0.9) contrast(1.04) brightness(0.88);
}

.space-card-standard .space-card-photo {
  filter: saturate(0.9) contrast(1.02) brightness(1.08);
}

.space-card-standard .space-card-visual::after {
  background:
    linear-gradient(180deg, rgba(5, 4, 8, 0.42), transparent 32%),
    linear-gradient(0deg, rgba(5, 4, 8, 0.24), transparent 36%);
}

.space-card-standard:hover .space-card-photo {
  filter: saturate(0.95) contrast(1.02) brightness(1.14);
}

.visual-topline {
  position: absolute;
  top: clamp(22px, 2vw, 32px);
  right: clamp(22px, 2.5vw, 38px);
  left: clamp(22px, 2.5vw, 38px);
  z-index: 4;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.space-card-karaoke .visual-topline,
.space-card-large .visual-topline {
  color: rgba(var(--accent-rgb), 0.88);
}

.room-schematic {
  position: absolute;
  top: 30%;
  right: 14%;
  bottom: 1%;
  left: 14%;
  z-index: 2;
  border: 1px solid rgba(var(--accent-rgb), 0.19);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 20%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 22%);
  box-shadow: inset 0 0 50px rgba(var(--accent-rgb), 0.035);
  transform: perspective(520px) rotateX(57deg);
  transform-origin: center bottom;
}

.room-schematic::before,
.room-schematic::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}

.room-schematic::before {
  top: 12%;
  right: 8%;
  bottom: 12%;
  left: 8%;
}

.room-schematic::after {
  inset: 37% 38%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 26px rgba(var(--accent-rgb), 0.14);
}

.room-screen,
.room-seat {
  position: absolute;
  z-index: 2;
  display: block;
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  background: rgba(var(--accent-rgb), 0.045);
}

.room-screen {
  top: 7%;
  left: 35%;
  width: 30%;
  height: 8%;
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.12);
}

.room-seat {
  bottom: 12%;
  width: 24%;
  height: 15%;
  border-radius: 3px 3px 12px 12px;
}

.room-seat-left {
  left: 9%;
}

.room-seat-center {
  left: 38%;
}

.room-seat-right {
  right: 9%;
}

.room-focus {
  position: absolute;
  top: 46%;
  left: 50%;
  z-index: 3;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(var(--accent-rgb));
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.9);
  transform: translate(-50%, -50%);
}

.visual-signal {
  position: absolute;
  right: 7%;
  bottom: 14%;
  z-index: 3;
  display: flex;
  align-items: end;
  gap: 3px;
  height: 28px;
}

.visual-signal i {
  display: block;
  width: 2px;
  background: rgba(var(--accent-rgb), 0.55);
}

.visual-signal i:nth-child(1),
.visual-signal i:nth-child(7) { height: 7px; }
.visual-signal i:nth-child(2),
.visual-signal i:nth-child(6) { height: 15px; }
.visual-signal i:nth-child(3),
.visual-signal i:nth-child(5) { height: 23px; }
.visual-signal i:nth-child(4) { height: 28px; }

.space-card-body {
  position: relative;
  z-index: 2;
  padding: clamp(26px, 3vw, 44px);
}

.space-card-title {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
}

.space-card-title p {
  margin: 0 0 12px;
  color: rgb(var(--accent-rgb));
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.space-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.space-card-arrow {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.54);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.space-card:hover .space-card-arrow {
  color: rgb(var(--accent-rgb));
  border-color: rgba(var(--accent-rgb), 0.48);
  transform: rotate(45deg);
}

.space-card-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.space-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.space-specs li {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top-color: rgba(255, 255, 255, 0.22);
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.76);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.014)),
    rgba(11, 11, 13, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.075),
    inset 0 -1px 0 rgba(0, 0, 0, 0.42),
    0 2px 4px rgba(0, 0, 0, 0.38),
    0 10px 22px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
  font-size: 10px;
}

.comfort-partitions {
  position: absolute;
  inset: 26% 13% 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 10px;
  perspective: 500px;
}

.comfort-partitions span {
  display: block;
  height: 74%;
  border: 1px solid rgba(var(--accent-rgb), 0.22);
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.035), transparent);
  transform: rotateX(-8deg);
}

.comfort-partitions span:nth-child(2),
.comfort-partitions span:nth-child(3) {
  height: 92%;
}

.comfort-orbit {
  position: absolute;
  top: 55%;
  left: 50%;
  z-index: 3;
  width: 46%;
  height: 20%;
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  border-radius: 50%;
  box-shadow: 0 0 38px rgba(var(--accent-rgb), 0.08);
  transform: translate(-50%, -50%) rotate(-8deg);
}

.comfort-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(var(--accent-rgb));
  box-shadow: 0 0 20px rgba(var(--accent-rgb), 0.8);
  transform: translate(-50%, -50%);
}

.standard-screen {
  position: absolute;
  top: 31%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 44%;
  height: 39%;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.32);
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.09), rgba(0, 0, 0, 0.44));
  box-shadow: 0 0 48px rgba(var(--accent-rgb), 0.06);
  transform: translateX(-50%);
}

.standard-screen span {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.8);
}

.standard-screen i {
  position: absolute;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.24em;
}

.standard-wave {
  position: absolute;
  bottom: 11%;
  left: 50%;
  z-index: 2;
  width: 72%;
  height: 16%;
  border-top: 1px solid rgba(var(--accent-rgb), 0.22);
  border-radius: 50%;
  transform: translateX(-50%);
}

.space-card:nth-child(2) { transition-delay: 60ms; }
.space-card:nth-child(3) { transition-delay: 120ms; }
.space-card:nth-child(4) { transition-delay: 180ms; }

.atmosphere {
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(64px, 7vw, 112px);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 25%, rgba(124, 93, 153, 0.12), transparent 28%),
    radial-gradient(circle at 15% 88%, rgba(190, 145, 99, 0.08), transparent 24%),
    #060607;
}

.atmosphere-world {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(560px, 58vw, 940px);
  overflow: hidden;
  pointer-events: none;
}

.atmosphere-world img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 61%;
  opacity: 0.5;
  filter: brightness(0.58) saturate(0.66) contrast(1.04);
}

.atmosphere-world::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #060607 0%, rgba(6, 6, 7, 0.9) 34%, rgba(6, 6, 7, 0.35) 72%, rgba(6, 6, 7, 0.12) 100%),
    linear-gradient(180deg, rgba(6, 6, 7, 0.3) 0%, transparent 30%, rgba(6, 6, 7, 0.28) 60%, #060607 100%);
}

.atmosphere > .section-heading,
.atmosphere > .story-reel {
  position: relative;
  z-index: 1;
}

.story-reel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 30px);
  align-items: start;
  max-width: 1280px;
  margin: 0 auto;
}

.story-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 9 / 14;
  border: 1px solid var(--line);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: #0a0a0c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 8px 18px rgba(0, 0, 0, 0.2),
    0 26px 60px rgba(0, 0, 0, 0.3);
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.story-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 12px 24px rgba(0, 0, 0, 0.24),
    0 34px 72px rgba(0, 0, 0, 0.38);
}

.story-card-play {
  margin-top: clamp(28px, 5vw, 72px);
}

.story-card-private {
  margin-top: clamp(56px, 9vw, 132px);
}

.story-card img,
.story-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05) brightness(0.72);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.story-card-play img,
.story-card-play video {
  object-position: center 34%;
}

.story-card-private img,
.story-card-private video {
  object-position: 62% center;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 6, 0.2), transparent 35%),
    linear-gradient(0deg, rgba(4, 4, 6, 0.94), transparent 52%);
}

.story-card:hover img,
.story-card:hover video {
  transform: scale(1.035);
  filter: saturate(0.88) contrast(1.04) brightness(0.82);
}

.story-card figcaption {
  position: absolute;
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(24px, 3.5vw, 52px);
  left: clamp(22px, 3vw, 42px);
  z-index: 2;
  display: grid;
  gap: 10px;
}

.story-card figcaption span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.story-card figcaption strong {
  font-family: var(--font-display);
  font-size: clamp(23px, 2.4vw, 38px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.story-card figcaption small {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  line-height: 1.55;
}

.gallery-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 12%, rgba(127, 97, 145, 0.08), transparent 34%),
    #080809;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.95%, rgba(255, 255, 255, 0.025) 50%, transparent 50.05%),
    linear-gradient(180deg, transparent 0 49.95%, rgba(255, 255, 255, 0.018) 50%, transparent 50.05%);
  background-size: 240px 240px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 78%);
}

.gallery-section > * {
  position: relative;
  z-index: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(230px, 23vw, 350px);
  gap: clamp(12px, 1.5vw, 20px);
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-item {
  grid-column: span 5;
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background: #0a0a0c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 24px 64px rgba(0, 0, 0, 0.28);
}

.gallery-item-featured {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-item:nth-child(n + 4) {
  grid-column: span 4;
}

.gallery-item:nth-child(10),
.gallery-item:nth-child(11) {
  grid-column: span 6;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.04) brightness(0.78);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms ease;
}

.gallery-item-featured img {
  object-position: center center;
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(0.9) contrast(1.03) brightness(0.86);
}

.occasions {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  background: #0a0a0b;
}

.occasions-observer {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: min(62vw, 820px);
  overflow: hidden;
  pointer-events: none;
}

.occasions-observer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  opacity: 0.68;
  filter: saturate(0.78) contrast(1.06) brightness(0.82);
  transform: scale(1.015);
}

.occasions-observer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 11, 0.98) 0%, rgba(10, 10, 11, 0.88) 28%, rgba(10, 10, 11, 0.34) 64%, rgba(10, 10, 11, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 10, 11, 0.3) 0%, rgba(10, 10, 11, 0.08) 42%, rgba(10, 10, 11, 0.72) 78%, #0a0a0b 100%);
}

.occasions > .section-heading,
.occasions > .occasion-grid {
  position: relative;
  z-index: 1;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 22px);
}

.occasion-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(20px, 3vw, 46px);
  min-height: 330px;
  padding: clamp(28px, 4vw, 58px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(11, 11, 13, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 8px 18px rgba(0, 0, 0, 0.2),
    0 26px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(4px);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 220ms ease;
}

.occasion-card::after {
  content: "";
  position: absolute;
  right: -62px;
  bottom: -62px;
  width: 180px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.018), 0 0 0 58px rgba(255, 255, 255, 0.012);
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.occasion-card:hover {
  background: rgba(255, 255, 255, 0.027);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 12px 24px rgba(0, 0, 0, 0.24),
    0 34px 72px rgba(0, 0, 0, 0.38);
}

.occasion-card:hover::after {
  transform: translate(-14px, -14px) scale(1.04);
}

.occasion-card > span {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 10px;
}

.occasion-card > div {
  position: relative;
  z-index: 2;
}

.occasion-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.occasion-card h3 {
  max-width: 430px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(27px, 3.2vw, 50px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.occasion-card small {
  display: block;
  max-width: 420px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.occasion-card > a {
  position: absolute;
  bottom: clamp(26px, 3vw, 44px);
  left: clamp(66px, 8vw, 120px);
  z-index: 3;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.occasion-card > a i {
  color: var(--gold);
  font-size: 14px;
  font-style: normal;
  transition: transform 180ms ease;
}

.occasion-card > a:hover i {
  transform: translate(3px, -3px);
}

.reviews-section {
  overflow: hidden;
  isolation: isolate;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 18% 24%, rgba(169, 150, 200, 0.13), transparent 26%),
    radial-gradient(circle at 88% 74%, rgba(230, 201, 167, 0.09), transparent 30%),
    #070708;
}

.reviews-attraction {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.reviews-attraction img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  filter: brightness(0.72) saturate(0.68) contrast(1.04);
}

.reviews-attraction::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.96) 0%, rgba(7, 7, 8, 0.82) 34%, rgba(7, 7, 8, 0.3) 73%, rgba(7, 7, 8, 0.16) 100%),
    linear-gradient(180deg, rgba(7, 7, 8, 0.42) 0%, transparent 28%, rgba(7, 7, 8, 0.34) 70%, #070708 100%);
}

.reviews-constellation {
  position: absolute;
  top: 50%;
  left: 35%;
  z-index: 0;
  width: min(56vw, 830px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  opacity: 0.34;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 6vw rgba(255, 255, 255, 0.009),
    0 0 0 13vw rgba(255, 255, 255, 0.006);
}

.reviews-constellation::before,
.reviews-constellation::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(230, 201, 167, 0.08);
  border-radius: 50%;
}

.reviews-constellation::before {
  inset: 20%;
}

.reviews-constellation::after {
  inset: 42%;
}

.reviews-constellation span {
  position: absolute;
  width: 5px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(230, 201, 167, 0.72);
}

.reviews-constellation span:nth-child(1) {
  top: 8%;
  left: 58%;
}

.reviews-constellation span:nth-child(2) {
  right: 11%;
  bottom: 27%;
  background: var(--violet);
}

.reviews-constellation span:nth-child(3) {
  bottom: 9%;
  left: 28%;
  width: 3px;
}

.reviews-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(54px, 8vw, 132px);
  align-items: center;
}

.reviews-lead h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 4.6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.reviews-lead h2 span {
  color: rgba(255, 255, 255, 0.3);
}

.reviews-intro {
  max-width: 570px;
  margin: 36px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.review-platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 40px;
}

.review-platform {
  display: flex;
  min-height: 176px;
  overflow: hidden;
  flex-direction: column;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 7px 16px rgba(0, 0, 0, 0.18),
    0 22px 48px rgba(0, 0, 0, 0.27);
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 220ms ease;
}

.review-platform:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 30px 62px rgba(0, 0, 0, 0.34);
}

.review-platform-source {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  align-items: center;
}

.review-platform-source i {
  display: grid;
  width: 28px;
  aspect-ratio: 1;
  place-items: center;
  color: #151515;
  border-radius: 50%;
  background: #ffcc00;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.review-platform-2gis .review-platform-source i {
  color: #fff;
  background: #27ae60;
}

.review-platform-source b {
  font-size: 10px;
  font-weight: 600;
}

.review-platform-source em {
  color: var(--gold);
  font-size: 13px;
  font-style: normal;
  transition: transform 180ms ease;
}

.review-platform:hover .review-platform-source em {
  transform: translate(3px, -3px);
}

.review-platform-score {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  margin-top: auto;
  padding-top: 22px;
}

.review-platform-score strong {
  font-family: var(--font-display);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.review-platform-score small {
  padding-bottom: 2px;
  color: #ffcc00;
  font-size: 8px;
  letter-spacing: 0.08em;
}

.review-platform-2gis .review-platform-score small {
  color: #45c97a;
}

.review-platform-count {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.reviews-badge {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.reviews-badge > span {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  color: #161616;
  border-radius: 50%;
  background: #ffcc00;
  font-size: 17px;
  font-weight: 700;
}

.reviews-badge > div {
  display: grid;
  gap: 2px;
}

.reviews-badge b {
  font-size: 11px;
  font-weight: 600;
}

.reviews-badge small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.guest-proof {
  position: relative;
  width: min(100%, 760px);
  margin: 0;
  overflow: hidden;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-color: rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.022);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 34px 90px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
}

.guest-proof-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.guest-proof-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.guest-proof:hover .guest-proof-visual img {
  transform: scale(1.025);
}

.guest-proof-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.04) 40%, rgba(5, 5, 6, 0.78) 100%);
}

.guest-proof-visual > span {
  position: absolute;
  right: 26px;
  bottom: 22px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guest-proof figcaption {
  padding: clamp(28px, 3.4vw, 46px);
  border-top: 1px solid var(--line);
}

.guest-proof-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.guest-proof-meta span:last-child {
  color: #ffcc00;
  letter-spacing: 0.08em;
}

.guest-proof blockquote {
  max-width: 620px;
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: clamp(23px, 2.35vw, 36px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.18;
}

.guest-proof-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.guest-proof-author b {
  font-size: 13px;
  font-weight: 600;
}

.guest-proof-author span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guest-proof-author i {
  display: inline-block;
  margin-left: 9px;
  color: var(--gold);
  font-style: normal;
  transition: transform 180ms ease;
}

.guest-proof-author:hover i {
  transform: translate(3px, -3px);
}

.menu-section {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 42%, rgba(167, 122, 82, 0.11), transparent 24%),
    radial-gradient(circle at 84% 70%, rgba(113, 89, 143, 0.08), transparent 22%),
    #070708;
}

.menu-cluster {
  overflow: hidden;
  border: 1px solid var(--line);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 34px 90px rgba(0, 0, 0, 0.38);
}

.menu-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
}

.menu-lead {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.menu-lead-photo,
.menu-lead-shade {
  position: absolute;
  inset: 0;
}

.menu-lead-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.8) contrast(1.06) brightness(0.74);
  transform: scale(1.015);
}

.menu-lead-shade {
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.12), rgba(6, 6, 7, 0.38) 40%, rgba(6, 6, 7, 0.95) 100%),
    linear-gradient(90deg, rgba(6, 6, 7, 0.8), rgba(6, 6, 7, 0.12));
}

.menu-lead-copy {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: clamp(36px, 6vw, 86px);
}

.menu-lead h2,
.booking-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 90px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.menu-lead h2 span,
.booking-content h2 span {
  color: rgba(255, 255, 255, 0.3);
}

.menu-lead-copy > p:last-child {
  max-width: 470px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.menu-panel {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: rgba(7, 7, 8, 0.88);
}

.menu-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.menu-groups > div {
  position: relative;
  display: flex;
  min-height: 270px;
  overflow: hidden;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 4vw, 58px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.008);
  transition: background 300ms ease;
}

.menu-groups > div::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 6, 7, 0.12), rgba(6, 6, 7, 0.42) 44%, rgba(6, 6, 7, 0.97) 78%),
    linear-gradient(90deg, rgba(6, 6, 7, 0.28), transparent 70%);
}

.menu-group-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  filter: saturate(0.82) contrast(1.06) brightness(0.82);
  transform: scale(1.015);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), opacity 300ms ease;
}

.menu-groups > div:nth-child(1) .menu-group-photo {
  object-position: center 44%;
}

.menu-groups > div:nth-child(2) .menu-group-photo {
  object-position: center 58%;
}

.menu-groups > div:nth-child(3) .menu-group-photo {
  object-position: center 52%;
}

.menu-groups > div:nth-child(4) .menu-group-photo {
  object-position: center 40%;
}

.menu-groups > div > :not(.menu-group-photo) {
  position: relative;
  z-index: 2;
}

.menu-groups > div:nth-child(2n) {
  border-right: 0;
}

.menu-groups > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.menu-groups > div:hover {
  background: rgba(255, 255, 255, 0.025);
}

.menu-groups > div:hover .menu-group-photo {
  opacity: 0.82;
  transform: scale(1.045);
}

.menu-groups span {
  margin-bottom: auto;
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.menu-groups h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.menu-groups p {
  max-width: 330px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.menu-groups strong {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
}

.menu-groups strong b {
  color: var(--gold);
  font-size: 22px;
  font-weight: 400;
}

.menu-action {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
  margin-top: auto;
  padding: 20px clamp(30px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008));
}

.menu-action > div {
  display: grid;
  gap: 5px;
}

.menu-action small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-action > div span {
  font-family: var(--font-display);
  font-size: 22px;
}

.menu-action .button {
  min-width: 210px;
  min-height: 56px;
  padding: 0 22px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.025);
}

.menu-action > .menu-action-links {
  display: flex;
  grid-auto-flow: unset;
  grid-template-columns: none;
  gap: 10px;
}

.menu-action-links .button {
  min-width: 180px;
}

.menu-action .button[aria-disabled="true"] {
  cursor: default;
}

.menu-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  padding: clamp(14px, 2vw, 26px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.008);
}

.menu-feature-card {
  position: relative;
  min-height: clamp(500px, 50vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top-color: rgba(255, 255, 255, 0.22);
  border-radius: 30px;
  background: #0a0a0c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 34px 90px rgba(0, 0, 0, 0.4);
}

.menu-feature-card > img,
.menu-feature-shade {
  position: absolute;
  inset: 0;
}

.menu-feature-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.78);
  transform: scale(1.015);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.menu-feature-hookah > img {
  object-position: center 47%;
}

.menu-feature-cocktail > img {
  object-position: center 54%;
}

.menu-feature-breakfast > img {
  object-position: center center;
}

.menu-feature-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.12), transparent 34%, rgba(5, 5, 6, 0.95) 100%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.36), transparent 72%);
}

.menu-feature-card:hover > img {
  filter: saturate(0.9) contrast(1.04) brightness(0.84);
  transform: scale(1.045);
}

.menu-feature-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(30px, 4vw, 58px);
}

.menu-feature-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.menu-feature-meta span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.menu-feature-meta i {
  display: grid;
  width: 36px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(8, 8, 10, 0.4);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.menu-feature-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 66px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.menu-feature-cocktail .menu-feature-content h3 {
  font-size: clamp(32px, 3.7vw, 58px);
}

.menu-feature-content p {
  max-width: 480px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}

.menu-feature-content strong {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
}

.menu-feature-content strong b {
  color: var(--text);
  font-size: 30px;
  font-weight: 400;
}

.menu-feature-content strong small {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Unified kitchen and bar composition: one visual language for all six cards. */
.menu-cluster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 24px);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.menu-shell,
.menu-panel,
.menu-groups,
.menu-feature-grid {
  display: contents;
}

.menu-lead {
  grid-column: 1 / -1;
  min-height: clamp(470px, 48vw, 650px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
}

.menu-groups > div,
.menu-feature-card {
  min-height: clamp(470px, 43vw, 620px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top-color: rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 10px 24px rgba(0, 0, 0, 0.24),
    0 30px 72px rgba(0, 0, 0, 0.34);
}

.menu-groups > div {
  padding: clamp(26px, 3vw, 42px);
}

.menu-groups > div::after {
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.1), transparent 30%, rgba(5, 5, 6, 0.96) 100%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.34), transparent 72%);
}

.menu-groups span {
  margin: 0 0 18px;
  color: var(--gold);
}

.menu-groups h3 {
  font-size: clamp(29px, 3vw, 48px);
  line-height: 1.04;
}

.menu-groups p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
}

.menu-groups strong {
  margin-top: 24px;
  font-size: 13px;
}

.menu-groups strong b {
  color: var(--text);
  font-size: 28px;
}

.menu-group-photo {
  opacity: 0.82;
}

.menu-action {
  grid-column: 1 / -1;
  order: 10;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(60px, 8vw, 132px);
  align-items: center;
  min-height: 780px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #050506;
}

.booking-destination {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.booking-destination img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.58;
  filter: brightness(0.7) saturate(0.66) contrast(1.02);
}

.booking-destination::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #050506 0%, rgba(5, 5, 6, 0.94) 31%, rgba(5, 5, 6, 0.48) 62%, rgba(5, 5, 6, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.54) 0%, transparent 28%, rgba(5, 5, 6, 0.28) 70%, #050506 100%);
}

.booking-orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -18vw;
  width: min(72vw, 1080px);
  aspect-ratio: 1;
  opacity: 0.46;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 7vw rgba(255, 255, 255, 0.012),
    0 0 0 15vw rgba(255, 255, 255, 0.008),
    inset 0 0 140px rgba(154, 122, 174, 0.04);
}

.booking-orbit::before,
.booking-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(229, 201, 167, 0.13);
  border-radius: 50%;
}

.booking-orbit::before {
  inset: 18%;
}

.booking-orbit::after {
  inset: 41%;
  background: rgba(255, 255, 255, 0.018);
  box-shadow: 0 0 70px rgba(229, 201, 167, 0.08);
}

.booking-orbit span {
  position: absolute;
  top: 18%;
  left: 18%;
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 28px rgba(229, 201, 167, 0.8);
}

.booking-content,
.booking-methods {
  position: relative;
  z-index: 2;
}

.booking-content {
  width: min(100%, 820px);
}

.booking-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 38px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.booking-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-top: 42px;
}

.booking-actions .button {
  min-height: 66px;
  padding: 0 26px;
}

.booking-call {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.025);
}

.booking-call:hover {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.055);
}

.booking-actions a[aria-disabled="true"] {
  cursor: default;
}

.booking-actions a[aria-disabled="true"]:hover {
  transform: none;
}

.booking-note {
  margin-top: 18px !important;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px !important;
  line-height: 1.6 !important;
}

.booking-route {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 690px;
  min-height: 84px;
  margin-top: 28px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    0 7px 16px rgba(0, 0, 0, 0.18),
    0 22px 48px rgba(0, 0, 0, 0.27);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 220ms ease;
}

.booking-route:hover {
  border-color: rgba(230, 201, 167, 0.36);
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 10px 22px rgba(0, 0, 0, 0.22),
    0 30px 62px rgba(0, 0, 0, 0.34);
}

.booking-route-mark {
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(230, 201, 167, 0.3);
  border-radius: 50%;
}

.booking-route-mark svg {
  width: 19px;
  height: 19px;
  overflow: visible;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-route-address {
  display: grid;
  gap: 5px;
}

.booking-route-address small {
  color: rgba(255, 255, 255, 0.36);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-route-address b {
  font-size: 12px;
  font-weight: 600;
}

.booking-route-action {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-route-action i {
  color: var(--gold);
  font-size: 14px;
  font-style: normal;
  transition: transform 180ms ease;
}

.booking-route:hover .booking-route-action i {
  transform: translate(3px, -3px);
}

.booking-methods {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top-color: rgba(255, 255, 255, 0.21);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0%, rgba(169, 150, 200, 0.11), transparent 28%),
    rgba(255, 255, 255, 0.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 10px 24px rgba(0, 0, 0, 0.22),
    0 34px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
}

.booking-methods-head {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(30px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
}

.booking-methods-head span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-methods-head h3 {
  margin: 42px 0 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 54px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.booking-method {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 24px;
  min-height: 154px;
  align-items: start;
  padding: 34px clamp(30px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
}

.booking-method:last-child {
  border-bottom: 0;
}

.booking-method > span {
  padding-top: 4px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 9px;
}

.booking-method b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.7vw, 25px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.booking-method p {
  max-width: 390px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  min-height: 150px;
  padding: 32px clamp(24px, 7vw, 128px);
  border-top: 1px solid var(--line);
  background: #050506;
}

.site-footer > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  gap: 26px;
}

.site-footer nav a,
.site-footer .footer-instagram,
.site-footer > a:last-child {
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  transition: color 180ms ease;
}

.site-footer nav a:hover,
.site-footer .footer-instagram:hover,
.site-footer > a:last-child:hover {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.format-card:nth-child(2) {
  transition-delay: 60ms;
}

.format-card:nth-child(3) {
  transition-delay: 120ms;
}

.format-card:nth-child(4) {
  transition-delay: 180ms;
}

.format-card:nth-child(5) {
  transition-delay: 240ms;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(340px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 8, 10, 0.96);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(22px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 13px;
    font-size: 14px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
  }

  .site-nav a::after {
    display: none;
  }

  .nav-toggle {
    position: relative;
    display: grid;
  }

  .cinematic-hole-stage {
    right: -16%;
    width: 108vw;
  }

  .hero-content {
    width: min(720px, 68vw);
  }

  .hero-black-hole {
    right: -10%;
    width: 96vw;
    opacity: 0.86;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .format-card {
    grid-column: span 6;
  }

  .format-card-featured {
    grid-column: span 6;
  }

  .story-card-private {
    margin-top: 72px;
  }

  .menu-shell {
    grid-template-columns: 1fr;
  }

  .menu-cluster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .reviews-lead {
    max-width: 720px;
  }

  .guest-proof {
    width: min(100%, 760px);
    justify-self: start;
  }

  .menu-lead {
    min-height: 520px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid var(--line);
  }

  .booking {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .booking-methods {
    width: min(100%, 720px);
  }

  .booking-orbit {
    right: -42vw;
    width: 100vw;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .brand-name {
    font-size: 10px;
  }

  .brand-mark {
    width: 27px;
  }

  .brand-mark::after {
    width: 34px;
  }

  .header-cta {
    display: none;
  }

  .header-instagram {
    width: 38px;
    aspect-ratio: 1;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 0;
    background: rgba(10, 10, 12, 0.72);
  }

  .header-instagram::before {
    content: "IG";
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .header-instagram i {
    display: none;
  }

  .site-nav-booking {
    display: flex;
    margin-top: 6px;
    color: #090909 !important;
    background: var(--gold);
    font-weight: 700;
  }

  .hero-cinematic {
    min-height: 820px;
    padding: 112px 20px 52px;
  }

  .hero-cinematic::after {
    background:
      linear-gradient(90deg, rgba(6, 6, 6, 0.48), rgba(6, 6, 6, 0.05)),
      linear-gradient(0deg, #060606 10%, rgba(6, 6, 6, 0.86) 38%, rgba(6, 6, 6, 0.08) 72%);
  }

  .cinematic-hole-stage {
    top: 35%;
    right: -38%;
    width: 176vw;
  }

  .cinematic-black-hole-video {
    opacity: 0.96;
  }

  .cinematic-wordmark {
    margin-top: 3vh;
    font-size: 16px;
  }

  .cinematic-bottom {
    bottom: 72px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .cinematic-bottom h1 {
    font-size: clamp(44px, 13.3vw, 56px);
    line-height: 0.96;
  }

  .cinematic-copy {
    max-width: 310px;
    margin-top: 20px;
    font-size: 11px;
    line-height: 1.6;
  }

  .cinematic-cta {
    min-height: 50px;
    margin-top: 20px;
    padding-inline: 22px;
  }

  .cinematic-next {
    right: 20px;
    bottom: 22px;
    width: 44px;
  }

  .hero {
    align-items: flex-end;
    min-height: 820px;
    padding: 130px 20px 68px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, #060606 18%, rgba(6, 6, 6, 0.82) 52%, rgba(6, 6, 6, 0.08) 100%),
      linear-gradient(90deg, rgba(6, 6, 6, 0.56), rgba(6, 6, 6, 0.08));
  }

  .hero-space {
    height: 72%;
  }

  .hero-black-hole {
    top: 33%;
    right: -61%;
    width: 168vw;
    opacity: 0.95;
  }

  .hero-content {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero-title {
    font-size: clamp(43px, 13vw, 62px);
    line-height: 1.03;
  }

  .hero-copy {
    margin-top: 24px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .button {
    width: 100%;
  }

  .button-ghost {
    display: none;
  }

  .scroll-hint {
    display: none;
  }

  .section {
    padding: 92px 20px;
  }

  .spaces::before {
    left: 20px;
  }

  .spaces-tesseract {
    height: 720px;
  }

  .spaces-tesseract img {
    object-position: 72% center;
    opacity: 0.34;
  }

  .spaces-tesseract::after {
    background:
      linear-gradient(90deg, rgba(8, 8, 9, 0.92) 0%, rgba(8, 8, 9, 0.58) 62%, rgba(8, 8, 9, 0.2) 100%),
      linear-gradient(180deg, rgba(8, 8, 9, 0.45) 0%, transparent 28%, #080809 100%);
  }

  .section-heading h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .section-intro {
    font-size: 14px;
  }

  .space-grid {
    grid-template-columns: 1fr;
  }

  .space-card {
    grid-column: auto;
  }

  .space-card-visual {
    min-height: 270px;
  }

  .space-card-body {
    padding: 26px 22px 30px;
  }

  .space-card-title {
    align-items: center;
  }

  .space-card h3 {
    font-size: 30px;
  }

  .space-card-copy {
    margin-top: 18px;
  }

  .space-specs {
    margin-top: 22px;
  }

  .story-reel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-right: 0;
    overflow: visible;
  }

  .atmosphere-world {
    height: 680px;
  }

  .atmosphere-world img {
    object-position: 69% center;
    opacity: 0.42;
  }

  .atmosphere-world::after {
    background:
      linear-gradient(90deg, rgba(6, 6, 7, 0.92) 0%, rgba(6, 6, 7, 0.58) 58%, rgba(6, 6, 7, 0.18) 100%),
      linear-gradient(180deg, rgba(6, 6, 7, 0.38) 0%, transparent 30%, #060607 100%);
  }

  .story-card,
  .story-card-play,
  .story-card-private {
    width: 100%;
    margin-top: 0;
  }

  .story-card figcaption strong {
    font-size: 29px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 10px;
  }

  .gallery-item,
  .gallery-item:nth-child(n + 4),
  .gallery-item:nth-child(10),
  .gallery-item:nth-child(11) {
      grid-column: auto;
      grid-row: auto;
      aspect-ratio: 4 / 5;
      border-radius: 18px;
    }
  
  .gallery-item-featured {
      grid-column: 1 / -1;
      aspect-ratio: 4 / 5;
    }

  .occasion-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .occasions-observer {
    height: 610px;
  }

  .occasions-observer img {
    object-position: 67% center;
    opacity: 0.52;
  }

  .occasions-observer::after {
    background:
      linear-gradient(90deg, rgba(10, 10, 11, 0.94) 0%, rgba(10, 10, 11, 0.66) 58%, rgba(10, 10, 11, 0.2) 100%),
      linear-gradient(180deg, rgba(10, 10, 11, 0.34) 0%, rgba(10, 10, 11, 0.12) 38%, rgba(10, 10, 11, 0.86) 78%, #0a0a0b 100%);
  }

  .occasion-card {
    min-height: 320px;
    padding: 28px 24px;
    border-radius: 22px;
  }

  .occasion-card h3 {
    font-size: 32px;
  }

  .occasion-card > a {
    bottom: 28px;
    left: 66px;
  }

  .reviews-layout {
    gap: 54px;
  }

  .reviews-attraction img {
    object-position: 68% center;
    opacity: 0.34;
  }

  .reviews-attraction::after {
    background:
      linear-gradient(90deg, rgba(7, 7, 8, 0.93) 0%, rgba(7, 7, 8, 0.55) 68%, rgba(7, 7, 8, 0.22) 100%),
      linear-gradient(180deg, rgba(7, 7, 8, 0.45) 0%, transparent 28%, #070708 100%);
  }

  .reviews-lead h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .reviews-intro {
    margin-top: 26px;
  }

  .review-platforms {
    margin-top: 30px;
  }

  .guest-proof {
    border-radius: 22px;
  }

  .guest-proof figcaption {
    padding: 26px 22px 28px;
  }

  .guest-proof blockquote {
    font-size: 24px;
  }

  .guest-proof-visual > span {
    right: 18px;
    bottom: 16px;
  }

  .guest-proof-author {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .review-platforms {
    grid-template-columns: 1fr;
  }

  .review-platform {
    min-height: 154px;
  }

  .menu-lead-copy {
    min-height: 500px;
    padding: 42px 24px;
  }

  .menu-lead h2,
  .booking-content h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .menu-groups {
    grid-template-columns: 1fr;
  }

  .menu-groups > div,
  .menu-groups > div:nth-child(2n),
  .menu-groups > div:nth-last-child(-n + 2) {
    min-height: 570px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-top-color: rgba(255, 255, 255, 0.22);
    border-radius: 24px;
  }

  .menu-groups > div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .menu-cluster {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }

  .menu-action {
    align-items: stretch;
    flex-direction: column;
    padding: 26px 24px;
  }

  .menu-action .button {
    width: 100%;
    min-width: 0;
  }

  .menu-action > .menu-action-links {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .menu-feature-grid {
    grid-template-columns: 1fr;
  }

  .menu-feature-card {
    min-height: 570px;
    border-radius: 24px;
  }

  .menu-feature-content {
    padding: 28px 24px;
  }

  .booking {
    gap: 70px;
    min-height: 1080px;
  }

  .booking-destination img {
    object-position: 73% center;
    opacity: 0.48;
  }

  .booking-destination::after {
    background:
      linear-gradient(90deg, rgba(5, 5, 6, 0.92) 0%, rgba(5, 5, 6, 0.58) 64%, rgba(5, 5, 6, 0.22) 100%),
      linear-gradient(180deg, rgba(5, 5, 6, 0.5) 0%, transparent 25%, #050506 100%);
  }

  .booking-orbit {
    top: 34%;
    right: -76vw;
    width: 150vw;
  }

  .booking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-methods {
    border-radius: 22px;
  }

  .booking-methods-head {
    min-height: 180px;
    padding: 30px 22px;
  }

  .booking-methods-head h3 {
    font-size: 38px;
  }

  .booking-method {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
    min-height: 148px;
    padding: 30px 22px;
  }

  .booking-method b {
    font-size: 19px;
  }

  .booking-route {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 14px 16px;
  }

  .booking-route-action {
    grid-column: 1 / -1;
    justify-content: space-between;
    padding: 12px 4px 2px;
    border-top: 1px solid var(--line);
  }

  .site-footer {
    grid-template-columns: 1fr auto auto;
    gap: 28px 18px;
  }

  .site-footer > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer nav {
    display: none;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

  .format-card,
  .format-card-featured {
    grid-column: auto;
    grid-row: auto;
    min-height: 340px;
  }

  .format-card-featured {
    min-height: 450px;
  }

  .card-orbit {
    width: 300px;
  }

  .format-card h3 {
    font-size: 31px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}
