:root {
  --font-ui:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --scroll-progress: 0;
  --pointer-x: 50vw;
  --pointer-y: 28vh;
  --hero-shift: 0px;
  --ink-950: #04070d;
  --ink-900: #08101c;
  --ink-800: #0d1728;
  --ink-700: #172234;
  --champagne: #d8b980;
  --champagne-strong: #e4cca0;
  --champagne-soft: rgba(216, 185, 128, 0.18);
  --pearl: #f4efe7;
  --pearl-strong: #fffaf3;
  --slate-100: #d9dfeb;
  --slate-200: #b0bac9;
  --slate-300: #8b96a8;
  --slate-400: #5f6d82;
  --shadow-xl: 0 40px 100px rgba(1, 6, 16, 0.35);
  --shadow-lg: 0 24px 60px rgba(4, 9, 19, 0.18);
  --border-soft: rgba(255, 255, 255, 0.14);
  --border-dark: rgba(15, 23, 42, 0.08);
  --surface-dark: rgba(8, 15, 27, 0.72);
  --surface-light: rgba(255, 255, 255, 0.72);
  --max-width: 1180px;
  --section-space: 6rem;
  --card-inner-padding: 1.5rem;
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --ease: 250ms ease;
}

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

html {
  scroll-behavior: auto;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  position: relative;
  margin: 0;
  font-family: var(--font-ui);
  color: var(--pearl);
  background:
    radial-gradient(circle at top, rgba(216, 185, 128, 0.12), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(244, 239, 231, 0.05), transparent 24%),
    linear-gradient(180deg, #07111f 0%, #04070d 50%, #0c1420 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(216, 185, 128, 0.09), transparent 18%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 13px
    );
}

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

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

button,
a,
video {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  z-index: 0;
  width: 32rem;
  height: 32rem;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.32;
}

.site-shell::before {
  top: -6rem;
  left: max(-8rem, calc(var(--pointer-x) - 20rem));
  background: rgba(216, 185, 128, 0.12);
}

.site-shell::after {
  top: min(52vh, calc(var(--pointer-y) + 6rem));
  right: -10rem;
  background: rgba(216, 185, 128, 0.08);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 0.85rem 0 0;
  transition: padding var(--ease);
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 4rem), 1080px);
  margin: 0 auto;
  padding: 0.72rem 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(36px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 1.75rem;
  box-shadow:
    0 12px 34px rgba(4, 9, 19, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  transition:
    transform 450ms ease,
    background-color 450ms ease,
    border-color 450ms ease,
    box-shadow 450ms ease,
    padding 450ms ease;
}

.nav-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 38%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  opacity: 0.78;
}

body.is-scrolled .site-header {
  padding-top: 0.45rem;
}

body.is-scrolled .nav-shell {
  transform: translateY(-0.05rem) scale(0.99);
  background: rgba(12, 15, 22, 0.66);
  border-color: rgba(255, 255, 255, 0.05);
  box-shadow:
    0 18px 48px rgba(2, 7, 16, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  min-width: 3.1rem;
  height: 2.2rem;
  padding: 0 0.72rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--champagne);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-copy {
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.site-nav a {
  position: relative;
  transition: color var(--ease), opacity var(--ease);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: scaleX(0.35);
  opacity: 0;
  transition:
    opacity var(--ease),
    transform var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--pearl);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  --button-lift: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.95rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform var(--ease),
    border-color var(--ease),
    background-color var(--ease),
    color var(--ease),
    box-shadow var(--ease);
  overflow: hidden;
  isolation: isolate;
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) + var(--button-lift)), 0);
}

.glass-effect,
.glasseffect {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px) saturate(175%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 16px 36px rgba(4, 9, 19, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.ultra-thin-material,
.ultrathinmaterial {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(34px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow:
    0 26px 70px rgba(4, 9, 19, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.45) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 650ms ease;
}

.button:hover,
.button:focus-visible {
  --button-lift: -2px;
}

.button:hover::before,
.button:focus-visible::before {
  transform: translateX(130%);
}

.button-primary {
  color: #0b1421;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(219, 226, 236, 0.82)),
    rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(18px) saturate(155%);
  box-shadow:
    0 16px 34px rgba(4, 9, 19, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -10px 18px rgba(148, 163, 184, 0.12);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 20px 42px rgba(4, 9, 19, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -12px 22px rgba(148, 163, 184, 0.14);
}

.button-secondary {
  color: var(--pearl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.button-compact {
  min-height: 2.55rem;
  padding-inline: 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-section {
  position: relative;
  min-height: 108svh;
  padding: 6.2rem 0 5.8rem;
  overflow: hidden;
  perspective: 1200px;
  --hero-copy-x: 0px;
  --hero-copy-y: 0px;
  --hero-copy-scale: 1;
  --hero-panel-x: 0px;
  --hero-panel-y: 0px;
  --hero-panel-scale: 1;
  --hero-panel-rotate-x: 0deg;
  --hero-panel-rotate-y: 0deg;
  --hero-vehicle-x: 0px;
  --hero-vehicle-y: 0px;
  --hero-vehicle-scale: 1;
  --hero-plane-left-x: 0px;
  --hero-plane-left-y: 0px;
  --hero-plane-right-x: 0px;
  --hero-plane-right-y: 0px;
  --hero-overlay-y: 0px;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
}

.hero-section::before {
  top: 10%;
  right: 9%;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(216, 185, 128, 0.15), transparent 62%);
  filter: blur(18px);
}

.hero-section::after {
  left: -12rem;
  bottom: -10rem;
  width: 36rem;
  height: 36rem;
  background: radial-gradient(circle, rgba(216, 185, 128, 0.1), transparent 64%);
  filter: blur(26px);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-depth-plane {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    rgba(7, 15, 27, 0.14);
  backdrop-filter: blur(12px);
  box-shadow:
    0 24px 60px rgba(4, 9, 19, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  will-change: transform;
}

.hero-depth-plane--left {
  left: -4%;
  bottom: 8%;
  width: min(26vw, 22rem);
  height: min(38vh, 20rem);
  transform: translate3d(var(--hero-plane-left-x), var(--hero-plane-left-y), -140px) rotate(-9deg) scale(0.98);
}

.hero-depth-plane--right {
  display: none;
}

.hero-media {
  --hero-media-x: 0px;
  --hero-media-y: 0px;
  --hero-media-scale: 1.06;
  --surface-scrub-y: 0px;
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(2, 6, 14, 0.02), rgba(2, 6, 14, 0.34));
  transform: translate3d(
      var(--hero-media-x),
      calc(var(--hero-media-y) + var(--surface-scrub-y, 0px) + var(--hero-shift) * 0.22),
      -120px
    )
    scale(var(--hero-media-scale));
  animation: heroDrift 18s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-media::before {
  background:
    radial-gradient(circle at 68% 42%, rgba(244, 239, 231, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(7, 8, 10, 0.04), rgba(7, 8, 10, 0.16) 54%, rgba(7, 8, 10, 0.34) 100%);
}

.hero-media::after {
  background:
    radial-gradient(circle at 50% 78%, rgba(216, 185, 128, 0.08), transparent 20%),
    linear-gradient(90deg, rgba(7, 8, 10, 0.05), transparent 28%, transparent 72%, rgba(7, 8, 10, 0.1));
  mix-blend-mode: screen;
  opacity: 0.42;
}

.hero-video {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.98;
  filter: saturate(0.78) brightness(0.72) contrast(1.02);
  transform: scale(1.04);
  animation: heroVideoFloat 20s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 18%, rgba(244, 239, 231, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.06) 0%, rgba(8, 8, 10, 0.2) 52%, rgba(8, 8, 10, 0.4) 100%);
  transform: translate3d(0, var(--hero-overlay-y), 12px);
  will-change: transform;
}

.hero-vehicle {
  position: absolute;
  right: clamp(6rem, 15vw, 14rem);
  top: clamp(13.5rem, 31vh, 17rem);
  z-index: 1;
  width: min(38vw, 32rem);
  pointer-events: none;
  transform: translate3d(
      calc(var(--parallax-x, 0px) + var(--hero-vehicle-x)),
      calc(var(--parallax-y, 0px) + var(--surface-scrub-y, 0px) + var(--hero-vehicle-y)),
      -12px
    )
    scale(var(--hero-vehicle-scale));
  transform-origin: 72% 84%;
  will-change: transform;
}

.hero-vehicle::before {
  content: "";
  position: absolute;
  inset: auto 12% 6% 22%;
  height: 1.3rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(2, 7, 16, 0.42), transparent 68%);
  filter: blur(16px);
  opacity: 0.8;
}

.hero-vehicle::after {
  content: "";
  position: absolute;
  inset: 18% 14% 16% 10%;
  border-radius: 3rem;
  background: radial-gradient(circle at 40% 55%, rgba(255, 255, 255, 0.16), transparent 34%);
  filter: blur(36px);
  opacity: 0.48;
}

.hero-vehicle-image {
  position: relative;
  z-index: 1;
  width: 100%;
  filter:
    drop-shadow(0 34px 46px rgba(0, 0, 0, 0.32))
    saturate(0.96)
    contrast(1.04);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 10%, #000 22%, #000 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 10%, #000 22%, #000 90%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(26rem, 0.94fr);
  gap: clamp(1.2rem, 2.8vw, 1.85rem);
  align-items: stretch;
  min-height: calc(100vh - 11.75rem);
  transform-style: preserve-3d;
}

.hero-copy {
  max-width: 47rem;
  position: relative;
  z-index: 1;
  align-self: center;
  padding-top: clamp(0.8rem, 5vh, 4rem);
  transform: translate3d(
      calc(var(--parallax-x, 0px) + var(--hero-copy-x)),
      calc(var(--parallax-y, 0px) + var(--surface-scrub-y, 0px) + var(--hero-copy-y) + var(--reveal-shift, 0px)),
      42px
    )
    scale(var(--hero-copy-scale));
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.34rem 0.72rem;
  border: 1px solid rgba(216, 185, 128, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--champagne);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light {
  border-color: rgba(16, 24, 40, 0.08);
  background: rgba(9, 19, 33, 0.03);
  color: #7d6641;
}

.hero-copy h1,
.section-heading h2,
.journey-copy h2,
.cta-shell h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  max-width: 9.5ch;
  font-size: clamp(3.9rem, 6.8vw, 7rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.hero-title-line {
  display: block;
}

.hero-title-line--accent {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.18em;
  color: var(--champagne);
  font-family: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero-title-line--accent::before {
  content: "";
  width: 0.18em;
  height: 0.18em;
  margin-top: 0.22em;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 24px rgba(216, 185, 128, 0.45);
}

.hero-eyebrow {
  padding-inline: 0.92rem;
  border-color: rgba(216, 185, 128, 0.22);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 14px 34px rgba(4, 9, 19, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.eyebrow-dot {
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 999px;
  background: var(--champagne);
  box-shadow: 0 0 18px rgba(216, 185, 128, 0.45);
}

.hero-summary {
  max-width: 31rem;
  margin: 1.55rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  line-height: 1.78;
  text-wrap: balance;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-pills li {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 15, 27, 0.45);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  transition:
    transform var(--ease),
    border-color var(--ease),
    background-color var(--ease);
}

.hero-pills li:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 185, 128, 0.32);
  background: rgba(13, 23, 40, 0.72);
}

.hero-panel {
  --surface-offset-x: 0px;
  --surface-offset-y: 0px;
  --surface-hover-y: 0px;
  --surface-scrub-x: 0px;
  --surface-scrub-y: 0px;
  --surface-rotate-x: 0deg;
  --surface-rotate-y: 0deg;
  --surface-scale: 1;
  position: relative;
  align-self: flex-end;
  padding: var(--card-inner-padding);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(5, 12, 23, 0.58);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
  transform: translate3d(
      calc(var(--parallax-x, 0px) + var(--surface-offset-x) + var(--surface-scrub-x, 0px) + var(--hero-panel-x)),
      calc(
        var(--parallax-y, 0px) + var(--surface-offset-y) + var(--surface-hover-y) + var(--surface-scrub-y, 0px) +
          var(--hero-panel-y) + var(--reveal-shift, 0px)
      ),
      0
    )
    rotateX(var(--surface-rotate-x))
    rotateY(var(--surface-rotate-y))
    scale(var(--surface-scale));
  transition:
    transform 450ms ease,
    box-shadow 450ms ease,
    border-color 450ms ease;
}

.hero-booking-card {
  --hero-panel-scale: 1;
  --hero-panel-rotate-x: 0deg;
  --hero-panel-rotate-y: 0deg;
  align-self: center;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 44rem;
  padding: 1.08rem;
  border-radius: 1.7rem;
  color: var(--pearl);
  background:
    linear-gradient(180deg, rgba(12, 19, 30, 0.8), rgba(8, 14, 24, 0.66)),
    rgba(8, 16, 28, 0.54);
  backdrop-filter: blur(40px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 34px 96px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: translate3d(
      calc(var(--parallax-x, 0px) + var(--surface-offset-x) + var(--surface-scrub-x, 0px) + var(--hero-panel-x)),
      calc(
        var(--parallax-y, 0px) + var(--surface-offset-y) + var(--surface-hover-y) + var(--surface-scrub-y, 0px) +
          var(--hero-panel-y) + var(--reveal-shift, 0px)
      ),
      72px
    )
    rotateX(calc(var(--surface-rotate-x) + var(--hero-panel-rotate-x)))
    rotateY(calc(var(--surface-rotate-y) + var(--hero-panel-rotate-y)))
    scale(var(--surface-scale))
    scale(var(--hero-panel-scale));
}

.hero-booking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 30%, transparent 70%, rgba(216, 185, 128, 0.05)),
    radial-gradient(circle at top right, rgba(216, 185, 128, 0.12), transparent 28%);
  opacity: 0.9;
}

.hero-booking-card::after {
  content: "";
  position: absolute;
  inset: 0.82rem;
  border-radius: 1.18rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.hero-booking-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.95rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-booking-tabs {
  flex: 1 1 auto;
}

.hero-booking-tabs .booking-mode {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.hero-booking-meta {
  display: grid;
  justify-items: end;
  gap: 0.2rem;
  min-width: 11.5rem;
  padding-top: 0.15rem;
}

.hero-booking-status {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  font-weight: 600;
}

.hero-booking-card .booking-kicker,
.contact-panel .booking-kicker {
  color: var(--champagne);
}

.hero-booking-card .booking-mode {
  justify-content: flex-start;
}

.hero-booking-card .booking-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.8rem;
  padding: 0.72rem 0.85rem;
  border-radius: 999px;
  color: var(--pearl);
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-booking-card .booking-chip.is-active,
.hero-booking-card .booking-chip:hover,
.hero-booking-card .booking-chip:focus-visible {
  color: var(--champagne-strong);
  background: rgba(216, 185, 128, 0.15);
  border-color: rgba(216, 185, 128, 0.4);
  box-shadow:
    0 12px 28px rgba(108, 83, 45, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-booking-primary {
  display: grid;
  grid-template-columns:
    minmax(0, 0.96fr)
    minmax(0, 0.96fr)
    minmax(8.6rem, 1fr)
    minmax(7.4rem, 0.9fr)
    minmax(6.7rem, 0.72fr);
  gap: 0.62rem;
}

.hero-booking-secondary {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 0.92fr) minmax(0, 0.84fr) minmax(0, 0.84fr) minmax(0, 1.1fr);
  gap: 0.62rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-booking-card .booking-field {
  gap: 0.36rem;
}

.hero-booking-card .booking-field span {
  padding-left: 0.18rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.67rem;
  letter-spacing: 0.18em;
}

.hero-booking-card .booking-field input,
.hero-booking-card .booking-field select {
  min-height: 4rem;
  border-radius: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
  color: var(--pearl-strong);
  color-scheme: dark;
  padding: 1rem 1.02rem;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
  transition:
    transform var(--ease),
    border-color var(--ease),
    background-color var(--ease),
    box-shadow var(--ease);
}

.hero-booking-card .booking-field small {
  display: none;
}

.hero-booking-card .booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.hero-booking-card .booking-field select {
  color: rgba(244, 239, 231, 0.88);
}

.hero-booking-card .booking-field-compact {
  position: relative;
  min-height: 4rem;
  padding: 0.68rem 2.6rem 0.66rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transition:
    transform var(--ease),
    border-color var(--ease),
    background-color var(--ease),
    box-shadow var(--ease);
}

.hero-booking-card .booking-field-compact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 38%),
    radial-gradient(circle at 85% 50%, rgba(255, 255, 255, 0.06), transparent 18%);
  opacity: 0.92;
}

.hero-booking-card .booking-field-compact::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.72rem;
  width: 0.92rem;
  height: 0.92rem;
  transform: translateY(-36%);
  opacity: 0.72;
  pointer-events: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-booking-card .booking-field-date::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Crect x='2.25' y='3.5' width='15.5' height='14' rx='3' stroke='rgba(255,255,255,0.72)' stroke-width='1.5'/%3E%3Cpath d='M5.5 1.9V5.1M14.5 1.9V5.1M2.5 7.1H17.5' stroke='rgba(255,255,255,0.72)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.hero-booking-card .booking-field-time::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='7.75' stroke='rgba(255,255,255,0.72)' stroke-width='1.5'/%3E%3Cpath d='M10 5.9V10.1L12.9 11.8' stroke='rgba(255,255,255,0.72)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.hero-booking-card .booking-field-compact span {
  padding-left: 0;
  font-size: 0.61rem;
  letter-spacing: 0.16em;
}

.hero-booking-card .booking-field-compact input {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: rgba(255, 250, 243, 0.96);
  text-transform: none;
}

.hero-booking-card .booking-field-compact input::placeholder {
  color: rgba(255, 255, 255, 0.82);
}

.hero-booking-card .booking-field-compact small {
  display: block;
  margin-top: 0.08rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-booking-card .booking-field-compact input[name="pickupDate"],
.hero-booking-card .booking-field-compact input[name="pickupTime"] {
  font-variant-numeric: tabular-nums;
}

.hero-booking-card .booking-field-compact:hover,
.hero-booking-card .booking-field-compact:focus-within {
  transform: translateY(-1px);
  border-color: rgba(228, 204, 160, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 4px rgba(216, 185, 128, 0.05);
}

.hero-booking-card .booking-field-compact input:hover,
.hero-booking-card .booking-field-compact input:focus-visible {
  transform: none;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.hero-booking-card .booking-field input:hover,
.hero-booking-card .booking-field select:hover,
.hero-booking-card .booking-field input:focus-visible,
.hero-booking-card .booking-field select:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(228, 204, 160, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
  box-shadow:
    0 14px 26px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 4px rgba(216, 185, 128, 0.05);
}

.hero-booking-submit {
  min-height: 3.95rem;
  width: 100%;
  padding-inline: 0.82rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: normal;
  border-radius: 1rem;
  color: #0b1421;
  border-color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(180deg, rgba(249, 251, 253, 0.96), rgba(220, 227, 236, 0.82)),
    rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -12px 22px rgba(148, 163, 184, 0.14);
}

.hero-booking-submit:hover,
.hero-booking-submit:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.74);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -13px 24px rgba(148, 163, 184, 0.16);
}

.hero-booking-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.62rem;
  margin-top: 0.82rem;
}

.hero-booking-card .button-secondary.glass-effect,
.hero-booking-card .button-secondary.glasseffect {
  color: var(--pearl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(175%);
}

.hero-booking-actions .button {
  width: 100%;
  min-height: 3rem;
  padding-inline: 1rem;
  border-radius: 1.08rem;
  font-size: 0.94rem;
  font-weight: 650;
}

.hero-booking-card .booking-preview {
  margin-top: 0.82rem;
  padding: 0.98rem 1.04rem 1.04rem;
  border-radius: 1.2rem;
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 12px 24px rgba(0, 0, 0, 0.12);
}

.hero-booking-card .booking-preview-label {
  color: var(--champagne);
}

.hero-booking-card .booking-preview p {
  margin-top: 0.42rem;
  color: rgba(244, 239, 231, 0.72);
  font-size: 0.92rem;
  line-height: 1.62;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 40%),
    radial-gradient(circle at top right, rgba(216, 185, 128, 0.18), transparent 32%);
  pointer-events: none;
  opacity: 0.72;
}

.hero-panel:hover {
  --surface-hover-y: -4px;
  --surface-scale: 1.01;
  border-color: rgba(216, 185, 128, 0.28);
  box-shadow: 0 25px 60px rgba(2, 7, 16, 0.32);
}

.panel-kicker {
  margin-bottom: 1rem;
  color: var(--champagne);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.panel-stack {
  display: grid;
  gap: 1rem;
}

.panel-stack article {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-stack article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.panel-stack strong,
.gallery-copy strong,
.journey-step strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.panel-stack p,
.section-heading p,
.service-card p,
.benefit-card p,
.video-copy p,
.journey-copy p,
.journey-step p,
.footer-note,
.cta-shell p {
  margin: 0;
  line-height: 1.75;
}

.curve-section,
.post-hero-video-section,
.services-section,
.benefits-section,
.journey-section,
.cta-section {
  position: relative;
  background: var(--pearl);
  color: #131a24;
  overflow: clip;
}

.post-hero-video-section {
  position: relative;
  min-height: 58svh;
  color: var(--pearl);
  background: #050910;
  overflow: hidden;
}

.post-hero-video-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0.24), transparent 22%),
    radial-gradient(circle at 18% 24%, rgba(216, 185, 128, 0.18), transparent 22%),
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.08), transparent 18%);
  z-index: 1;
}

.post-hero-video-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 10rem;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(244, 239, 231, 0.94) 72%, var(--pearl) 100%);
  z-index: 2;
}

.post-hero-video-media,
.post-hero-video-overlay {
  position: absolute;
  inset: 0;
}

.post-hero-video-media {
  overflow: hidden;
  transform: translate3d(
      var(--parallax-x, 0px),
      calc(var(--parallax-y, 0px) + var(--surface-scrub-y, 0px)),
      -32px
    )
    scale(1.08);
  will-change: transform;
}

.post-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  filter: saturate(0.96) brightness(0.72) contrast(1.04);
}

.post-hero-video-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 9, 16, 0.18), rgba(5, 9, 16, 0.38) 46%, rgba(5, 9, 16, 0.7) 100%),
    radial-gradient(circle at 50% 45%, rgba(5, 9, 16, 0.04), rgba(5, 9, 16, 0.56) 72%);
}

.post-hero-video-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: end;
  min-height: 58svh;
  padding: 6rem 0 8.25rem;
  max-width: 34rem;
}

.post-hero-video-copy h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.post-hero-video-copy p {
  margin: 1rem 0 0;
  max-width: 30rem;
  color: rgba(244, 239, 231, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.curve-section {
  margin-top: -4rem;
  padding: 7rem 0 5rem;
  border-radius: 2.5rem 2.5rem 0 0;
  overflow: hidden;
}

.curve-section::before,
.services-section::before,
.benefits-section::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 16%, rgba(216, 185, 128, 0.08), transparent 22%),
    radial-gradient(circle at 90% 10%, rgba(8, 16, 28, 0.045), transparent 20%);
}

.section-heading {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  transform: translate3d(
      var(--parallax-x, 0px),
      calc(var(--parallax-y, 0px) + var(--surface-scrub-y, 0px) + var(--reveal-shift, 0px)),
      0
    );
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.section-heading h2,
.journey-copy h2,
.booking-intro h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  color: #141b25;
}

.section-heading p,
.journey-copy p,
.booking-intro > p {
  margin-top: 1rem;
  color: #5a6475;
  font-size: 1.02rem;
}

.about-grid,
.services-grid,
.benefits-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}

.about-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
  gap: 2rem;
  align-items: start;
}

.about-copy-rail {
  position: sticky;
  top: 7.6rem;
  display: grid;
  gap: 1rem;
  align-self: start;
  z-index: 1;
}

.about-heading-panel {
  max-width: 24rem;
  margin: 0;
  text-align: left;
}

.about-heading-panel h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
}

.about-heading-panel p {
  max-width: 22rem;
}

.about-rail-points {
  display: grid;
  gap: 0.85rem;
}

.about-point {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 38px rgba(12, 21, 35, 0.08);
}

.about-point strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #141b25;
  font-size: 0.95rem;
}

.about-point p {
  margin: 0;
  color: #5f6b7d;
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 0;
}

.about-vehicle-stage,
.about-card--drift-a {
  margin-left: 0;
  margin-right: 0;
}

.about-card--drift-b {
  margin-left: 0;
  margin-right: 0;
}

.about-card--drift-c {
  margin-left: 0;
  margin-right: 0;
}

.about-vehicle-stage {
  grid-column: 1 / -1;
  min-height: 24rem;
  padding: 1.5rem 1.55rem 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at 14% 16%, rgba(216, 185, 128, 0.2), transparent 22%),
    radial-gradient(circle at 78% 76%, rgba(8, 16, 28, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 239, 0.88));
  box-shadow:
    0 30px 82px rgba(12, 21, 35, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.about-vehicle-stage::before,
.about-vehicle-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-vehicle-stage::before {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), transparent 30%),
    repeating-linear-gradient(
      90deg,
      rgba(17, 24, 39, 0.02) 0,
      rgba(17, 24, 39, 0.02) 1px,
      transparent 1px,
      transparent 48px
    );
  mask: linear-gradient(180deg, rgba(0, 0, 0, 0.46), transparent 78%);
  opacity: 0.9;
}

.about-vehicle-stage::after {
  left: 43%;
  right: 2.5rem;
  bottom: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(12, 21, 35, 0.24), transparent 70%);
  filter: blur(14px);
  opacity: 0.56;
}

.about-vehicle-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.72rem;
  max-width: 17rem;
}

.about-vehicle-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: #8b6b3c;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-vehicle-stage h3 {
  margin: 0;
  max-width: 10.5ch;
  color: #141b25;
  font-size: clamp(1.72rem, 3vw, 2.3rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.about-vehicle-stage p {
  margin: 0;
  max-width: 15rem;
  color: #5c6677;
  font-size: 0.97rem;
  line-height: 1.72;
}

.about-vehicle-specs {
  position: absolute;
  z-index: 1;
  left: 1.55rem;
  bottom: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  max-width: 19rem;
}

.about-vehicle-specs span {
  padding: 0.56rem 0.82rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #202935;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 26px rgba(12, 21, 35, 0.08);
  backdrop-filter: blur(12px);
}

.about-vehicle-image {
  position: absolute;
  right: -9%;
  bottom: 0.8rem;
  z-index: 0;
  width: min(72%, 39rem);
  max-width: none;
  opacity: 0.98;
  filter: drop-shadow(0 34px 40px rgba(12, 21, 35, 0.18));
  transform: translate3d(calc(var(--media-drift, 0px) * 0.7), 0, 0) scale(1.035);
  transform-origin: 72% 82%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.22) 16%, #000 32%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.22) 16%, #000 32%, #000 100%);
}

.about-vehicle-tag {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.88);
  color: rgba(255, 250, 243, 0.92);
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  box-shadow: 0 18px 30px rgba(12, 21, 35, 0.16);
}

.about-vehicle-tag::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.48rem;
  border-radius: 999px;
  background: var(--champagne);
  box-shadow: 0 0 0 0.18rem rgba(216, 185, 128, 0.14);
}

.about-vehicle-tag--front {
  left: 34%;
  bottom: 5.7rem;
}

.about-vehicle-tag--rear {
  right: 5.5%;
  bottom: 9.95rem;
}

.about-card--drift-a {
  grid-column: 1 / span 7;
}

.about-card--drift-b {
  grid-column: 6 / -1;
  margin-top: -2.3rem;
}

.about-card--drift-c {
  grid-column: 2 / span 8;
  margin-top: 0.2rem;
}

.services-section {
  padding: 3rem 0 5.5rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefits-section {
  padding: 1.4rem 0 6rem;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.service-card,
.benefit-card,
.journey-panel,
.cta-shell,
.booking-card,
.video-card,
.gallery-card,
.about-vehicle-stage,
.about-point,
.contact-panel,
.faq-card {
  --surface-offset-x: 0px;
  --surface-offset-y: 0px;
  --surface-hover-y: 0px;
  --surface-scrub-x: 0px;
  --surface-scrub-y: 0px;
  --surface-rotate-x: 0deg;
  --surface-rotate-y: 0deg;
  --surface-scale: 1;
  position: relative;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lg);
  transform: translate3d(
      calc(var(--parallax-x, 0px) + var(--surface-offset-x) + var(--surface-scrub-x, 0px)),
      calc(
        var(--parallax-y, 0px) + var(--surface-offset-y) + var(--surface-hover-y) + var(--surface-scrub-y, 0px) +
          var(--reveal-shift, 0px)
      ),
      0
    )
    rotateX(var(--surface-rotate-x))
    rotateY(var(--surface-rotate-y))
    scale(var(--surface-scale));
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    background-color 420ms ease;
  will-change: transform;
}

.info-card,
.service-card,
.benefit-card {
  padding: var(--card-inner-padding);
}

.info-card h3,
.service-card h3,
.benefit-card h3,
.video-copy h3 {
  margin: 0 0 0.55rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.info-card:hover,
.service-card:hover,
.benefit-card:hover,
.journey-panel:hover,
.cta-shell:hover,
.about-vehicle-stage:hover,
.about-point:hover,
.contact-panel:hover,
.faq-card:hover {
  --surface-hover-y: -8px;
  --surface-scale: 1.01;
  border-color: rgba(216, 185, 128, 0.24);
  box-shadow: 0 35px 90px rgba(12, 21, 35, 0.18);
}

.info-card p,
.service-card p,
.benefit-card p,
.gallery-copy span {
  color: #5f6b7d;
  font-size: 0.97rem;
}

.card-icon {
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.1rem;
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(216, 185, 128, 0.42), transparent 36%),
    linear-gradient(135deg, rgba(12, 23, 40, 0.95), rgba(24, 38, 62, 0.8));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  position: relative;
}

.card-icon::before,
.card-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
}

.card-icon-routing::before {
  inset: 0.95rem 1rem auto;
  height: 0.18rem;
}

.card-icon-routing::after {
  inset: 1.35rem 1.2rem auto;
  height: 0.18rem;
  opacity: 0.5;
}

.card-icon-lounge::before {
  inset: 1.05rem 0.85rem auto;
  height: 0.18rem;
}

.card-icon-lounge::after {
  inset: auto 1.15rem 0.9rem;
  height: 0.18rem;
}

.card-icon-discretion::before {
  width: 1.3rem;
  height: 1.3rem;
  top: 1rem;
  left: 1.02rem;
  border-radius: 0.45rem;
}

.card-icon-discretion::after {
  width: 0.22rem;
  height: 1.45rem;
  top: 0.95rem;
  right: 1.25rem;
}

.service-card {
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 185, 128, 0.14), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(8, 16, 28, 0.04), transparent 26%);
  pointer-events: none;
}

.service-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.42rem 0.65rem;
  border-radius: 999px;
  background: #111b2c;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.benefit-card {
  text-align: left;
}

.benefit-value {
  margin-bottom: 1rem;
  color: var(--champagne);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.fleet-section {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(circle at top, rgba(216, 185, 128, 0.12), transparent 22%),
    linear-gradient(180deg, #08101c 0%, #04070d 100%);
  color: var(--pearl);
  overflow: clip;
}

.fleet-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    radial-gradient(circle at 80% 24%, rgba(216, 185, 128, 0.12), transparent 18%),
    radial-gradient(circle at 20% 80%, rgba(59, 90, 141, 0.16), transparent 24%);
}

.fleet-section::after {
  content: "";
  position: absolute;
  inset: 12% auto auto 54%;
  width: min(34vw, 34rem);
  height: min(50vw, 44rem);
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244, 239, 231, 0.06), transparent 26%, transparent 72%, rgba(216, 185, 128, 0.08)),
    radial-gradient(circle at center, rgba(216, 185, 128, 0.1), transparent 62%);
  filter: blur(10px);
  opacity: 0.72;
  transform: translate3d(0, calc(var(--scroll-progress, 0) * 48px), 0) rotate(8deg);
}

.section-heading-dark h2 {
  color: var(--pearl);
}

.section-heading-dark p {
  color: rgba(233, 235, 241, 0.72);
}

.fleet-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.56fr);
  gap: 2rem;
  align-items: start;
}

.fleet-copy-rail {
  position: sticky;
  top: 7.8rem;
  display: grid;
  gap: 1.2rem;
  align-self: start;
  z-index: 1;
}

.fleet-heading-panel {
  max-width: 24rem;
  margin: 0;
  text-align: left;
}

.fleet-heading-panel h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.fleet-heading-panel p {
  max-width: 22rem;
}

.fleet-rail-notes {
  display: grid;
  gap: 0.85rem;
}

.fleet-note {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 20px 42px rgba(1, 6, 16, 0.14);
}

.fleet-note strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--pearl-strong);
  font-size: 0.95rem;
}

.fleet-note p {
  margin: 0;
  color: rgba(233, 235, 241, 0.66);
  font-size: 0.9rem;
  line-height: 1.65;
}

.fleet-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 1.15rem;
  padding-top: 2.5rem;
  position: relative;
}

.video-card,
.gallery-card {
  --media-drift: 0px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 450ms ease,
    box-shadow 450ms ease;
}

.video-card::before,
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 14%, rgba(255, 255, 255, 0.11) 46%, transparent 74%);
  transform: translateX(-120%);
  transition: transform 900ms ease;
}

.video-card:hover,
.gallery-card:hover {
  --surface-hover-y: -8px;
  --surface-scale: 1.01;
  border-color: rgba(216, 185, 128, 0.22);
  box-shadow: 0 38px 110px rgba(1, 6, 16, 0.5);
}

.video-card:hover::before,
.gallery-card:hover::before {
  transform: translateX(120%);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #02050a;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, transparent, rgba(2, 5, 10, 0.55));
  pointer-events: none;
}

.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--media-drift, 0px), 0) scale(1.02);
  transition: transform 900ms ease;
}

.video-card:hover .video-frame video,
.gallery-card:hover video,
.gallery-card:hover img {
  transform: translate3d(0, var(--media-drift, 0px), 0) scale(1.06);
}

.video-copy {
  padding: var(--card-inner-padding);
}

.video-card--feature {
  transform-origin: left center;
}

.video-copy h3 {
  color: var(--pearl);
}

.video-copy p {
  color: rgba(233, 235, 241, 0.72);
}

.fleet-gallery {
  display: grid;
  gap: 1rem;
  padding-top: 4.8rem;
}

.gallery-card {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
}

.gallery-card--drift-a {
  margin-left: 1.6rem;
}

.gallery-card--drift-b {
  margin-right: 1rem;
}

.gallery-card--drift-c {
  margin-left: 2.3rem;
}

.gallery-card--drift-d {
  margin-right: 1.3rem;
}

.gallery-card img,
.gallery-card video {
  width: 100%;
  height: 100%;
  min-height: 10rem;
  object-fit: cover;
  background: #0d1728;
}

.gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.35rem;
  background: linear-gradient(135deg, rgba(4, 7, 13, 0.82), rgba(9, 14, 20, 0.96));
}

.gallery-copy strong {
  color: var(--pearl-strong);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.gallery-copy span {
  color: rgba(233, 235, 241, 0.84);
}

.journey-section {
  padding: 6rem 0;
}

.journey-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.journey-copy {
  transform: translate3d(
      var(--parallax-x, 0px),
      calc(var(--parallax-y, 0px) + var(--surface-scrub-y, 0px) + var(--reveal-shift, 0px)),
      0
    );
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.journey-panel {
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 245, 238, 0.92)),
    #fff;
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  opacity: 0.46;
  transition:
    transform 320ms ease,
    opacity 320ms ease,
    color 320ms ease;
}

.journey-step::before {
  content: "";
  position: absolute;
  left: 1.56rem;
  top: 3.3rem;
  bottom: -1rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(216, 185, 128, 0.05), rgba(216, 185, 128, 0.3), transparent);
  opacity: 0.48;
}

.journey-step:last-child::before {
  display: none;
}

.journey-step:first-child {
  padding-top: 0;
}

.journey-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.journey-step span {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  background: #10192b;
  color: var(--champagne);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(216, 185, 128, 0.18);
}

.journey-step.is-active {
  opacity: 1;
}

.journey-step.is-active span {
  background: linear-gradient(135deg, #141f31, #0b1220);
  box-shadow:
    inset 0 0 0 1px rgba(216, 185, 128, 0.26),
    0 12px 28px rgba(216, 185, 128, 0.18);
}

.journey-step.is-active strong {
  color: #0f1826;
}

.journey-panel:hover .journey-step {
  opacity: 0.7;
}

.journey-panel:hover .journey-step.is-active {
  opacity: 0.92;
}

.journey-panel:hover .journey-step:hover {
  opacity: 1;
  transform: translateX(8px);
}

.cta-section {
  padding: 0 0 6rem;
}

.cta-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(216, 185, 128, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 241, 233, 0.92));
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  align-items: start;
  gap: 1.35rem;
}

.booking-intro {
  max-width: 34rem;
}

.booking-feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.booking-feature-list article {
  padding-top: 0.95rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.booking-feature-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.booking-feature-list strong,
.faq-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: #141b25;
}

.booking-feature-list p,
.faq-card p {
  margin: 0;
  color: #5f6b7d;
  font-size: 0.97rem;
  line-height: 1.7;
}

.booking-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.booking-trust-bar span {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  background: rgba(255, 255, 255, 0.56);
  color: #243245;
  font-size: 0.86rem;
  font-weight: 600;
}

.booking-card {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(216, 185, 128, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(9, 14, 22, 0.96), rgba(5, 8, 14, 0.98));
  color: var(--pearl);
  box-shadow: 0 28px 72px rgba(2, 7, 16, 0.34);
}

.contact-panel {
  padding: 1.35rem;
  background:
    radial-gradient(circle at top right, rgba(216, 185, 128, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 243, 236, 0.88));
}

.contact-panel h3 {
  margin: 0.35rem 0 0;
  font-size: 1.55rem;
  letter-spacing: -0.03em;
  color: #141b25;
}

.contact-panel > p {
  margin: 0.8rem 0 0;
  color: #5a6475;
  line-height: 1.75;
}

.contact-panel .button-secondary.glass-effect {
  color: #1a2738;
  background: rgba(17, 24, 39, 0.04);
  border-color: rgba(17, 24, 39, 0.1);
  box-shadow:
    0 14px 30px rgba(4, 9, 19, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.booking-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.booking-kicker {
  color: rgba(216, 185, 128, 0.82);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-card h3 {
  margin: 0.3rem 0 0;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

.booking-mode {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.booking-chip {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.6rem 0.85rem;
  transition:
    border-color var(--ease),
    background-color var(--ease),
    color var(--ease),
    transform var(--ease);
}

.booking-chip.is-active,
.booking-chip:hover,
.booking-chip:focus-visible {
  border-color: rgba(216, 185, 128, 0.32);
  background: rgba(216, 185, 128, 0.12);
  color: var(--champagne);
  transform: translateY(-1px);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.booking-field {
  display: grid;
  gap: 0.48rem;
}

.booking-field-full {
  grid-column: 1 / -1;
}

.booking-field span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--pearl);
  font: inherit;
  padding: 0.95rem 1rem;
  appearance: none;
}

.booking-field textarea {
  resize: vertical;
  min-height: 7rem;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

.booking-field input:focus-visible,
.booking-field select:focus-visible,
.booking-field textarea:focus-visible,
.booking-chip:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
  border-color: rgba(216, 185, 128, 0.45);
  box-shadow: 0 0 0 4px rgba(216, 185, 128, 0.08);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.booking-actions .button {
  flex: 1 1 12rem;
}

.booking-preview {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.booking-preview-label {
  color: rgba(216, 185, 128, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-preview p {
  margin: 0.45rem 0 0;
  color: rgba(244, 239, 231, 0.84);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-panel-notes {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-panel-notes article {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.contact-panel-notes article:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-panel-notes strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #141b25;
}

.contact-panel-notes p {
  margin: 0;
  color: #5f6b7d;
  font-size: 0.95rem;
  line-height: 1.7;
}

.booking-faq {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.faq-card {
  padding: 1.25rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-lg);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.site-footer {
  padding: 2.5rem 0 3rem;
  background: #04070d;
  color: rgba(255, 255, 255, 0.72);
}

.footer-layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-note {
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-links {
  display: grid;
  gap: 0.75rem;
  text-align: right;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  transition: color var(--ease), transform var(--ease);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--pearl);
  transform: translateX(-4px);
}

.reveal {
  --reveal-shift: 30px;
  --reveal-blur: 8px;
  opacity: 0;
  filter: blur(var(--reveal-blur));
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;
}

.reveal.is-visible {
  --reveal-shift: 0px;
  --reveal-blur: 0px;
  opacity: 1;
  filter: blur(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(0.5%, -0.2%, 0);
  }
}

@keyframes heroVideoFloat {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.04) translate3d(0.6%, -0.3%, 0);
  }
}

@media (max-width: 1100px) {
  .hero-content,
  .fleet-layout,
  .journey-layout,
  .booking-shell {
    grid-template-columns: 1fr;
  }

  .post-hero-video-copy {
    padding-bottom: 7.6rem;
  }

  .hero-booking-card {
    width: 100%;
    max-width: 42rem;
  }

  .hero-vehicle {
    right: 4rem;
    top: 15.5rem;
    width: min(42vw, 30rem);
  }

  .hero-booking-primary,
  .hero-booking-secondary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-booking-submit,
  .booking-field-notes {
    grid-column: 1 / -1;
  }

  .about-shell {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .about-copy-rail {
    position: static;
    top: auto;
  }

  .about-heading-panel {
    max-width: 40rem;
    text-align: center;
    margin: 0 auto;
  }

  .about-heading-panel p {
    max-width: 40rem;
  }

  .about-rail-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fleet-shell {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .fleet-copy-rail {
    position: static;
    top: auto;
  }

  .fleet-heading-panel {
    max-width: 40rem;
    text-align: center;
    margin: 0 auto;
  }

  .fleet-heading-panel p {
    max-width: 40rem;
  }

  .fleet-rail-notes {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel {
    max-width: 26rem;
  }

  .about-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-vehicle-stage {
    grid-column: 1 / -1;
    min-height: 22rem;
  }

  .about-card--drift-a,
  .about-card--drift-b {
    grid-column: auto;
    margin-top: 0;
  }

  .about-card--drift-c {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .about-vehicle-image {
    width: min(74%, 34rem);
    right: -10%;
  }

  .about-vehicle-tag--rear {
    right: 5%;
    bottom: 9.2rem;
  }

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

@media (max-width: 860px) {
  .site-nav,
  .button-compact,
  .button-compact.fx-magnetic {
    display: none;
  }

  .nav-shell {
    width: min(calc(100% - 1.4rem), 1240px);
    border-radius: 1.35rem;
  }

  .hero-section {
    padding-top: 5.7rem;
  }

  .post-hero-video-section,
  .post-hero-video-copy {
    min-height: 50svh;
  }

  .post-hero-video-copy {
    padding: 4.75rem 0 7rem;
  }

  .hero-content {
    gap: 1.1rem;
  }

  .hero-copy h1 {
    max-width: 9ch;
  }

  .hero-video {
    object-position: 58% center;
    opacity: 0.88;
  }

  .hero-vehicle {
    right: -8%;
    top: 27.25rem;
    width: min(68vw, 26rem);
    opacity: 0.88;
  }

  .hero-booking-head {
    grid-template-columns: 1fr;
  }

  .hero-booking-meta {
    justify-items: start;
    min-width: 0;
  }

  .hero-booking-primary,
  .hero-booking-secondary {
    grid-template-columns: 1fr;
  }

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

  .hero-booking-actions .button {
    width: 100%;
  }

  .hero-depth-plane--right {
    right: -10%;
    top: 24%;
    width: 10rem;
    height: 12rem;
  }

  .hero-depth-plane--left {
    left: -16%;
    bottom: 14%;
    width: 11rem;
    height: 12rem;
  }

  .booking-card-head {
    flex-direction: column;
  }

  .booking-mode {
    justify-content: flex-start;
  }

  .gallery-card {
    grid-template-columns: 1fr;
  }

  .about-rail-points {
    grid-template-columns: 1fr;
  }

  .about-card--drift-a,
  .about-card--drift-b,
  .about-card--drift-c {
    margin-left: 0;
    margin-right: 0;
  }

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

  .about-vehicle-stage {
    min-height: 21rem;
    padding: 1.2rem;
  }

  .about-vehicle-copy {
    max-width: 15rem;
    padding-bottom: 8.4rem;
  }

  .about-vehicle-specs {
    left: 1.2rem;
    bottom: 1.15rem;
    max-width: 15rem;
  }

  .about-vehicle-image {
    width: min(96%, 28rem);
    right: -14%;
    bottom: 0.8rem;
  }

  .about-vehicle-tag {
    display: none;
  }

  .fleet-rail-notes {
    grid-template-columns: 1fr;
  }

  .fleet-gallery {
    padding-top: 0.6rem;
  }

  .gallery-card--drift-a,
  .gallery-card--drift-b,
  .gallery-card--drift-c,
  .gallery-card--drift-d {
    margin-left: 0;
    margin-right: 0;
  }

  .gallery-card img {
    max-height: 14rem;
  }

  .footer-layout {
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }
}

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

  body::before,
  .site-shell::before,
  .site-shell::after {
    display: none;
  }

  .hero-media {
    transform: scale(1.04);
  }

  .hero-video {
    animation: none;
    opacity: 0.82;
  }

  .hero-depth-plane {
    transform: none;
  }

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

@media (max-width: 640px) {
  .nav-shell {
    padding: 0.72rem 0.78rem;
  }

  .brand-copy {
    font-size: 0.72rem;
  }

  .curve-section {
    margin-top: -2rem;
    padding-top: 5rem;
    border-radius: 1.9rem 1.9rem 0 0;
  }

  .post-hero-video-section,
  .post-hero-video-copy {
    min-height: 44svh;
  }

  .post-hero-video-copy {
    padding: 4rem 0 6rem;
  }

  .post-hero-video-copy h2 {
    font-size: clamp(2.3rem, 10vw, 3.5rem);
  }

  .post-hero-video-copy p {
    font-size: 0.94rem;
  }

  .hero-section {
    min-height: auto;
    padding-bottom: 4.5rem;
  }

  .hero-vehicle {
    right: -26%;
    top: 31rem;
    width: min(102vw, 24rem);
    opacity: 0.48;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-copy h1,
  .section-heading h2,
  .journey-copy h2,
  .booking-intro h2 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
  }

  .hero-copy h1 {
    line-height: 0.94;
  }

  .hero-summary,
  .section-heading p,
  .journey-copy p,
  .booking-intro > p {
    font-size: 0.97rem;
  }

  .hero-booking-card {
    padding: 0.85rem;
    border-radius: 1.2rem;
  }

  .hero-booking-tabs .booking-mode {
    gap: 0.45rem;
  }

  .hero-booking-card .booking-chip {
    min-height: 2.65rem;
    padding-inline: 0.6rem;
    font-size: 0.82rem;
  }

  .hero-booking-card .booking-field input,
  .hero-booking-card .booking-field select {
    min-height: 3.55rem;
  }

  .hero-pills {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-grid,
  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .about-vehicle-stage {
    min-height: 19rem;
    padding: 1.1rem;
  }

  .about-vehicle-copy {
    max-width: none;
    padding-bottom: 8.9rem;
  }

  .about-vehicle-stage h3 {
    max-width: 10.5ch;
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .about-vehicle-stage p {
    max-width: 13rem;
    font-size: 0.9rem;
  }

  .about-vehicle-specs {
    left: 1rem;
    right: 1rem;
    bottom: 0.9rem;
    max-width: none;
    gap: 0.45rem;
  }

  .about-vehicle-specs span {
    font-size: 0.76rem;
    padding: 0.48rem 0.7rem;
  }

  .about-vehicle-image {
    width: min(108%, 24.5rem);
    right: -17%;
    bottom: 1.9rem;
  }

  .info-card,
  .service-card,
  .benefit-card,
  .journey-panel,
  .cta-shell,
  .video-copy {
    padding: 1.2rem;
  }

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

  .fleet-section,
  .journey-section {
    padding: 4.5rem 0;
  }

  .fleet-layout {
    padding-top: 1rem;
  }

  .benefits-section,
  .cta-section {
    padding-bottom: 4.5rem;
  }

  .cta-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cta-actions .button {
    width: 100%;
  }

  .booking-actions {
    flex-direction: column;
  }

  .faq-card {
    padding: 1.2rem;
  }
}

/* Premium refinement layer */
:root {
  --font-ui: "Sora", "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --ink-960: #02050a;
  --ink-940: #050810;
  --ink-920: #09111c;
  --ink-900: #0c1522;
  --ink-860: #132031;
  --champagne: #d7b06d;
  --champagne-strong: #f2dfba;
  --champagne-soft: rgba(215, 176, 109, 0.14);
  --pearl: #f5efe4;
  --pearl-strong: #fff7eb;
  --slate-100: #d8deea;
  --slate-200: #adb6c6;
  --slate-300: #8590a3;
  --surface-night: linear-gradient(180deg, rgba(8, 13, 22, 0.92), rgba(4, 8, 14, 0.88));
  --surface-night-soft: linear-gradient(180deg, rgba(12, 18, 30, 0.82), rgba(7, 12, 20, 0.76));
  --surface-editorial: linear-gradient(180deg, rgba(246, 238, 224, 0.98), rgba(234, 225, 211, 0.96));
  --shadow-xl: 0 44px 110px rgba(0, 0, 0, 0.48);
  --shadow-lg: 0 28px 72px rgba(0, 0, 0, 0.34);
  --border-soft: rgba(255, 255, 255, 0.1);
  --border-dark: rgba(255, 255, 255, 0.08);
}

html {
  background: var(--ink-960);
}

body {
  background:
    radial-gradient(circle at top, rgba(215, 176, 109, 0.1), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(132, 153, 186, 0.08), transparent 18%),
    linear-gradient(180deg, #050810 0%, #03060b 38%, #08111a 100%);
  color: var(--pearl);
}

body::before {
  opacity: 0.22;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(215, 176, 109, 0.08), transparent 16%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.012) 0,
      rgba(255, 255, 255, 0.012) 1px,
      transparent 1px,
      transparent 15px
    );
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 120;
  padding: 0.9rem 1.1rem;
  border-radius: 999px;
  background: rgba(4, 8, 14, 0.96);
  border: 1px solid rgba(242, 223, 186, 0.4);
  color: var(--pearl-strong);
  transform: translateY(-160%);
  transition: transform 220ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(242, 223, 186, 0.9);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(215, 176, 109, 0.15);
}

.nav-shell {
  width: min(calc(100% - 2.2rem), 1160px);
  padding: 0.78rem 1.1rem;
  border-radius: 1.85rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(4, 8, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(30px) saturate(150%);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-shell::after {
  opacity: 0.42;
}

.brand {
  gap: 0.9rem;
}

.brand-seal {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.07);
}

.brand-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-lockup {
  display: grid;
  align-items: center;
  gap: 0.05rem;
}

.brand-mark {
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--pearl-strong);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1;
}

.brand-copy {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: rgba(245, 239, 228, 0.86);
}

.brand-subcopy {
  color: rgba(173, 182, 198, 0.7);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav {
  gap: 1.15rem;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(216, 222, 234, 0.62);
}

.site-nav a::after {
  bottom: -0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 223, 186, 0.72), transparent);
}

.button {
  font-family: var(--font-ui);
  letter-spacing: 0.02em;
}

.button-primary {
  color: #0a1019;
  border-color: rgba(255, 245, 228, 0.62);
  background:
    linear-gradient(180deg, rgba(249, 238, 214, 0.98), rgba(213, 179, 116, 0.86)),
    rgba(255, 255, 255, 0.3);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -12px 24px rgba(111, 79, 24, 0.18);
}

.button-secondary {
  color: var(--pearl-strong);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-section {
  min-height: 112svh;
  padding: 6.8rem 0 6.2rem;
}

.hero-atlas {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(3, 5, 10, 0.2), rgba(3, 5, 10, 0.6)),
    url("./assets/nyx-atlas-grid.svg") center / cover no-repeat;
  opacity: 0.28;
  transform: translate3d(var(--parallax-x, 0px), calc(var(--parallax-y, 0px) * 0.8), -160px) scale(1.08);
  pointer-events: none;
}

.hero-depth-plane {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(10, 16, 26, 0.18);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-depth-plane--left {
  left: -2%;
  bottom: 10%;
  width: min(24vw, 21rem);
  height: min(36vh, 18rem);
}

.hero-depth-plane--right {
  display: block;
  right: -2%;
  top: 18%;
  width: min(18vw, 15rem);
  height: min(24vh, 13rem);
  transform: translate3d(var(--hero-plane-right-x), var(--hero-plane-right-y), -110px) rotate(14deg);
}

.hero-media {
  background: linear-gradient(180deg, rgba(2, 5, 10, 0.08), rgba(2, 5, 10, 0.5));
  animation: none;
}

.hero-media-frame,
.post-hero-video-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video,
.post-hero-video {
  animation: none;
}

.hero-video {
  inset: -4%;
  width: 108%;
  height: 108%;
  filter: saturate(0.72) brightness(0.58) contrast(1.06);
  transform: scale(1.08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 244, 225, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(4, 7, 12, 0.18) 0%, rgba(4, 7, 12, 0.32) 44%, rgba(4, 7, 12, 0.72) 100%);
}

.hero-content {
  grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 0.88fr);
  gap: clamp(1.4rem, 3vw, 2rem);
}

.hero-copy {
  max-width: 40rem;
}

.hero-kicker {
  margin-bottom: 0.9rem;
  color: rgba(245, 239, 228, 0.72);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.journey-copy h2,
.cta-shell h2,
.post-hero-video-copy h2,
.about-vehicle-stage h3,
.contact-panel h3 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
}

.hero-copy h1 {
  max-width: 8.3ch;
  font-size: clamp(4.2rem, 7vw, 7.4rem);
  font-weight: 600;
  line-height: 0.9;
}

.hero-title-line--accent {
  color: var(--pearl-strong);
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(180deg, #f6e8cb 0%, #d7b06d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title-line--accent::before {
  display: none;
}

.hero-summary {
  max-width: 34rem;
  color: rgba(245, 239, 228, 0.78);
  font-size: 1.02rem;
  line-height: 1.78;
}

.hero-crest {
  display: inline-grid;
  place-items: center;
  width: 5rem;
  height: 5rem;
  margin: 1.2rem 0 0;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    rgba(7, 12, 20, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.24);
}

.hero-crest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero-ledger article {
  padding: 0.95rem 1rem 1.02rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(8, 13, 22, 0.68);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.hero-ledger span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(245, 239, 228, 0.58);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-ledger strong {
  color: var(--pearl-strong);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero-pills li {
  background: rgba(5, 10, 17, 0.72);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(245, 239, 228, 0.88);
}

.hero-scroll-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-scroll-note {
  color: rgba(173, 182, 198, 0.72);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-scroll-indicator {
  width: 2.2rem;
  height: 4.3rem;
  flex: 0 0 auto;
}

.hero-vehicle {
  right: clamp(4.6rem, 11vw, 11rem);
  top: clamp(15.4rem, 35vh, 19rem);
  width: min(34vw, 30rem);
}

.hero-vehicle::after {
  opacity: 0.3;
}

.hero-booking-card {
  max-width: 41rem;
  padding: 1.1rem;
  background:
    linear-gradient(180deg, rgba(12, 18, 28, 0.92), rgba(5, 8, 14, 0.9)),
    rgba(8, 14, 24, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-booking-card::before {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%, transparent 72%, rgba(215, 176, 109, 0.08)),
    radial-gradient(circle at top right, rgba(215, 176, 109, 0.16), transparent 28%);
}

.hero-booking-status {
  color: rgba(245, 239, 228, 0.66);
}

.hero-booking-card .booking-field span,
.booking-field span,
.hero-booking-card .booking-field-compact span {
  color: rgba(173, 182, 198, 0.76);
}

.hero-booking-card .booking-field input,
.hero-booking-card .booking-field select,
.hero-booking-card .booking-field-compact {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border-color: rgba(255, 255, 255, 0.09);
  color: var(--pearl-strong);
}

.hero-booking-card .booking-field input::placeholder {
  color: rgba(173, 182, 198, 0.6);
}

.hero-booking-card .booking-chip,
.booking-chip {
  font-family: var(--font-ui);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-booking-card .booking-chip.is-active,
.hero-booking-card .booking-chip:hover,
.hero-booking-card .booking-chip:focus-visible,
.booking-chip[aria-pressed="true"] {
  color: #111924;
  background: linear-gradient(180deg, rgba(247, 232, 201, 0.98), rgba(215, 176, 109, 0.84));
  border-color: rgba(255, 245, 228, 0.5);
}

.hero-booking-submit {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-booking-card .booking-preview {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.hero-booking-card .booking-preview p {
  color: rgba(245, 239, 228, 0.82);
}

.booking-outcome {
  margin: 0.9rem 0 0;
  color: rgba(173, 182, 198, 0.72);
  font-size: 0.82rem;
  line-height: 1.7;
}

.curve-section,
.services-section,
.benefits-section,
.journey-section,
.cta-section {
  background:
    radial-gradient(circle at top, rgba(215, 176, 109, 0.07), transparent 20%),
    linear-gradient(180deg, #060a11 0%, #08101a 100%);
  color: var(--pearl);
}

.curve-section {
  margin-top: -5rem;
  padding-top: 7.6rem;
  border-radius: 2.8rem 2.8rem 0 0;
}

.section-backplate--about,
.section-backplate--services,
.section-backplate--benefits,
.section-backplate--journey,
.section-backplate--contact {
  background:
    radial-gradient(circle at 15% 12%, rgba(215, 176, 109, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  opacity: 0.6;
}

.eyebrow-light {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--champagne);
}

.section-heading h2,
.journey-copy h2,
.booking-intro h2 {
  color: var(--pearl-strong);
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.section-heading p,
.journey-copy p,
.booking-intro > p {
  color: rgba(173, 182, 198, 0.78);
}

.about-heading-panel h2,
.fleet-heading-panel h2 {
  font-size: clamp(3.4rem, 5vw, 5.4rem);
}

.about-point,
.info-card,
.service-card,
.benefit-card,
.journey-panel,
.faq-card,
.contact-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 13, 22, 0.82);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.24);
}

.about-point strong,
.info-card h3,
.service-card h3,
.benefit-card h3,
.booking-feature-list strong,
.faq-card strong,
.contact-panel-notes strong {
  color: var(--pearl-strong);
}

.about-point p,
.info-card p,
.service-card p,
.benefit-card p,
.booking-feature-list p,
.faq-card p,
.contact-panel > p,
.contact-panel-notes p {
  color: rgba(173, 182, 198, 0.76);
}

.card-icon {
  background:
    radial-gradient(circle at 30% 25%, rgba(215, 176, 109, 0.34), transparent 36%),
    linear-gradient(135deg, rgba(19, 30, 47, 0.95), rgba(10, 17, 28, 0.94));
}

.service-card::before {
  background:
    radial-gradient(circle at 0% 0%, rgba(215, 176, 109, 0.12), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(142, 166, 200, 0.08), transparent 26%);
}

.service-badge,
.benefit-value,
.about-vehicle-kicker,
.footer-label {
  color: var(--champagne-strong);
}

.benefit-value {
  font-family: var(--font-ui);
}

.about-vehicle-stage {
  background: var(--surface-editorial);
  border-color: rgba(255, 247, 235, 0.34);
  box-shadow:
    0 34px 84px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.about-vehicle-stage h3,
.about-vehicle-stage p,
.about-vehicle-specs span,
.about-vehicle-tag,
.contact-panel h3,
.contact-panel > p,
.booking-trust-bar span {
  color: #141b25;
}

.about-vehicle-kicker {
  background: rgba(17, 24, 39, 0.08);
  color: #7b6237;
}

.about-vehicle-specs span,
.booking-trust-bar span {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(17, 24, 39, 0.08);
}

.services-section {
  padding-top: 3.6rem;
}

.benefits-section {
  padding-top: 1.8rem;
}

.post-hero-video-section {
  min-height: 66svh;
  background:
    linear-gradient(180deg, rgba(3, 6, 10, 0.96), rgba(6, 10, 17, 0.84)),
    #050910;
}

.post-hero-video-section::before {
  background:
    linear-gradient(180deg, rgba(4, 7, 13, 0.28), transparent 18%),
    radial-gradient(circle at 24% 28%, rgba(215, 176, 109, 0.16), transparent 22%),
    radial-gradient(circle at 78% 34%, rgba(255, 255, 255, 0.05), transparent 18%);
}

.post-hero-video-media {
  transform: translate3d(var(--parallax-x, 0px), calc(var(--parallax-y, 0px) + var(--surface-scrub-y, 0px)), -32px) scale(1.05);
}

.post-hero-video {
  filter: saturate(0.82) brightness(0.56) contrast(1.06);
  transform: scale(1.04);
}

.post-hero-video-copy {
  min-height: 66svh;
  max-width: 38rem;
  padding-bottom: 9rem;
}

.post-hero-video-copy h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 5vw, 5rem);
  color: var(--pearl-strong);
}

.post-hero-video-copy p {
  color: rgba(245, 239, 228, 0.82);
}

.fleet-section {
  background:
    radial-gradient(circle at top, rgba(215, 176, 109, 0.1), transparent 18%),
    linear-gradient(180deg, #050911 0%, #03060b 100%);
}

.fleet-atlas {
  position: absolute;
  inset: 6% 4%;
  z-index: 0;
  border-radius: 2.4rem;
  background: url("./assets/nyx-atlas-grid.svg") center / cover no-repeat;
  opacity: 0.14;
  mix-blend-mode: screen;
  pointer-events: none;
}

.fleet-note {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.08);
}

.video-card,
.gallery-card {
  background: rgba(255, 255, 255, 0.03);
}

.video-frame--still img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.gallery-card {
  grid-template-columns: 186px minmax(0, 1fr);
}

.gallery-seal-panel {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 1.5rem;
  background:
    radial-gradient(circle at center, rgba(215, 176, 109, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(5, 8, 14, 0.94), rgba(10, 17, 28, 0.98));
}

.gallery-seal-image {
  width: min(100%, 8rem);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

.gallery-copy {
  background: linear-gradient(135deg, rgba(5, 8, 14, 0.92), rgba(8, 14, 22, 0.98));
}

.gallery-copy strong {
  color: var(--pearl-strong);
}

.gallery-copy span,
.video-copy p,
.fleet-note p,
.section-heading-dark p {
  color: rgba(216, 222, 234, 0.78);
}

.journey-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(8, 13, 22, 0.78);
}

.journey-step {
  opacity: 0.4;
}

.journey-step strong,
.journey-step p {
  color: rgba(245, 239, 228, 0.9);
}

.journey-step p {
  color: rgba(173, 182, 198, 0.74);
}

.journey-step span {
  background: linear-gradient(135deg, #151f31, #0b111c);
}

.journey-step.is-active {
  opacity: 1;
}

.journey-step.is-active strong {
  color: var(--pearl-strong);
}

.cta-shell {
  background:
    radial-gradient(circle at top right, rgba(215, 176, 109, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(8, 13, 22, 0.92), rgba(4, 8, 14, 0.9));
  border-color: rgba(255, 255, 255, 0.08);
}

.booking-feature-list article,
.contact-panel-notes article {
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-panel {
  background: var(--surface-editorial);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.14);
}

.contact-panel .button-secondary.glass-effect {
  color: #131b26;
}

.site-footer {
  position: relative;
  padding: 3rem 0 3.4rem;
  background:
    radial-gradient(circle at top, rgba(215, 176, 109, 0.12), transparent 18%),
    linear-gradient(180deg, #050810 0%, #02050a 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./assets/nyx-atlas-grid.svg") center / cover no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.footer-layout--expanded {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
  gap: 1.4rem;
}

.footer-brand-block {
  max-width: 34rem;
}

.footer-column,
.footer-links {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-column a,
.footer-links a {
  color: rgba(245, 239, 228, 0.82);
}

.footer-column p,
.footer-note {
  color: rgba(173, 182, 198, 0.72);
}

.footer-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reveal {
  --reveal-shift: 22px;
  --reveal-blur: 0px;
}

@media (max-width: 1100px) {
  .hero-ledger {
    grid-template-columns: 1fr;
    max-width: 24rem;
  }

  .hero-copy {
    max-width: 46rem;
  }

  .footer-layout--expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-nav,
  .button-compact,
  .button-compact.fx-magnetic {
    display: flex;
  }

  .nav-shell {
    width: min(calc(100% - 1rem), 1240px);
    gap: 0.7rem;
    padding: 0.7rem 0.8rem;
  }

  .site-nav {
    flex: 1 1 auto;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .brand-subcopy,
  .button-compact {
    display: none;
  }

  .hero-section {
    padding-top: 6.2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 8.6ch;
  }

  .hero-vehicle {
    right: -2%;
    top: 30rem;
    width: min(70vw, 24rem);
    opacity: 0.72;
  }

  .hero-scroll-meta {
    align-items: flex-start;
  }

  .hero-depth-plane--right {
    top: 20%;
    width: 8rem;
    height: 9rem;
  }

  .post-hero-video-section,
  .post-hero-video-copy {
    min-height: 54svh;
  }

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

@media (max-width: 640px) {
  .brand-mark {
    font-size: 0.8rem;
    letter-spacing: 0.28em;
  }

  .brand-copy {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }

  .hero-copy h1,
  .section-heading h2,
  .journey-copy h2,
  .booking-intro h2,
  .post-hero-video-copy h2 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero-summary,
  .section-heading p,
  .journey-copy p,
  .booking-intro > p {
    font-size: 0.94rem;
  }

  .hero-ledger {
    max-width: none;
  }

  .hero-scroll-indicator {
    display: none;
  }

  .hero-vehicle {
    top: 34rem;
    right: -24%;
    width: min(100vw, 23rem);
    opacity: 0.38;
  }

  .gallery-card {
    grid-template-columns: 1fr;
  }

  .gallery-seal-panel {
    min-height: 12rem;
  }
}

.hero-content {
  align-items: center;
  min-height: calc(100svh - 8.75rem);
  padding-bottom: clamp(1.2rem, 2.6vw, 2.2rem);
  gap: clamp(1.2rem, 2.2vw, 1.8rem);
}

.hero-copy {
  z-index: 2;
  max-width: 40rem;
}

.hero-copy h1 {
  max-width: 8.7ch;
  font-size: clamp(3.35rem, 4.8vw, 5.2rem);
  line-height: 0.92;
  text-wrap: balance;
}

.hero-booking-card {
  max-width: 42rem;
  padding: 0.98rem;
  z-index: 3;
  align-self: center;
}

.hero-booking-head {
  grid-template-columns: 1fr;
  gap: 0.35rem;
  margin-bottom: 0.72rem;
  padding-bottom: 0.75rem;
}

.hero-booking-meta {
  justify-items: start;
  min-width: 0;
  max-width: 22rem;
  padding-top: 0;
}

.hero-booking-primary {
  grid-template-columns: minmax(0, 1.4fr) minmax(8.2rem, 0.8fr) minmax(7.2rem, 0.8fr) minmax(8rem, 0.78fr);
  gap: 0.58rem;
  align-items: end;
}

.hero-booking-card .booking-field {
  display: grid;
  gap: 0.34rem;
}

.hero-booking-card .booking-field span {
  padding-left: 0.12rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
}

.hero-booking-card .booking-field input,
.hero-booking-card .booking-field select {
  min-height: 3.6rem;
  padding: 0.88rem 0.96rem;
  border-radius: 1rem;
  font-size: 0.92rem;
}

.hero-booking-card .booking-field input::placeholder {
  letter-spacing: -0.02em;
}

.hero-booking-submit {
  min-height: 3.6rem;
  align-self: end;
  padding-inline: 0.95rem;
  border-radius: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.hero-booking-actions {
  margin-top: 0.64rem;
}

.hero-booking-actions .button {
  min-height: 2.95rem;
  font-size: 0.88rem;
}

.hero-booking-card .booking-preview {
  margin-top: 0.64rem;
  padding: 0.86rem 0.96rem 0.92rem;
}

.booking-outcome {
  max-width: 30rem;
  margin-top: 0.72rem;
  font-size: 0.76rem;
  line-height: 1.55;
}

.hero-vehicle {
  top: auto;
  right: clamp(-1.25rem, 0.8vw, 0.8rem);
  bottom: clamp(-2.1rem, -2.8vw, -0.4rem);
  width: min(28vw, 22rem);
  z-index: 1;
  opacity: 0.72;
  transform-origin: 62% 100%;
}

.hero-vehicle::before {
  inset: auto 18% 5% 24%;
  height: 1rem;
  opacity: 0.56;
}

.hero-vehicle::after {
  inset: 24% 18% 18% 12%;
  opacity: 0.22;
}

.hero-vehicle-image {
  filter:
    drop-shadow(0 28px 34px rgba(0, 0, 0, 0.26))
    saturate(0.94)
    contrast(1.02);
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, #000 14%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, #000 14%, #000 84%, transparent 100%);
}

.hero-depth-plane--right {
  display: none;
}

.package-signature {
  margin-top: 1.5rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(10, 16, 26, 0.74);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.package-signature p {
  margin: 0;
  max-width: 42rem;
  color: rgba(245, 239, 228, 0.82);
  font-size: 1rem;
  line-height: 1.72;
}

.package-signature .booking-trust-bar {
  margin-top: 1rem;
}

.package-groups {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.25rem;
}

.package-cluster {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.75rem;
  background:
    radial-gradient(circle at top left, rgba(215, 176, 109, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(8, 13, 21, 0.8);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.2);
}

.package-cluster--vip {
  background:
    radial-gradient(circle at top left, rgba(215, 176, 109, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(18, 26, 40, 0.96), rgba(6, 10, 17, 0.98));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.28);
}

.package-cluster-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.package-cluster-copy {
  max-width: 34rem;
}

.package-cluster-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.package-cluster-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.7vw, 2.45rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.package-cluster-copy p {
  margin: 0.85rem 0 0;
  color: rgba(245, 239, 228, 0.72);
  line-height: 1.72;
}

.package-trust-bar {
  justify-content: flex-end;
  max-width: 28rem;
  margin-top: 0;
}

.package-trust-bar span,
.benefits-trust-bar span {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(245, 239, 228, 0.86);
}

.services-grid--packages {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.package-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.package-card-top .service-badge {
  margin-bottom: 0;
  background: rgba(245, 239, 228, 0.1);
  color: var(--champagne-strong);
}

.package-price {
  margin: 0;
  color: var(--pearl-strong);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.package-card h3 {
  margin-bottom: 0.6rem;
}

.package-details {
  display: grid;
  gap: 0.56rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.package-details li {
  position: relative;
  padding-left: 1rem;
  color: rgba(245, 239, 228, 0.84);
  font-size: 0.93rem;
  line-height: 1.56;
}

.package-details li::before {
  content: "";
  position: absolute;
  top: 0.52rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--champagne);
  box-shadow: 0 0 0 0.2rem rgba(215, 176, 109, 0.12);
}

.package-note {
  margin: auto 0 0;
  padding-top: 1rem;
  color: rgba(215, 176, 109, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-cluster .service-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(8, 14, 22, 0.62);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
}

.package-cluster .service-card p {
  color: rgba(245, 239, 228, 0.72);
}

.package-cluster .service-card:hover {
  border-color: rgba(215, 176, 109, 0.28);
  box-shadow: 0 28px 62px rgba(0, 0, 0, 0.24);
}

.package-cluster--vip .package-cluster-copy p {
  color: rgba(245, 239, 228, 0.76);
}

.benefits-grid--addons {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefits-trust-bar {
  justify-content: center;
  margin-top: 1.4rem;
}

.booking-keyline {
  max-width: 34rem;
  color: var(--pearl-strong);
  font-size: 0.96rem;
  font-weight: 600;
}

.hero-section {
  min-height: 98svh;
  padding: 5.9rem 0 3rem;
}

.section-heading h2,
.journey-copy h2,
.booking-intro h2 {
  font-size: clamp(2.45rem, 4vw, 4.1rem);
}

.about-heading-panel h2,
.fleet-heading-panel h2 {
  font-size: clamp(2.75rem, 4.4vw, 4.5rem);
}

.post-hero-video-copy {
  min-height: 56svh;
  padding: 4.2rem 0 5.6rem;
}

.post-hero-video-copy h2 {
  max-width: 10.5ch;
  font-size: clamp(2.6rem, 4.2vw, 4rem);
  line-height: 0.96;
}

.post-hero-video-copy p {
  max-width: 28rem;
  font-size: 0.96rem;
}

@media (max-width: 1100px) {
  .hero-content {
    min-height: auto;
    padding-bottom: 2.6rem;
  }

  .hero-booking-primary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-cluster-head {
    flex-direction: column;
  }

  .package-trust-bar {
    justify-content: flex-start;
    max-width: none;
  }

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

  .hero-vehicle {
    right: 0.2rem;
    bottom: -2.6rem;
    width: min(42vw, 21rem);
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
    padding: 5.4rem 0 2.4rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.05rem;
    padding-bottom: 2.2rem;
  }

  .hero-booking-card {
    max-width: 100%;
    align-self: stretch;
  }

  .hero-booking-primary {
    grid-template-columns: 1fr;
  }

  .services-grid--packages,
  .benefits-grid--addons {
    grid-template-columns: 1fr;
  }

  .hero-vehicle {
    right: -10%;
    bottom: -0.4rem;
    width: min(66vw, 20rem);
    opacity: 0.58;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
    align-items: center;
    row-gap: 0.55rem;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
  }

  .site-nav {
    grid-area: nav;
    justify-content: flex-start;
    gap: 0.85rem;
    padding-top: 0.55rem;
    margin-top: 0.05rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .site-nav a:nth-child(2) {
    display: none;
  }

  .button-compact,
  .button-compact.fx-magnetic {
    display: inline-flex;
    grid-area: cta;
    min-height: 2.7rem;
    padding-inline: 0.95rem;
    font-size: 0.84rem;
  }

  .brand-mark {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
  }

  .hero-copy h1 {
    max-width: 7.6ch;
    font-size: clamp(2.95rem, 11.8vw, 4.25rem);
  }

  .hero-booking-card {
    padding: 0.88rem;
  }

  .hero-booking-submit {
    min-height: 3.45rem;
  }

  .hero-vehicle {
    right: -16%;
    bottom: -0.2rem;
    width: min(80vw, 19rem);
    opacity: 0.42;
  }

  .hero-kicker {
    max-width: 19rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .hero-summary {
    max-width: 19rem;
    font-size: 0.92rem;
  }

  .hero-ledger article {
    padding: 0.82rem 0.9rem;
  }

  .post-hero-video-copy {
    padding: 3.6rem 0 5.1rem;
  }

  .post-hero-video-copy h2 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
}

/* Final fold refinement */
html {
  background: #050810;
}

body {
  font-family: var(--font-ui);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main [id],
#booking-form {
  scroll-margin-top: 7.75rem;
}

.nav-shell {
  background: linear-gradient(180deg, rgba(13, 19, 29, 0.9), rgba(9, 14, 22, 0.84));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.hero-section {
  min-height: 96svh;
  padding: 5.55rem 0 2.65rem;
}

.hero-media {
  background: linear-gradient(180deg, rgba(2, 5, 10, 0.04), rgba(2, 5, 10, 0.42));
}

.hero-video {
  inset: -3%;
  width: 106%;
  height: 106%;
  object-position: center 42%;
  filter: saturate(0.8) brightness(0.66) contrast(1.08);
  transform: scale(1.06);
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(4, 7, 12, 0.84) 0%,
      rgba(4, 7, 12, 0.74) 34%,
      rgba(4, 7, 12, 0.34) 68%,
      rgba(4, 7, 12, 0.5) 100%
    ),
    linear-gradient(180deg, rgba(4, 7, 12, 0.16) 0%, rgba(4, 7, 12, 0.28) 42%, rgba(4, 7, 12, 0.74) 100%);
}

.hero-content {
  grid-template-columns: minmax(0, 1.02fr) minmax(23rem, 0.82fr);
  align-items: end;
  min-height: calc(100svh - 9.75rem);
  padding-top: 0.8rem;
  padding-bottom: 1.5rem;
  gap: clamp(1.2rem, 1.9vw, 1.65rem);
}

.hero-atlas,
.hero-media,
.hero-copy,
.hero-panel,
.hero-booking-card,
.hero-vehicle {
  --parallax-x: 0px;
  --parallax-y: 0px;
}

.hero-copy {
  max-width: 41rem;
  padding-bottom: clamp(2rem, 4vh, 3.35rem);
}

.hero-kicker {
  max-width: 34rem;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(3.45rem, 4.85vw, 5.45rem);
  line-height: 0.9;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.hero-title-line {
  width: max-content;
  white-space: nowrap;
}

.hero-summary {
  max-width: 33rem;
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-ledger {
  max-width: 37rem;
}

.hero-booking-card {
  max-width: 39rem;
  margin-bottom: clamp(0.75rem, 3.3vh, 2.4rem);
  padding: 1rem;
}

.hero-booking-head {
  margin-bottom: 0.78rem;
  padding-bottom: 0.82rem;
}

.hero-booking-meta {
  max-width: 24rem;
}

.hero-booking-primary {
  grid-template-columns: minmax(0, 1.12fr) minmax(8rem, 0.76fr) minmax(9.4rem, auto);
  gap: 0.62rem;
}

.hero-booking-submit {
  justify-self: stretch;
}

.hero-booking-actions {
  gap: 0.55rem;
}

.hero-booking-actions .button {
  flex: 1 1 0;
}

.hero-booking-card .booking-preview {
  padding: 0.82rem 0.94rem 0.9rem;
}

.hero-vehicle {
  right: clamp(-2rem, 0.2vw, 0.3rem);
  bottom: clamp(-2.35rem, -2.6vw, -0.6rem);
  width: min(27vw, 21.5rem);
  opacity: 0.66;
}

@media (max-width: 1100px) {
  .hero-content {
    align-items: start;
    min-height: auto;
    padding-top: 0;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-booking-card {
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  .hero-section {
    min-height: auto;
    padding: 5.2rem 0 2.3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: stretch;
    min-height: auto;
    padding-bottom: 2rem;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(3.05rem, 8vw, 4.7rem);
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-booking-card {
    max-width: 100%;
  }

  .hero-booking-primary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  main [id],
  #booking-form {
    scroll-margin-top: 8.75rem;
  }

  .brand-mark {
    font-size: 0.94rem;
    letter-spacing: 0.14em;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.55rem, 10vw, 3.75rem);
    text-shadow: none;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  .hero-summary {
    max-width: 19rem;
    font-size: 0.9rem;
  }

  .hero-booking-card {
    padding: 0.9rem;
  }

  .hero-booking-card .booking-preview {
    padding-inline: 0.82rem;
  }
}

/* Unified glass button polish */
.button {
  min-height: 3.1rem;
  padding: 0.98rem 1.32rem;
  border-radius: 999px;
  color: var(--pearl-strong);
  font-weight: 650;
  letter-spacing: 0.018em;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01) 52%, rgba(215, 176, 109, 0.09)),
    rgba(8, 12, 20, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px) saturate(185%);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -12px 22px rgba(4, 8, 14, 0.16);
}

.button::before {
  z-index: 0;
  opacity: 0.82;
  background:
    linear-gradient(115deg, transparent 14%, rgba(255, 255, 255, 0.32) 44%, rgba(255, 255, 255, 0.08) 55%, transparent 76%);
}

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, transparent 52%, rgba(242, 223, 186, 0.09));
  opacity: 0.9;
}

.button:hover,
.button:focus-visible {
  --button-lift: -3px;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 22px 52px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -12px 24px rgba(4, 8, 14, 0.16);
}

.button-primary,
.hero-booking-submit {
  color: var(--pearl-strong);
  border-color: rgba(242, 223, 186, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.18), rgba(215, 176, 109, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03) 52%, rgba(215, 176, 109, 0.18)),
    rgba(10, 16, 26, 0.42);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    inset 0 -16px 26px rgba(111, 79, 24, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible,
.hero-booking-submit:hover,
.hero-booking-submit:focus-visible {
  border-color: rgba(242, 223, 186, 0.34);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -18px 28px rgba(111, 79, 24, 0.18);
}

.button-secondary {
  color: rgba(245, 239, 228, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(180, 205, 236, 0.08), transparent 58%, rgba(255, 255, 255, 0.05)),
    rgba(6, 10, 18, 0.34);
  border-color: rgba(255, 255, 255, 0.12);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
}

.button-compact {
  min-height: 2.82rem;
  padding-inline: 1.08rem;
  font-size: 0.84rem;
}

.hero-booking-submit {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button-row .button,
.cta-actions .button {
  min-width: clamp(11.5rem, 14vw, 13rem);
}

.hero-booking-actions .button {
  min-width: 0;
}

.hero-booking-card .button,
.hero-booking-card .button-secondary {
  backdrop-filter: blur(26px) saturate(190%);
}

.contact-panel .button {
  color: #141c26;
  border-color: rgba(20, 28, 38, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(215, 176, 109, 0.12) 70%, rgba(20, 28, 38, 0.03)),
    rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    0 16px 36px rgba(17, 24, 39, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    inset 0 -12px 20px rgba(215, 176, 109, 0.06);
}

.contact-panel .button-primary {
  border-color: rgba(123, 98, 55, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.56), rgba(242, 223, 186, 0.2)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(215, 176, 109, 0.12)),
    rgba(255, 255, 255, 0.14);
}

.contact-panel .button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.16)),
    linear-gradient(135deg, rgba(182, 206, 236, 0.14), rgba(255, 255, 255, 0.16)),
    rgba(255, 255, 255, 0.08);
}

.contact-panel .button:hover,
.contact-panel .button:focus-visible {
  border-color: rgba(123, 98, 55, 0.22);
  box-shadow:
    0 20px 42px rgba(17, 24, 39, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -14px 24px rgba(215, 176, 109, 0.08);
}

@media (max-width: 900px) {
  .button-row .button,
  .cta-actions .button {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .button-row {
    flex-direction: column;
  }

  .button-row .button,
  .cta-actions .button,
  .hero-booking-actions .button {
    width: 100%;
  }
}

/* Three-section redesign */
body.nyx-three-section {
  --font-ui: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Bodoni Moda", Georgia, serif;
  --nyx-canvas: #050608;
  --nyx-panel: rgba(13, 15, 18, 0.82);
  --nyx-panel-soft: rgba(20, 22, 27, 0.72);
  --nyx-panel-strong: rgba(18, 20, 24, 0.92);
  --nyx-border: rgba(255, 255, 255, 0.11);
  --nyx-border-strong: rgba(214, 188, 144, 0.22);
  --nyx-copy: rgba(240, 232, 220, 0.84);
  --nyx-copy-soft: rgba(208, 198, 185, 0.68);
  --nyx-brass: #d6bc90;
  --nyx-brass-soft: rgba(214, 188, 144, 0.14);
  --nyx-glass:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01) 56%, rgba(214, 188, 144, 0.1)),
    rgba(11, 13, 17, 0.46);
  background:
    radial-gradient(circle at top, rgba(214, 188, 144, 0.09), transparent 24%),
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.045), transparent 18%),
    linear-gradient(180deg, #07080a 0%, #040507 38%, #090b0f 100%);
  color: var(--pearl-strong);
}

body.nyx-three-section::before {
  opacity: 0.2;
  background:
    radial-gradient(circle at 18% 12%, rgba(214, 188, 144, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 28%);
}

.nyx-three-section .site-shell::before,
.nyx-three-section .site-shell::after,
.nyx-three-section .fx-glint::after,
.nyx-three-section .fx-shimmer::before,
.nyx-three-section .fx-noise-overlay::before {
  display: none;
}

.nyx-three-section .container {
  width: min(calc(100% - 2rem), 1180px);
}

.nyx-three-section main [id],
.nyx-three-section #booking-form {
  scroll-margin-top: 7.5rem;
}

.nyx-three-section .site-header {
  padding-top: 0.75rem;
}

.nyx-three-section .nav-shell {
  width: min(calc(100% - 2rem), 1160px);
  padding: 0.82rem 1rem;
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    rgba(9, 11, 14, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(28px) saturate(140%);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nyx-three-section .brand {
  gap: 0.8rem;
}

.nyx-three-section .brand-lockup {
  display: grid;
  gap: 0.06rem;
}

.nyx-three-section .brand-seal {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.08);
}

.nyx-three-section .brand-mark {
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pearl-strong);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.nyx-three-section .brand-copy {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(244, 239, 231, 0.82);
}

.nyx-three-section .brand-subcopy {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: rgba(173, 182, 198, 0.64);
}

.nyx-three-section .site-nav {
  gap: 1rem;
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 232, 220, 0.58);
}

.nyx-three-section .site-nav a::after {
  bottom: -0.45rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 188, 144, 0.72), transparent);
}

.nyx-three-section .button {
  min-height: 3rem;
  padding: 0.92rem 1.28rem;
  border-radius: 999px;
  color: var(--pearl-strong);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  background: var(--nyx-glass);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(22px) saturate(165%);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -12px 24px rgba(2, 4, 7, 0.18);
}

.nyx-three-section .button::before {
  opacity: 0.72;
}

.nyx-three-section .button:hover,
.nyx-three-section .button:focus-visible {
  --button-lift: -3px;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -14px 26px rgba(2, 4, 7, 0.2);
}

.nyx-three-section .button-primary {
  border-color: rgba(214, 188, 144, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.18), rgba(214, 188, 144, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02) 56%, rgba(214, 188, 144, 0.16)),
    rgba(15, 18, 23, 0.48);
}

.nyx-three-section .button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(196, 214, 236, 0.07), rgba(255, 255, 255, 0.02) 58%, rgba(255, 255, 255, 0.04)),
    rgba(9, 11, 15, 0.42);
}

.nyx-three-section .button-compact {
  min-height: 2.8rem;
  padding-inline: 1rem;
  font-size: 0.82rem;
}

.nyx-three-section .hero-section {
  min-height: 100svh;
  padding: 7rem 0 4rem;
  overflow: clip;
}

.nyx-three-section .hero-atlas {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background:
    linear-gradient(180deg, rgba(4, 5, 7, 0.2), rgba(4, 5, 7, 0.66)),
    url("./assets/nyx-atlas-grid.svg") center / cover no-repeat;
}

.nyx-three-section .hero-media {
  position: absolute;
  inset: 1rem;
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  animation: none;
}

.nyx-three-section .hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.84) 0%, rgba(6, 7, 9, 0.7) 34%, rgba(6, 7, 9, 0.46) 58%, rgba(6, 7, 9, 0.82) 100%),
    radial-gradient(circle at 84% 38%, rgba(0, 0, 0, 0.38), transparent 24%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.08) 0%, rgba(5, 6, 8, 0.68) 100%);
}

.nyx-three-section .hero-media-frame {
  position: absolute;
  inset: 0;
}

.nyx-three-section .hero-video {
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: 36% 54%;
  filter: saturate(0.7) brightness(0.48) contrast(1.08);
  transform: scale(1.06);
}

.nyx-three-section .hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(214, 188, 144, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.06) 0%, rgba(5, 6, 8, 0.58) 100%);
}

.nyx-three-section .hero-content.reserve-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(22rem, 0.72fr);
  gap: clamp(1.4rem, 2vw, 2rem);
  align-items: end;
  min-height: calc(100svh - 11rem);
}

.nyx-three-section .reserve-copy {
  max-width: 42rem;
  padding: clamp(2rem, 8vh, 4rem) 0 clamp(1.5rem, 4vh, 2.4rem);
}

.nyx-three-section .hero-eyebrow {
  margin-bottom: 1rem;
  padding: 0.38rem 0.86rem;
  border: 1px solid rgba(214, 188, 144, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--nyx-brass);
}

.nyx-three-section .hero-copy h1 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7.2rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.nyx-three-section .hero-title-line {
  display: block;
}

.nyx-three-section .hero-title-line--accent {
  color: var(--pearl-strong);
  background: linear-gradient(180deg, #fbf2e4 0%, #d6bc90 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nyx-three-section .hero-kicker {
  margin: 0 0 1rem;
  max-width: 28rem;
  color: rgba(240, 232, 220, 0.62);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nyx-three-section .hero-summary {
  max-width: 33rem;
  margin-top: 1.4rem;
  color: var(--nyx-copy);
  font-size: 1rem;
  line-height: 1.78;
  text-wrap: balance;
}

.nyx-three-section .reserve-actions {
  margin-top: 1.8rem;
}

.nyx-three-section .reserve-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  max-width: 46rem;
  margin-top: 1.8rem;
}

.nyx-three-section .reserve-proof-strip article {
  padding: 1rem 1rem 1.1rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(10, 12, 16, 0.56);
  backdrop-filter: blur(18px);
}

.nyx-three-section .reserve-proof-strip span,
.nyx-three-section .experience-fact h3,
.nyx-three-section .booking-kicker,
.nyx-three-section .booking-preview-label {
  color: var(--nyx-brass);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nyx-three-section .reserve-proof-strip strong {
  display: block;
  margin-top: 0.55rem;
  color: rgba(248, 244, 238, 0.92);
  font-size: 0.94rem;
  line-height: 1.45;
}

.nyx-three-section .reserve-hero-note {
  margin-top: 1rem;
  color: var(--nyx-copy-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.nyx-three-section .reserve-panel {
  position: relative;
  padding: 1.2rem;
  border-radius: 1.7rem;
  border: 1px solid var(--nyx-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(24px) saturate(145%);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nyx-three-section .reserve-panel::after {
  content: "";
  position: absolute;
  inset: 0.8rem;
  border-radius: 1.12rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.nyx-three-section .reserve-panel-seal {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(14, 16, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.nyx-three-section .reserve-panel-seal img {
  width: 2rem;
  height: 2rem;
}

.nyx-three-section .reserve-panel-title {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.nyx-three-section .reserve-panel-copy {
  margin: 0.9rem 0 0;
  color: var(--nyx-copy);
  font-size: 0.98rem;
  line-height: 1.72;
}

.nyx-three-section .reserve-panel-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.nyx-three-section .reserve-panel-list article {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.nyx-three-section .reserve-panel-list strong,
.nyx-three-section .experience-path h3,
.nyx-three-section .experience-stage h3,
.nyx-three-section .concierge-step strong,
.nyx-three-section .concierge-copy h2 {
  color: var(--pearl-strong);
}

.nyx-three-section .reserve-panel-list p {
  margin: 0.38rem 0 0;
  color: var(--nyx-copy-soft);
  line-height: 1.6;
}

.nyx-three-section .experience-section,
.nyx-three-section .concierge-section {
  position: relative;
  padding: 2.25rem 0 5.4rem;
}

.nyx-three-section .section-backplate--services,
.nyx-three-section .section-backplate--contact {
  inset: 1rem 0.75rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01)),
    rgba(10, 12, 16, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.04);
  opacity: 1;
}

.nyx-three-section .experience-shell,
.nyx-three-section .concierge-shell {
  position: relative;
  z-index: 1;
}

.nyx-three-section .experience-intro,
.nyx-three-section .concierge-copy {
  max-width: 42rem;
}

.nyx-three-section .experience-intro h2,
.nyx-three-section .concierge-copy h2 {
  margin: 0.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.6vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: -0.035em;
}

.nyx-three-section .experience-intro p,
.nyx-three-section .concierge-copy p {
  color: var(--nyx-copy);
  line-height: 1.75;
}

.nyx-three-section .experience-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.1rem;
}

.nyx-three-section .experience-path,
.nyx-three-section .experience-fact,
.nyx-three-section .concierge-step,
.nyx-three-section .concierge-form-card {
  border-radius: 1.45rem;
  border: 1px solid var(--nyx-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(12, 14, 18, 0.72);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nyx-three-section .experience-path {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
}

.nyx-three-section .package-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nyx-three-section .service-badge {
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 188, 144, 0.18);
  background: rgba(214, 188, 144, 0.06);
  color: var(--nyx-brass);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nyx-three-section .package-price {
  color: rgba(248, 244, 238, 0.92);
}

.nyx-three-section .experience-path p,
.nyx-three-section .package-details li,
.nyx-three-section .experience-fact p,
.nyx-three-section .concierge-step p,
.nyx-three-section .hero-booking-status,
.nyx-three-section .booking-outcome,
.nyx-three-section .booking-preview p,
.nyx-three-section .booking-field span,
.nyx-three-section .concierge-call-link {
  color: var(--nyx-copy-soft);
}

.nyx-three-section .package-details {
  gap: 0.62rem;
  margin-top: 0.1rem;
}

.nyx-three-section .package-details li::before {
  box-shadow: 0 0 0 0.18rem rgba(214, 188, 144, 0.1);
}

.nyx-three-section .experience-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

.nyx-three-section .experience-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 1fr);
  align-items: end;
  gap: 1.2rem;
  padding: 1.3rem;
  border-radius: 1.65rem;
  border: 1px solid var(--nyx-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(12, 14, 17, 0.76);
}

.nyx-three-section .experience-stage-copy p {
  max-width: 26rem;
}

.nyx-three-section .experience-stage-media {
  position: relative;
  min-height: 17rem;
  border-radius: 1.3rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 50% 14%, rgba(214, 188, 144, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(7, 9, 12, 0.42), rgba(7, 9, 12, 0.8));
}

.nyx-three-section .experience-stage-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.92) brightness(0.82);
}

.nyx-three-section .experience-notes {
  display: grid;
  gap: 1rem;
}

.nyx-three-section .experience-fact {
  padding: 1.15rem;
}

.nyx-three-section .concierge-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(20rem, 0.72fr);
  gap: 1.2rem;
  align-items: start;
}

.nyx-three-section .booking-keyline {
  max-width: 32rem;
  color: rgba(248, 244, 238, 0.9);
  font-size: 1rem;
  font-weight: 600;
}

.nyx-three-section .concierge-steps {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.nyx-three-section .concierge-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  padding: 1rem 1.1rem;
}

.nyx-three-section .concierge-step span {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(214, 188, 144, 0.08);
  border: 1px solid rgba(214, 188, 144, 0.14);
  color: var(--nyx-brass);
  font-size: 0.78rem;
  font-weight: 700;
}

.nyx-three-section .concierge-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3rem;
}

.nyx-three-section .concierge-proof span {
  padding: 0.66rem 0.86rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(244, 239, 231, 0.82);
  font-size: 0.84rem;
}

.nyx-three-section .concierge-form-card {
  padding: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(10, 12, 16, 0.8);
  backdrop-filter: blur(24px) saturate(145%);
}

.nyx-three-section .hero-booking-head {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nyx-three-section .booking-field {
  display: grid;
  gap: 0.45rem;
}

.nyx-three-section .concierge-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.nyx-three-section .booking-field span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nyx-three-section .booking-field input,
.nyx-three-section .booking-field select {
  min-height: 3.45rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 10, 13, 0.82);
  color: var(--pearl-strong);
}

.nyx-three-section .booking-field select {
  appearance: none;
}

.nyx-three-section .hero-booking-submit {
  width: 100%;
  margin-top: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nyx-three-section .booking-preview {
  margin-top: 0.9rem;
  padding: 0.92rem 0.96rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.nyx-three-section .concierge-utilities {
  margin-top: 0.85rem;
}

.nyx-three-section .concierge-call-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-weight: 600;
}

.nyx-three-section .booking-outcome {
  margin-top: 0.9rem;
  line-height: 1.68;
}

.nyx-three-section .minimal-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0 2rem;
}

.nyx-three-section .minimal-footer .footer-note {
  margin: 0;
  color: var(--nyx-copy-soft);
}

.nyx-three-section .minimal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.nyx-three-section .minimal-footer-links a {
  color: rgba(240, 232, 220, 0.74);
  font-size: 0.88rem;
}

@media (max-width: 1024px) {
  .nyx-three-section .hero-content.reserve-stage,
  .nyx-three-section .concierge-shell,
  .nyx-three-section .experience-editorial,
  .nyx-three-section .experience-stage {
    grid-template-columns: 1fr;
  }

  .nyx-three-section .experience-paths,
  .nyx-three-section .concierge-form-grid {
    grid-template-columns: 1fr;
  }

  .nyx-three-section .reserve-proof-strip {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }

  .nyx-three-section .reserve-copy {
    padding-bottom: 0;
  }

  .nyx-three-section .minimal-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nyx-three-section .minimal-footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.76rem 0.85rem;
  }

  .nyx-three-section .site-nav {
    display: none;
  }

  .nyx-three-section .hero-section {
    min-height: auto;
    padding: 6rem 0 3.1rem;
  }

  .nyx-three-section .hero-media {
    inset: 0.8rem;
    border-radius: 1.5rem;
  }

  .nyx-three-section .hero-copy h1,
  .nyx-three-section .experience-intro h2,
  .nyx-three-section .concierge-copy h2 {
    font-size: clamp(3rem, 12vw, 4.6rem);
  }

  .nyx-three-section .reserve-panel,
  .nyx-three-section .experience-path,
  .nyx-three-section .experience-fact,
  .nyx-three-section .concierge-step,
  .nyx-three-section .concierge-form-card {
    border-radius: 1.25rem;
  }
}

@media (max-width: 640px) {
  .nyx-three-section .container {
    width: min(calc(100% - 1.2rem), 1180px);
  }

  .nyx-three-section .hero-copy h1 {
    max-width: 6.8ch;
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .nyx-three-section .hero-title-line--accent,
  .nyx-three-section .hero-title-line {
    white-space: normal;
  }

  .nyx-three-section .hero-summary,
  .nyx-three-section .reserve-panel-copy,
  .nyx-three-section .experience-intro p,
  .nyx-three-section .concierge-copy p {
    font-size: 0.94rem;
  }

  .nyx-three-section .button-row {
    flex-direction: column;
  }

  .nyx-three-section .button-row .button,
  .nyx-three-section .button-compact,
  .nyx-three-section .hero-booking-submit {
    width: 100%;
  }
}

/* Three-section luxury reset */
:root {
  --font-ui: "Manrope", "SF Pro Display", "Segoe UI", sans-serif;
  --font-display: "Bodoni Moda", Georgia, serif;
  --ink-960: #040507;
  --ink-940: #090b0f;
  --ink-920: #11141a;
  --ink-900: #171b22;
  --champagne: #b6915f;
  --champagne-strong: #e7d2b0;
  --pearl: #f3ece1;
  --pearl-strong: #fffaf1;
  --slate-200: #b0a89f;
  --slate-300: #938b82;
}

html {
  background: var(--ink-960);
}

body {
  background:
    radial-gradient(circle at 50% -10%, rgba(182, 145, 95, 0.16), transparent 28%),
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.04), transparent 16%),
    linear-gradient(180deg, #050608 0%, #080a0d 38%, #10141b 100%);
  color: var(--pearl);
}

body::before {
  opacity: 0.2;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(182, 145, 95, 0.08), transparent 18%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.028), transparent 20%);
}

.site-shell::before,
.site-shell::after {
  opacity: 0.16;
}

.ambient-layer,
.hero-depth-plane,
.hero-ornament,
.hero-scroll-meta,
.hero-pills,
.hero-vehicle,
.post-hero-video-section,
.hero-kicker {
  display: none !important;
}

.fx-glint::before,
.fx-glint::after,
.fx-scroll-indicator::before,
.fx-scroll-indicator::after {
  display: none !important;
}

.nav-shell {
  width: min(calc(100% - 2rem), 1120px);
  padding: 0.86rem 1rem;
  border-radius: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(9, 10, 13, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px) saturate(135%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.is-scrolled .nav-shell {
  background: rgba(8, 10, 12, 0.84);
}

.brand {
  gap: 0.8rem;
}

.brand-seal {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 0.92rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(9, 12, 17, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-mark {
  color: var(--pearl-strong);
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.32em;
}

.brand-copy {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
}

.brand-subcopy {
  color: rgba(176, 168, 159, 0.72);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
}

.site-nav {
  gap: 1rem;
  color: rgba(243, 236, 225, 0.68);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.4rem 0;
}

.site-nav a::after {
  bottom: -0.22rem;
}

.button,
.button-primary,
.button-secondary {
  color: var(--pearl-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(182, 145, 95, 0.14) 72%, rgba(255, 255, 255, 0.03)),
    rgba(14, 17, 22, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -12px 20px rgba(3, 5, 8, 0.16);
}

.button::after {
  opacity: 0.74;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, transparent 58%, rgba(231, 210, 176, 0.08));
}

.button-primary {
  border-color: rgba(182, 145, 95, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(231, 210, 176, 0.16), rgba(182, 145, 95, 0.2) 72%, rgba(255, 255, 255, 0.04)),
    rgba(16, 18, 24, 0.54);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(141, 151, 165, 0.08) 72%, rgba(255, 255, 255, 0.03)),
    rgba(12, 15, 21, 0.42);
}

.button:hover,
.button:focus-visible {
  --button-lift: -2px;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -12px 22px rgba(3, 5, 8, 0.18);
}

.button-compact {
  min-height: 2.9rem;
}

.hero-section.reserve-hero {
  min-height: 100svh;
  padding: 6.2rem 0 4rem;
}

.hero-atlas {
  opacity: 0.16;
}

.hero-media {
  background: linear-gradient(180deg, rgba(2, 4, 8, 0.08), rgba(2, 4, 8, 0.46));
}

.hero-video {
  inset: -3%;
  width: 106%;
  height: 106%;
  object-position: 44% 46%;
  filter: saturate(0.68) brightness(0.5) contrast(1.08);
  transform: scale(1.08);
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(4, 5, 8, 0.94) 0%,
      rgba(4, 5, 8, 0.84) 34%,
      rgba(4, 5, 8, 0.42) 66%,
      rgba(4, 5, 8, 0.86) 100%
    ),
    radial-gradient(circle at 84% 36%, rgba(4, 5, 8, 0.74), transparent 18%),
    linear-gradient(180deg, rgba(4, 5, 8, 0.12) 0%, rgba(4, 5, 8, 0.28) 42%, rgba(4, 5, 8, 0.8) 100%);
}

.reserve-stage {
  grid-template-columns: minmax(0, 1.04fr) minmax(21rem, 0.72fr);
  align-items: center;
  min-height: calc(100svh - 8.2rem);
  gap: clamp(1.25rem, 2vw, 1.9rem);
}

.reserve-copy {
  max-width: 36rem;
  padding-top: clamp(1rem, 6vh, 3rem);
  padding-bottom: 0.6rem;
}

.hero-copy h1,
.section-heading h2,
.experience-stage h3,
.reserve-panel-title,
.concierge-copy h2 {
  font-family: var(--font-display);
}

.hero-copy h1 {
  max-width: 10.2ch;
  font-size: clamp(3.8rem, 6.4vw, 6.15rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
}

.hero-title-line {
  display: block;
  width: auto;
  max-width: none;
}

.hero-title-line--accent {
  display: block;
  background: linear-gradient(180deg, #f4e4c9 0%, #b6915f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-summary {
  max-width: 30rem;
  color: rgba(243, 236, 225, 0.78);
  font-size: 1.03rem;
  line-height: 1.8;
}

.reserve-actions {
  margin-top: 1.4rem;
}

.reserve-actions .button {
  min-width: 14rem;
}

.reserve-proof-strip {
  margin-top: 1.5rem;
}

.reserve-proof-strip article {
  min-height: 7.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(12, 14, 18, 0.54);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.reserve-proof-strip strong {
  font-size: 0.94rem;
}

.reserve-hero-note {
  max-width: 32rem;
  margin: 1rem 0 0;
  color: rgba(176, 168, 159, 0.78);
  font-size: 0.86rem;
  line-height: 1.7;
}

.reserve-panel {
  align-self: center;
  padding: 1.25rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(10, 12, 16, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(145%);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.reserve-panel-seal {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reserve-panel-title {
  margin: 0.55rem 0 0.65rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.95;
  color: var(--pearl-strong);
}

.reserve-panel-copy {
  margin: 0;
  color: rgba(243, 236, 225, 0.74);
  font-size: 0.95rem;
  line-height: 1.7;
}

.reserve-panel-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}

.reserve-panel-list article {
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reserve-panel-list strong {
  display: block;
  color: var(--champagne-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reserve-panel-list p {
  margin: 0.42rem 0 0;
  color: rgba(176, 168, 159, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
}

.experience-section {
  padding: 5.2rem 0 4.8rem;
}

.experience-shell {
  display: grid;
  gap: 1.5rem;
}

.experience-intro {
  max-width: 40rem;
}

.experience-intro h2 {
  max-width: 10ch;
}

.experience-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.experience-path {
  display: grid;
  gap: 0.9rem;
  padding: 1.35rem;
  border-radius: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(12, 14, 18, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.experience-path h3 {
  margin: 0;
  color: var(--pearl-strong);
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 0.98;
}

.experience-path p {
  margin: 0;
  color: rgba(176, 168, 159, 0.82);
}

.package-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.service-badge {
  padding: 0.42rem 0.68rem;
  border-radius: 999px;
  border: 1px solid rgba(182, 145, 95, 0.24);
  background: rgba(182, 145, 95, 0.1);
  color: var(--champagne-strong);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.package-price {
  color: var(--pearl);
  font-size: 1rem;
}

.experience-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(18rem, 0.86fr);
  gap: 1rem;
  align-items: stretch;
}

.experience-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(16rem, 1fr);
  align-items: end;
  padding: 1.4rem 1.45rem 0;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 80% 18%, rgba(182, 145, 95, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(18, 20, 24, 0.9), rgba(10, 12, 16, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.experience-stage-copy {
  padding-bottom: 1.4rem;
}

.experience-stage h3 {
  margin: 0.55rem 0 0.7rem;
  color: var(--pearl-strong);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 0.96;
}

.experience-stage p {
  color: rgba(176, 168, 159, 0.82);
}

.experience-stage-media {
  align-self: end;
}

.experience-stage-media img {
  width: 100%;
  max-width: 29rem;
  margin-left: auto;
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.36));
  transform: translateX(10%);
}

.experience-notes {
  display: grid;
  gap: 1rem;
}

.experience-fact {
  padding: 1.12rem 1.08rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(12, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.experience-fact h3 {
  margin: 0 0 0.45rem;
  color: var(--champagne-strong);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.experience-fact p {
  margin: 0;
  color: rgba(176, 168, 159, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.concierge-section {
  padding: 5rem 0 5.6rem;
}

.concierge-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(22rem, 0.82fr);
  gap: 1rem;
  align-items: start;
}

.concierge-copy {
  max-width: 35rem;
}

.concierge-copy h2 {
  margin: 0;
  color: var(--pearl-strong);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.concierge-copy > p {
  color: rgba(176, 168, 159, 0.82);
  line-height: 1.75;
}

.booking-keyline {
  max-width: 31rem;
  color: var(--pearl-strong);
  font-size: 0.98rem;
}

.concierge-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.concierge-step {
  padding: 1rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(12, 14, 18, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.concierge-step span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: rgba(182, 145, 95, 0.14);
  color: var(--champagne-strong);
  font-size: 0.72rem;
  font-weight: 700;
}

.concierge-step strong {
  display: block;
  color: var(--pearl-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.concierge-step p {
  margin: 0.45rem 0 0;
  color: rgba(176, 168, 159, 0.82);
  font-size: 0.91rem;
  line-height: 1.6;
}

.concierge-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.concierge-proof span {
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(231, 210, 176, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.concierge-form-card {
  padding: 1.18rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(18, 20, 24, 0.78), rgba(10, 12, 16, 0.88)),
    rgba(12, 14, 18, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(28px) saturate(145%);
  box-shadow:
    0 30px 72px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.concierge-form-head {
  margin-bottom: 0.9rem;
  padding-bottom: 0.9rem;
}

.concierge-form-head .hero-booking-status {
  display: block;
  margin-top: 0.45rem;
  color: rgba(176, 168, 159, 0.82);
}

.concierge-form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.booking-field select,
.booking-field input {
  min-height: 3.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(13, 16, 21, 0.54);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--pearl-strong);
}

.hero-booking-submit {
  width: 100%;
  margin-top: 0.8rem;
}

.booking-preview {
  margin-top: 0.9rem;
  border-radius: 1.2rem;
}

.concierge-utilities {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.concierge-call-link {
  color: var(--champagne-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.concierge-call-link:hover,
.concierge-call-link:focus-visible {
  color: var(--pearl-strong);
}

.minimal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.minimal-footer .footer-note {
  margin: 0;
  color: rgba(176, 168, 159, 0.78);
}

.minimal-footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.minimal-footer-links a {
  color: rgba(243, 236, 225, 0.84);
}

@media (max-width: 1100px) {
  .reserve-stage,
  .experience-editorial,
  .concierge-shell {
    grid-template-columns: 1fr;
  }

  .reserve-stage {
    min-height: auto;
    align-items: start;
  }

  .reserve-panel {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .hero-section.reserve-hero {
    min-height: auto;
    padding: 5.6rem 0 3rem;
  }

  .hero-copy h1 {
    max-width: 8.6ch;
    font-size: clamp(3.1rem, 9.5vw, 4.8rem);
  }

  .reserve-proof-strip,
  .experience-paths,
  .concierge-steps,
  .concierge-form-grid {
    grid-template-columns: 1fr;
  }

  .experience-stage {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .experience-stage-media img {
    max-width: 22rem;
    margin: 1rem auto 0;
    transform: none;
  }
}

@media (max-width: 640px) {
  main [id],
  #booking-form {
    scroll-margin-top: 6.8rem;
  }

  .nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.74rem 0.82rem;
  }

  .site-nav {
    display: none;
  }

  .brand-mark {
    font-size: 0.8rem;
    letter-spacing: 0.26em;
  }

  .brand-subcopy {
    display: none;
  }

  .button-compact {
    min-height: 2.76rem;
    padding-inline: 0.88rem;
    font-size: 0.76rem;
  }

  .hero-copy h1 {
    max-width: 9.4ch;
    font-size: clamp(2.8rem, 11.4vw, 4rem);
  }

  .reserve-actions .button {
    width: 100%;
  }

  .concierge-form-card {
    order: -1;
  }

  .minimal-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Three-section redesign */
:root {
  --font-ui: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Bodoni Moda", Georgia, serif;
  --ink-970: #030507;
  --ink-940: #06080d;
  --ink-910: #0a0d12;
  --ink-880: #11151c;
  --ink-840: #171c24;
  --vellum: #e9dcc9;
  --vellum-strong: #f6eee1;
  --vellum-ink: #19150f;
  --brass: #ad8450;
  --brass-soft: rgba(173, 132, 80, 0.18);
  --mist: rgba(255, 255, 255, 0.08);
  --mist-strong: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --line-warm: rgba(233, 220, 201, 0.18);
  --shadow-deep: 0 42px 120px rgba(0, 0, 0, 0.42);
  --shadow-card: 0 24px 60px rgba(0, 0, 0, 0.24);
  --max-width: 1200px;
}

html {
  background: radial-gradient(circle at top, rgba(173, 132, 80, 0.1), transparent 22%), #040506;
}

body {
  font-family: var(--font-ui);
  color: var(--vellum);
  background:
    radial-gradient(circle at 18% 16%, rgba(173, 132, 80, 0.08), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(245, 238, 225, 0.05), transparent 16%),
    linear-gradient(180deg, #080a0e 0%, #040506 48%, #090d12 100%);
}

body::before {
  opacity: 0.14;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(173, 132, 80, 0.08), transparent 16%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.01) 0,
      rgba(255, 255, 255, 0.01) 1px,
      transparent 1px,
      transparent 18px
    );
}

main [id],
#booking-form {
  scroll-margin-top: 7.4rem;
}

.site-shell::before,
.site-shell::after,
.ambient-layer--beam,
.hero-depth-plane,
.hero-ornament,
.hero-vehicle,
.hero-scroll-meta,
.hero-pills,
.hero-crest {
  display: none;
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
}

.site-header {
  padding-top: 0.7rem;
}

.nav-shell {
  width: min(calc(100% - 1.3rem), 1180px);
  gap: 1rem;
  padding: 0.82rem 1rem;
  border-radius: 1.65rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(7, 9, 13, 0.76);
  border-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(26px) saturate(140%);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-shell::after {
  opacity: 0.36;
}

.brand {
  gap: 0.8rem;
}

.brand-seal {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.brand-lockup {
  display: grid;
  gap: 0.05rem;
}

.brand-mark {
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--vellum-strong);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.38em;
}

.brand-copy {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(246, 238, 225, 0.84);
}

.brand-subcopy {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(202, 193, 181, 0.56);
}

.site-nav {
  gap: 1rem;
  color: rgba(246, 238, 225, 0.58);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--vellum-strong);
}

.site-nav a::after {
  bottom: -0.55rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 238, 225, 0.64), transparent);
}

.button,
.button-primary,
.button-secondary,
.hero-booking-submit {
  position: relative;
  min-height: 3.2rem;
  padding: 0.96rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--vellum-strong);
  border: 1px solid var(--mist-strong);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 55%, rgba(173, 132, 80, 0.12)),
    rgba(15, 18, 24, 0.42);
  backdrop-filter: blur(24px) saturate(160%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -16px 26px rgba(0, 0, 0, 0.1);
}

.button::before {
  opacity: 0.5;
}

.button::after {
  background:
    radial-gradient(circle at 24% 0%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, transparent 48%, rgba(245, 238, 225, 0.07));
  opacity: 0.8;
}

.button-primary,
.hero-booking-submit {
  border-color: rgba(233, 220, 201, 0.28);
  background:
    linear-gradient(180deg, rgba(246, 238, 225, 0.16), rgba(173, 132, 80, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 52%, rgba(173, 132, 80, 0.18)),
    rgba(23, 19, 15, 0.38);
}

.button:hover,
.button:focus-visible {
  --button-lift: -3px;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 20px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -16px 26px rgba(0, 0, 0, 0.12);
}

.button-compact {
  min-height: 2.92rem;
  padding-inline: 1.08rem;
  font-size: 0.78rem;
}

.reserve-hero {
  min-height: 100svh;
  padding: 7.1rem 0 4.8rem;
}

.hero-atlas {
  opacity: 0.16;
  background:
    linear-gradient(180deg, rgba(4, 6, 10, 0.1), rgba(4, 6, 10, 0.42)),
    url("./assets/nyx-atlas-grid.svg") center / cover no-repeat;
}

.hero-media {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48));
}

.hero-video {
  inset: -5%;
  width: 110%;
  height: 110%;
  object-position: center 42%;
  filter: saturate(0.68) brightness(0.42) contrast(1.08);
  transform: scale(1.08);
}

.hero-overlay {
  background:
    radial-gradient(circle at 54% 22%, rgba(246, 238, 225, 0.08), transparent 16%),
    linear-gradient(
      90deg,
      rgba(5, 7, 10, 0.92) 0%,
      rgba(5, 7, 10, 0.8) 34%,
      rgba(5, 7, 10, 0.42) 66%,
      rgba(5, 7, 10, 0.76) 100%
    ),
    linear-gradient(180deg, rgba(5, 7, 10, 0.18) 0%, rgba(5, 7, 10, 0.78) 100%);
}

.reserve-stage {
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.52fr);
  align-items: end;
  min-height: calc(100svh - 9.6rem);
  gap: clamp(1.6rem, 3vw, 2.4rem);
}

.reserve-copy {
  max-width: 43rem;
  z-index: 2;
  padding-bottom: 0.6rem;
}

.hero-eyebrow {
  margin-bottom: 1.05rem;
  padding: 0.38rem 0.82rem;
  border-color: rgba(233, 220, 201, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--vellum-strong);
}

.hero-kicker {
  max-width: 31rem;
  margin-bottom: 1rem;
  color: rgba(246, 238, 225, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: none;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero-title-line {
  display: block;
}

.hero-title-line--accent {
  color: transparent;
  font-style: normal;
  background: linear-gradient(180deg, #f7ebd8 0%, #b88d54 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-summary {
  max-width: 33rem;
  margin-top: 1.4rem;
  color: rgba(228, 219, 206, 0.78);
  font-size: 1.02rem;
  line-height: 1.78;
}

.reserve-actions {
  margin-top: 1.8rem;
  gap: 0.8rem;
}

.reserve-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  max-width: 50rem;
  margin-top: 1.8rem;
}

.reserve-proof-strip article {
  padding: 1.05rem 1rem;
  border-radius: 1.2rem;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(10, 12, 16, 0.74);
  box-shadow: var(--shadow-card);
}

.reserve-proof-strip span {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(228, 219, 206, 0.52);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reserve-proof-strip strong {
  color: var(--vellum-strong);
  font-size: 0.92rem;
  line-height: 1.48;
}

.reserve-hero-note {
  max-width: 30rem;
  margin: 1.25rem 0 0;
  color: rgba(212, 203, 190, 0.62);
  font-size: 0.88rem;
  line-height: 1.7;
}

.reserve-panel {
  z-index: 2;
  padding: 1.2rem;
  border-radius: 1.7rem;
  border: 1px solid var(--line-warm);
  background:
    radial-gradient(circle at top right, rgba(173, 132, 80, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(10, 12, 17, 0.78);
  box-shadow: var(--shadow-deep);
}

.reserve-panel-seal {
  display: inline-grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1rem;
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(12, 15, 20, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reserve-panel-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.reserve-panel-title {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--vellum-strong);
}

.reserve-panel-copy {
  margin: 1rem 0 0;
  color: rgba(228, 219, 206, 0.74);
  line-height: 1.72;
}

.reserve-panel-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.reserve-panel-list article {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.reserve-panel-list strong {
  display: block;
  margin-bottom: 0.34rem;
  color: var(--vellum-strong);
  font-size: 0.96rem;
}

.reserve-panel-list p {
  margin: 0;
  color: rgba(212, 203, 190, 0.68);
  font-size: 0.92rem;
  line-height: 1.62;
}

.experience-section {
  padding: 4.4rem 0 4.8rem;
  background:
    radial-gradient(circle at top, rgba(173, 132, 80, 0.08), transparent 18%),
    linear-gradient(180deg, #090c11 0%, #0b0e13 100%);
}

.experience-shell {
  display: grid;
  gap: 1.7rem;
}

.experience-intro {
  max-width: 42rem;
}

.section-heading h2,
.concierge-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--vellum-strong);
}

.section-heading p,
.concierge-copy p {
  color: rgba(223, 214, 201, 0.74);
  font-size: 1rem;
  line-height: 1.72;
}

.experience-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.experience-path {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.35rem;
  border-radius: 1.5rem;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at top left, rgba(173, 132, 80, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(11, 13, 18, 0.86);
  box-shadow: var(--shadow-card);
}

.experience-path h3,
.experience-stage h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--vellum-strong);
}

.experience-path p {
  color: rgba(220, 210, 197, 0.7);
}

.experience-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  gap: 1rem;
}

.experience-stage {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(246, 238, 225, 0.34);
  background:
    radial-gradient(circle at 90% 16%, rgba(173, 132, 80, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(245, 238, 225, 0.96), rgba(230, 218, 201, 0.92));
  color: var(--vellum-ink);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.experience-stage::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.36);
  pointer-events: none;
}

.experience-stage .eyebrow {
  margin-bottom: 0.8rem;
  background: rgba(16, 19, 24, 0.05);
  border-color: rgba(16, 19, 24, 0.08);
  color: var(--brass);
}

.experience-stage-copy p {
  margin: 0;
  color: rgba(25, 21, 15, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.experience-stage-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 19rem;
}

.experience-stage-media::before {
  content: "";
  position: absolute;
  inset: auto 12% 0.8rem 12%;
  height: 1.25rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(12, 12, 12, 0.24) 0%, transparent 70%);
  filter: blur(8px);
}

.experience-stage-media img {
  position: relative;
  z-index: 1;
  width: min(100%, 28rem);
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.18));
}

.experience-notes {
  display: grid;
  gap: 1rem;
}

.experience-notes .info-card,
.experience-fact {
  padding: 1.2rem 1.15rem;
  border: 1px solid var(--line-soft);
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(11, 13, 18, 0.82);
  box-shadow: var(--shadow-card);
}

.experience-notes .info-card h3,
.experience-fact h3 {
  margin: 0 0 0.4rem;
  color: var(--vellum-strong);
  font-size: 1.08rem;
  line-height: 1.2;
}

.experience-notes .info-card p,
.experience-fact p {
  margin: 0;
  color: rgba(220, 210, 197, 0.7);
  line-height: 1.66;
}

.concierge-section {
  padding: 4.6rem 0 5.2rem;
  background:
    radial-gradient(circle at top right, rgba(173, 132, 80, 0.08), transparent 18%),
    linear-gradient(180deg, #0a0d12 0%, #06080d 100%);
}

.concierge-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(20rem, 0.8fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: start;
}

.concierge-copy {
  max-width: 38rem;
}

.booking-keyline {
  max-width: 28rem;
  margin-top: 1rem;
  color: var(--vellum-strong);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-panel {
  margin-top: 1.5rem;
  padding: 1rem 1rem 0.4rem;
  border-radius: 1.55rem;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(11, 13, 18, 0.86);
  box-shadow: var(--shadow-card);
}

.journey-step {
  padding: 0 0 1rem;
}

.journey-step strong {
  color: var(--vellum-strong);
  font-size: 1rem;
}

.journey-step p {
  color: rgba(220, 210, 197, 0.68);
}

.journey-step span {
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--vellum-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.concierge-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.concierge-proof span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.88rem 0.94rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(11, 13, 18, 0.76);
  color: rgba(246, 238, 225, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}

.concierge-form-card {
  position: relative;
  padding: 1.25rem;
  border-radius: 1.7rem;
  border: 1px solid var(--line-warm);
  background:
    radial-gradient(circle at top right, rgba(173, 132, 80, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(11, 13, 18, 0.88);
  box-shadow: var(--shadow-deep);
}

.concierge-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 74%, rgba(173, 132, 80, 0.08)),
    radial-gradient(circle at top right, rgba(173, 132, 80, 0.12), transparent 28%);
  opacity: 0.9;
}

.concierge-form-card > * {
  position: relative;
  z-index: 1;
}

.concierge-form-head {
  margin-bottom: 0.95rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-booking-status {
  color: rgba(220, 210, 197, 0.68);
}

.concierge-form-grid {
  display: grid;
  gap: 0.78rem;
}

.booking-field {
  display: grid;
  gap: 0.4rem;
}

.booking-field span {
  padding-left: 0.1rem;
  color: rgba(212, 203, 190, 0.66);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 3.55rem;
  padding: 0.92rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  color: var(--vellum-strong);
  font: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(7, 9, 13, 0.7);
  appearance: none;
}

.booking-field select {
  cursor: pointer;
}

.hero-booking-submit {
  width: 100%;
  margin-top: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-preview {
  margin-top: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.booking-preview-label {
  margin-bottom: 0.35rem;
  color: rgba(212, 203, 190, 0.56);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-preview p {
  margin: 0;
  color: rgba(246, 238, 225, 0.86);
  line-height: 1.56;
}

.concierge-utilities {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.concierge-utilities .button {
  flex: 1 1 auto;
}

.concierge-call-link {
  color: rgba(246, 238, 225, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: underline;
  text-decoration-color: rgba(246, 238, 225, 0.26);
  text-underline-offset: 0.22rem;
}

.booking-outcome {
  max-width: none;
  margin-top: 0.8rem;
  color: rgba(212, 203, 190, 0.66);
  font-size: 0.82rem;
  line-height: 1.62;
}

.site-footer {
  padding: 2.1rem 0 2.4rem;
  background:
    radial-gradient(circle at top, rgba(173, 132, 80, 0.08), transparent 18%),
    linear-gradient(180deg, #06080d 0%, #030507 100%);
}

.site-footer::before {
  opacity: 0.04;
}

.minimal-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.minimal-footer .footer-note {
  max-width: 36rem;
  margin: 0;
  color: rgba(212, 203, 190, 0.62);
  font-size: 0.9rem;
  line-height: 1.5;
}

.minimal-footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.minimal-footer-links a {
  color: rgba(246, 238, 225, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .reserve-stage,
  .experience-editorial,
  .concierge-shell {
    grid-template-columns: 1fr;
  }

  .reserve-stage {
    min-height: auto;
    align-items: start;
  }

  .reserve-proof-strip,
  .experience-paths {
    grid-template-columns: 1fr;
  }

  .minimal-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-nav {
    display: none;
  }

  .brand-subcopy {
    display: none;
  }

  .button-compact,
  .button-compact.fx-magnetic {
    display: inline-flex;
  }

  .reserve-hero {
    padding: 6.5rem 0 3.8rem;
  }

  .hero-copy h1,
  .section-heading h2,
  .concierge-copy h2 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  .reserve-actions,
  .concierge-utilities {
    flex-direction: column;
  }

  .reserve-actions .button,
  .concierge-utilities .button {
    width: 100%;
  }

  .concierge-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  main [id],
  #booking-form {
    scroll-margin-top: 6.4rem;
  }

  .container {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .nav-shell {
    width: min(calc(100% - 0.6rem), 1180px);
    padding: 0.72rem 0.78rem;
  }

  .brand-seal {
    width: 2.45rem;
    height: 2.45rem;
  }

  .brand-mark {
    font-size: 0.74rem;
    letter-spacing: 0.3em;
  }

  .brand-copy {
    font-size: 0.66rem;
  }

  .hero-kicker {
    max-width: 19rem;
  }

  .hero-summary,
  .section-heading p,
  .concierge-copy p,
  .experience-stage-copy p {
    font-size: 0.94rem;
  }

  .reserve-panel,
  .experience-path,
  .experience-stage,
  .journey-panel,
  .concierge-form-card,
  .concierge-proof .faq-card {
    border-radius: 1.4rem;
  }

  .experience-stage {
    grid-template-columns: 1fr;
  }

  .experience-stage-media {
    min-height: 14rem;
  }

  .minimal-footer-links {
    flex-wrap: wrap;
  }
}

/* Final three-section polish */
body.nyx-three-section {
  background:
    radial-gradient(circle at 18% 0%, rgba(184, 141, 84, 0.1), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.04), transparent 18%),
    linear-gradient(180deg, #050608 0%, #07090c 42%, #0b0d11 100%);
}

.nyx-three-section .site-shell {
  overflow: clip;
}

.nyx-three-section .site-header {
  padding-top: 0.62rem;
}

.nyx-three-section .nav-shell {
  width: min(calc(100% - 1.4rem), 1180px);
  padding: 0.8rem 1rem;
  background: linear-gradient(180deg, rgba(10, 12, 16, 0.82), rgba(10, 12, 16, 0.7));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nyx-three-section .site-nav {
  gap: 1.25rem;
}

.nyx-three-section .site-nav a {
  letter-spacing: 0.16em;
}

.nyx-three-section .reserve-hero {
  padding: 7rem 0 4.4rem;
}

.nyx-three-section .hero-atlas {
  opacity: 0.12;
}

.nyx-three-section .hero-video {
  inset: -7%;
  width: 114%;
  height: 114%;
  object-position: 42% 44%;
  filter: saturate(0.58) brightness(0.34) contrast(1.06);
  transform: scale(1.14);
}

.nyx-three-section .hero-overlay {
  background:
    radial-gradient(circle at 22% 24%, rgba(246, 238, 225, 0.06), transparent 16%),
    linear-gradient(
      90deg,
      rgba(4, 5, 8, 0.94) 0%,
      rgba(4, 5, 8, 0.8) 30%,
      rgba(4, 5, 8, 0.42) 58%,
      rgba(4, 5, 8, 0.82) 100%
    ),
    linear-gradient(180deg, rgba(4, 5, 8, 0.08) 0%, rgba(4, 5, 8, 0.74) 100%);
}

.nyx-three-section .reserve-stage {
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.46fr);
  gap: clamp(1.3rem, 2.4vw, 1.85rem);
}

.nyx-three-section .reserve-copy {
  max-width: 40rem;
  padding-bottom: 1rem;
}

.nyx-three-section .hero-copy h1 {
  max-width: none;
  font-size: clamp(3.8rem, 6.6vw, 6.6rem);
  line-height: 0.87;
  color: #f7f0e6;
  text-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
}

.nyx-three-section .hero-title-line,
.nyx-three-section .hero-title-line--accent {
  display: block;
  white-space: normal;
}

.nyx-three-section .hero-summary {
  max-width: 30rem;
  margin-top: 1.25rem;
  color: rgba(247, 240, 230, 0.84);
  font-size: 1rem;
  line-height: 1.72;
}

.nyx-three-section .reserve-actions {
  margin-top: 1.45rem;
}

.nyx-three-section .reserve-proof-strip {
  max-width: 42rem;
  margin-top: 1.35rem;
}

.nyx-three-section .reserve-hero-note {
  max-width: 31rem;
  margin: 1rem 0 0;
  color: rgba(247, 240, 230, 0.7);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-transform: uppercase;
}

.nyx-three-section .reserve-panel {
  align-self: center;
  background:
    radial-gradient(circle at top right, rgba(184, 141, 84, 0.2), transparent 24%),
    linear-gradient(180deg, rgba(18, 22, 28, 0.9), rgba(11, 14, 19, 0.86)),
    rgba(11, 14, 19, 0.86);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px) saturate(155%);
}

.nyx-three-section .reserve-panel-title {
  max-width: 9ch;
  color: #f7f0e6;
}

.nyx-three-section .reserve-panel-copy,
.nyx-three-section .reserve-panel-list p {
  color: rgba(247, 240, 230, 0.72);
}

.nyx-three-section .reserve-panel-list strong,
.nyx-three-section .reserve-proof-strip strong {
  color: #fff8ef;
}

.nyx-three-section .reserve-proof-strip span {
  color: rgba(247, 240, 230, 0.56);
}

.nyx-three-section .experience-intro {
  max-width: 44rem;
}

.nyx-three-section .experience-paths {
  gap: 0.9rem;
}

.nyx-three-section .experience-path,
.nyx-three-section .experience-fact,
.nyx-three-section .concierge-form-card {
  backdrop-filter: blur(18px) saturate(145%);
}

.nyx-three-section .experience-fact {
  padding: 1.2rem 1.15rem;
  border-radius: 1.35rem;
  border: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at top left, rgba(173, 132, 80, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(11, 13, 18, 0.86);
  box-shadow: var(--shadow-card);
}

.nyx-three-section .experience-fact h3 {
  margin: 0 0 0.42rem;
  color: var(--vellum-strong);
  font-size: 1.08rem;
  line-height: 1.2;
}

.nyx-three-section .experience-fact p {
  margin: 0;
  color: rgba(220, 210, 197, 0.7);
  line-height: 1.66;
}

.nyx-three-section .experience-stage {
  min-height: 24rem;
}

.nyx-three-section .experience-stage-media {
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 50% 16%, rgba(184, 141, 84, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.08));
}

.nyx-three-section .concierge-shell {
  grid-template-columns: minmax(0, 0.94fr) minmax(20rem, 0.82fr);
}

.nyx-three-section .concierge-copy {
  max-width: 34rem;
}

.nyx-three-section .concierge-steps {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.45rem;
  padding: 1rem 1rem 0.4rem;
  border-radius: 1.55rem;
  border: 1px solid var(--line-soft);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(11, 13, 18, 0.86);
  box-shadow: var(--shadow-card);
}

.nyx-three-section .concierge-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0 0 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nyx-three-section .concierge-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.nyx-three-section .concierge-step span {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--vellum-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.nyx-three-section .concierge-step strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--vellum-strong);
  font-size: 1rem;
}

.nyx-three-section .concierge-step p {
  margin: 0;
  color: rgba(220, 210, 197, 0.68);
  font-size: 0.94rem;
  line-height: 1.6;
}

.nyx-three-section .concierge-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.nyx-three-section .concierge-proof span {
  padding: 0.62rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(246, 238, 225, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nyx-three-section .concierge-form-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nyx-three-section .hero-booking-submit {
  min-height: 3.5rem;
}

.nyx-three-section .concierge-call-link {
  margin-left: auto;
}

.nyx-three-section .button {
  color: #fff8ef;
  border-color: rgba(255, 255, 255, 0.18);
}

.nyx-three-section .button-primary {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.24), rgba(184, 141, 84, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 52%, rgba(184, 141, 84, 0.18)),
    rgba(23, 19, 15, 0.42);
}

.nyx-three-section .site-footer::before {
  display: none;
}

.nyx-three-section .minimal-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 1100px) {
  .nyx-three-section .reserve-stage,
  .nyx-three-section .experience-editorial,
  .nyx-three-section .concierge-shell {
    grid-template-columns: 1fr;
  }

  .nyx-three-section .concierge-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .reserve-panel {
    display: none;
  }

  .nyx-three-section .reserve-hero {
    padding: 6.3rem 0 3.6rem;
  }

  .nyx-three-section .hero-copy h1,
  .nyx-three-section .section-heading h2,
  .nyx-three-section .concierge-copy h2 {
    font-size: clamp(2.95rem, 13vw, 4.6rem);
  }

  .nyx-three-section .reserve-proof-strip,
  .nyx-three-section .experience-paths {
    grid-template-columns: 1fr;
  }

  .nyx-three-section .concierge-proof {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nyx-three-section .hero-video {
    object-position: center 48%;
  }

  .nyx-three-section .reserve-hero-note {
    font-size: 0.74rem;
    line-height: 1.6;
  }
}

/* Ultra-final luxury overrides */
body.nyx-three-section {
  --font-ui: "Manrope", "Segoe UI", sans-serif;
  --font-display: "Bodoni Moda", Georgia, serif;
}

.nyx-three-section .nav-shell {
  width: min(calc(100% - 1.2rem), 1160px);
  background:
    linear-gradient(180deg, rgba(11, 13, 17, 0.84), rgba(11, 13, 17, 0.72)),
    rgba(11, 13, 17, 0.48);
  backdrop-filter: blur(26px) saturate(150%);
}

.nyx-three-section .button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.01) 56%, rgba(214, 188, 144, 0.1)),
    rgba(11, 13, 17, 0.42);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(250, 245, 238, 0.96);
}

.nyx-three-section .button-primary {
  border-color: rgba(214, 188, 144, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.17), rgba(214, 188, 144, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 56%, rgba(214, 188, 144, 0.16)),
    rgba(14, 16, 20, 0.5);
}

.nyx-three-section .button-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(188, 208, 232, 0.06), rgba(255, 255, 255, 0.015) 58%, rgba(255, 255, 255, 0.04)),
    rgba(9, 11, 15, 0.44);
}

.nyx-three-section .reserve-hero {
  padding: 6.1rem 0 3.6rem;
}

.nyx-three-section .hero-video {
  inset: -5%;
  width: 110%;
  height: 110%;
  object-position: 46% 50%;
  filter: saturate(0.72) brightness(0.48) contrast(1.08);
  transform: scale(1.08);
}

.nyx-three-section .hero-overlay {
  background:
    radial-gradient(circle at 24% 56%, rgba(214, 188, 144, 0.08), transparent 22%),
    linear-gradient(
      90deg,
      rgba(4, 5, 8, 0.9) 0%,
      rgba(4, 5, 8, 0.76) 34%,
      rgba(4, 5, 8, 0.44) 58%,
      rgba(4, 5, 8, 0.88) 100%
    ),
    linear-gradient(180deg, rgba(4, 5, 8, 0.04) 0%, rgba(4, 5, 8, 0.76) 100%);
}

.nyx-three-section .reserve-stage {
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 0.64fr);
  gap: clamp(1.5rem, 2.6vw, 2.2rem);
  align-items: center;
  min-height: calc(100svh - 8.2rem);
}

.nyx-three-section .hero-copy h1 {
  max-width: 8.1ch;
  font-size: clamp(3.45rem, 5.3vw, 5.45rem);
  color: rgba(251, 247, 240, 0.98);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.nyx-three-section .reserve-hero-note {
  font-size: 0.76rem;
  letter-spacing: 0.1em;
}

.nyx-three-section .reserve-proof-strip strong {
  font-size: 0.92rem;
}

.nyx-three-section .reserve-proof-strip span {
  color: rgba(233, 223, 208, 0.62);
}

.nyx-three-section .hero-summary,
.nyx-three-section .reserve-panel-copy,
.nyx-three-section .reserve-panel-list p,
.nyx-three-section .experience-path p,
.nyx-three-section .experience-fact p,
.nyx-three-section .concierge-step p,
.nyx-three-section .booking-outcome,
.nyx-three-section .booking-preview p {
  color: rgba(226, 217, 204, 0.82);
}

.nyx-three-section .reserve-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(11, 13, 17, 0.8);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nyx-three-section .experience-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
}

.nyx-three-section .concierge-form-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(11, 13, 17, 0.82);
}

@media (max-width: 720px) {
  .nyx-three-section .site-nav {
    display: none;
  }

  .nyx-three-section .hero-video {
    object-position: 50% 52%;
  }

  .nyx-three-section .reserve-stage {
    min-height: auto;
  }

  .nyx-three-section .hero-copy h1 {
    max-width: 7.4ch;
    font-size: clamp(3rem, 12.2vw, 4.35rem);
  }
}

@media (max-width: 640px) {
  .nyx-three-section .brand-copy,
  .nyx-three-section .brand-subcopy {
    display: none;
  }

  .nyx-three-section .brand-mark {
    letter-spacing: 0.28em;
  }
}

/* Last-pass fold tightening */
.nyx-three-section .reserve-hero {
  padding: 6.2rem 0 3.7rem;
}

.nyx-three-section .hero-content.reserve-stage {
  min-height: calc(100svh - 8rem);
  align-items: center;
}

.nyx-three-section .hero-copy {
  max-width: 39rem;
}

.nyx-three-section .hero-copy h1 {
  max-width: 8.3ch;
  font-size: clamp(4rem, 6.1vw, 6rem);
  line-height: 0.9;
}

.nyx-three-section .hero-summary {
  max-width: 31rem;
}

.nyx-three-section .reserve-actions {
  margin-top: 1.2rem;
}

.nyx-three-section .reserve-proof-strip {
  margin-top: 1.25rem;
}

.nyx-three-section .reserve-proof-strip article {
  min-height: 0;
}

.nyx-three-section .reserve-panel {
  max-width: 21rem;
}

@media (max-width: 720px) {
  .nyx-three-section .reserve-hero {
    padding: 5.85rem 0 3.15rem;
  }

  .nyx-three-section .hero-copy h1,
  .nyx-three-section .section-heading h2,
  .nyx-three-section .concierge-copy h2 {
    max-width: 8.8ch;
    font-size: clamp(3.1rem, 11.2vw, 4.25rem);
    line-height: 0.92;
  }

  .nyx-three-section .reserve-hero-note {
    display: none;
  }
}

@media (max-width: 640px) {
  .nyx-three-section .nav-shell {
    padding: 0.72rem 0.78rem;
  }

  .nyx-three-section .brand {
    gap: 0.52rem;
  }

  .nyx-three-section .brand-seal {
    width: 2.35rem;
    height: 2.35rem;
  }

  .nyx-three-section .brand-copy,
  .nyx-three-section .brand-subcopy {
    display: none;
  }

  .nyx-three-section .brand-mark {
    font-size: 0.82rem;
    letter-spacing: 0.26em;
  }

  .nyx-three-section .button-compact,
  .nyx-three-section .button-compact.fx-magnetic {
    min-height: 2.68rem;
    padding-inline: 0.88rem;
    font-size: 0.74rem;
  }

  .nyx-three-section .hero-copy h1 {
    max-width: 9.2ch;
    font-size: clamp(2.9rem, 10.8vw, 4rem);
  }

  .nyx-three-section .hero-summary {
    font-size: 0.95rem;
    line-height: 1.68;
  }
}

/* One-more mobile fold polish */
@media (max-width: 720px) {
  .nyx-three-section .hero-content.reserve-stage {
    min-height: auto;
    align-items: start;
  }

  .nyx-three-section .reserve-copy {
    padding-top: 0.2rem;
    padding-bottom: 0;
  }

  .nyx-three-section .reserve-hero {
    padding: 5.15rem 0 2.9rem;
  }

  .nyx-three-section .hero-copy h1,
  .nyx-three-section .section-heading h2,
  .nyx-three-section .concierge-copy h2 {
    max-width: 9.4ch;
    font-size: clamp(3rem, 10.7vw, 4.15rem);
  }
}

@media (max-width: 640px) {
  .nyx-three-section .hero-copy h1 {
    max-width: 9.8ch;
    font-size: clamp(2.85rem, 10.1vw, 3.9rem);
  }
}

/* World-class hero refinement */
.nyx-three-section .reserve-hero {
  padding: 5.8rem 0 3rem;
}

.nyx-three-section .hero-atlas {
  opacity: 0.28;
  background:
    linear-gradient(180deg, rgba(4, 5, 8, 0.12), rgba(4, 5, 8, 0.72)),
    url("./assets/nyx-atlas-grid.svg") center / cover no-repeat;
}

.nyx-three-section .hero-media {
  inset: 0.8rem;
  border-radius: 2.3rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nyx-three-section .hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(214, 188, 144, 0.18), transparent 24%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.09), transparent 30% 64%, rgba(214, 188, 144, 0.08) 100%);
  mix-blend-mode: screen;
  opacity: 0.66;
  pointer-events: none;
}

.nyx-three-section .hero-media::after {
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.88) 0%, rgba(6, 7, 9, 0.72) 30%, rgba(6, 7, 9, 0.36) 58%, rgba(6, 7, 9, 0.8) 100%),
    radial-gradient(circle at 76% 48%, rgba(0, 0, 0, 0.34), transparent 24%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.04) 0%, rgba(5, 6, 8, 0.76) 100%);
}

.nyx-three-section .hero-video {
  inset: -6%;
  width: 112%;
  height: 112%;
  object-position: 48% 52%;
  filter: saturate(0.8) brightness(0.58) contrast(1.14);
  transform: scale(1.1);
}

.nyx-three-section .hero-overlay {
  background:
    radial-gradient(circle at 22% 18%, rgba(214, 188, 144, 0.11), transparent 18%),
    radial-gradient(circle at 42% 74%, rgba(214, 188, 144, 0.09), transparent 24%),
    linear-gradient(
      90deg,
      rgba(4, 5, 8, 0.9) 0%,
      rgba(4, 5, 8, 0.72) 28%,
      rgba(4, 5, 8, 0.2) 58%,
      rgba(4, 5, 8, 0.84) 100%
    ),
    linear-gradient(180deg, rgba(4, 5, 8, 0.02) 0%, rgba(4, 5, 8, 0.74) 100%);
}

.nyx-three-section .hero-content.reserve-stage {
  grid-template-columns: minmax(0, 0.98fr) minmax(20.5rem, 22.9rem);
  gap: clamp(2.2rem, 4.8vw, 5.25rem);
  align-items: center;
  min-height: calc(100svh - 8.65rem);
}

.nyx-three-section .reserve-copy {
  max-width: 37rem;
  padding: clamp(0.45rem, 2.4vh, 1.05rem) 0 0;
}

.nyx-three-section .hero-eyebrow {
  margin-bottom: 0.9rem;
}

.nyx-three-section .hero-copy h1 {
  max-width: 6.9ch;
  font-size: clamp(4.25rem, 6.3vw, 6.7rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.32);
}

.nyx-three-section .hero-summary {
  max-width: 28rem;
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.74;
}

.nyx-three-section .reserve-actions {
  margin-top: 1.2rem;
}

.nyx-three-section .reserve-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
  max-width: 31rem;
  margin-top: 1rem;
}

.nyx-three-section .reserve-proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  min-height: 2.4rem;
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(10, 12, 16, 0.36);
  color: rgba(233, 223, 208, 0.74);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nyx-three-section .reserve-proof-strip span::before {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: var(--nyx-brass);
  box-shadow: 0 0 0 0.22rem rgba(214, 188, 144, 0.1);
}

.nyx-three-section .reserve-panel {
  align-self: center;
  justify-self: end;
  max-width: 22.9rem;
  margin-top: 1.8rem;
  padding: 1.45rem;
  border-radius: 1.95rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(11, 13, 17, 0.78);
  box-shadow:
    0 34px 82px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nyx-three-section .reserve-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%, rgba(214, 188, 144, 0.06));
  opacity: 0.8;
}

.nyx-three-section .reserve-panel::after {
  inset: 0.9rem;
  border-radius: 1.28rem;
}

.nyx-three-section .reserve-panel-title {
  max-width: 8.6ch;
  font-size: clamp(2.05rem, 2.5vw, 2.72rem);
  line-height: 0.96;
}

.nyx-three-section .reserve-panel-copy {
  margin-top: 0.72rem;
  font-size: 0.92rem;
  line-height: 1.62;
}

.nyx-three-section .reserve-panel-list {
  gap: 0.82rem;
  margin-top: 1.15rem;
}

.nyx-three-section .reserve-panel-list article {
  padding: 0.84rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  border-radius: 0;
}

.nyx-three-section .reserve-panel-list strong {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nyx-three-section .reserve-panel-list p {
  margin-top: 0.38rem;
  font-size: 0.88rem;
  line-height: 1.58;
}

@media (max-width: 1024px) {
  .nyx-three-section .hero-content.reserve-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nyx-three-section .reserve-copy {
    padding-top: 0.35rem;
  }

  .nyx-three-section .reserve-proof-strip {
    max-width: 100%;
  }

  .nyx-three-section .reserve-panel {
    align-self: stretch;
    max-width: 100%;
    margin-top: 0.2rem;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .reserve-hero {
    padding: 5.15rem 0 2.95rem;
  }

  .nyx-three-section .hero-media {
    inset: 0.72rem;
    border-radius: 1.7rem;
  }

  .nyx-three-section .hero-video {
    object-position: 50% 48%;
  }

  .nyx-three-section .reserve-copy {
    padding-top: 0.12rem;
  }

  .nyx-three-section .hero-copy h1 {
    max-width: 7.6ch;
    font-size: clamp(3.15rem, 11vw, 4.35rem);
  }

  .nyx-three-section .hero-summary {
    max-width: 19rem;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .nyx-three-section .reserve-proof-strip {
    gap: 0.54rem;
  }

  .nyx-three-section .reserve-proof-strip span {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.71rem;
  }
}

@media (max-width: 640px) {
  .nyx-three-section .hero-copy h1 {
    max-width: 7.9ch;
    font-size: clamp(3rem, 10vw, 4rem);
  }
}

/* Hero refinement v2 */
.nyx-three-section .hero-video {
  object-position: 47% 46%;
  filter: saturate(0.82) brightness(0.62) contrast(1.12);
}

.nyx-three-section .hero-overlay {
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 188, 144, 0.14), transparent 18%),
    radial-gradient(circle at 28% 50%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 54% 80%, rgba(214, 188, 144, 0.09), transparent 20%),
    linear-gradient(
      90deg,
      rgba(4, 5, 8, 0.9) 0%,
      rgba(4, 5, 8, 0.68) 27%,
      rgba(4, 5, 8, 0.15) 57%,
      rgba(4, 5, 8, 0.84) 100%
    ),
    linear-gradient(180deg, rgba(4, 5, 8, 0.01) 0%, rgba(4, 5, 8, 0.72) 100%);
}

.nyx-three-section .hero-content.reserve-stage {
  grid-template-columns: minmax(0, 0.94fr) minmax(20.5rem, 22.5rem);
  gap: clamp(2rem, 4.2vw, 4.9rem);
  min-height: calc(100svh - 8.1rem);
  align-items: stretch;
}

.nyx-three-section .reserve-copy {
  align-self: start;
  max-width: 35.75rem;
  padding-top: 0;
  margin-top: -0.45rem;
}

.nyx-three-section .hero-copy h1 {
  max-width: 7.08ch;
  font-size: clamp(3.95rem, 5.85vw, 6rem);
}

.nyx-three-section .hero-summary {
  max-width: 24.9rem;
  margin-top: 0.78rem;
  color: rgba(236, 228, 214, 0.84);
  font-size: 0.97rem;
  line-height: 1.68;
  text-wrap: balance;
}

.nyx-three-section .reserve-proof-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.46rem;
  max-width: 30.5rem;
  margin-top: 0.78rem;
}

.nyx-three-section .reserve-proof-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.24rem;
  padding: 0.68rem 0.88rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(10, 12, 16, 0.44);
  color: rgba(244, 239, 231, 0.8);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
}

.nyx-three-section .reserve-proof-strip .reserve-proof-quiet {
  flex: 0 0 auto;
  padding-inline: 0.1rem;
  border-color: transparent;
  background: transparent;
  color: rgba(228, 219, 206, 0.56);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
}

.nyx-three-section .reserve-panel {
  justify-self: end;
  align-self: end;
  max-width: 23rem;
  margin-top: 3.65rem;
  padding: 1.18rem;
}

.nyx-three-section .reserve-panel-title {
  max-width: 8.6ch;
  font-size: clamp(1.84rem, 2.24vw, 2.45rem);
  line-height: 0.96;
}

.nyx-three-section .reserve-panel-copy {
  margin-top: 0.72rem;
  font-size: 0.89rem;
  line-height: 1.56;
}

.nyx-three-section .reserve-panel-list {
  gap: 0.52rem;
  margin-top: 0.82rem;
}

.nyx-three-section .reserve-panel-list article {
  padding: 0.72rem 0.78rem;
}

.nyx-three-section .reserve-panel-list strong {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.nyx-three-section .reserve-panel-list p {
  margin-top: 0.3rem;
  font-size: 0.84rem;
  line-height: 1.46;
}

@media (max-width: 1024px) {
  .nyx-three-section .hero-content.reserve-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .nyx-three-section .reserve-proof-strip {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .nyx-three-section .reserve-proof-strip span {
    justify-content: flex-start;
    width: 100%;
  }

  .nyx-three-section .reserve-panel {
    margin-top: 0.35rem;
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .hero-video {
    object-position: 62% 44%;
  }

  .nyx-three-section .hero-overlay {
    background:
      radial-gradient(circle at 24% 24%, rgba(214, 188, 144, 0.1), transparent 18%),
      linear-gradient(
        90deg,
        rgba(4, 5, 8, 0.92) 0%,
        rgba(4, 5, 8, 0.82) 48%,
        rgba(4, 5, 8, 0.34) 74%,
        rgba(4, 5, 8, 0.8) 100%
      ),
      linear-gradient(180deg, rgba(4, 5, 8, 0.02) 0%, rgba(4, 5, 8, 0.76) 100%);
  }

  .nyx-three-section .hero-copy h1 {
    max-width: 8.35ch;
    font-size: clamp(2.72rem, 9.2vw, 3.55rem);
    line-height: 0.92;
  }

  .nyx-three-section .hero-summary {
    max-width: 18rem;
    font-size: 0.92rem;
    line-height: 1.58;
    text-wrap: pretty;
  }

  .nyx-three-section .reserve-actions {
    display: none;
  }

  .nyx-three-section .reserve-proof-strip {
    gap: 0.52rem;
    margin-top: 0.9rem;
  }

  .nyx-three-section .reserve-proof-strip span {
    width: 100%;
    justify-content: flex-start;
    padding: 0.76rem 0.88rem;
    border-radius: 1rem;
  }

  .nyx-three-section .reserve-proof-strip .reserve-proof-quiet {
    display: none;
  }
}

/* No-mercy redesign */
.nyx-three-section .site-header {
  padding-top: 0.88rem;
}

.nyx-three-section .nav-shell {
  width: min(calc(100% - 1.2rem), 1192px);
  padding: 0.86rem 1.12rem;
  border-radius: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(8, 10, 14, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(28px) saturate(160%);
}

.nyx-three-section .brand {
  gap: 0.92rem;
}

.nyx-three-section .brand-seal {
  width: 2.95rem;
  height: 2.95rem;
}

.nyx-three-section .brand-mark {
  font-size: 0.88rem;
  letter-spacing: 0.42em;
}

.nyx-three-section .brand-copy {
  font-size: 0.74rem;
  letter-spacing: 0.24em;
}

.nyx-three-section .brand-subcopy {
  font-size: 0.57rem;
  letter-spacing: 0.22em;
}

.nyx-three-section .site-nav {
  gap: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
}

.nyx-three-section .button,
.nyx-three-section .button-primary,
.nyx-three-section .button-secondary,
.nyx-three-section .hero-booking-submit {
  min-height: 3.22rem;
  padding: 0.94rem 1.36rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 54%, rgba(173, 132, 80, 0.12)),
    rgba(18, 21, 27, 0.44);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -18px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(26px) saturate(170%);
}

.nyx-three-section .button::before {
  opacity: 0.62;
}

.nyx-three-section .button::after {
  opacity: 0.82;
}

.nyx-three-section .button-primary,
.nyx-three-section .hero-booking-submit {
  border-color: rgba(241, 229, 212, 0.26);
  color: #fff5e7;
  background:
    linear-gradient(180deg, rgba(246, 238, 225, 0.18), rgba(184, 141, 84, 0.1)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 48%, rgba(173, 132, 80, 0.2)),
    rgba(37, 29, 20, 0.42);
}

.nyx-three-section .button-secondary {
  color: rgba(246, 238, 225, 0.9);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 58%, rgba(173, 132, 80, 0.1)),
    rgba(13, 16, 22, 0.48);
}

.nyx-three-section .button:hover,
.nyx-three-section .button:focus-visible {
  --button-lift: -4px;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -18px 32px rgba(0, 0, 0, 0.14);
}

.nyx-three-section .button-compact,
.nyx-three-section .button-compact.fx-magnetic {
  min-height: 2.92rem;
  padding-inline: 1.24rem;
  font-size: 0.8rem;
}

.nyx-three-section .reserve-hero {
  padding: 5.95rem 0 3.35rem;
}

.nyx-three-section .hero-atlas {
  opacity: 0.34;
  background:
    radial-gradient(circle at 16% 20%, rgba(173, 132, 80, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(4, 5, 8, 0.12), rgba(4, 5, 8, 0.68)),
    url("./assets/nyx-atlas-grid.svg") center / cover no-repeat;
}

.nyx-three-section .hero-media {
  inset: 0.72rem;
  border-radius: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 42px 110px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nyx-three-section .hero-media::before {
  background:
    radial-gradient(circle at 14% 28%, rgba(214, 188, 144, 0.22), transparent 28%),
    radial-gradient(circle at 54% 18%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 44%, rgba(173, 132, 80, 0.08));
  opacity: 0.78;
}

.nyx-three-section .hero-media::after {
  background:
    radial-gradient(circle at 40% 36%, rgba(255, 244, 226, 0.08), transparent 18%),
    linear-gradient(90deg, rgba(4, 5, 8, 0.88) 0%, rgba(4, 5, 8, 0.46) 24%, rgba(4, 5, 8, 0.1) 50%, rgba(4, 5, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 5, 8, 0.04) 0%, rgba(4, 5, 8, 0.8) 100%);
}

.nyx-three-section .hero-video {
  inset: -5%;
  width: 110%;
  height: 110%;
  object-position: 56% 49%;
  filter: saturate(0.94) brightness(0.74) contrast(1.1);
  transform: scale(1.08);
}

.nyx-three-section .hero-overlay {
  background:
    radial-gradient(circle at 14% 28%, rgba(214, 188, 144, 0.14), transparent 22%),
    radial-gradient(circle at 36% 44%, rgba(5, 7, 10, 0.26), transparent 24%),
    radial-gradient(circle at 60% 16%, rgba(255, 255, 255, 0.07), transparent 16%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.9) 0%, rgba(5, 7, 10, 0.48) 26%, rgba(5, 7, 10, 0.08) 48%, rgba(5, 7, 10, 0.68) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.08) 0%, rgba(5, 7, 10, 0.78) 100%);
}

.nyx-three-section .hero-content.reserve-stage {
  grid-template-columns: minmax(0, 1.08fr) minmax(17.8rem, 19rem);
  gap: clamp(2.2rem, 4vw, 4.8rem);
  align-items: center;
  min-height: calc(100svh - 7.1rem);
}

.nyx-three-section .reserve-copy {
  max-width: 34.5rem;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.nyx-three-section .reserve-copy::before {
  content: "";
  position: absolute;
  inset: -3rem -2rem -2rem -2.4rem;
  background:
    radial-gradient(circle at 22% 36%, rgba(5, 7, 10, 0.72), rgba(5, 7, 10, 0.18) 42%, transparent 72%);
  filter: blur(26px);
  opacity: 0.96;
  pointer-events: none;
  z-index: -1;
}

.nyx-three-section .hero-eyebrow {
  margin-bottom: 0.96rem;
}

.nyx-three-section .hero-copy h1 {
  max-width: none;
  font-size: clamp(3.72rem, 5.85vw, 6.05rem);
  line-height: 0.84;
  letter-spacing: -0.065em;
  text-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
}

.nyx-three-section .hero-summary {
  max-width: 22.8rem;
  margin-top: 0.84rem;
  color: rgba(236, 228, 214, 0.86);
  font-size: 0.91rem;
  line-height: 1.6;
  text-wrap: balance;
}

.nyx-three-section .reserve-actions {
  margin-top: 0.88rem;
}

.nyx-three-section .reserve-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
  max-width: 28.5rem;
  margin-top: 0.94rem;
}

.nyx-three-section .reserve-proof-item {
  min-height: 0;
  padding-inline: 0;
  padding-top: 0.56rem;
  border-right: 0;
  border-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nyx-three-section .reserve-proof-item span {
  display: block;
  margin-bottom: 0.28rem;
  color: rgba(229, 219, 206, 0.48);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nyx-three-section .reserve-proof-item strong {
  color: rgba(246, 238, 225, 0.88);
  font-size: 0.77rem;
  font-weight: 600;
  line-height: 1.34;
}

.nyx-three-section .reserve-panel {
  align-self: center;
  justify-self: end;
  max-width: 17.8rem;
  margin-top: 0.3rem;
  padding: 0.92rem;
  border-radius: 1.72rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(10, 12, 16, 0.74);
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nyx-three-section .reserve-panel::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%, rgba(214, 188, 144, 0.06));
}

.nyx-three-section .reserve-panel-title {
  max-width: 7.2ch;
  font-size: clamp(1.32rem, 1.62vw, 1.74rem);
  line-height: 0.93;
}

.nyx-three-section .reserve-panel-copy {
  margin: 0.72rem 0 0;
  color: rgba(229, 219, 206, 0.74);
  font-size: 0.86rem;
  line-height: 1.52;
}

.nyx-three-section .reserve-panel-meta {
  display: grid;
  gap: 0.42rem;
  margin-top: 0.8rem;
}

.nyx-three-section .reserve-panel-meta span {
  padding-top: 0.56rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(246, 238, 225, 0.76);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.45;
  text-transform: uppercase;
}

.nyx-three-section .experience-section {
  padding: 4.4rem 0 5.4rem;
  background:
    radial-gradient(circle at top, rgba(173, 132, 80, 0.13), transparent 22%),
    linear-gradient(180deg, #090c11 0%, #0b0e13 100%);
}

.nyx-three-section .experience-shell {
  display: grid;
  gap: 1.45rem;
}

.nyx-three-section .experience-intro {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(18rem, 0.72fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: end;
}

.nyx-three-section .experience-intro-title {
  max-width: 33rem;
}

.nyx-three-section .experience-intro h2 {
  max-width: 8ch;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
}

.nyx-three-section .experience-intro p {
  max-width: 23rem;
  margin: 0 0 0.22rem;
}

.nyx-three-section .experience-marquee {
  position: relative;
  overflow: hidden;
  grid-template-columns: minmax(0, 0.84fr) minmax(20rem, 1.06fr);
  gap: 0;
  padding: 0;
  border-radius: 2rem;
  border: 1px solid rgba(246, 238, 225, 0.32);
  background:
    linear-gradient(90deg, rgba(19, 16, 14, 0.96) 0%, rgba(19, 16, 14, 0.96) 40.5%, rgba(243, 234, 220, 0.98) 40.5%, rgba(231, 220, 203, 0.94) 100%);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.nyx-three-section .experience-marquee::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.nyx-three-section .experience-stage-copy p {
  max-width: 21rem;
  color: rgba(246, 238, 225, 0.72);
}

.nyx-three-section .experience-stage-copy {
  padding: 1.72rem 1.55rem 1.5rem;
}

.nyx-three-section .experience-stage .eyebrow {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(231, 213, 187, 0.86);
}

.nyx-three-section .experience-stage h3 {
  max-width: 10ch;
  color: var(--vellum-strong);
}

.nyx-three-section .experience-proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.62rem;
  margin-top: 1.22rem;
}

.nyx-three-section .experience-proof-band span {
  min-height: 0;
  padding: 0.6rem 0 0;
  border-radius: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(241, 231, 216, 0.68);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

.nyx-three-section .experience-stage-media {
  min-height: 20rem;
  position: relative;
  padding: 1.4rem 1.35rem 1.1rem 0.9rem;
  background:
    radial-gradient(circle at 28% 50%, rgba(255, 255, 255, 0.44), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
}

.nyx-three-section .experience-stage-media img {
  width: min(100%, 31rem);
  transform: translateY(0.2rem);
}

.nyx-three-section .experience-rail {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.93fr) minmax(0, 0.93fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005)),
    rgba(9, 11, 15, 0.28);
  border-radius: 1.3rem;
  overflow: hidden;
}

.nyx-three-section .experience-mode {
  min-height: 100%;
  padding: 1.1rem 1.15rem 1.18rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  box-shadow: none;
}

.nyx-three-section .experience-mode--lead {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    rgba(10, 12, 16, 0.12);
}

.nyx-three-section .experience-mode:last-child {
  border-right: 0;
}

.nyx-three-section .experience-mode-meta {
  margin-bottom: 0.66rem;
}

.nyx-three-section .experience-mode h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.34rem, 1.8vw, 1.72rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--vellum-strong);
}

.nyx-three-section .experience-mode p {
  margin: 0.72rem 0 0;
  color: rgba(220, 210, 197, 0.68);
  line-height: 1.58;
}

.nyx-three-section .experience-mode--lead h3 {
  font-size: clamp(1.48rem, 2vw, 1.94rem);
}

.nyx-three-section .concierge-section {
  padding: 5.2rem 0 5.8rem;
  background:
    radial-gradient(circle at 82% 12%, rgba(173, 132, 80, 0.12), transparent 20%),
    radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.03), transparent 16%),
    linear-gradient(180deg, #0a0d12 0%, #06080d 100%);
}

.nyx-three-section .concierge-shell {
  grid-template-columns: minmax(0, 0.88fr) minmax(21rem, 0.84fr);
  gap: clamp(1.4rem, 3vw, 2.6rem);
  align-items: start;
}

.nyx-three-section .concierge-copy {
  max-width: 30rem;
}

.nyx-three-section .concierge-copy h2 {
  max-width: 8.2ch;
  font-size: clamp(2.55rem, 4.2vw, 4.2rem);
  line-height: 0.92;
}

.nyx-three-section .booking-keyline {
  max-width: 29rem;
  margin-top: 1rem;
  color: rgba(244, 236, 224, 0.88);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.7;
  text-transform: none;
}

.nyx-three-section .concierge-assurance {
  max-width: 24rem;
  margin: 1rem 0 0;
  color: rgba(220, 210, 197, 0.68);
  font-size: 0.82rem;
  line-height: 1.62;
}

.nyx-three-section .concierge-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.nyx-three-section .concierge-note {
  padding-top: 0.78rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.nyx-three-section .concierge-note strong {
  color: rgba(246, 238, 225, 0.78);
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nyx-three-section .concierge-note p {
  margin-top: 0.36rem;
  color: rgba(220, 210, 197, 0.66);
  line-height: 1.58;
}

.nyx-three-section .concierge-form-card {
  padding: 1.32rem;
  border-radius: 1.78rem;
  background:
    radial-gradient(circle at top right, rgba(173, 132, 80, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(11, 13, 18, 0.88);
}

.nyx-three-section .concierge-form-head {
  margin-bottom: 1rem;
}

.nyx-three-section .hero-booking-status {
  display: block;
  max-width: 24rem;
  line-height: 1.58;
}

.nyx-three-section .concierge-form-grid {
  gap: 0.84rem;
}

.nyx-three-section .booking-field input,
.nyx-three-section .booking-field select {
  min-height: 3.45rem;
  border-radius: 1rem;
}

.nyx-three-section .hero-booking-submit {
  margin-top: 1rem;
}

.nyx-three-section .booking-preview {
  margin-top: 0.9rem;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.015);
}

.nyx-three-section .concierge-utilities {
  margin-top: 0.92rem;
  justify-content: flex-start;
}

.nyx-three-section .concierge-call-link {
  display: inline-flex;
  width: auto;
  min-width: 11rem;
  justify-content: center;
  text-decoration: none;
}

.nyx-three-section .booking-outcome {
  margin-top: 0.92rem;
  max-width: 24rem;
  color: rgba(220, 210, 197, 0.54);
  font-size: 0.74rem;
  line-height: 1.54;
}

@media (max-width: 1024px) {
  .nyx-three-section .hero-content.reserve-stage,
  .nyx-three-section .concierge-shell,
  .nyx-three-section .experience-marquee {
    grid-template-columns: 1fr;
  }

  .nyx-three-section .reserve-copy,
  .nyx-three-section .concierge-copy {
    max-width: 100%;
  }

  .nyx-three-section .reserve-panel {
    justify-self: stretch;
    max-width: 100%;
    margin-top: 0.2rem;
  }

  .nyx-three-section .experience-rail {
    grid-template-columns: 1fr;
  }

  .nyx-three-section .concierge-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .site-header {
    padding-top: 0.78rem;
  }

  .nyx-three-section .nav-shell {
    width: min(calc(100% - 0.9rem), 100%);
    padding: 0.7rem 0.8rem;
    border-radius: 1.45rem;
  }

  .nyx-three-section .brand {
    gap: 0.68rem;
  }

  .nyx-three-section .brand-seal {
    width: 2.6rem;
    height: 2.6rem;
  }

  .nyx-three-section .brand-mark {
    font-size: 0.78rem;
    letter-spacing: 0.24em;
  }

  .nyx-three-section .button-compact,
  .nyx-three-section .button-compact.fx-magnetic {
    min-height: 2.9rem;
    padding-inline: 1rem;
    font-size: 0.78rem;
  }

  .nyx-three-section .reserve-hero {
    padding: 5.25rem 0 3.1rem;
  }

  .nyx-three-section .hero-media {
    inset: 0.62rem;
    border-radius: 1.72rem;
  }

  .nyx-three-section .hero-video {
    object-position: 66% 49%;
    filter: saturate(0.92) brightness(0.58) contrast(1.12);
  }

  .nyx-three-section .hero-overlay {
    background:
      radial-gradient(circle at 16% 28%, rgba(214, 188, 144, 0.12), transparent 18%),
      linear-gradient(90deg, rgba(5, 7, 10, 0.96) 0%, rgba(5, 7, 10, 0.88) 42%, rgba(5, 7, 10, 0.42) 76%, rgba(5, 7, 10, 0.84) 100%),
      linear-gradient(180deg, rgba(5, 7, 10, 0.1) 0%, rgba(5, 7, 10, 0.84) 100%);
  }

  .nyx-three-section .hero-content.reserve-stage {
    min-height: auto;
    gap: 1.05rem;
    align-items: start;
  }

  .nyx-three-section .reserve-copy {
    padding-top: 0.08rem;
  }

  .nyx-three-section .reserve-copy::before {
    inset: -2rem -1.4rem -1.4rem -1.8rem;
    filter: blur(20px);
  }

  .nyx-three-section .hero-eyebrow {
    margin-bottom: 0.94rem;
  }

  .nyx-three-section .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.92rem, 10vw, 4.05rem);
    line-height: 0.92;
  }

  .nyx-three-section .hero-summary {
    max-width: 18.4rem;
    margin-top: 0.86rem;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .nyx-three-section .reserve-actions {
    display: flex;
    margin-top: 1rem;
  }

  .nyx-three-section .reserve-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem 0.9rem;
    margin-top: 0.98rem;
  }

  .nyx-three-section .reserve-proof-item {
    padding-top: 0.56rem;
  }

  .nyx-three-section .reserve-proof-item:last-child {
    grid-column: 1 / -1;
  }

  .nyx-three-section .reserve-panel {
    display: none;
  }

  .nyx-three-section .experience-intro {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .nyx-three-section .experience-intro h2 {
    max-width: 8.4ch;
    font-size: clamp(2.55rem, 8.6vw, 3.7rem);
  }

  .nyx-three-section .concierge-copy h2 {
    max-width: 8.4ch;
    font-size: clamp(2.38rem, 8vw, 3.35rem);
  }

  .nyx-three-section .experience-section,
  .nyx-three-section .concierge-section {
    padding-top: 4.4rem;
    padding-bottom: 4.8rem;
  }

  .nyx-three-section .experience-marquee {
    grid-template-columns: 1fr;
    padding: 0;
    border-radius: 1.6rem;
    background:
      linear-gradient(180deg, rgba(19, 16, 14, 0.96) 0%, rgba(19, 16, 14, 0.96) 43%, rgba(243, 234, 220, 0.98) 43%, rgba(231, 220, 203, 0.94) 100%);
  }

  .nyx-three-section .experience-stage-copy {
    padding: 1.12rem 1.1rem 1rem;
  }

  .nyx-three-section .experience-stage-media {
    min-height: 11.5rem;
    padding: 0.2rem 0.9rem 0.9rem;
  }

  .nyx-three-section .experience-proof-band span {
    width: 100%;
  }

  .nyx-three-section .experience-rail {
    grid-template-columns: 1fr;
    border-radius: 1.1rem;
  }

  .nyx-three-section .experience-mode {
    padding: 0.98rem 1rem 1.05rem;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nyx-three-section .experience-mode:last-child {
    border-bottom: 0;
  }

  .nyx-three-section .concierge-assurance {
    margin-top: 0.88rem;
  }

  .nyx-three-section .concierge-notes {
    gap: 0.72rem;
    margin-top: 1.18rem;
  }

  .nyx-three-section .concierge-form-card {
    order: 0;
  }

  .nyx-three-section .concierge-call-link {
    width: 100%;
    min-width: 0;
  }
}

/* Production-grade finish */
.nyx-three-section .hero-copy h1,
.nyx-three-section .experience-intro h2,
.nyx-three-section .experience-stage h3,
.nyx-three-section .experience-mode h3,
.nyx-three-section .concierge-copy h2 {
  font-optical-sizing: auto;
  font-variant-ligatures: common-ligatures discretionary-ligatures;
}

.nyx-three-section .reserve-hero {
  padding: 5.45rem 0 2.4rem;
}

.nyx-three-section .hero-media {
  inset: 0.6rem;
  border-radius: 2.56rem;
  box-shadow:
    0 48px 128px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nyx-three-section .hero-media::before {
  background:
    radial-gradient(circle at 16% 32%, rgba(214, 188, 144, 0.24), transparent 26%),
    radial-gradient(circle at 56% 18%, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 46%, rgba(173, 132, 80, 0.1));
}

.nyx-three-section .hero-media::after {
  background:
    radial-gradient(circle at 46% 38%, rgba(255, 245, 230, 0.11), transparent 20%),
    radial-gradient(circle at 20% 40%, rgba(5, 7, 10, 0.52), transparent 34%),
    linear-gradient(90deg, rgba(4, 5, 8, 0.86) 0%, rgba(4, 5, 8, 0.48) 24%, rgba(4, 5, 8, 0.06) 52%, rgba(4, 5, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 5, 8, 0.08) 0%, rgba(4, 5, 8, 0.76) 100%);
}

.nyx-three-section .hero-video {
  inset: -4%;
  width: 108%;
  height: 108%;
  object-position: 54% 45%;
  filter: saturate(1) brightness(0.81) contrast(1.08);
  transform: scale(1.06);
}

.nyx-three-section .hero-overlay {
  background:
    radial-gradient(circle at 18% 38%, rgba(5, 7, 10, 0.78), transparent 34%),
    radial-gradient(circle at 48% 26%, rgba(255, 245, 226, 0.12), transparent 20%),
    linear-gradient(90deg, rgba(5, 7, 10, 0.82) 0%, rgba(5, 7, 10, 0.5) 28%, rgba(5, 7, 10, 0.08) 52%, rgba(5, 7, 10, 0.7) 100%),
    linear-gradient(180deg, rgba(5, 7, 10, 0.14) 0%, rgba(5, 7, 10, 0.74) 100%);
}

.nyx-three-section .hero-content.reserve-stage {
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 14.6rem);
  gap: clamp(1.9rem, 3.8vw, 3.8rem);
  justify-items: stretch;
  align-items: start;
  min-height: min(46rem, calc(100svh - 7.2rem));
  padding-top: 0.82rem;
}

.nyx-three-section .reserve-copy {
  width: 100%;
  max-width: 30.5rem;
  justify-self: stretch;
  padding-bottom: 0.2rem;
}

.nyx-three-section .reserve-copy::before {
  inset: -2.8rem -2rem -1rem -2.1rem;
  background:
    radial-gradient(circle at 26% 38%, rgba(4, 6, 10, 0.86), rgba(4, 6, 10, 0.28) 46%, transparent 74%);
  filter: blur(30px);
}

.nyx-three-section .hero-copy h1 {
  max-width: 7.8ch;
  font-size: clamp(3.45rem, 5vw, 5.38rem);
  line-height: 0.82;
  text-shadow: 0 26px 60px rgba(0, 0, 0, 0.4);
}

.nyx-three-section .hero-summary {
  max-width: 21.5rem;
  margin-top: 0.88rem;
  color: rgba(240, 232, 220, 0.88);
  font-size: 0.9rem;
  line-height: 1.62;
}

.nyx-three-section .reserve-actions {
  margin-top: 1.08rem;
}

.nyx-three-section .reserve-proof-strip {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.72rem 0.95rem;
  width: max-content;
  max-width: 100%;
  margin-top: 1.46rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  backdrop-filter: none;
}

.nyx-three-section .reserve-proof-strip article.reserve-proof-item {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  min-height: 0;
  padding: 0 0.95rem 0 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: none;
  box-shadow: none;
  backdrop-filter: none;
}

.nyx-three-section .reserve-proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.nyx-three-section .reserve-proof-item span {
  display: none;
}

.nyx-three-section .reserve-proof-item strong {
  display: block;
  max-width: none;
  color: rgba(248, 240, 228, 0.82);
  font-size: 0.71rem;
  font-weight: 600;
  line-height: 1.36;
  white-space: nowrap;
}

.nyx-three-section .reserve-panel {
  justify-self: end;
  align-self: center;
  width: min(100%, 14.6rem);
  max-width: 14.6rem;
  margin-top: 0;
  margin-bottom: 0.7rem;
  padding: 0.92rem 0.92rem 0.88rem;
  border-radius: 1.38rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.014)),
    rgba(9, 11, 16, 0.52);
  backdrop-filter: blur(18px) saturate(1.08);
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.nyx-three-section .reserve-panel::before {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 46%, rgba(214, 188, 144, 0.08));
}

.nyx-three-section .reserve-panel-title {
  max-width: 7ch;
  font-size: clamp(1.08rem, 1.24vw, 1.38rem);
  line-height: 0.94;
}

.nyx-three-section .reserve-panel-copy {
  margin-top: 0.58rem;
  color: rgba(233, 223, 210, 0.68);
  font-size: 0.76rem;
  line-height: 1.5;
}

.nyx-three-section .reserve-panel-meta {
  gap: 0.28rem;
  margin-top: 0.68rem;
}

.nyx-three-section .reserve-panel-meta span {
  padding-top: 0.46rem;
  font-size: 0.59rem;
  line-height: 1.36;
}

.nyx-three-section .experience-section {
  padding: 4.9rem 0 5.9rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(173, 132, 80, 0.14), transparent 20%),
    linear-gradient(180deg, #090b10 0%, #0a0d12 100%);
}

.nyx-three-section .experience-shell {
  gap: 1.72rem;
}

.nyx-three-section .experience-intro h2 {
  max-width: 7.6ch;
  letter-spacing: -0.05em;
}

.nyx-three-section .experience-intro p {
  max-width: 21.5rem;
  color: rgba(227, 217, 204, 0.76);
  font-size: 0.92rem;
  line-height: 1.64;
}

.nyx-three-section .experience-marquee {
  border-radius: 2.15rem;
  border-color: rgba(246, 238, 225, 0.28);
  background:
    linear-gradient(90deg, rgba(17, 14, 13, 0.98) 0%, rgba(17, 14, 13, 0.98) 38.5%, rgba(245, 236, 222, 0.99) 38.5%, rgba(232, 221, 203, 0.95) 100%);
  box-shadow:
    0 38px 92px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.nyx-three-section .experience-stage-copy {
  padding: 1.9rem 1.82rem 1.62rem;
}

.nyx-three-section .experience-stage-copy p {
  max-width: 19.75rem;
  font-size: 0.91rem;
  line-height: 1.66;
}

.nyx-three-section .experience-proof-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem 1rem;
  margin-top: 1.34rem;
}

.nyx-three-section .experience-proof-band span {
  width: auto;
  padding: 0.58rem 0.7rem 0 0;
  border-top-color: rgba(255, 255, 255, 0.16);
  font-size: 0.58rem;
}

.nyx-three-section .experience-stage-media {
  min-height: 21rem;
  padding: 1.15rem 1.42rem 1rem 1rem;
  background:
    radial-gradient(circle at 30% 55%, rgba(255, 255, 255, 0.54), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.nyx-three-section .experience-stage-media img {
  width: min(100%, 33rem);
  margin-left: auto;
  transform: translateY(0.32rem) scale(1.02);
  filter: drop-shadow(0 24px 30px rgba(23, 19, 15, 0.1));
}

.nyx-three-section .experience-rail {
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.9fr) minmax(0, 0.9fr);
  border-radius: 1.48rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008)),
    rgba(8, 10, 14, 0.38);
}

.nyx-three-section .experience-mode {
  padding: 1.18rem 1.22rem 1.28rem;
}

.nyx-three-section .experience-mode--lead {
  background:
    radial-gradient(circle at top left, rgba(173, 132, 80, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(9, 12, 16, 0.2);
}

.nyx-three-section .experience-mode p {
  color: rgba(223, 213, 199, 0.7);
  font-size: 0.88rem;
  line-height: 1.62;
}

.nyx-three-section .concierge-section {
  padding: 5.6rem 0 6rem;
}

.nyx-three-section .concierge-shell {
  grid-template-columns: minmax(0, 0.88fr) minmax(21.8rem, 0.82fr);
  gap: clamp(1.7rem, 3vw, 3rem);
}

.nyx-three-section .concierge-copy h2 {
  max-width: 7.8ch;
}

.nyx-three-section .booking-keyline {
  max-width: 27rem;
  line-height: 1.68;
}

.nyx-three-section .concierge-assurance {
  max-width: 22rem;
  font-size: 0.8rem;
}

.nyx-three-section .concierge-notes {
  gap: 1.14rem;
  margin-top: 1.5rem;
}

.nyx-three-section .concierge-note {
  padding-top: 0.86rem;
}

.nyx-three-section .concierge-form-card {
  padding: 1.42rem;
  border-radius: 1.92rem;
  background:
    radial-gradient(circle at top right, rgba(173, 132, 80, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.016)),
    rgba(9, 11, 15, 0.84);
  box-shadow:
    0 32px 86px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(1.16);
}

.nyx-three-section .hero-booking-status {
  max-width: 22rem;
  color: rgba(230, 220, 206, 0.68);
  font-size: 0.79rem;
}

.nyx-three-section .booking-preview {
  padding: 0.94rem 1rem;
}

.nyx-three-section .booking-outcome {
  font-size: 0.72rem;
}

.nyx-three-section .site-footer {
  padding: 2.7rem 0 2.95rem;
  background:
    linear-gradient(180deg, rgba(5, 7, 10, 0) 0%, rgba(5, 7, 10, 0.88) 26%, #020305 100%);
}

.nyx-three-section .minimal-footer {
  gap: 1.25rem;
  padding-top: 1.34rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nyx-three-section .minimal-footer .footer-note {
  max-width: 24rem;
  color: rgba(214, 205, 192, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.nyx-three-section .minimal-footer-links {
  gap: 1.15rem;
}

.nyx-three-section .minimal-footer-links a {
  color: rgba(246, 238, 225, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

@media (max-width: 1100px) {
  .nyx-three-section .reserve-proof-strip {
    max-width: 100%;
  }

  .nyx-three-section .concierge-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .site-header {
    padding-top: 0.68rem;
  }

  .nyx-three-section .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.56rem 0.66rem;
  }

  .nyx-three-section .site-nav {
    display: none;
  }

  .nyx-three-section .button-compact,
  .nyx-three-section .button-compact.fx-magnetic {
    min-height: 2.58rem;
    padding-inline: 0.9rem;
  }

  .nyx-three-section .reserve-hero {
    padding: 4.5rem 0 2.5rem;
    perspective: none;
  }

  .nyx-three-section .hero-media {
    inset: 0.52rem;
    border-radius: 1.52rem;
  }

  .nyx-three-section .hero-video {
    object-position: 58% 46%;
    filter: saturate(0.96) brightness(0.74) contrast(1.07);
  }

  .nyx-three-section .hero-overlay {
    background:
      radial-gradient(circle at 22% 35%, rgba(4, 5, 9, 0.84), transparent 34%),
      radial-gradient(circle at 52% 26%, rgba(255, 245, 228, 0.1), transparent 18%),
      linear-gradient(90deg, rgba(4, 5, 9, 0.78) 0%, rgba(4, 5, 9, 0.58) 40%, rgba(4, 5, 9, 0.22) 74%, rgba(4, 5, 9, 0.62) 100%),
      linear-gradient(180deg, rgba(4, 5, 9, 0.12) 0%, rgba(4, 5, 9, 0.78) 100%);
  }

  .nyx-three-section .hero-content.reserve-stage {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 0.18rem;
  }

  .nyx-three-section .reserve-copy {
    width: 100%;
    max-width: 100%;
    padding-top: 0.18rem;
    transform: translate3d(0, calc(var(--surface-scrub-y, 0px) + var(--hero-copy-y, 0px) + var(--reveal-shift, 0px)), 0)
      scale(1);
  }

  .nyx-three-section .reserve-copy::before {
    inset: -1.8rem -1.1rem -0.8rem -1.4rem;
    background:
      radial-gradient(circle at 24% 36%, rgba(4, 6, 10, 0.92), rgba(4, 6, 10, 0.36) 46%, transparent 74%);
    filter: blur(18px);
  }

  .nyx-three-section .hero-eyebrow {
    margin-bottom: 0.62rem;
  }

  .nyx-three-section .hero-copy h1 {
    max-width: none;
    font-size: clamp(2.46rem, 10.8vw, 3.58rem);
    line-height: 0.89;
    letter-spacing: -0.055em;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  }

  .nyx-three-section .hero-summary {
    max-width: 17.8rem;
    margin-top: 0.66rem;
    font-size: 0.84rem;
    line-height: 1.52;
    color: rgba(244, 236, 224, 0.9);
  }

  .nyx-three-section .reserve-actions {
    margin-top: 0.84rem;
  }

  .nyx-three-section .reserve-actions .button {
    width: 100%;
    justify-content: center;
  }

  .nyx-three-section .reserve-proof-strip {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.52rem;
    width: 100%;
    margin-top: 0.92rem;
  }

  .nyx-three-section .reserve-proof-strip article.reserve-proof-item,
  .nyx-three-section .reserve-proof-strip article.reserve-proof-item:last-child {
    display: block;
    min-width: 0;
    padding: 0.52rem 0 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: none;
    box-shadow: none;
  }

  .nyx-three-section .reserve-proof-item:first-child {
    border-top: 0;
  }

  .nyx-three-section .reserve-proof-item span {
    display: block;
    margin-bottom: 0.16rem;
    font-size: 0.52rem;
    letter-spacing: 0.16em;
  }

  .nyx-three-section .reserve-proof-item strong {
    white-space: normal;
    font-size: 0.72rem;
  }

  .nyx-three-section .experience-section,
  .nyx-three-section .concierge-section {
    padding-top: 4.1rem;
    padding-bottom: 4.45rem;
  }

  .nyx-three-section .experience-intro {
    gap: 0.72rem;
  }

  .nyx-three-section .experience-intro h2 {
    max-width: 7.7ch;
    font-size: clamp(2.4rem, 10vw, 3.55rem);
  }

  .nyx-three-section .experience-intro p {
    max-width: 18rem;
    font-size: 0.88rem;
  }

  .nyx-three-section .experience-marquee {
    border-radius: 1.45rem;
    background:
      linear-gradient(180deg, rgba(17, 14, 13, 0.97) 0%, rgba(17, 14, 13, 0.97) 46%, rgba(244, 236, 223, 0.99) 46%, rgba(232, 221, 203, 0.95) 100%);
  }

  .nyx-three-section .experience-stage-copy {
    padding: 1.18rem 1rem 1rem;
  }

  .nyx-three-section .experience-proof-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.42rem;
  }

  .nyx-three-section .experience-proof-band span {
    padding-top: 0.42rem;
  }

  .nyx-three-section .experience-stage-media {
    min-height: 12.4rem;
    padding: 0.35rem 0.8rem 0.9rem;
  }

  .nyx-three-section .experience-stage-media img {
    width: min(100%, 18rem);
    margin: 0 auto;
    transform: translateY(0.18rem);
  }

  .nyx-three-section .experience-stage-media--vehicle {
    min-height: 14.25rem;
    padding: 0.2rem 0.58rem 0.82rem 0.38rem;
    background:
      radial-gradient(circle at 68% 42%, rgba(255, 248, 235, 0.96) 0%, rgba(241, 228, 204, 0.9) 28%, rgba(223, 205, 176, 0.4) 56%, rgba(24, 19, 15, 0) 82%),
      linear-gradient(180deg, rgba(246, 238, 224, 0.98), rgba(229, 216, 196, 0.96));
  }

  .nyx-three-section .experience-stage-media--vehicle::before {
    inset: 0.8rem 0.7rem auto 0.7rem;
  }

  .nyx-three-section .vehicle-stage-trail {
    display: none;
  }

  .nyx-three-section .vehicle-stage-runway {
    left: 5%;
    right: 2%;
    height: 40%;
  }

  .nyx-three-section .vehicle-stage-reflection {
    left: 15%;
    right: 6%;
    bottom: 0.9rem;
    height: 4.4rem;
  }

  .nyx-three-section .vehicle-stage-shadow {
    left: 12%;
    right: 5%;
    height: 2.7rem;
  }

  .nyx-three-section .vehicle-stage-car {
    right: -2%;
    bottom: 0.55rem;
    width: min(17.4rem, 108%);
    transform:
      translate3d(calc(-0.1rem + var(--vehicle-drive-x) * 0.2), calc(0.18rem + var(--vehicle-drive-y) * 0.22), 0)
      scale(calc(0.9 + var(--vehicle-progress) * 0.06))
      rotate(-0.4deg);
  }

  .nyx-three-section .vehicle-stage-headlight {
    width: 4.8rem;
    height: 1.2rem;
    opacity: calc(0.03 + var(--vehicle-glow-opacity) * 0.34);
    filter: blur(10px);
  }

  .nyx-three-section .experience-stage-media--vehicle img {
    width: 100%;
    transform: none;
  }

  .nyx-three-section .experience-mode {
    padding: 1rem 1rem 1.08rem;
  }

  .nyx-three-section .experience-mode h3 {
    font-size: 1.28rem;
    line-height: 0.98;
  }

  .nyx-three-section .experience-mode--lead h3 {
    font-size: 1.42rem;
  }

  .nyx-three-section .concierge-copy h2 {
    font-size: clamp(2.36rem, 9vw, 3.2rem);
  }

  .nyx-three-section .booking-keyline {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .nyx-three-section .concierge-notes {
    gap: 0.56rem;
    margin-top: 1rem;
  }

  .nyx-three-section .concierge-note {
    padding-top: 0.56rem;
  }

  .nyx-three-section .concierge-form-card {
    padding: 1.05rem;
    border-radius: 1.4rem;
  }

  .nyx-three-section .hero-booking-status {
    font-size: 0.78rem;
  }

  .nyx-three-section .booking-field input,
  .nyx-three-section .booking-field select {
    min-height: 3.16rem;
  }

  .nyx-three-section .booking-preview {
    margin-top: 0.78rem;
  }

  .nyx-three-section .booking-outcome {
    max-width: none;
  }

  .nyx-three-section .site-footer {
    padding: 2rem 0 2.2rem;
  }

  .nyx-three-section .minimal-footer {
    grid-template-columns: 1fr;
    gap: 0.78rem;
    justify-items: start;
  }

  .nyx-three-section .minimal-footer .footer-note {
    max-width: none;
    font-size: 0.74rem;
  }

  .nyx-three-section .minimal-footer-links {
    gap: 0.86rem;
    flex-wrap: wrap;
  }
}

/* Header polish */
.nyx-three-section .site-header {
  padding-top: 0.9rem;
}

.nyx-three-section .nav-shell {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) auto auto;
  align-items: center;
  gap: 1.15rem;
  width: min(calc(100% - 1.4rem), 1220px);
  padding: 0.92rem 1.12rem 0.92rem 0.98rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 170, 106, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(6, 8, 12, 0.84);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.34),
    0 6px 16px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(32px) saturate(170%);
}

.nyx-three-section .nav-shell::after {
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(90deg, transparent, rgba(219, 182, 122, 0.08) 52%, transparent);
  opacity: 0.92;
}

body.is-scrolled .nyx-three-section .nav-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    rgba(7, 9, 13, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nyx-three-section .brand {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.98rem;
  min-width: 0;
}

.nyx-three-section .brand-seal {
  width: 3.4rem;
  height: 3.4rem;
  padding: 0.72rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 22%, rgba(216, 185, 128, 0.18), transparent 56%),
    linear-gradient(180deg, rgba(18, 22, 30, 0.96), rgba(6, 8, 12, 0.98));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nyx-three-section .brand-seal img {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 18px rgba(216, 185, 128, 0.14));
}

.nyx-three-section .brand-lockup {
  display: grid;
  gap: 0.14rem;
  min-width: 0;
}

.nyx-three-section .brand-mark {
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(248, 242, 232, 0.96);
  font-family: "Manrope", var(--font-ui);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.52em;
}

.nyx-three-section .brand-copy {
  color: rgba(247, 241, 230, 0.92);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.08;
  text-transform: uppercase;
}

.nyx-three-section .brand-subcopy {
  color: rgba(207, 195, 177, 0.58);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.1;
  text-transform: uppercase;
}

.nyx-three-section .site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.36rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 24px rgba(0, 0, 0, 0.16);
}

.nyx-three-section .site-nav a {
  padding: 0.76rem 1.1rem;
  border-radius: 999px;
  color: rgba(241, 232, 219, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nyx-three-section .site-nav a:hover,
.nyx-three-section .site-nav a:focus-visible {
  color: rgba(255, 248, 237, 0.96);
  background: rgba(255, 255, 255, 0.04);
}

.nyx-three-section .site-nav a::after {
  bottom: 0.38rem;
  left: 0.9rem;
  right: 0.9rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 185, 128, 0.82), transparent);
}

.nyx-three-section .button-compact,
.nyx-three-section .button-compact.fx-magnetic {
  justify-self: end;
  min-width: 10.75rem;
  min-height: 3.45rem;
  padding-inline: 1.4rem;
  color: #fff6ea;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 999px;
  border: 1px solid rgba(239, 222, 196, 0.2);
  background:
    linear-gradient(180deg, rgba(250, 244, 234, 0.16), rgba(173, 129, 74, 0.12)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 48%, rgba(205, 161, 103, 0.16)),
    rgba(53, 40, 27, 0.68);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -14px 24px rgba(0, 0, 0, 0.12);
}

.nyx-three-section .button-compact:hover,
.nyx-three-section .button-compact:focus-visible,
.nyx-three-section .button-compact.fx-magnetic:hover,
.nyx-three-section .button-compact.fx-magnetic:focus-visible {
  border-color: rgba(247, 232, 209, 0.34);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -16px 28px rgba(0, 0, 0, 0.16);
}

@media (max-width: 1080px) {
  .nyx-three-section .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand cta"
      "nav nav";
    gap: 0.9rem;
  }

  .nyx-three-section .brand {
    grid-area: brand;
  }

  .nyx-three-section .site-nav {
    grid-area: nav;
    justify-self: start;
  }

  .nyx-three-section .button-compact,
  .nyx-three-section .button-compact.fx-magnetic {
    grid-area: cta;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .nav-shell {
    width: min(calc(100% - 0.9rem), 1220px);
    padding: 0.7rem 0.74rem 0.78rem;
    border-radius: 1.55rem;
  }

  .nyx-three-section .brand {
    gap: 0.72rem;
  }

  .nyx-three-section .brand-seal {
    width: 2.9rem;
    height: 2.9rem;
    padding: 0.58rem;
    border-radius: 1.1rem;
  }

  .nyx-three-section .brand-mark {
    font-size: 0.72rem;
    letter-spacing: 0.42em;
  }

  .nyx-three-section .brand-copy {
    font-size: 0.76rem;
    letter-spacing: 0.22em;
  }

  .nyx-three-section .brand-subcopy {
    display: none;
  }

  .nyx-three-section .site-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .nyx-three-section .site-nav a {
    flex: 0 0 auto;
    padding: 0.7rem 0.9rem;
    font-size: 0.7rem;
  }

  .nyx-three-section .button-compact,
  .nyx-three-section .button-compact.fx-magnetic {
    min-width: 0;
    min-height: 3rem;
    padding-inline: 1.05rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand cta";
    padding: 0.62rem 0.66rem;
  }

  .nyx-three-section .site-nav {
    display: none !important;
  }
}

/* Header final */
.nyx-three-section .site-header {
  padding-top: 0.82rem;
}

.nyx-three-section .nav-shell {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: min(calc(100% - 1.4rem), 1200px);
  padding: 0.92rem 1.12rem;
  border-radius: 1.7rem;
  border: 1px solid rgba(232, 214, 190, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(8, 10, 14, 0.84);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(140%);
}

.nyx-three-section .nav-shell::after {
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 36%),
    linear-gradient(90deg, transparent, rgba(216, 185, 128, 0.06) 52%, transparent);
  opacity: 0.88;
}

body.is-scrolled .nyx-three-section .nav-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(7, 9, 13, 0.9);
}

.nyx-three-section .brand {
  display: flex;
  align-items: center;
  gap: 0.92rem;
  width: auto;
  min-width: 0;
}

.nyx-three-section .brand-seal {
  width: 2.85rem;
  height: 2.85rem;
  padding: 0.56rem;
  border-radius: 0.98rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(5, 7, 10, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.22);
}

.nyx-three-section .brand-lockup {
  display: grid;
  grid-auto-flow: row;
  align-content: center;
  justify-items: start;
  width: auto;
  gap: 0.14rem;
}

.nyx-three-section .brand-mark,
.nyx-three-section .brand-copy,
.nyx-three-section .brand-subcopy {
  width: auto;
}

.nyx-three-section .brand-mark {
  display: block;
  color: rgba(220, 191, 147, 0.9);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

.nyx-three-section .brand-copy {
  display: block;
  color: rgba(246, 238, 225, 0.9);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.02;
  text-transform: uppercase;
}

.nyx-three-section .brand-subcopy {
  display: block;
  color: rgba(210, 200, 186, 0.58);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nyx-three-section .site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.nyx-three-section .site-nav a {
  padding: 0;
  border-radius: 0;
  color: rgba(233, 223, 210, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nyx-three-section .site-nav a:hover,
.nyx-three-section .site-nav a:focus-visible {
  color: rgba(251, 244, 232, 0.95);
  background: none;
}

.nyx-three-section .site-nav a::after {
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 1px;
}

.nyx-three-section .button-compact,
.nyx-three-section .button-compact.fx-magnetic {
  justify-self: end;
  min-width: 9.75rem;
  min-height: 3.18rem;
  padding-inline: 1.18rem;
  font-size: 0.93rem;
  border-radius: 999px;
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -12px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 980px) {
  .nyx-three-section .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "brand cta";
    gap: 0.9rem;
  }

  .nyx-three-section .brand {
    grid-area: brand;
  }

  .nyx-three-section .button-compact,
  .nyx-three-section .button-compact.fx-magnetic {
    grid-area: cta;
  }

  .nyx-three-section .site-nav {
    display: none;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .site-header {
    padding-top: 0.72rem;
  }

  .nyx-three-section .nav-shell {
    width: min(calc(100% - 0.9rem), 1200px);
    padding: 0.56rem 0.62rem;
    border-radius: 1.42rem;
  }

  .nyx-three-section .brand {
    gap: 0.68rem;
  }

  .nyx-three-section .brand-seal {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.48rem;
    border-radius: 0.86rem;
  }

  .nyx-three-section .brand-copy {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .nyx-three-section .brand-subcopy {
    display: none;
  }

  .nyx-three-section .button-compact,
  .nyx-three-section .button-compact.fx-magnetic {
    min-width: 0;
    min-height: 2.72rem;
    padding-inline: 0.95rem;
    font-size: 0.84rem;
  }
}

/* Hero panel reset */
.nyx-three-section .hero-content.reserve-stage {
  grid-template-columns: minmax(0, 1.02fr) minmax(21rem, 24rem);
  align-items: end;
  gap: clamp(1.6rem, 3vw, 3rem);
}

.nyx-three-section .reserve-copy {
  max-width: 36rem;
  padding-bottom: 1rem;
}

.nyx-three-section .reserve-panel {
  justify-self: stretch;
  align-self: end;
  width: 100%;
  max-width: 24rem;
  margin: 0 0 1rem;
  padding: 1.22rem 1.18rem 1.18rem;
  border-radius: 1.95rem;
  border: 1px solid rgba(232, 214, 190, 0.1);
  background:
    radial-gradient(circle at top right, rgba(214, 188, 144, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(9, 11, 15, 0.82);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(26px) saturate(160%);
}

.nyx-three-section .reserve-panel::before {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 44%, rgba(214, 188, 144, 0.08));
  opacity: 0.95;
}

.nyx-three-section .reserve-panel-title {
  max-width: 10.8ch;
  margin-top: 0.28rem;
  font-size: clamp(1.72rem, 2vw, 2.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.nyx-three-section .reserve-panel-copy {
  max-width: 26ch;
  margin-top: 0.84rem;
  font-size: 0.94rem;
  line-height: 1.64;
}

.nyx-three-section .reserve-panel-meta {
  gap: 0.56rem;
  margin-top: 1rem;
}

.nyx-three-section .reserve-panel-meta span {
  padding-top: 0.68rem;
  color: rgba(246, 238, 225, 0.82);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
}

@media (max-width: 980px) {
  .nyx-three-section .hero-content.reserve-stage {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .nyx-three-section .reserve-copy {
    max-width: 100%;
    padding-bottom: 0;
  }

  .nyx-three-section .reserve-panel {
    justify-self: start;
    max-width: min(100%, 25rem);
    margin-bottom: 0;
  }
}

/* Section parallax */
.nyx-three-section .experience-intro,
.nyx-three-section .experience-stage,
.nyx-three-section .experience-mode,
.nyx-three-section .concierge-copy,
.nyx-three-section .concierge-note,
.nyx-three-section .concierge-form-card {
  --surface-scrub-x: 0px;
  --surface-scrub-y: 0px;
  transform: translate3d(
      calc(var(--parallax-x, 0px) + var(--surface-scrub-x, 0px)),
      calc(var(--parallax-y, 0px) + var(--surface-scrub-y, 0px) + var(--reveal-shift, 0px)),
      0
    );
  transition:
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms ease,
    background-color 420ms ease,
    filter 420ms ease;
  will-change: transform;
}

.nyx-three-section .experience-stage-media {
  --surface-scrub-y: 0px;
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--surface-scrub-y, 0px)), 0);
  transition: transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.nyx-three-section .experience-stage-media img {
  transform: translate3d(0, var(--media-drift, 0px), 0) scale(1.02);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.nyx-three-section .experience-stage:hover .experience-stage-media img {
  transform: translate3d(0, var(--media-drift, 0px), 0) scale(1.06);
}

@media (max-width: 860px) {
  .nyx-three-section .experience-intro,
  .nyx-three-section .experience-stage,
  .nyx-three-section .experience-mode,
  .nyx-three-section .concierge-copy,
  .nyx-three-section .concierge-note,
  .nyx-three-section .concierge-form-card,
  .nyx-three-section .experience-stage-media,
  .nyx-three-section .experience-stage-media img {
    transform: none;
  }
}

/* Sweep loop implementation overrides */
.nyx-three-section .hero-video {
  object-fit: cover;
  object-position: center center;
}

.nyx-three-section .site-header {
  backdrop-filter: blur(22px);
}

.nyx-three-section .nav-shell {
  gap: 1rem;
}

.nyx-three-section .site-nav {
  gap: 1rem;
  flex-wrap: wrap;
}

.nyx-three-section .site-nav a {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
}

.nyx-three-section .button.button-compact {
  min-height: 2.75rem;
}

.nyx-three-section .service-assurance {
  margin-top: 1.75rem;
  padding: clamp(1.2rem, 2vw, 1.6rem);
  border: 1px solid rgba(210, 185, 126, 0.18);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(17, 20, 26, 0.94), rgba(10, 12, 17, 0.98)),
    radial-gradient(circle at top left, rgba(210, 185, 126, 0.14), transparent 42%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.nyx-three-section .service-assurance-intro {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.nyx-three-section .service-assurance-intro h3 {
  margin: 0;
  color: #f6eee1;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 0.98;
}

.nyx-three-section .service-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.nyx-three-section .service-assurance-card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  min-height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.028);
}

.nyx-three-section .service-assurance-card span,
.nyx-three-section .footer-label {
  color: rgba(210, 185, 126, 0.74);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nyx-three-section .service-assurance-card strong {
  color: #f6eee1;
  font-size: 0.98rem;
  line-height: 1.35;
}

.nyx-three-section .service-assurance-card p,
.nyx-three-section .footer-note--secondary {
  margin: 0;
  color: rgba(234, 228, 219, 0.7);
  font-size: 0.88rem;
  line-height: 1.55;
}

.nyx-three-section .concierge-form-grid {
  gap: 0.95rem;
}

.nyx-three-section .booking-field {
  gap: 0.42rem;
}

.nyx-three-section .booking-field input,
.nyx-three-section .booking-field select {
  min-height: 3.4rem;
}

.nyx-three-section .booking-field-error {
  min-height: 1.15rem;
  color: #f2b7b0;
  font-size: 0.8rem;
  line-height: 1.35;
}

.nyx-three-section .booking-field.is-invalid input,
.nyx-three-section .booking-field.is-invalid select {
  border-color: rgba(242, 183, 176, 0.74);
  box-shadow: 0 0 0 1px rgba(242, 183, 176, 0.22), 0 18px 32px rgba(0, 0, 0, 0.18);
}

.nyx-three-section .booking-status {
  margin: 0.15rem 0 0;
  min-height: 1.35rem;
  color: rgba(232, 224, 212, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.nyx-three-section .booking-status.is-error {
  color: #f2b7b0;
}

.nyx-three-section .booking-status.is-ready,
.nyx-three-section .booking-status.is-success {
  color: rgba(205, 223, 193, 0.86);
}

.nyx-three-section .booking-status.is-preview {
  color: rgba(226, 207, 170, 0.9);
}

.nyx-three-section .booking-preview {
  border-color: rgba(210, 185, 126, 0.12);
}

.nyx-three-section .footer-layout--expanded {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
  align-items: start;
}

.nyx-three-section .footer-brand-block,
.nyx-three-section .footer-column {
  display: grid;
  gap: 0.7rem;
}

.nyx-three-section .footer-links {
  display: grid;
  gap: 0.52rem;
}

.nyx-three-section .footer-links a {
  width: fit-content;
}

.nyx-three-section .footer-note {
  margin: 0;
}

.nyx-policy-page {
  background:
    radial-gradient(circle at top, rgba(210, 185, 126, 0.08), transparent 24%),
    linear-gradient(180deg, #080b11 0%, #06080d 100%);
  color: #f6eee1;
}

.nyx-policy-page .site-header--policy {
  position: sticky;
  top: 0;
  z-index: 20;
}

.nyx-policy-page .policy-main {
  padding: 7.5rem 0 4rem;
}

.nyx-policy-page .policy-shell {
  display: grid;
  gap: 1.4rem;
}

.nyx-policy-page .policy-intro {
  max-width: 44rem;
  display: grid;
  gap: 0.8rem;
}

.nyx-policy-page .policy-intro h1 {
  margin: 0;
  color: #f6eee1;
  font-family: "Bodoni Moda", serif;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.nyx-policy-page .policy-intro p,
.nyx-policy-page .policy-card p {
  margin: 0;
  color: rgba(234, 228, 219, 0.78);
  font-size: 1rem;
  line-height: 1.7;
}

.nyx-policy-page .policy-card {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.2rem, 2vw, 2rem);
  border: 1px solid rgba(210, 185, 126, 0.16);
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(18, 21, 29, 0.95), rgba(10, 12, 17, 0.98));
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.24);
}

.nyx-policy-page .policy-card section {
  display: grid;
  gap: 0.45rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nyx-policy-page .policy-card section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.nyx-policy-page .policy-card h2 {
  margin: 0;
  font-size: 1.08rem;
  color: #f6eee1;
}

.nyx-policy-page .policy-card a {
  color: #f6eee1;
}

@media (max-width: 1024px) {
  .nyx-three-section .service-assurance-grid,
  .nyx-three-section .footer-layout--expanded {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nyx-three-section .footer-brand-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .nav-shell,
  .nyx-policy-page .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
  }

  .nyx-three-section .site-nav,
  .nyx-policy-page .site-nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    gap: 0.8rem;
    white-space: nowrap;
  }

  .nyx-three-section .hero-content.reserve-stage,
  .nyx-three-section .concierge-shell {
    gap: 1.35rem;
  }

  .nyx-three-section .reserve-proof-strip,
  .nyx-three-section .service-assurance-grid,
  .nyx-three-section .concierge-notes,
  .nyx-three-section .footer-layout--expanded {
    grid-template-columns: 1fr;
  }

  .nyx-three-section .hero-copy {
    max-width: 20rem;
  }

  .nyx-three-section .hero-copy h1 {
    max-width: 8.3ch;
    text-wrap: balance;
  }

  .nyx-three-section .concierge-form-card,
  .nyx-policy-page .policy-card {
    border-radius: 1.25rem;
  }

  .nyx-policy-page .policy-main {
    padding-top: 6.75rem;
  }
}

@media (max-width: 640px) {
  .nyx-three-section .site-header,
  .nyx-policy-page .site-header--policy {
    padding-top: 0.45rem;
  }

  .nyx-three-section .button.button-compact,
  .nyx-policy-page .button.button-compact {
    min-width: 0;
    padding-inline: 1rem;
  }

  .nyx-three-section .hero-content.reserve-stage {
    padding-top: 7rem;
  }

  .nyx-three-section .reserve-panel,
  .nyx-three-section .service-assurance,
  .nyx-three-section .concierge-form-card,
  .nyx-policy-page .policy-card {
    padding: 1.05rem;
  }

  .nyx-three-section .booking-preview,
  .nyx-three-section .service-assurance-card {
    padding: 0.95rem;
  }

  .nyx-policy-page .policy-intro h1 {
    max-width: 9ch;
  }
}

/* Second-pass navigation and shell refinements */
.nav-toggle {
  display: none;
  position: relative;
  width: 2.9rem;
  height: 2.9rem;
  align-items: center;
  justify-content: center;
  gap: 0.26rem;
  padding: 0;
  border: 1px solid rgba(210, 185, 126, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f6eee1;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.nav-toggle span {
  display: block;
  width: 1rem;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle:focus-visible,
.nav-toggle:hover {
  border-color: rgba(210, 185, 126, 0.38);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"] {
  color: #f6eee1;
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.contact-state-note {
  display: grid;
  gap: 0.2rem;
  margin: 0;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(210, 185, 126, 0.12);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(23, 25, 33, 0.9), rgba(13, 15, 21, 0.95));
  color: rgba(226, 207, 170, 0.84);
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-state-note[hidden] {
  display: none !important;
}

.site-preview-banner {
  width: min(100%, 42rem);
  margin: 0.75rem auto 0;
  padding: 0.5rem 0.85rem;
  border: 1px solid rgba(210, 185, 126, 0.14);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(20, 23, 31, 0.9), rgba(12, 14, 19, 0.96)),
    radial-gradient(circle at top, rgba(216, 185, 128, 0.12), transparent 60%);
  color: rgba(226, 207, 170, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.site-preview-banner[hidden] {
  display: none !important;
}

[data-contact-link][aria-disabled="true"] {
  opacity: 0.48;
  cursor: not-allowed;
  text-decoration: none;
}

.button[data-contact-link][aria-disabled="true"] {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

html[data-contact-state="preview"] .nyx-three-section [data-booking-anchor-label].button,
html[data-contact-state="preview"] .nyx-policy-page [data-booking-anchor-label].button,
html[data-contact-state="preview"] .site-nav-mobile-cta[data-booking-anchor-label] {
  border-color: rgba(210, 185, 126, 0.18);
  background:
    linear-gradient(180deg, rgba(43, 37, 29, 0.92), rgba(28, 24, 18, 0.98)),
    radial-gradient(circle at top, rgba(216, 185, 128, 0.12), transparent 62%);
  color: rgba(246, 238, 225, 0.96);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

html[data-contact-state="preview"] .hero-booking-submit {
  border-color: rgba(210, 185, 126, 0.2);
  background:
    linear-gradient(180deg, rgba(44, 38, 29, 0.96), rgba(29, 25, 19, 0.99)),
    radial-gradient(circle at top, rgba(216, 185, 128, 0.13), transparent 58%);
  color: rgba(246, 238, 225, 0.97);
}

.nyx-three-section .experience-stage-media {
  aspect-ratio: 4 / 3;
}

.nyx-three-section .experience-stage-media--vehicle {
  --vehicle-progress: 0.58;
  --vehicle-drive-x: 8px;
  --vehicle-drive-y: 4px;
  --vehicle-drive-z: 72px;
  --vehicle-drive-scale: 1.08;
  --vehicle-hover-scale: 0;
  --vehicle-shadow-scale: 1.04;
  --vehicle-shadow-opacity: 0.34;
  --vehicle-glow-opacity: 0.28;
  --vehicle-trail-opacity: 0.14;
  --vehicle-lane-shift: -42px;
  --vehicle-pointer-tilt: 0deg;
  --vehicle-pointer-lift: 0px;
  position: relative;
  min-height: 23rem;
  padding: 0.8rem 1.15rem 0.9rem 0.5rem;
  overflow: hidden;
  isolation: isolate;
  perspective: 1600px;
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 248, 235, 0.98) 0%, rgba(245, 233, 210, 0.9) 28%, rgba(227, 208, 177, 0.48) 54%, rgba(24, 19, 15, 0) 82%),
    linear-gradient(180deg, rgba(246, 238, 224, 0.98), rgba(225, 213, 193, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -18px 34px rgba(95, 74, 52, 0.1);
}

.nyx-three-section .experience-stage-media--vehicle::before {
  content: "";
  position: absolute;
  inset: 1rem 1.3rem auto 1rem;
  height: 34%;
  border-radius: 999px;
  background: radial-gradient(circle at 52% 50%, rgba(255, 255, 255, 0.3), transparent 68%);
  opacity: calc(0.14 + var(--vehicle-glow-opacity) * 0.55);
  filter: blur(16px);
  pointer-events: none;
}

.nyx-three-section .vehicle-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  pointer-events: none;
}

.nyx-three-section .vehicle-stage-aura,
.nyx-three-section .vehicle-stage-trail,
.nyx-three-section .vehicle-stage-runway,
.nyx-three-section .vehicle-stage-reflection,
.nyx-three-section .vehicle-stage-shadow {
  position: absolute;
  pointer-events: none;
}

.nyx-three-section .vehicle-stage-aura {
  inset: 10% 6% 24% 8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 46%, rgba(255, 255, 255, 0.24), transparent 20%),
    radial-gradient(circle at 54% 54%, rgba(255, 245, 225, 0.78), rgba(242, 224, 190, 0.36) 32%, rgba(210, 185, 126, 0.12) 56%, transparent 76%);
  opacity: var(--vehicle-glow-opacity);
  filter: blur(18px);
  transform: translate3d(calc(var(--vehicle-drive-x) * 0.16), calc(var(--vehicle-drive-y) * 0.16), 0)
    scale(calc(0.92 + var(--vehicle-progress) * 0.22));
}

.nyx-three-section .vehicle-stage-trail {
  top: 48%;
  left: 28%;
  right: 2%;
  height: 5.4rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(210, 185, 126, 0.03) 26%, rgba(210, 185, 126, 0.22) 58%, rgba(255, 248, 236, 0.42) 76%, rgba(255, 255, 255, 0) 100%);
  opacity: var(--vehicle-trail-opacity);
  filter: blur(14px);
  mix-blend-mode: screen;
  transform: translate3d(calc(var(--vehicle-drive-x) * 0.38), calc(var(--vehicle-drive-y) * 0.28), 0)
    skewX(-18deg)
    scaleX(calc(0.9 + var(--vehicle-progress) * 0.32));
  transform-origin: right center;
}

.nyx-three-section .vehicle-stage-runway {
  left: 5%;
  right: 2%;
  bottom: 0.55rem;
  height: 36%;
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 22%),
    linear-gradient(180deg, rgba(73, 60, 47, 0.06), rgba(32, 25, 20, 0.26) 30%, rgba(17, 13, 10, 0.82) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 12px 22px rgba(0, 0, 0, 0.16);
  transform: translate3d(calc(var(--vehicle-drive-x) * 0.1), 0, 0) perspective(1200px) rotateX(72deg);
  transform-origin: center bottom;
}

.nyx-three-section .vehicle-stage-runway::before {
  content: "";
  position: absolute;
  inset: 12% 16% 14%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0 17%, rgba(255, 241, 217, 0.34) 17% 18%, rgba(255, 255, 255, 0) 18% 48%, rgba(255, 241, 217, 0.24) 48% 49%, rgba(255, 255, 255, 0) 49% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
  background-position: center var(--vehicle-lane-shift), center center;
  background-size: 100% 180%, 100% 100%;
  opacity: calc(0.22 + var(--vehicle-progress) * 0.24);
}

.nyx-three-section .vehicle-stage-reflection {
  left: 15%;
  right: 6%;
  bottom: 1.1rem;
  height: 5.5rem;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.06) 46%, transparent 74%);
  opacity: calc(0.12 + var(--vehicle-progress) * 0.1);
  filter: blur(20px);
  transform: translate3d(calc(var(--vehicle-drive-x) * 0.28), calc(var(--vehicle-progress) * 8px), 0)
    scaleX(calc(0.88 + var(--vehicle-progress) * 0.28));
}

.nyx-three-section .vehicle-stage-shadow {
  left: 10%;
  right: 5%;
  bottom: 0.5rem;
  height: 3.4rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(10, 8, 6, 0.94) 0%, rgba(10, 8, 6, 0) 72%);
  opacity: var(--vehicle-shadow-opacity);
  filter: blur(18px);
  transform: translate3d(calc(var(--vehicle-drive-x) * 0.18), 0, 0)
    scaleX(var(--vehicle-shadow-scale))
    scaleY(calc(0.78 + var(--vehicle-progress) * 0.14));
}

.nyx-three-section .vehicle-stage-car {
  position: absolute;
  display: block;
  line-height: 0;
  right: -10%;
  bottom: 1.3rem;
  z-index: 4;
  width: min(41rem, 128%);
  aspect-ratio: 527 / 244;
  max-width: none;
  transform-style: preserve-3d;
  transform-origin: 72% 78%;
  transform:
    translate3d(calc(-4.2rem + var(--vehicle-drive-x)), calc(-1rem + var(--vehicle-drive-y) + var(--vehicle-pointer-lift)), 0)
    scale(calc(var(--vehicle-drive-scale) + var(--vehicle-hover-scale)))
    rotate(-0.9deg);
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nyx-three-section .vehicle-stage-headlight {
  position: absolute;
  left: 3%;
  top: 40%;
  width: 8.6rem;
  height: 1.9rem;
  background: linear-gradient(90deg, rgba(255, 250, 237, 0.9), rgba(255, 250, 237, 0));
  opacity: calc(0.04 + var(--vehicle-glow-opacity) * 0.78);
  filter: blur(12px);
  mix-blend-mode: screen;
  pointer-events: none;
  transform: translateX(calc(-2.2rem - var(--vehicle-progress) * 1.25rem)) skewX(-28deg);
}

.nyx-three-section .experience-stage-media--vehicle img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  transform: none;
  filter:
    drop-shadow(0 10px 10px rgba(255, 255, 255, 0.16))
    drop-shadow(0 30px 42px rgba(21, 16, 12, 0.34))
    drop-shadow(0 48px 74px rgba(0, 0, 0, 0.28));
}

.nyx-three-section .experience-stage:hover .experience-stage-media--vehicle {
  --vehicle-hover-scale: 0.018;
}

.nyx-three-section .experience-stage:hover .experience-stage-media--vehicle img {
  transform: none;
}

.nyx-three-section .concierge-note strong {
  color: rgba(229, 208, 173, 0.82);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nyx-three-section .concierge-note p {
  color: rgba(233, 227, 219, 0.72);
}

.nyx-three-section .experience-intro p {
  max-width: 34rem;
}

.site-nav-mobile-cta {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nyx-three-section .site-header .button.button-compact,
  .nyx-policy-page .site-header--policy .button.button-compact {
    display: none;
  }

  .nyx-three-section .nav-shell,
  .nyx-policy-page .nav-shell {
    position: relative;
    align-items: center;
  }

  .nyx-three-section .site-nav,
  .nyx-policy-page .site-nav {
    display: grid;
    align-content: start;
    gap: 0.55rem;
    padding: 0.95rem;
    border: 1px solid rgba(210, 185, 126, 0.16);
    border-radius: 1.15rem;
    background: linear-gradient(180deg, rgba(17, 20, 26, 0.98), rgba(10, 12, 17, 0.99));
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.26);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease, padding 220ms ease;
  }

  .nyx-three-section .nav-shell[data-nav-open="true"] .site-nav,
  .nyx-policy-page .nav-shell[data-nav-open="true"] .site-nav {
    max-height: 18rem;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nyx-three-section .nav-shell[data-nav-open="false"] .site-nav,
  .nyx-policy-page .nav-shell[data-nav-open="false"] .site-nav {
    padding-top: 0;
    padding-bottom: 0;
    border-color: transparent;
  }

  .nyx-three-section .site-nav a,
  .nyx-policy-page .site-nav a {
    min-height: 2.8rem;
    width: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
  }

  .site-nav-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.2rem;
    background: linear-gradient(135deg, rgba(236, 220, 190, 0.2), rgba(190, 156, 106, 0.12));
    border: 1px solid rgba(210, 185, 126, 0.2);
  }

  .nyx-three-section .nav-shell[data-nav-open="true"] .nav-toggle span:nth-child(1),
  .nyx-policy-page .nav-shell[data-nav-open="true"] .nav-toggle span:nth-child(1) {
    transform: translateY(0.36rem) rotate(45deg);
  }

  .nyx-three-section .nav-shell[data-nav-open="true"] .nav-toggle span:nth-child(2),
  .nyx-policy-page .nav-shell[data-nav-open="true"] .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nyx-three-section .nav-shell[data-nav-open="true"] .nav-toggle span:nth-child(3),
  .nyx-policy-page .nav-shell[data-nav-open="true"] .nav-toggle span:nth-child(3) {
    transform: translateY(-0.36rem) rotate(-45deg);
  }

  .nyx-three-section .hero-copy h1 {
    max-width: 7.6ch;
    font-size: clamp(2.9rem, 14vw, 4rem);
    line-height: 0.9;
  }

  .site-preview-banner {
    width: calc(100% - 0.75rem);
    margin-top: 0.55rem;
    padding: 0.48rem 0.7rem;
    border-radius: 1rem;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .nyx-three-section .experience-section,
  .nyx-three-section .concierge-section {
    padding-top: 3.8rem;
    padding-bottom: 4.1rem;
  }

  .nyx-three-section .experience-intro {
    gap: 0.88rem;
  }

  .nyx-three-section .experience-intro h2 {
    max-width: 8.5ch;
    font-size: clamp(2.18rem, 9.6vw, 3.08rem);
    line-height: 0.94;
  }

  .nyx-three-section .experience-intro p {
    max-width: 30ch;
    font-size: 0.93rem;
    line-height: 1.64;
    color: rgba(232, 225, 214, 0.76);
  }

  .nyx-three-section .experience-marquee {
    overflow: hidden;
    border-radius: 1.34rem;
    box-shadow:
      0 22px 46px rgba(0, 0, 0, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.07);
  }

  .nyx-three-section .experience-stage-copy {
    padding: 1.14rem 1rem 1.08rem;
  }

  .nyx-three-section .experience-stage h3 {
    max-width: 9.4ch;
    font-size: 1.92rem;
    line-height: 0.94;
    letter-spacing: -0.03em;
  }

  .nyx-three-section .experience-stage-copy p {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.62;
    color: rgba(234, 228, 220, 0.74);
  }

  .nyx-three-section .experience-proof-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.46rem 0.7rem;
    margin-top: 0.92rem;
  }

  .nyx-three-section .experience-proof-band span {
    padding-top: 0.44rem;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .nyx-three-section .experience-proof-band span:last-child {
    grid-column: 1 / -1;
  }

  .nyx-three-section .experience-stage-media--vehicle {
    min-height: 12rem;
    padding: 0.28rem 0.52rem 0.78rem 0.42rem;
    background:
      radial-gradient(circle at 66% 40%, rgba(255, 248, 235, 0.96) 0%, rgba(240, 227, 202, 0.9) 30%, rgba(221, 204, 173, 0.34) 58%, rgba(24, 19, 15, 0) 82%),
      linear-gradient(180deg, rgba(246, 238, 224, 0.98), rgba(230, 217, 197, 0.96));
  }

  .nyx-three-section .experience-stage-media--vehicle::before {
    inset: 0.76rem 0.68rem auto 0.68rem;
    height: 30%;
  }

  .nyx-three-section .vehicle-stage-aura {
    inset: 12% 8% 28% 10%;
    filter: blur(16px);
  }

  .nyx-three-section .vehicle-stage-runway {
    left: 8%;
    right: 4%;
    bottom: 0.42rem;
    height: 31%;
  }

  .nyx-three-section .vehicle-stage-reflection {
    left: 18%;
    right: 10%;
    bottom: 0.62rem;
    height: 3.2rem;
  }

  .nyx-three-section .vehicle-stage-shadow {
    left: 14%;
    right: 10%;
    bottom: 0.38rem;
    height: 2.15rem;
  }

  .nyx-three-section .vehicle-stage-car {
    right: 1%;
    bottom: 0.24rem;
    width: min(15.1rem, 96%);
    transform:
      translate3d(calc(0.12rem + var(--vehicle-drive-x) * 0.08), calc(0.16rem + var(--vehicle-drive-y) * 0.16), 0)
      scale(calc(0.84 + var(--vehicle-progress) * 0.045))
      rotate(-0.2deg);
  }

  .nyx-three-section .vehicle-stage-headlight {
    width: 3.9rem;
    height: 0.9rem;
    opacity: calc(0.025 + var(--vehicle-glow-opacity) * 0.18);
    filter: blur(8px);
  }

  .nyx-three-section .experience-stage:hover .experience-stage-media--vehicle {
    --vehicle-hover-scale: 0;
  }

  .nyx-three-section .experience-mode,
  .nyx-three-section .service-assurance {
    border-radius: 1.18rem;
  }

  .nyx-three-section .service-assurance {
    margin-top: 1.2rem;
    padding: 1rem;
  }

  .nyx-three-section .service-assurance-intro h3 {
    max-width: 12ch;
    font-size: 1.48rem;
    line-height: 1;
  }

  .nyx-three-section .service-assurance-card strong {
    font-size: 0.92rem;
  }

  .nyx-three-section .service-assurance-card p {
    font-size: 0.84rem;
    line-height: 1.52;
  }

  .nyx-three-section .concierge-copy {
    gap: 1rem;
  }

  .nyx-three-section .concierge-assurance {
    margin-top: 0.1rem;
  }

  .nyx-three-section .concierge-notes {
    gap: 0.5rem;
  }

  .nyx-three-section .concierge-note {
    padding-block: 0.2rem;
  }

  .nyx-three-section .concierge-note p {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .nyx-three-section .hero-summary,
  .nyx-three-section .booking-keyline,
  .nyx-three-section .concierge-assurance,
  .nyx-policy-page .policy-intro p,
  .nyx-policy-page .policy-card p {
    font-size: 0.94rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle,
  .nav-toggle span,
  .site-preview-banner,
  .nyx-three-section .site-nav,
  .nyx-policy-page .site-nav {
    transition: none;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .nav-shell[data-nav-open] .site-nav,
  .nyx-policy-page .nav-shell[data-nav-open] .site-nav {
    display: grid !important;
  }
}

/* Pass 8: editorial mobile polish and services scene refinement */
.site-nav .site-nav-mobile-cta {
  display: none !important;
}

.site-preview-banner {
  font-family: "Bodoni Moda", serif;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

/* Pass 9: hybrid asset + editorial polish */
.nyx-three-section .experience-marquee {
  position: relative;
  overflow: hidden;
  border-color: rgba(224, 203, 171, 0.16);
  background:
    linear-gradient(118deg, rgba(12, 14, 18, 0.98) 0%, rgba(13, 15, 20, 0.96) 42%, rgba(29, 25, 20, 0.94) 68%, rgba(18, 16, 13, 0.96) 100%);
  box-shadow:
    0 32px 72px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nyx-three-section .experience-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(214, 188, 144, 0.04) 38%, rgba(214, 188, 144, 0.14) 56%, rgba(255, 255, 255, 0.04) 72%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 74% 28%, rgba(252, 242, 220, 0.08), transparent 28%);
  mix-blend-mode: screen;
}

.nyx-three-section .experience-stage:hover {
  border-color: rgba(228, 210, 182, 0.22);
  box-shadow:
    0 38px 78px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nyx-three-section .experience-stage-copy {
  position: relative;
  z-index: 1;
}

.nyx-three-section .experience-stage-copy p {
  color: rgba(238, 231, 221, 0.76);
}

.nyx-three-section .experience-stage-media--vehicle {
  background:
    radial-gradient(circle at 70% 36%, rgba(248, 238, 218, 0.24) 0%, rgba(223, 202, 168, 0.18) 24%, rgba(27, 22, 17, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -12px 24px rgba(0, 0, 0, 0.1);
}

.nyx-three-section .experience-stage-media--vehicle::before {
  inset: 1rem 1rem auto 0.8rem;
  height: 30%;
  background:
    radial-gradient(circle at 62% 44%, rgba(255, 255, 255, 0.18), transparent 54%),
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(214, 188, 144, 0.1) 48%, rgba(255, 255, 255, 0.04) 74%, rgba(255, 255, 255, 0) 100%);
  filter: blur(18px);
}

.nyx-three-section .vehicle-stage-aura {
  inset: 12% 10% 24% 14%;
  background:
    radial-gradient(circle at 44% 48%, rgba(255, 255, 255, 0.18), transparent 20%),
    radial-gradient(circle at 58% 56%, rgba(255, 245, 225, 0.54), rgba(242, 224, 190, 0.18) 32%, rgba(210, 185, 126, 0.08) 54%, transparent 76%);
}

.nyx-three-section .vehicle-stage-trail {
  top: 50%;
  left: 36%;
  right: 8%;
  height: 4.4rem;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(210, 185, 126, 0.04) 28%, rgba(210, 185, 126, 0.18) 56%, rgba(255, 248, 236, 0.28) 72%, rgba(255, 255, 255, 0) 100%);
}

.nyx-three-section .vehicle-stage-runway {
  left: 12%;
  right: 4%;
  bottom: 0.7rem;
  height: 33%;
}

.nyx-three-section .vehicle-stage-reflection {
  left: 22%;
  right: 12%;
  bottom: 1rem;
  height: 4.8rem;
}

.nyx-three-section .vehicle-stage-shadow {
  left: 18%;
  right: 8%;
  bottom: 0.56rem;
  height: 3rem;
}

.nyx-three-section .vehicle-stage-car {
  right: -3%;
  width: min(37.2rem, 116%);
  transform:
    translate3d(
      calc(-3rem + var(--vehicle-drive-x)),
      calc(-0.94rem + var(--vehicle-drive-y) + var(--vehicle-pointer-lift)),
      calc(var(--vehicle-drive-z) * 1.04)
    )
    scale(calc(var(--vehicle-drive-scale) + var(--vehicle-hover-scale)))
    rotateY(calc(var(--vehicle-pointer-tilt) * -0.84))
    rotateX(calc(var(--vehicle-pointer-tilt) * 0.09))
    rotate(-0.45deg);
}

.nyx-three-section .vehicle-stage-headlight {
  left: 2%;
  top: 40.5%;
  width: 5.8rem;
  height: 1.3rem;
  background: linear-gradient(90deg, rgba(255, 250, 237, 0.72), rgba(255, 250, 237, 0.04), rgba(255, 250, 237, 0));
  opacity: calc(0.03 + var(--vehicle-glow-opacity) * 0.42);
  filter: blur(10px);
  transform: translateX(calc(-1.6rem - var(--vehicle-progress) * 0.86rem)) skewX(-24deg);
}

.nyx-three-section .hero-booking-status,
.nyx-three-section .booking-outcome,
.nyx-three-section .footer-note,
.nyx-three-section .footer-note--secondary {
  color: rgba(238, 231, 221, 0.78);
}

.nyx-three-section .booking-outcome {
  max-width: 34ch;
}

.nyx-three-section .contact-state-note {
  color: rgba(230, 213, 185, 0.9);
}

@media (max-width: 860px) {
  .nyx-three-section .vehicle-stage-car {
    transform:
      translate3d(
        calc(0.16rem + var(--vehicle-drive-x) * 0.1),
        calc(0.14rem + var(--vehicle-drive-y) * 0.16),
        calc(var(--vehicle-drive-z) * 0.2)
      )
      scale(calc(0.84 + var(--vehicle-progress) * 0.06))
      rotate(-0.18deg);
  }
}

@media (max-width: 720px) {
  html:not(.js-enabled) .nav-toggle {
    display: none !important;
  }

  html:not(.js-enabled) .nyx-three-section .site-nav,
  html:not(.js-enabled) .nyx-policy-page .site-nav {
    display: flex !important;
    flex-wrap: wrap;
    gap: 0.48rem 0.8rem;
    max-height: none;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
    padding: 0;
    border: 0;
    background: none;
    box-shadow: none;
    transform: none;
  }

  .nyx-three-section .site-header {
    padding-top: 0.56rem;
  }

  .nyx-three-section .nav-shell {
    width: min(calc(100% - 0.72rem), 1200px);
    padding: 0.52rem 0.58rem;
    border-radius: 1.32rem;
  }

  .nyx-three-section .site-nav .site-nav-mobile-cta,
  .nyx-policy-page .site-nav .site-nav-mobile-cta {
    display: inline-flex !important;
  }

  .nyx-three-section .hero-content.reserve-stage {
    gap: 1.95rem;
  }

  .nyx-three-section .hero-copy {
    gap: 1.12rem;
  }

  .nyx-three-section .hero-summary {
    max-width: 21ch;
    line-height: 1.78;
  }

  .nyx-three-section .reserve-actions {
    margin-top: 0.18rem;
  }

  .nyx-three-section .reserve-proof-strip {
    gap: 0.54rem;
  }

  .nyx-three-section .reserve-proof-item {
    padding: 0.84rem 0.82rem;
  }

  .nyx-three-section .reserve-proof-item strong {
    font-size: 0.88rem;
  }

  .nyx-three-section .reserve-proof-item:last-child {
    display: none;
  }

  .nyx-three-section .experience-intro {
    gap: 1.16rem;
    margin-bottom: 0.5rem;
  }

  .nyx-three-section .experience-intro h2 {
    max-width: 9.1ch;
    font-size: clamp(2.18rem, 9.4vw, 2.96rem);
  }

  .nyx-three-section .experience-intro p {
    max-width: 30ch;
    line-height: 1.7;
  }

  .nyx-three-section .experience-marquee {
    border-radius: 1.48rem;
  }

  .nyx-three-section .experience-stage-copy {
    padding: 1.28rem 1.06rem 1rem;
    gap: 0.96rem;
  }

  .nyx-three-section .experience-stage h3 {
    max-width: 10.6ch;
    font-size: 1.72rem;
  }

  .nyx-three-section .experience-proof-band {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 0.86rem;
  }

  .nyx-three-section .experience-proof-band span {
    position: relative;
    padding: 0 0 0 0.82rem;
    font-size: 0.62rem;
  }

  .nyx-three-section .experience-proof-band span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.56rem;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: rgba(214, 188, 144, 0.72);
  }

  .nyx-three-section .experience-stage-media--vehicle {
    min-height: 12.8rem;
    padding: 0.16rem 0.6rem 0.84rem 0.46rem;
  }

  .nyx-three-section .vehicle-stage-trail {
    left: 40%;
    right: 12%;
    height: 2.7rem;
  }

  .nyx-three-section .vehicle-stage-car {
    right: 2%;
    bottom: 0.3rem;
    width: min(14.7rem, 94%);
  }

  .nyx-three-section .experience-rail {
    gap: 1rem;
  }

  .nyx-three-section .service-assurance {
    margin-top: 1rem;
  }

  .nyx-three-section .concierge-copy {
    gap: 1.24rem;
  }

  .nyx-three-section .concierge-copy h2 {
    max-width: 9.4ch;
    font-size: clamp(2.34rem, 10.4vw, 3.02rem);
    line-height: 0.95;
  }

  .nyx-three-section .booking-keyline,
  .nyx-three-section .concierge-assurance {
    max-width: 32ch;
    line-height: 1.76;
  }

  .nyx-three-section .concierge-notes {
    gap: 0.66rem;
  }
}

@media (min-width: 721px) {
  .nyx-three-section .site-nav .site-nav-mobile-cta,
  .nyx-policy-page .site-nav .site-nav-mobile-cta {
    display: none !important;
  }
}

body.motion-save-data .nav-toggle,
body.motion-save-data .nav-toggle span,
body.motion-save-data .site-preview-banner,
body.motion-save-data .nyx-three-section .experience-stage,
body.motion-save-data .nyx-three-section .experience-stage-media,
body.motion-save-data .nyx-three-section .vehicle-stage-car {
  transition: none !important;
}

.nyx-three-section .button.button-primary,
.nyx-policy-page .button.button-primary,
.nyx-three-section .hero-booking-submit {
  color: #130f0b;
  border-color: rgba(246, 231, 206, 0.44);
  background:
    linear-gradient(180deg, rgba(247, 236, 216, 0.96), rgba(196, 156, 104, 0.92)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 42%, rgba(153, 112, 62, 0.16)),
    rgba(212, 181, 136, 0.94);
  box-shadow:
    0 20px 36px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -12px 20px rgba(116, 84, 42, 0.18);
}

.nyx-three-section .button.button-primary:hover,
.nyx-three-section .button.button-primary:focus-visible,
.nyx-policy-page .button.button-primary:hover,
.nyx-policy-page .button.button-primary:focus-visible,
.nyx-three-section .hero-booking-submit:hover,
.nyx-three-section .hero-booking-submit:focus-visible {
  color: #0f0b08;
  border-color: rgba(249, 238, 220, 0.68);
  box-shadow:
    0 24px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -14px 22px rgba(116, 84, 42, 0.22);
}

.nyx-three-section .reserve-proof-item {
  border-left: 2px solid rgba(214, 188, 144, 0.18);
}

.nyx-three-section .service-badge {
  background: rgba(214, 188, 144, 0.12);
  border-color: rgba(214, 188, 144, 0.18);
}

.nyx-three-section .concierge-note + .concierge-note {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.2rem;
  margin-top: 0.2rem;
}

.nyx-three-section .experience-intro h2 {
  max-width: 8ch;
  font-size: clamp(3.2rem, 7vw, 5.2rem);
}

@media (max-width: 720px) {
  .nyx-three-section .reserve-proof-item {
    padding: 1rem 0.92rem;
  }

  .nyx-three-section .reserve-actions .button.button-primary {
    min-height: 3.8rem;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
  }

  .nyx-three-section .service-badge {
    font-size: 0.76rem;
  }

  .nyx-three-section .concierge-note + .concierge-note {
    padding-top: 1.1rem;
    margin-top: 0.28rem;
  }
}

.nyx-three-section .site-nav a,
.nyx-policy-page .site-nav a {
  letter-spacing: 0.08em;
}

.nyx-three-section .reserve-proof-item span,
.nyx-three-section .experience-proof-band span,
.nyx-three-section .service-assurance-card span,
.nyx-three-section .concierge-note strong,
.nyx-three-section .footer-label {
  font-size: 0.76rem;
  letter-spacing: 0.13em;
}

.nyx-three-section .reserve-proof-item strong {
  font-size: 0.96rem;
  line-height: 1.34;
}

.nyx-three-section .hero-summary {
  max-width: 31rem;
  color: rgba(240, 233, 223, 0.86);
}

.nyx-three-section .reserve-proof-strip {
  gap: 0.9rem;
}

.nyx-three-section .reserve-proof-item {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
}

.nyx-three-section .experience-marquee {
  background:
    linear-gradient(135deg, rgba(16, 18, 24, 0.97) 0%, rgba(21, 24, 31, 0.93) 34%, rgba(238, 227, 207, 0.94) 100%);
}

.nyx-three-section .experience-stage-copy {
  background:
    linear-gradient(135deg, rgba(12, 14, 20, 0.98) 0%, rgba(18, 21, 28, 0.92) 60%, rgba(37, 33, 27, 0.58) 100%);
}

.nyx-three-section .experience-stage-copy h3 {
  max-width: 10.5ch;
}

.nyx-three-section .experience-stage-copy p {
  max-width: 30rem;
  color: rgba(236, 230, 221, 0.78);
}

.nyx-three-section .experience-stage-media--vehicle {
  --vehicle-drive-x: 6px;
  --vehicle-drive-y: 2px;
  --vehicle-drive-z: 92px;
  --vehicle-drive-scale: 1.12;
  --vehicle-shadow-scale: 1.08;
  --vehicle-shadow-opacity: 0.28;
  --vehicle-glow-opacity: 0.24;
  --vehicle-trail-opacity: 0.1;
  background:
    radial-gradient(circle at 70% 40%, rgba(255, 249, 238, 0.98) 0%, rgba(244, 232, 207, 0.86) 24%, rgba(216, 197, 162, 0.28) 54%, rgba(24, 19, 15, 0) 82%),
    linear-gradient(180deg, rgba(244, 235, 221, 0.98), rgba(225, 214, 194, 0.94));
}

.nyx-three-section .vehicle-stage-aura {
  inset: 12% 10% 26% 12%;
  opacity: calc(0.08 + var(--vehicle-glow-opacity) * 0.72);
  filter: blur(22px);
}

.nyx-three-section .vehicle-stage-trail {
  top: 50%;
  left: 38%;
  right: 6%;
  height: 4.2rem;
  opacity: calc(var(--vehicle-trail-opacity) * 0.74);
  filter: blur(16px);
}

.nyx-three-section .vehicle-stage-runway {
  left: 8%;
  right: 5%;
  bottom: 0.72rem;
  height: 32%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0) 20%),
    linear-gradient(180deg, rgba(66, 54, 42, 0.06), rgba(30, 24, 19, 0.18) 32%, rgba(15, 12, 10, 0.74) 100%);
}

.nyx-three-section .vehicle-stage-reflection {
  left: 20%;
  right: 8%;
  bottom: 1rem;
  opacity: calc(0.08 + var(--vehicle-progress) * 0.1);
}

.nyx-three-section .vehicle-stage-shadow {
  left: 16%;
  right: 7%;
  bottom: 0.6rem;
  opacity: calc(var(--vehicle-shadow-opacity) * 0.8);
}

.nyx-three-section .vehicle-stage-car {
  right: -3%;
  bottom: 1.05rem;
  width: min(38rem, 118%);
  transform:
    translate3d(
      calc(-3.35rem + var(--vehicle-drive-x)),
      calc(-0.92rem + var(--vehicle-drive-y) + var(--vehicle-pointer-lift)),
      var(--vehicle-drive-z)
    )
    scale(calc(var(--vehicle-drive-scale) + var(--vehicle-hover-scale)))
    rotateY(calc(var(--vehicle-pointer-tilt) * -1))
    rotateX(calc(var(--vehicle-pointer-tilt) * 0.12))
    rotate(-0.55deg);
}

.nyx-three-section .vehicle-stage-headlight {
  left: 2%;
  top: 39%;
  width: 7.2rem;
  opacity: calc(0.03 + var(--vehicle-glow-opacity) * 0.48);
}

.nyx-three-section .service-assurance-card {
  gap: 0.55rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.nyx-three-section .footer-note {
  color: rgba(235, 228, 218, 0.76);
}

.nyx-three-section .booking-preview {
  background: linear-gradient(180deg, rgba(18, 21, 28, 0.78), rgba(10, 12, 16, 0.92));
}

.nyx-three-section .booking-preview-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.nyx-three-section .booking-outcome {
  color: rgba(229, 222, 212, 0.7);
}

.nyx-three-section .hero-booking-submit:active,
.nyx-three-section .button.fx-press:active,
.nyx-policy-page .button:active {
  transform: translateY(1px) scale(0.988);
}

@media (max-width: 720px) {
  .nyx-three-section .site-preview-banner {
    width: calc(100% - 0.5rem);
    padding: 0.52rem 0.82rem;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
  }

  .nyx-three-section .hero-content.reserve-stage {
    gap: 1.6rem;
  }

  .nyx-three-section .hero-copy {
    max-width: 21.5rem;
    gap: 1rem;
  }

  .nyx-three-section .hero-copy h1 {
    max-width: 7.2ch;
    font-size: clamp(2.85rem, 13vw, 4rem);
  }

  .nyx-three-section .hero-summary {
    max-width: 32ch;
    font-size: 1rem;
    line-height: 1.72;
  }

  .nyx-three-section .reserve-actions {
    margin-top: 0.1rem;
  }

  .nyx-three-section .reserve-proof-strip {
    grid-template-columns: 1fr;
    gap: 0.62rem;
  }

  .nyx-three-section .reserve-proof-item:last-child {
    display: none;
  }

  .nyx-three-section .reserve-proof-item {
    padding: 0.92rem 0.86rem;
  }

  .nyx-three-section .reserve-proof-item span,
  .nyx-three-section .experience-proof-band span,
  .nyx-three-section .service-assurance-card span,
  .nyx-three-section .concierge-note strong {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .nyx-three-section .reserve-proof-item strong {
    font-size: 0.9rem;
  }

  .nyx-three-section .reserve-panel {
    gap: 0.9rem;
  }

  .nyx-three-section .experience-section,
  .nyx-three-section .concierge-section {
    padding-top: 4.3rem;
    padding-bottom: 4.5rem;
  }

  .nyx-three-section .experience-intro {
    gap: 1.05rem;
    margin-bottom: 0.25rem;
  }

  .nyx-three-section .experience-intro p {
    max-width: 31ch;
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .nyx-three-section .experience-marquee {
    border-radius: 1.42rem;
  }

  .nyx-three-section .experience-stage-copy {
    padding: 1.28rem 1.12rem 1.16rem;
    gap: 0.92rem;
  }

  .nyx-three-section .experience-stage h3 {
    max-width: 10.2ch;
    font-size: 1.88rem;
    line-height: 0.96;
  }

  .nyx-three-section .experience-stage-copy p {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .nyx-three-section .experience-proof-band {
    gap: 0.65rem 0.82rem;
    margin-top: 0.4rem;
  }

  .nyx-three-section .experience-proof-band span {
    padding-top: 0.56rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .nyx-three-section .experience-stage-media--vehicle {
    min-height: 13rem;
    padding: 0.34rem 0.62rem 0.92rem 0.5rem;
  }

  .nyx-three-section .vehicle-stage-trail {
    top: 52%;
    left: 42%;
    right: 10%;
    height: 3rem;
    opacity: calc(var(--vehicle-trail-opacity) * 0.48);
  }

  .nyx-three-section .vehicle-stage-car {
    right: 4%;
    bottom: 0.4rem;
    width: min(14.6rem, 92%);
    transform:
      translate3d(
        calc(0.28rem + var(--vehicle-drive-x) * 0.08),
        calc(0.18rem + var(--vehicle-drive-y) * 0.14),
        0
      )
      scale(calc(0.83 + var(--vehicle-progress) * 0.04))
      rotate(-0.12deg);
  }

  .nyx-three-section .experience-rail {
    gap: 0.9rem;
  }

  .nyx-three-section .experience-mode {
    padding: 1rem 0.95rem;
  }

  .nyx-three-section .experience-mode h3 {
    font-size: 1.2rem;
    line-height: 1.08;
  }

  .nyx-three-section .service-assurance {
    margin-top: 1.55rem;
    padding: 1.08rem 1rem;
  }

  .nyx-three-section .service-assurance-intro {
    gap: 0.78rem;
    margin-bottom: 1.08rem;
  }

  .nyx-three-section .service-assurance-card {
    padding: 1rem;
  }

  .nyx-three-section .service-assurance-card strong {
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .nyx-three-section .service-assurance-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .nyx-three-section .concierge-copy {
    gap: 1.18rem;
  }

  .nyx-three-section .booking-keyline {
    font-size: 1rem;
    line-height: 1.74;
  }

  .nyx-three-section .concierge-assurance {
    margin-top: 0;
    font-size: 0.95rem;
    line-height: 1.68;
    color: rgba(232, 225, 214, 0.72);
  }

  .nyx-three-section .concierge-notes {
    gap: 0.74rem;
  }

  .nyx-three-section .concierge-note {
    padding-block: 0.3rem;
  }

  .nyx-three-section .concierge-note p,
  .nyx-three-section .booking-status,
  .nyx-three-section .booking-outcome {
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .nyx-three-section .hero-booking-head.concierge-form-head {
    margin-bottom: 0.1rem;
  }

  .nyx-three-section .booking-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }

  .nyx-three-section .hero-booking-status {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .nyx-three-section .booking-field span {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
  }

  .nyx-three-section .hero-booking-submit,
  .nyx-three-section .site-nav-mobile-cta,
  .nyx-policy-page .site-nav-mobile-cta {
    display: inline-flex !important;
    min-height: 3.15rem;
  }
}

.nyx-three-section fieldset.concierge-form-grid {
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

/* 2026 cinematic overhaul */
body.has-lenis {
  scroll-behavior: auto;
}

body.nyx-three-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(179, 139, 87, 0.14), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.05), transparent 18%),
    linear-gradient(180deg, #040609 0%, #07090d 38%, #0a0d12 100%);
}

.nyx-three-section .container {
  width: min(calc(100% - 3rem), 1180px);
}

.nyx-three-section .site-header {
  padding-top: 0.72rem;
}

.nyx-three-section .nav-shell {
  width: min(calc(100% - 1.6rem), 1180px);
  padding: 0.86rem 1rem;
  border-radius: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(9, 11, 15, 0.86), rgba(9, 11, 15, 0.74)),
    rgba(9, 11, 15, 0.52);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px) saturate(148%);
}

.nyx-three-section .site-nav {
  gap: 1rem;
}

.nyx-three-section .site-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

.nyx-three-section .button {
  min-height: 3.15rem;
  border-radius: 999px;
}

.nyx-three-section .button-primary {
  color: rgba(251, 246, 238, 0.98);
  border-color: rgba(214, 188, 144, 0.26);
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.16), rgba(214, 188, 144, 0.08)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 58%, rgba(214, 188, 144, 0.14)),
    rgba(11, 13, 18, 0.58);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nyx-three-section .button-primary:active {
  transform: translateY(1px) scale(0.995);
}

.nyx-three-section .reserve-hero {
  padding: 5.5rem 0 2.8rem;
}

.nyx-three-section .hero-media {
  inset: 0.58rem;
  border-radius: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 46px 124px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nyx-three-section .hero-media::before {
  background:
    radial-gradient(circle at 16% 30%, rgba(214, 188, 144, 0.22), transparent 26%),
    radial-gradient(circle at 52% 18%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%, rgba(173, 132, 80, 0.1));
  opacity: 0.78;
}

.nyx-three-section .hero-media::after {
  background:
    radial-gradient(circle at 26% 38%, rgba(4, 6, 10, 0.56), transparent 34%),
    radial-gradient(circle at 48% 28%, rgba(255, 245, 226, 0.11), transparent 20%),
    linear-gradient(90deg, rgba(4, 5, 8, 0.84) 0%, rgba(4, 5, 8, 0.46) 26%, rgba(4, 5, 8, 0.08) 52%, rgba(4, 5, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 5, 8, 0.1) 0%, rgba(4, 5, 8, 0.78) 100%);
}

.nyx-three-section .hero-video {
  inset: -4%;
  width: 108%;
  height: 108%;
  object-position: 54% 45%;
  filter: saturate(1) brightness(0.82) contrast(1.08);
  transform: scale(1.06);
}

.nyx-three-section .hero-content.reserve-stage {
  grid-template-columns: minmax(0, 1fr) minmax(14.4rem, 15.5rem);
  gap: clamp(1.9rem, 3.7vw, 4rem);
  align-items: center;
  min-height: min(46rem, calc(100svh - 7rem));
  padding-top: 0.8rem;
}

.nyx-three-section .reserve-copy {
  position: relative;
  width: 100%;
  max-width: 31rem;
}

.nyx-three-section .reserve-copy::before {
  content: "";
  position: absolute;
  inset: -2.6rem -2rem -0.8rem -2rem;
  z-index: -1;
  background: radial-gradient(circle at 24% 40%, rgba(4, 6, 10, 0.84), rgba(4, 6, 10, 0.24) 46%, transparent 74%);
  filter: blur(30px);
}

.nyx-three-section .hero-copy h1 {
  max-width: 7.8ch;
  font-size: clamp(3.6rem, 5.2vw, 5.55rem);
  line-height: 0.82;
  letter-spacing: -0.065em;
  text-shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
}

.nyx-three-section .hero-summary {
  max-width: 22rem;
  margin-top: 0.88rem;
  color: rgba(240, 232, 220, 0.88);
  font-size: 0.92rem;
  line-height: 1.62;
  text-wrap: balance;
}

.nyx-three-section .reserve-actions {
  margin-top: 1.02rem;
}

.nyx-three-section .hero-house-note {
  margin: 0.78rem 0 0;
  color: rgba(234, 224, 210, 0.64);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.55;
  text-transform: uppercase;
}

.nyx-three-section .reserve-proof-strip {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  width: max-content;
  max-width: 100%;
  margin-top: 1.15rem;
}

.nyx-three-section .reserve-proof-item {
  min-height: 0;
  padding: 0 0.85rem 0 0;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.nyx-three-section .reserve-proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.nyx-three-section .reserve-proof-item span {
  display: block;
  margin-bottom: 0.22rem;
  color: rgba(231, 220, 205, 0.46);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nyx-three-section .reserve-proof-item strong {
  color: rgba(248, 240, 228, 0.86);
  font-size: 0.76rem;
  line-height: 1.34;
}

.nyx-three-section .reserve-panel {
  width: min(100%, 15.5rem);
  max-width: 15.5rem;
  margin: 0;
  padding: 1rem 0.96rem 0.9rem;
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.014)),
    rgba(9, 11, 16, 0.54);
  backdrop-filter: blur(18px) saturate(108%);
  box-shadow:
    0 30px 78px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.nyx-three-section .reserve-panel-title {
  max-width: 7ch;
  font-size: clamp(1.08rem, 1.28vw, 1.42rem);
  line-height: 0.94;
}

.nyx-three-section .reserve-panel-copy {
  margin-top: 0.56rem;
  color: rgba(233, 223, 210, 0.68);
  font-size: 0.78rem;
  line-height: 1.5;
}

.nyx-three-section .reserve-panel-meta {
  gap: 0.28rem;
  margin-top: 0.7rem;
}

.nyx-three-section .reserve-panel-meta span {
  padding-top: 0.44rem;
  font-size: 0.59rem;
  line-height: 1.36;
}

.nyx-three-section .experience-section {
  padding: 4.9rem 0 5.7rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(173, 132, 80, 0.14), transparent 20%),
    linear-gradient(180deg, #090b10 0%, #0a0d12 100%);
}

.nyx-three-section .experience-shell {
  gap: 1.6rem;
}

.nyx-three-section .experience-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(17rem, 0.72fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: end;
}

.nyx-three-section .experience-intro h2 {
  max-width: 7.4ch;
  font-size: clamp(3rem, 4.9vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.nyx-three-section .experience-intro p {
  max-width: 22rem;
  color: rgba(227, 217, 204, 0.76);
  font-size: 0.92rem;
  line-height: 1.64;
}

.nyx-three-section .experience-marquee {
  position: relative;
  overflow: hidden;
  gap: 0;
  padding: 0;
  border-radius: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 246, 230, 0.12), transparent 28%),
    radial-gradient(circle at 18% 0%, rgba(173, 132, 80, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(15, 13, 13, 0.98), rgba(11, 12, 16, 0.98));
  box-shadow:
    0 44px 110px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nyx-three-section .experience-marquee::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 50%, rgba(255, 248, 236, 0.18), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0%, transparent 24%, transparent 100%);
  opacity: 0.8;
  pointer-events: none;
}

.nyx-three-section .experience-stage-copy {
  padding: 1.9rem 1.85rem 1.7rem;
}

.nyx-three-section .experience-stage h3 {
  max-width: 11ch;
  color: rgba(248, 242, 232, 0.96);
}

.nyx-three-section .experience-stage-copy p {
  max-width: 20rem;
  color: rgba(230, 220, 205, 0.74);
  font-size: 0.92rem;
  line-height: 1.66;
}

.nyx-three-section .experience-proof-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem 0.84rem;
  margin-top: 1.3rem;
}

.nyx-three-section .experience-proof-band span {
  width: auto;
  min-height: 0;
  padding: 0.58rem 0.72rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 0;
  background: transparent;
  color: rgba(241, 231, 216, 0.7);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.nyx-three-section .experience-stage-media {
  min-height: 21rem;
  padding: 1rem 1.6rem 1rem 0.9rem;
  background:
    radial-gradient(circle at 40% 58%, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.nyx-three-section .experience-stage-media--vehicle {
  --vehicle-hover-scale: 0;
  --vehicle-drive-x: 22px;
  --vehicle-drive-y: 10px;
  --vehicle-drive-z: 124px;
  --vehicle-drive-scale: 1.14;
}

.nyx-three-section .experience-stage-media--vehicle::before {
  background:
    radial-gradient(circle at 44% 54%, rgba(255, 245, 226, 0.3), transparent 18%),
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.08), transparent 18%);
  opacity: 0.78;
}

.nyx-three-section .vehicle-stage-aura {
  opacity: 0.3;
  filter: blur(34px);
}

.nyx-three-section .vehicle-stage-trail {
  opacity: 0.16;
}

.nyx-three-section .vehicle-stage-runway {
  opacity: 0.22;
}

.nyx-three-section .vehicle-stage-reflection {
  opacity: 0.22;
}

.nyx-three-section .vehicle-stage-shadow {
  opacity: 0.38;
}

.nyx-three-section .vehicle-stage-car {
  filter: drop-shadow(0 28px 30px rgba(7, 9, 12, 0.28));
}

.nyx-three-section .experience-rail {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.92fr) minmax(0, 0.92fr);
  gap: 0.9rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.nyx-three-section .experience-mode {
  padding: 1.2rem 1.18rem 1.24rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(10, 12, 16, 0.36);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.14);
}

.nyx-three-section .experience-mode h3 {
  font-size: clamp(1.38rem, 1.95vw, 1.86rem);
  line-height: 1;
}

.nyx-three-section .experience-mode p {
  margin-top: 0.72rem;
  color: rgba(225, 215, 200, 0.74);
}

.nyx-three-section .service-assurance {
  margin-top: 0.1rem;
  padding: 1.38rem 1.32rem 1.28rem;
  border-radius: 1.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    rgba(10, 12, 16, 0.3);
}

.nyx-three-section .service-assurance-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nyx-three-section .service-assurance-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    rgba(9, 11, 16, 0.4);
}

.nyx-three-section .concierge-section {
  padding: 5rem 0 5.6rem;
  background:
    radial-gradient(circle at 78% 12%, rgba(173, 132, 80, 0.12), transparent 20%),
    radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.03), transparent 18%),
    linear-gradient(180deg, #0a0d12 0%, #06080d 100%);
}

.nyx-three-section .concierge-shell {
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 0.9fr);
  grid-template-areas:
    "copy form"
    "notes form";
  gap: clamp(1.3rem, 3vw, 2.6rem);
  align-items: start;
}

.nyx-three-section .concierge-copy {
  grid-area: copy;
  max-width: 30rem;
}

.nyx-three-section .concierge-copy h2 {
  max-width: 8ch;
  font-size: clamp(2.55rem, 4.1vw, 4.25rem);
  line-height: 0.92;
}

.nyx-three-section .booking-keyline {
  max-width: 28rem;
  margin-top: 0.92rem;
  color: rgba(244, 236, 224, 0.88);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.72;
}

.nyx-three-section .concierge-assurance {
  max-width: 25rem;
  margin-top: 0.86rem;
  color: rgba(223, 214, 200, 0.68);
  font-size: 0.82rem;
  line-height: 1.58;
}

.nyx-three-section .concierge-form-card {
  grid-area: form;
  padding: 1.38rem;
  border-radius: 1.82rem;
  background:
    radial-gradient(circle at top right, rgba(173, 132, 80, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(11, 13, 18, 0.9);
}

.nyx-three-section .concierge-notes {
  grid-area: notes;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.2rem;
}

.nyx-three-section .concierge-note {
  padding: 0.82rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.nyx-three-section .concierge-note strong {
  color: rgba(246, 238, 225, 0.8);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.nyx-three-section .concierge-note p {
  margin-top: 0.34rem;
  color: rgba(220, 210, 197, 0.68);
  line-height: 1.56;
}

.nyx-three-section .hero-booking-status {
  max-width: 23rem;
  line-height: 1.6;
}

.nyx-three-section .booking-outcome[hidden] {
  display: none;
}

.nyx-three-section .footer-layout--expanded {
  gap: 1.5rem;
}

.nyx-three-section .footer-note--secondary {
  color: rgba(236, 228, 214, 0.66);
}

@media (max-width: 1024px) {
  .nyx-three-section .hero-content.reserve-stage,
  .nyx-three-section .experience-intro,
  .nyx-three-section .experience-marquee,
  .nyx-three-section .concierge-shell {
    grid-template-columns: 1fr;
  }

  .nyx-three-section .concierge-shell {
    grid-template-areas:
      "copy"
      "form"
      "notes";
  }

  .nyx-three-section .reserve-panel {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
  }

  .nyx-three-section .experience-rail,
  .nyx-three-section .service-assurance-grid,
  .nyx-three-section .concierge-notes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nyx-three-section .container {
    width: min(calc(100% - 2rem), 100%);
  }

  .nyx-three-section .nav-shell {
    width: min(calc(100% - 1.5rem), 100%);
    padding: 0.74rem 0.82rem;
    border-radius: 1.35rem;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(4, 6, 10, 0.44);
    backdrop-filter: blur(6px);
    z-index: 30;
  }

  .nyx-three-section .site-nav {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 5.2rem);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0.45rem;
    padding: 0.82rem;
    border-radius: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
      linear-gradient(180deg, rgba(8, 10, 14, 0.96), rgba(8, 10, 14, 0.9)),
      rgba(8, 10, 14, 0.72);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
    z-index: 40;
  }

  .nyx-three-section .nav-shell[data-nav-open="true"] .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nyx-three-section .site-nav a {
    min-height: 3.05rem;
    padding: 0.92rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    justify-content: space-between;
  }

  .nyx-three-section .site-nav-mobile-cta {
    margin-top: 0.18rem;
    border-color: rgba(214, 188, 144, 0.2);
    background:
      linear-gradient(180deg, rgba(255, 252, 244, 0.12), rgba(214, 188, 144, 0.06)),
      rgba(14, 16, 20, 0.56);
  }

  .nyx-three-section .reserve-hero {
    padding: 5.2rem 0 3rem;
  }

  .nyx-three-section .hero-content.reserve-stage {
    min-height: auto;
    gap: 1.06rem;
    align-items: start;
  }

  .nyx-three-section .hero-copy h1 {
    max-width: 8.5ch;
    font-size: clamp(3rem, 11.2vw, 3.4rem);
    line-height: 0.9;
  }

  .nyx-three-section .experience-intro h2 {
    max-width: 8.2ch;
    font-size: clamp(2.4rem, 9vw, 2.75rem);
  }

  .nyx-three-section .concierge-copy h2 {
    max-width: 8.5ch;
    font-size: clamp(2.28rem, 8.2vw, 2.62rem);
  }

  .nyx-three-section .hero-summary {
    max-width: 21ch;
    font-size: 0.95rem;
  }

  .nyx-three-section .hero-house-note {
    max-width: 22rem;
    margin-top: 0.84rem;
    font-size: 0.68rem;
  }

  .nyx-three-section .reserve-proof-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.72rem;
    width: 100%;
    margin-top: 0.95rem;
  }

  .nyx-three-section .reserve-proof-item {
    padding: 0.56rem 0 0;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nyx-three-section .reserve-proof-item:last-child {
    display: none;
  }

  .nyx-three-section .reserve-panel {
    display: none;
  }

  .nyx-three-section .experience-shell {
    display: flex;
    flex-direction: column;
  }

  .nyx-three-section .experience-intro {
    order: 0;
    gap: 0.72rem;
  }

  .nyx-three-section .experience-rail {
    order: 1;
  }

  .nyx-three-section .service-assurance {
    order: 2;
    padding: 1.08rem 1rem 1rem;
  }

  .nyx-three-section .experience-marquee {
    order: 3;
    border-radius: 1.6rem;
  }

  .nyx-three-section .experience-stage-copy {
    padding: 1.08rem 1.05rem 0.98rem;
  }

  .nyx-three-section .experience-stage-copy p {
    max-width: 17rem;
    font-size: 0.9rem;
  }

  .nyx-three-section .experience-proof-band {
    gap: 0.4rem;
    margin-top: 0.9rem;
  }

  .nyx-three-section .experience-proof-band span {
    width: 100%;
  }

  .nyx-three-section .experience-stage-media {
    min-height: 11.8rem;
    padding: 0.1rem 0.88rem 0.88rem;
  }

  .nyx-three-section .experience-stage-media--vehicle {
    --vehicle-drive-x: 8px;
    --vehicle-drive-y: 2px;
    --vehicle-drive-z: 84px;
    --vehicle-drive-scale: 1.08;
  }

  .nyx-three-section .experience-mode {
    padding: 1rem 1rem 1.06rem;
  }

  .nyx-three-section .booking-keyline {
    max-width: 24rem;
  }

  .nyx-three-section .concierge-assurance {
    margin-top: 0.76rem;
    font-size: 0.8rem;
  }

  .nyx-three-section .concierge-form-card {
    padding: 1.12rem;
    border-radius: 1.45rem;
  }

  .nyx-three-section .hero-booking-submit,
  .nyx-three-section .concierge-call-link {
    width: 100%;
  }

  .nyx-three-section .booking-outcome {
    max-width: none;
    margin-top: 0.74rem;
    font-size: 0.72rem;
  }

  .nyx-three-section .concierge-notes {
    gap: 0.74rem;
    margin-top: 0.22rem;
  }

  .nyx-three-section .concierge-note:last-child {
    display: none;
  }

  .nyx-three-section .site-footer {
    padding-top: 3.4rem;
  }
}

@media (min-width: 391px) and (max-width: 414px) {
  .nyx-three-section .container {
    width: min(calc(100% - 2.5rem), 100%);
  }

  .nyx-three-section .nav-shell {
    width: min(calc(100% - 2rem), 100%);
  }
}

/* header CTA restraint */
.nyx-three-section .site-header .button-compact {
  min-height: 2.9rem;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(10, 12, 16, 0.46);
  box-shadow: none;
}

.nyx-three-section .reserve-actions .button-primary,
.nyx-three-section .hero-booking-submit {
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

/* hero note mobile-only */
.nyx-three-section .hero-house-note {
  display: none;
}

@media (max-width: 720px) {
  .nyx-three-section .hero-house-note {
    display: block;
  }
}
