:root {
  --night: #0d100e;
  --forest: #18201b;
  --ivory: #f2eee5;
  --paper: #faf8f3;
  --gold: #c2a46f;
  --gold-dark: #8d7448;
  --ink: #171a18;
  --muted: #73766f;
  --line: rgba(23, 26, 24, .16);
  --light-line: rgba(255, 255, 255, .22);
  --serif: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .95;
}
h1 { font-size: clamp(4rem, 9.5vw, 10.5rem); }
h2 { font-size: clamp(3.2rem, 6.8vw, 7.4rem); }
h3 { font-size: clamp(2rem, 3vw, 3.3rem); }
::selection { color: var(--night); background: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }

.skip {
  position: fixed;
  top: .8rem;
  left: .8rem;
  z-index: 1000;
  padding: .8rem 1rem;
  color: white;
  background: var(--night);
  transform: translateY(-180%);
}
.skip:focus { transform: none; }
.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold-dark);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.eyebrow::before { width: 46px; height: 1px; background: currentColor; content: ""; }
.eyebrow-light { color: var(--gold); }
.button {
  position: relative;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  overflow: hidden;
  padding: .9rem 1.7rem;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color .35s ease, background .35s ease, border-color .35s ease, transform .35s ease;
}
.button::before {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .14);
  content: "";
  transform: translateX(-105%) skewX(-18deg);
  transition: transform .75s cubic-bezier(.2, .75, .25, 1);
}
.button:hover { transform: translateY(-3px); }
.button:hover::before { transform: translateX(105%) skewX(-18deg); }
.button-gold { color: #11130f; background: var(--gold); }
.button-gold:hover { background: #d1b780; }
.button-light { color: white; border-color: rgba(255, 255, 255, .5); }
.button-light:hover { color: var(--night); background: white; }
.button-dark { color: white; background: var(--night); }
.arrow { font-size: 1.2em; transition: transform .3s ease; }
.button:hover .arrow, .text-link:hover .arrow { transform: translateX(5px); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid currentColor;
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
}
.curtain {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: var(--night);
  clip-path: inset(0);
  transition: clip-path 1s cubic-bezier(.76, 0, .24, 1), visibility 0s 1s;
}
.curtain span {
  position: relative;
  width: 130px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(194, 164, 111, .6);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2.5rem;
  font-style: italic;
}
.curtain span::after {
  position: absolute;
  width: 108px;
  aspect-ratio: 1;
  border: 1px solid rgba(194, 164, 111, .2);
  border-radius: 50%;
  content: "";
}
.is-ready .curtain { visibility: hidden; clip-path: inset(0 0 100% 0); }
.is-leaving .curtain {
  visibility: visible;
  clip-path: inset(0);
  transition-delay: 0s;
}

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: linear-gradient(180deg, rgba(6, 9, 7, .6), transparent);
  transition: background .4s ease, border-color .4s ease, transform .4s ease;
}
.scrolled .header {
  border-color: rgba(194, 164, 111, .16);
  background: rgba(10, 13, 11, .94);
  backdrop-filter: blur(20px);
}
.header-inner { min-height: 104px; display: flex; align-items: center; gap: 2.4rem; }
.brand { display: inline-flex; align-items: center; gap: 1rem; margin-right: auto; }
.brand-mark {
  width: 54px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .52);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.brand-copy small { margin-top: .45rem; color: rgba(255, 255, 255, .58); font-size: .48rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a:not(.button) {
  position: relative;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle {
  width: 48px;
  aspect-ratio: 1;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  cursor: pointer;
}
.menu-lines, .menu-lines::before, .menu-lines::after {
  width: 20px;
  height: 1px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform .3s ease;
}
.menu-lines { position: relative; }
.menu-lines::before { position: absolute; top: -6px; }
.menu-lines::after { position: absolute; top: 6px; }
.menu-open .menu-lines { background: transparent; }
.menu-open .menu-lines::before { top: 0; transform: rotate(45deg); }
.menu-open .menu-lines::after { top: 0; transform: rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-content: center;
  padding: 8rem 2rem 3rem;
  color: white;
  background: radial-gradient(circle at 80% 20%, rgba(194, 164, 111, .17), transparent 28rem), var(--night);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .45s ease, transform .45s ease;
}
.menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu nav { display: grid; }
.mobile-menu a {
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 10vw, 5rem);
  line-height: 1;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--night);
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: imageDrift 13s ease-in-out infinite alternate;
}
.home-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 5, .36) 0%, transparent 34%, rgba(4, 7, 5, .72) 100%),
    linear-gradient(90deg, rgba(4, 7, 5, .46), transparent 58%);
  content: "";
}
.hero-content { position: relative; z-index: 2; padding: 11rem 0 7rem; }
.hero-copy { max-width: 1080px; }
.hero-copy h1 { margin-bottom: 1.5rem; text-wrap: balance; }
.hero-copy h1 em { display: block; color: var(--gold); font-weight: 400; transform: translateX(clamp(1rem, 9vw, 9rem)); }
.hero-bottom { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.hero-intro { max-width: 480px; margin: 0; color: rgba(255, 255, 255, .72); font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.55rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.slider-count { position: absolute; right: 2rem; bottom: 2rem; z-index: 3; display: flex; align-items: center; gap: .8rem; color: rgba(255, 255, 255, .64); font-size: .62rem; letter-spacing: .16em; }
.slider-line { width: 60px; height: 1px; overflow: hidden; background: rgba(255, 255, 255, .3); }
.slider-line::after { width: 100%; height: 100%; display: block; background: var(--gold); content: ""; transform-origin: left; animation: slideTimer 6s linear infinite; }
.scroll-cue {
  position: absolute;
  bottom: 1.6rem;
  left: 2rem;
  z-index: 3;
  color: rgba(255, 255, 255, .58);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.facts {
  color: white;
  background: var(--night);
}
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { min-height: 165px; display: grid; align-content: center; padding: 2rem; border-right: 1px solid var(--light-line); }
.fact:last-child { border-right: 0; }
.fact strong { color: var(--gold); font-family: var(--serif); font-size: clamp(2.5rem, 4vw, 4.8rem); font-weight: 400; line-height: 1; }
.fact span { margin-top: .6rem; color: rgba(255, 255, 255, .55); font-size: .6rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }

.statement { padding: clamp(8rem, 13vw, 15rem) 0; }
.statement-grid { display: grid; grid-template-columns: .45fr 1.55fr; gap: clamp(3rem, 9vw, 10rem); }
.statement h2 { margin: 0; }
.statement h2 em { color: var(--gold-dark); font-weight: 400; }

.visual-stack { background: var(--night); }
.visual-panel {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
}
.visual-panel img {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax, 0), 0) scale(1.03);
  will-change: transform;
}
.visual-panel::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(5, 8, 6, .75)); content: ""; }
.visual-copy { position: relative; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 3rem; padding-block: clamp(3rem, 7vw, 7rem); }
.visual-copy h2 { max-width: 800px; margin: .8rem 0 0; }
.visual-copy p { max-width: 350px; margin-bottom: .5rem; color: rgba(255, 255, 255, .68); }

.mosaic { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 46vw 32vw; gap: 8px; padding: 8px; background: var(--night); }
.mosaic-card { position: relative; overflow: hidden; color: white; background: var(--forest); }
.mosaic-card:first-child { grid-row: 1 / 3; }
.mosaic-card img { height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2, .7, .2, 1), filter .7s ease; }
.mosaic-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 6, .68)); content: ""; }
.mosaic-card:hover img { transform: scale(1.055); }
.mosaic-label { position: absolute; right: 2rem; bottom: 2rem; left: 2rem; z-index: 1; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.mosaic-label span { font-size: .6rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.mosaic-label strong { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 4.6rem); font-weight: 400; letter-spacing: -.045em; }

.page-hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: var(--night);
}
.page-hero img { position: absolute; inset: 0; height: 100%; object-fit: cover; animation: imageDrift 18s ease-in-out infinite alternate; }
.page-hero::after { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4, 7, 5, .35), rgba(4, 7, 5, .78)); content: ""; }
.page-hero-content { position: relative; z-index: 1; padding: 13rem 0 6rem; }
.page-hero h1 { max-width: 1100px; margin: 1rem 0 0; }
.page-hero h1 em { color: var(--gold); font-weight: 400; }

.section { padding: clamp(7rem, 11vw, 13rem) 0; }
.section-dark { color: white; background: var(--night); }
.section-ivory { background: var(--ivory); }
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 820px; }
.split-image { overflow: hidden; }
.split-image img { height: 100%; object-fit: cover; transform: translate3d(0, var(--parallax, 0), 0) scale(1.08); }
.split-copy { display: grid; align-content: center; padding: clamp(4rem, 8vw, 9rem); background: var(--ivory); }
.split-copy h2 { margin: 1rem 0 2rem; }
.split-copy p { max-width: 520px; color: var(--muted); font-family: var(--serif); font-size: 1.25rem; line-height: 1.7; }
.split-copy .text-link { justify-self: start; margin-top: 1.5rem; }
.split-reverse .split-image { order: 2; }
.split-reverse .split-copy { order: 1; background: var(--paper); }

.tour { padding: clamp(7rem, 10vw, 11rem) 0 0; background: var(--paper); }
.tour-head { display: grid; grid-template-columns: .5fr 1.5fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.tour-head h2 { max-width: 950px; margin: 0; }
.tour iframe { width: 100%; height: min(78svh, 820px); display: block; border: 0; background: var(--night); }

.feature-film {
  position: relative;
  min-height: 80svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: white;
  text-align: center;
  background: var(--night);
}
.feature-film img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.feature-film::after { position: absolute; inset: 0; background: rgba(4, 7, 5, .58); content: ""; }
.feature-film-copy { position: relative; z-index: 1; max-width: 850px; padding: 3rem; }
.feature-film-copy h2 { margin: 1rem 0 2rem; }

.room-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; background: var(--night); }
.room-card { position: relative; min-height: 72svh; overflow: hidden; color: white; background: var(--night); }
.room-card img { height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2, .7, .2, 1); }
.room-card::after { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(5, 8, 6, .78)); content: ""; }
.room-card:hover img { transform: scale(1.05); }
.room-info { position: absolute; right: 2.5rem; bottom: 2.5rem; left: 2.5rem; z-index: 1; }
.room-info span { color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.room-info h2 { margin: .7rem 0 0; font-size: clamp(2.7rem, 5vw, 5.8rem); }
.room-info p { max-width: 470px; margin: 1rem 0 0; color: rgba(255, 255, 255, .68); }

.amenities { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.amenity { min-height: 210px; display: grid; align-content: end; padding: 1.7rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.amenity span { color: var(--gold-dark); font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.amenity strong { margin-top: 3rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }

.booking-page .header { background: rgba(10, 13, 11, .94); backdrop-filter: blur(20px); }
.reservation-shell { display: grid; grid-template-columns: minmax(320px, 36vw) 1fr; min-height: 100svh; background: var(--ivory); }
.reservation-visual {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  color: white;
  background: var(--night);
}
.reservation-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 5, .1) 25%, rgba(4, 7, 5, .84) 100%);
  content: "";
}
.reservation-visual img { height: 100%; object-fit: cover; transform: scale(1.02); }
.reservation-visual-copy { position: absolute; right: 4rem; bottom: 4.5rem; left: 4rem; z-index: 1; }
.reservation-visual-copy > p { margin: 1.6rem 0 2rem; font-family: var(--serif); font-size: clamp(3.5rem, 5vw, 6.6rem); letter-spacing: -.06em; line-height: .83; }
.reservation-visual-copy > small { color: rgba(255, 255, 255, .58); font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.booking-app { min-width: 0; padding: 10rem clamp(2rem, 4vw, 5rem) 7rem; }
.booking-heading { max-width: 760px; margin-bottom: 3.5rem; }
.booking-heading h1 { margin: 1.2rem 0 1.4rem; font-size: clamp(4.7rem, 8vw, 9rem); }
.booking-heading > p { max-width: 620px; margin: 0; color: var(--muted); font-size: .74rem; }
.booking-steps { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 920px; margin-bottom: 3.5rem; border-top: 1px solid var(--line); }
.booking-steps > span { position: relative; display: flex; align-items: center; gap: .8rem; padding: 1.2rem 0 0; color: var(--muted); font-size: .63rem; font-style: normal; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.booking-steps > span::before { position: absolute; top: -1px; left: 0; width: 0; height: 2px; background: var(--gold-dark); content: ""; transition: width .5s ease; }
.booking-steps > span.active::before, .booking-steps > span.complete::before { width: 100%; }
.booking-steps b { width: 29px; height: 29px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: .62rem; }
.booking-steps em { font-style: normal; }
.booking-steps > span.active { color: var(--ink); }
.booking-steps > span.active b { color: var(--paper); border-color: var(--night); background: var(--night); }
.booking-steps > span.complete b { color: var(--paper); border-color: var(--gold-dark); background: var(--gold-dark); }
.booking-workspace { display: grid; grid-template-columns: minmax(0, 1fr) minmax(270px, 320px); gap: clamp(2rem, 4vw, 4.5rem); align-items: start; }
.booking-flow { min-width: 0; }
.booking-step-panel[hidden] { display: none; }
.panel-intro { display: grid; grid-template-columns: 50px 1fr; gap: 1rem; align-items: start; margin-bottom: 2.5rem; }
.panel-intro > span { padding-top: .5rem; color: var(--gold-dark); font-size: .65rem; font-weight: 800; letter-spacing: .18em; }
.panel-intro h2 { margin: 0 0 .7rem; font-size: clamp(2.8rem, 4vw, 4.8rem); }
.panel-intro p { margin: 0; color: var(--muted); }
.date-selection { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.2rem; align-items: center; margin-bottom: 2.8rem; padding: 1.2rem 1.4rem; border: 1px solid var(--line); background: rgba(255, 255, 255, .46); }
.date-selection > div { display: grid; gap: .3rem; }
.date-selection > div:last-child { text-align: right; }
.date-selection small, .guest-card small { color: var(--gold-dark); font-size: .57rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.date-selection strong { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.date-selection > i { color: var(--gold-dark); font-style: normal; }
.calendar-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.3rem; }
.calendar-toolbar > span { font-size: .62rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.calendar-nav { display: flex; gap: .5rem; }
.calendar-nav button, .guest-counter button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}
.calendar-nav button:hover, .guest-counter button:hover { color: white; border-color: var(--night); background: var(--night); }
.calendar-nav button:disabled { opacity: .25; pointer-events: none; }
.calendar-months { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.4rem, 2.6vw, 3rem); }
.calendar-month h3 { margin: 0 0 1.2rem; font-family: var(--sans); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: capitalize; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.calendar-weekdays { margin-bottom: .45rem; color: var(--muted); font-size: .55rem; font-weight: 800; text-align: center; }
.calendar-empty { aspect-ratio: 1; }
.calendar-day {
  position: relative;
  min-width: 0;
  aspect-ratio: 1;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: transparent;
  font-size: .71rem;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.calendar-day:hover:not(:disabled) { color: white; background: var(--forest); transform: scale(1.05); }
.calendar-day:disabled { cursor: default; }
.calendar-day.past { color: rgba(23, 26, 24, .22); }
.calendar-day.booked { color: rgba(23, 26, 24, .35); background: rgba(23, 26, 24, .08); text-decoration: line-through; }
.calendar-day.selected-range { border-radius: 0; color: var(--ink); background: rgba(194, 164, 111, .24); }
.calendar-day.selected-start, .calendar-day.selected-end { z-index: 1; color: white; border-radius: 50%; background: var(--night); text-decoration: none; }
.calendar-day.checkout-edge:not(.selected-end) { color: var(--gold-dark); border: 1px solid var(--gold); background: transparent; text-decoration: none; }
.calendar-message { min-height: 25px; margin: 1.4rem 0 .8rem; font-size: .72rem; }
.calendar-message[data-tone="error"], .submit-status[data-tone="error"] { color: #97483f; }
.calendar-message[data-tone="success"], .submit-status[data-tone="success"] { color: #4f745c; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 1.1rem; color: var(--muted); font-size: .61rem; }
.calendar-legend span { display: inline-flex; align-items: center; gap: .45rem; }
.calendar-legend i { width: 11px; height: 11px; border-radius: 50%; border: 1px solid var(--line); }
.calendar-legend .unavailable { background: rgba(23, 26, 24, .12); }
.calendar-legend .selection { border-color: var(--night); background: var(--night); }
.panel-actions { display: flex; justify-content: space-between; gap: .8rem; margin-top: 2.8rem; }
.panel-actions-end { justify-content: flex-end; }
.button-outline { border-color: var(--line); background: transparent; }
.button:disabled { cursor: not-allowed; opacity: .34; transform: none; }
.guest-card { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2rem; border: 1px solid var(--line); background: rgba(255, 255, 255, .46); }
.guest-card > div:first-child { display: grid; gap: .35rem; }
.guest-card strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.guest-counter { display: flex; align-items: center; gap: 1.2rem; }
.guest-counter output { min-width: 28px; font-family: var(--serif); font-size: 2rem; text-align: center; }
.booking-notes { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 1rem; border: solid var(--line); border-width: 1px 0 0 1px; }
.booking-notes article { min-height: 130px; padding: 1.3rem; border: solid var(--line); border-width: 0 1px 1px 0; }
.booking-notes span { font-family: var(--serif); font-size: 2.2rem; }
.booking-notes p { margin: .3rem 0 0; color: var(--muted); font-size: .68rem; }
.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.booking-field { display: grid; gap: .55rem; }
.booking-field-wide { grid-column: 1 / -1; }
.booking-field > span { color: var(--gold-dark); font-size: .57rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.booking-field input, .booking-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: .9rem 0;
  color: var(--ink);
  outline: none;
  resize: vertical;
  background: transparent;
  font: inherit;
}
.booking-field input:focus, .booking-field textarea:focus { border-color: var(--gold-dark); }
.booking-consent { display: flex; gap: .75rem; align-items: flex-start; margin-top: 1.5rem; color: var(--muted); font-size: .68rem; }
.booking-consent input { accent-color: var(--night); }
.preview-warning { margin: 1rem 0 0; color: var(--muted); font-size: .65rem; }
.submit-status { min-height: 25px; margin: 1.2rem 0 0; font-size: .72rem; }
.submit-status a { border-bottom: 1px solid currentColor; }
.booking-summary { position: sticky; top: 135px; padding: 2rem; color: white; background: var(--night); }
.booking-summary h2 { margin: 1.6rem 0 2.4rem; font-size: clamp(2.1rem, 2.8vw, 3.2rem); line-height: 1.05; }
.summary-lines { display: grid; gap: .75rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--light-line); }
.summary-lines > div { display: flex; justify-content: space-between; gap: 1rem; color: rgba(255, 255, 255, .64); font-size: .68rem; }
.summary-lines strong { color: white; font-weight: 600; }
.empty-price { margin: 0; color: rgba(255, 255, 255, .55); font-size: .7rem; }
.summary-total { display: flex; align-items: end; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--light-line); }
.summary-total span { color: rgba(255, 255, 255, .66); font-size: .68rem; }
.summary-total strong { color: var(--gold); font-family: var(--serif); font-size: 2.1rem; font-weight: 400; }
.summary-detail { display: grid; gap: .7rem; margin: 1.5rem 0; }
.summary-detail > div { display: flex; justify-content: space-between; gap: 1rem; font-size: .65rem; }
.summary-detail dt { color: rgba(255, 255, 255, .55); }
.summary-detail dd { margin: 0; }
.summary-small { color: rgba(255, 255, 255, .42); font-size: .61rem; }
.booking-summary > a { display: inline-block; margin-top: 1rem; color: var(--gold); border-bottom: 1px solid currentColor; font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.footer { color: white; background: #080b09; }
.footer-main { min-height: 330px; display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 5rem; align-items: center; padding: 5rem 0; }
.footer-brand p { max-width: 430px; margin: 1.4rem 0 0; color: rgba(255, 255, 255, .45); }
.footer-col strong { display: block; margin-bottom: 1.2rem; color: var(--gold); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; }
.footer-col nav { display: grid; gap: .65rem; color: rgba(255, 255, 255, .6); font-size: .82rem; }
.footer-bottom { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid var(--light-line); color: rgba(255, 255, 255, .38); font-size: .65rem; }
.footer-bottom a { color: var(--gold); }
.mobile-actions { position: fixed; right: 10px; bottom: 10px; left: 10px; z-index: 80; display: none; grid-template-columns: 1fr 1fr; padding: 6px; background: rgba(8, 11, 9, .97); }
.mobile-actions a { min-height: 49px; display: grid; place-items: center; color: white; font-size: .6rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.mobile-actions a:last-child { color: var(--night); background: var(--gold); }

[data-reveal] {
  opacity: 0;
  filter: blur(6px);
  transform: translateY(38px);
  transition: opacity 1s ease, filter 1s ease, transform 1s cubic-bezier(.2, .75, .25, 1);
}
[data-reveal].visible { opacity: 1; filter: none; transform: none; }

@keyframes imageDrift {
  from { transform: scale(1.06) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1%, -.7%, 0); }
}
@keyframes slideTimer {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1280px) {
  .booking-workspace { grid-template-columns: 1fr; }
  .booking-summary { position: relative; top: auto; max-width: 680px; }
}
@media (max-width: 1050px) {
  .nav { display: none; }
  .menu-toggle { display: grid; }
  .hero-bottom { align-items: start; flex-direction: column; }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .reservation-shell { grid-template-columns: 1fr; }
  .reservation-visual { position: relative; height: 68svh; }
  .reservation-visual-copy { right: 2rem; bottom: 3rem; left: 2rem; }
  .booking-app { padding-top: 7rem; }
}
@media (max-width: 800px) {
  .container { width: min(var(--container), calc(100% - 36px)); }
  .header-inner { min-height: 86px; }
  .brand-copy strong { font-size: 1.25rem; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact { border-bottom: 1px solid var(--light-line); }
  .statement-grid, .split, .booking-layout { grid-template-columns: 1fr; }
  .statement-grid { gap: 3rem; }
  .split-image { min-height: 72svh; }
  .split-copy { min-height: 620px; }
  .split-reverse .split-image, .split-reverse .split-copy { order: initial; }
  .tour-head { grid-template-columns: 1fr; gap: 2rem; }
  .mosaic { grid-template-columns: 1fr; grid-template-rows: repeat(3, 72svh); }
  .mosaic-card:first-child { grid-row: auto; }
  .visual-panel { min-height: 78svh; }
  .visual-copy { align-items: start; flex-direction: column; }
  .room-grid { grid-template-columns: 1fr; }
  .room-card { min-height: 78svh; }
  .booking-app { padding-inline: 1.2rem; }
  .mobile-actions { display: grid; }
  .footer { padding-bottom: 78px; }
}
@media (max-width: 680px) {
  .reservation-visual { height: 62svh; }
  .reservation-visual-copy > p { font-size: 3.6rem; }
  .booking-heading { margin-bottom: 2.5rem; }
  .booking-heading h1 { font-size: clamp(4.2rem, 20vw, 6.5rem); }
  .booking-steps { margin-bottom: 2.7rem; }
  .booking-steps > span { gap: .45rem; letter-spacing: .08em; }
  .calendar-months { grid-template-columns: 1fr; }
  .calendar-month:nth-child(2) { display: none; }
  .date-selection { gap: .7rem; padding-inline: 1rem; }
  .date-selection strong { font-size: 1.1rem; }
  .booking-notes { grid-template-columns: 1fr; }
  .booking-notes article { min-height: 95px; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-field-wide { grid-column: auto; }
  .panel-actions { flex-direction: column-reverse; }
  .panel-actions .button { width: 100%; }
  .panel-actions-end { flex-direction: column; }
  .booking-summary { padding: 1.5rem; }
}
@media (max-width: 520px) {
  h1 { font-size: clamp(3.8rem, 18vw, 5.8rem); }
  h2 { font-size: clamp(3rem, 14vw, 4.7rem); }
  .brand-mark { width: 46px; }
  .brand-copy small { display: none; }
  .hero-content { padding: 10rem 0 7rem; }
  .hero-copy h1 em { transform: none; }
  .hero-actions .button { width: 100%; }
  .slider-count { right: 1rem; bottom: 1rem; }
  .scroll-cue { display: none; }
  .fact { min-height: 135px; padding: 1.2rem; }
  .statement { padding: 7rem 0; }
  .visual-copy { padding-block: 3rem; }
  .mosaic-label { right: 1.2rem; bottom: 1.2rem; left: 1.2rem; }
  .mosaic-label strong { font-size: 2.3rem; }
  .page-hero { min-height: 82svh; }
  .page-hero-content { padding: 10rem 0 4rem; }
  .split-copy { min-height: 560px; padding: 4rem 1.2rem; }
  .feature-film-copy { padding: 1.2rem; }
  .room-info { right: 1.2rem; bottom: 1.2rem; left: 1.2rem; }
  .amenities { grid-template-columns: 1fr; }
  .amenity { min-height: 170px; }
  .reservation-visual-copy { right: 1.2rem; bottom: 2.2rem; left: 1.2rem; }
  .reservation-visual-copy > small { font-size: .55rem; }
  .booking-app { padding-top: 6rem; }
  .booking-steps em { font-size: .55rem; }
  .panel-intro { grid-template-columns: 34px 1fr; }
  .panel-intro h2 { font-size: 2.7rem; }
  .guest-card { align-items: flex-start; flex-direction: column; padding: 1.4rem; }
  .calendar-day { font-size: .67rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: .5rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .curtain { display: none; }
  [data-reveal] { opacity: 1; filter: none; transform: none; }
}
