/* ============================================================
   DEKING HOTEL KLCC — "THE VERTICAL HOTEL"
   Concept: the website is the building. You arrive at street
   level, the doors part, and every section is a floor you rise
   through — rooms are a corridor of numbered doors, booking is
   the front desk, the map is the view from the top. Navigation
   is a brass elevator panel that tracks your ascent.
   Identity: grand-hotel deco. Engraved brass (Cinzel), tall
   garamond display (Cormorant), ivory + aubergine + brass.
   ============================================================ */
:root{
  /* Same variable NAMES as the previous build — every carried component
     adopts the new identity purely through these values. */
  --void:        #0B080F;
  --charcoal:    #151019;
  --panel-dark:  #1D1523;
  --purple-deep: #4A1C44;
  --purple-plum: #331132;
  --purple-hot:  #8A5A2B;   /* legacy name — now a bronze warm accent */
  --gold:        #C6A15B;
  --gold-soft:   rgba(198,161,91,.5);
  --gold-bright: #E8CE96;
  --warm-cream:  #F3EDDF;
  --warm-grey:   #EAE1CE;
  --line-line:   #D9CCAF;
  --lavender-soft: #F0E9D8;
  --lavender-dim:  rgba(233,219,186,.78);
  --ink:         #262028;
  --ink-soft:    #6C6055;
  --white:       #FFFFFF;

  --font-deco:    'Cinzel', 'Trajan Pro', 'Georgia', serif;      /* engraved brass */
  --font-serif:   'Cormorant Garamond', 'Georgia', serif;        /* tall display */
  --font-display: 'Cinzel', 'Georgia', serif;                    /* carried UI chrome */
  --font-mono:    'Inter', 'Segoe UI', sans-serif;               /* tracked labels */
  --font-body:    'Inter', 'Segoe UI', sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 14px;
  --shadow-md: 0 20px 50px rgba(11,8,15,.35);
  --shadow-glow: 0 0 0 1px rgba(198,161,91,.3), 0 20px 60px rgba(51,17,50,.4);
  --maxw: 1240px;
  --maxw-wide: 1620px;
  --header-h: 76px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{ margin:0; font-family:var(--font-body); color:var(--ink); background:var(--warm-cream); line-height:1.6; -webkit-font-smoothing:antialiased; overflow-x:hidden; }
body.menu-open,body.pano-lock{ overflow:hidden; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button,input,textarea{ font:inherit; }
button{ cursor:pointer; }
h1,h2,h3,h4{ font-family:var(--font-serif); margin:0; color:var(--purple-plum); font-weight:600; letter-spacing:.005em; }
h1 em,h2 em,h3 em{ font-style:italic; font-weight:500; }
p{ margin:0; }
ul{ margin:0; padding:0; list-style:none; }
:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; border-radius:2px; }
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.skip-link{ position:fixed; top:10px; left:12px; z-index:1000; padding:10px 14px; border-radius:4px; background:#fff; color:var(--purple-plum); font-weight:700; transform:translateY(-160%); transition:transform .16s ease; }
.skip-link:focus{ transform:translateY(0); }
.viewfinder{ display:none !important; }

/* Film-grain veil over everything — the "old print" finish. */
body::after{
  content:""; position:fixed; inset:-40px; z-index:299; pointer-events:none; opacity:.05;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

/* ---------- eyebrow label: diamond ornament + tracked caps ---------- */
.tag{ font-family:var(--font-mono); font-size:.68rem; font-weight:600; letter-spacing:.26em; text-transform:uppercase; color:var(--gold); display:inline-flex; align-items:center; gap:11px; }
.tag::before{ content:"◆"; font-size:.5rem; line-height:1; color:var(--gold); flex-shrink:0; transform:translateY(-1px); }
.tag--dim{ color:var(--ink-soft); }
.tag--dim::before{ color:var(--ink-soft); }
.hairline{ height:1px; background:linear-gradient(90deg, transparent, rgba(198,161,91,.5), transparent); }

.section{ padding:96px 0; position:relative; }
.section--dark{ background:var(--charcoal); color:#fff; }
.section--dark h2,.section--dark h3,.section--dark h4{ color:#fff; }
.section-head{ max-width:680px; margin-bottom:46px; }
.section-head h2{ font-size:clamp(2.2rem,4.2vw,3.3rem); margin-top:14px; line-height:1.1; }
.section-head p{ margin-top:16px; color:var(--ink-soft); font-size:1.03rem; }
.section--dark .section-head p{ color:rgba(255,255,255,.62); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  font-family:var(--font-deco); font-weight:600; font-size:.72rem; letter-spacing:.2em; text-transform:uppercase;
  padding:16px 26px; border-radius:2px; border:1px solid transparent;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease,color .18s ease;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--purple-deep); color:#F5E9CF; box-shadow:0 8px 24px rgba(51,17,50,.35), inset 0 0 0 1px rgba(198,161,91,.35); }
.btn-primary:hover{ background:var(--purple-plum); box-shadow:0 12px 32px rgba(51,17,50,.5), inset 0 0 0 1px rgba(198,161,91,.6); }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--line-line); }
.btn-outline:hover{ border-color:var(--purple-deep); color:var(--purple-deep); }
.btn-glass{ background:rgba(255,255,255,.06); color:#fff; border-color:rgba(255,255,255,.28); backdrop-filter:blur(10px); }
.btn-glass:hover{ background:rgba(255,255,255,.14); border-color:var(--gold-soft); }
.btn-block{ width:100%; }
.placeholder-note{ font-family:var(--font-mono); font-size:.7rem; color:var(--ink-soft); background:var(--warm-grey); border:1px dashed var(--line-line); padding:6px 10px; border-radius:var(--r-sm); display:inline-block; margin-top:8px; letter-spacing:.04em; }
.section--dark .placeholder-note{ background:rgba(255,255,255,.05); border-color:rgba(255,255,255,.18); color:rgba(255,255,255,.55); }

/* ============================================================
   SITEWIDE SCROLL-REVEAL
   ============================================================ */
.reveal{ opacity:0; transform:translateY(26px); transition:opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(22px); transition:opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal-stagger.is-visible > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1){transition-delay:.02s}
.reveal-stagger.is-visible > *:nth-child(2){transition-delay:.08s}
.reveal-stagger.is-visible > *:nth-child(3){transition-delay:.14s}
.reveal-stagger.is-visible > *:nth-child(4){transition-delay:.20s}
.reveal-stagger.is-visible > *:nth-child(5){transition-delay:.26s}
.reveal-stagger.is-visible > *:nth-child(6){transition-delay:.32s}
.reveal-stagger.is-visible > *:nth-child(7){transition-delay:.38s}
.reveal-stagger.is-visible > *:nth-child(8){transition-delay:.44s}
.reveal-stagger.is-visible > *:nth-child(9){transition-delay:.50s}
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .reveal,.reveal-stagger > *{ opacity:1 !important; transform:none !important; transition:none !important; }
  *,*::before,*::after{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
  .arrival-journey{ height:100vh; min-height:640px; }
  .arrival-canvas{ display:none; }
  .arrival-poster{ opacity:1 !important; }
  .arrival-copy--room{ display:none; }
  .arrival-zoom{ transform:none !important; }
}
.scroll-progress{ position:fixed; top:0; left:0; right:0; height:2px; z-index:110; background:rgba(255,255,255,.06); }
.scroll-progress span{ display:block; height:100%; width:0%; background:var(--gold); }

.viewfinder i:nth-child(4){ bottom:0; right:0; border-left:0; border-top:0; }

/* ============================================================
   HEADER — dark glass, sticky
   ============================================================ */
.site-header{ position:sticky; top:0; z-index:100; height:var(--header-h); background:rgba(15,12,19,.72); backdrop-filter:blur(16px) saturate(140%); border-bottom:1px solid rgba(255,255,255,.08); }
.site-header .wrap{ height:100%; display:flex; align-items:center; justify-content:space-between; }
.brand{ display:flex; align-items:center; gap:10px; }
.brand img{ width:154px; height:auto; display:block; }
.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{ font-family:var(--font-display); font-weight:500; font-size:.76rem; letter-spacing:.16em; text-transform:uppercase; color:rgba(255,255,255,.72); transition:color .15s ease; }
.main-nav a:hover{ color:var(--gold); }
.header-actions{ display:flex; align-items:center; gap:12px; }
.lang-switch{ font-family:var(--font-mono); font-weight:600; font-size:.76rem; border:1px solid rgba(255,255,255,.2); border-radius:999px; padding:6px 12px; color:rgba(255,255,255,.7); }
.icon-btn{ width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,.06); color:#fff; border:1px solid rgba(255,255,255,.14); transition:background .15s ease,border-color .15s ease; }
.icon-btn:hover{ background:rgba(255,255,255,.14); border-color:var(--gold-soft); }
.icon-btn svg{ width:18px; height:18px; }
.nav-toggle{ display:none; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius:50%; width:40px; height:40px; align-items:center; justify-content:center; color:#fff; }
.nav-toggle svg{ width:22px; height:22px; }
.mobile-panel{ display:none; position:fixed; inset:var(--header-h) 0 0 0; z-index:99; background:var(--void); padding:28px 24px; overflow-y:auto; }
.mobile-panel.is-open{ display:block; }
.mobile-panel nav{ display:flex; flex-direction:column; gap:2px; }
.mobile-panel nav a{ font-family:var(--font-display); font-weight:600; font-size:1.1rem; color:#fff; padding:15px 4px; border-bottom:1px solid rgba(255,255,255,.1); }
.mobile-panel .btn{ margin-top:22px; }

/* ============================================================
   ARRIVAL SEQUENCE — scroll-controlled zoom from exterior into
   the room. Canvas frame sequence (supplied later) + a live CSS
   scale so the shot keeps "pushing in" even between frames.
   Ships fully wired; renders a designed static state until real
   frames are dropped into assets/frames/.
   ============================================================ */
.arrival-journey{ position:relative; height:320vh; min-height:2000px; background:var(--void); isolation:isolate; }
.arrival-sticky{ position:sticky; top:0; height:100vh; overflow:hidden; background:var(--void); }
.arrival-zoom{ position:absolute; inset:0; width:100%; height:100%; transform:scale(1); transform-origin:52% 46%; will-change:transform; }
.arrival-canvas,.arrival-poster{ position:absolute; inset:0; width:100%; height:100%; display:block; }
.arrival-canvas{ z-index:0; }
.arrival-poster{ z-index:0; object-fit:cover; object-position:58% 42%; opacity:1; transition:opacity .6s ease; }
.frames-ready .arrival-poster{ opacity:0; }
.arrival-vignette{ position:absolute; z-index:1; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse at 50% 58%, transparent 44%, rgba(9,7,12,.5) 100%),
    linear-gradient(180deg, rgba(9,7,12,.55) 0%, transparent 22%, transparent 56%, rgba(9,7,12,.82) 100%);
}

.arrival-route{ position:absolute; z-index:5; top:50%; right:clamp(24px,3vw,44px); transform:translateY(-50%); display:grid; gap:18px; font-family:var(--font-mono); font-size:.63rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase; color:rgba(255,255,255,.38); }
.arrival-route span{ display:flex; align-items:center; justify-content:flex-end; gap:11px; transition:color .3s ease; }
.arrival-route span::after{ content:""; width:22px; height:1px; background:currentColor; transition:width .3s ease; }
.arrival-route span.is-active{ color:var(--gold); }
.arrival-route span.is-active::after{ width:44px; background:var(--gold); }

.arrival-copy{ position:absolute; z-index:4; left:max(24px, calc((100vw - 1240px) / 2)); bottom:13vh; width:min(700px, calc(100% - 48px)); color:#fff; }
.arrival-copy::before{ content:""; position:absolute; z-index:-1; inset:-90px -140px -70px -120px; pointer-events:none;
  background:radial-gradient(ellipse at 38% 68%, rgba(9,7,12,.58) 0%, rgba(9,7,12,.3) 52%, transparent 76%); }
.arrival-copy .tag{ margin-bottom:18px; }
.arrival-copy h1,.arrival-copy h2{ color:#fff; font-size:clamp(2.3rem,4.9vw,4rem); line-height:1.1; font-weight:500; letter-spacing:.005em; text-shadow:0 2px 30px rgba(9,7,12,.45); }
.arrival-copy p{ color:rgba(255,255,255,.8); font-size:1.05rem; margin-top:18px; max-width:480px; text-shadow:0 1px 18px rgba(9,7,12,.5); }
.arrival-actions{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }

.arrival-copy--room{ left:auto; right:max(24px, calc((100vw - 1240px) / 2)); width:min(560px, calc(100% - 48px)); text-align:right; opacity:0; transform:translateY(24px); }
.arrival-copy--room p{ margin-left:auto; }
.arrival-copy--room .arrival-actions{ justify-content:flex-end; }
.mobile-copy{ display:none; }
.arrival-copy-logo{
  display:block; width:min(360px,55%); height:auto; margin:0 0 28px;
  pointer-events:none; opacity:.96;
  filter:drop-shadow(0 12px 28px rgba(8,6,12,.45));
}
.arrival-copy--room .arrival-copy-logo{ margin-left:auto; }

.arrival-hint{ position:absolute; z-index:4; left:50%; bottom:0; transform:translateX(-50%); display:grid; justify-items:center; gap:10px; color:rgba(255,255,255,.72); font-family:var(--font-mono); font-size:.62rem; font-weight:600; letter-spacing:.3em; text-transform:uppercase; padding-left:.3em; }
.arrival-hint::after{ content:""; width:1px; height:52px; background:linear-gradient(180deg, var(--gold), transparent); animation:hintdrop 2.2s cubic-bezier(.4,0,.2,1) infinite; transform-origin:top; }
@keyframes hintdrop{ 0%{ transform:scaleY(0);} 45%{ transform:scaleY(1);} 100%{ transform:scaleY(1); opacity:0; } }
.arrival-hint svg{ display:none; }
@media (prefers-reduced-motion: reduce){ .arrival-hint::after{ animation:none; } }
.arrival-skip{
  position:absolute; z-index:5; top:calc(var(--header-h) + 22px); right:clamp(24px,3vw,44px);
  background:none; border:0; padding:6px 2px; border-radius:0; box-shadow:none;
  font-family:var(--font-mono); font-size:.64rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.6); border-bottom:1px solid rgba(255,255,255,.3); transition:color .2s ease,border-color .2s ease;
}
.arrival-skip:hover{ color:#fff; border-color:var(--gold); transform:none; background:none; }

.arrival-progress{ position:absolute; z-index:5; left:0; right:0; bottom:0; height:2px; background:rgba(255,255,255,.1); }
.arrival-progress span{ display:block; width:0; height:100%; background:var(--gold); }

/* Grouped facilities + amenities list, shared by the dedicated modal
   and the per-room details modal. */
.amenity-group + .amenity-group{ margin-top:18px; }
.amenity-group h5{ display:flex; align-items:center; gap:8px; font-family:var(--font-mono); font-size:.7rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--gold); margin:0 0 9px; }
.amenity-group h5 svg{ width:14px; height:14px; flex-shrink:0; }
.amenity-group ul{ display:flex; flex-wrap:wrap; gap:7px; }
.amenity-group li{ font-size:.79rem; color:rgba(255,255,255,.82); background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.13); border-radius:999px; padding:5px 12px; }
.amenity-lead{ font-size:.86rem; color:rgba(255,255,255,.62); margin-bottom:20px; }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ---------- Room Details modal — overlay, never pushes layout ---------- */
.details-modal{ position:fixed; inset:0; z-index:200; display:flex; align-items:center; justify-content:center; padding:24px; }
.details-modal[hidden]{ display:none; }
.details-modal-backdrop{ position:absolute; inset:0; background:rgba(9,7,12,.82); backdrop-filter:blur(4px); }
.details-modal-panel{ position:relative; z-index:1; width:100%; max-width:560px; max-height:86vh; overflow-y:auto; background:var(--panel-dark); color:#fff; border-radius:var(--r-lg); border:1px solid rgba(255,255,255,.12); box-shadow:var(--shadow-glow); }
.details-modal-panel--wide{ max-width:720px; }
.details-modal-header{ position:sticky; top:0; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:20px 24px; border-bottom:1px solid rgba(255,255,255,.1); background:var(--panel-dark); }
.details-modal-header h3{ font-size:1.1rem; color:#fff; margin:0; }
.details-modal-body{ padding:22px 24px 26px; color:rgba(255,255,255,.72); font-size:.92rem; line-height:1.6; }
.details-modal-body h4{ color:#fff; font-size:.78rem; text-transform:uppercase; letter-spacing:.06em; font-family:var(--font-mono); margin:18px 0 8px; }
.details-modal-body h4:first-child{ margin-top:0; }
.details-modal-body ul{ display:flex; flex-wrap:wrap; gap:8px; }
.details-modal-body li{ font-size:.78rem; border:1px dashed rgba(255,255,255,.25); border-radius:999px; padding:5px 11px; }
   ============================================================ */
/* ============================================================
   ON-SITE AT DEKING — four equal photographic tiles, every one a
   real photo of the building (Dine / Park / Pick up essentials /
   Dine). Data-driven from ONSITE_CATALOG.
   ============================================================ */
.onsite-grid{ display:grid; grid-template-columns:repeat(3,1fr); grid-auto-rows:minmax(265px,auto); gap:18px; }
.onsite-section{ background:linear-gradient(180deg,#f4edf3 0%,#eee5ec 100%); }
.onsite-tile:nth-child(1){ grid-column:span 2; }
.onsite-tile:nth-child(2){ grid-row:span 2; }
.onsite-tile{
  position:relative; border-radius:var(--r-lg); overflow:hidden;
  /* min-width:0 — without it these grid items refuse to shrink below
     their min-content width and push the page sideways under ~380px. */
  min-width:0;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:24px; color:#fff; min-height:265px; background:#000;
  box-shadow:0 18px 44px rgba(33,28,41,.18); border:1px solid rgba(255,255,255,.06);
  transition:transform .3s ease, box-shadow .3s ease;
}
.onsite-tile:hover{ transform:translateY(-3px); box-shadow:0 26px 60px rgba(33,28,41,.28); }
.onsite-tile > *{ position:relative; z-index:2; }
.onsite-tile img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; transition:transform .7s cubic-bezier(.22,.8,.32,1); }
.onsite-tile:hover img{ transform:scale(1.05); }
.onsite-tile::before{
  content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(0deg, rgba(9,7,12,.94) 6%, rgba(9,7,12,.68) 34%, rgba(9,7,12,.16) 68%, rgba(9,7,12,.28) 100%);
}
.onsite-tile .viewfinder{ inset:14px; z-index:2; }
.onsite-kicker{
  display:inline-flex; align-items:center; gap:8px; align-self:flex-start;
  font-family:var(--font-mono); font-size:.64rem; font-weight:600; letter-spacing:.11em; text-transform:uppercase;
  color:var(--gold); background:rgba(15,12,19,.55); border:1px solid rgba(255,255,255,.18);
  padding:6px 12px; border-radius:999px; backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  margin-bottom:12px;
}
.onsite-kicker::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--gold); box-shadow:0 0 8px var(--gold-soft); flex-shrink:0; }
.onsite-tile h3{ color:#fff; font-size:1.25rem; margin:0 0 6px; }
.onsite-tile p{ color:rgba(255,255,255,.78); font-size:.87rem; margin:0; max-width:46ch; }
.onsite-tile .placeholder-note{ margin-top:10px; background:rgba(255,255,255,.08); border-color:rgba(255,255,255,.22); color:rgba(255,255,255,.62); }
.onsite-fact{
  display:inline-flex; align-items:center; gap:8px; align-self:flex-start; margin-top:12px;
  font-family:var(--font-mono); font-size:.72rem; color:#fff;
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.22);
  padding:7px 13px; border-radius:999px; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
}
.onsite-fact svg{ width:14px; height:14px; color:var(--gold); flex-shrink:0; }
.onsite-hours{ display:inline-flex; align-items:center; gap:7px; align-self:flex-start; margin-top:12px; padding:7px 13px; border-radius:999px; background:var(--gold); color:var(--void); font-family:var(--font-mono); font-size:.7rem; font-weight:700; letter-spacing:.03em; }
.onsite-hours::before{ content:""; width:6px; height:6px; border-radius:50%; background:#168b4f; box-shadow:0 0 0 3px rgba(22,139,79,.16); }

/* ============================================================
   MEETING CINEMA — scroll-controlled U-shape -> Classroom -> Banquet
   showcase. Same proven engine pattern as the arrival sequence
   (scroll-linked canvas + nearest-loaded-frame + smoothstep easing),
   but fully separate: own IDs, own classes, own state, own frame
   folders, lazy-initialized only once this section nears the viewport.
   ============================================================ */
.mtg-intro{ padding:88px 0 0; background:var(--warm-grey); }
.mtg-intro .section-head{ margin-bottom:0; }

.mtg-cinema{ position:relative; height:320vh; min-height:1900px; margin-top:48px; background:var(--charcoal); isolation:isolate; }
.mtg-sticky{ position:sticky; top:0; height:100vh; overflow:hidden; background:var(--charcoal); }
.mtg-canvas,.mtg-poster{ position:absolute; inset:0; width:100%; height:100%; display:block; }
.mtg-canvas{ z-index:0; object-fit:cover; }
.mtg-poster{ z-index:0; object-fit:cover; object-position:center 30%; opacity:1; transition:opacity .5s ease; }
.mtg-frames-ready .mtg-poster{ opacity:0; }
.mtg-vignette{ position:absolute; z-index:1; inset:0; pointer-events:none;
  background:
    linear-gradient(90deg, rgba(9,7,12,.55) 0%, rgba(9,7,12,.1) 40%, rgba(9,7,12,.1) 60%, rgba(9,7,12,.55) 100%),
    linear-gradient(180deg, rgba(9,7,12,.35) 0%, transparent 24%, transparent 62%, rgba(9,7,12,.72) 100%);
}
/* Extra darkening layer for the final banquet hold, driven by JS
   opacity as progress approaches the end — this is what lets the CTA
   read clearly without a hard cut to a separate dark block. */
.mtg-cta-scrim{ position:absolute; z-index:2; inset:0; pointer-events:none; opacity:0;
  background:radial-gradient(ellipse 90% 70% at 50% 62%, rgba(9,7,12,.86) 0%, rgba(9,7,12,.55) 55%, rgba(9,7,12,.3) 100%);
}
.mtg-status{ position:absolute; z-index:5; top:calc(var(--header-h) + 18px); left:50%; transform:translateX(-50%); padding:8px 13px; border-radius:999px; background:rgba(15,12,19,.55); color:rgba(255,255,255,.82); font-family:var(--font-mono); font-size:.76rem; backdrop-filter:blur(8px); transition:opacity .3s ease; }
.mtg-frames-ready .mtg-status{ opacity:0; pointer-events:none; }

.mtg-copy{ position:absolute; z-index:4; left:max(24px, calc((100vw - 1240px) / 2)); bottom:16vh; width:min(560px, calc(100% - 48px)); color:#fff; transition:opacity .4s ease; }
.mtg-copy .tag{ margin-bottom:14px; }
.mtg-copy h3{ color:#fff; font-size:clamp(1.7rem,3.4vw,2.5rem); line-height:1.12; margin:0; }
.mtg-copy p{ color:rgba(255,255,255,.75); font-size:1.02rem; margin-top:14px; max-width:460px; }

/* ---------- In-stage enquiry CTA — appears over the held banquet
   frame itself, inside the same sticky stage, instead of a separate
   block below it. ---------- */
.mtg-cta-overlay{ position:absolute; z-index:6; inset:0; display:flex; align-items:center; justify-content:center; text-align:center; padding:24px; opacity:0; transform:translateY(14px); transition:opacity .5s ease, transform .5s ease; pointer-events:none; }
.mtg-cta-overlay.is-visible{ opacity:1; transform:translateY(0); pointer-events:auto; }
.mtg-cta-overlay-inner{ max-width:600px; }
.mtg-cta-overlay .tag{ color:var(--gold); }
.mtg-cta-overlay h3{ color:#fff; font-size:clamp(1.6rem,3vw,2.2rem); margin:14px 0 0; }
.mtg-cta-overlay p{ color:rgba(255,255,255,.75); margin-top:12px; }
.mtg-cta-overlay-actions{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:24px; }

.mtg-indicator{ position:absolute; z-index:5; top:50%; right:max(24px, calc((100vw - 1240px) / 2)); transform:translateY(-50%); display:grid; gap:16px; }
.mtg-indicator-item{ display:flex; align-items:center; justify-content:flex-end; gap:11px; font-family:var(--font-mono); font-size:.74rem; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.42); transition:color .25s ease; }
.mtg-indicator-item::after{ content:""; width:20px; height:1px; background:currentColor; transition:width .25s ease; }
.mtg-indicator-item.is-active{ color:var(--gold); }
.mtg-indicator-item.is-active::after{ width:38px; box-shadow:0 0 6px var(--gold-soft); }

.mtg-progress{ position:absolute; z-index:5; left:0; right:0; bottom:0; height:2px; background:rgba(255,255,255,.1); }
.mtg-progress span{ display:block; width:0; height:100%; background:var(--gold); }

/* ---------- Reduced-motion / error fallback ONLY. Hidden by default —
   the cinematic container is what visitors see on a normal visit.
   This only appears when JS explicitly adds .mtg-static (reduced
   motion, or frame loading genuinely failing). ---------- */
.mtg-fallback{ display:none; padding:56px 0 64px; background:var(--warm-grey); }
.mtg-static .mtg-fallback{ display:block; }
.mtg-static .mtg-cinema{ display:none; }
.mtg-fallback-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.mtg-fallback-card{ border-radius:var(--r-lg); overflow:hidden; background:var(--charcoal); box-shadow:var(--shadow-md); }
.mtg-fallback-card img{ width:100%; aspect-ratio:3/4; object-fit:cover; display:block; }
.mtg-fallback-card-body{ padding:20px; color:#fff; }
.mtg-fallback-card-body .tag{ margin-bottom:8px; }
.mtg-fallback-card-body h4{ color:#fff; font-size:1.05rem; margin:0 0 6px; }
.mtg-fallback-card-body p{ color:rgba(255,255,255,.68); font-size:.86rem; margin:0; }
.mtg-fallback-cta{ margin-top:36px; text-align:center; }
.mtg-fallback-cta-actions{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:18px; }

/* ============================================================
   EXPLORE KLCC — immersive map stage.
   Structurally new: the map is no longer a pane inside a two-column
   card. It IS the stage — a full-bleed dark band, matching the room
   explorer's treatment. Categories are a stage-level segmented
   control that sits above it, and the locations are a horizontal
   glass card rail floating across the bottom of the map itself,
   each card carrying its own route link.
   ============================================================ */
.location-section{ background:var(--warm-grey); padding-bottom:76px; }
.location-section .section-head{ margin-bottom:26px; }

.klcc-switch{ display:inline-flex; gap:6px; padding:6px; border-radius:999px; background:var(--white); border:1px solid var(--line-line); box-shadow:0 6px 18px rgba(33,28,41,.06); }
.klcc-switch-btn{
  display:inline-flex; align-items:center; gap:7px; background:transparent; border:0;
  font-family:var(--font-mono); font-size:.72rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  color:var(--ink-soft); padding:10px 18px; border-radius:999px;
  transition:background .18s ease, color .18s ease;
}
.klcc-switch-btn svg{ width:14px; height:14px; flex-shrink:0; }
.klcc-switch-btn:hover:not(.is-active){ background:var(--lavender-soft); color:var(--purple-deep); }
.klcc-switch-btn.is-active{ background:var(--purple-deep); color:#fff; box-shadow:0 6px 16px rgba(75,30,69,.32); }

.klcc-stage{
  position:relative; width:100%; margin-top:26px;
  height:clamp(470px, 66vh, 660px);
  background:var(--void); overflow:hidden; isolation:isolate;
  border-top:1px solid rgba(201,164,103,.22); border-bottom:1px solid rgba(201,164,103,.22);
}
.klcc-map{ position:absolute; inset:0; z-index:0; }
.klcc-map iframe{ width:100%; height:100%; border:0; display:block; filter:grayscale(.08) contrast(1.03); }
.klcc-map-loading{ position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; background:var(--void); color:rgba(255,255,255,.55); font-family:var(--font-mono); font-size:.76rem; transition:opacity .45s ease; }
.klcc-map-loading .spin{ width:26px; height:26px; border-radius:50%; border:2.5px solid rgba(255,255,255,.18); border-top-color:var(--gold); animation:mfl-spin .8s linear infinite; }
@keyframes mfl-spin{ to{ transform:rotate(360deg); } }
.klcc-stage.is-loaded .klcc-map-loading{ opacity:0; pointer-events:none; }

/* Top chrome — pinned to the RIGHT so it never fights Google's own
   place card, which always renders top-left inside the embed. */
.klcc-stage-top{ position:absolute; z-index:3; top:16px; right:clamp(16px,4vw,40px); display:flex; flex-direction:column; align-items:flex-end; gap:8px; max-width:min(360px, 70%); }
.klcc-chip{
  display:inline-flex; align-items:center; gap:9px; padding:9px 14px; border-radius:999px;
  background:rgba(15,12,19,.68); border:1px solid rgba(255,255,255,.18); backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  font-family:var(--font-mono); font-size:.71rem; color:rgba(255,255,255,.86); text-align:left; line-height:1.35;
}
.klcc-chip .dot{ width:6px; height:6px; border-radius:50%; background:var(--gold); box-shadow:0 0 8px var(--gold-soft); flex-shrink:0; }
.klcc-chip svg{ width:14px; height:14px; color:var(--gold); flex-shrink:0; }
a.klcc-chip{ transition:border-color .18s ease, background .18s ease; }
a.klcc-chip:hover{ border-color:var(--gold-soft); background:rgba(15,12,19,.86); }

/* The location rail — a horizontal deck of glass cards floating over
   the lower band of the map. */
.klcc-rail-wrap{
  position:absolute; z-index:3; left:0; right:0; bottom:0; padding-top:74px;
  background:linear-gradient(0deg, rgba(9,7,12,.95) 26%, rgba(9,7,12,.72) 62%, rgba(9,7,12,0) 100%);
}
.klcc-rail{
  display:flex; gap:13px; overflow-x:auto; overflow-y:hidden;
  padding:2px clamp(16px,4vw,40px) 26px; scroll-snap-type:x proximity;
  scrollbar-width:thin; scrollbar-color:rgba(255,255,255,.28) transparent;
  -webkit-overflow-scrolling:touch;
}
.klcc-rail::-webkit-scrollbar{ height:6px; }
.klcc-rail::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.24); border-radius:999px; }
.klcc-card{
  flex:0 0 clamp(228px, 25vw, 280px); scroll-snap-align:start;
  display:flex; flex-direction:column; border-radius:16px; overflow:hidden;
  background:rgba(24,18,32,.62); border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(16px) saturate(130%); -webkit-backdrop-filter:blur(16px) saturate(130%);
  transition:transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.klcc-card:hover{ transform:translateY(-3px); border-color:rgba(255,255,255,.3); }
.klcc-card.is-active{
  background:linear-gradient(160deg, rgba(75,30,69,.88), rgba(24,18,32,.82));
  border-color:var(--gold); box-shadow:0 16px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(201,164,103,.35);
}
.klcc-card-main{ display:flex; align-items:flex-start; gap:11px; text-align:left; background:none; border:0; padding:15px 15px 12px; width:100%; flex:1; }
.klcc-card-ic{ width:34px; height:34px; border-radius:10px; background:rgba(255,255,255,.09); color:var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.klcc-card.is-active .klcc-card-ic{ background:rgba(201,164,103,.18); }
.klcc-card-ic svg{ width:17px; height:17px; }
.klcc-card-body{ min-width:0; flex:1; }
.klcc-card-body strong{ display:block; font-family:var(--font-display); font-size:.9rem; font-weight:600; color:#fff; line-height:1.25; }
.klcc-card-body span{ display:block; font-size:.76rem; color:rgba(255,255,255,.6); margin-top:3px; line-height:1.4;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; min-height:2.1em; }
.klcc-card-route{
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  margin:0 12px 12px; padding:8px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.05);
  font-family:var(--font-mono); font-size:.66rem; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.82);
  transition:background .18s ease, border-color .18s ease, color .18s ease;
}
.klcc-card-route svg{ width:13px; height:13px; flex-shrink:0; }
.klcc-card-route:hover{ background:var(--purple-deep); border-color:var(--gold-soft); color:#fff; }
.klcc-card-route.is-reserved{ visibility:hidden; pointer-events:none; }
.klcc-note{ margin-top:20px; font-size:.8rem; color:var(--ink-soft); font-style:italic; }
/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ max-width:820px; }
.faq-item{ border-bottom:1px solid var(--line-line); }
.faq-item summary{ list-style:none; cursor:pointer; padding:22px 4px; display:flex; align-items:center; justify-content:space-between; gap:16px; font-family:var(--font-serif); font-weight:600; font-size:1.14rem; color:var(--purple-plum); }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .plus{ width:24px; height:24px; border-radius:50%; background:var(--warm-grey); color:var(--purple-deep); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1.05rem; transition:transform .2s ease; }
.faq-item[open] summary .plus{ transform:rotate(45deg); }
.faq-item p{ padding:0 4px 22px; color:var(--ink-soft); font-size:.95rem; max-width:680px; }

/* ============================================================
   CONTACT + FOOTER
   ============================================================ */
.contact-cta{ background:var(--void); color:#fff; position:relative; overflow:hidden; }
.contact-cta::before{ content:""; position:absolute; inset:0; background:radial-gradient(circle at 15% 20%, rgba(124,58,237,.14), transparent 45%), radial-gradient(circle at 85% 80%, rgba(201,164,103,.1), transparent 40%); pointer-events:none; }
.contact-cta .wrap{ position:relative; display:grid; grid-template-columns:.9fr 1.1fr; gap:52px; align-items:start; }
.contact-cta h2{ color:#fff; font-size:clamp(1.6rem,3vw,2.2rem); }
.contact-cta p{ color:rgba(255,255,255,.65); margin-top:12px; max-width:460px; }
.contact-methods{ display:flex; flex-direction:column; gap:12px; }
.contact-method{ display:flex; align-items:center; gap:14px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); border-radius:var(--r-md); padding:16px 18px; transition:background .2s ease, border-color .2s ease; }
.contact-method:hover{ background:rgba(255,255,255,.09); border-color:var(--gold-soft); }
.contact-method .ic{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.contact-method .ic svg{ width:18px; height:18px; color:var(--gold); }
.contact-method small{ font-family:var(--font-mono); font-size:.68rem; color:rgba(255,255,255,.5); display:block; text-transform:uppercase; letter-spacing:.06em; }
.contact-method strong{ font-family:var(--font-display); font-size:.94rem; overflow-wrap:anywhere; }
.contact-copy .contact-methods{ margin-top:28px; }
.contact-form{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:16px; padding:28px; border-radius:24px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14); box-shadow:0 24px 60px rgba(0,0,0,.24); backdrop-filter:blur(12px); }
.contact-field{ display:flex; flex-direction:column; gap:7px; min-width:0; }
.contact-field--full{ grid-column:1/-1; }
.contact-field label{ font-family:var(--font-mono); font-size:.69rem; letter-spacing:.07em; text-transform:uppercase; color:rgba(255,255,255,.66); }
.contact-field input,.contact-field textarea{ width:100%; border:1px solid rgba(255,255,255,.18); border-radius:12px; background:rgba(9,7,12,.42); color:#fff; padding:13px 14px; outline:none; transition:border-color .18s ease,box-shadow .18s ease; }
.contact-field textarea{ min-height:142px; resize:vertical; }
.contact-field input::placeholder,.contact-field textarea::placeholder{ color:rgba(255,255,255,.34); }
.contact-field input:focus,.contact-field textarea:focus{ border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,164,103,.13); }
.contact-form-actions{ grid-column:1/-1; display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.contact-form-note{ margin:0 !important; font-size:.75rem !important; color:rgba(255,255,255,.45) !important; }
.contact-form-note a{ color:rgba(255,255,255,.74); text-decoration:underline; text-underline-offset:2px; }
.contact-form-status{ grid-column:1/-1; min-height:1.2em; margin:0 !important; color:var(--gold) !important; font-family:var(--font-mono); font-size:.74rem !important; }
.contact-form-status.is-success{ color:#9ee8bd !important; }
.contact-form-status.is-error{ color:#ffb7b7 !important; }
.contact-form button[disabled]{ opacity:.66; cursor:wait; }
.contact-honeypot{ position:absolute !important; left:-10000px !important; top:auto !important; width:1px !important; height:1px !important; overflow:hidden !important; opacity:0 !important; pointer-events:none !important; }

.site-footer{ background:var(--void); color:rgba(255,255,255,.6); padding:52px 0 26px; border-top:1px solid rgba(255,255,255,.08); }
.footer-grid{ display:grid; grid-template-columns:1.5fr 1fr 1fr 1fr; gap:40px; }
.footer-brand img{ width:228px; height:auto; margin-bottom:14px; display:block; }
.footer-brand p{ font-size:.84rem; color:rgba(255,255,255,.42); max-width:260px; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{ width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; }
.footer-social svg{ width:14px; height:14px; }
.footer-col h5{ font-family:var(--font-mono); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; color:rgba(255,255,255,.4); margin-bottom:16px; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:.87rem; color:rgba(255,255,255,.65); }
.footer-col a:hover{ color:#fff; }
.footer-bottom{ margin-top:44px; padding-top:22px; border-top:1px solid rgba(255,255,255,.08); display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; font-family:var(--font-mono); font-size:.72rem; color:rgba(255,255,255,.4); }
.footer-bottom a{ color:rgba(255,255,255,.55); }

.whatsapp-fab{ position:fixed; right:20px; bottom:20px; z-index:90; width:56px; height:56px; border-radius:50%; background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 10px 30px rgba(0,0,0,.3); transition:transform .15s ease; }
.whatsapp-fab:hover{ transform:scale(1.06); }
.whatsapp-fab svg{ width:27px; height:27px; color:#fff; }
.sticky-book-bar{ display:none; position:fixed; left:0; right:0; bottom:0; z-index:95; background:var(--void); border-top:1px solid rgba(255,255,255,.12); box-shadow:0 -10px 24px rgba(0,0,0,.3); padding:12px 16px; align-items:center; justify-content:space-between; gap:12px; }
.sticky-book-bar .info{ display:flex; flex-direction:column; }
.sticky-book-bar .info strong{ font-family:var(--font-display); font-size:.86rem; color:#fff; }
.sticky-book-bar .info span{ font-family:var(--font-mono); font-size:.68rem; color:rgba(255,255,255,.5); }

/* ============================================================
   360° PANORAMA MODAL
   ============================================================ */
.pano-modal{ position:fixed; inset:0; z-index:200; display:flex; align-items:center; justify-content:center; padding:24px; }
.pano-modal[hidden]{ display:none; }
.pano-modal-backdrop{ position:absolute; inset:0; background:rgba(9,7,12,.85); backdrop-filter:blur(4px); }
.pano-modal-panel{ position:relative; z-index:1; width:100%; max-width:980px; max-height:92vh; overflow:hidden; display:flex; flex-direction:column; background:var(--panel-dark); color:#fff; border-radius:var(--r-lg); border:1px solid rgba(255,255,255,.12); box-shadow:var(--shadow-glow); }
.pano-modal-header{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:18px 22px; border-bottom:1px solid rgba(255,255,255,.1); flex-shrink:0; }
.pano-modal-header h3{ font-size:1.05rem; color:#fff; }
.pano-close-btn{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.08); color:#fff; display:flex; align-items:center; justify-content:center; flex-shrink:0; border:1px solid rgba(255,255,255,.14); transition:background .15s ease; }
.pano-close-btn:hover{ background:rgba(255,255,255,.18); }
.pano-viewer-wrap{ position:relative; width:100%; aspect-ratio:16/9; background:var(--void); flex-shrink:1; min-height:0; }
.pano-viewer{ position:absolute; inset:0; width:100%; height:100%; }
.pano-state{ position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; background:var(--void); color:#fff; text-align:center; padding:24px; }
.pano-state[hidden]{ display:none; }
.pano-spinner{ width:32px; height:32px; border-radius:50%; border:3px solid rgba(255,255,255,.18); border-top-color:var(--gold); animation:pano-spin .8s linear infinite; }
@keyframes pano-spin{ to{ transform:rotate(360deg);} }
.pano-error-actions{ display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-top:4px; }
.pano-modal-footer{ padding:18px 22px 22px; border-top:1px solid rgba(255,255,255,.1); flex-shrink:0; display:flex; flex-wrap:wrap; align-items:center; gap:14px 18px; }
.pano-instructions{ font-family:var(--font-mono); font-size:.78rem; color:rgba(255,255,255,.5); flex:1 1 220px; margin:0; }
.pano-disclaimer{ width:100%; font-size:.74rem; color:rgba(255,255,255,.4); font-style:italic; margin:0; }

@media (max-width:640px){
  .pano-modal{ padding:0; }
  .pano-modal-panel{ max-height:100vh; height:100%; border-radius:0; }
  .pano-viewer-wrap{ aspect-ratio:auto; flex:1 1 auto; }
  .pano-modal-footer{ padding:16px; }
  .pano-instructions{ flex-basis:100%; }
}
/* ============================================================
   ROOMS CHAPTER — dark, continuous with the cinematic ending.
   Houses the section intro, the Room Explorer, and booking.
   ============================================================ */
.rooms-section{
  position:relative; z-index:5; margin-top:-10vh;
  border-radius:32px 32px 0 0; background:var(--charcoal); color:#fff;
  padding-top:0; box-shadow:0 -40px 90px rgba(0,0,0,.25); overflow:hidden;
  display:flex; flex-direction:column;
}

/* ---------- Room Explorer — full-bleed dark band (like the other dark
   chapters on the page), not a floating card, so it reads as the next
   part of the page rather than an unrelated widget dropped in. ---------- */
.explorer{
  position:relative; z-index:1; width:100%; order:1;
  margin-top:0; padding:0; overflow:hidden;
  background:var(--charcoal);
}
.explorer-ambient{ position:absolute; inset:0; z-index:0; }
.explorer-ambient-img{ position:absolute; inset:-8%; background-size:cover; background-position:center; filter:blur(55px) brightness(.4) saturate(1.15); transform:scale(1.1); transition:opacity .7s ease; opacity:0; }
.explorer-ambient-img.is-active{ opacity:1; }
.explorer-scrim{ position:absolute; inset:0; z-index:0; background:linear-gradient(180deg, rgba(15,12,19,.25), var(--charcoal) 88%); }
/* Hexagon as the SECTION's own visual language — a honeycomb texture
   behind everything — rather than clipping the room photos themselves. */
.explorer-hexfield{
  position:absolute; inset:0; z-index:0; opacity:.5; pointer-events:none;
  background-image:
    linear-gradient(30deg, rgba(201,164,103,.07) 12%, transparent 12.5%, transparent 87%, rgba(201,164,103,.07) 87.5%, rgba(201,164,103,.07)),
    linear-gradient(150deg, rgba(201,164,103,.07) 12%, transparent 12.5%, transparent 87%, rgba(201,164,103,.07) 87.5%, rgba(201,164,103,.07)),
    linear-gradient(30deg, rgba(201,164,103,.07) 12%, transparent 12.5%, transparent 87%, rgba(201,164,103,.07) 87.5%, rgba(201,164,103,.07)),
    linear-gradient(150deg, rgba(201,164,103,.07) 12%, transparent 12.5%, transparent 87%, rgba(201,164,103,.07) 87.5%, rgba(201,164,103,.07)),
    linear-gradient(60deg, rgba(201,164,103,.055) 25%, transparent 25.5%, transparent 75%, rgba(201,164,103,.055) 75%, rgba(201,164,103,.055)),
    linear-gradient(60deg, rgba(201,164,103,.055) 25%, transparent 25.5%, transparent 75%, rgba(201,164,103,.055) 75%, rgba(201,164,103,.055));
  background-size:64px 112px; background-position:0 0, 0 0, 32px 56px, 32px 56px, 0 0, 32px 56px;
  mask-image:radial-gradient(ellipse 80% 70% at 50% 30%, black 0%, transparent 75%);
}

/* One calm, editorial room browser inside the explorer. The former
   miniature-card directory has been removed so the large room image
   and its information panel remain the visual focus. */
.explorer-intro{
  position:relative; z-index:1; max-width:var(--maxw-wide); margin:0 auto;
  padding:76px 32px 34px; display:grid; grid-template-columns:minmax(0,.78fr) minmax(520px,1.22fr);
  gap:clamp(42px,6vw,86px); align-items:end;
}
.explorer-intro-copy h2{ color:#fff; font-size:clamp(2rem,4vw,3.25rem); margin:10px 0 14px; }
.explorer-intro-copy p{ max-width:560px; color:rgba(255,255,255,.64); font-size:1rem; }
.explorer-browser{ min-width:0; border-top:1px solid rgba(255,255,255,.16); border-bottom:1px solid rgba(255,255,255,.16); padding:18px 0 20px; }
.explorer-browser-head{ display:flex; align-items:center; justify-content:space-between; gap:18px; margin-bottom:11px; }
.explorer-browser-head span{ font-family:var(--font-mono); font-size:.64rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--gold); }
.explorer-browser-head strong{ font-family:var(--font-mono); font-size:.64rem; font-weight:500; letter-spacing:.08em; text-transform:uppercase; color:rgba(255,255,255,.42); }
.room-filterbar{ display:flex; flex-wrap:wrap; gap:4px 22px; margin:0 0 18px; }
.room-filter{
  position:relative; padding:5px 0 8px; border:0; border-bottom:1px solid transparent; border-radius:0;
  background:transparent; color:rgba(255,255,255,.56); box-shadow:none;
  font-family:var(--font-display); font-size:.83rem; font-weight:600;
  transition:color .18s ease,border-color .18s ease;
}
.room-filter:hover{ color:#fff; }
.room-filter.is-active{ color:var(--gold); border-bottom-color:var(--gold); }
.explorer-select-label{ display:block; font-family:var(--font-mono); font-size:.58rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.38); margin-bottom:7px; }
.explorer-select-shell{ position:relative; }
.explorer-select-shell::after{
  content:""; position:absolute; top:50%; right:17px; width:9px; height:9px; pointer-events:none;
  border-right:1.5px solid var(--gold); border-bottom:1.5px solid var(--gold); transform:translateY(-70%) rotate(45deg);
}
.explorer-room-select{
  width:100%; min-height:52px; appearance:none; padding:0 48px 0 16px;
  border:1px solid rgba(255,255,255,.18); border-radius:12px;
  background:rgba(255,255,255,.055); color:#fff;
  font-family:var(--font-display); font-size:1rem; font-weight:600;
  outline:none; transition:border-color .2s ease,background .2s ease,box-shadow .2s ease;
}
.explorer-room-select:hover{ border-color:rgba(201,164,103,.55); background:rgba(255,255,255,.08); }
.explorer-room-select:focus-visible{ border-color:var(--gold); box-shadow:0 0 0 3px rgba(201,164,103,.16); }
.explorer-room-select option{ background:#211a29; color:#fff; }

/* ---------- Two-column room browser ----------
   Left: a large gallery stage (one dominant photograph, circular
   arrows, in-image 360 control, position counter) over a labelled
   thumbnail grid of all 12 categories.
   Right: a dark information panel carrying the category badge, name,
   specifications, actions, confirmed stay facts and the hotel-wide
   in-room amenity columns.
   Every zone in both columns has a reserved size and both column
   heights are pure functions of viewport WIDTH — so the section
   height never changes with room content, name length, TBC specs,
   tag count or photo dimensions. */
/* The explorer runs wider than the site's 1240px text column — it is a
   full-bleed feature band, and at 1240 the two columns read as a small
   square block floating in the middle of a very wide screen. */
.explorer-inner{
  position:relative; z-index:1; max-width:var(--maxw-wide); margin:0 auto; padding:0 32px 44px;
  display:grid; grid-template-columns:1.12fr .88fr; gap:30px; align-items:stretch;
}

/* ---- left: gallery ---- */
.explorer-gallery{ display:flex; flex-direction:column; gap:14px; min-width:0; }
/* 16:10 — a wide, landscape stage. Wider than the photographs' native
   4:3, so some ceiling and floor is trimmed, steered per room by
   imagePosition. */
.explorer-stage{
  position:relative; width:100%; aspect-ratio:16/10;
  border-radius:16px; overflow:hidden; background:var(--panel-dark);
  border:1px solid rgba(201,164,103,.26); box-shadow:0 30px 70px rgba(0,0,0,.55);
}
.explorer-track{ position:absolute; inset:0; touch-action:pan-y; outline:none; }
.explorer-slide{
  position:absolute; inset:0; opacity:0; pointer-events:none;
  transition:opacity .55s ease;
}
.explorer-slide img{ width:100%; height:100%; object-fit:cover; display:block; }
/* A slow cinematic settle on every newly shown photograph. */
.explorer-slide.is-active img{ animation:stagezoom 9s cubic-bezier(.16,.6,.3,1) forwards; }
@keyframes stagezoom{ from{ transform:scale(1.07); } to{ transform:scale(1); } }
@media (prefers-reduced-motion: reduce){ .explorer-slide.is-active img{ animation:none; } }
.explorer-slide.is-active{ opacity:1; pointer-events:auto; z-index:2; }
.explorer-slide.is-placeholder{
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px;
  color:rgba(255,255,255,.4); text-align:center; padding:20px;
  background:repeating-linear-gradient(135deg, rgba(255,255,255,.05), rgba(255,255,255,.05) 14px, rgba(255,255,255,.015) 14px, rgba(255,255,255,.015) 15px);
}
.explorer-slide.is-placeholder svg{ width:36px; height:36px; opacity:.6; }
.explorer-stage-scrim{
  position:absolute; inset:0; z-index:3; pointer-events:none;
  background:linear-gradient(0deg, rgba(10,7,14,.72) 0%, rgba(10,7,14,.16) 22%, rgba(10,7,14,0) 46%, rgba(10,7,14,0) 74%, rgba(10,7,14,.34) 100%);
}
.explorer-stage .viewfinder{ inset:12px; z-index:4; }

.explorer-kicker-chip{
  position:absolute; z-index:5; top:14px; left:14px;
  display:inline-flex; align-items:center; gap:8px;
  font-family:var(--font-mono); font-size:.67rem; font-weight:600; letter-spacing:.11em; text-transform:uppercase;
  color:var(--gold); background:rgba(15,12,19,.62); border:1px solid rgba(255,255,255,.18);
  padding:7px 13px; border-radius:999px; backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
}
.explorer-kicker-chip::before{ content:""; width:6px; height:6px; border-radius:50%; background:var(--gold); box-shadow:0 0 8px var(--gold-soft); flex-shrink:0; }

.explorer-counter{
  position:absolute; z-index:5; left:50%; bottom:14px; transform:translateX(-50%);
  font-family:var(--font-serif); font-style:italic; font-size:1rem; letter-spacing:.1em; color:rgba(255,255,255,.95);
  text-shadow:0 1px 12px rgba(9,7,12,.8); font-variant-numeric:tabular-nums;
}
.explorer-provisional{
  position:absolute; z-index:5; left:14px; bottom:14px;
  font-family:var(--font-mono); font-size:.62rem; letter-spacing:.03em; color:var(--lavender-dim);
  background:rgba(15,12,19,.6); border:1px solid rgba(255,255,255,.16);
  padding:5px 11px; border-radius:999px; backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
}
.explorer-provisional[hidden]{ display:none; }

/* Circular gallery arrows, sitting on the photograph itself */
.explorer-arrow{
  position:absolute; top:50%; z-index:6; width:46px; height:46px; border-radius:50%;
  background:rgba(15,12,19,.55); border:1px solid rgba(255,255,255,.26); color:#fff;
  display:flex; align-items:center; justify-content:center; transform:translateY(-50%);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.explorer-arrow:hover{ background:var(--purple-deep); border-color:var(--gold); transform:translateY(-50%) scale(1.07); }
.explorer-arrow svg{ width:20px; height:20px; }
.explorer-arrow--prev{ left:14px; }
.explorer-arrow--next{ right:14px; }

/* ---------- The 360 action: a gold-ringed circular medallion. ---------- */
.explorer-360{
  position:absolute; top:14px; right:14px; z-index:6; pointer-events:auto;
  width:76px; height:76px; padding:0; border-radius:50%;
  border:1px solid var(--gold); background:rgba(13,10,18,.58);
  backdrop-filter:blur(12px) saturate(130%); -webkit-backdrop-filter:blur(12px) saturate(130%);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 5px rgba(201,164,103,.14), 0 14px 34px rgba(0,0,0,.4);
  transition:transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.explorer-360[hidden]{ display:none; }
.explorer-360:hover{ transform:translateY(-3px); background:rgba(52,20,47,.75); box-shadow:0 0 0 7px rgba(201,164,103,.2), 0 18px 40px rgba(0,0,0,.5); }
.e360-inner{ position:relative; z-index:2; display:grid; justify-items:center; gap:2px; line-height:1; }
.e360-inner svg{ width:19px; height:19px; color:var(--gold); }
.e360-inner b{ font-family:var(--font-display); font-weight:600; font-size:.72rem; color:#fff; letter-spacing:.05em; }
.e360-inner i{ font-family:var(--font-display); font-style:normal; font-size:.48rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase; color:rgba(255,255,255,.66); padding-left:.24em; }
.e360-pulse{ position:absolute; inset:-6px; z-index:1; border-radius:50%; border:1px solid rgba(201,164,103,.55); animation:e360pulse 2.8s ease-out infinite; }
@keyframes e360pulse{ 0%{ transform:scale(.9); opacity:.7; } 70%{ transform:scale(1.18); opacity:0; } 100%{ opacity:0; } }
.e360-label{
  position:absolute; right:calc(100% + 8px); top:50%; z-index:2;
  transform:translateY(-50%) translateX(8px); opacity:0; pointer-events:none;
  white-space:nowrap; font-family:var(--font-mono); font-size:.65rem; letter-spacing:.08em; text-transform:uppercase;
  color:#fff; background:rgba(13,10,18,.78); border:1px solid var(--gold-soft); border-radius:999px; padding:6px 12px;
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  transition:opacity .2s ease, transform .2s ease;
}
.explorer-360:hover .e360-label,
.explorer-360:focus-visible .e360-label{ opacity:1; transform:translateY(-50%) translateX(0); }
@media (prefers-reduced-motion: reduce){ .e360-pulse{ animation:none; opacity:.25; } .explorer-slide{ transition:opacity .01ms; } }

/* ---- filmstrip rail: all 12 categories under the stage ---- */
.explorer-rail{
  display:flex; gap:10px; overflow-x:auto; overflow-y:hidden; padding:2px 2px 8px;
  scrollbar-width:thin; scrollbar-color:rgba(255,255,255,.25) transparent;
  -webkit-overflow-scrolling:touch; scroll-snap-type:x proximity;
}
.explorer-rail::-webkit-scrollbar{ height:5px; }
.explorer-rail::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.22); border-radius:999px; }
.explorer-rail .explorer-thumb{ flex:0 0 108px; scroll-snap-align:start; }
.explorer-rail .explorer-thumb-label{ display:none; }
.explorer-rail .explorer-thumb.is-dimmed{ opacity:.22; pointer-events:none; }

/* legacy thumbnail grid (unused markup) */
.explorer-thumbs{ display:none !important; }
.explorer-thumb{
  display:flex; flex-direction:column; gap:6px; padding:0; background:none; border:0; text-align:left; min-width:0;
}
.explorer-thumb-img{
  position:relative; width:100%; aspect-ratio:4/3; overflow:hidden; border-radius:10px;
  border:2px solid transparent; background:rgba(255,255,255,.06); opacity:.62; filter:saturate(.75);
  transition:opacity .2s ease, filter .2s ease, border-color .2s ease, transform .2s ease;
}
.explorer-thumb-img img{ width:100%; height:100%; object-fit:cover; display:block; }
.explorer-thumb-img.is-empty{ display:flex; align-items:center; justify-content:center; }
.explorer-thumb-img.is-empty svg{ width:18px; height:18px; color:rgba(255,255,255,.35); }
.explorer-thumb:hover .explorer-thumb-img{ opacity:.9; transform:translateY(-2px); }
.explorer-thumb.is-active .explorer-thumb-img{ opacity:1; filter:saturate(1); border-color:var(--gold); box-shadow:0 0 0 1px rgba(201,164,103,.4), 0 10px 24px rgba(0,0,0,.4); }
.explorer-thumb-label{
  font-family:var(--font-display); font-size:.61rem; font-weight:500; line-height:1.3;
  color:rgba(255,255,255,.55); height:2.6em; overflow:hidden;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical;
  transition:color .2s ease;
}
.explorer-thumb.is-active .explorer-thumb-label{ color:#fff; }

/* ---- right: information panel ---- */
.explorer-panel{
  position:relative; display:flex; flex-direction:column; min-width:0; overflow:hidden;
  background:linear-gradient(168deg, rgba(62,23,56,.6) 0%, rgba(33,26,41,.78) 55%, rgba(26,21,32,.88) 100%);
  border:1px solid rgba(255,255,255,.12); border-radius:16px;
  box-shadow:0 26px 60px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.06);
  padding:26px 28px; gap:14px;
  /* The panel is stretched to the gallery column's height. Spreading the
     leftover space between every block reads as generous spacing, rather
     than collecting into one dead gap above the amenities. */
  justify-content:space-between;
}
/* gold hairline crown on the panel */
.explorer-panel::before{ content:""; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent); opacity:.8; }
.explorer-title-zone{ min-height:70px; }
.explorer-title-zone h3{
  color:#fff; font-size:1.78rem; line-height:1.16; margin:0; font-weight:500;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}
.explorer-badge-row{ display:flex; align-items:center; flex-wrap:nowrap; gap:8px; height:30px; overflow:hidden; }
.explorer-rec{
  display:inline-flex; align-items:center; gap:7px; flex-shrink:0;
  font-family:var(--font-mono); font-size:.65rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase;
  color:var(--gold); background:rgba(201,164,103,.12); border:1px solid rgba(201,164,103,.4);
  padding:6px 12px; border-radius:999px;
}
.explorer-rec svg{ width:13px; height:13px; }
.explorer-feature-tag{ font-size:.68rem; color:var(--lavender-dim); border:1px solid rgba(214,203,235,.28); border-radius:999px; padding:4px 10px; white-space:nowrap; flex-shrink:0; }

.explorer-specs{ display:grid; grid-template-columns:repeat(2,1fr); gap:9px; }
.explorer-spec{ display:flex; flex-direction:column; gap:3px; padding:10px 13px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09); border-left:2px solid rgba(201,164,103,.45); border-radius:8px; min-height:48px; justify-content:center; }
.explorer-spec-label{ display:flex; align-items:center; gap:6px; font-family:var(--font-mono); font-size:.58rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); }
.explorer-spec-label svg{ width:12px; height:12px; flex-shrink:0; }
.explorer-spec-value{ font-family:var(--font-display); font-size:.88rem; font-weight:500; color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.explorer-spec.is-tbc .explorer-spec-value{ color:rgba(255,255,255,.42); font-style:italic; }

.explorer-actions{ display:flex; flex-wrap:nowrap; gap:10px; min-height:46px; }
.explorer-actions .btn{ flex:1 1 0; min-width:0; white-space:nowrap; padding:13px 14px; font-size:.86rem; }
.explorer-actions .btn-outline{ color:#fff; border-color:rgba(255,255,255,.32); background:rgba(255,255,255,.05); }
.explorer-actions .btn-outline:hover{ background:rgba(255,255,255,.13); border-color:rgba(255,255,255,.55); }

/* Confirmed stay facts only — taken from the published FAQ, nothing
   invented. No rates are shown here on purpose: pricing and final
   booking conditions come from the STAAH booking engine. */
.explorer-facts{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; padding-top:14px; border-top:1px solid rgba(255,255,255,.1); }
.explorer-fact{ display:flex; gap:8px; align-items:flex-start; }
.explorer-fact svg{ width:14px; height:14px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.explorer-fact strong{ display:block; font-family:var(--font-mono); font-size:.6rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:rgba(255,255,255,.55); }
.explorer-fact span{ display:block; font-size:.73rem; color:rgba(255,255,255,.86); line-height:1.35; margin-top:2px; }

/* ---------- Hotel-wide in-room amenities, inside the panel ---------- */
.inroom-block{ padding-top:18px; border-top:1px solid rgba(255,255,255,.1); }
.inroom-head{ display:flex; flex-wrap:wrap; align-items:baseline; gap:6px 14px; margin-bottom:12px; }
.inroom-head .tag{ flex:0 0 auto; font-size:.66rem; }
.inroom-head p{ flex:1 1 200px; min-width:0; font-size:.74rem; color:rgba(255,255,255,.5); }
.inroom-cols{ display:grid; grid-template-columns:repeat(4,1fr); gap:12px 14px; }
.inroom-col h6{ font-family:var(--font-mono); font-size:.6rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--gold); margin:0 0 8px; }
.inroom-col ul{ display:flex; flex-direction:column; gap:7px; }
.inroom-col li{ display:flex; align-items:flex-start; gap:7px; font-size:.73rem; color:rgba(255,255,255,.84); line-height:1.3; }
.inroom-col li svg{ width:13px; height:13px; color:rgba(255,255,255,.55); flex-shrink:0; margin-top:1px; }
.inroom-more{ margin-top:14px; }
.inroom-more .btn{ padding:10px 18px; font-size:.8rem; color:#fff; border-color:rgba(255,255,255,.28); background:rgba(255,255,255,.04); }
.inroom-more .btn:hover{ background:rgba(255,255,255,.1); border-color:var(--gold-soft); color:#fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1080px){
  /* Stacked: hold the gallery to a comfortable reading width so the
     photograph doesn't blow up to full tablet width. */
  .explorer-intro{ grid-template-columns:1fr; max-width:820px; gap:28px; }
  .explorer-inner{ grid-template-columns:1fr; gap:22px; max-width:820px; }
  .explorer-panel{ padding:20px; }
  .explorer-stage{ aspect-ratio:16/10; }
  .explorer-title-zone{ min-height:auto; }
  .inroom-cols{ grid-template-columns:repeat(4,1fr); }
  .facility-grid{ grid-template-columns:repeat(3,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; row-gap:32px; }
  .onsite-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:auto; }
  .onsite-tile,.onsite-tile:nth-child(1),.onsite-tile:nth-child(2){ grid-column:auto; grid-row:auto; padding:20px; min-height:300px; }
}
@media (max-width:860px){
  .main-nav,.header-actions .lang-switch,.header-actions .icon-btn{ display:none; }
  .nav-toggle{ display:flex; }
  .arrival-journey{ height:270vh; min-height:1650px; }
  .arrival-copy{ left:20px; right:auto; bottom:110px; width:calc(100% - 40px); }
  .arrival-copy--room{ text-align:left; }
  .arrival-copy--room p{ margin-left:0; }
  .arrival-copy--room .arrival-actions{ justify-content:flex-start; }
  .arrival-copy h1{ font-size:clamp(2.3rem,11vw,3.6rem); }
  .arrival-copy-logo{ width:min(220px,58vw); margin-bottom:24px; }
  .arrival-copy--room .arrival-copy-logo{ margin-left:0; }
  .arrival-route{ display:none; }

  .rooms-section{ padding-top:0; margin-top:-6vh; }
  .explorer{ padding-top:0; }
  .explorer-intro{ padding:62px 20px 28px; }
  .explorer-inner{ padding:0 20px 32px; gap:18px; }
  .explorer-stage{ aspect-ratio:4/3; }
  .explorer-arrow{ width:40px; height:40px; }
  .explorer-arrow--prev{ left:10px; }
  .explorer-arrow--next{ right:10px; }
  .explorer-360{ top:10px; right:10px; width:68px; height:76px; }
  .e360-inner svg{ width:17px; height:17px; }
  .e360-inner b{ font-size:.68rem; }
  .e360-label{ display:none; }
  /* Mobile/tablet: the 12 thumbnails become a horizontal rail instead
     of a 4-row grid — the grid alone cost ~500px of vertical space. */
  .explorer-thumbs{ display:flex; gap:10px; overflow-x:auto; overflow-y:hidden; padding-bottom:4px;
                    scrollbar-width:thin; scrollbar-color:rgba(255,255,255,.28) transparent; -webkit-overflow-scrolling:touch; scroll-snap-type:x proximity; }
  .explorer-thumbs::-webkit-scrollbar{ height:5px; }
  .explorer-thumbs::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.24); border-radius:999px; }
  .explorer-thumb{ flex:0 0 118px; scroll-snap-align:start; }
  .explorer-panel{ padding:18px; gap:12px; }
  .explorer-title-zone{ min-height:58px; }
  .explorer-title-zone h3{ font-size:1.45rem; }
  .explorer-facts{ grid-template-columns:repeat(3,1fr); gap:8px; }
  .explorer-fact{ gap:6px; }
  .explorer-fact span{ font-size:.7rem; }
  .inroom-cols{ grid-template-columns:repeat(2,1fr); }
  /* Keep the two actions on ONE reserved row at every mobile width —
     a wrapping action row would be the one thing left that could
     change the panel's height between rooms. */
  .explorer-actions{ min-height:44px; flex-wrap:nowrap; }
  .explorer-actions .btn{ padding:12px 10px; font-size:.8rem; }
  .booking-grid{ grid-template-columns:1fr; gap:28px; }
  .band-grid,.alt .band-grid{ grid-template-columns:1fr; min-height:auto; }
  .alt .band-media{ order:0; }
  .band-media{ aspect-ratio:16/10; min-height:auto; }
  .band-copy{ padding:44px 24px; }
  .facility-grid{ grid-template-columns:repeat(2,1fr); }
  /* Single column: drop the aspect-ratio here. Combined with a
     min-height it transfers a minimum WIDTH (min-height x 1.6) that
     the narrow grid track cannot satisfy, pushing the page sideways. */
  .onsite-grid{ grid-template-columns:1fr; }
  .onsite-tile{ aspect-ratio:auto; min-height:280px; padding:20px; }

  .mtg-intro{ padding-top:56px; }
  .mtg-cinema{ height:200vh; min-height:1250px; margin-top:32px; }
  .mtg-indicator{ display:none; }
  .mtg-copy{ left:20px; right:auto; bottom:96px; width:calc(100% - 40px); }
  .mtg-copy h3{ font-size:clamp(1.5rem,7vw,2rem); }
  .mtg-fallback-grid{ grid-template-columns:1fr; }
  .mtg-cta{ padding:52px 0 60px; }
  .mtg-cta-actions{ flex-direction:column; align-items:stretch; }

  .klcc-switch{ display:flex; width:100%; }
  /* min-width:0 is what lets these three shrink below their
     min-content width instead of pushing the page sideways. */
  .klcc-switch-btn{ flex:1 1 0; min-width:0; justify-content:center; padding:10px 6px; font-size:.66rem; letter-spacing:.03em; gap:5px; overflow:hidden; }
  .klcc-stage{ height:clamp(500px, 118vw, 620px); }
  .klcc-stage-top{ top:12px; right:16px; left:16px; align-items:stretch; max-width:none; }
  .klcc-chip{ font-size:.68rem; }
  .klcc-rail-wrap{ padding-top:56px; }
  .klcc-card{ flex:0 0 82%; max-width:300px; }
  .contact-cta .wrap{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr; }
  .sticky-book-bar{ display:flex; }
  .whatsapp-fab{ bottom:86px; }
  .section{ padding:64px 0; }
}
@media (max-width:520px){
  .brand img{ width:130px; }
  .arrival-journey{ height:245vh; min-height:1450px; }
  .arrival-copy{ left:16px; bottom:94px; width:calc(100% - 32px); }
  .arrival-copy-logo{ display:none; }
  .arrival-copy .desktop-copy{ display:none; }
  .arrival-copy .mobile-copy{ display:inline; }
  .arrival-copy .tag{ margin-bottom:10px; font-size:.62rem; }
  .arrival-copy h1,.arrival-copy h2{ font-size:clamp(1.8rem,8.7vw,2.35rem) !important; line-height:1.05; }
  .arrival-copy p{ display:none; }
  .arrival-actions{ margin-top:16px; gap:8px; flex-wrap:nowrap; }
  .arrival-actions .btn{ padding:11px 13px; font-size:.76rem; }
  .arrival-skip{ display:none; }
  .contact-form{ grid-template-columns:1fr; padding:20px; }
  .contact-field,.contact-field--full{ grid-column:1; }
  .contact-form-actions{ grid-column:1; align-items:stretch; }
  .contact-form-actions .btn{ width:100%; }
  .explorer-intro{ padding:54px 16px 24px; gap:24px; }
  .explorer-intro-copy h2{ font-size:2rem; }
  .explorer-browser-head{ align-items:flex-start; }
  .room-filterbar{ gap:3px 16px; }
  .room-filter{ font-size:.76rem; }
  .explorer-room-select{ min-height:50px; font-size:.88rem; padding-left:13px; }
  .explorer-inner{ padding:0 16px 28px; }
  .explorer-panel{ padding:15px; }
  .explorer-title-zone{ min-height:54px; }
  .explorer-title-zone h3{ font-size:1.32rem; }
  .explorer-rail .explorer-thumb{ flex:0 0 92px; }
  .explorer-thumb{ flex:0 0 104px; }
  .explorer-thumb-label{ font-size:.6rem; }
  /* Keep the recommendation badge and a feature tag on one reserved
     row at 360px without the tag being clipped. */
  .explorer-rec{ font-size:.57rem; padding:5px 9px; gap:5px; }
  .explorer-rec svg{ width:11px; height:11px; }
  .explorer-feature-tag{ font-size:.62rem; padding:3px 8px; }
  .explorer-fact svg{ display:none; }
  .explorer-fact strong{ font-size:.56rem; }
  .explorer-fact span{ font-size:.68rem; }
  .explorer-specs{ gap:7px; }
  .explorer-spec{ min-height:44px; padding:8px 10px; }
  .explorer-spec-label{ font-size:.57rem; }
  .explorer-spec-value{ font-size:.78rem; }
  .explorer-actions{ flex-wrap:wrap; min-height:92px; }
  .explorer-actions .btn{ flex:1 1 100%; padding:12px 10px; font-size:.8rem; }
  .inroom-cols{ grid-template-columns:1fr 1fr; }
  .facility-grid{ grid-template-columns:repeat(2,1fr); }
  .klcc-stage{ height:clamp(500px, 145vw, 600px); }
  .klcc-card{ flex:0 0 86%; }
  .klcc-switch{ padding:5px; }
  .klcc-switch-btn{ padding:9px 4px; font-size:.61rem; letter-spacing:.01em; }
  .klcc-switch-btn svg{ display:none; }
  .klcc-stage-top{ left:12px; right:12px; }
  .klcc-chip{ font-size:.64rem; padding:8px 11px; }
}

/* ============================================================
   VERTICAL HOTEL — new concept components + deco overrides.
   Everything below intentionally comes AFTER the carried system
   styles so it wins the cascade.
   ============================================================ */

/* ---------- header: brass-lined marquee bar ---------- */
.site-header{ background:rgba(11,8,15,.84); border-bottom:1px solid rgba(198,161,91,.3); }
.main-nav a{ font-family:var(--font-deco); font-weight:500; font-size:.68rem; letter-spacing:.24em; text-transform:uppercase; color:rgba(255,255,255,.72); }
.main-nav a:hover{ color:var(--gold-bright); }
.lang-switch{ font-family:var(--font-deco); border-color:rgba(198,161,91,.4); }

/* ---------- elevator-door page opening ---------- */
.lift{ position:fixed; inset:0; z-index:400; display:flex; visibility:hidden; }
body.lift-armed .lift{ visibility:visible; }
.lift-door{ flex:1; position:relative; background:linear-gradient(90deg, #191221 0%, #100B16 100%); transition:transform 1.05s cubic-bezier(.77,0,.18,1) .35s; }
.lift-door--r{ background:linear-gradient(90deg, #100B16 0%, #191221 100%); }
.lift-door--l{ border-right:2px solid rgba(198,161,91,.55); }
.lift-door--r{ border-left:2px solid rgba(198,161,91,.55); }
.lift-door::after{ content:""; position:absolute; top:0; bottom:0; width:1px; background:rgba(198,161,91,.16); }
.lift-door--l::after{ right:26px; }
.lift-door--r::after{ left:26px; }
body.lift-open .lift-door--l{ transform:translateX(-102%); }
body.lift-open .lift-door--r{ transform:translateX(102%); }
.lift-plate{
  position:absolute; z-index:2; left:50%; top:50%; transform:translate(-50%,-50%);
  display:grid; justify-items:center; gap:14px; text-align:center;
  transition:opacity .4s ease; pointer-events:none;
}
body.lift-open .lift-plate{ opacity:0; }
.lift-plate img{ width:min(240px,56vw); height:auto; filter:drop-shadow(0 10px 26px rgba(0,0,0,.6)); }
.lift-plate strong{ font-family:var(--font-deco); font-weight:500; font-size:.72rem; letter-spacing:.42em; text-transform:uppercase; color:var(--gold-bright); padding-left:.42em; }
.lift-plate .lift-dial{ display:flex; align-items:center; gap:9px; font-family:var(--font-deco); font-size:.66rem; letter-spacing:.2em; color:rgba(255,255,255,.45); }
.lift-plate .lift-dial i{ font-style:normal; transition:color .2s ease; }
.lift-plate .lift-dial i.is-lit{ color:var(--gold); }
@media (prefers-reduced-motion: reduce){ .lift{ display:none !important; } }

/* ---------- brass elevator panel (fixed floor navigation) ---------- */
.panelnav{
  position:fixed; left:18px; top:50%; transform:translateY(-50%); z-index:120;
  width:62px; padding:12px 7px 9px; display:none;
  background:linear-gradient(180deg, rgba(24,17,28,.88), rgba(12,9,16,.94));
  border:1px solid rgba(198,161,91,.42); border-radius:10px;
  box-shadow:0 18px 44px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
}
@media (min-width:1280px){ .panelnav{ display:grid; gap:3px; } }
.panelnav-readout{
  font-family:var(--font-deco); font-size:.92rem; font-weight:600; color:var(--gold-bright); text-align:center;
  background:#0A0710; border:1px solid rgba(198,161,91,.35); border-radius:6px; padding:7px 0 5px; margin-bottom:7px;
  text-shadow:0 0 12px rgba(232,206,150,.5); font-variant-numeric:tabular-nums;
}
.panelnav-btn{
  position:relative; width:100%; height:38px; display:flex; align-items:center; justify-content:center;
  background:none; border:1px solid transparent; border-radius:6px;
  font-family:var(--font-deco); font-weight:500; font-size:.66rem; letter-spacing:.08em; color:rgba(255,255,255,.5);
  transition:color .18s ease, border-color .18s ease, background .18s ease;
}
.panelnav-btn:hover{ color:var(--gold-bright); }
.panelnav-btn.is-active{ color:var(--gold-bright); border-color:rgba(198,161,91,.5); background:rgba(198,161,91,.1); box-shadow:0 0 14px rgba(198,161,91,.18); }
.panelnav-btn::after{
  content:attr(data-label); position:absolute; left:calc(100% + 12px); top:50%; transform:translateY(-50%) translateX(-6px);
  white-space:nowrap; opacity:0; pointer-events:none;
  font-family:var(--font-mono); font-size:.64rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-bright);
  background:rgba(10,7,14,.92); border:1px solid rgba(198,161,91,.4); border-radius:4px; padding:7px 11px;
  transition:opacity .18s ease, transform .18s ease;
}
.panelnav-btn:hover::after,.panelnav-btn:focus-visible::after{ opacity:1; transform:translateY(-50%) translateX(0); }

/* ---------- hero deco dressing over the carried arrival engine ---------- */
.arrival-sticky::after{
  content:""; position:absolute; inset:14px; z-index:6; pointer-events:none;
  border:1px solid rgba(198,161,91,.22);
}
.arrival-copy .tag{ color:var(--gold-bright); }
.arrival-copy h1,.arrival-copy h2{ font-family:var(--font-serif); font-weight:600; }
.arrival-route,.arrival-hint,.arrival-skip{ font-family:var(--font-deco); }
.arrival-est{
  display:flex; align-items:center; gap:14px; margin-bottom:20px;
  font-family:var(--font-deco); font-size:.66rem; font-weight:500; letter-spacing:.4em; text-transform:uppercase; color:var(--gold-bright);
}
.arrival-est::before,.arrival-est::after{ content:""; width:34px; height:1px; background:rgba(198,161,91,.6); }

/* ---------- brass fact ticker ---------- */
.ticker{ position:relative; z-index:6; overflow:hidden; background:var(--purple-plum); border-block:1px solid rgba(198,161,91,.4); padding:13px 0; }
.ticker-track{ display:flex; gap:0; white-space:nowrap; width:max-content; animation:tick 44s linear infinite; }
.ticker:hover .ticker-track{ animation-play-state:paused; }
.ticker-track span{ display:inline-flex; align-items:center; gap:0; font-family:var(--font-deco); font-weight:500; font-size:.66rem; letter-spacing:.3em; text-transform:uppercase; color:var(--gold-bright); }
.ticker-track span::after{ content:"◆"; font-size:.5rem; color:rgba(198,161,91,.65); margin:0 26px; }
@keyframes tick{ to{ transform:translateX(-50%); } }
@media (prefers-reduced-motion: reduce){ .ticker-track{ animation:none; } .ticker{ overflow-x:auto; } }

/* ---------- floor bands (storey separators) ---------- */
.floorband{ display:flex; align-items:center; gap:20px; padding:44px 24px 0; max-width:var(--maxw); margin:0 auto; }
.fb-num{
  font-family:var(--font-deco); font-weight:600; font-size:clamp(2.5rem,5.4vw,3.9rem); line-height:1;
  color:transparent; -webkit-text-stroke:1.2px var(--gold);
}
@supports not (-webkit-text-stroke:1px black){ .fb-num{ color:var(--gold-soft); } }
.fb-t small{ display:block; font-family:var(--font-mono); font-size:.62rem; font-weight:600; letter-spacing:.3em; text-transform:uppercase; color:var(--ink-soft); }
.fb-t strong{ display:block; font-family:var(--font-deco); font-weight:500; font-size:.94rem; letter-spacing:.18em; text-transform:uppercase; color:var(--ink); margin-top:4px; }
.fb-line{ flex:1; height:1px; background:linear-gradient(90deg, var(--gold-soft), transparent); position:relative; }
.fb-line::before{ content:"◆"; position:absolute; left:-4px; top:50%; transform:translate(0,-50%); font-size:.5rem; color:var(--gold); }
.floorband--dark{ background:transparent; }
.floorband--dark .fb-t small{ color:rgba(255,255,255,.42); }
.floorband--dark .fb-t strong{ color:#F0E6D0; }
/* bands that sit on a dark following section carry their own backdrop */
.floorband-shell{ margin:0; }
.floorband-shell--charcoal{ background:var(--charcoal); }
.floorband-shell--void{ background:var(--void); }
.floorband-shell--grey{ background:var(--warm-grey); }
.floorband-shell--cream{ background:var(--warm-cream); }
.floorband-shell--charcoal .floorband,.floorband-shell--void .floorband{ padding-bottom:8px; }

/* ============================================================
   FLOOR II — THE CORRIDOR (rooms as numbered doors)
   ============================================================ */
.corr-journey{ position:relative; background:var(--charcoal); color:#fff; }
.corr-head{ max-width:var(--maxw); margin:0 auto; padding:30px 24px 40px; display:grid; grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr); gap:26px 60px; align-items:end; }
.corr-head h2{ color:#fff; font-size:clamp(2.3rem,4.6vw,3.6rem); line-height:1.06; margin-top:14px; }
.corr-head .corr-lede{ color:rgba(255,255,255,.62); font-size:1.02rem; max-width:520px; }
.corr-hint{ display:flex; align-items:center; gap:12px; justify-content:flex-end; font-family:var(--font-deco); font-size:.66rem; font-weight:500; letter-spacing:.26em; text-transform:uppercase; color:var(--gold-bright); }
.corr-hint::after{ content:"→"; font-size:1rem; animation:corrnudge 2s ease-in-out infinite; }
@keyframes corrnudge{ 0%,100%{ transform:translateX(0);} 50%{ transform:translateX(8px);} }
@media (prefers-reduced-motion: reduce){ .corr-hint::after{ animation:none; } }

.corr-hold{ position:relative; height:340vh; }
.corr-sticky{ position:sticky; top:0; height:100vh; overflow:hidden; display:flex; flex-direction:column; justify-content:center; }
/* corridor walls: faint panelling + cornice */
.corr-sticky::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(180deg, rgba(11,8,15,.85) 0%, transparent 18%, transparent 78%, rgba(11,8,15,.7) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.022) 0 1px, transparent 1px 180px);
}
.corr-floor{
  position:absolute; left:0; right:0; bottom:0; height:15vh; pointer-events:none;
  background:linear-gradient(180deg, #251530 0%, #170D1D 100%);
  border-top:1px solid rgba(198,161,91,.45);
}
.corr-floor::before{
  content:""; position:absolute; left:0; right:0; top:8px; height:5px;
  background:repeating-linear-gradient(90deg, rgba(198,161,91,.4) 0 14px, transparent 14px 28px);
  opacity:.45;
}

.corr-track{ position:relative; z-index:2; display:flex; align-items:center; gap:clamp(30px,4.5vw,70px); padding:0 max(24px, calc((100vw - 1240px) / 2)); will-change:transform; }
.corr-door{ flex:0 0 clamp(295px,25vw,395px); display:flex; flex-direction:column; gap:15px; }
.corr-arch{
  position:relative; height:min(56vh,520px); overflow:hidden; background:#241A2B;
  border-radius:210px 210px 8px 8px;
  border:1px solid rgba(198,161,91,.55);
  box-shadow:0 0 0 7px rgba(17,11,21,.92), 0 0 0 8px rgba(198,161,91,.3), 0 34px 64px rgba(0,0,0,.55);
}
.corr-arch img{ width:100%; height:100%; object-fit:cover; transition:transform 1.6s cubic-bezier(.16,.6,.3,1), opacity .5s ease; opacity:0; }
.corr-arch img.is-loaded{ opacity:1; }
.corr-door:hover .corr-arch img{ transform:scale(1.055); }
.corr-arch::after{ content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(180deg, rgba(11,8,15,.32) 0%, transparent 30%, transparent 62%, rgba(11,8,15,.55) 100%); }
.corr-plq{
  position:absolute; z-index:3; top:20px; left:50%; transform:translateX(-50%);
  font-family:var(--font-deco); font-weight:600; font-size:.72rem; letter-spacing:.14em; white-space:nowrap;
  color:#2A1A06; background:linear-gradient(180deg, #E9CD86 0%, #B8894A 100%);
  padding:6px 15px; border-radius:2px;
  box-shadow:0 2px 8px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.55), inset 0 -1px 0 rgba(0,0,0,.25);
}
.corr-360{
  position:absolute; z-index:3; bottom:16px; left:50%; transform:translateX(-50%);
  display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(198,161,91,.65); border-radius:2px;
  background:rgba(11,8,15,.7); color:var(--gold-bright); padding:8px 14px;
  font-family:var(--font-deco); font-weight:500; font-size:.62rem; letter-spacing:.22em; text-transform:uppercase;
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  transition:background .2s ease, color .2s ease;
}
.corr-360:hover{ background:var(--purple-deep); color:#fff; }
.corr-360 svg{ width:15px; height:15px; }
.corr-arch.is-empty{ display:flex; align-items:center; justify-content:center; }
.corr-arch.is-empty::before{
  content:""; position:absolute; inset:0;
  background:repeating-linear-gradient(45deg, rgba(198,161,91,.06) 0 16px, transparent 16px 32px);
}
.corr-arch.is-empty .corr-empty{ position:relative; z-index:2; display:grid; justify-items:center; gap:10px; color:rgba(255,255,255,.55); text-align:center; padding:24px; }
.corr-arch.is-empty .corr-empty svg{ width:34px; height:34px; opacity:.6; }
.corr-arch.is-empty .corr-empty span{ font-family:var(--font-deco); font-size:.64rem; letter-spacing:.22em; text-transform:uppercase; }

.corr-desk{ text-align:center; display:grid; gap:7px; }
.corr-desk h3{ color:#fff; font-size:1.42rem; line-height:1.18; font-weight:600; }
.corr-sub{ font-family:var(--font-mono); font-size:.72rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase; color:rgba(233,219,186,.65); }
.corr-actions{ display:flex; justify-content:center; gap:9px; margin-top:6px; }
.corr-actions .btn{ padding:11px 16px; font-size:.62rem; letter-spacing:.16em; }
.corr-actions .btn-outline{ color:#EFE6D2; border-color:rgba(198,161,91,.45); background:rgba(255,255,255,.03); }
.corr-actions .btn-outline:hover{ border-color:var(--gold); color:var(--gold-bright); }

.corr-chrome{ position:absolute; z-index:4; left:0; right:0; bottom:4.2vh; display:grid; justify-items:center; gap:10px; pointer-events:none; }
.corr-counter{ font-family:var(--font-deco); font-weight:500; font-size:.7rem; letter-spacing:.3em; text-transform:uppercase; color:var(--gold-bright); text-shadow:0 1px 10px rgba(0,0,0,.8); }
.corr-progress{ width:min(380px,64vw); height:2px; background:rgba(255,255,255,.14); }
.corr-progress span{ display:block; width:0; height:100%; background:var(--gold); }
.corr-nav{
  position:absolute; z-index:5; top:50%; transform:translateY(-50%);
  width:52px; height:52px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:rgba(11,8,15,.62); border:1px solid rgba(198,161,91,.5); color:var(--gold-bright);
  backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px);
  transition:background .2s ease, transform .2s ease;
}
.corr-nav:hover{ background:var(--purple-deep); transform:translateY(-50%) scale(1.06); }
.corr-nav svg{ width:20px; height:20px; }
.corr-nav--prev{ left:22px; }
.corr-nav--next{ right:22px; }

/* corridor fallback / mobile: a native horizontal promenade */
.corr-journey.corr-flat .corr-hold{ height:auto; }
.corr-journey.corr-flat .corr-sticky{ position:relative; height:auto; padding:34px 0 46px; overflow:visible; }
.corr-journey.corr-flat .corr-track{
  transform:none !important; overflow-x:auto; padding:0 20px 18px;
  scroll-snap-type:x proximity; -webkit-overflow-scrolling:touch;
  scrollbar-width:thin; scrollbar-color:rgba(198,161,91,.5) transparent;
}
.corr-journey.corr-flat .corr-track::-webkit-scrollbar{ height:6px; }
.corr-journey.corr-flat .corr-track::-webkit-scrollbar-thumb{ background:rgba(198,161,91,.4); border-radius:999px; }
.corr-journey.corr-flat .corr-door{ scroll-snap-align:center; flex-basis:min(78vw,340px); }
.corr-journey.corr-flat .corr-arch{ height:min(58vw,420px); }
.corr-journey.corr-flat .corr-nav,.corr-journey.corr-flat .corr-floor{ display:none; }
.corr-journey.corr-flat .corr-chrome{ position:static; margin-top:20px; }

/* ============================================================
   FLOOR III — THE FRONT DESK (booking)
   ============================================================ */
.frontdesk{ position:relative; background:var(--warm-cream); padding:26px 0 90px; }
.frontdesk::before{ content:""; position:absolute; top:0; left:0; right:0; height:5px; background:linear-gradient(90deg, transparent, var(--gold) 25%, var(--gold) 75%, transparent); opacity:.55; }
.fd-grid{ display:grid; grid-template-columns:.92fr 1.08fr; gap:64px; align-items:center; margin-top:26px; }
.fd-copy h2{ font-size:clamp(2.2rem,4vw,3.2rem); line-height:1.08; }
.fd-copy p{ margin-top:16px; color:var(--ink-soft); max-width:460px; }
.fd-facts{ display:flex; flex-wrap:wrap; gap:10px; margin-top:28px; }
.fd-fact{
  display:inline-flex; align-items:center; gap:9px; padding:9px 15px;
  border:1px solid var(--line-line); border-radius:2px; background:var(--white);
  font-family:var(--font-deco); font-weight:500; font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color:var(--ink);
  box-shadow:0 4px 14px rgba(38,32,40,.06);
}
.fd-fact svg{ width:14px; height:14px; color:var(--gold); flex-shrink:0; }
.fd-panel{
  position:relative; background:var(--white); border:1px solid var(--line-line);
  padding:34px 34px 30px; box-shadow:0 34px 70px rgba(38,32,40,.16);
}
.fd-panel::before{ content:""; position:absolute; inset:9px; border:1px solid rgba(198,161,91,.45); pointer-events:none; }
.fd-panel > *{ position:relative; }
.fd-panel-head{ text-align:center; margin-bottom:20px; }
.fd-panel-head .tag{ justify-content:center; }
.fd-panel-head h3{ font-family:var(--font-deco); font-weight:600; font-size:1.05rem; letter-spacing:.18em; text-transform:uppercase; color:var(--purple-plum); margin-top:10px; }
.staah-widget-slot{ min-height:56px; }
.booking-fallback{ margin-top:16px; padding-top:16px; border-top:1px solid var(--line-line); text-align:center; }
.booking-fallback p{ font-family:var(--font-mono); font-size:.66rem; font-weight:600; letter-spacing:.22em; text-transform:uppercase; color:var(--ink-soft); margin-bottom:12px; }

/* (the in-room amenity columns live in the explorer panel on Floor II;
   their dark-theme styles come from the explorer block above) */
.inroom-col h6{ font-family:var(--font-deco); letter-spacing:.18em; }

/* ============================================================
   FLOOR IV — HOUSE DIRECTORY (facilities as a brass board)
   ============================================================ */
.svcboard{ background:var(--void); padding:30px 0 96px; color:#fff; }
.svc-panel{
  position:relative; max-width:880px; margin:26px auto 0;
  background:linear-gradient(180deg, #1E1524 0%, #120C17 100%);
  border:1px solid rgba(198,161,91,.5); padding:44px 48px 40px;
  box-shadow:0 34px 80px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.05);
}
.svc-panel::before{ content:""; position:absolute; inset:10px; border:1px solid rgba(198,161,91,.28); pointer-events:none; }
.svc-title{ text-align:center; margin-bottom:26px; }
.svc-title strong{ display:block; font-family:var(--font-deco); font-weight:600; font-size:clamp(1.05rem,2.4vw,1.45rem); letter-spacing:.34em; text-transform:uppercase; color:var(--gold-bright); padding-left:.34em; }
.svc-title small{ display:block; margin-top:8px; font-family:var(--font-mono); font-size:.66rem; font-weight:500; letter-spacing:.24em; text-transform:uppercase; color:rgba(255,255,255,.4); }
.svc-rows{ position:relative; }
.svc-row{ display:flex; align-items:baseline; gap:14px; padding:13px 2px; border-bottom:1px solid rgba(255,255,255,.07); }
.svc-row:last-child{ border-bottom:0; }
.svc-row b{ display:flex; align-items:center; gap:12px; font-family:var(--font-deco); font-weight:500; font-size:.74rem; letter-spacing:.2em; text-transform:uppercase; color:#EFE6D2; white-space:nowrap; }
.svc-row b svg{ width:16px; height:16px; color:var(--gold); flex-shrink:0; }
.svc-dots{ flex:1; border-bottom:1px dotted rgba(198,161,91,.4); transform:translateY(-4px); }
.svc-row span{ font-family:var(--font-mono); font-size:.72rem; letter-spacing:.08em; color:rgba(233,219,186,.72); white-space:nowrap; }
.svc-more{ text-align:center; margin-top:30px; }
.svc-more .btn{ color:#EFE6D2; border-color:rgba(198,161,91,.45); background:transparent; }
.svc-more .btn:hover{ border-color:var(--gold); color:var(--gold-bright); }
.svcboard .section-head{ max-width:none; text-align:center; margin-bottom:0; }
.svcboard .section-head .tag{ justify-content:center; }
.svcboard .section-head h2{ color:#fff; }
.svcboard .section-head p{ color:rgba(255,255,255,.55); margin-left:auto; margin-right:auto; max-width:560px; }

/* ---------- corridor gallery: every door on one floor at once ---------- */
.corr-head{ align-items:end; padding-bottom:6px; }
.corr-filterwrap{
  max-width:var(--maxw); margin:0 auto; padding:4px 24px 36px;
  display:flex; align-items:baseline; justify-content:space-between; gap:14px 22px; flex-wrap:wrap;
  border-bottom:0;
}
.corr-filterbar{ display:flex; flex-wrap:wrap; gap:4px 28px; }
.corr-filter{
  position:relative; background:none; border:0; border-radius:0; padding:8px 2px 10px;
  font-family:var(--font-deco); font-weight:500; font-size:.7rem; letter-spacing:.2em; text-transform:uppercase;
  color:rgba(255,255,255,.5); border-bottom:1px solid transparent;
  transition:color .18s ease, border-color .18s ease;
}
.corr-filter:hover{ color:#fff; }
.corr-filter.is-active{ color:var(--gold-bright); border-bottom-color:var(--gold); }
.corr-count{ font-family:var(--font-deco); font-weight:500; font-size:.64rem; letter-spacing:.26em; text-transform:uppercase; color:rgba(233,219,186,.6); font-variant-numeric:tabular-nums; }
.corr-grid{
  max-width:var(--maxw); margin:0 auto; padding:0 24px 92px;
  display:grid; grid-template-columns:repeat(4,1fr); gap:44px 24px;
}
.corr-grid .corr-arch{ height:auto; aspect-ratio:3/4.05; }
.corr-door.is-hidden{ display:none; }
@media (max-width:1280px){ .corr-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:860px){
  .corr-grid{ grid-template-columns:repeat(2,1fr); gap:36px 16px; padding:0 20px 64px; }
  .corr-filterwrap{ padding:0 20px 28px; }
  .corr-desk h3{ font-size:1.16rem; }
  .corr-sub{ font-size:.62rem; letter-spacing:.1em; }
  .corr-actions .btn{ padding:10px 12px; font-size:.58rem; letter-spacing:.12em; }
  .corr-plq{ font-size:.62rem; padding:5px 11px; top:14px; }
}
@media (max-width:520px){
  .corr-grid{ grid-template-columns:1fr; }
  .corr-grid .corr-door{ max-width:340px; width:100%; margin:0 auto; }
  .corr-filterbar{ gap:2px 20px; }
  .corr-filter{ font-size:.62rem; letter-spacing:.14em; }
}

/* ---------- Floor II explorer, deco dressing ---------- */
.rooms-section{ margin-top:0; border-radius:0; box-shadow:none; }
/* Align the explorer to the same 1240px column as every other floor,
   clearing the fixed elevator panel on the left — but only at widths
   where the panel exists; below that the carried responsive stacking
   must win untouched. */
@media (min-width:1281px){
  .explorer-intro,.explorer-inner{ max-width:var(--maxw); }
  .explorer-intro{ grid-template-columns:minmax(0,.9fr) minmax(430px,1.1fr); }
}
.explorer-intro{ padding-top:34px; }
.explorer-actions .btn{ font-size:.6rem; letter-spacing:.1em; padding:13px 8px; }
@media (max-width:860px){ .rooms-section{ margin-top:0; } }
.explorer-stage{ border-radius:10px; border-color:rgba(198,161,91,.45); }
.explorer-panel{ border-radius:10px; border-color:rgba(198,161,91,.3); }
.explorer-room-select{ border-radius:4px; font-family:var(--font-body); font-weight:600; }
.explorer-room-select:hover{ border-color:rgba(198,161,91,.6); }
.explorer-spec{ border-radius:6px; }
.explorer-spec-value{ font-family:var(--font-body); font-weight:500; }
.room-filter{ font-family:var(--font-deco); font-size:.66rem; font-weight:500; letter-spacing:.18em; text-transform:uppercase; padding:6px 1px 9px; }
.explorer-browser-head span,.explorer-browser-head strong,.explorer-select-label{ font-family:var(--font-deco); letter-spacing:.22em; }
.explorer-kicker-chip{ font-family:var(--font-deco); letter-spacing:.16em; border-radius:2px; }
.explorer-rec{ font-family:var(--font-deco); letter-spacing:.1em; border-radius:2px; }
.explorer-feature-tag{ border-radius:2px; }
.explorer-thumb-img{ border-radius:6px; }
.explorer-fact strong{ font-family:var(--font-deco); letter-spacing:.14em; }
.inroom-head .tag{ font-size:.62rem; }

/* ---------- retheme details of carried floors ---------- */
.faq-item summary{ list-style:none; cursor:pointer; padding:22px 4px; display:flex; align-items:center; justify-content:space-between; gap:16px; font-family:var(--font-serif); font-weight:600; font-size:1.16rem; color:var(--purple-plum); }
.onsite-section{ background:linear-gradient(180deg, var(--warm-grey) 0%, var(--warm-cream) 100%); }
.onsite-tile{ border-radius:10px; }
.onsite-kicker{ font-family:var(--font-deco); letter-spacing:.2em; border-radius:2px; }
.onsite-hours{ font-family:var(--font-deco); letter-spacing:.12em; border-radius:2px; }
.onsite-fact{ border-radius:2px; }
.klcc-card{ border-radius:8px; }
.klcc-switch{ border-radius:4px; }
.klcc-switch-btn{ border-radius:3px; font-family:var(--font-deco); letter-spacing:.14em; }
.mtg-indicator-item,.mtg-status{ font-family:var(--font-deco); letter-spacing:.16em; }
.contact-form{ border-radius:10px; }
.contact-method{ border-radius:6px; }
.footer-col h5{ font-family:var(--font-deco); letter-spacing:.26em; }

/* ---------- responsive for the new components ---------- */
@media (max-width:1080px){
  .corr-head{ grid-template-columns:1fr; align-items:start; }
  .corr-hint{ justify-content:flex-start; }
  .fd-grid{ grid-template-columns:1fr; gap:36px; }
}
@media (max-width:860px){
  .floorband{ padding:34px 20px 0; gap:14px; }
  .svc-panel{ padding:30px 22px 28px; margin-left:20px; margin-right:20px; }
  .svc-row{ flex-wrap:wrap; gap:6px 14px; padding:12px 0; }
  .svc-dots{ display:none; }
  .svc-row span{ flex-basis:100%; white-space:normal; color:rgba(233,219,186,.6); }
  .ticker-track span{ font-size:.6rem; }
  .fd-panel{ padding:26px 20px 24px; }
}
@media (max-width:520px){
  .fb-num{ font-size:2.2rem; }
  .fb-t strong{ font-size:.8rem; letter-spacing:.12em; }
  .fd-facts{ gap:8px; }
}

/* ============================================================
   MEZZANINE — THE DOORSTEP. KLCC as a row of doors around the
   hotel. Photo frames self-heal: while a file is missing from
   assets/klcc/, the frame shows an engraved "photo coming" plate
   with the exact path to drop the image into.
   ============================================================ */
.doorstep{ position:relative; background:var(--void); color:#fff; padding:0 0 104px; }
.doorstep .section-head{ margin-bottom:38px; }
.doorstep .section-head h2{ color:#fff; }
.doorstep .section-head p{ color:rgba(255,255,255,.6); }
.dstep-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(min(198px,100%),1fr)); gap:16px; }
.dstep-card{
  position:relative; display:flex; flex-direction:column; background:var(--panel-dark);
  border:1px solid rgba(198,161,91,.28); border-radius:var(--r-sm); overflow:hidden;
  transition:border-color .3s ease, transform .3s ease;
}
.dstep-card:hover{ border-color:var(--gold-soft); transform:translateY(-4px); }
.dstep-media{ position:relative; aspect-ratio:4/3; margin:0; background:linear-gradient(160deg,#221730,#120C17); overflow:hidden; }
.dstep-media img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .6s cubic-bezier(.2,.7,.3,1); }
.dstep-card:hover .dstep-media img{ transform:scale(1.05); }
.dstep-ph{ position:absolute; inset:0; display:none; flex-direction:column; align-items:center; justify-content:center; gap:8px; text-align:center; padding:16px; }
.dstep-media.is-missing .dstep-ph{ display:flex; }
.dstep-ph::before{ content:""; position:absolute; inset:10px; border:1px dashed rgba(198,161,91,.45); pointer-events:none; }
.dstep-ph svg{ width:26px; height:26px; color:var(--gold-soft); }
.dstep-ph span{ font-family:var(--font-deco); font-size:.6rem; font-weight:600; letter-spacing:.24em; text-transform:uppercase; color:var(--gold-bright); }
.dstep-ph small{ font-family:var(--font-mono); font-size:.6rem; letter-spacing:.04em; color:rgba(255,255,255,.4); word-break:break-all; }
.dstep-body{ display:flex; flex-direction:column; gap:7px; padding:16px 16px 14px; flex:1; }
.dstep-body strong{ font-family:var(--font-deco); font-weight:600; font-size:.76rem; letter-spacing:.13em; text-transform:uppercase; color:#F0E6D0; }
.dstep-dist{ display:inline-flex; align-items:center; gap:7px; font-family:var(--font-mono); font-size:.66rem; font-weight:600; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); }
.dstep-dist::before{ content:""; width:5px; height:5px; border-radius:50%; background:var(--gold); box-shadow:0 0 8px var(--gold); flex-shrink:0; }
.dstep-link{
  margin-top:auto; padding:8px 0 0; align-self:flex-start; background:none; border:0; cursor:pointer;
  font-family:var(--font-mono); font-size:.64rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(255,255,255,.55); display:inline-flex; align-items:center; gap:7px; transition:color .3s ease;
}
.dstep-link:hover{ color:var(--gold-bright); }
.dstep-link svg{ width:13px; height:13px; flex-shrink:0; }

/* "Pick your Kuala Lumpur" — one hotel, four reasons to book it. */
.dstep-pick{ margin-top:62px; }
.dstep-pick-head{ display:flex; align-items:center; gap:18px; margin-bottom:22px; }
.dstep-pick-head::after{ content:""; flex:1; height:1px; background:linear-gradient(90deg,var(--gold-soft),transparent); }
.pick-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(min(220px,100%),1fr)); gap:14px; }
.pick-card{
  font:inherit; text-align:left; display:flex; flex-direction:column; gap:9px; padding:20px 20px 18px;
  background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,0)); border:1px solid rgba(255,255,255,.12);
  border-radius:var(--r-sm); cursor:pointer; color:inherit; text-decoration:none;
  transition:border-color .3s ease, background .3s ease;
}
.pick-card:hover{ border-color:var(--gold-soft); background:rgba(198,161,91,.06); }
.pick-card svg{ width:20px; height:20px; color:var(--gold); flex-shrink:0; }
.pick-card strong{ font-family:var(--font-deco); font-weight:600; font-size:.74rem; letter-spacing:.15em; text-transform:uppercase; color:#F0E6D0; }
.pick-card span{ font-size:.86rem; color:rgba(255,255,255,.58); line-height:1.55; }
.pick-card em{ margin-top:auto; padding-top:10px; font-style:normal; font-family:var(--font-mono); font-size:.62rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; color:var(--gold); }

/* ---------- Floor III additions: book-direct perks + guest words ---------- */
.fd-perks{ list-style:none; margin:26px 0 0; padding:0; display:flex; flex-direction:column; gap:12px; max-width:460px; }
.fd-perks li{
  display:flex; gap:14px; align-items:flex-start; padding:14px 16px;
  background:var(--white); border:1px solid var(--line-line); border-left:2px solid var(--gold);
  box-shadow:0 4px 14px rgba(38,32,40,.05);
}
.fd-perks li > svg{ width:18px; height:18px; color:var(--gold); flex-shrink:0; margin-top:2px; }
.fd-perks strong{ display:block; font-family:var(--font-deco); font-weight:600; font-size:.7rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink); }
.fd-perks li span{ display:block; margin-top:4px; font-size:.85rem; color:var(--ink-soft); line-height:1.5; }

.fd-reviews{ margin-top:56px; padding-top:34px; border-top:1px solid var(--line-line); }
.fd-rev-head{ display:flex; flex-wrap:wrap; align-items:center; gap:14px; margin-bottom:20px; }
.fd-rev-pending{
  font-family:var(--font-mono); font-size:.6rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:var(--purple-hot); background:rgba(198,161,91,.14); border:1px dashed rgba(138,90,43,.5); padding:6px 12px; border-radius:2px;
}
.fd-rev-grid{ display:grid; grid-template-columns:auto 1fr 1fr; gap:16px; align-items:stretch; }
.fd-rev-score{ display:flex; flex-direction:column; justify-content:center; text-align:center; gap:4px; padding:22px 30px; background:var(--purple-plum); color:#F0E6D0; }
.fd-rev-score strong{ font-family:var(--font-serif); font-size:2.6rem; font-weight:600; color:var(--gold-bright); line-height:1; }
.fd-rev-score > span{ font-family:var(--font-mono); font-size:.6rem; font-weight:600; letter-spacing:.2em; text-transform:uppercase; }
.fd-rev-score small{ margin-top:6px; font-size:.66rem; color:rgba(240,230,208,.55); max-width:140px; margin-inline:auto; }
.fd-reviews blockquote{
  margin:0; padding:20px 22px; background:var(--white); border:1px solid var(--line-line);
  font-family:var(--font-serif); font-size:1.06rem; font-style:italic; color:var(--ink-soft);
  display:flex; flex-direction:column; gap:12px;
}
.fd-reviews cite{ margin-top:auto; font-family:var(--font-mono); font-style:normal; font-size:.62rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; opacity:.75; }

@media (max-width:900px){
  .fd-rev-grid{ grid-template-columns:1fr 1fr; }
  .fd-rev-score{ grid-column:1 / -1; flex-direction:row; justify-content:center; align-items:center; gap:18px; text-align:left; }
  .fd-rev-score small{ margin:0; }
}
@media (max-width:640px){
  .doorstep{ padding-bottom:78px; }
  .dstep-grid{ grid-template-columns:1fr 1fr; gap:12px; }
  .dstep-pick{ margin-top:48px; }
  .fd-rev-grid{ grid-template-columns:1fr; }
}
@media (max-width:420px){
  .dstep-grid{ grid-template-columns:1fr; }
  .dstep-media{ aspect-ratio:16/9; }
}
