:root {
  --ink: #10201d;
  --ink-soft: #1c302c;
  --cream: #f3efe6;
  --paper: #faf7f0;
  --sand: #d8c5a8;
  --gold: #bd9662;
  --terracotta: #b9613c;
  --line: rgba(16, 32, 29, 0.16);
  --white: #fffdf8;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --page: min(1320px, calc(100vw - 96px));
  --section-space: clamp(96px, 10vw, 170px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  width: 100%;
  height: 88px;
  padding: 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  transition: height 0.35s ease, background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
  height: 72px;
  border-color: rgba(16, 32, 29, 0.1);
  background: rgba(250, 247, 240, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  line-height: 1;
}

.brand-seal {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand-type {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
}

.brand-type em {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.desktop-nav a {
  position: relative;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.languages {
  display: flex;
  gap: 8px;
}

.lang {
  padding: 2px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.55;
}

.lang.is-active {
  border-bottom: 1px solid currentColor;
  opacity: 1;
}

.header-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled .header-book {
  border-color: var(--ink);
}

.header-book:hover {
  background: var(--white);
  color: var(--ink);
}

.site-header.is-scrolled .header-book:hover {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 0.3s ease;
}

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

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

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: none;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-inner {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 32px 40px;
}

.mobile-nav-kicker {
  margin-bottom: 30px;
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 0.24em;
}

.mobile-nav-inner > a:not(.mobile-reserve) {
  font-family: var(--serif);
  font-size: clamp(34px, 10vw, 52px);
  line-height: 1.04;
}

.mobile-reserve {
  margin-top: 32px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-languages {
  display: flex;
  gap: 18px;
  margin-top: 24px;
}

.mobile-languages .lang {
  color: var(--white);
  font-size: 11px;
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  font-size: 12px;
  opacity: 0.7;
}

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  color: var(--white);
  isolation: isolate;
}

.hero-slides,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.25s ease, transform 6.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide:nth-child(1) img {
  object-position: center 57%;
}

.hero-slide:nth-child(2) img {
  object-position: center 55%;
}

.hero-shade {
  z-index: 1;
  background: linear-gradient(90deg, rgba(4, 17, 15, 0.8) 0%, rgba(4, 17, 15, 0.37) 48%, rgba(4, 17, 15, 0.16) 100%), linear-gradient(0deg, rgba(4, 17, 15, 0.72) 0%, transparent 45%);
}

.hero-content {
  position: absolute;
  z-index: 2;
  top: 47%;
  left: max(48px, calc((100vw - 1320px) / 2));
  width: min(760px, 65vw);
  transform: translateY(-50%);
}

.eyebrow,
.section-label {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.eyebrow::before {
  width: 44px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.hero h1,
.section h2,
.pool-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(70px, 8.1vw, 130px);
}

.hero h1 em,
.section h2 em,
.pool-copy h2 em,
.final-cta h2 em {
  color: var(--gold);
  font-weight: 500;
}

.hero-copy {
  max-width: 610px;
  margin: 30px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.button-primary {
  background: var(--terracotta);
  color: var(--white);
}

.button-primary:hover {
  background: #cc7048;
}

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

.button-dark:hover {
  background: var(--terracotta);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.button-outline-light:hover {
  background: var(--white);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.text-link i {
  font-size: 15px;
  font-style: normal;
  transition: transform 0.25s ease;
}

.text-link:hover i {
  transform: translate(3px, -2px);
}

.text-link.light {
  color: var(--white);
}

.hero-side-note {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 9px;
  letter-spacing: 0.24em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
}

.hero-side-note i {
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: max(48px, calc((100vw - 1320px) / 2));
  bottom: 176px;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 26px;
  height: 2px;
  padding: 0;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-dot.is-active {
  width: 52px;
  background: var(--white);
}

.booking-dock {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(145px, 0.8fr)) 1.1fr;
  min-height: 116px;
  align-items: stretch;
  margin: 0 auto;
  background: var(--paper);
  color: var(--ink);
}

.booking-intro,
.booking-dock label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 32px;
  border-right: 1px solid var(--line);
}

.booking-intro {
  padding-left: max(48px, calc((100vw - 1320px) / 2));
}

.booking-intro span,
.booking-dock label span {
  margin-bottom: 7px;
  color: rgba(16, 32, 29, 0.55);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.booking-intro strong {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.1;
}

.booking-dock input,
.booking-dock select {
  width: 100%;
  padding: 0 18px 0 0;
  border: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: 20px;
  outline: 0;
}

.booking-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: var(--terracotta);
  color: var(--white);
  cursor: pointer;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.booking-submit:hover {
  background: #9f4d31;
}

.booking-submit i {
  font-size: 18px;
  font-style: normal;
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.section-label {
  color: var(--terracotta);
}

.section h2,
.pool-copy h2,
.final-cta h2 {
  font-size: clamp(54px, 6.2vw, 92px);
}

.lead {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.45;
}

.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.story-copy {
  padding-top: 66px;
}

.story-copy .lead {
  max-width: 590px;
  margin: 44px 0 34px;
  color: rgba(16, 32, 29, 0.78);
}

.story-visual {
  position: relative;
}

.portrait {
  aspect-ratio: 4 / 5.3;
}

.portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.since-stamp {
  position: absolute;
  bottom: -43px;
  left: -62px;
  display: grid;
  width: 126px;
  height: 126px;
  place-content: center;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  text-align: center;
}

.since-stamp strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}

.since-stamp span {
  margin-top: 4px;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.story-facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.story-facts div {
  display: flex;
  min-height: 130px;
  align-items: center;
  gap: 20px;
  padding: 20px 34px;
  border-right: 1px solid var(--line);
}

.story-facts div:last-child {
  border-right: 0;
}

.story-facts strong {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 500;
  white-space: nowrap;
}

.story-facts span {
  max-width: 110px;
  color: rgba(16, 32, 29, 0.58);
  font-size: 10px;
  letter-spacing: 0.11em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 5px;
  color: rgba(16, 32, 29, 0.65);
  line-height: 1.9;
}

.rooms {
  border-top: 1px solid var(--line);
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px 30px;
}

.room-card {
  min-width: 0;
}

.room-card-featured {
  grid-column: 1 / -1;
}

.room-image {
  aspect-ratio: 1.45 / 1;
}

.room-card-featured .room-image {
  aspect-ratio: 2.15 / 1;
}

.room-image img {
  height: 100%;
  object-fit: cover;
}

.room-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 9px 13px;
  background: rgba(250, 247, 240, 0.94);
  color: var(--ink);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.room-info {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 28px;
  align-items: end;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.room-card:not(.room-card-featured) .room-info {
  grid-template-columns: 1fr auto;
}

.room-card:not(.room-card-featured) .room-info > p {
  grid-column: 1 / -1;
  grid-row: 2;
}

.room-info > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.room-info div p {
  margin: 0;
  color: var(--terracotta);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.room-info h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.6vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.room-info > p {
  margin: 0;
  color: rgba(16, 32, 29, 0.58);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.room-info a {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-info a i {
  font-size: 16px;
  font-style: normal;
}

.image-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  cursor: zoom-in;
}

.image-button img {
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.image-button:hover img {
  opacity: 0.9;
  transform: scale(1.035);
}

.image-expand {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  background: rgba(16, 32, 29, 0.16);
  color: var(--white);
  font-size: 17px;
  backdrop-filter: blur(6px);
}

.pool-experience {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 800px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.pool-image,
.pool-image .image-button,
.pool-image img {
  width: 100%;
  height: 100%;
}

.pool-image img {
  object-fit: cover;
}

.pool-copy {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 110px clamp(50px, 7vw, 120px);
}

.light-label {
  color: var(--gold);
}

.pool-copy h2 {
  font-size: clamp(54px, 5.4vw, 84px);
}

.pool-copy > p:not(.section-label) {
  max-width: 520px;
  margin: 38px 0 28px;
  color: rgba(255, 253, 248, 0.7);
}

.pool-copy ul {
  width: 100%;
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.pool-copy li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 253, 248, 0.86);
  font-size: 12px;
}

.pool-copy li::before {
  margin-right: 12px;
  color: var(--gold);
  content: "✦";
}

.pool-number {
  position: absolute;
  right: -16px;
  bottom: -93px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--serif);
  font-size: 290px;
  line-height: 1;
}

.restaurant {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: center;
}

.restaurant-copy .lead {
  max-width: 510px;
  margin: 42px 0 36px;
  color: rgba(16, 32, 29, 0.75);
}

.restaurant-capacity {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 470px;
  margin-bottom: 38px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.restaurant-capacity div {
  display: flex;
  min-height: 105px;
  align-items: center;
  gap: 15px;
  padding-right: 18px;
}

.restaurant-capacity div + div {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.restaurant-capacity strong {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 500;
}

.restaurant-capacity span {
  color: rgba(16, 32, 29, 0.55);
  font-size: 9px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.restaurant-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr 0.62fr;
  gap: 12px;
  min-height: 730px;
}

.restaurant-gallery .image-button,
.restaurant-gallery img {
  height: 100%;
}

.restaurant-gallery img {
  object-fit: cover;
}

.restaurant-main {
  grid-column: 1 / -1;
}

.reviews {
  display: grid;
  grid-template-columns: 0.33fr 1fr;
  gap: clamp(60px, 8vw, 120px);
  border-top: 1px solid var(--line);
}

.review-score {
  padding-top: 15px;
}

.score-row {
  display: flex;
  align-items: baseline;
}

.score-row strong {
  font-family: var(--serif);
  font-size: clamp(76px, 8vw, 116px);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.score-row span {
  margin-left: 8px;
  color: rgba(16, 32, 29, 0.45);
  font-size: 18px;
}

.stars {
  color: var(--terracotta);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.review-score > p:last-child {
  color: rgba(16, 32, 29, 0.55);
  font-size: 10px;
}

.review-content h2 {
  margin-bottom: 56px;
}

.review-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.review-track article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 36px 30px 28px;
  border-right: 1px solid var(--line);
}

.review-track article:first-child {
  padding-left: 0;
}

.review-track article:last-child {
  border-right: 0;
}

.quote-mark {
  color: var(--terracotta);
  font-family: var(--serif);
  font-size: 54px;
  line-height: 0.8;
}

.review-track article > p {
  margin: 30px 0;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.45;
}

.review-track footer {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-track footer strong {
  margin-bottom: 4px;
  font-size: 10px;
}

.review-track footer span {
  color: rgba(16, 32, 29, 0.5);
}

.destination {
  padding-top: 0;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.destination-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.destination-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 18, 16, 0.88) 0%, rgba(5, 18, 16, 0.05) 68%);
  content: "";
}

.destination-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.destination-card:hover img {
  transform: scale(1.045);
}

.destination-card > div {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 30px;
  left: 34px;
}

.destination-card span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.destination-card h3 {
  margin: 8px 0 5px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.destination-card p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 253, 248, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 780px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
}

.final-cta > img,
.final-cta-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-cta > img {
  object-fit: cover;
  object-position: center;
}

.final-cta-shade {
  background: rgba(6, 19, 17, 0.64);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  width: min(880px, calc(100vw - 48px));
  text-align: center;
}

.final-cta-content p:not(.section-label) {
  max-width: 520px;
  margin: 34px auto;
  color: rgba(255, 253, 248, 0.76);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: stretch;
}

.contact-details {
  padding: 28px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 52px 0 38px;
  border-top: 1px solid var(--line);
}

.contact-grid > div {
  padding: 24px 20px 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-grid > div:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.contact-grid span {
  color: var(--terracotta);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-grid p {
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.35;
}

.map-wrap {
  min-height: 600px;
  background: #ddd4c5;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.75) sepia(0.12) contrast(0.95);
}

.site-footer {
  padding: 70px max(48px, calc((100vw - 1320px) / 2)) 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 40px;
  padding-bottom: 58px;
}

.footer-top > p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 253, 248, 0.58);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
}

.footer-arrow {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: background 0.25s ease, color 0.25s ease;
}

.footer-arrow:hover {
  background: var(--white);
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 253, 248, 0.43);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-book {
  position: fixed;
  z-index: 80;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(11, 23, 21, 0.25);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mobile-book i {
  font-size: 16px;
  font-style: normal;
}

.lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  padding: 60px;
  background: rgba(5, 15, 13, 0.96);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: auto;
  max-width: min(1200px, 92vw);
  height: auto;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox p {
  margin: 20px 0 0;
  font-family: var(--serif);
  font-size: 20px;
}

.lightbox-close {
  position: absolute;
  top: 26px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
}

.toast {
  position: fixed;
  z-index: 400;
  bottom: 32px;
  left: 50%;
  max-width: calc(100vw - 32px);
  padding: 12px 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 20px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --page: min(100% - 64px, 1120px);
  }

  .site-header {
    grid-template-columns: 195px 1fr auto;
    padding: 0 32px;
  }

  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 9px;
  }

  .booking-dock {
    grid-template-columns: 1.05fr repeat(3, minmax(130px, 0.7fr)) 1fr;
  }

  .booking-intro,
  .booking-dock label {
    padding: 20px 22px;
  }

  .booking-intro {
    padding-left: 32px;
  }

  .reviews {
    grid-template-columns: 1fr;
  }

  .review-score {
    display: grid;
    grid-template-columns: auto auto 1fr;
    align-items: end;
    gap: 22px;
  }

  .review-score .section-label {
    grid-column: 1 / -1;
  }

  .review-score > p:last-child {
    margin-bottom: 14px;
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav,
  .languages,
  .header-book {
    display: none;
  }

  .menu-toggle,
  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: 920px;
  }

  .hero-content {
    top: 43%;
    left: 32px;
    width: min(720px, calc(100vw - 64px));
  }

  .hero-controls {
    right: 32px;
    bottom: 282px;
  }

  .hero-side-note {
    display: none;
  }

  .booking-dock {
    grid-template-columns: repeat(3, 1fr);
    min-height: 230px;
  }

  .booking-intro {
    grid-column: 1 / -1;
    min-height: 80px;
    padding-left: 32px;
    border-bottom: 1px solid var(--line);
  }

  .booking-submit {
    grid-column: 1 / -1;
    min-height: 64px;
  }

  .story {
    gap: 60px;
  }

  .story-copy {
    padding-top: 20px;
  }

  .since-stamp {
    left: -40px;
  }

  .room-info,
  .room-card:not(.room-card-featured) .room-info {
    grid-template-columns: 1fr auto;
  }

  .room-info > p,
  .room-card:not(.room-card-featured) .room-info > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .pool-experience {
    grid-template-columns: 1fr;
  }

  .pool-image {
    min-height: 650px;
  }

  .restaurant {
    grid-template-columns: 1fr;
  }

  .restaurant-copy {
    max-width: 700px;
  }

  .destination-grid {
    grid-template-columns: 1fr 1fr;
  }

  .destination-card:last-child {
    grid-column: 1 / -1;
  }

  .contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  :root {
    --page: calc(100% - 40px);
    --section-space: 92px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .site-header,
  .site-header.is-scrolled {
    height: 70px;
    padding: 0 20px;
  }

  .brand-seal {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .brand-type {
    font-size: 8px;
  }

  .brand-type em {
    font-size: 15px;
  }

  .hero {
    height: auto;
    min-height: 940px;
  }

  .hero-slide:nth-child(1) img,
  .hero-slide:nth-child(2) img,
  .hero-slide:nth-child(3) img {
    object-position: 58% center;
  }

  .hero-content {
    top: 32%;
    left: 20px;
    width: calc(100vw - 40px);
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.2em;
  }

  .eyebrow::before {
    width: 26px;
  }

  .hero h1 {
    font-size: clamp(58px, 17vw, 82px);
  }

  .hero-copy {
    max-width: 490px;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-ctas {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 28px;
  }

  .button {
    min-height: 50px;
    padding: 0 22px;
  }

  .hero-controls {
    right: 20px;
    bottom: 354px;
  }

  .booking-dock {
    grid-template-columns: 1fr 1fr;
    min-height: 322px;
  }

  .booking-intro {
    grid-column: 1 / -1;
    min-height: 74px;
    padding: 15px 20px;
  }

  .booking-intro strong {
    font-size: 21px;
  }

  .booking-dock label {
    min-height: 85px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
  }

  .booking-dock label:nth-of-type(3) {
    grid-column: 1 / -1;
  }

  .booking-dock input,
  .booking-dock select {
    font-size: 17px;
  }

  .booking-submit {
    grid-column: 1 / -1;
    min-height: 62px;
  }

  .section h2,
  .pool-copy h2,
  .final-cta h2 {
    font-size: clamp(49px, 14.5vw, 68px);
  }

  .story {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .story-copy {
    padding-top: 0;
  }

  .story-copy .lead {
    margin-top: 32px;
    font-size: 21px;
  }

  .portrait {
    aspect-ratio: 4 / 4.9;
  }

  .since-stamp {
    bottom: -34px;
    left: -8px;
    width: 102px;
    height: 102px;
  }

  .since-stamp strong {
    font-size: 26px;
  }

  .story-facts {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .story-facts div {
    min-height: 92px;
    padding: 12px 6px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .story-facts div:last-child {
    border-bottom: 0;
  }

  .story-facts strong {
    min-width: 112px;
    font-size: 37px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 48px;
  }

  .room-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .room-card-featured {
    grid-column: auto;
  }

  .room-card-featured .room-image,
  .room-image {
    aspect-ratio: 1.2 / 1;
  }

  .room-info,
  .room-card:not(.room-card-featured) .room-info {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .room-info > p,
  .room-card:not(.room-card-featured) .room-info > p {
    grid-column: auto;
    grid-row: auto;
  }

  .room-info a {
    margin-top: 8px;
  }

  .pool-experience {
    min-height: 0;
  }

  .pool-image {
    min-height: 460px;
  }

  .pool-copy {
    padding: 88px 20px 104px;
  }

  .restaurant-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 380px 260px 260px;
    min-height: 0;
  }

  .restaurant-main {
    grid-column: auto;
  }

  .restaurant-capacity {
    grid-template-columns: 1fr;
  }

  .restaurant-capacity div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .review-score {
    grid-template-columns: auto 1fr;
    gap: 14px;
  }

  .review-score > p:last-child {
    grid-column: 1 / -1;
  }

  .review-track {
    display: flex;
    width: calc(100vw - 20px);
    margin-right: -20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .review-track article,
  .review-track article:first-child {
    min-width: 82vw;
    min-height: 330px;
    padding: 30px 24px;
    scroll-snap-align: start;
  }

  .review-track article:first-child {
    padding-left: 0;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-card,
  .destination-card:last-child {
    grid-column: auto;
    min-height: 500px;
  }

  .destination-card > div {
    right: 24px;
    left: 24px;
  }

  .final-cta {
    min-height: 680px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid > div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .map-wrap {
    min-height: 430px;
  }

  .site-footer {
    padding: 68px 20px 86px;
  }

  .footer-top {
    grid-template-columns: 1fr auto;
  }

  .footer-top > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-book {
    display: flex;
  }

  .lightbox {
    padding: 50px 16px 30px;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 72vh;
  }

  .toast {
    bottom: 82px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
