:root {
  --ink: #020304;
  --white: #f3f5f6;
  --muted: rgba(243,245,246,.67);
  --dim: rgba(243,245,246,.42);
  --rule: rgba(243,245,246,.15);
  --cyan: #51d7ee;
  --magenta: #d54eb7;
  --accent: var(--cyan);
  --accent-rgb: 81,215,238;
  --secondary: var(--magenta);
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --gutter: clamp(22px,4.5vw,74px);
  --action-text: 13px;
  --max: 1580px;
}

.page-portal { --accent: var(--magenta); --accent-rgb: 213,78,183; --secondary: var(--cyan); }

* { box-sizing: border-box; }
html { min-width: 320px; min-height: 100%; background: var(--ink); scroll-behavior: smooth; scroll-padding-top: 84px; }
body { min-height: 100%; margin: 0; overflow-x: hidden; background: var(--ink); color: var(--white); font-family: var(--display); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 12px 15px; background: var(--white); color: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: none; }

.system-bg,
.system-bg > * { position: fixed; pointer-events: none; }
.system-bg { z-index: 0; inset: 0; overflow: hidden; background: radial-gradient(circle at 50% 22%,#0b1115,var(--ink) 55%); }
.system-bg__grid { inset: 0; opacity: .11; background-image: linear-gradient(rgba(var(--accent-rgb),.09) 1px,transparent 1px),linear-gradient(90deg,rgba(var(--accent-rgb),.09) 1px,transparent 1px); background-size: 82px 82px; -webkit-mask-image: radial-gradient(circle at 50% 42%,#000,transparent 74%); mask-image: radial-gradient(circle at 50% 42%,#000,transparent 74%); }
.system-bg__glow { width: 58vw; height: 58vw; border-radius: 50%; filter: blur(115px); opacity: .085; }
.system-bg__glow--primary { top: -34vw; right: -20vw; background: var(--accent); }
.system-bg__glow--secondary { bottom: -36vw; left: -22vw; background: var(--secondary); }
.system-bg__noise { inset: 0; opacity: .035; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E"); }

.system-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 86px; padding-inline: var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-bottom: 1px solid rgba(243,245,246,.1); background: rgba(2,3,4,.74); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); transition: background 220ms ease; }
.system-header.is-scrolled { background: rgba(2,3,4,.94); }
.brand { display: inline-flex; width: fit-content; text-decoration: none; }
.brand img { width: clamp(145px,14vw,195px); }
.system-header__path { display: flex; align-items: center; gap: 12px; color: rgba(243,245,246,.46); font: 700 10px/1 var(--mono); letter-spacing: .15em; }
.system-header__path i { width: 26px; height: 1px; background: linear-gradient(90deg,var(--accent),var(--secondary)); }
.menu-trigger { justify-self: end; width: 44px; height: 44px; padding: 12px 8px; display: grid; align-content: center; gap: 7px; border: 0; background: transparent; cursor: pointer; }
.menu-trigger span { width: 100%; height: 1px; background: var(--white); transition: transform 250ms ease,width 250ms ease; }
.menu-trigger span:last-child { width: 65%; justify-self: end; }
.menu-trigger:hover span:last-child { width: 100%; }
.menu-trigger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-trigger[aria-expanded="true"] span:last-child { width: 100%; transform: translateY(-4px) rotate(-45deg); }

.system-menu { position: fixed; z-index: 99; top: 72px; right: var(--gutter); width: min(420px,calc(100vw - 44px)); padding: 18px; border: 1px solid rgba(243,245,246,.17); background: rgba(3,5,7,.98); box-shadow: 0 28px 90px rgba(0,0,0,.6),0 0 45px rgba(var(--accent-rgb),.05); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transition: opacity 240ms ease,visibility 240ms ease,transform 360ms cubic-bezier(.16,1,.3,1); }
.system-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
.system-menu__label { padding: 3px 4px 16px; color: var(--dim); font: 700 10px/1 var(--mono); letter-spacing: .15em; }
.system-menu__item { min-height: 62px; padding: 14px 10px; display: grid; grid-template-columns: 34px 1fr auto; align-items: center; border-top: 1px solid var(--rule); color: var(--white); text-decoration: none; }
.system-menu__item small,
.system-menu__contact-heading small { color: var(--dim); font: 700 10px/1 var(--mono); }
.system-menu__item strong,
.system-menu__contact-heading strong { font-size: 17px; letter-spacing: .05em; }
.system-menu__item > span { font-size: 18px; }
.system-menu__item--disabled { color: rgba(243,245,246,.5); }
.system-menu__item em { color: rgba(243,245,246,.36); font: 700 9px/1 var(--mono); font-style: normal; letter-spacing: .11em; }
.system-menu__contact { border-top: 1px solid var(--rule); }
.system-menu__contact-heading { min-height: 62px; padding: 14px 10px; display: grid; grid-template-columns: 34px 1fr; align-items: center; }
.system-menu__contact a { min-height: 64px; padding: 13px 12px 13px 44px; display: grid; align-content: center; gap: 7px; border-top: 1px solid rgba(243,245,246,.1); color: var(--white); text-decoration: none; transition: background 220ms ease; }
.system-menu__contact a:hover,
.system-menu__contact a:focus-visible { outline: none; background: rgba(var(--accent-rgb),.055); }
.system-menu__contact a span { color: var(--dim); font: 700 9px/1 var(--mono); letter-spacing: .12em; }
.system-menu__contact a b { font-size: 15px; font-weight: 600; }

main { position: relative; z-index: 5; }
.room-hero { position: relative; width: min(calc(100% - (var(--gutter) * 2)),var(--max)); min-height: clamp(680px,calc(100svh - 118px),880px); margin: 118px auto 34px; overflow: hidden; isolation: isolate; border: 1px solid rgba(243,245,246,.17); background: #050608; }
.room-hero__image { position: absolute; z-index: -4; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 52%; filter: saturate(.78) contrast(1.1) brightness(.56); transform: scale(1.025); }
.page-portal .room-hero__image { object-position: 50% 50%; }
.room-hero__veil { position: absolute; z-index: -3; inset: 0; background: linear-gradient(90deg,rgba(2,3,4,.94) 0%,rgba(2,3,4,.77) 43%,rgba(2,3,4,.24) 76%),linear-gradient(180deg,rgba(2,3,4,.14),rgba(2,3,4,.08) 46%,rgba(2,3,4,.84) 100%); }
.room-hero__scan { position: absolute; z-index: -2; inset: -45% 0 auto; height: 31%; background: linear-gradient(180deg,transparent,rgba(var(--accent-rgb),.13),transparent); animation: room-scan 7s linear infinite; }
.room-hero__frame { position: absolute; z-index: 3; inset: 15px; pointer-events: none; background: linear-gradient(var(--accent),var(--accent)) left top/42px 1px no-repeat,linear-gradient(var(--accent),var(--accent)) left top/1px 42px no-repeat,linear-gradient(var(--secondary),var(--secondary)) right bottom/42px 1px no-repeat,linear-gradient(var(--secondary),var(--secondary)) right bottom/1px 42px no-repeat; opacity: .78; }
.room-hero__topline { position: absolute; z-index: 4; inset: 32px 34px auto; display: flex; justify-content: space-between; gap: 20px; color: rgba(243,245,246,.68); font: 700 10px/1 var(--mono); letter-spacing: .14em; }
.room-status { display: flex; align-items: center; gap: 9px; }
.room-status i,
.scheduler-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); animation: status 2.2s ease-in-out infinite; }
.room-hero__content { position: absolute; z-index: 4; left: clamp(32px,5vw,82px); top: 50%; width: min(700px,66%); transform: translateY(-50%); }
.eyebrow { margin: 0 0 18px; display: flex; align-items: center; gap: 12px; color: rgba(243,245,246,.55); font: 700 10px/1 var(--mono); letter-spacing: .16em; }
.eyebrow span { width: 34px; height: 1px; background: linear-gradient(90deg,var(--accent),var(--secondary)); }
h1,h2 { margin: 0; text-transform: uppercase; }
h1 { font-size: clamp(66px,7.7vw,126px); font-weight: 650; letter-spacing: -.07em; line-height: .82; }
.room-hero__copy { max-width: 600px; margin: 28px 0 0; color: rgba(243,245,246,.74); font-size: clamp(17px,1.25vw,21px); line-height: 1.5; }
.room-hero__actions { margin-top: 32px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.primary-action { min-width: 310px; min-height: 62px; padding: 0 20px 0 22px; display: flex; align-items: center; justify-content: space-between; border: 1px solid rgba(243,245,246,.26); border-left: 3px solid var(--accent); background: rgba(2,3,4,.48); color: var(--white); text-decoration: none; transition: transform 220ms ease,border-color 220ms ease,background 220ms ease; }
.primary-action strong { font-size: var(--action-text); letter-spacing: .075em; }
.primary-action > span { font-size: 22px; }
.primary-action:hover,
.primary-action:focus-visible { outline: none; transform: translateY(-3px); border-color: rgba(243,245,246,.55); background: rgba(2,3,4,.72); }
.text-action { color: rgba(243,245,246,.62); font: 700 11px/1 var(--mono); letter-spacing: .11em; text-decoration: none; transition: color 200ms ease; }
.text-action:hover,
.text-action:focus-visible { outline: none; color: var(--white); }
.room-specs { position: absolute; z-index: 4; inset: auto 32px 30px; display: grid; grid-template-columns: repeat(5,1fr); border: 1px solid rgba(243,245,246,.17); background: rgba(2,3,4,.72); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.room-specs div { min-height: 74px; padding: 14px 16px; display: grid; align-content: center; gap: 8px; }
.room-specs div + div { border-left: 1px solid rgba(243,245,246,.12); }
.room-specs small { color: var(--dim); font: 700 9px/1 var(--mono); letter-spacing: .12em; }
.room-specs strong { font-size: clamp(12px,1vw,15px); letter-spacing: .035em; }
.room-specs__price strong { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.room-specs__price strong > span { font-size: 1.1em; }
.room-specs__price strong em { color: rgba(243,245,246,.55); font: 700 8px/1.25 var(--mono); font-style: normal; letter-spacing: .09em; }

.booking-section { padding: clamp(105px,10vw,155px) 0 105px; border-top: 1px solid rgba(243,245,246,.08); background: linear-gradient(180deg,rgba(6,9,11,.78),var(--ink) 35%); }
.booking-shell { width: min(calc(100% - (var(--gutter) * 2)),var(--max)); margin-inline: auto; }
.booking-heading { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.55fr); align-items: end; gap: clamp(44px,8vw,130px); }
.booking-heading h2 { font-size: clamp(58px,6.9vw,110px); font-weight: 650; letter-spacing: -.07em; line-height: .84; }
.booking-heading__aside { max-width: 510px; justify-self: end; padding-bottom: 3px; }
.booking-heading__aside p { margin: 0; color: var(--muted); font-size: clamp(16px,1.15vw,19px); line-height: 1.55; }
.booking-heading__aside a { width: fit-content; margin-top: 20px; display: block; color: rgba(243,245,246,.55); font: 700 10px/1 var(--mono); letter-spacing: .13em; text-decoration: none; transition: color 200ms ease; }
.booking-heading__aside a:hover,
.booking-heading__aside a:focus-visible { outline: none; color: var(--white); }
.scheduler-frame { margin-top: clamp(46px,6vw,75px); overflow: hidden; border: 1px solid rgba(243,245,246,.18); background: #050607; box-shadow: 0 36px 110px rgba(0,0,0,.46),0 0 72px rgba(var(--accent-rgb),.04); }
.scheduler-frame__top,
.scheduler-frame__bottom { min-height: 56px; padding-inline: 22px; display: flex; align-items: center; justify-content: space-between; gap: 25px; color: rgba(243,245,246,.48); font: 700 10px/1.4 var(--mono); letter-spacing: .13em; }
.scheduler-frame__top { border-bottom: 1px solid var(--rule); }
.scheduler-frame__bottom { border-top: 1px solid var(--rule); }
.scheduler-live { display: flex; align-items: center; gap: 9px; }
.scheduler-frame__viewport { min-height: 760px; padding: 12px; background: #000; }
.scheduler-frame iframe { display: block; width: 100%; min-height: 900px; border: 0; background: #000; }
.booking-note { max-width: 850px; margin: 25px 0 0; color: rgba(243,245,246,.5); font-size: 14px; line-height: 1.6; }

.system-footer { position: relative; z-index: 5; min-height: 58px; padding-inline: var(--gutter); display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; border-top: 1px solid rgba(243,245,246,.09); color: rgba(243,245,246,.32); font: 700 9px/1 var(--mono); letter-spacing: .13em; }
.system-footer span:nth-child(2) { text-align: center; }
.system-footer span:last-child { text-align: right; }

[data-reveal] { opacity: 0; transition: opacity 700ms ease,transform 800ms cubic-bezier(.16,1,.3,1); }
.room-hero__content[data-reveal] { transform: translateY(calc(-50% + 20px)); }
.room-hero__content[data-reveal].is-visible { opacity: 1; transform: translateY(-50%); }
.room-specs[data-reveal],
.booking-heading[data-reveal],
.scheduler-frame[data-reveal] { transform: translateY(20px); }
.room-specs[data-reveal].is-visible,
.booking-heading[data-reveal].is-visible,
.scheduler-frame[data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes room-scan { from { transform: translateY(0); } to { transform: translateY(485%); } }
@keyframes status { 0%,100% { opacity:.38; } 50% { opacity:1; } }

@media (max-width: 980px) {
  .system-header { height: 72px; grid-template-columns: 1fr auto; }
  .system-header__path { display: none; }
  .system-menu { top: 62px; right: 16px; width: calc(100vw - 32px); }
  .room-hero { margin-top: 98px; min-height: 780px; }
  .room-hero__content { top: 43%; width: min(700px,calc(100% - 64px)); }
  .room-hero__veil { background: linear-gradient(90deg,rgba(2,3,4,.91),rgba(2,3,4,.62) 68%,rgba(2,3,4,.25)),linear-gradient(180deg,rgba(2,3,4,.12),rgba(2,3,4,.15) 45%,rgba(2,3,4,.9) 100%); }
  .room-specs { grid-template-columns: repeat(3,1fr); }
  .room-specs div:nth-child(4) { border-left: 0; border-top: 1px solid rgba(243,245,246,.12); }
  .room-specs div:nth-child(5) { border-top: 1px solid rgba(243,245,246,.12); }
  .booking-heading { grid-template-columns: 1fr; gap: 30px; }
  .booking-heading__aside { justify-self: start; }
}

@media (max-width: 620px) {
  html { scroll-padding-top: 68px; }
  .brand img { width: 136px; }
  .room-hero { width: calc(100% - 32px); min-height: 760px; margin-top: 88px; }
  .room-hero__topline { inset: 25px 24px auto; font-size: 9px; }
  .room-hero__content { left: 24px; top: 38%; width: calc(100% - 48px); }
  .eyebrow { font-size: 9px; }
  h1 { font-size: clamp(58px,17vw,78px); }
  .room-hero__copy { margin-top: 22px; font-size: 16px; }
  .primary-action { width: 100%; min-width: 0; }
  .primary-action strong { font-size: var(--action-text); }
  .text-action { font-size: 11px; }
  .room-specs { inset: auto 24px 24px; grid-template-columns: 1fr 1fr; }
  .room-specs div { min-height: 60px; padding: 11px 12px; }
  .room-specs div:nth-child(3),
  .room-specs div:nth-child(5) { border-left: 0; }
  .room-specs div:nth-child(n+3) { border-top: 1px solid rgba(243,245,246,.12); }
  .room-specs div:nth-child(4) { border-left: 1px solid rgba(243,245,246,.12); }
  .room-specs small { font-size: 8px; }
  .room-specs strong { font-size: 12px; }
  .room-specs__price strong { gap: 5px; }
  .room-specs__price strong em { font-size: 7px; }
  .booking-section { padding: 88px 0 78px; }
  .booking-shell { width: calc(100% - 32px); }
  .booking-heading h2 { font-size: clamp(50px,14vw,68px); }
  .booking-heading__aside p { font-size: 16px; }
  .scheduler-frame__top { min-height: 66px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 8px; }
  .scheduler-frame__viewport { padding: 0; }
  .scheduler-frame iframe { min-height: 1020px; }
  .scheduler-frame__bottom { flex-wrap: wrap; padding-block: 14px; font-size: 9px; }
  .booking-note { font-size: 13px; }
  .system-footer { grid-template-columns: 1fr; gap: 7px; padding-block: 18px; text-align: center; }
  .system-footer span:nth-child(2),
  .system-footer span:last-child { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  [data-reveal] { opacity:1!important; transform:none!important; }
  .room-hero__content[data-reveal],
  .room-hero__content[data-reveal].is-visible { transform:translateY(-50%)!important; }
}
