:root {
  --black: #050505;
  --black-soft: #0d0e0e;
  --white: #f6f1e8;
  --muted: rgba(246, 241, 232, 0.68);
  --muted-soft: rgba(246, 241, 232, 0.48);
  --gold: #d5a84e;
  --gold-light: #f0ca76;
  --gold-soft: rgba(213, 168, 78, 0.35);
  --glass: rgba(5, 6, 6, 0.52);
  --rail: 204px;
  --content-gutter: 38px;
  --content-left: calc(var(--rail) + var(--content-gutter));
  --header-top: 48px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family:
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.video-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mix-blend-mode: overlay;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.page-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.glass {
  border: 1px solid var(--gold-soft);
  background:
    linear-gradient(135deg, rgba(20, 21, 20, 0.7), rgba(5, 5, 5, 0.44)),
    rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
  box-shadow: 0 28px 92px rgba(0, 0, 0, 0.42);
}

.brand-rail {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 120;
  width: var(--rail);
  padding: 36px 22px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.64) 68%, transparent),
    linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 42%);
}

.brand-lockup {
  display: grid;
  gap: 2px;
  width: 192px;
  margin: 0 auto;
}

.brand-logo-crop {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.7;
  overflow: hidden;
}

.brand-logo-crop img {
  width: 100%;
  height: auto;
  filter: invert(1) contrast(1.08) brightness(1.12);
  mix-blend-mode: screen;
}

.brand-subtitle {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7px;
  letter-spacing: 0.34em;
  line-height: 1.25;
  text-align: center;
  text-transform: none;
}

.site-header {
  position: fixed;
  top: var(--header-top);
  left: var(--content-left);
  right: 46px;
  z-index: 130;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.mobile-brand {
  display: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  min-width: 0;
}

.main-nav a {
  position: relative;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.02vw, 19px);
  line-height: 1;
  transition: color 220ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -15px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transform-origin: left;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--gold-light);
}

.main-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.booking-pill {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 0 26px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.booking-pill i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.booking-pill:hover {
  background: var(--gold);
  color: #19120a;
  transform: translateY(-2px);
}

.screen {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding-left: var(--rail);
}

.screen-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 108%;
  object-fit: cover;
  transform: translate3d(0, var(--bg-shift, 0), 0) scale(1.01);
  transition: transform 900ms ease;
}

.screen-shade {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.1), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.42) 37%, rgba(0, 0, 0, 0.17) 65%, rgba(0, 0, 0, 0.54)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.23), rgba(0, 0, 0, 0.45));
}

.theme-dark::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.8;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.09), rgba(0, 0, 0, 0.54));
  content: "";
}

.hero-copy,
.premium-copy,
.service-head,
.split-copy,
.booking-card,
.advantage-bar,
.service-shell,
.place-note {
  position: relative;
  z-index: 4;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: min(940px, calc(100vw - var(--rail) - 100px));
  min-height: 100svh;
  padding: 150px 0 128px var(--content-gutter);
}

.kicker {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: clamp(12px, 1.1vw, 19px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  font-size: clamp(62px, 7.2vw, 118px);
  line-height: 1.02;
}

h2 {
  max-width: 760px;
  font-size: clamp(52px, 5.8vw, 96px);
  line-height: 1.02;
}

h3 {
  font-size: 35px;
  line-height: 1.04;
}

p {
  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.52;
}

.hero-lead,
.premium-lead {
  margin: 30px 0 0;
  color: var(--muted);
}

.hero-lead {
  color: var(--gold-light);
  font-size: clamp(22px, 2vw, 34px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin-top: 64px;
}

.gold-button,
.bar-button,
.prosecco-button,
.poker-button,
.booking-card button {
  display: inline-flex;
  min-width: 318px;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #f1d184, #c99743);
  color: #211608;
  font-family:
    "Inter",
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 18px 48px rgba(205, 153, 64, 0.26);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.gold-button {
  padding: 0 30px;
}

.gold-button:hover,
.bar-button:hover,
.prosecco-button:hover,
.poker-button:hover,
.booking-card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 62px rgba(205, 153, 64, 0.34);
}

.video-button {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.video-button i {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.video-button i::before {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid var(--gold-light);
  content: "";
  transform: translate(-50%, -50%);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 42px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.video-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
  cursor: pointer;
}

.video-modal__panel {
  position: relative;
  width: min(1120px, 92vw);
  overflow: hidden;
  border: 1px solid rgba(213, 168, 78, 0.68);
  border-radius: 8px;
  background: #050505;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.72);
  transform: translateY(18px) scale(0.985);
  transition: transform 260ms ease;
}

.video-modal.is-open .video-modal__panel {
  transform: translateY(0) scale(1);
}

.video-modal__player {
  display: block;
  width: 100%;
  max-height: 78vh;
  background: #050505;
}

.video-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(213, 168, 78, 0.72);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.58);
  color: var(--white);
  cursor: pointer;
}

.video-modal__close::before,
.video-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
}

.video-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.video-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.place-note {
  position: absolute;
  right: 72px;
  bottom: 100px;
  display: grid;
  gap: 6px;
  padding-right: 20px;
  border-right: 3px solid var(--gold);
  color: var(--white);
  text-align: right;
  text-transform: uppercase;
}

.place-note span,
.place-note strong {
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 1.1;
}

.premium-copy {
  width: min(730px, calc(100vw - var(--rail) - 120px));
  padding: 310px 0 210px 48px;
}

.premium-copy h2 {
  font-size: clamp(58px, 6vw, 100px);
}

.premium-lead {
  max-width: 540px;
  margin-top: 26px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  max-width: 760px;
  margin-top: 56px;
}

.metric {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 102px;
  padding-right: 28px;
}

.metric + .metric {
  padding-left: 38px;
  border-left: 1px solid var(--gold);
}

.metric strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.4vw, 40px);
  font-weight: 400;
  line-height: 1;
}

.metric small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.art-icon {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--gold);
  flex: 0 0 auto;
}

.art-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(213, 168, 78, 0.14));
}

.advantage-bar {
  position: absolute;
  right: 58px;
  bottom: 44px;
  left: calc(var(--rail) + 44px);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 108px;
  border-radius: 8px;
  padding: 18px 34px;
}

.advantage-bar > div {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.advantage-bar > div + div {
  border-left: 1px solid var(--gold-soft);
  padding-left: 28px;
}

.advantage-bar p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.advantage-bar strong {
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.advantage-bar small {
  color: var(--muted);
  font-size: 14px;
}

.bar-button {
  padding: 0 30px;
}

.bar-button span {
  display: none;
}

.bar-button span::before {
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translate(-1px, 1px);
}

.prosecco-screen {
  min-height: 100svh;
  overflow: hidden;
  padding-left: 0;
}

.prosecco-bg {
  object-position: center center;
  filter: saturate(1.04) contrast(1.02) brightness(1);
  transform: translate3d(0, calc(var(--bg-shift, 0) * 0.36), 0) scale(1.018);
}

.prosecco-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98), rgba(0, 0, 0, 0.9) 21%, rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.03) 65%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.08) 54%, rgba(0, 0, 0, 0.32));
}

.prosecco-copy {
  position: absolute;
  top: clamp(238px, 37.5vh, 330px);
  left: clamp(58px, 4.5vw, 90px);
  z-index: 121;
  width: min(560px, calc(100vw - 100px));
  padding-top: 0;
  margin-left: 0;
}

.prosecco-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(86px, 7.9vw, 126px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.91;
}

.prosecco-copy h2 span,
.prosecco-copy h2 em {
  display: block;
}

.prosecco-copy h2 span {
  color: var(--white);
}

.prosecco-copy h2 em {
  color: var(--gold);
  font-style: normal;
}

.prosecco-line {
  display: block;
  width: 94px;
  height: 2px;
  margin: 24px 0 22px;
  background: linear-gradient(90deg, var(--gold-light), rgba(213, 168, 78, 0));
}

.prosecco-lead {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.33;
}

.prosecco-actions {
  display: grid;
  gap: 18px;
  width: 355px;
  max-width: 100%;
  margin-top: 20px;
}

.prosecco-button {
  padding: 0 30px;
  text-decoration: none;
  white-space: nowrap;
}

.prosecco-button-primary {
  border: 0;
  background: linear-gradient(135deg, #f1d184, #c99743);
  color: #211608;
}

.prosecco-button-outline {
  border: 0;
  background: linear-gradient(135deg, #f1d184, #c99743);
  color: #211608;
}

.prosecco-button i {
  display: none;
}

.prosecco-button i::before {
  position: absolute;
  top: 7px;
  right: 0;
  width: 30px;
  height: 1px;
  background: currentColor;
  content: "";
}

.prosecco-button i::after {
  position: absolute;
  top: 2px;
  right: 0;
  width: 11px;
  height: 11px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.prosecco-button svg {
  display: none;
}

.service-screen {
  min-height: 100svh;
  padding-bottom: 66px;
}

.service-bg {
  filter: saturate(0.92);
}

.service-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.71), rgba(0, 0, 0, 0.35) 38%, rgba(0, 0, 0, 0.56)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.62));
}

.service-head {
  padding: 208px 0 24px 48px;
}

.service-head h2 {
  font-size: clamp(68px, 7.2vw, 116px);
}

.service-shell {
  padding-left: 38px;
}

.service-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 14px 120px 28px 0;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.service-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  position: relative;
  flex: 0 0 min(310px, 72vw);
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(213, 168, 78, 0.82);
  border-radius: 8px;
  padding: 28px;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.78) 62%, rgba(0, 0, 0, 0.94)),
    var(--image) center / cover;
  isolation: isolate;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: inherit;
  content: "";
  transform: scale(1.02);
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.service-card:hover::before {
  filter: saturate(1.12) brightness(1.08);
  transform: scale(1.07);
}

.service-card-salute {
  background:
    radial-gradient(circle at 68% 24%, rgba(255, 213, 134, 0.28), transparent 21%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.64) 56%, rgba(0, 0, 0, 0.94)),
    var(--image) center / cover;
}

.service-card-salute::after {
  position: absolute;
  top: 34px;
  right: 20px;
  z-index: -1;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 245, 213, 0.95) 0 2px, transparent 3px),
    repeating-conic-gradient(from 9deg, rgba(255, 203, 110, 0.9) 0 5deg, transparent 5deg 14deg);
  filter: drop-shadow(0 0 18px rgba(235, 150, 48, 0.75));
  mask-image: radial-gradient(circle, transparent 0 10%, #000 11% 17%, transparent 18% 30%, #000 31% 36%, transparent 37% 100%);
  opacity: 0.88;
  content: "";
  animation: fireworkPulse 4.8s ease-in-out infinite;
}

.service-card-salute h3,
.service-card-salute p,
.service-card-salute span,
.service-card-salute i {
  position: relative;
  z-index: 2;
}

@keyframes fireworkPulse {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.96);
  }

  45% {
    opacity: 0.92;
    transform: scale(1.04);
  }
}

.service-card span {
  color: var(--gold-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.service-card h3 {
  min-height: 74px;
  margin-top: 12px;
}

.service-card i {
  width: 42px;
  height: 1px;
  margin: 20px 0 18px;
  background: var(--gold);
}

.service-card p {
  min-height: 66px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
}

.slider-line {
  display: flex;
  align-items: center;
  width: min(860px, calc(100% - 120px));
  margin: 4px auto 0;
  cursor: pointer;
}

.slider-line span {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(213, 168, 78, 0.45);
}

.slider-line span::after {
  position: absolute;
  top: -2px;
  left: var(--slider-progress, 0%);
  width: 84px;
  height: 5px;
  background: var(--gold-light);
  content: "";
  transform: translateX(-50%);
}

.track-next {
  position: relative;
  width: 64px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.track-next::before {
  position: absolute;
  top: 17px;
  left: 0;
  width: 54px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.track-next::after {
  position: absolute;
  top: 11px;
  right: 8px;
  width: 12px;
  height: 12px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.poker-screen {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 148px 64px 92px 0;
}

.poker-screen .screen-bg {
  object-position: center center;
  filter: saturate(1.04) contrast(1.06) brightness(0.92);
  transform: translate3d(0, calc(var(--bg-shift, 0) * 0.42), 0) scale(1.035);
}

.poker-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.88) 23%, rgba(0, 0, 0, 0.54) 43%, rgba(0, 0, 0, 0.08) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16) 54%, rgba(0, 0, 0, 0.54));
}

.poker-copy {
  position: relative;
  z-index: 121;
  width: min(760px, calc(100vw - 180px));
  margin: clamp(72px, 8vh, 118px) 0 0 clamp(74px, 4.5vw, 96px);
}

.poker-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(76px, 6.1vw, 112px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
}

.poker-line {
  display: block;
  width: 116px;
  height: 2px;
  margin: 34px 0 28px;
  background: linear-gradient(90deg, var(--gold-light), rgba(213, 168, 78, 0));
}

.poker-lead {
  max-width: 420px;
  margin: 0 0 60px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(24px, 1.75vw, 30px);
  line-height: 1.34;
}

.poker-button {
  padding: 0 30px;
  text-decoration: none;
}

.poker-button i {
  display: none;
}

.poker-button i::before {
  position: absolute;
  top: 7px;
  right: 0;
  width: 32px;
  height: 1px;
  background: currentColor;
  content: "";
}

.poker-button i::after {
  position: absolute;
  top: 2px;
  right: 0;
  width: 11px;
  height: 11px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.lounge-screen {
  display: grid;
  grid-template-columns: minmax(460px, 680px) minmax(420px, 520px);
  gap: clamp(42px, 6vw, 120px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(150px, 17vh, 190px) clamp(72px, 6vw, 108px) 82px calc(var(--rail) + 48px);
}

.lounge-screen .screen-bg {
  height: 118%;
  object-position: center 40%;
  filter: saturate(0.94) contrast(1.03) brightness(0.84);
  transform: translate3d(0, calc(var(--bg-shift, 0) * 0.45), 0) scale(1.04);
}

.lounge-screen .screen-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.48)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.78));
}

.lounge-screen::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  content: "";
}

.split-copy {
  display: grid;
  align-content: center;
  width: min(760px, calc(100vw - var(--rail) - 100px));
  padding-left: 50px;
}

.lounge-screen .split-copy {
  width: 100%;
  padding-left: 0;
  align-self: center;
  transform: translateY(22px);
}

.split-copy p:not(.kicker) {
  max-width: 560px;
  color: var(--muted);
}

.booking-screen {
  display: grid;
  min-height: 100svh;
  place-items: center end;
  padding: 150px 64px 70px var(--rail);
}

.booking-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.6)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.21), rgba(0, 0, 0, 0.59));
}

.booking-card {
  width: min(560px, calc(100vw - var(--rail) - 90px));
  border-radius: 8px;
  padding: clamp(26px, 4vw, 48px);
  overflow: hidden;
}

.lounge-screen .booking-card {
  justify-self: end;
  width: min(520px, 100%);
  align-self: center;
  padding: clamp(28px, 2.8vw, 42px);
}

.lounge-screen .booking-card h2 {
  font-size: clamp(42px, 3.45vw, 58px);
}

.lounge-screen .booking-card p:not(.kicker) {
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}

.lounge-screen form {
  gap: 12px;
  margin-top: 22px;
}

.booking-card h2 {
  max-width: 100%;
  font-size: clamp(44px, 4vw, 64px);
  overflow-wrap: normal;
  text-wrap: balance;
}

.booking-card p:not(.kicker) {
  color: var(--muted);
}

form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(213, 168, 78, 0.4);
  border-radius: 8px;
  outline: 0;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

select option {
  color: #171717;
}

input::placeholder {
  color: rgba(246, 241, 232, 0.48);
}

input:focus,
select:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(213, 168, 78, 0.14);
}

.booking-card button {
  min-height: 70px;
  margin-top: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 840ms ease,
    transform 840ms ease;
}

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

@media (max-width: 1180px) {
  :root {
    --rail: 200px;
  }

  .brand-rail {
    padding: 34px 28px;
  }

  .brand-lockup {
    width: 192px;
  }

  .site-header {
    right: 26px;
  }

  .main-nav {
    gap: 20px;
    overflow-x: auto;
    max-width: calc(100vw - var(--rail) - 290px);
    padding-bottom: 16px;
    scrollbar-width: none;
  }

  .main-nav::-webkit-scrollbar {
    display: none;
  }

  .advantage-bar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  :root {
    --rail: 0px;
    --header-top: 12px;
  }

  .brand-rail {
    display: none;
  }

  .site-header {
    left: 12px;
    right: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(213, 168, 78, 0.22);
    border-radius: 8px;
    background: rgba(4, 5, 5, 0.64);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .mobile-brand {
    display: grid;
    width: 148px;
    min-width: 0;
    border: 0;
    background: transparent;
    gap: 1px;
    padding: 0;
    text-align: center;
  }

  .mobile-brand .brand-logo-crop {
    width: 148px;
  }

  .mobile-brand .brand-subtitle {
    font-size: 5px;
    letter-spacing: 0.26em;
    line-height: 1.15;
    white-space: nowrap;
  }

  .booking-pill {
    min-height: 42px;
    gap: 12px;
    padding: 0 14px;
    font-size: 11px;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    gap: 18px;
    max-width: none;
    overflow-x: auto;
    padding: 10px 0 5px;
  }

  .main-nav a {
    font-size: 13px;
  }

  .main-nav a::after {
    bottom: -7px;
  }

  .screen {
    padding-left: 0;
  }

  .screen-bg {
    height: 104%;
  }

  .screen-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.24)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.17), rgba(0, 0, 0, 0.59));
  }

  .hero-copy,
  .premium-copy,
  .split-copy {
    width: min(100% - 28px, 620px);
    padding-left: 0;
    margin: 0 auto;
  }

  .hero-copy {
    justify-content: end;
    padding-top: 170px;
    padding-bottom: 86px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 76px);
  }

  h2,
  .premium-copy h2,
  .service-head h2 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .hero-lead {
    font-size: 22px;
  }

  .gold-button {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    font-size: 14px;
  }

  .video-button {
    width: 100%;
    justify-content: center;
  }

  .video-modal {
    padding: 14px;
  }

  .video-modal__panel {
    width: 100%;
    border-radius: 6px;
  }

  .video-modal__player {
    max-height: 72vh;
  }

  .video-modal__close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .place-note {
    right: 16px;
    bottom: 24px;
    max-width: 190px;
  }

  .premium-copy {
    padding-top: 190px;
    padding-bottom: 300px;
  }

  .metrics {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .metric,
  .metric + .metric {
    min-height: 0;
    padding: 0;
    border-left: 0;
  }

  .advantage-bar {
    right: 14px;
    bottom: 20px;
    left: 14px;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .advantage-bar > div {
    gap: 14px;
  }

  .advantage-bar > div + div {
    border-left: 0;
    padding-left: 0;
  }

  .bar-button {
    width: 100%;
  }

  .service-head {
    width: min(100% - 28px, 620px);
    margin: 0 auto;
    padding: 160px 0 18px;
  }

  .service-shell {
    padding-left: 14px;
  }

  .service-card {
    flex-basis: min(78vw, 320px);
    min-height: 480px;
    padding: 22px;
  }

  .service-card h3 {
    min-height: 60px;
    font-size: 30px;
  }

  .slider-line {
    width: calc(100% - 48px);
  }

  .prosecco-bg {
    object-position: 62% center;
    transform: translate3d(0, var(--bg-shift, 0), 0) scale(1.02);
  }

  .prosecco-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.74) 48%, rgba(0, 0, 0, 0.2)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.76));
  }

  .prosecco-copy {
    top: 284px;
    left: 14px;
    width: min(100%, 520px);
    padding-top: 0;
    margin: 0;
  }

  .prosecco-copy h2 {
    font-size: clamp(58px, 15vw, 84px);
    line-height: 0.94;
  }

  .prosecco-line {
    width: 78px;
    margin: 22px 0 18px;
  }

  .prosecco-lead {
    font-size: 20px;
  }

  .prosecco-actions {
    width: min(100%, 390px);
    gap: 14px;
    margin-top: 22px;
  }

  .prosecco-button {
    min-height: 62px;
    padding: 0 26px;
    font-size: 22px;
  }

  .poker-screen {
    min-height: 100svh;
    padding: 148px 14px 54px;
  }

  .poker-screen .screen-bg {
    object-position: 62% center;
    transform: translate3d(0, var(--bg-shift, 0), 0) scale(1.02);
  }

  .poker-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.54) 52%, rgba(0, 0, 0, 0.22)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.82));
  }

  .poker-copy {
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .poker-copy h2 {
    max-width: 560px;
    font-size: clamp(48px, 13vw, 72px);
    line-height: 1.02;
  }

  .poker-line {
    width: 88px;
    margin: 26px 0 22px;
  }

  .poker-lead {
    margin-bottom: 36px;
    font-size: 20px;
  }

  .poker-button {
    width: min(100%, 438px);
    min-width: 0;
    min-height: 64px;
    padding: 0 28px;
    font-size: 24px;
  }

  .split-copy {
    padding-top: 140px;
    padding-bottom: 90px;
  }

  .lounge-screen {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    padding: 148px 14px 28px;
  }

  .lounge-screen .screen-bg {
    height: 106%;
    object-position: center center;
    transform: translate3d(0, var(--bg-shift, 0), 0) scale(1.02);
  }

  .lounge-screen .split-copy {
    width: min(100%, 620px);
    padding-top: 0;
    padding-bottom: 0;
    transform: none;
  }

  .lounge-screen .booking-card {
    justify-self: center;
    width: min(100%, 560px);
  }

  .booking-screen {
    place-items: end center;
    padding: 150px 14px 24px;
  }

  .booking-card {
    width: min(100%, 560px);
    padding: clamp(24px, 6vw, 38px);
  }

  .booking-card h2 {
    font-size: clamp(40px, 8vw, 54px);
    line-height: 1.02;
  }
}

@media (max-width: 480px) {
  .booking-pill span {
    max-width: 118px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .kicker {
    font-size: 11px;
  }

  .hero-copy {
    padding-bottom: 120px;
  }

  .hero-actions {
    gap: 18px;
    margin-top: 38px;
  }

  .place-note {
    bottom: 18px;
  }

  .premium-copy {
    padding-bottom: 360px;
  }

  .booking-screen {
    padding: 134px 10px 16px;
  }

  .lounge-screen {
    padding: 132px 10px 18px;
  }

  .prosecco-copy {
    top: 258px;
    left: 10px;
    width: calc(100% - 20px);
  }

  .prosecco-copy h2 {
    font-size: clamp(52px, 17vw, 66px);
  }

  .prosecco-lead {
    font-size: 17px;
  }

  .prosecco-button {
    min-height: 58px;
    border-radius: 10px;
    font-size: 19px;
  }

  .poker-screen {
    padding: 132px 10px 44px;
  }

  .poker-copy h2 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .poker-lead {
    font-size: 16px;
  }

  .poker-button {
    font-size: 21px;
  }

  .lounge-screen .booking-card h2 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .booking-card {
    padding: 22px;
  }

  .booking-card h2 {
    font-size: clamp(36px, 10vw, 44px);
  }

  .booking-card p:not(.kicker) {
    font-size: 15px;
  }

  .art-icon {
    width: 36px;
    height: 36px;
  }

  .advantage-bar strong,
  .advantage-bar small {
    font-size: 12px;
  }
}

@media (max-width: 840px) {
  .gold-button,
  .bar-button,
  .prosecco-button,
  .poker-button,
  .booking-card button {
    width: 100%;
    min-width: 0;
    min-height: 60px;
    padding: 0 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gold-button,
  .bar-button,
  .prosecco-button,
  .poker-button,
  .booking-card button {
    min-height: 58px;
    font-size: 13px;
  }
}

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