/* ============================================================
   THE DOLKAR HOTEL — v3
   Ivory for the stay, Tibetan red for the table, pine for the
   welcome, ink for the night. Motion is layered on top; every
   section reads fine without it.
   ============================================================ */

:root {
  --ink: #15130f;
  --ink-2: #1f1c17;
  --ink-3: #2c2821;
  --paper: #f7f2e8;
  --paper-2: #efe6d5;
  --paper-3: #e3d6bd;
  --red: #7d1d1b;
  --red-2: #5a1212;
  --red-3: #3a0c0b;
  --pine: #21443a;
  --pine-2: #132a21;
  --gold: #b89258;
  --gold-2: #d6ba86;
  --gold-3: #8c6d3c;

  --text: #2a241d;
  --muted: #7a6d5e;
  --line: rgba(21, 19, 15, .13);
  --line-l: rgba(247, 242, 232, .16);

  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --edge: clamp(20px, 5vw, 72px);
  --nav-h: 88px;
  --radius: 18px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.77, 0, .18, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html:not(.lenis) { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9990; pointer-events: none;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; font-family: var(--serif); color: inherit; letter-spacing: -.01em; }
p { margin: 0; }
em { font-style: italic; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold-2); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.icon { width: 1.25em; height: 1.25em; flex-shrink: 0; }

.wrap { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--edge); }
.skip { position: absolute; left: 12px; top: -60px; z-index: 9999; background: var(--ink); color: var(--paper); padding: 10px 16px; border-radius: 8px; }
.skip:focus { top: 12px; }

.label {
  display: inline-flex; align-items: center; gap: 14px;
  font: 600 11px/1.2 var(--sans); letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold-3);
}
.label::before { content: ''; width: 30px; height: 1px; background: currentColor; opacity: .7; }

/* split-text helpers */
.sw { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.swi, .sc { display: inline-block; will-change: transform; }

/* ---------- motion pre-states (only when JS motion is active) ---------- */
.motion [data-reveal]:not([data-reveal="clip"]),
.motion [data-stagger] > *,
.motion .hero-meta, .motion .hero-side, .motion .hero-scroll, .motion .ticker,
.motion .rp-ui, .motion .rp-thumbs { opacity: 0; visibility: hidden; }
.motion [data-split], .motion .hero-title, .motion .rp-title { visibility: hidden; }
.motion [data-reveal="clip"] { clip-path: inset(100% 0 0 0); }

/* ---------- buttons & links ---------- */
.btn {
  --fill: var(--paper); --fill-text: var(--ink);
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  height: 54px; padding: 0 28px; border-radius: 999px;
  font: 600 12.5px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  border: 1px solid transparent; white-space: nowrap;
  transition: color .6s var(--ease), border-color .6s var(--ease);
}
.btn::before {
  content: ''; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  background: var(--fill); transform: translateY(101%); transition: transform .7s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn:hover, .btn:focus-visible { color: var(--fill-text); }
.btn .icon { width: 16px; height: 16px; transition: transform .6s var(--ease); }
.btn:hover .icon { transform: translate(2px, -2px); }
.btn--light { border-color: rgba(247, 242, 232, .55); color: var(--paper); }
.btn--gold { background: var(--gold); color: var(--ink); --fill: var(--paper); }
.btn--dark { background: var(--ink); color: var(--paper); --fill: var(--gold); --fill-text: var(--ink); }
.btn--block { width: 100%; }
.btn--sm { height: 42px; padding: 0 20px; font-size: 11.5px; }

.link {
  display: inline-flex; align-items: center; gap: 10px; position: relative;
  font: 500 14px/1 var(--sans); letter-spacing: .02em; padding: 6px 0;
}
.link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform-origin: right; transition: transform .7s var(--ease);
}
.link:hover::after { transform: scaleX(0); }
.link--light { color: var(--paper); }

.icon-btn {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-grid; place-items: center; transition: background .4s, color .4s, border-color .4s, opacity .3s;
}
.icon-btn .icon { width: 18px; height: 18px; }
.icon-btn--line { border: 1px solid currentColor; }
.icon-btn--line:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.icon-btn:disabled { opacity: .3; cursor: default; pointer-events: none; }

/* ---------- preloader & page curtain ---------- */
.preloader, .curtain {
  position: fixed; inset: 0; z-index: 9000; background: var(--ink); color: var(--paper);
  display: none;
}
.is-preloading .preloader { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.pre-logo { width: min(200px, 44vw); }
.pre-foot {
  position: absolute; left: var(--edge); right: var(--edge); bottom: 36px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
  font: 600 11px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: rgba(247, 242, 232, .6);
}
.pre-bar { height: 1px; background: var(--line-l); overflow: hidden; }
.pre-bar i { display: block; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.pre-count { font: 400 40px/1 var(--serif); letter-spacing: 0; color: var(--paper); min-width: 3ch; text-align: right; }

.motion .curtain { display: grid; place-items: center; transform: translateY(100%); }
.is-arriving .curtain { transform: none; }
.curtain img { width: 110px; opacity: .9; }

/* ---------- cursor follower ---------- */
.cursor {
  position: fixed; left: 0; top: 0; z-index: 9500; pointer-events: none;
  width: 0; height: 0; opacity: 0; transition: opacity .3s;
}
.cursor.is-on { opacity: 1; }
.cursor::before {
  content: ''; position: absolute; left: -18px; top: -18px; width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(184, 146, 88, .8); opacity: 0;
  transition: transform .5s var(--ease), opacity .3s, background .4s, border-color .4s;
}
.cursor.is-on::before { opacity: 1; }
.cursor.is-link::before { transform: scale(1.5); background: rgba(184, 146, 88, .12); }
.cursor.is-label::before { transform: scale(2.6); background: var(--gold); border-color: var(--gold); }
.cursor-label {
  position: absolute; left: 0; top: 0; transform: translate(-50%, -50%) scale(.4); opacity: 0;
  font: 600 10.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--ink);
  transition: opacity .3s, transform .5s var(--ease); white-space: nowrap;
}
.cursor.is-label .cursor-label { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ============================================================
   NAV + MENU
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h); padding: 0 var(--edge);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px;
  color: var(--paper);
  transition: transform .8s var(--ease), height .6s var(--ease), color .5s;
}
.nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: rgba(247, 242, 232, .82); backdrop-filter: blur(14px) saturate(1.2); -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line); opacity: 0; transition: opacity .5s;
}
.nav.is-solid { height: 72px; color: var(--ink); }
.nav.is-solid::before { opacity: 1; }
.nav.is-hidden { transform: translateY(-105%); }
.menu-open .nav { color: var(--paper); transform: none; }
.menu-open .nav::before { opacity: 0; }

.nav-logo { position: relative; display: block; height: 58px; width: max-content; transition: height .6s var(--ease); }
.nav.is-solid .nav-logo { height: 48px; }
.nav-logo img { height: 100%; width: auto; transition: opacity .4s; }
.nav-logo .logo-dark { position: absolute; left: 0; top: 0; opacity: 0; }
.nav.is-solid .logo-light { opacity: 0; }
.nav.is-solid .logo-dark { opacity: 1; }
.menu-open .nav .logo-light { opacity: 1; }
.menu-open .nav .logo-dark { opacity: 0; }

.nav-links { display: flex; gap: clamp(20px, 2.6vw, 40px); }
.nav-links a { position: relative; font: 500 13.5px/1 var(--sans); letter-spacing: .03em; padding: 8px 0; }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform .6s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.btn-pill {
  position: relative; overflow: hidden; isolation: isolate;
  height: 44px; padding: 0 22px; border-radius: 999px; border: 1px solid currentColor;
  font: 600 12px/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  transition: color .5s var(--ease), border-color .5s;
}
.btn-pill::before {
  content: ''; position: absolute; inset: 0; z-index: -1; background: var(--gold);
  transform: scale(0); border-radius: 50%; transition: transform .7s var(--ease), border-radius .7s;
}
.btn-pill:hover { color: var(--ink); border-color: var(--gold); }
.btn-pill:hover::before { transform: scale(1.4); border-radius: 0; }
.menu-btn {
  display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid currentColor;
  position: relative;
}
.menu-btn span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: currentColor; transition: transform .6s var(--ease); }
.menu-btn span:first-child { top: 19px; }
.menu-btn span:last-child { top: 25px; }
.menu-open .menu-btn span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-open .menu-btn span:last-child { transform: translateY(-3px) rotate(-45deg); }

.menu {
  position: fixed; inset: 0; z-index: 150; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 4vh) var(--edge) 32px;
  clip-path: inset(0 0 100% 0); visibility: hidden;
  transition: clip-path .9s var(--ease-io), visibility 0s .9s;
}
.menu.is-open { clip-path: inset(0 0 0 0); visibility: visible; transition: clip-path .9s var(--ease-io), visibility 0s; }
.menu-links { display: flex; flex-direction: column; gap: 4px; }
.menu-link { display: block; overflow: hidden; font: 400 clamp(46px, 11vw, 92px)/1.02 var(--serif); }
.menu-link > span { display: inline-flex; align-items: baseline; gap: 18px; transform: translateY(105%); transition: transform 1s var(--ease); }
.menu-link em { font: 500 12px/1 var(--sans); letter-spacing: .1em; color: var(--gold); font-style: normal; }
.menu.is-open .menu-link > span { transform: none; }
.menu.is-open .menu-link:nth-child(1) > span { transition-delay: .25s; }
.menu.is-open .menu-link:nth-child(2) > span { transition-delay: .3s; }
.menu.is-open .menu-link:nth-child(3) > span { transition-delay: .35s; }
.menu.is-open .menu-link:nth-child(4) > span { transition-delay: .4s; }
.menu.is-open .menu-link:nth-child(5) > span { transition-delay: .45s; }
.menu-link:hover > span { color: var(--gold-2); font-style: italic; }
.menu-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 28px; font-size: 14px; color: rgba(247, 242, 232, .7); border-top: 1px solid var(--line-l); padding-top: 24px; }
.menu-foot .btn { margin-left: auto; }

@media (max-width: 1024px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .menu-btn { display: block; }
}
@media (max-width: 560px) {
  :root { --nav-h: 76px; }
  .nav-actions .btn-pill { display: none; }
  .nav-logo { height: 50px; }
  .menu-foot .btn { margin-left: 0; width: 100%; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; height: 100svh; min-height: 640px;
  overflow: hidden; background: var(--ink); color: var(--paper);
  display: flex; flex-direction: column;
}
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 115%; object-fit: cover; object-position: 50% 40%; transform-origin: 50% 40%; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 19, 15, .78) 0%, rgba(21, 19, 15, .3) 22%, rgba(21, 19, 15, .2) 34%, rgba(21, 19, 15, .38) 58%, rgba(21, 19, 15, .94) 100%),
    linear-gradient(90deg, rgba(21, 19, 15, .45), transparent 60%);
}
.hero-inner {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 24px) var(--edge) clamp(28px, 4vw, 48px);
}
.hero-meta {
  display: flex; justify-content: space-between; gap: 20px;
  font: 600 11px/1.4 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: rgba(247, 242, 232, .72);
}
.hero-main { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 40px; }
.hero-title { display: flex; flex-direction: column; line-height: .8; }
.ht-the { font: italic 400 clamp(28px, 3.4vw, 54px)/1 var(--serif); color: var(--gold-2); margin: 0 0 .1em .08em; }
.ht-name { font: 400 clamp(104px, 23vw, 380px)/.8 var(--serif); letter-spacing: -.035em; margin-left: -.04em; }
.hero-side { max-width: 340px; padding-bottom: 2.2vw; }
.hero-tag { font: italic 400 clamp(22px, 2.1vw, 30px)/1.2 var(--serif); margin-bottom: 26px; color: rgba(247, 242, 232, .92); }
.hero-ctas { display: flex; align-items: center; flex-wrap: wrap; gap: 20px 26px; }

.hero-scroll {
  position: absolute; z-index: 3; right: var(--edge); top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  font: 600 10px/1 var(--sans); letter-spacing: .3em; text-transform: uppercase; writing-mode: vertical-rl; color: rgba(247, 242, 232, .7);
}
.hero-scroll i { width: 1px; height: 64px; background: rgba(247, 242, 232, .25); position: relative; overflow: hidden; }
.hero-scroll i::after { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 40%; background: var(--gold-2); animation: drip 2.2s var(--ease-io) infinite; }
@keyframes drip { from { transform: translateY(-100%); } to { transform: translateY(260%); } }

.ticker {
  position: relative; z-index: 2; overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line-l); padding: 16px 0;
  font: 600 11px/1 var(--sans); letter-spacing: .24em; text-transform: uppercase; color: rgba(247, 242, 232, .6);
}
.ticker-track { display: inline-flex; align-items: center; }
.ticker-track > * { margin-right: 26px; }
.ticker-track b { color: var(--gold); font-weight: 400; }
html:not(.motion-ready) .ticker-track { animation: tick 40s linear infinite; }
@keyframes tick { to { transform: translateX(-50%); } }

@media (max-width: 860px) {
  .hero-main { grid-template-columns: 1fr; gap: 28px; }
  .hero-side { padding-bottom: 0; }
  .hero-scroll { display: none; }
  .hero-meta span:last-child { display: none; }
}
@media (max-width: 560px) {
  .ht-name { font-size: 32vw; }
  .ht-the { font-size: 26px; }
}

/* ============================================================
   INTRO + STATS
   ============================================================ */
.intro { padding: clamp(100px, 14vw, 200px) 0 clamp(70px, 9vw, 130px); }
.intro-grid { display: grid; grid-template-columns: 220px 1fr; gap: 40px; }
.intro-grid .label { padding-top: 1.4em; }
.intro-text { font-size: clamp(34px, 5vw, 80px); line-height: 1.06; letter-spacing: -.02em; color: var(--ink); max-width: 17ch; }
.intro-text em { color: var(--red); }
.pill-img {
  display: inline-block; vertical-align: middle; width: 1.7em; height: .92em; border-radius: 999px; overflow: hidden;
  margin: -.12em .06em 0; transform: translateY(-.04em);
}
.pill-img img { width: 100%; height: 100%; object-fit: cover; }
.intro-note { margin-top: 36px; max-width: 420px; color: var(--muted); font-size: 16px; padding-left: 20px; border-left: 1px solid var(--gold); }

.stats { margin-top: clamp(70px, 9vw, 130px); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 28px 24px 0 0; display: flex; flex-direction: column; gap: 10px; }
.stat + .stat { padding-left: 24px; border-left: 1px solid var(--line); }
.stat-num { font: 400 clamp(52px, 6.4vw, 104px)/.9 var(--serif); color: var(--ink); letter-spacing: -.03em; }
.stat-num small { font-size: .32em; margin-left: .15em; letter-spacing: 0; color: var(--muted); }
.stat-label { font-size: 13.5px; color: var(--muted); max-width: 18ch; }

@media (max-width: 860px) {
  .intro-grid { grid-template-columns: 1fr; gap: 20px; }
  .intro-grid .label { padding-top: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 28px; }
}

/* ============================================================
   ROOMS (pinned horizontal on desktop, swipe on touch)
   ============================================================ */
.rooms { background: var(--paper-2); }
.rooms-pin { padding: clamp(80px, 10vw, 130px) 0; }
.rooms-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 40px 60px; flex-wrap: wrap;
  padding: 0 var(--edge); margin-bottom: clamp(36px, 4vw, 56px);
}
.rooms-title { font-size: clamp(54px, 8vw, 132px); line-height: .9; margin-top: 18px; color: var(--ink); }
.rooms-title em, .sec-head h2 em, .about h2 em, .rp-h em { color: var(--gold-3); }
.rooms-aside { max-width: 360px; }
.rooms-aside p { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.rooms-progress { display: flex; align-items: center; gap: 14px; font: 400 18px/1 var(--serif); color: var(--ink); }
.rp-bar { flex: 1; height: 1px; background: var(--line); overflow: hidden; min-width: 120px; }
.rp-bar i { display: block; height: 100%; background: var(--ink); transform: scaleX(.02); transform-origin: left; transition: transform .3s; }

.rooms-track {
  display: flex; gap: clamp(16px, 2vw, 30px); padding: 0 var(--edge) 8px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 var(--edge);
  scrollbar-width: none; -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
}
.rooms-track::-webkit-scrollbar { display: none; }
.room-card { flex: 0 0 auto; width: min(80vw, 400px); scroll-snap-align: start; display: flex; flex-direction: column; color: var(--ink); }
.rc-media { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 5; background: var(--paper-3); }
.rc-zoom { position: absolute; inset: 0 -8%; }
.rc-zoom img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.room-card:hover .rc-zoom img { transform: scale(1.07); }
.rc-media { transition: box-shadow .8s var(--ease); }
.room-card:hover .rc-media { box-shadow: 0 34px 60px -30px rgba(21, 19, 15, .55); }
.rc-title > span, .rc-title em { transition: color .5s, letter-spacing .8s var(--ease); }
.room-card:hover .rc-title em { letter-spacing: .01em; }
.rc-badge, .rc-count {
  position: absolute; top: 16px; padding: 8px 13px; border-radius: 999px;
  font: 600 10.5px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase;
}
.rc-badge { left: 16px; background: var(--paper); color: var(--ink); }
.rc-count { right: 16px; background: rgba(21, 19, 15, .55); color: var(--paper); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.rc-meta { display: flex; gap: 14px; margin: 20px 0 8px; font: 600 11px/1.3 var(--sans); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.rc-meta span:first-child { color: var(--gold-3); }
.rc-title { font-size: clamp(30px, 2.6vw, 42px); line-height: 1; }
.rc-title em { display: block; color: var(--gold-3); }
.rc-foot {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 4px 12px;
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px;
}
.rc-foot b { font: 400 20px/1 var(--serif); }
.rc-specs { grid-row: 2; color: var(--muted); font-size: 13px; }
.rc-arrow {
  grid-row: 1 / 3; grid-column: 2; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; transition: background .5s var(--ease), color .5s, border-color .5s, transform .6s var(--ease);
}
.room-card:hover .rc-arrow { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: rotate(-45deg); }

.room-card--cta {
  background: var(--ink); color: var(--paper); border-radius: var(--radius);
  padding: 34px; justify-content: space-between; gap: 30px; width: min(80vw, 360px);
}
.room-card--cta h3 { font-size: clamp(32px, 2.8vw, 44px); line-height: 1.02; }
.room-card--cta h3 em { color: var(--gold-2); }
.room-card--cta .label { color: var(--gold-2); }

/* pinned mode (set by JS on wide screens) */
.rooms-track.is-pinned { overflow: visible; scroll-snap-type: none; width: max-content; }
.rooms-track.is-pinned .room-card:not(.room-card--cta) { width: auto; }
.rooms-track.is-pinned .rc-media { height: clamp(240px, calc(100vh - 470px), 560px); width: auto; aspect-ratio: 4 / 5; }
.rooms-track.is-pinned .rc-meta { margin-top: 16px; }
.rooms-track.is-pinned .rc-foot { margin-top: 12px; padding-top: 12px; }
@media (min-width: 1025px) {
  .motion-ready .rooms-pin { height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 64px 0 28px; }
  .motion-ready .rooms-head { margin-bottom: 28px; }
  .motion-ready .rooms-title { font-size: clamp(52px, 5.6vw, 96px); margin-top: 12px; }
}

/* ============================================================
   RESTAURANT
   ============================================================ */
.dining {
  position: relative; overflow: hidden; color: var(--paper);
  background: radial-gradient(120% 80% at 80% 0%, var(--red) 0%, var(--red-2) 45%, var(--red-3) 100%);
  padding: clamp(70px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
}
.dining .label { color: var(--gold-2); }
.dining-marquee { overflow: hidden; margin-bottom: clamp(50px, 7vw, 100px); pointer-events: none; }
.dm-track {
  display: inline-block; white-space: nowrap; padding-left: var(--edge);
  font: 400 clamp(92px, 17vw, 290px)/.9 var(--serif); letter-spacing: -.03em;
  color: transparent; -webkit-text-stroke: 1px rgba(214, 186, 134, .5);
}
.dm-track em { color: var(--gold-2); -webkit-text-stroke: 0; }
.dining-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(50px, 7vw, 120px); align-items: center; }
.dining-copy h2 { font-size: clamp(48px, 6vw, 96px); line-height: .95; margin: 20px 0 28px; }
.dining-copy h2 em { color: var(--gold-2); }
.dining-copy > p { font-size: 17px; line-height: 1.75; color: rgba(247, 242, 232, .82); max-width: 520px; }
.dining-copy b { color: var(--gold-2); font-weight: 500; }
.dining-hours {
  display: grid; grid-template-columns: auto 1fr; gap: 4px 18px; align-items: center;
  margin: 36px 0; padding: 22px 0; border-top: 1px solid var(--line-l); border-bottom: 1px solid var(--line-l);
}
.dining-hours strong { font: 400 30px/1 var(--serif); }
.dining-hours small { grid-column: 1 / -1; color: rgba(247, 242, 232, .6); font-size: 13.5px; }
.open-dot {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 14px; border-radius: 999px;
  background: rgba(247, 242, 232, .08); font: 600 10.5px/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
}
.open-dot::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold-2); }
.open-dot.is-open::before { background: #7ed69b; box-shadow: 0 0 0 0 rgba(126, 214, 155, .6); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 10px rgba(126, 214, 155, 0); } 100% { box-shadow: 0 0 0 0 rgba(126, 214, 155, 0); } }
.dining-ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; }

.dining-collage { position: relative; height: clamp(480px, 50vw, 760px); }
.dc { position: absolute; margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); }
.dc img { width: 100%; height: 130%; margin-top: -15%; object-fit: cover; }
.dc1 { left: 0; top: 0; width: 56%; height: 68%; }
.dc2 { right: 0; top: 9%; width: 40%; height: 42%; }
.dc3 { right: 7%; bottom: 0; width: 42%; height: 40%; z-index: 2; }
.dc4 { left: 12%; bottom: 4%; width: 30%; height: 30%; z-index: 3; }

@media (max-width: 900px) {
  .dining-grid { grid-template-columns: 1fr; }
  .dining-collage { height: 118vw; max-height: 640px; }
}

/* ============================================================
   AMENITIES
   ============================================================ */
.amen { padding: clamp(100px, 12vw, 170px) 0; }
.sec-head { margin-bottom: clamp(50px, 6vw, 80px); }
.sec-head h2 { font-size: clamp(46px, 6.4vw, 100px); line-height: .95; margin-top: 18px; color: var(--ink); max-width: 14ch; }
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.amen-item { position: relative; padding: 34px 32px 46px 0; border-top: 1px solid var(--line); }
.amen-item:not(:nth-child(3n + 1)) { padding-left: 32px; border-left: 1px solid var(--line); }
.amen-item::before {
  content: ''; position: absolute; left: 0; right: 0; top: -1px; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .9s var(--ease);
}
.amen-item:hover::before { transform: scaleX(1); }
.amen-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 38px; }
.amen-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--paper-2); color: var(--gold-3); display: grid; place-items: center; transition: background .5s, color .5s, transform .8s var(--ease); }
.amen-icon .icon { width: 24px; height: 24px; }
.amen-item:hover .amen-icon { background: var(--ink); color: var(--gold-2); transform: rotate(-12deg) scale(1.06); }
.amen-no { font: 400 18px/1 var(--serif); color: var(--muted); }
.amen-item h3 { font-size: clamp(26px, 2.3vw, 34px); line-height: 1.05; color: var(--ink); margin-bottom: 12px; }
.amen-item p { color: var(--muted); font-size: 15px; max-width: 32ch; }
@media (max-width: 900px) {
  .amen-grid { grid-template-columns: 1fr 1fr; }
  .amen-item, .amen-item:not(:nth-child(3n + 1)) { padding: 28px 20px 36px 0; border-left: 0; }
  .amen-item:nth-child(2n) { padding-left: 20px; border-left: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .amen-grid { grid-template-columns: 1fr; }
  .amen-item:nth-child(2n) { padding-left: 0; border-left: 0; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 0 0 clamp(100px, 12vw, 170px); }
.about-grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 7vw, 120px); align-items: center; }
.about-media { margin: 0; overflow: hidden; aspect-ratio: 4 / 5; border-radius: 999px 999px var(--radius) var(--radius); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy h2 { font-size: clamp(44px, 5.4vw, 86px); line-height: .98; margin: 18px 0 34px; color: var(--ink); }
.about-copy p { font-size: 17.5px; line-height: 1.75; margin-bottom: 20px; max-width: 560px; }
.dropcap::first-letter { font: 400 5.1em/.8 var(--serif); float: left; padding: .08em .12em 0 0; color: var(--red); }
.about-sign { display: flex; align-items: center; gap: 18px; margin-top: 38px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }
.tib { font: 400 30px/1 'Noto Serif Tibetan', serif; color: var(--gold-3); letter-spacing: 0; text-transform: none; }
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 440px; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--ink); color: var(--paper); padding: clamp(100px, 12vw, 170px) 0; overflow: hidden; }
.gallery .label { color: var(--gold-2); }
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: clamp(50px, 7vw, 110px); }
.gallery-head h2 { font-size: clamp(46px, 6.4vw, 100px); line-height: .95; margin-top: 18px; max-width: 13ch; }
.gallery-head h2 em { color: var(--gold-2); }
.g-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 26px); align-items: start; }
.g-col { display: flex; flex-direction: column; gap: clamp(14px, 1.8vw, 26px); }
.g-col2 { margin-top: 8vw; }
.g-item { display: block; width: 100%; overflow: hidden; border-radius: 14px; background: var(--ink-3); cursor: zoom-in; }
.g-item img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.3s var(--ease), filter .8s; filter: saturate(.9); }
.g-col .g-item:nth-child(2n) img { aspect-ratio: 1 / 1; }
.g-col2 .g-item:nth-child(odd) img { aspect-ratio: 3 / 4; }
.g-item { position: relative; will-change: transform; }
.g-item:hover img { transform: scale(1.08); filter: saturate(1.08); }
.g-cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 18px 16px; text-align: left;
  background: linear-gradient(180deg, transparent, rgba(12, 11, 9, .78));
  font: 400 19px/1.2 var(--serif); color: var(--paper);
  opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .8s var(--ease);
}
.g-item:hover .g-cap, .g-item:focus-visible .g-cap { opacity: 1; transform: none; }
@media (max-width: 760px) {
  .g-cols { grid-template-columns: 1fr 1fr; }
  .g-col { display: contents; }
  .g-col2 { margin-top: 0; }
}

/* ============================================================
   VOICES
   ============================================================ */
.voices { background: var(--paper-2); padding: clamp(100px, 12vw, 160px) 0; text-align: center; }
.voices .label { justify-content: center; }
.v-stage { position: relative; display: grid; margin: 40px auto 44px; max-width: 1100px; }
.v-quote {
  grid-area: 1 / 1; margin: 0; opacity: 0; transform: translateY(24px); visibility: hidden;
  transition: opacity .9s var(--ease), transform 1.1s var(--ease), visibility 0s .9s;
}
.v-quote.is-active { opacity: 1; transform: none; visibility: visible; transition: opacity .9s var(--ease) .15s, transform 1.1s var(--ease) .15s, visibility 0s; }
.v-quote blockquote { margin: 0; font: 400 clamp(32px, 4.4vw, 68px)/1.08 var(--serif); color: var(--ink); letter-spacing: -.02em; }
.v-quote blockquote::before { content: '“'; display: block; font-size: 1.6em; line-height: .5; color: var(--gold); margin-bottom: .1em; }
.v-quote figcaption { margin-top: 26px; font: 600 11.5px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.v-controls { display: flex; justify-content: center; align-items: center; gap: 20px; color: var(--ink); }
.v-dots { display: flex; gap: 8px; }
.v-dots button { width: 48px; height: 24px; display: grid; align-items: center; }
.v-dots i { display: block; height: 2px; background: var(--line); position: relative; overflow: hidden; }
.v-dots i::after { content: ''; position: absolute; inset: 0; background: var(--ink); transform: scaleX(0); transform-origin: left; }
.v-dots .is-active i::after { animation: fill 7s linear forwards; }
.voices.is-paused .v-dots .is-active i::after { animation-play-state: paused; }
@keyframes fill { to { transform: scaleX(1); } }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--pine); color: var(--paper); padding: clamp(100px, 12vw, 170px) 0; }
.contact .label { color: var(--gold-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 7vw, 120px); align-items: start; }
.contact h2 { font-size: clamp(56px, 8vw, 128px); line-height: .9; margin: 18px 0 26px; }
.contact h2 em { color: var(--gold-2); }
.contact .lede { color: rgba(247, 242, 232, .75); font-size: 17px; max-width: 460px; margin-bottom: 40px; }
.c-list li { border-top: 1px solid var(--line-l); }
.c-list li:last-child { border-bottom: 1px solid var(--line-l); }
.c-list a { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 20px 0; transition: padding .6s var(--ease); }
.c-list a:hover { padding-left: 10px; }
.c-icon { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-l); display: grid; place-items: center; color: var(--gold-2); }
.c-text { font: 400 20px/1.3 var(--serif); }
.c-text small { display: block; font: 600 10.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: rgba(247, 242, 232, .5); margin-bottom: 6px; }
.c-go { opacity: .4; transition: opacity .4s, transform .6s var(--ease); }
.c-list a:hover .c-go { opacity: 1; transform: translate(3px, -3px); }

.enquiry { background: rgba(247, 242, 232, .05); border: 1px solid var(--line-l); border-radius: 26px; padding: clamp(26px, 3.4vw, 48px); }
.chips { border: 0; margin: 0 0 20px; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips legend { font: 600 10.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: rgba(247, 242, 232, .55); margin-bottom: 16px; padding: 0; }
.chips label { cursor: pointer; }
.chips input { position: absolute; opacity: 0; pointer-events: none; }
.chips span { display: inline-block; padding: 11px 18px; border-radius: 999px; border: 1px solid var(--line-l); font-size: 14px; transition: background .4s, color .4s, border-color .4s; }
.chips label:hover span { border-color: rgba(247, 242, 232, .5); }
.chips input:checked + span { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.chips input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.field { position: relative; margin-top: 14px; }
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line-l); border-radius: 0;
  color: var(--paper); font: 400 16px/1.4 var(--sans); padding: 26px 0 10px; outline: none; resize: vertical;
  transition: border-color .4s;
}
.field textarea { min-height: 92px; }
.field label {
  position: absolute; left: 0; top: 26px; pointer-events: none; color: rgba(247, 242, 232, .55); font-size: 15px;
  transform-origin: left top; transition: transform .5s var(--ease), color .4s;
}
.field input:focus, .field textarea:focus { border-color: var(--gold-2); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { transform: translateY(-22px) scale(.78); color: var(--gold-2); }
.enquiry .btn { margin-top: 32px; }
.f-status, .bk-status { font-size: 13.5px; margin-top: 14px; min-height: 1.4em; }
.f-status.is-error, .bk-status.is-error { color: #f2b8b8; }
.f-status.is-ok { color: var(--gold-2); }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .f-row { grid-template-columns: 1fr; } }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(247, 242, 232, .66); padding-top: clamp(90px, 11vw, 150px); overflow: hidden; }
.f-cta { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; padding-bottom: clamp(60px, 7vw, 100px); border-bottom: 1px solid var(--line-l); }
.f-cta h2 { font-size: clamp(56px, 8vw, 132px); line-height: .9; color: var(--paper); }
.f-cta h2 em { color: var(--gold-2); }
.f-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 50px 0 30px; font-size: 14.5px; line-height: 1.9; }
.f-cols h4 { font: 600 10.5px/1 var(--sans); letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 16px; }
.f-cols a { transition: color .3s; }
.f-cols a:hover { color: var(--paper); }
.f-word { overflow: hidden; line-height: .74; text-align: center; pointer-events: none; }
.f-word span {
  display: inline-block; font: 400 31vw/.8 var(--serif); letter-spacing: -.045em;
  color: transparent; -webkit-text-stroke: 1px rgba(214, 186, 134, .28);
  background: linear-gradient(180deg, rgba(214, 186, 134, .16), transparent 80%); -webkit-background-clip: text; background-clip: text;
}
.f-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px var(--edge) 28px; border-top: 1px solid var(--line-l); font-size: 13px; }
.f-top:hover { color: var(--gold-2); }
@media (max-width: 760px) { .f-cols { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   STICKY MOBILE BAR + BOOKING DRAWER + BOOKING FORM
   ============================================================ */
.stickybar {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 120;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 8px 8px 8px 22px; border-radius: 999px; background: rgba(21, 19, 15, .92); color: var(--paper);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: 0 16px 40px -12px rgba(0, 0, 0, .5);
  font-size: 14px; transform: translateY(160%); transition: transform .7s var(--ease);
}
.stickybar b { font: 400 20px/1 var(--serif); color: var(--gold-2); }
.stickybar.is-visible { transform: none; }
@media (max-width: 760px) { .stickybar { display: flex; } }

.drawer { position: fixed; inset: 0; z-index: 300; visibility: hidden; transition: visibility 0s .8s; }
.drawer.is-open { visibility: visible; transition: none; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(21, 19, 15, .55); opacity: 0; transition: opacity .6s; }
.drawer.is-open .drawer-scrim { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(500px, 100vw); overflow-y: auto;
  background: var(--paper); padding: 30px clamp(22px, 3vw, 40px) 40px;
  transform: translateX(100%); transition: transform .8s var(--ease);
}
.drawer.is-open .drawer-panel { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; margin-bottom: 18px; }
.drawer-head h3 { font-size: 40px; line-height: 1; margin-top: 14px; color: var(--ink); }
.drawer-head .icon-btn { color: var(--ink); }
.drawer-note { color: var(--muted); font-size: 14.5px; margin-bottom: 26px; }

.bk { display: flex; flex-direction: column; gap: 14px; }
.bk-field { display: flex; flex-direction: column; gap: 6px; }
.bk-field label, .bk-label { font: 600 10.5px/1 var(--sans); letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.bk select, .bk input {
  width: 100%; height: 52px; padding: 0 16px; border-radius: 12px; border: 1px solid var(--line);
  background: #fffdf8; color: var(--ink); font: 400 15px/1 var(--sans); outline: none; transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none; appearance: none;
}
.bk select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%237a6d5e' stroke-width='1.5'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.bk select:focus, .bk input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 146, 88, .18); }
.bk-dates { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.bk-dates input { min-width: 0; padding: 0 12px; font-size: 14px; }
.bk-guests { flex-direction: row; align-items: center; justify-content: space-between; padding: 8px 8px 8px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fffdf8; }
.stepper { display: flex; align-items: center; gap: 10px; }
.stepper .icon-btn { width: 38px; height: 38px; border: 1px solid var(--line); color: var(--ink); }
.stepper .icon-btn:hover { background: var(--ink); color: var(--paper); }
.stepper output { font: 400 24px/1 var(--serif); min-width: 1.4ch; text-align: center; color: var(--ink); }
.bk-summary { padding: 16px 0 4px; border-top: 1px dashed var(--line); margin-top: 4px; }
.bk-line { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; color: var(--text); }
.bk-line strong { font: 400 28px/1 var(--serif); color: var(--ink); }
.bk-line strong em { font-size: 15px; color: var(--muted); }
.bk-summary small { display: block; margin-top: 8px; color: var(--muted); font-size: 12.5px; line-height: 1.5; }
.bk .btn { margin-top: 6px; }
.bk-status.is-ok { color: var(--pine); }
.bk-status.is-error { color: var(--red); }

/* ============================================================
   POP-UP (image from assets/images/pop-up/)
   ============================================================ */
.popup { position: fixed; inset: 0; z-index: 9200; display: grid; place-items: center; padding: 20px; pointer-events: none; }
.popup-scrim { position: absolute; inset: 0; background: rgba(12, 11, 9, .72); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); opacity: 0; transition: opacity .5s var(--ease); }
.popup-card {
  position: relative; width: min(520px, 100%); max-height: calc(100vh - 40px); display: flex; flex-direction: column; gap: 14px;
  padding: 12px 12px 14px; border-radius: 22px; background: var(--paper); box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .6);
  opacity: 0; transform: translateY(30px) scale(.94); transition: opacity .6s var(--ease), transform .8s var(--ease);
}
.popup.is-open { pointer-events: auto; }
.popup.is-open .popup-scrim { opacity: 1; }
.popup.is-open .popup-card { opacity: 1; transform: none; }
.popup-img { display: block; overflow: hidden; border-radius: 14px; min-height: 0; }
.popup-img img { width: 100%; height: auto; max-height: calc(100vh - 150px); object-fit: contain; background: var(--paper-2); transition: transform 1.2s var(--ease); }
.popup-img:hover img { transform: scale(1.03); }
.popup-close {
  position: absolute; top: -14px; right: -14px; z-index: 2; width: 44px; height: 44px;
  background: var(--ink); color: var(--paper); box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}
.popup-close:hover { background: var(--gold); color: var(--ink); }
@media (max-width: 560px) { .popup-close { top: 8px; right: 8px; } }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lb {
  position: fixed; inset: 0; z-index: 9100; background: rgba(12, 11, 9, .97); color: var(--paper);
  opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility 0s .5s;
}
.lb.is-open { opacity: 1; visibility: visible; transition: opacity .5s var(--ease); }
.lb-top { position: absolute; top: 0; left: 0; right: 0; z-index: 2; display: flex; justify-content: space-between; align-items: center; padding: 18px var(--edge); }
.lb-count { font: 400 20px/1 var(--serif); }
.lb-close { border: 1px solid var(--line-l); }
.lb-close:hover { background: var(--paper); color: var(--ink); }
.lb-track { display: flex; height: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior: contain; }
.lb-track::-webkit-scrollbar { display: none; }
.lb-slide { flex: 0 0 100%; height: 100%; scroll-snap-align: start; display: grid; place-items: center; padding: 84px clamp(16px, 8vw, 120px) 70px; }
.lb-slide img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 6px; transform: scale(.96); transition: transform .8s var(--ease); user-select: none; }
.lb.is-open .lb-slide img { transform: none; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; border: 1px solid var(--line-l); background: rgba(21, 19, 15, .4); }
.lb-nav:hover { background: var(--paper); color: var(--ink); }
.lb-prev { left: clamp(10px, 2vw, 28px); }
.lb-next { right: clamp(10px, 2vw, 28px); }
.lb.is-single .lb-nav { display: none; }
.lb-caption { position: absolute; left: 0; right: 0; bottom: 24px; text-align: center; font-size: 13px; letter-spacing: .06em; color: rgba(247, 242, 232, .6); }
.is-drag { scroll-snap-type: none !important; scroll-behavior: auto !important; cursor: grabbing; }
@media (max-width: 700px) { .lb-nav { display: none; } .lb-slide { padding: 70px 0 60px; } .lb-slide img { border-radius: 0; } }

/* ============================================================
   ROOM PAGE
   ============================================================ */
.page-room { background: var(--paper); }
.page-room .nav { color: var(--ink); }
.page-room .nav::before { opacity: 1; }
.page-room .nav .logo-light { opacity: 0; }
.page-room .nav .logo-dark { opacity: 1; }
.menu-open .page-room .nav { color: var(--paper); }
.menu-open .page-room .nav::before { opacity: 0; }
.menu-open .page-room .nav .logo-light { opacity: 1; }
.menu-open .page-room .nav .logo-dark { opacity: 0; }

.rp-top { padding-top: calc(var(--nav-h) + clamp(28px, 4vw, 56px)); }
.rp-back { display: inline-flex; align-items: center; gap: 10px; font: 500 14px/1 var(--sans); color: var(--muted); margin-bottom: clamp(26px, 3vw, 40px); transition: color .3s, gap .5s var(--ease); }
.rp-back:hover { color: var(--ink); gap: 16px; }
.rp-back-ico { display: inline-grid; }
.rp-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px 60px; flex-wrap: wrap; }
.rp-title { font-size: clamp(56px, 9vw, 148px); line-height: .88; color: var(--ink); margin-top: 18px; letter-spacing: -.03em; }
.rp-title em { display: block; color: var(--gold-3); }
.rp-price { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; padding-bottom: 8px; }
.rp-price b { font: 400 clamp(40px, 4vw, 60px)/1 var(--serif); color: var(--ink); }
.rp-from, .rp-per { font: 600 10.5px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.rp-badge { margin-bottom: 10px; padding: 8px 13px; border-radius: 999px; background: var(--ink); color: var(--paper); font: 600 10.5px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 700px) { .rp-price { align-items: flex-start; } }

.rp-gallery { margin-top: clamp(36px, 4vw, 60px); }
.rp-track {
  display: flex; gap: 16px; padding: 0 var(--edge);
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 var(--edge);
  scrollbar-width: none; overscroll-behavior-x: contain; cursor: grab;
}
.rp-track::-webkit-scrollbar { display: none; }
.rp-slide {
  flex: 0 0 min(84vw, 1180px); height: min(68vh, 740px); scroll-snap-align: start;
  border-radius: var(--radius); overflow: hidden; background: var(--paper-3); cursor: inherit;
}
.rp-slide img { width: 100%; height: 100%; object-fit: cover; }
.rp-gallery.is-single .rp-slide { flex-basis: 100%; }
.rp-gallery.is-single .rp-track { cursor: zoom-in; }
.rp-ui { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; margin-top: 24px; }
.rp-counter { display: flex; align-items: center; gap: 12px; font: 400 22px/1 var(--serif); color: var(--ink); }
.rp-counter i { width: 1px; height: 18px; background: var(--line); transform: rotate(20deg); }
.rp-ui .rp-bar { height: 1px; }
.rp-ui .rp-bar i { transition: transform .8s var(--ease); }
.rp-arrows { display: flex; gap: 10px; color: var(--ink); }
.rp-thumbs { display: flex; gap: 10px; margin-top: 20px; overflow-x: auto; scrollbar-width: none; padding: 4px 2px; }
.rp-thumbs::-webkit-scrollbar { display: none; }
.rp-thumb { flex: 0 0 auto; width: 92px; height: 68px; border-radius: 10px; overflow: hidden; opacity: .45; transition: opacity .4s, box-shadow .4s; }
.rp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rp-thumb:hover { opacity: .8; }
.rp-thumb.is-active { opacity: 1; box-shadow: 0 0 0 2px var(--paper), 0 0 0 3px var(--ink); }
.rp-stage { position: relative; }
.rp-ov {
  position: absolute; top: 50%; z-index: 2; width: 58px; height: 58px; margin-top: -29px;
  background: rgba(247, 242, 232, .9); color: var(--ink); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, .35); transition: transform .5s var(--ease), background .3s, color .3s, opacity .3s;
}
.rp-ov:hover { background: var(--ink); color: var(--paper); transform: scale(1.08); }
.rp-ov--prev { left: calc(var(--edge) + 18px); }
.rp-ov--next { right: calc(var(--edge) + 18px); }
.rp-ov:disabled { opacity: 0; }
@media (max-width: 700px) { .rp-ov { display: none; } }
.rp-gallery.is-single .rp-counter, .rp-gallery.is-single .rp-bar,
.rp-gallery.is-single .rp-ov, .rp-gallery.is-single .rp-thumbs { display: none; }
.rp-gallery.is-single .rp-ui { grid-template-columns: 1fr; justify-items: end; }

.rp-body { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr); gap: clamp(40px, 7vw, 110px); padding-top: clamp(60px, 8vw, 110px); padding-bottom: clamp(80px, 10vw, 140px); align-items: start; }
.rp-specs { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.spec { display: flex; flex-direction: column; gap: 8px; padding: 26px 18px 26px 0; }
.spec + .spec { padding-left: 18px; border-left: 1px solid var(--line); }
.spec-icon { color: var(--gold-3); }
.spec-icon .icon { width: 22px; height: 22px; }
.spec strong { font: 400 clamp(22px, 2.1vw, 32px)/1.05 var(--serif); color: var(--ink); }
.spec strong small { font-size: .55em; color: var(--muted); }
.spec > small { font: 600 10px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.rp-lede { font: 400 clamp(28px, 2.8vw, 42px)/1.15 var(--serif); color: var(--ink); margin: 44px 0 20px; letter-spacing: -.01em; }
.rp-desc { font-size: 17px; line-height: 1.75; max-width: 620px; }
.rp-h { font-size: clamp(38px, 4vw, 60px); line-height: 1; color: var(--ink); margin: clamp(60px, 7vw, 90px) 0 26px; }
/* rates & meal plans */
.rp-rates .rp-h { margin-bottom: 12px; }
.rates-sub { color: var(--muted); font-size: 15px; margin-bottom: 26px; }
.rate-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.rate {
  position: relative; display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 20px;
  border: 1px solid var(--line); border-radius: 18px; background: #fffdf8; cursor: pointer; overflow: hidden;
  transition: border-color .4s, box-shadow .6s var(--ease), transform .6s var(--ease), background .4s;
}
.rate::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(184, 146, 88, .14), transparent 60%);
  opacity: 0; transition: opacity .5s;
}
.rate:hover { transform: translateY(-4px); box-shadow: 0 24px 40px -28px rgba(21, 19, 15, .45); border-color: rgba(184, 146, 88, .6); }
.rate:hover::before, .rate.is-selected::before { opacity: 1; }
.rate.is-selected { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 24px 40px -30px rgba(140, 109, 60, .6); }
.rate > * { position: relative; }
.rate-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.rate-name { font: 400 26px/1.1 var(--serif); color: var(--ink); }
.rate-name small { font: 600 11px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--gold-3); margin-left: 8px; vertical-align: middle; }
.rate-tick { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: transparent; flex-shrink: 0; transition: background .4s, color .4s, border-color .4s, transform .6s var(--ease); }
.rate-tick .icon { width: 18px; height: 18px; }
.rate.is-selected .rate-tick { background: var(--ink); border-color: var(--ink); color: var(--gold-2); transform: rotate(-8deg) scale(1.05); }
.rate-note { color: var(--muted); font-size: 14px; line-height: 1.5; min-height: 2.9em; }
.rate-price { display: flex; align-items: baseline; gap: 6px; padding-top: 12px; border-top: 1px dashed var(--line); }
.rate-price b { font: 400 34px/1 var(--serif); color: var(--ink); font-weight: 400; }
.rate-price small { color: var(--muted); font-size: 13px; }
.rate.is-pulse { animation: ratePulse .7s var(--ease); }
@keyframes ratePulse { 40% { transform: scale(.97); } }
.rate-notes { margin-top: 22px; display: grid; gap: 0; border-top: 1px solid var(--line); }
.rate-notes li { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.rn-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--paper-2); color: var(--gold-3); display: grid; place-items: center; flex-shrink: 0; }
.rn-icon .icon { width: 17px; height: 17px; }
.booking-card.is-flash { animation: cardFlash 1s var(--ease); }
@keyframes cardFlash { 30% { box-shadow: 0 0 0 3px rgba(184, 146, 88, .55), 0 40px 80px -50px rgba(21, 19, 15, .45); } }
@media (max-width: 600px) { .rate-grid { grid-template-columns: 1fr; } .rate-note { min-height: 0; } }

.rp-amen { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.rp-amen li { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; }
.ra-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--paper-2); color: var(--gold-3); display: grid; place-items: center; flex-shrink: 0; }
.ra-icon .icon { width: 19px; height: 19px; }

.acc { border-top: 1px solid var(--line); }
.acc:last-child { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; cursor: pointer; font: 400 clamp(22px, 2vw, 28px)/1.2 var(--serif); color: var(--ink); }
.acc summary::-webkit-details-marker { display: none; }
.acc summary i { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex-shrink: 0; transition: transform .6s var(--ease), background .4s, color .4s; }
.acc summary i .icon { width: 16px; height: 16px; }
.acc[open] summary i { transform: rotate(45deg); background: var(--ink); color: var(--paper); }
.acc-body { padding: 0 60px 24px 0; color: var(--muted); animation: accIn .7s var(--ease); }
@keyframes accIn { from { opacity: 0; transform: translateY(-8px); } }

.rp-aside { position: sticky; top: calc(72px + 24px); }
.booking-card { background: var(--paper-2); border-radius: 26px; padding: clamp(24px, 2.6vw, 36px); box-shadow: 0 40px 80px -50px rgba(21, 19, 15, .45); }
.bc-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: 22px; }
.bc-price b { font: 400 44px/1 var(--serif); color: var(--ink); }
.bc-price span { color: var(--muted); font-size: 14px; }
.bc-alt { margin-top: 14px; font-size: 13.5px; color: var(--muted); text-align: center; }
.bc-alt a { color: var(--ink); border-bottom: 1px solid var(--gold); }

.rp-others { background: var(--paper-2); padding: clamp(90px, 10vw, 140px) 0; }
.rp-others-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 44px; }
.rp-others-head h2 { font-size: clamp(46px, 6vw, 96px); line-height: .92; margin-top: 18px; color: var(--ink); }
.rp-others-head h2 em { color: var(--gold-3); }

@media (max-width: 960px) {
  .rp-body { grid-template-columns: minmax(0, 1fr); }
  .rp-aside { position: static; }
  .rp-specs { grid-template-columns: 1fr 1fr; }
  .spec:nth-child(3) { padding-left: 0; border-left: 0; }
  .spec:nth-child(n+3) { border-top: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .rp-slide { flex-basis: 86vw; height: 62vh; }
  .rp-amen { grid-template-columns: 1fr; }
  .rp-ui { grid-template-columns: auto 1fr; }
  .rp-ui .rp-bar { display: none; }
  .rp-ui .rp-arrows { justify-self: end; }
  .rp-others-head .rp-arrows { display: none; }
}

/* ============================================================
   EDIT MODE PANEL
   ============================================================ */
.is-editing [data-edit] { outline: 1px dashed rgba(184, 146, 88, .7); outline-offset: 4px; cursor: text; border-radius: 2px; }
.is-editing [data-edit]:hover { background: rgba(184, 146, 88, .1); }
.is-editing [data-edit]:focus { outline: 2px solid var(--gold); background: rgba(184, 146, 88, .12); }
.edit-panel {
  position: fixed; right: 16px; bottom: 16px; z-index: 9800; width: min(320px, calc(100vw - 32px));
  background: var(--ink); color: var(--paper); border-radius: 18px; padding: 20px; font-size: 13px; line-height: 1.5;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
}
.edit-panel .edit-title { display: block; width: 100%; margin: 0 0 8px; padding: 0; border: 0; text-align: left; font: 400 26px/1 var(--serif); letter-spacing: 0; color: var(--gold-2); }
.edit-panel .edit-title span { font: 500 11px/1 var(--sans); color: rgba(247, 242, 232, .5); }
.edit-panel .edit-title:hover { border: 0; }
.edit-panel.is-min > :not(.edit-title) { display: none; }
.edit-panel.is-min .edit-title { margin: 0; }
.edit-panel p { color: rgba(247, 242, 232, .7); margin-bottom: 10px; }
.edit-panel .edit-count { color: var(--paper); font-weight: 600; }
.edit-panel button { display: block; width: 100%; margin-top: 8px; padding: 11px; border-radius: 10px; border: 1px solid var(--line-l); font-weight: 600; font-size: 12.5px; letter-spacing: .04em; }
.edit-panel button:hover { border-color: var(--paper); }
.edit-panel .edit-primary { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.edit-panel .edit-help { margin: 12px 0 0; font-size: 11.5px; }
.edit-page { display: block; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: rgba(247, 242, 232, .6); margin-bottom: 10px; }
.edit-page select { display: block; width: 100%; margin-top: 6px; padding: 10px; border-radius: 10px; border: 1px solid var(--line-l); background: var(--ink-2); color: var(--paper); font: 500 13px/1.2 var(--sans); text-transform: none; letter-spacing: 0; }
.edit-panel code { color: var(--gold-2); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ---------- rolling text on hover (buttons, nav) ---------- */
.roll { display: inline-grid; overflow: hidden; vertical-align: top; line-height: 1.25; padding: .04em 0; }
.roll > i { grid-area: 1 / 1; font-style: inherit; transition: transform .7s var(--ease); }
.roll > i + i { transform: translateY(110%); }
a:hover .roll > i:first-child, button:hover .roll > i:first-child,
a:focus-visible .roll > i:first-child, button:focus-visible .roll > i:first-child { transform: translateY(-110%); }
a:hover .roll > i + i, button:hover .roll > i + i,
a:focus-visible .roll > i + i, button:focus-visible .roll > i + i { transform: none; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; left: 0; right: 0; top: 0; height: 2px; z-index: 260; pointer-events: none;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-2));
  transform: scaleX(0); transform-origin: left;
}

/* ---------- 3D tilt targets ---------- */
[data-tilt] { transform-style: preserve-3d; will-change: transform; }
