:root {
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Outfit", "Segoe UI", sans-serif;
  --gold: #c4a35a;
  --gold-soft: #d4bc82;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.25rem;
  --page-pad: 1rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-top: env(safe-area-inset-top, 0px);
}

.theme-gateway {
  --bg: #0c0d0b;
  --bg-elev: #141511;
  --ink: #f3eee6;
  --muted: #b7b0a4;
  --line: rgba(243, 238, 230, 0.14);
  --overlay: rgba(8, 9, 7, 0.42);
  color-scheme: dark;
}

.theme-forest {
  --bg: #12160f;
  --bg-elev: #1b2218;
  --ink: #f2efe8;
  --muted: #c5c0b4;
  --line: rgba(196, 163, 90, 0.22);
  --accent: #6b7f4a;
  --overlay: rgba(12, 18, 10, 0.48);
  color-scheme: dark;
}

.theme-thermal {
  --bg: #f3eee6;
  --bg-elev: #ebe4d8;
  --ink: #3f2f26;
  --muted: #6f6258;
  --line: rgba(63, 47, 38, 0.12);
  --accent: #a89b8c;
  --overlay: rgba(35, 26, 20, 0.38);
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

html { scroll-behavior: auto; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0.01em;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
  accent-color: var(--gold);
}

.eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.display {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1.display { font-size: clamp(2.15rem, 10vw, 3.4rem); margin: 0.2em 0 0.35em; }
h2.display { font-size: clamp(1.85rem, 7vw, 2.8rem); margin: 0.15em 0 0.4em; }
h3.display { font-size: clamp(1.45rem, 5vw, 2.1rem); margin: 0; }

.lede {
  font-size: 1rem;
  max-width: 38rem;
  color: var(--muted);
}

.container {
  width: min(1180px, calc(100% - (var(--page-pad) * 2)));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: calc(var(--nav-h) + var(--safe-top));
  padding-top: var(--safe-top);
  display: flex;
  align-items: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: visible;
}

.site-header nav {
  width: min(1280px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  height: 2.15rem;
  width: auto;
  max-width: min(188px, 62vw);
  object-fit: contain;
}

.theme-thermal .brand-logo {
  filter: invert(1);
}

.nav-links {
  display: none;
  position: absolute;
  top: calc(var(--nav-h) + var(--safe-top));
  left: 0;
  right: 0;
  background: var(--bg);
  flex-direction: column;
  padding: 0.4rem var(--page-pad) 1.2rem;
  border-bottom: 1px solid var(--line);
  z-index: 41;
}

.nav-links a {
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  opacity: 0.78;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold); }

.nav-links.open { display: flex; }

.nav-end { display: none; }

.nav-reserve {
  color: var(--gold);
  opacity: 1;
}

.ghost-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--ink);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

.btn:hover { background: var(--gold); color: #1a140e; }

.btn-solid {
  background: var(--gold);
  color: #1a140e;
}

.btn-solid:hover { background: var(--gold-soft); }

.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - var(--safe-top));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s var(--ease) infinite alternate;
}

.hero-media.facade-crop img {
  object-position: center 18%;
}

.hero-video iframe {
  display: none;
}

.hero-video img {
  animation: none;
  z-index: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, var(--overlay) 42%, rgba(0,0,0,0.72) 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto 7.5rem;
  padding: 0;
  color: #f6f1e8;
}

.hero-copy h1.display {
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 1.18;
  max-width: 16em;
  text-wrap: balance;
}

.hero-copy .lede {
  max-width: 36rem;
  color: rgba(246, 241, 232, 0.86);
}

@keyframes kenburns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.18) translate3d(-2%, -1%, 0); }
}

.reserve-bar {
  position: relative;
  z-index: 5;
  margin-top: -2.4rem;
  padding-bottom: 0.4rem;
}

.reserve-bar form,
.reserve-card {
  width: min(1080px, calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  background: color-mix(in srgb, var(--bg-elev) 92%, transparent);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 1rem;
  padding: 1rem 1.05rem 1.1rem;
}

.reserve-bar .btn {
  width: 100%;
}

.reserve-bar label,
.field label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.reserve-bar input,
.reserve-bar select,
.field input,
.field select,
.field textarea,
.pinhan-select__trigger {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.45rem 0 0.55rem;
  outline: none;
  font-size: 16px;
}

.reserve-bar select,
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 1.5rem;
  background-image:
    linear-gradient(45deg, transparent 46%, var(--gold) 46%, var(--gold) 54%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--gold) 46%, var(--gold) 54%, transparent 54%);
  background-size: 0.42rem 0.42rem, 0.42rem 0.42rem;
  background-position: calc(100% - 0.42rem) 58%, 100% 58%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.reserve-bar select option,
.field select option {
  background: var(--bg-elev);
  color: var(--ink);
}

.reserve-bar input:focus,
.reserve-bar select:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.pinhan-select.is-open .pinhan-select__trigger,
.pinhan-select__trigger:focus-visible {
  border-bottom-color: var(--gold);
}

.pinhan-select {
  position: relative;
  width: 100%;
}

.pinhan-select.is-ready .pinhan-select__native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.pinhan-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.45rem;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  background-image: none;
}

.pinhan-select__value {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pinhan-select__chevron {
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-bottom: 0.15rem;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.28s var(--ease);
}

.pinhan-select.is-open .pinhan-select__chevron {
  transform: rotate(225deg);
  margin-bottom: 0;
}

.pinhan-select__menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.5rem);
  z-index: 28;
  display: none;
  margin: 0;
  padding: 0.4rem 0;
  list-style: none;
  background: var(--bg-elev);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.pinhan-select.is-open .pinhan-select__menu { display: block; }

.pinhan-select.is-up .pinhan-select__menu {
  top: auto;
  bottom: calc(100% + 0.5rem);
}

.pinhan-select__option {
  padding: 0.68rem 1rem;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border-left: 2px solid transparent;
}

.pinhan-select__option[aria-selected="true"] {
  color: var(--gold);
  border-left-color: var(--gold);
}

.pinhan-select__option.is-active,
.pinhan-select__option:hover {
  background: color-mix(in srgb, var(--gold) 16%, transparent);
}

.theme-thermal .pinhan-select__menu {
  box-shadow: 0 18px 40px rgba(63, 47, 38, 0.12);
}

.scenes { padding: 4.5rem 0 2.5rem; }

.scene {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 2.2rem 0;
}

.scene-visual {
  overflow: hidden;
  min-height: 40vh;
}

.scene-visual img {
  width: 100%;
  height: 100%;
  min-height: 40vh;
  object-fit: cover;
  filter: saturate(0.92);
}

.quote-block {
  padding: 3.5rem 0;
  text-align: center;
}

.quote-block p {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 5.5vw, 1.85rem);
  line-height: 1.35;
  max-width: 22em;
  margin: 1.2rem auto 1.4rem;
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.room-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.room-card figure {
  overflow: hidden;
  aspect-ratio: 4/5;
  margin: 0;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.room-card:hover img { transform: scale(1.06); }

.room-card .meta {
  padding: 1.15rem 0 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.room-card h3 { margin-top: 0.35rem; }

.page-hero {
  padding: 2.4rem 0 2rem;
}

.split-page {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

.split-page .visual {
  min-height: 50vh;
  overflow: hidden;
}

.split-page .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-page .copy { padding: 2.5rem 1.35rem 3.4rem; }

.contact-split {
  min-height: auto;
  gap: 1.6rem;
  padding-bottom: 3.5rem;
}

.contact-split .copy,
.contact-split > div { padding: 0; }

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.45rem;
}

.amenity-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.04em;
}

.tour-slot {
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  min-height: 42vh;
  display: grid;
  place-items: center;
  background: var(--bg-elev);
  position: relative;
  overflow: hidden;
}

.tour-slot iframe {
  width: 100%;
  height: 52vh;
  border: 0;
}

.tour-soon {
  text-align: center;
  padding: 3rem 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.form-grid .wide { grid-column: 1 / -1; }

.form-grid .btn { width: 100%; }

.notice {
  padding: 1.2rem 1.3rem;
  border: 1px solid var(--gold);
  margin-bottom: 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 calc(2rem + var(--safe-bottom));
  margin-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid .eyebrow { margin: 0 0 0.75rem; }

.footer-grid p { margin: 0.35rem 0; }

.footer-grid a {
  display: block;
  margin: 0.35rem 0;
  opacity: 0.88;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
}

.footer-grid a:hover {
  color: var(--gold);
  opacity: 1;
}

.footer-brand p { max-width: 22rem; }

.footer-brand .brand-logo {
  height: 2.4rem;
  max-width: 200px;
  margin-bottom: 0.75rem;
}

.footer-story { line-height: 1.55; }

.footer-grid .btn {
  display: inline-flex;
  width: auto;
  margin: 0.35rem 0.45rem 0.35rem 0;
}

.footer-base {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, calc(1rem + var(--safe-bottom)));
  z-index: 50;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  background: #1c2e24;
  color: var(--gold-soft);
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}

.wa-float svg {
  width: 1.55rem;
  height: 1.55rem;
  display: block;
}

.theme-thermal .wa-float { background: #3f2f26; }

.gateway {
  height: 100dvh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #090a08;
  color: #f4efe6;
}

.gateway-panel {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  color: inherit;
}

.gateway-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: saturate(0.85) brightness(0.72);
}

.gateway-panel.facade-crop img { object-position: center 16%; }

.gateway-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,9,7,0.15), rgba(8,9,7,0.55) 70%);
}

.gateway-caption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.15rem;
  z-index: 2;
}

.gateway-caption h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 10vw, 3.4rem);
  margin: 0.12em 0 0.2em;
  line-height: 0.95;
}

.gateway-brand {
  position: fixed;
  top: max(0.9rem, var(--safe-top));
  left: 0;
  right: 0;
  z-index: 6;
  display: grid;
  place-items: start center;
  pointer-events: none;
  text-align: center;
}

.gateway-icon {
  width: 3.6rem;
  height: auto;
  padding: 0.4rem;
  background: rgba(9,10,8,0.42);
  border: 1px solid var(--gold);
  backdrop-filter: blur(10px);
}

.gateway-foot {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  top: 50%;
  z-index: 7;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 3.6vw, 1.2rem);
  letter-spacing: 0.04em;
  pointer-events: none;
  color: rgba(244, 239, 230, 0.92);
  transform: translateY(-50%);
  text-shadow: 0 8px 24px rgba(0,0,0,0.55);
}

.reveal { opacity: 0; transform: translateY(28px); }

.map-frame {
  width: 100%;
  min-height: 42vh;
  border: 0;
  filter: grayscale(0.35) contrast(0.95);
}

.contact-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.6rem;
}

.contact-actions .btn { flex: 1 1 9rem; }

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--gold);
  color: inherit;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
  min-height: 2.6rem;
  min-width: 4.6rem;
  padding: 0 0.75rem;
  cursor: pointer;
  justify-self: end;
  z-index: 42;
}

@media (min-width: 720px) {
  :root { --page-pad: 1.5rem; }

  .reserve-bar form,
  .reserve-card {
    grid-template-columns: 1fr 1fr;
  }

  .reserve-bar .btn {
    width: auto;
    grid-column: 1 / -1;
    justify-self: start;
  }

  .form-grid { grid-template-columns: 1fr 1fr; }

  .form-grid .btn { width: auto; }

  .room-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .footer-base {
    flex-direction: row;
    justify-content: space-between;
  }

  .scene-visual,
  .scene-visual img { min-height: 48vh; }

  .gateway-caption {
    left: 8%;
    right: 8%;
  }

  .gateway-icon { width: 4.4rem; }
}

@media (min-width: 960px) {
  :root { --nav-h: 5.25rem; }

  h1.display { font-size: clamp(3.2rem, 8vw, 7.2rem); }
  h2.display { font-size: clamp(2.4rem, 5vw, 4.4rem); }
  h3.display { font-size: clamp(1.8rem, 3vw, 2.6rem); }
  .lede { font-size: 1.08rem; }
  .eyebrow { font-size: 0.72rem; letter-spacing: 0.34em; }

  .site-header nav {
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
  }

  .brand-logo {
    height: 2.85rem;
    max-width: min(240px, 42vw);
  }

  .mobile-toggle { display: none; }

  .nav-end {
    display: flex;
    justify-self: end;
    align-items: center;
  }

  .nav-links {
    display: flex;
    position: static;
    flex-direction: row;
    gap: 1.6rem;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .nav-links a {
    min-height: 0;
    display: inline;
  }

  .nav-links a.nav-reserve { display: none; }

  .nav-end .btn {
    padding: 0.85rem 1.35rem;
    letter-spacing: 0.16em;
  }

  .hero-video iframe {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    border: 0;
    z-index: 1;
  }

  .hero-copy {
    margin-bottom: 16vh;
  }

  .hero-copy h1.display {
    font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  }

  .reserve-bar { margin-top: -3.2rem; }

  .reserve-bar form,
  .reserve-card {
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 0.4rem 1rem;
    padding: 1.1rem 1.2rem;
    align-items: end;
  }

  .reserve-bar .btn {
    width: auto;
    grid-column: auto;
  }

  .scenes { padding: 8rem 0 4rem; }

  .scene {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    padding: 4.5rem 0;
  }

  .scene:nth-child(even) { grid-template-columns: 0.95fr 1.05fr; }
  .scene:nth-child(even) .scene-copy { order: -1; }

  .scene-visual,
  .scene-visual img { min-height: 58vh; }

  .quote-block { padding: 7rem 0; }

  .quote-block p { font-size: clamp(1.5rem, 3.2vw, 2.4rem); }

  .room-grid { grid-template-columns: repeat(3, 1fr); }

  .page-hero { padding: 4.5rem 0 3rem; }

  .split-page {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: calc(100vh - var(--nav-h));
  }

  .split-page .visual { min-height: 70vh; }

  .split-page .copy { padding: 12vh clamp(2.2rem, 8vw, 5.5rem) 8vh; }

  .contact-split {
    min-height: auto;
    gap: 2rem;
    padding-bottom: 4rem;
  }

  .tour-slot { min-height: 52vh; }
  .tour-slot iframe { height: 62vh; }
  .map-frame { min-height: 52vh; }

  .site-footer {
    padding: 4.5rem 0 2rem;
    margin-top: 5rem;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 0.8fr 0.95fr;
    gap: 2.4rem 2rem;
  }

  .footer-brand .brand-logo {
    height: 3.15rem;
    max-width: 260px;
  }

  .footer-base { margin-top: 3rem; padding-top: 1.4rem; }

  .gateway {
    height: 100dvh;
    min-height: 100dvh;
    flex-direction: row;
  }

  .gateway-panel {
    flex: 1;
    min-height: 0;
    transition: flex 0.95s var(--ease);
  }

  .gateway-panel img {
    transform: scale(1.12);
    transition: transform 1.4s var(--ease), filter 1s var(--ease);
  }

  .gateway-veil { transition: opacity 0.8s var(--ease); }

  .gateway-caption {
    bottom: 12%;
  }

  .gateway-caption h2 {
    font-size: clamp(2.6rem, 5vw, 5rem);
    transform: translateY(12px);
    transition: transform 0.8s var(--ease);
  }

  .gateway-brand {
    inset: 0;
    top: 0;
    place-items: center;
  }

  .gateway-icon {
    width: 5.4rem;
    padding: 0.55rem;
  }

  .gateway-foot {
    left: 0;
    right: 0;
    top: auto;
    bottom: 1.6rem;
    transform: none;
    font-size: clamp(1.05rem, 2vw, 1.45rem);
  }
}

@media (min-width: 960px) and (hover: hover) {
  .gateway-panel:hover,
  .gateway-panel:focus-visible { flex: 1.38; }

  .gateway-panel:hover img,
  .gateway-panel:focus-visible img {
    transform: scale(1.03);
    filter: saturate(1) brightness(0.92);
  }

  .gateway-panel:hover .gateway-veil { opacity: 0.55; }

  .gateway-panel:hover .gateway-caption h2,
  .gateway-panel:focus-visible .gateway-caption h2 { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img, .gateway-panel, .gateway-panel img, .room-card img, .reveal {
    animation: none;
    transition: none;
    transform: none;
  }
  .hero-video iframe { display: none; }
}
