:root {
  --ink: #0f0e0b;
  --ink-soft: #1b1812;
  --paper: #f7f1e6;
  --cream: #fffaf0;
  --muted: #6f675b;
  --line: rgba(15, 14, 11, 0.14);
  --line-light: rgba(255, 250, 240, 0.18);
  --gold: #c7a56b;
  --gold-dark: #8d6a35;
  --jade: #275141;
  --clay: #9b5136;
  --shadow: 0 30px 80px rgba(15, 14, 11, 0.18);
  --radius: 6px;
  --content: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 16px 32px;
  color: var(--cream);
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 240, 0.96);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(15, 14, 11, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-grid;
  min-width: 132px;
  text-decoration: none;
  text-transform: uppercase;
  line-height: 1;
}

.brand span,
.brand strong,
.hero h1,
.hero-copy,
.editorial-intro h2,
.arrival-copy h2,
.section-heading h2,
.room-detail h3,
.reviews-content h2,
.testimonial-card p,
.location-copy h2,
.footer-brand {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.brand span {
  font-size: 0.78rem;
}

.brand strong {
  font-size: 1.2rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.main-nav a,
.header-reserve,
.site-footer a {
  text-decoration: none;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-reserve {
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-button {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-scrim,
.hero-grain {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.9) contrast(1.04);
  transform: scale(1.05);
  transform-origin: center;
}

.hero-scrim {
  background:
    radial-gradient(circle at 72% 50%, rgba(199, 165, 107, 0.16), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.38) 54%, rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0) 46%);
}

.hero-grain {
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px),
    linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--content);
  margin: 0 auto;
  padding: 152px 0 174px;
  color: var(--cream);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 5.8rem;
  line-height: 0.92;
}

.hero-copy {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 250, 240, 0.9);
  font-size: 1.38rem;
  line-height: 1.42;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #d2b477;
}

.button-ghost {
  border-color: rgba(255, 250, 240, 0.58);
  color: var(--cream);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.1);
}

.button-dark {
  background: var(--ink);
  color: var(--cream);
}

.button-outline {
  border-color: var(--ink);
  color: var(--ink);
}

.hero-signature {
  position: absolute;
  right: 32px;
  bottom: 160px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.72rem;
  text-align: right;
  text-transform: uppercase;
}

.booking-panel {
  position: absolute;
  right: max(32px, calc((100vw - 1180px) / 2));
  bottom: 34px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(136px, 1fr)) auto;
  width: min(860px, calc(100% - 64px));
  background: rgba(255, 250, 240, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.booking-field {
  min-width: 0;
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}

.booking-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select {
  width: 100%;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}

.booking-panel .button {
  min-height: 100%;
  white-space: nowrap;
}

.section-pad {
  width: var(--content);
  margin: 0 auto;
  padding: 112px 0;
}

.editorial-intro {
  max-width: 1060px;
}

.editorial-intro h2,
.arrival-copy h2,
.section-heading h2,
.reviews-content h2,
.location-copy h2 {
  margin: 0;
  font-size: 3.25rem;
  line-height: 1.08;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 46px;
  align-items: end;
  margin-top: 32px;
}

.intro-grid p,
.arrival-copy p,
.section-heading p,
.location-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-stat {
  min-height: 190px;
  display: grid;
  align-content: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(199, 165, 107, 0.18), transparent),
    rgba(255, 250, 240, 0.86);
  box-shadow: 0 16px 44px rgba(15, 14, 11, 0.08);
}

.intro-stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  font-weight: 400;
  line-height: 0.9;
}

.intro-stat span {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.section-dark {
  background: var(--ink);
  color: var(--cream);
}

.arrival {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
}

.arrival-copy {
  width: auto;
  max-width: 620px;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  margin-right: 56px;
  align-self: center;
}

.arrival-copy p {
  margin-top: 26px;
  color: rgba(255, 250, 240, 0.72);
}

.arrival-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.arrival-media img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  transform: scale(1.06);
}

.arrival-panel {
  position: absolute;
  right: 34px;
  bottom: 34px;
  min-width: 210px;
  padding: 26px;
  background: rgba(255, 250, 240, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.arrival-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.arrival-panel strong {
  display: block;
  margin-top: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.9;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading p:last-child {
  max-width: 520px;
}

.room-stage {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 620px;
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.room-visual {
  min-height: 620px;
  overflow: hidden;
}

.room-visual img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03);
  transition: opacity 260ms ease, transform 520ms ease;
}

.room-stage.is-changing .room-visual img {
  opacity: 0.28;
  transform: scale(1.04);
}

.room-detail {
  display: grid;
  align-content: center;
  padding: 54px;
}

.room-detail h3 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.06;
}

.room-detail p:not(.section-kicker) {
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.72);
}

.room-actions {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

.room-reserve {
  width: fit-content;
  margin-top: 18px;
}

.room-actions button {
  position: relative;
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  text-transform: uppercase;
  padding: 0 18px;
  overflow: hidden;
}

.room-actions button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(199, 165, 107, 0.26), transparent);
  content: "";
  transform: translateX(-100%);
  transition: transform 220ms ease;
}

.room-actions button span,
.room-actions button {
  font-size: 0.78rem;
  font-weight: 800;
}

.room-actions button.is-active::before,
.room-actions button:hover::before,
.room-actions button:focus-visible::before {
  transform: translateX(0);
}

.section-soft {
  background:
    radial-gradient(circle at 12% 10%, rgba(151, 80, 52, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(39, 81, 65, 0.12), transparent 26%),
    var(--paper);
}

.services {
  padding: 0 0 18px;
  overflow: hidden;
}

.services .section-pad:first-child {
  padding-bottom: 36px;
}

.service-marquee {
  display: flex;
  gap: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  color: rgba(15, 14, 11, 0.42);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.8rem);
  white-space: nowrap;
}

.service-marquee div {
  display: flex;
  gap: 40px;
  min-width: max-content;
  padding-right: 40px;
  animation: marquee 32s linear infinite;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 64px;
}

.service-grid article {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(15, 14, 11, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 18px 50px rgba(15, 14, 11, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-grid article:hover {
  transform: translateY(-8px);
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 26px 70px rgba(15, 14, 11, 0.12);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
}

.service-grid h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.service-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.reviews {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  align-items: center;
}

.reviews-score {
  min-height: 430px;
  padding: 46px;
  background:
    linear-gradient(135deg, rgba(199, 165, 107, 0.2), transparent),
    var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews-score strong {
  display: block;
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.2rem;
  font-weight: 400;
  line-height: 0.88;
}

.reviews-score span {
  display: block;
  max-width: 250px;
  margin-top: 22px;
  color: rgba(255, 250, 240, 0.72);
}

.reviews-score a {
  display: inline-block;
  margin-top: 38px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}

.rating-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.rating-list div {
  display: grid;
  grid-template-columns: 120px 1fr 46px;
  gap: 16px;
  align-items: center;
  min-height: 38px;
}

.rating-list span,
.rating-list strong {
  font-size: 0.92rem;
}

meter {
  width: 100%;
  height: 6px;
}

meter::-webkit-meter-bar {
  border: 0;
  border-radius: 999px;
  background: rgba(15, 14, 11, 0.12);
}

meter::-webkit-meter-optimum-value {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--jade), var(--gold));
}

meter::-moz-meter-bar {
  border-radius: 999px;
  background: linear-gradient(90deg, var(--jade), var(--gold));
}

.testimonial-section {
  overflow: hidden;
}

.testimonial-section .section-heading p:last-child {
  color: rgba(255, 250, 240, 0.72);
}

.testimonial-shell {
  position: relative;
  min-height: 360px;
}

.testimonial-track {
  position: relative;
  min-height: 360px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 54px min(7vw, 86px);
  border: 1px solid var(--line-light);
  background:
    radial-gradient(circle at 76% 26%, rgba(199, 165, 107, 0.15), transparent 28%),
    rgba(255, 250, 240, 0.04);
  opacity: 0;
  transform: translateX(44px) scale(0.98);
  pointer-events: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.testimonial-card span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.testimonial-card p {
  max-width: 820px;
  margin: 20px 0;
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.05;
}

.testimonial-card strong {
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.testimonial-dots {
  position: absolute;
  right: 26px;
  bottom: 24px;
  display: flex;
  gap: 10px;
}

.testimonial-dots button {
  width: 34px;
  height: 2px;
  border: 0;
  background: rgba(255, 250, 240, 0.28);
  cursor: pointer;
  padding: 0;
}

.testimonial-dots button.is-active {
  background: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  grid-template-rows: repeat(3, 220px);
  gap: 16px;
}

.gallery-grid button {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #000;
  cursor: zoom-in;
}

.gallery-grid button:first-child {
  grid-row: 1 / 3;
}

.gallery-grid button:nth-child(2) {
  grid-column: 2 / 4;
}

.gallery-grid button:nth-child(4) {
  grid-column: 1 / 2;
}

.gallery-grid button:nth-child(5) {
  grid-column: 2 / 3;
}

.gallery-grid button:nth-child(6) {
  grid-column: 3 / 4;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 420ms ease, opacity 420ms ease, filter 420ms ease;
}

.gallery-grid button:hover img,
.gallery-grid button:focus-visible img {
  transform: scale(1.045);
  opacity: 1;
  filter: saturate(1.06);
}

.faq {
  overflow: hidden;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid rgba(15, 14, 11, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 18px 48px rgba(15, 14, 11, 0.05);
  overflow: hidden;
}

summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-dark);
  content: "+";
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.policy-panel {
  position: sticky;
  top: 100px;
  align-self: start;
  min-height: 360px;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(199, 165, 107, 0.24), transparent),
    var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.policy-panel span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.policy-panel ul {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.policy-panel li {
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 250, 240, 0.78);
}

.location {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: stretch;
}

.location-copy {
  align-self: center;
}

.location-copy p {
  margin-top: 24px;
}

.map-frame {
  position: relative;
  min-height: 500px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
  filter: grayscale(0.32) contrast(1.04);
}

.map-consent {
  min-height: 500px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 44px;
  background:
    radial-gradient(circle at 82% 18%, rgba(199, 165, 107, 0.18), transparent 32%),
    var(--ink);
  color: var(--cream);
}

.map-consent h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.35rem;
  font-weight: 400;
}

.map-consent p:not(.section-kicker) {
  max-width: 460px;
  color: rgba(255, 250, 240, 0.72);
}

.legal-grid,
.cookie-policy-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.legal-grid article,
.cookie-policy-list article {
  padding: 28px;
  border: 1px solid rgba(15, 14, 11, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 18px 50px rgba(15, 14, 11, 0.05);
}

.legal-grid h3,
.cookie-policy-list h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.legal-grid p,
.cookie-policy-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-grid a {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 42px max(20px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: rgba(255, 250, 240, 0.78);
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  color: var(--cream);
  font-size: 1.35rem;
}

.site-footer a {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.footer-links button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 3px;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  width: min(560px, calc(100% - 44px));
  padding: 24px;
  border: 1px solid var(--line-light);
  background: rgba(255, 250, 240, 0.97);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(15, 14, 11, 0.28);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}

.cookie-banner h2,
.cookie-modal h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
}

.cookie-banner p:not(.section-kicker) {
  margin: 10px 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, 0.62);
}

.cookie-modal-panel {
  width: min(560px, 100%);
  padding: 30px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.cookie-toggle small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.cookie-toggle input {
  width: 22px;
  height: 22px;
}

.cookie-toggle.is-disabled {
  opacity: 0.78;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  max-width: min(980px, 100%);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.lightbox button {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.lightbox button::before,
.lightbox button::after {
  position: absolute;
  top: 23px;
  left: 13px;
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.lightbox button::before {
  transform: rotate(45deg);
}

.lightbox button::after {
  transform: rotate(-45deg);
}

.mobile-reserve {
  display: none;
}

.mobile-journey {
  display: none;
}

.legal-page {
  background: var(--paper);
}

.legal-page .site-header {
  position: sticky;
}

.legal-hero .section-pad {
  padding-top: 150px;
  padding-bottom: 90px;
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 5.6rem);
  font-weight: 400;
  line-height: 0.98;
}

.legal-hero p:not(.section-kicker) {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: 1.05rem;
}

[data-animate] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 760ms ease, transform 760ms ease, clip-path 860ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="hero"] {
  transform: translateY(18px);
  transition-delay: 140ms;
}

[data-animate="dock"] {
  transform: translateY(28px) scale(0.98);
  transition-delay: 280ms;
}

[data-animate="split-left"] {
  transform: translateX(-34px);
}

[data-animate="split-left"].is-visible {
  transform: translateX(0);
}

[data-animate="image-wipe"],
[data-animate="map-reveal"] {
  clip-path: inset(12% 0 12% 0);
}

[data-animate="image-wipe"].is-visible,
[data-animate="map-reveal"].is-visible {
  clip-path: inset(0);
}

[data-animate="tilt-card"]:nth-child(2),
[data-animate="gallery-tile"]:nth-child(2) {
  transition-delay: 90ms;
}

[data-animate="tilt-card"]:nth-child(3),
[data-animate="gallery-tile"]:nth-child(3) {
  transition-delay: 180ms;
}

[data-animate="tilt-card"]:nth-child(4),
[data-animate="gallery-tile"]:nth-child(4) {
  transition-delay: 270ms;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 14px 20px;
  }

  .menu-button {
    position: absolute;
    top: 13px;
    right: 18px;
    display: block;
    border: 1px solid rgba(255, 250, 240, 0.42);
    border-radius: 50%;
    background: rgba(15, 14, 11, 0.16);
  }

  .site-header.is-scrolled .menu-button,
  .site-header.is-open .menu-button {
    border-color: rgba(15, 14, 11, 0.18);
    background: rgba(15, 14, 11, 0.04);
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto 0;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    padding: 28px 20px 34px;
    background: rgba(255, 250, 240, 0.98);
    color: var(--ink);
    box-shadow: 0 18px 36px rgba(15, 14, 11, 0.12);
  }

  .main-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .legal-page .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-self: start;
    grid-column: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }

  .main-nav a {
    padding: 12px 0;
    font-size: 0.92rem;
  }

  .header-reserve,
  .hero-signature {
    display: none;
  }

  .hero-content {
    padding: 132px 0 238px;
  }

  .hero h1 {
    font-size: 4.45rem;
  }

  .booking-panel {
    right: 20px;
    left: 20px;
    bottom: 22px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: auto;
  }

  .booking-field:nth-child(2) {
    border-right: 0;
  }

  .booking-field:nth-child(3) {
    grid-column: 1 / 2;
    border-top: 1px solid var(--line);
  }

  .booking-panel .button {
    grid-column: 2 / 3;
  }

  .intro-grid,
  .arrival,
  .room-stage,
  .reviews,
  .faq-layout,
  .location {
    grid-template-columns: 1fr;
  }

  .arrival-copy {
    width: var(--content);
    max-width: none;
    margin: 0 auto;
  }

  .arrival-media,
  .arrival-media img,
  .room-visual,
  .room-visual img {
    min-height: 480px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 220px);
  }

  .gallery-grid button:first-child,
  .gallery-grid button:nth-child(2),
  .gallery-grid button:nth-child(4),
  .gallery-grid button:nth-child(5),
  .gallery-grid button:nth-child(6) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .policy-panel {
    position: static;
  }

  .legal-grid,
  .cookie-policy-list {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --content: min(1180px, calc(100% - 28px));
  }

  .site-header {
    min-height: 66px;
  }

  .brand {
    min-width: 112px;
  }

  .brand strong {
    font-size: 1.05rem;
  }

  .hero {
    min-height: auto;
    display: block;
    padding-bottom: 18px;
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero-scrim {
    background:
      radial-gradient(circle at 70% 48%, rgba(199, 165, 107, 0.12), transparent 36%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.05) 48%);
  }

  .hero-content {
    padding: 104px 0 30px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.1rem);
    line-height: 1;
  }

  .hero-copy {
    font-size: 1.08rem;
    max-width: 30rem;
  }

  .hero-actions {
    display: grid;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 13px 16px;
  }

  .booking-panel {
    position: relative;
    right: auto;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: var(--content);
    margin: 0 auto;
  }

  .booking-field,
  .booking-field:nth-child(2),
  .booking-field:nth-child(3) {
    grid-column: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
    padding: 10px 14px;
  }

  .booking-field:first-child {
    border-top: 0;
  }

  .booking-panel .button {
    grid-column: auto;
    min-height: 48px;
  }

  .mobile-journey {
    width: var(--content);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 14px auto 0;
  }

  .mobile-journey a {
    min-height: 88px;
    display: grid;
    align-content: space-between;
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 250, 240, 0.82);
    color: var(--ink);
    text-decoration: none;
  }

  .mobile-journey span {
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 800;
  }

  .mobile-journey strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 400;
  }

  .section-pad {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .editorial-intro h2,
  .arrival-copy h2,
  .section-heading h2,
  .reviews-content h2,
  .location-copy h2 {
    font-size: 2rem;
    overflow-wrap: anywhere;
  }

  .editorial-intro {
    text-align: left;
  }

  .intro-grid {
    gap: 24px;
    margin-top: 24px;
  }

  .intro-stat {
    min-height: 170px;
    padding: 24px;
  }

  .intro-stat strong {
    font-size: 4.2rem;
  }

  .arrival-media,
  .arrival-media img,
  .room-visual,
  .room-visual img {
    min-height: 330px;
  }

  .arrival-panel {
    right: 12px;
    bottom: 12px;
    min-width: 142px;
    padding: 18px;
  }

  .arrival-panel strong {
    font-size: 3.2rem;
  }

  .room-detail {
    padding: 32px 22px;
  }

  .room-detail h3 {
    font-size: 2.18rem;
  }

  .room-actions {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 28px;
  }

  .room-actions button {
    min-height: 48px;
    text-align: center;
    padding: 0 10px;
  }

  .room-reserve {
    width: 100%;
  }

  .service-marquee {
    padding: 14px 0;
    font-size: 2.2rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
    padding-top: 36px;
  }

  .service-grid article {
    min-height: 0;
  }

  .reviews-score {
    min-height: 0;
    padding: 30px;
    order: 1;
  }

  .reviews-content {
    order: 2;
  }

  .reviews-score strong {
    font-size: 5.1rem;
  }

  .rating-list div {
    grid-template-columns: 96px 1fr 38px;
    gap: 10px;
  }

  .testimonial-shell,
  .testimonial-track {
    min-height: 360px;
  }

  .testimonial-card {
    padding: 30px 22px 60px;
  }

  .testimonial-card p {
    font-size: 1.72rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 230px);
  }

  .gallery-grid button,
  .gallery-grid button:first-child,
  .gallery-grid button:nth-child(2),
  .gallery-grid button:nth-child(4),
  .gallery-grid button:nth-child(5),
  .gallery-grid button:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  summary {
    font-size: 1.05rem;
    min-height: 58px;
    padding: 16px 18px;
  }

  details p {
    padding: 0 18px 18px;
  }

  .policy-panel {
    min-height: auto;
    padding: 28px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 390px;
  }

  .map-consent {
    min-height: 390px;
    padding: 28px;
  }

  .map-consent h3 {
    font-size: 2rem;
  }

  .legal-hero .section-pad {
    padding-top: 106px;
    padding-bottom: 58px;
  }

  .legal-hero h1 {
    font-size: 3rem;
  }

  .legal-grid article,
  .cookie-policy-list article {
    padding: 22px;
  }

  .site-footer {
    display: grid;
    padding-bottom: 86px;
  }

  .footer-links,
  .cookie-actions {
    justify-content: stretch;
  }

  .footer-links {
    display: grid;
  }

  .cookie-banner {
    right: 14px;
    bottom: 78px;
    width: calc(100% - 28px);
    max-height: calc(100svh - 100px);
    overflow: auto;
  }

  .cookie-actions .button {
    width: 100%;
  }

  .mobile-reserve {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(15, 14, 11, 0.24);
    text-decoration: none;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .mobile-reserve.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}
