/* ============================================================
   VESPERA — boutique hotel concept
   ============================================================ */

:root {
  --bg: #0f0e0b;
  --bg-2: #16140f;
  --paper: #f1ebdf;
  --paper-2: #e8e0cf;
  --cream: #ede6d6;
  --cream-dim: rgba(237, 230, 214, 0.55);
  --ink: #1b1710;
  --ink-dim: rgba(27, 23, 16, 0.6);
  --brass: #b99a5b;
  --brass-bright: #d6bc84;
  --line-dark: rgba(237, 230, 214, 0.14);
  --line-light: rgba(27, 23, 16, 0.16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 112px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: thin; scrollbar-color: rgba(185, 154, 91, .5) var(--bg); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--brass); color: var(--bg); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(185, 154, 91, .4); border-radius: 5px; }

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

/* ------------------------------------------------------------
   Grain overlay
   ------------------------------------------------------------ */
.grain {
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 2000;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-2%, 2%); }
  40% { transform: translate(2%, -1%); }
  60% { transform: translate(-1%, -2%); }
  80% { transform: translate(1%, 1%); }
}

/* ------------------------------------------------------------
   Typography helpers
   ------------------------------------------------------------ */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--brass);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.eyebrow::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--brass);
  display: inline-block;
}
.eyebrow--bare::before { display: none; }

.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.h-display em, .italic { font-style: italic; font-weight: 300; }

.lead {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-weight: 300;
  line-height: 1.55;
}

.body-dim { color: var(--cream-dim); font-weight: 300; max-width: 42ch; }
.section--light .body-dim { color: var(--ink-dim); }

.line { display: block; overflow: hidden; }
.line-inner { display: block; will-change: transform; }

/* ------------------------------------------------------------
   Layout
   ------------------------------------------------------------ */
.container { width: min(1440px, 92vw); margin-inline: auto; }
.section { padding: clamp(90px, 12vh, 160px) 0; position: relative; }
.section--light { background: var(--paper); color: var(--ink); }
.section--light .eyebrow { color: #96793d; }

/* ------------------------------------------------------------
   Buttons
   ------------------------------------------------------------ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  border: 1px solid var(--brass);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream);
  overflow: hidden;
  transition: color .5s var(--ease-out), border-color .5s var(--ease-out);
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--brass);
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease-out);
  z-index: -1;
}
.btn:hover { color: var(--bg); }
.btn:hover::after { transform: scaleY(1); }
.btn--solid { background: var(--brass); color: var(--bg); }
.btn--solid::after { background: var(--cream); }
.section--light .btn { color: var(--ink); }
.section--light .btn:hover { color: var(--paper); }

.link-line {
  position: relative;
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding-bottom: 6px;
}
.link-line::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform .5s var(--ease-out);
}
.link-line:hover::after { transform: scaleX(0); transform-origin: left; }

/* ------------------------------------------------------------
   Cursor
   ------------------------------------------------------------ */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 8px; height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--brass-bright);
  pointer-events: none;
  z-index: 3000;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 42px; height: 42px;
  margin: -21px 0 0 -21px;
  border-radius: 50%;
  border: 1px solid rgba(214, 188, 132, .6);
  pointer-events: none;
  z-index: 3000;
  transition: transform .35s var(--ease-out), opacity .35s, background .35s;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--bg); font-weight: 700;
}
.cursor-ring.is-hover { transform: scale(1.7); background: rgba(214, 188, 132, .12); }
.cursor-ring.is-media { transform: scale(2.4); background: var(--brass-bright); border-color: var(--brass-bright); }
.cursor-ring.is-media::after { content: "View"; }
@media (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

/* ------------------------------------------------------------
   Preloader
   ------------------------------------------------------------ */
.preloader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader-word {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 9vw, 7rem);
  letter-spacing: .12em;
  display: flex;
  overflow: hidden;
}
.preloader-word span { display: inline-block; transform: translateY(120%); }
.preloader-count {
  position: absolute;
  bottom: 40px; right: 48px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--cream-dim);
}
.preloader-line {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px; width: 0%;
  background: var(--brass);
}

/* ------------------------------------------------------------
   Page fade (transitions)
   ------------------------------------------------------------ */
.page-fade {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 4500;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

/* ------------------------------------------------------------
   Navigation
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: transform .6s var(--ease-out), background .6s, backdrop-filter .6s, height .6s var(--ease-out);
}
.nav--hidden { transform: translateY(-100%); }
.nav--solid { background: rgba(15, 14, 11, .72); backdrop-filter: blur(14px); height: 84px; }
@media (max-width: 900px) {
  .nav { height: 88px; }
  .nav--solid { height: 72px; }
}
.nav-inner {
  width: min(1440px, 92vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .34em;
  font-weight: 400;
}
.nav-brand sup { font-size: 9px; letter-spacing: .2em; color: var(--brass); vertical-align: super; }
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-reserve {
  font-size: 11px; font-weight: 700;
  letter-spacing: .3em; text-transform: uppercase;
  padding: 12px 26px;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  transition: border-color .4s, background .4s, color .4s;
}
.nav-reserve:hover { border-color: var(--brass); background: var(--brass); color: var(--bg); }
.nav-toggle {
  display: flex; flex-direction: column; gap: 7px;
  padding: 10px 0;
  width: 44px;
  align-items: flex-end;
}
.nav-toggle span {
  display: block; height: 1px; background: var(--cream);
  transition: transform .5s var(--ease-out), width .5s var(--ease-out), opacity .3s;
}
.nav-toggle span:nth-child(1) { width: 44px; }
.nav-toggle span:nth-child(2) { width: 30px; }
.nav-toggle:hover span { width: 44px; }
body.menu-open .nav-toggle span:nth-child(1) { transform: translateY(4px) rotate(-45deg); width: 44px; }
body.menu-open .nav-toggle span:nth-child(2) { transform: translateY(-4px) rotate(45deg); width: 44px; }

/* ------------------------------------------------------------
   Fullscreen menu
   ------------------------------------------------------------ */
.menu {
  position: fixed; inset: 0;
  background: var(--bg-2);
  z-index: 900;
  transform: translateY(-100%);
  visibility: hidden;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.menu-inner {
  width: min(1440px, 92vw);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
}
.menu-links { list-style: none; }
.menu-links li { overflow: hidden; }
.menu-link {
  display: inline-flex;
  align-items: baseline;
  gap: 24px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  line-height: 1.25;
  transform: translateY(110%);
  transition: color .4s;
}
.menu-link i {
  font-family: var(--sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--brass);
}
.menu-link:hover { color: var(--brass-bright); font-style: italic; }
.menu-aside { display: flex; flex-direction: column; gap: 36px; }
.menu-media {
  aspect-ratio: 4 / 5;
  max-width: 380px;
  overflow: hidden;
  border-radius: 2px;
}
.menu-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.menu-contact { font-size: 13px; color: var(--cream-dim); line-height: 2; letter-spacing: .04em; }
.menu-contact a:hover { color: var(--brass-bright); }
@media (max-width: 900px) {
  .menu-inner { grid-template-columns: 1fr; }
  .menu-aside { display: none; }
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-media video, .hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,14,11,.92) 0%, rgba(15,14,11,.25) 45%, rgba(15,14,11,.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1440px, 92vw);
  margin-inline: auto;
  padding-bottom: clamp(48px, 8vh, 96px);
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--brass-bright);
}
.hero-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(4.2rem, 14.5vw, 13.5rem);
  line-height: .95;
  letter-spacing: .06em;
  display: flex;
  flex-wrap: wrap;
}
.hero-title .ch { display: inline-block; overflow: hidden; }
.hero-title .ch i { display: inline-block; font-style: normal; transform: translateY(115%); will-change: transform; }
.hero-sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-sub p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--cream);
  max-width: 34ch;
}
.hero-meta {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  text-align: right;
  line-height: 2.2;
}
.hero-scroll {
  position: absolute;
  bottom: 0; left: 50%;
  width: 1px; height: 90px;
  background: rgba(237,230,214,.25);
  overflow: hidden;
  z-index: 2;
}
.hero-scroll::after {
  content: "";
  position: absolute; top: -50%;
  width: 100%; height: 50%;
  background: var(--brass-bright);
  animation: scrollcue 2.2s var(--ease-out) infinite;
}
@keyframes scrollcue {
  0% { top: -50%; }
  60%, 100% { top: 110%; }
}

/* ------------------------------------------------------------
   Marquee
   ------------------------------------------------------------ */
.marquee {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 26px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.marquee-inner {
  display: inline-flex;
  gap: 64px;
  padding-right: 64px;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee-inner span {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  color: var(--cream-dim);
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.marquee-inner span::after {
  content: "✦";
  font-size: .7em;
  color: var(--brass);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------
   Intro editorial
   ------------------------------------------------------------ */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}
.intro-copy { grid-column: 1 / 7; padding-top: 40px; }
.intro-copy .h-display { margin: 28px 0 32px; max-width: 16ch; }
.intro-copy .body-dim { margin-bottom: 40px; }
.intro-imgs { grid-column: 7 / 13; position: relative; min-height: 720px; }
.intro-img-1 {
  position: absolute; top: 0; right: 0;
  width: 72%;
  aspect-ratio: 3 / 4;
}
.intro-img-2 {
  position: absolute; bottom: -40px; left: 0;
  width: 46%;
  aspect-ratio: 4 / 5;
  z-index: 2;
}
.intro-caption {
  position: absolute;
  bottom: -80px; right: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--cream-dim);
}
@media (max-width: 900px) {
  .intro-copy { grid-column: 1 / -1; }
  .intro-imgs { grid-column: 1 / -1; min-height: 480px; margin-top: 40px; }
  .intro-caption { bottom: -60px; }
}

.reveal-img { overflow: hidden; position: relative; border-radius: 2px; }
.reveal-img img, .reveal-img video { width: 100%; height: 100%; object-fit: cover; will-change: transform; }

/* ------------------------------------------------------------
   Stats
   ------------------------------------------------------------ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  margin-top: clamp(80px, 12vh, 140px);
}
.stat {
  padding: 44px 32px 8px;
  border-right: 1px solid var(--line-dark);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--cream);
}
.stat-num sub { font-size: .35em; color: var(--brass); font-style: italic; }
.stat-label {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 10px;
}
@media (max-width: 900px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat { border-bottom: 1px solid var(--line-dark); border-top: 0; padding: 28px 20px; }
}

/* ------------------------------------------------------------
   Horizontal suites strip
   ------------------------------------------------------------ */
.hs { overflow: hidden; position: relative; }
.hs-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}
.hs-track {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  width: max-content;
  padding-left: max(4vw, (100vw - 1440px) / 2);
  padding-right: 8vw;
  will-change: transform;
}
.hs-panel {
  width: clamp(320px, 38vw, 560px);
  flex-shrink: 0;
}
.hs-panel .reveal-img { aspect-ratio: 4 / 5; }
.hs-panel-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 20px;
  gap: 16px;
}
.hs-panel-meta h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}
.hs-panel-meta h3 i { font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: .3em; color: var(--brass); margin-right: 14px; }
.hs-panel-meta p { font-size: 12px; letter-spacing: .12em; color: var(--cream-dim); white-space: nowrap; }
.hs-panel img { transition: transform 1.2s var(--ease-out); }
.hs-panel:hover img { transform: scale(1.06); }
.hs-progress {
  width: min(1440px, 92vw);
  margin: 56px auto 0;
  height: 1px;
  background: var(--line-dark);
  position: relative;
}
.hs-progress-bar {
  position: absolute; inset: 0;
  background: var(--brass);
  transform-origin: left;
  transform: scaleX(0);
}
@media (max-width: 900px) {
  .hs-track { overflow-x: auto; width: auto; padding: 0 4vw; scroll-snap-type: x mandatory; }
  .hs-panel { scroll-snap-align: start; width: 78vw; }
  .hs-progress { display: none; }
}

/* ------------------------------------------------------------
   Experience feature rows
   ------------------------------------------------------------ */
.exp-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(48px, 8vh, 96px) 0;
}
.exp-row + .exp-row { border-top: 1px solid var(--line-dark); }
.section--light .exp-row + .exp-row { border-top: 1px solid var(--line-light); }
.exp-media { grid-column: 1 / 8; }
.exp-media .reveal-img { aspect-ratio: 16 / 10; }
.exp-copy { grid-column: 9 / 13; }
.exp-row--flip .exp-media { grid-column: 6 / 13; order: 2; }
.exp-row--flip .exp-copy { grid-column: 1 / 5; order: 1; }
.exp-copy h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin: 20px 0 18px;
}
.exp-copy .body-dim { margin-bottom: 30px; }
.exp-index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--brass);
}
@media (max-width: 900px) {
  .exp-media, .exp-row--flip .exp-media { grid-column: 1 / -1; order: 1; }
  .exp-copy, .exp-row--flip .exp-copy { grid-column: 1 / -1; order: 2; }
}

/* ------------------------------------------------------------
   Gallery marquee rows
   ------------------------------------------------------------ */
.gallery { padding: clamp(90px, 12vh, 150px) 0; overflow: hidden; }
.gallery-row {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  margin-bottom: 20px;
}
.gallery-row figure {
  width: clamp(240px, 24vw, 380px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 2px;
}
.gallery-row figure:nth-child(even) { aspect-ratio: 3 / 4; width: clamp(200px, 18vw, 300px); }
.gallery-row img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.gallery-row figure:hover img { transform: scale(1.08); }

/* ------------------------------------------------------------
   Quotes
   ------------------------------------------------------------ */
.quotes { text-align: center; position: relative; }
.quotes-mark {
  font-family: var(--serif);
  font-size: 90px;
  line-height: 1;
  color: var(--brass);
  opacity: .6;
}
.quote-slides { position: relative; min-height: 260px; }
.quote-slide {
  position: absolute; inset: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.quote-slide.is-active { opacity: 1; visibility: visible; }
.quote-slide blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1.35;
  max-width: 24ch;
  margin-inline: auto;
}
.quote-slide cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.quote-dots { display: flex; gap: 12px; justify-content: center; margin-top: 40px; }
.quote-dots button {
  width: 32px; height: 2px;
  background: var(--line-dark);
  transition: background .4s;
}
.quote-dots button.is-active { background: var(--brass); }

/* ------------------------------------------------------------
   Location
   ------------------------------------------------------------ */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
}
.loc-copy { grid-column: 1 / 6; }
.loc-copy .h-display { margin: 26px 0 30px; }
.loc-media { grid-column: 7 / 13; }
.loc-media .reveal-img { aspect-ratio: 4 / 3; }
.loc-list { list-style: none; margin-top: 36px; border-top: 1px solid var(--line-light); }
.loc-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 14px;
}
.loc-list li span:first-child { color: var(--ink-dim); letter-spacing: .08em; }
.loc-list li span:last-child { font-family: var(--serif); font-style: italic; }
@media (max-width: 900px) {
  .loc-copy, .loc-media { grid-column: 1 / -1; }
}

/* ------------------------------------------------------------
   CTA
   ------------------------------------------------------------ */
.cta {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-media { position: absolute; inset: 0; }
.cta-media video, .cta-media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.cta-media::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(15, 14, 11, .58);
}
.cta-content { position: relative; z-index: 2; padding: 100px 24px; }
.cta-content .h-display { font-size: clamp(3rem, 8vw, 7.5rem); margin: 24px 0 40px; }

/* ------------------------------------------------------------
   Footer
   ------------------------------------------------------------ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line-dark);
  padding-top: clamp(70px, 9vh, 110px);
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 80px;
}
.footer h4 {
  font-size: 11px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
  font-weight: 600;
}
.footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  max-width: 20ch;
  line-height: 1.4;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a { font-size: 14px; color: var(--cream-dim); transition: color .3s, padding-left .3s; }
.footer ul a:hover { color: var(--brass-bright); padding-left: 8px; }
.footer-news p { font-size: 14px; color: var(--cream-dim); margin-bottom: 20px; font-weight: 300; }
.footer-news form { display: flex; border-bottom: 1px solid var(--line-dark); }
.footer-news input {
  flex: 1;
  background: none; border: none;
  color: var(--cream);
  font: 300 14px var(--sans);
  padding: 12px 0;
  outline: none;
}
.footer-news input::placeholder { color: rgba(237,230,214,.35); }
.footer-news button { color: var(--brass); font-size: 18px; padding: 0 8px; transition: transform .3s; }
.footer-news button:hover { transform: translateX(6px); }
.footer-word {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(5rem, 17vw, 16rem);
  letter-spacing: .1em;
  line-height: .8;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(237, 230, 214, .22);
  user-select: none;
  transform: translateY(18%);
  white-space: nowrap;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(237,230,214,.4);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ------------------------------------------------------------
   Booking modal
   ------------------------------------------------------------ */
.booking {
  position: fixed; inset: 0;
  z-index: 2500;
  visibility: hidden;
}
.booking-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 9, 7, .7);
  backdrop-filter: blur(6px);
  opacity: 0;
}
.booking-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(560px, 100vw);
  background: var(--paper);
  color: var(--ink);
  transform: translateX(102%);
  padding: 48px clamp(28px, 4vw, 56px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.booking-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.booking-head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 2rem;
}
.booking-head h3 em { display: block; font-size: .55em; color: #96793d; margin-top: 6px; }
.booking-close { font-size: 13px; letter-spacing: .25em; text-transform: uppercase; padding: 8px 0; color: var(--ink-dim); transition: color .3s; }
.booking-close:hover { color: var(--ink); }
.booking-form { display: flex; flex-direction: column; gap: 26px; flex: 1; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field label {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 700;
}
.field input, .field select {
  background: none;
  border: none;
  border-bottom: 1px solid var(--line-light);
  padding: 12px 0;
  font: 300 16px var(--sans);
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color .3s;
}
.field input:focus, .field select:focus { border-color: var(--brass); }
.booking-form .btn { margin-top: 12px; align-self: flex-start; color: var(--ink); }
.booking-form .btn:hover { color: var(--paper); }
.booking-note {
  margin-top: auto;
  padding-top: 32px;
  font-size: 12px;
  color: var(--ink-dim);
  font-style: italic;
  font-family: var(--serif);
}
.booking-success {
  position: absolute; inset: 0;
  background: var(--paper);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px;
  gap: 20px;
}
.booking-success.is-visible { display: flex; }
.booking-success h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: 3rem;
}
.booking-success p { color: var(--ink-dim); max-width: 30ch; font-weight: 300; }
.booking-success .ring {
  width: 72px; height: 72px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-size: 26px;
}

/* ------------------------------------------------------------
   Page hero (interior pages)
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  height: 78svh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero .hero-media::after {
  background: linear-gradient(to top, rgba(15,14,11,.94) 4%, rgba(15,14,11,.3) 55%, rgba(15,14,11,.4) 100%);
}
.page-hero .hero-content { padding-bottom: clamp(40px, 7vh, 80px); }
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8.5vw, 8rem);
  line-height: 1;
  letter-spacing: .01em;
}
.page-hero h1 em { font-weight: 300; }
.page-hero .hero-kicker { margin-bottom: 16px; }

/* ------------------------------------------------------------
   Suite rows (suites page)
   ------------------------------------------------------------ */
.suite-row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(56px, 9vh, 110px) 0;
}
.suite-row + .suite-row { border-top: 1px solid var(--line-dark); }
.suite-media { grid-column: 1 / 8; position: relative; }
.suite-media .reveal-img { aspect-ratio: 16 / 11; }
.suite-copy { grid-column: 9 / 13; }
.suite-row--flip .suite-media { grid-column: 6 / 13; order: 2; }
.suite-row--flip .suite-copy { grid-column: 1 / 5; order: 1; }
.suite-num {
  position: absolute;
  top: -28px; left: -12px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(4rem, 7vw, 6.5rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(185, 154, 91, .5);
  z-index: 3;
  line-height: 1;
  pointer-events: none;
}
.suite-copy h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin: 18px 0 16px;
}
.suite-copy .body-dim { margin-bottom: 26px; }
.suite-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.suite-chips span {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  padding: 8px 16px;
  color: var(--cream-dim);
}
.suite-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  margin-bottom: 28px;
}
.suite-price em { font-size: .65em; color: var(--cream-dim); }
@media (max-width: 900px) {
  .suite-media, .suite-row--flip .suite-media { grid-column: 1 / -1; order: 1; }
  .suite-copy, .suite-row--flip .suite-copy { grid-column: 1 / -1; order: 2; }
  .suite-num { top: -20px; left: 4px; }
}

/* ------------------------------------------------------------
   Timeline (experiences page)
   ------------------------------------------------------------ */
.timeline { max-width: 760px; margin-inline: auto; }
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-light);
  align-items: baseline;
}
.timeline-item time {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: #96793d;
}
.timeline-item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 6px;
}
.timeline-item p { color: var(--ink-dim); font-weight: 300; font-size: 15px; }

/* ------------------------------------------------------------
   Utility / motion initial states are set via JS (gsap.set)
   ------------------------------------------------------------ */
.overflow-hidden { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .marquee-inner, .gallery-row, .grain, .hero-scroll::after { animation: none !important; }
}
