:root {
  --night: #15120f;
  --night-2: #211a15;
  --cream: #f5efe3;
  --paper: #fbf6ec;
  --paper-2: #efe2cd;
  --ink: #201914;
  --muted: #756b61;
  --line: rgba(66, 49, 35, .18);
  --gold: #c69a54;
  --gold-2: #ead5a8;
  --terracotta: #89533d;
  --green: #273c34;
  --shadow: 0 28px 90px rgba(32, 25, 20, .18);
  --container: min(1180px, calc(100vw - 40px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }

.container { width: var(--container); margin: 0 auto; }
.section { padding: clamp(76px, 9vw, 128px) 0; position: relative; }
.kicker {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 800;
  color: var(--gold);
}
.section-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 116px);
  line-height: .75;
  color: rgba(198, 154, 84, .42);
  margin-bottom: 16px;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -.055em; }
h1 { font-size: clamp(54px, 9vw, 132px); line-height: .84; margin: 0; }
h2 { font-size: clamp(42px, 6vw, 82px); line-height: .9; margin: 0 0 22px; }
h3 { font-size: clamp(28px, 3vw, 44px); line-height: .96; margin: 0; }
p { line-height: 1.72; }

.page-loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--night);
  z-index: 1000;
  color: var(--gold-2);
  animation: loaderHide .9s ease .55s forwards;
  pointer-events: none;
}
.page-loader span {
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 110px);
  letter-spacing: -.06em;
}
@keyframes loaderHide { to { opacity: 0; visibility: hidden; } }

.lux-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 94px;
  padding: 18px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  transition: background .3s ease, border-color .3s ease, min-height .3s ease, padding .3s ease;
}
.lux-header.is-scrolled {
  min-height: 74px;
  padding-block: 10px;
  background: rgba(21, 18, 15, .78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.menu-button {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}
.menu-button span {
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
}
.menu-button span + span { width: 18px; margin-left: -44px; transform: translateY(7px); }
.brand {
  display: grid;
  justify-items: center;
  line-height: 1;
  text-align: center;
}
.brand__crest {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 27px;
  margin-bottom: 4px;
}
.brand__name {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -.04em;
}
.brand__sub {
  margin-top: 3px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .22em;
  opacity: .74;
}
.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}
.book-link {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
  color: #fff;
  padding: 0 20px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
  font-weight: 900;
}

.side-rail {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: grid;
  gap: 14px;
  color: #fff;
}
.side-rail a {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 900;
  opacity: .78;
}

.fullscreen-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background:
    linear-gradient(90deg, rgba(21,18,15,.92), rgba(21,18,15,.78)),
    url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=1800&q=80') center/cover;
  color: var(--paper);
  opacity: 0;
  visibility: hidden;
  transition: .35s ease;
}
.fullscreen-menu.is-open { opacity: 1; visibility: visible; }
.fullscreen-menu__inner {
  width: min(1120px, calc(100vw - 40px));
  min-height: 100dvh;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 42px;
  position: relative;
}
.menu-close {
  position: absolute;
  top: 30px;
  right: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.32);
  background: transparent;
  color: #fff;
  font-size: 32px;
}
.fullscreen-menu__brand { display: grid; gap: 8px; }
.fullscreen-menu__brand span { font-family: var(--serif); font-size: clamp(40px, 6vw, 86px); letter-spacing: -.06em; }
.fullscreen-menu__brand small { color: rgba(255,255,255,.68); font-size: 15px; }
.fullscreen-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.16);
  border-left: 1px solid rgba(255,255,255,.16);
}
.fullscreen-menu__grid a {
  min-height: 150px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
  font-family: var(--serif);
  font-size: 28px;
  transition: background .25s ease;
}
.fullscreen-menu__grid a:hover { background: rgba(255,255,255,.1); }
.fullscreen-menu__grid span { font-family: var(--sans); color: var(--gold); font-size: 12px; letter-spacing: .18em; }

.hero {
  min-height: 100svh;
  position: relative;
  color: #fff;
  display: grid;
  align-items: end;
  padding: 128px 0 34px;
  overflow: hidden;
  background: var(--night);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,13,10,.72) 0%, rgba(15,13,10,.32) 46%, rgba(15,13,10,.12) 100%),
    linear-gradient(0deg, rgba(21,18,15,.72) 0%, rgba(21,18,15,.08) 45%),
    url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&w=2200&q=82') center/cover;
  transform: scale(1.03);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(rgba(255,255,255,.18) .8px, transparent .8px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
}
.hero__content {
  position: relative;
  width: min(980px, calc(100vw - 56px));
  margin: 0 auto 150px;
  text-align: center;
}
.hero__lead {
  width: min(760px, 100%);
  margin: 28px auto 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 24px);
}
.hero__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.hero__note {
  position: absolute;
  left: max(28px, calc((100vw - 1180px)/2));
  bottom: 48px;
  width: 260px;
  padding-left: 22px;
  border-left: 1px solid rgba(255,255,255,.34);
}
.hero__note span { font-family: var(--serif); font-size: 54px; color: var(--gold-2); }
.hero__note p { margin: 8px 0 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.6; }
.booking-dock {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: min(1040px, calc(100vw - 300px));
  min-height: 96px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(245, 239, 227, .92);
  backdrop-filter: blur(20px);
  color: var(--ink);
  border-radius: 999px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 12px;
  box-shadow: 0 25px 80px rgba(0,0,0,.24);
}
.booking-dock label,
.booking-form label,
.callback-form label {
  display: grid;
  gap: 7px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
  color: rgba(32,25,20,.64);
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border-radius: 18px;
  padding: 14px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(198,154,84,.16); }
.booking-dock input, .booking-dock select { border: 0; background: transparent; padding: 3px 0 0; border-radius: 0; }
.booking-dock label { border-right: 1px solid var(--line); padding-inline: 18px; }
.booking-dock label:nth-of-type(4) { border-right: 0; }

.btn {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--ink); box-shadow: 0 18px 46px rgba(0,0,0,.22); }
.btn--ghost { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.08); }
.btn--gold { background: linear-gradient(135deg, #f1d8a0, var(--gold)); color: #201914; box-shadow: 0 18px 40px rgba(141,88,41,.28); }
.btn--dark { background: var(--night); color: #fff; }
.btn--line { background: transparent; color: var(--ink); border-color: var(--line); min-height: 44px; padding-inline: 18px; }
.btn--full { width: 100%; }

.intro {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.intro__grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}
.intro__text p { font-size: clamp(19px, 2.3vw, 28px); line-height: 1.46; color: #44382f; margin: 0; }
.intro__facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.intro__facts span,
.route-tags span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: #5c5047;
  background: rgba(255,255,255,.44);
  font-size: 13px;
  font-weight: 800;
}

.sense__head { max-width: 820px; }
.sense__head p:not(.kicker) { color: var(--muted); max-width: 650px; }
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.filter {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  min-height: 44px;
  padding: 0 18px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 900;
}
.filter.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.rooms-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(360px, 440px);
  gap: 22px;
  overflow-x: auto;
  padding: 0 max(20px, calc((100vw - 1180px)/2)) 22px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.room-panel {
  min-height: 680px;
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  scroll-snap-align: start;
  color: #fff;
  background: var(--night);
  box-shadow: var(--shadow);
  transition: transform .35s ease, opacity .35s ease;
}
.room-panel.is-hidden { opacity: .18; transform: scale(.96); pointer-events: none; }
.room-panel img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.room-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21,18,15,.94) 0%, rgba(21,18,15,.56) 42%, rgba(21,18,15,.02) 100%);
}
.room-panel__body {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 30px;
  display: grid;
  gap: 14px;
}
.room-panel__body > span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 900; }
.room-panel__body p { color: rgba(255,255,255,.78); margin: 0; }
.room-panel__body ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.room-panel__body li { border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 7px 10px; font-size: 12px; color: rgba(255,255,255,.82); }
.room-panel__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 8px; }
.room-panel__bottom strong { font-size: 24px; color: #fff; }
.room-panel .btn--line { color: #fff; border-color: rgba(255,255,255,.28); }

.taste {
  overflow: hidden;
  background: var(--night);
  color: var(--paper);
}
.taste::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21,18,15,.88), rgba(21,18,15,.44)),
    url('https://images.unsplash.com/photo-1552566626-52f8b828add9?auto=format&fit=crop&w=2200&q=80') center/cover;
  opacity: .82;
}
.taste__grid { position: relative; display: grid; grid-template-columns: .9fr 1fr; gap: 70px; align-items: center; }
.taste .sense__head p:not(.kicker) { color: rgba(255,255,255,.74); }
.taste__plate {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: radial-gradient(circle, rgba(255,255,255,.22), rgba(255,255,255,.03) 62%, transparent 63%);
  z-index: 1;
}
.taste__plate--one { right: 8%; top: 12%; }
.taste__plate--two { left: 38%; bottom: -100px; transform: scale(.8); }
.taste__schedule {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}
.taste__schedule article {
  min-height: 150px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  border-radius: 28px;
}
.taste__schedule span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 900; }
.taste__schedule p { color: rgba(255,255,255,.72); margin-bottom: 0; }

.touch { background: var(--paper); }
.services-mosaic {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, 320px);
  gap: 22px;
}
.service-tile {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  color: #fff;
  background: var(--night);
  min-height: 310px;
}
.service-tile--large { grid-row: span 2; }
.service-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.service-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(21,18,15,.88), rgba(21,18,15,.1)); }
.service-tile div { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px; }
.service-tile span { color: var(--gold-2); text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 900; }
.service-tile p { color: rgba(255,255,255,.76); max-width: 490px; }
.text-link { border: 0; background: transparent; padding: 0 0 5px; color: inherit; border-bottom: 1px solid currentColor; font-weight: 900; }

.breathe {
  background: var(--green);
  color: var(--paper);
  overflow: hidden;
}
.breathe__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.breathe__visual {
  min-height: 660px;
  border-radius: 42px;
  background:
    linear-gradient(0deg, rgba(21,18,15,.22), rgba(21,18,15,.08)),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1600&q=80') center/cover;
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
}
.breathe .sense__head p:not(.kicker) { color: rgba(255,255,255,.74); }
.breathe .route-tags { margin: 26px 0 28px; }
.breathe .route-tags span { color: rgba(255,255,255,.82); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.06); }

.listen { background: var(--cream); }
.listen__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: start; }
.reviews { display: grid; gap: 18px; }
.reviews article {
  padding: 34px;
  border-radius: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(32,25,20,.08);
}
.reviews p { margin: 0; font-family: var(--serif); font-size: clamp(26px, 3vw, 42px); line-height: 1.08; letter-spacing: -.05em; }
.reviews span { display: block; margin-top: 18px; color: var(--muted); font-weight: 800; }
.metric-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.metric-row article { border-top: 1px solid var(--line); padding-top: 20px; }
.metric-row strong { display: block; font-family: var(--serif); font-size: clamp(42px, 5vw, 74px); font-weight: 500; color: var(--terracotta); }
.metric-row span { color: var(--muted); font-weight: 800; }

.feel { background: var(--paper); }
.feel__grid { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 650px; align-items: center; gap: 70px; }
.feel__copy p:not(.kicker) { color: var(--muted); max-width: 560px; }
.feel__photo {
  min-height: 650px;
  border-radius: 42px 42px 42px 6px;
  background:
    linear-gradient(0deg, rgba(21,18,15,.18), rgba(21,18,15,.02)),
    url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1600&q=80') center/cover;
  box-shadow: var(--shadow);
}

.booking {
  background: var(--night);
  color: var(--paper);
}
.booking__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 6vw, 84px); align-items: start; }
.booking__copy p:not(.kicker) { color: rgba(255,255,255,.72); }
.booking__copy ol { margin: 34px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.booking__copy li { display: grid; grid-template-columns: 120px 1fr; gap: 16px; border-bottom: 1px solid rgba(255,255,255,.14); padding: 16px 0; }
.booking__copy span { color: rgba(255,255,255,.62); }
.booking-form,
.callback-form {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 38px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.form-wide { grid-column: 1 / -1; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
}
.consent input { width: auto; margin-top: 4px; }
.booking-result { margin-top: 16px; color: var(--green); font-weight: 800; line-height: 1.55; }
.booking-result a { border-bottom: 1px solid currentColor; }

.contacts { background: var(--cream); }
.contacts__grid { display: grid; grid-template-columns: 1fr 430px; gap: 58px; align-items: start; }
.contacts__main > p:not(.kicker) { max-width: 620px; color: var(--muted); font-size: 20px; }
.contact-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.contact-links a {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  font-weight: 900;
}
.callback-form { display: grid; gap: 16px; box-shadow: var(--shadow); }

.footer {
  padding: 56px 0 110px;
  background: #0e0c0a;
  color: var(--paper);
}
.footer__grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 32px; }
.footer strong { display: block; font-family: var(--serif); font-size: 28px; font-weight: 500; margin-bottom: 12px; }
.footer p, .footer span, .footer a { display: block; color: rgba(255,255,255,.66); margin: 7px 0; }

.mobile-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 200;
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 7px;
  border-radius: 24px;
  background: rgba(21,18,15,.86);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0,0,0,.24);
}
.mobile-bar a,
.mobile-bar button {
  min-height: 46px;
  border: 0;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  color: inherit;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mobile-bar button:nth-child(2) { background: var(--gold); color: #1d1712; }

.modal {
  border: 0;
  border-radius: 32px;
  padding: 0;
  max-width: min(460px, calc(100vw - 32px));
  background: transparent;
}
.modal::backdrop { background: rgba(12,10,8,.72); backdrop-filter: blur(10px); }
.modal__inner { padding: 34px; background: var(--paper); color: var(--ink); border-radius: 32px; box-shadow: var(--shadow); }
.modal__close { float: right; border: 0; background: transparent; font-size: 34px; color: var(--muted); }
.toast {
  position: fixed;
  left: 50%;
  bottom: 34px;
  transform: translate(-50%, 20px);
  z-index: 500;
  width: min(520px, calc(100vw - 32px));
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--night);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.24);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
  text-align: center;
  font-weight: 800;
}
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1180px) {
  .booking-dock { width: min(940px, calc(100vw - 80px)); grid-template-columns: repeat(2, 1fr) auto; border-radius: 34px; }
  .booking-dock label:nth-of-type(2) { border-right: 0; }
  .booking-dock label:nth-of-type(4) { border-right: 0; }
  .hero__note { display: none; }
  .side-rail { display: none; }
}

@media (max-width: 920px) {
  .lux-header { grid-template-columns: auto 1fr auto; padding-inline: 16px; }
  .brand__sub, .header-actions a { display: none; }
  .header-actions { gap: 8px; }
  .book-link { padding-inline: 14px; min-height: 42px; }
  .fullscreen-menu__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: 960px; align-items: center; padding-top: 120px; }
  .hero__content { margin-bottom: 280px; width: calc(100vw - 32px); }
  .booking-dock { bottom: 110px; grid-template-columns: 1fr; width: calc(100vw - 28px); border-radius: 28px; }
  .booking-dock label { border-right: 0; border-bottom: 1px solid var(--line); padding: 10px 14px; }
  .booking-dock label:nth-of-type(4) { border-bottom: 0; }
  .intro__grid,
  .taste__grid,
  .breathe__grid,
  .listen__grid,
  .feel__grid,
  .booking__grid,
  .contacts__grid { grid-template-columns: 1fr; }
  .services-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .service-tile, .service-tile--large { min-height: 420px; grid-row: auto; }
  .breathe__visual, .feel__photo { min-height: 460px; }
  .metric-row { grid-template-columns: repeat(2, 1fr); }
  .contact-links { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  .toast { bottom: 94px; }
}

@media (max-width: 620px) {
  :root { --container: min(100vw - 24px, 1180px); }
  .section { padding: 72px 0; }
  .menu-button em { display: none; }
  .menu-button span + span { margin-left: -44px; }
  .brand__crest { width: 38px; height: 38px; font-size: 23px; }
  .brand__name { font-size: 20px; }
  .book-link { font-size: 0; width: 42px; padding: 0; }
  .book-link::after { content: "↗"; font-size: 20px; }
  .fullscreen-menu__inner { align-content: start; padding: 110px 0 40px; }
  .fullscreen-menu__grid { grid-template-columns: 1fr; }
  .fullscreen-menu__grid a { min-height: 92px; font-size: 24px; padding: 18px; }
  .hero { min-height: 900px; }
  .hero__content { text-align: left; margin-bottom: 330px; }
  .hero__actions { justify-content: flex-start; }
  .hero__actions .btn { width: 100%; }
  h1 { font-size: clamp(50px, 16vw, 74px); }
  h2 { font-size: clamp(40px, 12vw, 58px); }
  .rooms-strip { grid-auto-columns: minmax(292px, calc(100vw - 32px)); padding-inline: 12px; }
  .room-panel { min-height: 620px; }
  .room-panel__body { padding: 22px; }
  .room-panel__bottom { display: grid; align-items: start; }
  .form-grid { grid-template-columns: 1fr; }
  .booking__copy li { grid-template-columns: 1fr; gap: 4px; }
  .metric-row { grid-template-columns: 1fr; }
}
