:root {
  --ivory: #f8f2e8;
  --champagne: #e9d8bf;
  --sand: #d8c5aa;
  --gold: #b08a56;
  --gold-soft: rgba(169, 129, 79, 0.22);
  --charcoal: #16120e;
  --black: #080705;
  --ink: #181512;
  --muted: #766c60;
  --white: #fffaf0;
  --line-dark: rgba(24, 21, 18, 0.14);
  --line-light: rgba(255, 250, 240, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-soft: 0 24px 70px rgba(24, 21, 18, 0.12);
  --shadow-dark: 0 30px 90px rgba(0, 0, 0, 0.28);
}

/* V29 hard override: keep the cinematic experience rail scroll-driven on every host. */
.experiences {
  min-height: 380vh !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.experience-sticky {
  position: sticky !important;
  top: 0 !important;
  min-height: 100vh !important;
  overflow: hidden;
}

.experience-track {
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.experience-panel {
  will-change: transform, opacity;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ivory);
  color: var(--ink);
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.66), transparent 280px),
    var(--ivory);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open,
body.booking-open {
  overflow: hidden;
}

body.booking-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  padding: 12px 16px;
  background: var(--black);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: 0.035;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.9) 0 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), #f1d29a);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--white);
}

.loader__inner {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.loader__brand {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 112px);
  line-height: 1;
}

.loader__line {
  width: min(360px, 62vw);
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.loader small,
.eyebrow {
  color: currentColor;
  opacity: 0.72;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 110;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 26px;
  padding: 18px clamp(18px, 4.8vw, 72px);
  color: var(--white);
  transition: background 360ms ease, border-color 360ms ease, color 360ms ease, backdrop-filter 360ms ease, min-height 360ms ease;
}

.navbar.is-scrolled {
  min-height: 72px;
  background: rgba(248, 242, 232, 0.78);
  color: var(--ink);
  border-bottom: 1px solid rgba(24, 21, 18, 0.1);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand__logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.brand__text {
  display: grid;
}

.brand__text > span {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
}

.brand__text small {
  margin-top: 4px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.72;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a,
.book-link {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.book-link {
  padding: 0 18px;
  border: 1px solid currentColor;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
}

.book-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  place-items: center;
}

.menu-toggle span {
  width: 20px;
  height: 1px;
  background: currentColor;
  grid-area: 1 / 1;
  transition: transform 280ms ease;
}

.menu-toggle span:last-child {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(9, 8, 6, 0.9);
  color: var(--white);
  backdrop-filter: blur(28px);
  opacity: 0;
  pointer-events: none;
}

.mobile-menu.is-open {
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 12px;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(42px, 11vw, 86px);
  line-height: 1;
}

.hero {
  position: relative;
  min-height: 104svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  min-height: 100%;
}

.hero__media img {
  width: 100%;
  height: 100%;
  min-height: 104svh;
  object-fit: cover;
}

.hero__overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 209, 142, 0.22), transparent 25%),
    radial-gradient(circle at 22% 78%, rgba(176, 138, 86, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(8, 7, 5, 0.76), rgba(8, 7, 5, 0.18) 48%, rgba(8, 7, 5, 0.48)),
    linear-gradient(0deg, rgba(8, 7, 5, 0.88), rgba(8, 7, 5, 0.18) 42%, rgba(8, 7, 5, 0.42)),
    linear-gradient(180deg, rgba(8, 7, 5, 0.62), transparent 34%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 28vh;
  background: linear-gradient(0deg, var(--ivory), transparent);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  padding: 136px clamp(22px, 6vw, 96px) 120px;
  transform: translate3d(0, var(--native-hero-y, 0px), 0);
  opacity: var(--native-hero-opacity, 1);
  will-change: transform, opacity;
}

.hero__content .eyebrow {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  background: rgba(8, 7, 5, 0.18);
  backdrop-filter: blur(12px);
}

.hero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 11vw, 168px);
  font-weight: 600;
  line-height: 0.82;
  max-width: 1060px;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
  overflow: hidden;
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--white);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.52;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  padding: 13px 26px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 320ms ease, background 320ms ease, color 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 58%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  transition: left 720ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(8, 7, 5, 0.18);
}

.button:hover::before {
  left: 120%;
}

.button--light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  text-shadow: none;
}

.button--light:hover,
.button--dark:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.button--outline-light:hover {
  background: var(--white);
  color: var(--black);
}

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.92);
}

.button--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 5vw, 76px);
  bottom: 36px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 250, 240, 0.74);
}

.hero-meta {
  position: absolute;
  z-index: 3;
  right: clamp(22px, 6vw, 96px);
  bottom: clamp(78px, 8vw, 112px);
  display: grid;
  gap: 12px;
  color: rgba(255, 250, 240, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.hero-meta span {
  position: relative;
  padding-right: 34px;
}

.hero-meta span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.hero-reserve {
  position: absolute;
  z-index: 3;
  left: clamp(22px, 6vw, 96px);
  right: clamp(22px, 6vw, 96px);
  bottom: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.24);
  color: rgba(255, 250, 240, 0.74);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-reserve strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
}

.scroll-cue span {
  width: 1px;
  height: 72px;
  background: linear-gradient(var(--white), transparent);
  animation: cuePulse 1.8s ease-in-out infinite;
}

@keyframes cuePulse {
  50% { opacity: 0.35; transform: translateY(10px); }
}

.section-pad {
  padding: clamp(112px, 14vw, 210px) clamp(22px, 6vw, 96px);
}

.luxury-strip {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
  padding: clamp(76px, 10vw, 142px) clamp(22px, 6vw, 96px);
  background:
    linear-gradient(135deg, rgba(176, 138, 86, 0.22), transparent 36%),
    linear-gradient(180deg, #11100d, #080705);
  color: var(--white);
  overflow: hidden;
}

.luxury-strip::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  pointer-events: none;
}

.luxury-strip::after {
  content: "";
  position: absolute;
  width: 38vw;
  height: 38vw;
  right: -18vw;
  top: -20vw;
  border: 1px solid rgba(176, 138, 86, 0.26);
  transform: rotate(28deg);
  pointer-events: none;
}

.luxury-strip__copy {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.luxury-strip__copy h2 {
  margin: 16px 0 0;
  font-family: var(--serif);
  font-size: clamp(42px, 6.8vw, 104px);
  font-weight: 500;
  line-height: 0.9;
}

.luxury-strip__items {
  position: relative;
  z-index: 1;
  display: grid;
  border-top: 1px solid rgba(255, 250, 240, 0.18);
}

.luxury-strip__items span {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.18);
  color: rgba(255, 250, 240, 0.76);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.luxury-strip__items strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  line-height: 0.8;
}

.ivory {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.58), transparent 34%),
    var(--ivory);
  color: var(--ink);
}

.champagne {
  background: var(--champagne);
  color: var(--ink);
}

.dark {
  background: var(--black);
  color: var(--white);
}

.stay-tunnel {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #070706;
}

.stay-tunnel__stage {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.stay-tunnel__stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 48%, rgba(173, 132, 76, 0.1), transparent 27%),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: auto, 9vw 100%;
  opacity: 0.8;
}

.tunnel-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  perspective: 900px;
}

.tunnel-rings span {
  position: absolute;
  width: min(76vw, 920px);
  aspect-ratio: 1.8;
  border: 1px solid rgba(210, 173, 117, 0.42);
  transform: scale(0.24) translateZ(-160px);
  opacity: 0.16;
  will-change: transform, opacity;
}

.tunnel-rings span:nth-child(2) { transform: scale(0.42) translateZ(-130px); }
.tunnel-rings span:nth-child(3) { transform: scale(0.62) translateZ(-100px); }
.tunnel-rings span:nth-child(4) { transform: scale(0.82) translateZ(-70px); }
.tunnel-rings span:nth-child(5) { transform: scale(1) translateZ(-40px); }

.stay-tunnel__copy {
  position: relative;
  z-index: 3;
  width: min(680px, calc(100% - 44px));
  text-align: center;
  will-change: transform, opacity;
}

.stay-tunnel__copy h2 {
  margin: 18px 0 28px;
  font-family: var(--serif);
  font-size: clamp(62px, 10vw, 148px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.02em;
}

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

.stay-tunnel__copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 0 auto;
  color: rgba(255, 250, 240, 0.68);
  font-size: 17px;
}

.tunnel-progress {
  position: absolute;
  left: 50%;
  bottom: 36px;
  width: 1px;
  height: 74px;
  background: linear-gradient(var(--gold), transparent);
  transform-origin: top;
}

.tunnel-side {
  position: absolute;
  top: 50%;
  z-index: 2;
  color: rgba(255, 250, 240, 0.35);
  font-size: 10px;
  letter-spacing: 0.34em;
  writing-mode: vertical-rl;
  will-change: transform, opacity;
}

.tunnel-side--left {
  left: clamp(18px, 3vw, 48px);
  transform: translateY(-50%) rotate(180deg);
}

.tunnel-side--right {
  right: clamp(18px, 3vw, 48px);
  transform: translateY(-50%);
}

.intro__inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.intro-title,
.display-title,
.wellness-hero h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 7.6vw, 112px);
  font-weight: 500;
  line-height: 0.9;
}

.intro-copy,
.section-copy {
  max-width: 650px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
}

.intro-facts {
  width: min(840px, 100%);
  margin: clamp(44px, 5vw, 70px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.intro-facts span {
  min-height: 124px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-facts span + span {
  border-left: 1px solid var(--line-dark);
}

.intro-facts strong {
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.86;
}

.section-heading {
  max-width: 1100px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.section-heading--dark .section-copy {
  color: rgba(255, 250, 240, 0.72);
}

.stay-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  gap: clamp(36px, 7vw, 108px);
  align-items: center;
}

.stay-feature .lift-frame {
  position: relative;
  min-height: min(72vw, 860px);
  max-height: 880px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 44px 110px rgba(24, 21, 18, 0.18);
}

.stay-feature .lift-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 250, 240, 0.18);
  pointer-events: none;
}

.media-tag {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 12px 14px;
  border: 1px solid rgba(255, 250, 240, 0.4);
  background: rgba(8, 7, 5, 0.22);
  color: var(--white);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stay-feature__copy h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.7vw, 88px);
  line-height: 0.96;
  font-weight: 500;
}

.stay-feature__copy p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: clamp(34px, 5vw, 76px);
}

.suite-card,
.dining-card,
.spotlight-card {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms ease;
}

.suite-card {
  border: 1px solid rgba(24, 21, 18, 0.12);
}

.suite-card:hover,
.dining-card:hover,
.spotlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 86px rgba(24, 21, 18, 0.2);
}

.suite-card img,
.dining-card img,
.spotlight-card img,
.experience-panel img,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.suite-card:hover img,
.dining-card:hover img,
.spotlight-card:hover img,
.gallery-item:hover img {
  transform: scale(1.055);
}

.suite-card::after,
.dining-card::after,
.spotlight-card::after,
.experience-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(8, 7, 5, 0.88), rgba(8, 7, 5, 0.08) 62%),
    linear-gradient(180deg, rgba(8, 7, 5, 0.18), transparent 34%);
}

.suite-card > div,
.dining-card > div,
.spotlight-card > div,
.experience-panel > div {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  transform: translateZ(22px);
}

.suite-card span,
.dining-card span,
.spotlight-card span,
.experience-panel span {
  color: rgba(255, 250, 240, 0.7);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.suite-card h3,
.dining-card h3,
.spotlight-card h3,
.experience-panel h3 {
  margin: 8px 0 6px;
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.suite-card p,
.dining-card p,
.spotlight-card p,
.experience-panel p {
  margin: 0;
  color: rgba(255, 250, 240, 0.76);
}

.card-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-actions a,
.dining-card a,
.spotlight-card a {
  position: relative;
  display: inline-flex;
  width: max-content;
}

.card-actions a::after,
.dining-card a::after,
.spotlight-card a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms ease;
}

.card-actions a:hover::after,
.dining-card a:hover::after,
.spotlight-card a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.horizontal-wrap {
  overflow: hidden;
}

.experiences {
  position: relative;
  overflow: hidden;
  min-height: 360vh;
  padding: 0;
}

.experiences::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(176, 138, 86, 0.18), transparent 34%, rgba(255, 250, 240, 0.04));
  background-size: 12vw 100%, auto;
  opacity: 0.78;
  pointer-events: none;
}

.experience-sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  padding-left: clamp(22px, 6vw, 96px);
  min-height: 100vh;
  padding-top: clamp(92px, 9vw, 150px);
  padding-bottom: clamp(44px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.experience-stories {
  display: grid;
  gap: clamp(100px, 15vw, 220px);
}

.experience-story {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
}

.experience-story--reverse {
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
}

.experience-story--reverse .experience-story__media {
  grid-column: 2;
  grid-row: 1;
}

.experience-story--reverse .experience-story__copy {
  grid-column: 1;
  grid-row: 1;
}

.experience-story__gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(190px, 0.6fr);
  gap: 16px;
}

.experience-story__media {
  position: relative;
  min-height: clamp(480px, 58vw, 720px);
  overflow: hidden;
  background: #111;
}

.experience-story__gallery .experience-story__media:not(.experience-story__media--wide) {
  min-height: clamp(360px, 42vw, 560px);
  align-self: end;
}

.experience-story__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 240, 0.12);
  transition: border-color 500ms ease;
}

.experience-story__media:hover::after {
  border-color: rgba(193, 153, 98, 0.7);
}

.experience-story__copy {
  align-self: end;
  padding: 0 0 8px;
}

.story-index {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.experience-story__copy h3 {
  max-width: 500px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 6.5vw, 104px);
  font-weight: 500;
  line-height: 0.86;
}

.experience-story__copy p {
  max-width: 390px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 17px;
}

.experience-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-right: 8vw;
}

.experience-panel {
  position: relative;
  overflow: hidden;
  width: min(680px, 82vw);
  height: 82vh;
  min-height: 680px;
  background: #111;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 250, 240, 0.12);
  clip-path: inset(0 round 2px);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.34);
}

.experience-panel:nth-child(even) {
  margin-top: clamp(34px, 6vw, 88px);
}

.experience-panel:hover img {
  transform: scale(1.07);
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.dining-card {
  min-height: 520px;
  grid-column: span 2;
}

.dining-card:nth-child(4),
.dining-card:nth-child(5) {
  grid-column: span 3;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.spotlight-card {
  min-height: 420px;
}

.spotlight-card--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 860px;
}

.wellness-hero {
  position: relative;
  min-height: 72vh;
  color: var(--white);
}

.wellness-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(9, 8, 6, 0.68), transparent 64%);
}

.wellness-hero__copy {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 5vw, 72px);
  bottom: clamp(24px, 5vw, 72px);
  max-width: 640px;
}

.wellness-hero__copy p:last-child {
  max-width: 460px;
  color: rgba(255, 250, 240, 0.76);
}

.wellness-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  margin-top: 28px;
}

.wellness-item {
  padding: 34px 28px;
  border-right: 1px solid var(--line-dark);
}

.wellness-item:last-child {
  border-right: 0;
}

.line-icon {
  width: 46px;
  height: 46px;
  display: block;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative;
  margin-bottom: 26px;
  transition: transform 360ms ease;
}

.line-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.wellness-item:hover .line-icon {
  transform: rotate(18deg) scale(1.05);
}

.wellness-item h3 {
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  margin: 0 0 12px;
}

.wellness-item p {
  color: var(--muted);
  margin: 0;
}

.gallery-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.gallery-tabs button {
  min-height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  background: rgba(255, 250, 240, 0.035);
  color: rgba(255, 250, 240, 0.74);
  padding: 8px 17px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 280ms ease, color 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.gallery-tabs button.active,
.gallery-tabs button:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(260px, 20vw);
  gap: 14px;
  padding-bottom: 10px;
}

.gallery-item {
  position: relative;
  border: 0;
  padding: 0;
  background: #111;
  overflow: hidden;
  color: var(--white);
  display: block;
  text-decoration: none;
  cursor: pointer;
  transform-style: preserve-3d;
  will-change: transform;
  border: 1px solid rgba(255, 250, 240, 0.1);
  min-height: 260px;
}

.gallery-item::after {
  content: "Vezi";
  position: absolute;
  inset: auto 18px 18px auto;
  min-width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 250, 240, 0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 280ms ease, transform 280ms ease;
  backdrop-filter: blur(10px);
  background: rgba(8, 7, 5, 0.18);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
  transform: translateY(8px);
  opacity: 0.86;
  transition: opacity 280ms ease, transform 280ms ease;
}

.gallery-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

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

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(36px, 8vw, 130px);
  align-items: end;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.contact-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.contact-lines {
  display: grid;
  margin: 34px 0;
  border-top: 1px solid var(--line-dark);
}

.contact-lines span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-lines span::after {
  content: "La cerere";
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.contact-direct,
.footer-contact {
  display: grid;
  justify-items: start;
  gap: 8px;
  margin: 28px 0;
}

.contact-direct a,
.footer-contact a {
  position: relative;
  width: fit-content;
  font-size: 13px;
  letter-spacing: 0.08em;
  transition: color 280ms ease;
}

.contact-direct a::after,
.footer-contact a::after {
  content: "";
  position: absolute;
  inset: auto 0 -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-direct a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.contact-direct a:hover::after,
.footer-contact a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-contact {
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.72);
}

.newsletter label {
  display: grid;
  gap: 6px;
}

.newsletter label span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.newsletter input {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid rgba(24, 21, 18, 0.25);
  background: transparent;
  color: inherit;
  border-radius: 0;
}

.booking-modal {
  position: fixed;
  inset: 0;
  height: 100dvh;
  z-index: 170;
  display: grid;
  place-items: stretch;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  overscroll-behavior: none;
}

.booking-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 5, 0.78);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: none;
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 32px));
  min-height: min(820px, calc(100vh - 32px));
  max-height: calc(100vh - 32px);
  margin: 16px auto;
  padding: clamp(30px, 6vw, 84px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.055), transparent 38%),
    linear-gradient(180deg, #1a1510, #090806);
  color: var(--white);
  overflow-y: auto;
  border: 1px solid rgba(255, 250, 240, 0.14);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.48);
  transform: translateY(38px) scale(0.98);
  opacity: 0;
  transition: transform 800ms cubic-bezier(0.16, 1, 0.3, 1), opacity 600ms ease;
}

.booking-modal__panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(176, 138, 86, 0.22);
  pointer-events: none;
}

.booking-modal.is-open .booking-modal__backdrop {
  opacity: 1;
}

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

.booking-modal__close {
  position: absolute;
  top: 24px;
  right: 28px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 250, 240, 0.72);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 280ms ease;
}

.booking-modal__close span {
  color: var(--white);
  font-size: 26px;
  line-height: 0.7;
  transition: transform 280ms ease;
}

.booking-modal__close:hover {
  color: var(--white);
}

.booking-modal__close:hover span {
  transform: rotate(90deg);
}

.booking-modal__intro {
  max-width: 610px;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.booking-modal__intro h2 {
  margin: 8px 0 18px;
  font-family: var(--serif);
  font-size: clamp(68px, 10vw, 132px);
  font-weight: 500;
  line-height: 0.82;
}

.booking-modal__intro > p:last-child {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 250, 240, 0.7);
  font-size: 17px;
}

.booking-form__step {
  display: none;
  max-width: 900px;
}

.booking-form__step.is-active {
  display: block;
  animation: bookingStepIn 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes bookingStepIn {
  from { opacity: 0; transform: translateX(22px); }
  to { opacity: 1; transform: translateX(0); }
}

.booking-form__counter {
  color: var(--sand);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.booking-form h3 {
  margin: 12px 0 30px;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 500;
  line-height: 0.92;
}

.booking-dates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.booking-dates label {
  display: grid;
  gap: 9px;
}

.booking-dates span,
.booking-contact-grid span,
.guest-picker span {
  color: rgba(255, 250, 240, 0.58);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-dates input,
.booking-contact-grid input,
.booking-contact-grid select,
.booking-contact-grid textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 4px 0 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.34);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  color-scheme: dark;
  transition: border-color 280ms ease;
}

.booking-contact-grid input::placeholder,
.booking-contact-grid textarea::placeholder {
  color: rgba(255, 250, 240, 0.34);
}

.booking-contact-grid textarea {
  min-height: 94px;
  padding-top: 18px;
  resize: vertical;
}

.booking-dates input:focus,
.booking-contact-grid input:focus,
.booking-contact-grid select:focus,
.booking-contact-grid textarea:focus {
  border-color: var(--gold);
}

.availability-calendar {
  margin-top: 32px;
  padding: 26px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  background: rgba(255, 250, 240, 0.025);
}

.availability-calendar__header,
.availability-calendar__legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.availability-calendar__header strong {
  display: block;
  margin-top: 5px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
}

.availability-calendar__label,
.availability-calendar__status {
  color: rgba(255, 250, 240, 0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.availability-calendar__nav {
  display: flex;
  gap: 8px;
}

.availability-calendar__nav button {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.26);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  transition: border-color 280ms ease, background 280ms ease, transform 280ms ease;
}

.availability-calendar__nav button:hover {
  border-color: var(--gold);
  background: rgba(181, 143, 73, 0.16);
  transform: translateY(-2px);
}

.availability-calendar__legend {
  justify-content: flex-start;
  margin: 22px 0 15px;
  color: rgba(255, 250, 240, 0.65);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.availability-calendar__legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.availability-calendar__legend i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.45);
}

.availability-calendar__legend i.is-occupied {
  background: rgba(255, 250, 240, 0.16);
}

.availability-calendar__legend i.is-selected {
  background: var(--gold);
}

.availability-calendar__weekdays,
.availability-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.availability-calendar__weekdays {
  margin-bottom: 6px;
  color: rgba(255, 250, 240, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.availability-calendar__grid button {
  position: relative;
  min-height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  background: rgba(255, 250, 240, 0.035);
  color: rgba(255, 250, 240, 0.86);
  font: inherit;
  transition: color 260ms ease, border-color 260ms ease, background 260ms ease, transform 260ms ease;
}

.availability-calendar__grid button:not(:disabled):hover {
  z-index: 1;
  border-color: var(--gold);
  transform: translateY(-2px);
}

.availability-calendar__grid button.is-muted,
.availability-calendar__grid button.is-past {
  color: rgba(255, 250, 240, 0.2);
}

.availability-calendar__grid button.is-occupied {
  color: rgba(255, 250, 240, 0.25);
  background: repeating-linear-gradient(135deg, transparent 0 5px, rgba(255, 250, 240, 0.055) 5px 6px);
  text-decoration: line-through;
}

.availability-calendar__grid button.is-selected {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

.availability-calendar__grid button.is-in-range {
  border-color: rgba(181, 143, 73, 0.44);
  background: rgba(181, 143, 73, 0.14);
}

.availability-calendar__status {
  margin: 14px 0 0;
  letter-spacing: 0.08em;
  text-transform: none;
}

.booking-next,
.booking-back {
  margin-top: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-next span {
  display: inline-block;
  margin-left: 12px;
  color: var(--gold);
  font-size: 22px;
  transition: transform 280ms ease;
}

.booking-next:hover span {
  transform: translateX(7px);
}

.guest-picker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  padding: 22px 0;
  padding: 28px 0 22px;
  border-top: 1px solid rgba(255, 250, 240, 0.2);
}

.guest-picker strong {
  display: block;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
  line-height: 0.9;
}

.guest-picker small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.46);
  font-size: 12px;
}

.guest-slider {
  width: min(720px, 100%);
  height: 2px;
  margin-bottom: 30px;
  overflow: hidden;
  background: rgba(255, 250, 240, 0.16);
}

.guest-slider span {
  display: block;
  width: 3.4%;
  height: 100%;
  background: var(--gold);
  transform-origin: left;
  transition: width 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.guest-picker__actions {
  display: flex;
  gap: 8px;
}

.guest-picker__actions button {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 250, 240, 0.36);
  background: transparent;
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.guest-picker__actions button:hover {
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-3px);
}

.booking-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 30px;
  max-width: 820px;
}

.booking-contact-grid label {
  display: grid;
  gap: 9px;
}

.phone-field div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.34);
  transition: border-color 280ms ease;
}

.phone-field div:focus-within {
  border-color: var(--gold);
}

.phone-field b {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.phone-field input {
  border-bottom: 0;
}

.booking-message {
  grid-column: 1 / -1;
}

.booking-form__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 42px;
}

.booking-form__actions .button--light {
  color: var(--black);
}

.booking-back {
  margin-top: 0;
  color: rgba(255, 250, 240, 0.62);
}

.booking-form__success {
  display: none;
  max-width: 480px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 0.95;
}

.booking-form.is-sent .booking-form__step {
  display: none;
}

.booking-form.is-sent .booking-form__success {
  display: block;
  animation: bookingStepIn 700ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: clamp(36px, 7vw, 100px);
  padding: clamp(88px, 11vw, 150px) clamp(22px, 6vw, 96px) 36px;
  background:
    linear-gradient(180deg, #120f0c, var(--black));
  color: var(--white);
  border-top: 1px solid rgba(255, 250, 240, 0.12);
}

.footer p {
  color: rgba(255, 250, 240, 0.68);
}

.footer nav {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer nav a {
  width: max-content;
  color: rgba(255, 250, 240, 0.72);
  transition: color 260ms ease, transform 260ms ease;
}

.footer nav a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.newsletter h3 {
  margin: 8px 0 20px;
  font-family: var(--serif);
  font-size: 36px;
  line-height: 1;
  font-weight: 500;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.newsletter input {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.28);
}

.newsletter button {
  min-height: 46px;
  border: 1px solid var(--white);
  background: transparent;
  color: var(--white);
  padding: 0 18px;
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
}

.newsletter button:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 250, 240, 0.55);
  font-size: 12px;
}

.footer-privacy {
  grid-column: 3;
  justify-self: end;
  align-self: end;
  color: rgba(255, 250, 240, 0.52);
  font-size: 12px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 250, 240, 0.22);
  text-underline-offset: 5px;
  transition: color 260ms ease, text-decoration-color 260ms ease;
}

.footer-privacy:hover,
.footer-privacy:focus-visible {
  color: var(--white);
  text-decoration-color: var(--gold);
}

.privacy-page {
  min-height: 100vh;
  background: #f4f0e8;
  color: #181713;
}

.privacy-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(24, 23, 19, 0.12);
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(14px);
}

.privacy-header .brand__text,
.privacy-header .brand__text small {
  color: #181713;
}

.privacy-back {
  color: #181713;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.privacy-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) 0;
}

.privacy-intro {
  margin-bottom: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(42px, 6vw, 72px);
  border-bottom: 1px solid rgba(24, 23, 19, 0.16);
}

.privacy-intro .eyebrow {
  color: #826b43;
}

.privacy-intro h1 {
  max-width: 760px;
  margin: 18px 0 24px;
  font-family: var(--serif);
  font-size: clamp(50px, 8vw, 100px);
  font-weight: 500;
  line-height: 0.92;
}

.privacy-intro > p:last-child,
.privacy-section p,
.privacy-section li {
  color: rgba(24, 23, 19, 0.74);
  line-height: 1.75;
}

.privacy-content {
  display: grid;
  gap: 54px;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(150px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(24, 23, 19, 0.1);
}

.privacy-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.05;
}

.privacy-section p {
  margin: 0 0 16px;
}

.privacy-section ul {
  margin: 0;
  padding-left: 19px;
}

.privacy-section a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.privacy-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 76px);
  background: #11100d;
  color: rgba(255, 250, 240, 0.65);
  font-size: 12px;
}

.privacy-footer a {
  color: var(--white);
}

@media (max-width: 780px) {
  .footer-privacy {
    grid-column: 1;
    justify-self: start;
    margin-top: -18px;
  }

  .privacy-header {
    min-height: 68px;
    padding: 10px 16px;
    backdrop-filter: blur(8px);
  }

  .privacy-header .brand__logo {
    width: 44px;
    height: 44px;
  }

  .privacy-header .brand__text small {
    display: none;
  }

  .privacy-main {
    width: min(100% - 32px, 900px);
    padding-top: 64px;
  }

  .privacy-section {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .privacy-section h2 {
    font-size: 30px;
  }

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

.lift-frame,
.reveal-image {
  position: relative;
  overflow: hidden;
}

.lift-frame img,
.lift-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, 70px, 0) scale(1.1);
  will-change: transform;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 46px, 0) scale(0.985);
  transition:
    opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform, opacity;
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body:not(.gsap-ready) .reveal[data-reveal-direction="left"] {
  transform: translate3d(-84px, 34px, 0) scale(0.965);
}

body:not(.gsap-ready) .reveal[data-reveal-direction="right"] {
  transform: translate3d(84px, 34px, 0) scale(0.965);
}

body:not(.gsap-ready) .reveal[data-reveal-direction].is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

body:not(.gsap-ready) .experience-panel {
  opacity: 0;
  transform: translate3d(96px, 52px, 0) scale(0.9) rotate(-1.5deg);
  transition:
    opacity 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

body:not(.gsap-ready) .experience-panel:nth-child(even) {
  transform: translate3d(-96px, 52px, 0) scale(0.9) rotate(1.5deg);
}

body:not(.gsap-ready) .experience-panel.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
}

body:not(.gsap-ready) .reveal:nth-child(2) { --reveal-delay: 90ms; }
body:not(.gsap-ready) .reveal:nth-child(3) { --reveal-delay: 180ms; }
body:not(.gsap-ready) .reveal:nth-child(4) { --reveal-delay: 270ms; }
body:not(.gsap-ready) .reveal:nth-child(5) { --reveal-delay: 360ms; }

.reveal-line-word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  will-change: transform, opacity;
}

.motion-click {
  animation: motionTap 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes motionTap {
  0% { transform: scale(1); }
  38% { transform: scale(0.965); }
  100% { transform: scale(1); }
}

.reveal-image {
  clip-path: inset(12% 8% 12% 8%);
  transform: translate3d(0, 34px, 0);
  transition:
    clip-path 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: clip-path, transform;
}

.reveal-image.is-visible {
  clip-path: inset(0% 0% 0% 0%);
  transform: translate3d(0, 0, 0);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: 70px clamp(18px, 4vw, 70px);
  background: rgba(0, 0, 0, 0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1), visibility 420ms;
}

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

.lightbox figure {
  display: grid;
  gap: 14px;
  justify-items: center;
  margin: 0;
}

.lightbox img {
  max-height: 82vh;
  max-width: min(1200px, 86vw);
  object-fit: contain;
  transform: scale(0.96);
  transition: transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-open img {
  transform: scale(1);
}

.lightbox figcaption {
  color: rgba(255, 250, 240, 0.7);
  font-family: var(--serif);
  font-size: 20px;
}

.lightbox button {
  position: absolute;
  min-height: 44px;
  border: 1px solid rgba(255, 250, 240, 0.4);
  background: transparent;
  color: var(--white);
  padding: 10px 16px;
  transition: border-color 260ms ease, background 260ms ease, transform 260ms ease;
}

.lightbox button:hover {
  border-color: var(--gold);
  background: rgba(181, 143, 73, 0.16);
}

.lightbox__close {
  top: 24px;
  right: 24px;
}

.lightbox__nav--prev {
  left: 24px;
  top: 50%;
}

.lightbox__nav--next {
  right: 24px;
  top: 50%;
}

@media (max-width: 1120px) {
  .nav-links,
  .book-link {
    display: none;
  }

  .navbar {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: grid;
  }

  .stay-grid,
  .wellness-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dining-card,
  .dining-card:nth-child(4),
  .dining-card:nth-child(5) {
    grid-column: span 3;
  }

}

@media (max-width: 780px) {
  .grain {
    display: none;
  }

  .gallery,
  .contact,
  .footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }

  .navbar.is-scrolled,
  .booking-modal__panel {
    backdrop-filter: blur(8px);
  }
  body {
    font-size: 15px;
  }

  .navbar {
    min-height: 72px;
    padding: 14px 18px;
  }

  .brand__text > span {
    font-size: 25px;
  }

  .brand__text small {
    font-size: 9px;
  }

  .brand__logo {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
  }

  .hero__media img {
    min-height: 100svh;
    object-position: 52% center;
  }

  .hero__overlay {
    background:
      radial-gradient(circle at 66% 24%, rgba(255, 209, 142, 0.18), transparent 28%),
      linear-gradient(180deg, rgba(8, 7, 5, 0.46), rgba(8, 7, 5, 0.08) 30%, rgba(8, 7, 5, 0.9) 88%),
      linear-gradient(90deg, rgba(8, 7, 5, 0.65), rgba(8, 7, 5, 0.18));
  }

  .hero-title {
    font-size: clamp(56px, 18vw, 92px);
    max-width: 360px;
    line-height: 0.84;
  }

  .hero-copy {
    max-width: 330px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 330px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 50px;
  }

  .stay-tunnel {
    min-height: 100vh;
  }

  .stay-tunnel__stage {
    min-height: 100vh;
  }

  .stay-tunnel__copy h2 {
    font-size: clamp(60px, 17vw, 100px);
  }

  .tunnel-rings span {
    width: 88vw;
    aspect-ratio: 0.78;
  }

  .tunnel-side {
    display: none;
  }

  .hero__content {
    width: 100%;
    padding-top: 118px;
    padding-bottom: 172px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-meta {
    left: 20px;
    right: auto;
    bottom: 70px;
    text-align: left;
    gap: 8px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .hero-meta span {
    padding-right: 0;
    padding-left: 30px;
  }

  .hero-meta span::after {
    left: 0;
    right: auto;
  }

  .hero-reserve {
    left: 20px;
    right: 20px;
    bottom: 18px;
    padding-top: 13px;
    font-size: 8px;
    letter-spacing: 0.16em;
  }

  .hero-reserve strong {
    font-size: 18px;
  }

  .section-pad,
  .luxury-strip {
    padding-left: 20px;
    padding-right: 20px;
  }

  .luxury-strip {
    grid-template-columns: 1fr;
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .luxury-strip::before {
    inset: 10px;
  }

  .luxury-strip__copy h2 {
    font-size: clamp(42px, 14vw, 72px);
  }

  .luxury-strip__items span {
    grid-template-columns: 58px 1fr;
    padding: 18px 0;
  }

  .luxury-strip__items strong {
    font-size: 34px;
  }

  .intro-facts {
    grid-template-columns: 1fr;
  }

  .intro-facts span {
    min-height: 104px;
  }

  .intro-facts span + span {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .scroll-cue {
    display: none;
  }

  .stay-feature,
  .footer,
  .contact {
    grid-template-columns: 1fr;
  }

  .stay-feature {
    gap: 34px;
  }

  .stay-feature__copy h3,
  .display-title,
  .intro-title {
    line-height: 0.94;
  }

  .booking-modal__panel {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    max-height: 100vh;
    padding: 92px 20px 36px;
  }

  .booking-modal__close {
    top: 24px;
    right: 20px;
  }

  .booking-dates {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .booking-contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .guest-picker {
    align-items: flex-start;
    gap: 22px;
  }

  .availability-calendar__grid button {
    min-height: 38px;
    padding: 0;
    font-size: 12px;
  }

  .availability-calendar__legend {
    gap: 14px;
  }

  .lightbox {
    padding: 66px 14px 84px;
  }

  .lightbox img {
    max-width: 94vw;
    max-height: 72vh;
  }

  .lightbox__nav--prev,
  .lightbox__nav--next {
    top: auto;
    bottom: 20px;
  }

  .booking-form__actions {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 18px;
  }

  .booking-form__actions .button {
    width: 100%;
  }

  .booking-back {
    align-self: flex-start;
  }

  .stay-feature .lift-frame,
  .wellness-hero {
    min-height: 500px;
  }

  .stay-grid,
  .dining-grid,
  .spotlight-grid,
  .wellness-grid,
  .masonry-gallery {
    grid-template-columns: 1fr;
  }

  .suite-card {
    min-height: 560px;
  }

  .suite-card > div,
  .experience-panel > div {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .dining-card,
  .dining-card:nth-child(4),
  .dining-card:nth-child(5),
  .spotlight-card--large,
  .gallery-item.wide {
    grid-column: span 1;
  }

  .spotlight-card--large {
    grid-row: span 1;
    min-height: 480px;
  }

  .wellness-grid {
    border-bottom: 0;
  }

  .wellness-item {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .experience-track {
    width: auto;
    display: grid;
    gap: 20px;
    padding-right: 0;
  }

  .experience-panel {
    width: 100%;
    height: 68vh;
    min-height: 540px;
  }

  .experience-panel:nth-child(even) {
    margin-top: 0;
  }

  .experience-story,
  .experience-story--reverse {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .experience-story--reverse .experience-story__media,
  .experience-story--reverse .experience-story__copy {
    grid-column: auto;
    grid-row: auto;
  }

  .experience-story__gallery {
    grid-template-columns: 1fr;
  }

  .experience-story__media,
  .experience-story__gallery .experience-story__media:not(.experience-story__media--wide) {
    min-height: 520px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item--hero {
    min-height: 430px;
    grid-row: span 1;
  }

  .gallery-item.wide {
    min-height: 360px;
  }

  .gallery-item--hero {
    grid-column: span 1;
  }

  .contact-copy {
    font-size: 16px;
  }

  .contact-lines span {
    display: grid;
    gap: 6px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Visible 2026 redesign */
:root {
  --ivory: #f5f2eb;
  --champagne: #ded4c4;
  --gold: #c3a36c;
  --charcoal: #102019;
  --black: #07110d;
  --ink: #132019;
  --muted: #68736c;
  --white: #fffdf7;
}

body {
  background: var(--ivory);
}

.navbar {
  top: 16px;
  left: 18px;
  right: 18px;
  min-height: 76px;
  padding: 13px clamp(18px, 3.4vw, 48px);
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: 8px;
  background: rgba(7, 17, 13, 0.18);
  backdrop-filter: blur(12px);
}

.navbar.is-scrolled {
  top: 10px;
  min-height: 66px;
  background: rgba(245, 242, 235, 0.9);
  border-color: rgba(19, 32, 25, 0.12);
  box-shadow: 0 16px 50px rgba(7, 17, 13, 0.12);
}

.brand__logo {
  width: 42px;
  height: 42px;
}

.nav-links {
  gap: clamp(22px, 2.5vw, 42px);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 13, 0.78), rgba(7, 17, 13, 0.18) 58%, rgba(7, 17, 13, 0.3)),
    linear-gradient(0deg, rgba(7, 17, 13, 0.78), transparent 55%),
    linear-gradient(180deg, rgba(7, 17, 13, 0.5), transparent 30%);
}

.hero__content {
  max-width: 1260px;
  padding-left: clamp(30px, 8vw, 128px);
}

.hero__content .eyebrow {
  padding: 0 0 10px;
  border: 0;
  border-bottom: 1px solid var(--gold);
  background: transparent;
  backdrop-filter: none;
}

.hero-title {
  max-width: 1180px;
  font-size: clamp(76px, 11.5vw, 180px);
  font-weight: 500;
  letter-spacing: 0.045em;
}

.hero-copy {
  max-width: 560px;
}

.hero-actions .button {
  min-width: 178px;
  min-height: 56px;
}

.button--light {
  background: linear-gradient(135deg, #fffdf7, #e9dfcf);
  border-color: #fffdf7;
}

.button--dark {
  background: linear-gradient(135deg, #102019, #07110d);
}

.luxury-strip {
  background:
    linear-gradient(120deg, rgba(195, 163, 108, 0.13), transparent 38%),
    var(--charcoal);
}

.luxury-strip__copy h2 {
  max-width: 850px;
  font-size: clamp(50px, 6.5vw, 98px);
}

.ivory {
  background: var(--ivory);
}

.stay {
  background:
    linear-gradient(180deg, #f5f2eb 0%, #eee8dd 100%);
}

.stay-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.suite-card {
  min-height: clamp(620px, 70vw, 820px);
  border: 0;
  box-shadow: 0 28px 80px rgba(7, 17, 13, 0.14);
}

.suite-card:nth-child(even) {
  margin-top: clamp(70px, 8vw, 120px);
}

.suite-card > div {
  left: clamp(26px, 4vw, 52px);
  right: clamp(26px, 4vw, 52px);
  bottom: clamp(28px, 4vw, 48px);
}

.suite-card h3 {
  font-size: clamp(42px, 5vw, 70px);
}

.suite-card p {
  max-width: 480px;
  font-size: 16px;
}

.experiences {
  background: var(--black);
}

.experience-panel {
  border-color: rgba(195, 163, 108, 0.32);
}

.gallery {
  background: #09140f;
}

.contact {
  background: var(--charcoal);
  color: var(--white);
  border-color: rgba(255, 253, 247, 0.12);
}

.contact .eyebrow,
.contact-copy,
.contact-direct,
.contact-lines span {
  color: rgba(255, 253, 247, 0.76);
}

.contact-lines {
  border-color: rgba(255, 253, 247, 0.16);
}

.contact-lines span {
  border-color: rgba(255, 253, 247, 0.16);
}

.contact-lines span::after {
  color: rgba(255, 253, 247, 0.48);
}

.contact .button--dark {
  background: linear-gradient(135deg, #d1b47e, #a47c43);
  border-color: #c3a36c;
  color: #07110d;
}

.footer {
  background: #050b08;
}

@media (max-width: 780px) {
  .navbar {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 11px 12px;
  }

  .brand {
    gap: 9px;
  }

  .brand__logo {
    width: 34px;
    height: 34px;
  }

  .brand__text > span {
    font-size: 22px;
  }

  .hero__content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-title {
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: 0.04em;
  }

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

  .suite-card,
  .suite-card:nth-child(even) {
    min-height: 600px;
    margin-top: 0;
  }

  .contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

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

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

  .reveal-image {
    clip-path: none;
  }

  .lift-media {
    transform: none;
  }
}

/* Keep the site's signature reveals available when a browser enables reduced motion automatically. */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 0;
    transform: translate3d(0, 46px, 0) scale(0.985);
    transition-duration: 900ms !important;
  }

  .reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  .reveal-image {
    clip-path: inset(12% 8% 12% 8%);
    transition-duration: 1200ms !important;
  }

  .reveal-image.is-visible {
    clip-path: inset(0% 0% 0% 0%);
  }
}

/* Final spacing and typography polish */
.hero__content {
  padding-top: clamp(150px, 16vh, 210px);
  padding-bottom: clamp(190px, 21vh, 260px);
}

.hero-title {
  max-width: 1120px;
  letter-spacing: 0.025em;
}

.hero-title span + span {
  margin-top: 0.06em;
}

.hero-copy {
  margin-top: 38px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 42px;
  gap: 16px;
}

.section-pad {
  padding-top: clamp(140px, 16vw, 240px);
  padding-bottom: clamp(140px, 16vw, 240px);
}

.luxury-strip {
  padding-top: clamp(110px, 12vw, 178px);
  padding-bottom: clamp(110px, 12vw, 178px);
}

.luxury-strip__copy h2,
.intro-title,
.display-title,
.stay-feature__copy h3,
.experience-story__copy h3,
.booking-modal__intro h2 {
  letter-spacing: 0.018em;
  text-wrap: balance;
}

.intro-copy,
.section-copy,
.stay-feature__copy p,
.contact-copy {
  line-height: 1.78;
}

.intro-facts {
  margin-top: clamp(62px, 7vw, 96px);
}

.section-heading {
  margin-bottom: clamp(64px, 8vw, 112px);
}

.stay-feature {
  gap: clamp(54px, 8vw, 130px);
}

.stay-grid {
  gap: clamp(18px, 1.6vw, 28px);
  margin-top: clamp(72px, 8vw, 120px);
}

.experiences {
  padding-top: clamp(160px, 17vw, 270px);
  padding-bottom: clamp(170px, 18vw, 290px);
}

.experience-sticky {
  padding-right: clamp(22px, 6vw, 96px);
}

.experience-track {
  gap: clamp(24px, 2.4vw, 40px);
}

.experience-panel > div {
  max-width: min(520px, calc(100% - 64px));
}

.gallery-tabs {
  margin-bottom: clamp(48px, 6vw, 82px);
}

.masonry-gallery {
  gap: clamp(16px, 1.5vw, 24px);
}

.contact {
  row-gap: 72px;
}

.booking-modal__panel {
  overscroll-behavior: contain;
}

@media (max-width: 1100px) and (min-width: 781px) {
  .hero-title {
    font-size: clamp(68px, 10.5vw, 116px);
  }

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

  .experience-panel {
    width: min(620px, 72vw);
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: 100svh;
  }

  .hero__content {
    padding-top: 132px;
    padding-bottom: 226px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(50px, 15.5vw, 78px);
    line-height: 0.9;
    letter-spacing: 0.035em;
  }

  .hero-copy {
    margin-top: 28px;
    line-height: 1.65;
  }

  .hero-actions {
    margin-top: 32px;
  }

  .hero-meta {
    bottom: 86px;
  }

  .section-pad {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .luxury-strip {
    padding-top: 104px;
    padding-bottom: 104px;
  }

  .intro-title,
  .display-title {
    font-size: clamp(44px, 13vw, 68px);
    line-height: 0.98;
    letter-spacing: 0.018em;
  }

  .section-heading {
    margin-bottom: 58px;
  }

  .stay-grid {
    gap: 24px;
    margin-top: 64px;
  }

  .experiences {
    padding-top: 124px;
    padding-bottom: 132px;
  }

  .experience-sticky {
    padding-right: 20px;
  }

  .experience-panel {
    height: min(72svh, 660px);
    min-height: 520px;
  }

  .experience-panel > div {
    max-width: calc(100% - 40px);
  }

  .masonry-gallery {
    gap: 20px;
  }

  .gallery-tabs {
    margin-bottom: 44px;
  }

  .contact {
    gap: 64px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: clamp(46px, 14.5vw, 62px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-meta {
    font-size: 8px;
  }
}

/* Modern UI refinement */
.navbar.is-scrolled {
  box-shadow: 0 12px 38px rgba(24, 21, 18, 0.07);
  backdrop-filter: blur(20px) saturate(1.12);
}

.book-link,
.button,
.gallery-tabs button,
.booking-next,
.booking-back {
  border-radius: var(--radius-sm);
}

.stay-feature .lift-frame,
.suite-card,
.experience-panel,
.gallery-item,
.availability-calendar {
  border-radius: var(--radius-md);
}

.stay-feature .lift-frame {
  box-shadow: var(--shadow-soft);
}

.suite-card {
  box-shadow: 0 16px 48px rgba(24, 21, 18, 0.1);
}

.suite-card:hover {
  box-shadow: 0 30px 78px rgba(24, 21, 18, 0.18);
}

.experience-panel {
  clip-path: inset(0 round 8px);
  box-shadow: var(--shadow-dark);
}

.gallery-item {
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
}

.gallery-item:hover {
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.24);
}

.booking-modal__panel {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  box-shadow: -30px 0 100px rgba(0, 0, 0, 0.28);
}

.booking-dates input,
.booking-contact-grid input,
.booking-contact-grid select,
.booking-contact-grid textarea,
.newsletter input {
  border-radius: var(--radius-sm);
}

.availability-calendar {
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(24, 21, 18, 0.08);
}

.nav-links a,
.book-link,
.button,
.gallery-tabs button,
.contact-lines span {
  letter-spacing: 0.1em;
}

.suite-card,
.gallery-item,
.button,
.book-link {
  transform: translateZ(0);
}

@media (max-width: 780px) {
  .booking-modal__panel {
    border-radius: 0;
  }

  .suite-card,
  .gallery-item,
  .experience-panel {
    border-radius: 6px;
  }

  .stay-grid,
  .masonry-gallery,
  .experience-track {
    gap: 22px;
  }
}

/* V5 final precedence */
.hero-title {
  max-width: 1180px;
  font-size: clamp(76px, 11.5vw, 180px);
  font-weight: 500;
  letter-spacing: 0.045em;
}

.stay-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.suite-card {
  min-height: clamp(620px, 70vw, 820px);
  box-shadow: 0 28px 80px rgba(7, 17, 13, 0.14);
}

.suite-card:nth-child(even) {
  margin-top: clamp(70px, 8vw, 120px);
}

.suite-card h3 {
  font-size: clamp(42px, 5vw, 70px);
}

.contact {
  background: var(--charcoal);
  color: var(--white);
}

@media (max-width: 780px) {
  .hero-title {
    font-size: clamp(48px, 14vw, 72px);
    letter-spacing: 0.04em;
  }

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

  .suite-card,
  .suite-card:nth-child(even) {
    min-height: 600px;
    margin-top: 0;
  }
}

/* Final booking experience */
.contact-lines span::after {
  content: attr(data-note);
}

.experience-track {
  position: relative;
  z-index: 5;
  isolation: isolate;
  background: var(--black);
}

.experience-track::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--black);
}

.booking-modal__backdrop {
  background: rgba(4, 10, 7, 0.82);
  backdrop-filter: blur(18px) saturate(0.8);
}

.booking-modal__panel {
  width: min(1220px, calc(100% - 40px));
  min-height: min(820px, calc(100svh - 40px));
  max-height: calc(100svh - 40px);
  margin: 20px auto;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.38fr) minmax(0, 0.62fr);
  align-items: stretch;
  justify-content: initial;
  overflow: hidden;
  border: 1px solid rgba(19, 32, 25, 0.12);
  border-radius: 8px;
  background: #f8f5ee;
  color: var(--ink);
  box-shadow: 0 48px 140px rgba(0, 0, 0, 0.46);
}

.booking-modal__panel::before {
  display: none;
}

.booking-modal__close {
  z-index: 4;
  top: 28px;
  right: 32px;
  color: rgba(19, 32, 25, 0.62);
}

.booking-modal__close span,
.booking-modal__close:hover {
  color: var(--ink);
}

.booking-modal__intro {
  max-width: none;
  min-height: 100%;
  margin: 0;
  padding: clamp(72px, 8vw, 112px) clamp(38px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(195, 163, 108, 0.19), transparent 38%),
    var(--charcoal);
  color: var(--white);
}

.booking-modal__intro::after {
  content: none;
  display: none;
  max-width: 270px;
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 253, 247, 0.18);
  color: rgba(255, 253, 247, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.8;
  text-transform: uppercase;
}

.booking-modal__intro .eyebrow {
  color: var(--gold);
}

.booking-modal__intro h2 {
  margin: 16px 0 24px;
  font-size: clamp(72px, 8vw, 112px);
  letter-spacing: 0.025em;
}

.booking-modal__intro > p:last-child {
  color: rgba(255, 253, 247, 0.68);
  line-height: 1.75;
}

.booking-form {
  min-width: 0;
  padding: clamp(74px, 7vw, 104px) clamp(38px, 5vw, 74px) clamp(44px, 5vw, 70px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.booking-form__step {
  max-width: 720px;
}

.booking-form__counter {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 999px;
  color: #8c6c3d;
  background: rgba(195, 163, 108, 0.08);
}

.booking-form h3 {
  margin: 18px 0 34px;
  color: var(--ink);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 0.98;
}

.booking-dates span,
.booking-contact-grid span,
.guest-picker span {
  color: rgba(19, 32, 25, 0.56);
}

.booking-dates input,
.booking-contact-grid input,
.booking-contact-grid select,
.booking-contact-grid textarea {
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid rgba(19, 32, 25, 0.16);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  color-scheme: light;
}

.booking-contact-grid textarea {
  padding-top: 16px;
}

.booking-contact-grid input::placeholder,
.booking-contact-grid textarea::placeholder {
  color: rgba(19, 32, 25, 0.34);
}

.booking-dates input:focus,
.booking-contact-grid input:focus,
.booking-contact-grid select:focus,
.booking-contact-grid textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(195, 163, 108, 0.12);
}

.availability-calendar {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(19, 32, 25, 0.12);
  background: #fffdf8;
  box-shadow: 0 20px 60px rgba(7, 17, 13, 0.08);
}

.availability-calendar__header strong {
  color: var(--ink);
}

.availability-calendar__label,
.availability-calendar__status,
.availability-calendar__legend,
.availability-calendar__weekdays {
  color: rgba(19, 32, 25, 0.52);
}

.availability-calendar__nav button {
  border-color: rgba(19, 32, 25, 0.18);
  border-radius: 5px;
  background: #f5f0e6;
  color: var(--ink);
}

.availability-calendar__grid button {
  min-height: 44px;
  border-color: rgba(19, 32, 25, 0.1);
  border-radius: 4px;
  background: #f7f3eb;
  color: rgba(19, 32, 25, 0.84);
}

.availability-calendar__grid button.is-muted,
.availability-calendar__grid button.is-past {
  color: rgba(19, 32, 25, 0.2);
}

.availability-calendar__grid button.is-occupied {
  color: rgba(19, 32, 25, 0.28);
  background: repeating-linear-gradient(135deg, #f7f3eb 0 5px, #ebe5da 5px 6px);
}

.availability-calendar__grid button.is-selected {
  color: #07110d;
}

.booking-next {
  min-height: 52px;
  margin-top: 30px;
  padding: 0 22px;
  border: 1px solid var(--charcoal);
  background: var(--charcoal);
  color: var(--white);
  transition: transform 280ms ease, background 280ms ease;
}

.booking-next:hover {
  background: #1b3027;
  transform: translateY(-2px);
}

.guest-picker {
  padding: 24px;
  border: 1px solid rgba(19, 32, 25, 0.12);
  border-radius: 6px;
  background: #fffdf8;
}

.guest-picker strong {
  color: var(--ink);
}

.guest-picker small,
.booking-back {
  color: rgba(19, 32, 25, 0.52);
}

.guest-picker__actions button {
  border-color: rgba(19, 32, 25, 0.2);
  border-radius: 5px;
  background: #f5f0e6;
  color: var(--ink);
}

.guest-picker__actions button:hover {
  color: #07110d;
}

.guest-slider {
  background: rgba(19, 32, 25, 0.12);
}

.phone-field div {
  gap: 0;
  border: 1px solid rgba(19, 32, 25, 0.16);
  border-radius: 6px;
  background: #fffdf8;
}

.phone-field b {
  padding-left: 14px;
}

.phone-field input {
  border: 0;
  box-shadow: none;
}

.booking-form__actions .button--light {
  background: linear-gradient(135deg, #d2b478, #b58a4e);
  border-color: #c3a36c;
  color: #07110d;
}

.booking-form__success {
  color: var(--ink);
}

@media (max-width: 900px) {
  .booking-modal__panel {
    grid-template-columns: 1fr;
    height: calc(100dvh - 24px);
    min-height: 0;
    max-height: calc(100dvh - 24px);
    margin: 12px auto;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
  }

  .booking-modal__intro {
    min-height: auto;
    padding: calc(72px + env(safe-area-inset-top)) 28px 32px;
    flex: 0 0 auto;
  }

  .booking-modal__intro h2 {
    margin: 10px 0 16px;
    font-size: clamp(50px, 13vw, 72px);
    line-height: 0.9;
  }

  .booking-modal__intro::after {
    margin-top: 20px;
    padding-top: 14px;
  }

  .booking-form {
    overflow: visible;
    padding: 38px 28px calc(52px + env(safe-area-inset-bottom));
  }

  .booking-modal__close,
  .booking-modal__close span,
  .booking-modal__close:hover {
    color: var(--white);
  }

  .booking-modal__close {
    position: fixed;
    top: calc(22px + env(safe-area-inset-top));
    right: 24px;
  }
}

@media (max-width: 520px) {
  .booking-modal__panel {
    width: 100%;
    height: 100dvh;
    min-height: 0;
    max-height: 100dvh;
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .booking-modal__intro {
    padding-right: 20px;
    padding-left: 20px;
  }

  .booking-modal__intro > p:last-child {
    font-size: 15px;
    line-height: 1.55;
  }

  .booking-form {
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .availability-calendar {
    margin-left: -12px;
    margin-right: -12px;
    padding: 16px 12px;
  }

  .availability-calendar__grid button {
    min-height: 39px;
    padding: 0;
  }
}

/* Restore the original lightweight layout; keep navbar, booking and green palette */
.hero__overlay {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 209, 142, 0.18), transparent 25%),
    linear-gradient(90deg, rgba(7, 17, 13, 0.72), rgba(7, 17, 13, 0.16) 48%, rgba(7, 17, 13, 0.42)),
    linear-gradient(0deg, rgba(7, 17, 13, 0.84), rgba(7, 17, 13, 0.14) 42%, rgba(7, 17, 13, 0.36));
}

.hero__content {
  width: min(1180px, 100%);
  max-width: none;
  padding-left: clamp(22px, 6vw, 96px);
  padding-right: clamp(22px, 6vw, 96px);
}

.hero-title {
  max-width: 1120px;
  font-size: clamp(66px, 11vw, 168px);
  font-weight: 600;
  letter-spacing: 0.025em;
}

.hero-copy {
  max-width: 620px;
}

.stay {
  background: var(--ivory);
}

.stay-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 28px);
  align-items: stretch;
}

.suite-card,
.suite-card:nth-child(even) {
  min-height: 520px;
  margin-top: 0;
  box-shadow: 0 16px 48px rgba(7, 17, 13, 0.1);
}

.suite-card > div {
  left: 28px;
  right: 28px;
  bottom: 28px;
}

.suite-card h3 {
  font-size: clamp(30px, 3vw, 48px);
}

.suite-card p {
  max-width: none;
  font-size: inherit;
}

.experience-track {
  background: var(--black);
}

@media (max-width: 1120px) {
  .stay-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .hero__content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-title {
    font-size: clamp(50px, 15.5vw, 78px);
    letter-spacing: 0.035em;
  }

  .stay-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .suite-card,
  .suite-card:nth-child(even) {
    min-height: 560px;
  }

  .navbar,
  .navbar.is-scrolled {
    backdrop-filter: blur(8px);
  }
}

/* Mobile-first presentation */
@media (max-width: 780px) {
  .grain {
    display: none;
  }

  .navbar,
  .navbar.is-scrolled {
    top: 8px;
    left: 8px;
    right: 8px;
    min-height: 56px;
    height: 56px;
    padding: 7px 9px 7px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    border-radius: 6px;
    background: rgba(7, 17, 13, 0.82);
    color: var(--white);
    border-color: rgba(255, 253, 247, 0.16);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(7px);
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand__logo {
    width: 29px;
    height: 29px;
  }

  .brand__text > span {
    font-size: 20px;
    line-height: 1;
  }

  .brand__text small {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 4px;
  }

  .menu-toggle span {
    width: 18px;
  }

  .hero {
    min-height: 100svh;
    align-items: stretch;
  }

  .hero__media img {
    min-height: 100svh;
    object-position: 58% center;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(7, 17, 13, 0.28), transparent 28%),
      linear-gradient(0deg, rgba(7, 17, 13, 0.94), rgba(7, 17, 13, 0.12) 68%),
      linear-gradient(90deg, rgba(7, 17, 13, 0.36), transparent 72%);
  }

  .hero::after {
    height: 12vh;
    background: linear-gradient(0deg, var(--charcoal), transparent);
  }

  .hero__content {
    position: absolute;
    inset: auto 0 0;
    z-index: 4;
    width: 100%;
    padding: 100px 18px 34px;
  }

  .hero .reveal {
    opacity: 0;
    transform: translateY(22px);
  }

  .hero__content .eyebrow {
    margin-bottom: 14px;
    padding-bottom: 7px;
    font-size: 9px;
  }

  .hero-title {
    max-width: 340px;
    font-size: clamp(45px, 13vw, 62px);
    line-height: 0.9;
    letter-spacing: 0.025em;
  }

  .hero-title span + span {
    margin-top: 0.08em;
  }

  .hero-copy {
    max-width: 340px;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.55;
    text-shadow: none;
  }

  .hero-actions {
    width: 100%;
    max-width: 340px;
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .hero-actions .button {
    min-width: 0;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 10px;
  }

  .hero-meta,
  .hero-reserve,
  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding: 90px 18px;
  }

  .luxury-strip {
    padding: 88px 18px;
  }

  .luxury-strip::before {
    inset: 8px;
  }

  .luxury-strip__copy h2,
  .intro-title,
  .display-title {
    font-size: clamp(40px, 11.5vw, 56px);
    line-height: 0.96;
  }

  .intro-copy,
  .section-copy,
  .stay-feature__copy p:last-child,
  .contact-copy {
    font-size: 15px;
    line-height: 1.7;
  }

  .intro-facts {
    margin-top: 46px;
  }

  .stay-feature {
    gap: 28px;
  }

  .stay-feature .lift-frame {
    min-height: 62svh;
  }

  .stay-grid {
    margin-top: 52px;
    gap: 18px;
  }

  .suite-card,
  .suite-card:nth-child(even) {
    min-height: 68svh;
    max-height: 660px;
  }

  .suite-card > div {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }

  .experiences {
    min-height: 360svh;
    padding: 0;
  }

  .experience-sticky {
    position: sticky;
    top: 0;
    min-height: 100svh;
    padding: 88px 18px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .experience-panel {
    min-height: 66svh;
    height: 66svh;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item--hero {
    min-height: 56svh;
  }

  .contact {
    gap: 48px;
  }

  .contact-direct a,
  .footer-contact a {
    font-size: 12px;
    letter-spacing: 0.02em;
    overflow-wrap: anywhere;
  }

  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 370px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-copy {
    max-width: 300px;
    font-size: 13px;
  }

  .hero-actions {
    max-width: 300px;
  }
}

@media (max-width: 780px) {
  .navbar .menu-toggle {
    position: absolute;
    top: 7px;
    right: 9px;
    z-index: 2;
    display: grid !important;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 253, 247, 0.28);
    background: rgba(255, 253, 247, 0.05);
    color: var(--white);
  }

  .brand {
    padding-right: 48px;
  }

  .mobile-menu {
    background: rgba(7, 17, 13, 0.96);
    backdrop-filter: blur(8px);
  }

  .mobile-menu a {
    font-size: clamp(38px, 11vw, 54px);
  }

  .lightbox {
    z-index: 10000;
    padding: 72px 14px 82px;
    background: #030705;
  }

  .lightbox figure {
    width: 100%;
  }

  .lightbox img {
    width: 100%;
    max-width: 100%;
    max-height: calc(100svh - 180px);
  }

  .lightbox__close {
    top: 14px;
    right: 14px;
  }

  .experience-track {
    width: max-content;
    display: flex;
    gap: 14px;
    padding-right: 16vw;
    background: var(--black);
    touch-action: pan-y;
    will-change: transform;
    transform: translate3d(0, 0, 0);
  }

  .experience-panel,
  .experience-panel:nth-child(even) {
    width: 84vw;
    min-width: 84vw;
    height: 66svh;
    min-height: 520px;
    margin-top: 0;
    flex: 0 0 84vw;
    will-change: transform, opacity;
  }
}

/* V33: section height follows the real horizontal travel distance. */
.experiences {
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.experience-sticky {
  position: sticky !important;
  top: 0 !important;
  min-height: 100vh !important;
  overflow: hidden;
}

.experience-track {
  padding-left: clamp(42px, 10vw, 150px) !important;
  padding-right: clamp(120px, 26vw, 360px) !important;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.experience-panel {
  will-change: transform, opacity;
}

@media (max-width: 780px) {
  .experiences {
    min-height: 0 !important;
  }

  .experience-track {
    padding-left: 10vw !important;
    padding-right: 22vw !important;
  }
}
