/* ── BRAND FONTS ── */
@font-face {
  font-family: 'DomaineDisp';
  src: url('../fonts/DomaineDispNar-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Italic-Variable.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ── VARIABLES & RESET ── */
:root {
  --orange: #FF3300;
  --cream: #F5EFE0;
  --gold: #C9A84C;
  --deep: #130E06;
  --deep2: #1C1308;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--deep);
  color: var(--cream);
  font-family: 'Archivo', 'Cormorant Garamond', serif;
  cursor: none;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
#cur {
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
#cur-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,51,0,.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform .4s ease;
}

/* ── COMING SOON BANNER ── */
#cs-banner {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 600;
  background: var(--orange);
  padding: 10px 56px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.cs-pill {
  font-family: 'Archivo', monospace;
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(0,0,0,.18);
  padding: 4px 12px; border-radius: 2px;
}
#cs-banner p {
  font-family: 'Archivo', serif;
  font-size: 15px; font-weight: 400; color: #fff; letter-spacing: .04em;
}
#cs-banner p em { font-style: italic; opacity: .85; }
#cs-banner a {
  font-family: 'Archivo', monospace;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); background: #fff;
  padding: 7px 16px; text-decoration: none; cursor: none;
  transition: background .2s; margin-left: 8px;
}
#cs-banner a:hover { background: var(--deep); color: #fff; }

/* ── LANGUAGE TOGGLE ── */
#lang-toggle {
  position: fixed; top: 0; right: 56px;
  z-index: 700;
  display: flex; align-items: center; gap: 0; height: 40px;
}
.lt-btn {
  font-family: 'Archivo', monospace;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  background: transparent; border: none;
  padding: 0 10px; cursor: none;
  transition: color .2s; height: 100%;
}
.lt-btn.active { color: #fff; font-weight: 500; }
.lt-sep { width: 1px; height: 14px; background: rgba(255,255,255,.3); }

/* ── NAV ── */
nav {
  position: fixed; top: 40px; left: 0; right: 0;
  z-index: 500;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 56px;
  transition: padding .4s, background .4s, top .4s;
}
nav.sc {
  background: rgba(19,14,6,.94);
  backdrop-filter: blur(18px);
  padding: 18px 56px;
}
.nl { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nl img { width: 40px; height: auto; }
.nl span {
  font-family: 'DomaineDisp', 'Playfair Display', serif;
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--cream);
}
.nm { display: flex; gap: 36px; list-style: none; }
.nm a {
  font-family: 'Archivo', monospace;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  opacity: .6; transition: opacity .2s, color .2s; cursor: none;
}
.nm a:hover { opacity: 1; color: var(--gold); }

/* ── NAV CONTACT BUTTON ── */
.nav-contact {
  font-family: 'Archivo', monospace;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  padding: 10px 22px;
  text-decoration: none; cursor: none;
  transition: border-color .25s, background .25s, color .25s;
  white-space: nowrap;
}
.nav-contact:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO ── */
#hero { position: relative; height: 100vh; overflow: hidden; }
.sl { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.sl.on { opacity: 1; }
.sl img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.46); }

/* ── INSTRUMENT HOTSPOTS ── */
.hs { position: absolute; z-index: 30; cursor: none; }
.hd {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,.5);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .3s, border-color .3s;
  animation: hpulse 3s ease-in-out infinite;
}
.hd::before {
  content: ''; width: 9px; height: 9px;
  background: var(--gold); border-radius: 50%;
}
.hd::after {
  content: ''; position: absolute;
  width: 70px; height: 70px;
  border: 1px solid rgba(201,168,76,.15);
  border-radius: 50%;
  animation: hopulse 3s ease-in-out infinite;
}
.hs:hover .hd { transform: scale(1.25); border-color: var(--gold); }
@keyframes hpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(201,168,76,.3); }
  50% { box-shadow: 0 0 0 16px rgba(201,168,76,0); }
}
@keyframes hopulse {
  0%,100% { transform: scale(1); opacity: .4; }
  50% { transform: scale(1.5); opacity: 0; }
}
.ht {
  position: absolute;
  bottom: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(19,14,6,.93);
  border: 1px solid rgba(201,168,76,.4);
  padding: 10px 18px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s;
  backdrop-filter: blur(12px);
}
.ht b {
  display: block;
  font-family: 'Archivo', monospace;
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
}
.ht em { display: block; font-style: italic; font-size: 13px; color: var(--cream); margin-top: 2px; }
.hs:hover .ht { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── HERO TEXT ── */
.htx { position: absolute; bottom: 80px; left: 64px; z-index: 40; }
.htag {
  font-family: 'Archivo', monospace;
  font-size: 10px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  opacity: 0; animation: fup .9s ease .3s forwards;
}
.hh1 {
  font-family: 'DomaineDisp', 'Playfair Display', serif;
  font-size: clamp(60px, 8.5vw, 114px); font-weight: 900; line-height: .88;
  color: var(--cream); margin-bottom: 26px;
  opacity: 0; animation: fup .9s ease .5s forwards;
}
.hh1 em { font-style: italic; color: var(--orange); }
.hsub {
  font-size: 19px; font-weight: 300;
  color: rgba(245,239,224,.65);
  max-width: 420px; line-height: 1.65;
  opacity: 0; animation: fup .9s ease .7s forwards;
}
@keyframes fup {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll hint */
.shi {
  position: absolute; bottom: 38px; left: 64px; z-index: 40;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: fup .9s ease 1s forwards;
}
.shl { width: 42px; height: 1px; background: var(--gold); }
.shi span {
  font-family: 'Archivo', monospace;
  font-size: 9px; letter-spacing: .25em; text-transform: uppercase;
  color: rgba(245,239,224,.45);
}

/* Carousel dots */
.cds { position: absolute; right: 52px; bottom: 80px; z-index: 40; display: flex; flex-direction: column; gap: 10px; }
.cd { width: 2px; height: 22px; background: rgba(245,239,224,.25); cursor: none; transition: background .3s, height .3s; }
.cd.on { background: var(--gold); height: 40px; }
.slbl {
  position: absolute; right: 52px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  z-index: 40;
  font-family: 'Archivo', monospace;
  font-size: 9px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(245,239,224,.4); white-space: nowrap;
}

/* ── SOUND RIPPLE ── */
.rip {
  position: fixed; width: 160px; height: 160px; border-radius: 50%;
  pointer-events: none; z-index: 600;
  background: radial-gradient(circle, rgba(201,168,76,.22) 0%, transparent 70%);
  transform: translate(-50%,-50%) scale(0); opacity: 0;
  transition: transform .75s ease-out, opacity .75s ease-out;
}
.rip.go { transform: translate(-50%,-50%) scale(1); opacity: 1; }

/* ── SOUND INDICATOR ── */
#sind {
  position: fixed; bottom: 32px; right: 32px; z-index: 600;
  background: rgba(19,14,6,.92);
  border: 1px solid rgba(201,168,76,.45);
  padding: 12px 22px;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; transition: opacity .4s; pointer-events: none;
  backdrop-filter: blur(10px);
}
#sind.show { opacity: 1; }
.sbars { display: flex; gap: 3px; align-items: flex-end; height: 18px; }
.sb { width: 3px; background: var(--gold); border-radius: 1px; animation: sba .6s ease-in-out infinite; }
.sb:nth-child(2) { animation-delay: .1s; }
.sb:nth-child(3) { animation-delay: .2s; }
.sb:nth-child(4) { animation-delay: .15s; }
@keyframes sba { 0%,100% { height: 4px; } 50% { height: 18px; } }
#sind span {
  font-family: 'Archivo', monospace;
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}

/* ── SHARED SECTION STYLES ── */
section { padding: 120px 0; }
.ltag {
  font-family: 'Archivo', monospace;
  font-size: 9px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 20px; display: block;
}
.sh2 {
  font-family: 'DomaineDisp', 'Playfair Display', serif;
  font-size: clamp(44px, 5.5vw, 82px); font-weight: 900; line-height: .9;
  color: var(--cream);
}
.sh2 em { font-style: italic; color: var(--gold); }
.sb2 { font-size: 18px; font-weight: 300; line-height: 1.75; color: rgba(245,239,224,.68); max-width: 520px; }

/* ── ABOUT ── */
#about { background: var(--deep2); }
.ai { max-width: 1400px; margin: 0 auto; padding: 0 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.aiw { position: relative; }
.aiw img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.abg {
  position: absolute; bottom: -28px; right: -28px;
  width: 136px; height: 136px;
  background: var(--orange);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.abg .bn { font-family: 'DomaineDisp', serif; font-size: 44px; font-weight: 900; color: #fff; line-height: 1; }
.abg .bs { font-family: 'Archivo', monospace; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.8); }
.atx { display: flex; flex-direction: column; gap: 28px; }
.asts { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 8px; }
.ast { border-top: 1px solid rgba(201,168,76,.28); padding-top: 16px; }
.asn { font-family: 'DomaineDisp', serif; font-size: 40px; font-weight: 700; color: var(--gold); line-height: 1; }
.asd { font-family: 'Archivo', monospace; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,239,224,.45); margin-top: 6px; }

/* ── ROOMS ── */
#rooms { background: var(--deep); }
.ri { max-width: 1400px; margin: 0 auto; padding: 0 64px; }
.rh { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; }
.rg { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.rc { position: relative; overflow: hidden; cursor: none; }
.rc:first-child { grid-column: span 2; grid-row: span 2; }
.rc img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; transition: transform .8s ease, filter .5s; }
.rc:first-child img { min-height: 580px; }
.rc:hover img { transform: scale(1.04); filter: brightness(.55); }
.rov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(19,14,6,.92) 0%, transparent 55%); opacity: 0; transition: opacity .4s; }
.rc:hover .rov { opacity: 1; }
.rif { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; transform: translateY(12px); transition: transform .4s; }
.rc:hover .rif { transform: translateY(0); }
.rn { font-family: 'DomaineDisp', serif; font-size: 24px; font-weight: 700; color: var(--cream); }
.rd { font-family: 'Archivo', monospace; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }

/* ── SPA ── */
#spa { background: var(--deep2); }
.spai { max-width: 1400px; margin: 0 auto; padding: 0 64px; }
.spah { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-bottom: 72px; align-items: center; }
.sisk { position: relative; height: 580px; }
.sm1 { position: absolute; top: 0; left: 0; width: 74%; height: 74%; object-fit: cover; }
.sm2 { position: absolute; bottom: 0; right: 0; width: 62%; height: 63%; object-fit: cover; border: 6px solid var(--deep2); }
.smg { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: rgba(201,168,76,.14); margin-top: 64px; }
.spi { background: var(--deep2); padding: 36px 32px; transition: background .3s; }
.spi:hover { background: rgba(201,168,76,.07); }
.spic { font-size: 28px; margin-bottom: 14px; }
.spin { font-family: 'DomaineDisp', serif; font-size: 21px; font-weight: 700; color: var(--cream); margin-bottom: 8px; }
.spid { font-size: 15px; font-weight: 300; color: rgba(245,239,224,.58); line-height: 1.65; margin-bottom: 14px; }
.spip { font-family: 'Archivo', monospace; font-size: 10px; letter-spacing: .18em; color: var(--gold); }
.spas { color: rgba(245,239,224,.65); font-size: 17px; font-weight: 300; line-height: 1.7; margin-top: 22px; }

/* ── STUDIO ── */
#studio { background: var(--deep); }
.sti { max-width: 1400px; margin: 0 auto; padding: 0 64px; }
.stl { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.stim { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 3px; height: 580px; }
.stim img { width: 100%; height: 100%; object-fit: cover; }
.stim img:first-child { grid-column: span 2; }
.stf { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.stfe { padding: 20px 0; border-bottom: 1px solid rgba(201,168,76,.16); display: flex; gap: 20px; align-items: flex-start; }
.fn { font-family: 'Archivo', monospace; font-size: 10px; letter-spacing: .2em; color: var(--orange); min-width: 28px; margin-top: 3px; }
.ft { font-family: 'DomaineDisp', serif; font-size: 17px; color: var(--cream); }
.fd { font-size: 14px; font-weight: 300; color: rgba(245,239,224,.52); margin-top: 4px; line-height: 1.6; }

/* ── DINING ── */
#dining { background: var(--deep2); }
.dii { max-width: 1400px; margin: 0 auto; padding: 0 64px; }
.dil { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.dii img.dimg { width: 100%; height: 580px; object-fit: cover; }
.dis { display: flex; flex-direction: column; gap: 34px; margin-top: 34px; }
.di { display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: start; }
.dn { font-family: 'DomaineDisp', serif; font-size: 50px; font-weight: 900; color: rgba(201,168,76,.22); line-height: .9; }
.dc h4 { font-family: 'DomaineDisp', serif; font-size: 20px; color: var(--cream); margin-bottom: 6px; }
.dc p { font-size: 15px; font-weight: 300; color: rgba(245,239,224,.56); line-height: 1.65; }

/* ── BOOK / CTA ── */
#book {
  background: var(--orange);
  padding: 120px 64px; text-align: center;
  position: relative;
}
.book-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 320px; opacity: .08;
  pointer-events: none; z-index: 0;
}
.book-inner { position: relative; z-index: 1; }
.bkh {
  font-family: 'DomaineDisp', 'Playfair Display', serif;
  font-size: clamp(54px, 8vw, 108px); font-weight: 900; line-height: .88;
  color: #fff; margin-bottom: 32px;
}
.bkh em { font-style: italic; opacity: .78; }
.bks { font-size: 20px; font-weight: 300; color: rgba(255,255,255,.75); margin-bottom: 16px; line-height: 1.65; }
.cs-note {
  font-family: 'Archivo', monospace;
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.3);
  display: inline-block; padding: 10px 24px; margin-bottom: 44px;
}
.bkb { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.bw {
  font-family: 'Archivo', monospace;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange); background: #fff; border: none;
  padding: 18px 40px; text-decoration: none; cursor: none;
  transition: background .25s, color .25s; display: inline-block;
}
.bw:hover { background: var(--deep); color: #fff; }
.bo {
  font-family: 'Archivo', monospace;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: #fff; background: transparent;
  border: 1.5px solid rgba(255,255,255,.5);
  padding: 18px 40px; text-decoration: none; cursor: none;
  transition: border-color .25s, background .25s; display: inline-block;
}
.bo:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ── FOOTER ── */
footer { background: var(--deep); padding: 80px 64px 52px; border-top: 1px solid rgba(201,168,76,.14); }
.fi { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 64px; }
.fb img { width: 56px; height: auto; margin-bottom: 16px; display: block; }
.fb .fb-name { font-family: 'DomaineDisp', serif; font-size: 16px; letter-spacing: .28em; text-transform: uppercase; color: var(--cream); }
.fb p { font-size: 15px; font-weight: 300; color: rgba(245,239,224,.45); line-height: 1.7; max-width: 280px; margin-top: 12px; }
.fc h5 { font-family: 'Archivo', monospace; font-size: 9px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.fc a { display: block; font-size: 15px; font-weight: 300; color: rgba(245,239,224,.5); text-decoration: none; margin-bottom: 10px; transition: color .2s; cursor: none; }
.fc a:hover { color: var(--cream); }
.fb2 { max-width: 1400px; margin: 52px auto 0; padding-top: 28px; border-top: 1px solid rgba(245,239,224,.07); display: flex; justify-content: space-between; align-items: center; }
.fb2 p { font-family: 'Archivo', monospace; font-size: 9px; letter-spacing: .18em; color: rgba(245,239,224,.28); text-transform: uppercase; }

/* ── SCROLL FADE IN ── */
.fin { opacity: 0; transform: translateY(32px); transition: opacity .9s ease, transform .9s ease; }
.fin.vis { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 22px 32px; }
  nav.sc { padding: 14px 32px; }
  .nm { gap: 20px; }
  section { padding: 90px 0; }
  .ai { padding: 0 32px; gap: 48px; }
  .ri { padding: 0 32px; }
  .rh { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .rh .sb2 { text-align: left !important; max-width: 100%; }
  .spai { padding: 0 32px; }
  .spah { gap: 40px; }
  .sisk { height: 440px; }
  .sti { padding: 0 32px; }
  .stl { gap: 48px; }
  .stim { height: 440px; }
  .dii { padding: 0 32px; }
  #book { padding: 90px 32px; }
  footer { padding: 64px 32px 40px; }
  .fi { gap: 40px; }
}


/* ══════════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── Disable desktop cursor ── */
  #cur, #cur-ring { display: none; }
  body { cursor: auto; }
  a, button { cursor: pointer; }

  /* ── MOBILE: Vertical sidebar banner on the RIGHT ── */
  #cs-banner {
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 36px !important;
    height: 100vh !important;
    padding: 16px 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    z-index: 600 !important;
    border-left: 1px solid rgba(255,255,255,.15) !important;
    border-top: none !important;
  }
  #cs-banner p {
    writing-mode: vertical-rl !important;
    text-orientation: mixed !important;
    transform: rotate(180deg) !important;
    font-size: 7px !important;
    letter-spacing: .16em !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    color: rgba(255,255,255,.85) !important;
    max-width: none !important;
  }
  #cs-banner p em { font-style: normal !important; opacity: 1 !important; }
  .cs-pill { display: none !important; }
  #cs-banner a { display: none !important; }

  /* Push page content away from sidebar */
  body { padding-right: 36px; }

  /* ── Language toggle ── */
  #lang-toggle {
    right: 44px;
    left: auto;
    top: 6px;
    height: 28px;
    min-height: unset;
    padding: 0;
    z-index: 700;
  }
  .lt-btn { font-size: 8px; padding: 0 6px; }

  /* ── Nav — no top offset, banner is on the side now ── */
  nav {
    top: 0 !important;
    right: 36px;
    left: 0;
    padding: 14px 20px;
    align-items: center;
  }
  nav.sc { padding: 10px 20px; top: 0 !important; }
  .nl img { width: 30px; }
  .nl span { font-size: 10px; letter-spacing: .22em; }

  /* Hide desktop nav links */
  .nm { display: none; }
  /* Contact button on mobile — show in menu */
  .nav-contact {
    font-size: 9px;
    padding: 8px 16px;
    border-color: rgba(255,255,255,.25);
  }

  /* Hamburger button */
  #hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 600;
  }
  #hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    border-radius: 1px;
    transition: all .3s ease;
  }
  #hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
  #hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  #hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

  /* Mobile menu overlay — leaves the right sidebar visible */
  .nm.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 36px; bottom: 0;
    background: rgba(19,14,6,.98);
    backdrop-filter: blur(20px);
    padding: 80px 36px 48px;
    z-index: 480;
    gap: 0;
    justify-content: center;
  }
  .nm.open li {
    border-bottom: 1px solid rgba(245,239,224,.07);
  }
  .nm.open a {
    display: block;
    padding: 20px 0;
    font-size: 14px;
    letter-spacing: .2em;
    opacity: .75;
    color: var(--cream);
  }
  .nm.open a:hover, .nm.open a:active { opacity: 1; color: var(--gold); }

  /* ── Hero ── */
  .htx { left: 24px; right: 8px; bottom: 72px; }
  .htag { font-size: 9px; letter-spacing: .2em; margin-bottom: 12px; }
  .hh1 { font-size: clamp(44px, 13vw, 68px); margin-bottom: 16px; }
  .hsub { font-size: 15px; max-width: 100%; line-height: 1.6; }
  .shi { left: 24px; bottom: 32px; }
  .cds { right: 8px; bottom: 72px; }
  .slbl { display: none; }

  /* ── Sections ── */
  section { padding: 64px 0; }
  .ltag { font-size: 8px; margin-bottom: 14px; }
  .sh2 { font-size: clamp(36px, 10vw, 56px); }
  .sb2 { font-size: 15px; max-width: 100%; }

  /* ── About ── */
  .ai {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .aiw img { aspect-ratio: 4/3; }
  .abg {
    width: 90px; height: 90px;
    bottom: -14px; right: -10px;
  }
  .abg .bn { font-size: 28px; }
  .abg .bs { font-size: 6px; }
  .atx { gap: 20px; }
  .asts { grid-template-columns: 1fr 1fr; gap: 14px; }
  .asn { font-size: 28px; }
  .asd { font-size: 8px; }

  /* ── Rooms ── */
  .ri { padding: 0 24px; }
  .rh { margin-bottom: 28px; gap: 14px; }
  .rg {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .rc:first-child { grid-column: span 1; grid-row: span 1; }
  .rc img { min-height: 240px !important; }
  /* Always show room labels on mobile (no hover) */
  .rov { opacity: 1; }
  .rif { transform: translateY(0); }
  .rn { font-size: 20px; }

  /* ── Spa ── */
  .spai { padding: 0 24px; }
  .spah {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 48px;
  }
  .sisk {
    height: 320px;
    order: -1;
  }
  .sm1 { width: 100%; height: 100%; position: relative; display: block; }
  .sm2 { display: none; }
  .smg { grid-template-columns: 1fr; }
  .spas { font-size: 15px; }
  .spin { font-size: 18px; }

  /* ── Studio ── */
  .sti { padding: 0 24px; }
  .stl {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stim {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    order: -1;
  }
  .stim img { height: 220px; }
  .stim img:first-child { grid-column: span 1; }
  .stfe { padding: 16px 0; }
  .ft { font-size: 15px; }

  /* ── Dining ── */
  .dii { padding: 0 24px; }
  .dil {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .dii img.dimg {
    height: 280px;
    order: -1;
  }
  .dis { gap: 24px; margin-top: 24px; }
  .dn { font-size: 36px; }
  .dc h4 { font-size: 17px; }

  /* ── CTA / Book ── */
  #book { padding: 72px 24px; }
  .bkh { font-size: clamp(44px, 13vw, 72px); margin-bottom: 24px; }
  .bks { font-size: 16px; }
  .cs-note { font-size: 9px; padding: 8px 16px; margin-bottom: 32px; }
  .bkb { flex-direction: column; align-items: center; gap: 12px; }
  .bw, .bo { width: 100%; max-width: 320px; text-align: center; padding: 16px 24px; }
  .book-watermark { width: 200px; opacity: .06; }

  /* ── Footer ── */
  footer { padding: 56px 24px 36px; }
  .fi {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }
  .fb {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .fb img { margin-bottom: 0; width: 44px; }
  .fb p { display: none; }
  .fc h5 { margin-bottom: 14px; }
  .fc a { font-size: 13px; margin-bottom: 8px; }
  .fb2 {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-top: 36px;
  }

  /* ── Spa image grid ── */
  div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-template-columns:1fr 1fr 1fr"] img {
    height: 220px !important;
  }
}


/* ══════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
══════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hh1 { font-size: clamp(38px, 12vw, 56px); }
  .htx { left: 20px; right: 20px; bottom: 60px; }
  .fi { grid-template-columns: 1fr; }
  .fb { grid-column: span 1; }
  .asts { grid-template-columns: 1fr 1fr; }
  .smg { grid-template-columns: 1fr; }
}

/* Hamburger hidden on desktop */
#hamburger { display: none; }

/* ── MOBILE: Logo link hint → leads to studio ── */
@media (max-width: 768px) {
  .nl span {
    border-bottom: 1px solid rgba(201,168,76,.4);
    padding-bottom: 1px;
  }
}
