:root {
  --ink: #20211f;
  --muted: #5d5d57;
  --soft: #76766f;
  --paper: #f8f7f3;
  --white: #ffffff;
  --mist: #efeee8;
  --olive: #536457;
  --olive-dark: #26362f;
  --logo-navy: #121722;
  --logo-gold: #c6ab73;
  --champagne: #bca36d;
  --antique-gold: #8e7445;
  --heading-gold: #171b22;
  --clay: #765d49;
  --line: rgba(32, 33, 29, 0.14);
  --line-strong: rgba(32, 33, 29, 0.24);
  --shadow: 0 24px 70px rgba(31, 35, 29, 0.12);
  --header-height: 88px;
  --ease-lux: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand,
.footer-logo,
.brand-mark,
.map-panel span {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

h1 {
  margin-bottom: 22px;
  color: var(--heading-gold);
  font-size: 4.9rem;
  line-height: 1;
}

h2 {
  margin-bottom: 22px;
  color: var(--heading-gold);
  font-size: 3.15rem;
  line-height: 1.06;
}

h3 {
  margin-bottom: 12px;
  color: var(--heading-gold);
  font-size: 1.62rem;
  line-height: 1.2;
}

p {
  color: var(--ink);
  line-height: 1.72;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 720ms var(--ease-lux),
    transform 720ms var(--ease-lux);
  transition-delay: calc(var(--motion-index, 0) * 55ms);
  will-change: opacity, transform;
}

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

button,
a.button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 12px;
  z-index: 1400;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--olive-dark);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: var(--header-height);
  padding: 16px 5vw;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
  font-size: 1.62rem;
  line-height: 1;
  transition: color 220ms ease;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 7px;
  color: var(--logo-gold);
  background: var(--logo-navy);
  border: 1px solid rgba(198, 171, 115, 0.7);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(18, 23, 34, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms var(--ease-soft);
}

.brand:hover .brand-mark img,
.brand:focus-visible .brand-mark img {
  transform: scale(1.04);
}

.brand-name {
  transform: translateY(1px);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.site-nav a,
.nav-group-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-nav a:hover,
.nav-group-button:hover,
.site-nav a:focus-visible,
.nav-group-button:focus-visible {
  color: var(--olive);
  outline: 0;
}

.nav-group {
  position: relative;
}

.nav-group-button svg {
  width: 14px;
  height: 14px;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -22px;
  min-width: 270px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 220ms var(--ease-soft), transform 220ms var(--ease-soft);
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-menu a {
  display: flex;
  min-height: 40px;
  padding: 0 10px;
  border-bottom: 1px solid rgba(32, 33, 29, 0.08);
  transition: background 180ms ease, padding-left 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(86, 105, 88, 0.08);
  padding-left: 14px;
}

.nav-menu a:last-child {
  border-bottom: 0;
}

.site-nav .nav-book-link {
  min-height: 42px;
  padding: 0 18px;
  color: var(--white);
  background: var(--olive-dark);
  border: 1px solid var(--olive-dark);
  border-radius: 4px;
}

.site-nav .nav-book-link:hover,
.site-nav .nav-book-link:focus-visible {
  color: var(--olive-dark);
  background: transparent;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a,
.icon-button,
.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 220ms var(--ease-soft);
}

.social-links svg,
.icon-button svg,
.menu-toggle svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  justify-self: end;
}

.social-links a:hover,
.social-links a:focus-visible,
.icon-button:hover,
.icon-button:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--olive);
  border-color: var(--olive);
  background: rgba(86, 105, 88, 0.06);
  transform: translateY(-1px);
  outline: 0;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 5vw 86px;
}

.hero-reel,
.hero-fallback,
.book-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-reel {
  z-index: -3;
  overflow: hidden;
  background: var(--mist);
}

.hero-fallback {
  z-index: -4;
}

.book-section > img {
  z-index: -2;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 1500ms ease, transform 6800ms linear;
}

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

.hero-overlay,
.book-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(247, 246, 241, 0.97) 0%, rgba(247, 246, 241, 0.84) 42%, rgba(247, 246, 241, 0.34) 75%, rgba(247, 246, 241, 0.16) 100%),
    linear-gradient(180deg, rgba(247, 246, 241, 0.22), rgba(247, 246, 241, 0.68));
}

.hero-content {
  width: min(720px, 100%);
}

.hero-content > *,
.property-hero-content > * {
  animation: heroCopyReveal 820ms var(--ease-lux) both;
}

.hero-content > *:nth-child(2),
.property-hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3),
.property-hero-content > *:nth-child(3) {
  animation-delay: 170ms;
}

.hero-content > *:nth-child(4),
.property-hero-content > *:nth-child(4) {
  animation-delay: 250ms;
}

@keyframes heroCopyReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker,
.section-kicker,
.property-hero-content p {
  margin-bottom: 16px;
  color: var(--antique-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-intro {
  width: min(660px, 100%);
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(330px, 100%);
  min-height: 54px;
  margin-top: 18px;
  padding: 14px 24px;
  color: var(--white);
  background: var(--logo-navy);
  border: 1px solid var(--logo-navy);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    transform 240ms var(--ease-soft),
    box-shadow 240ms var(--ease-soft);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button:hover,
.button:focus-visible {
  color: var(--logo-navy);
  background: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(39, 55, 47, 0.12);
  outline: 0;
}

.button-light {
  color: var(--olive-dark);
  background: var(--white);
  border-color: var(--line-strong);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--olive-dark);
}

.text-link {
  color: var(--olive-dark);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--clay);
  outline: 0;
}

.hero-text-link {
  margin-top: 18px;
}

.hero-button {
  margin-top: 0;
}

.hero-progress {
  position: absolute;
  left: 5vw;
  bottom: 38px;
  display: grid;
  grid-template-columns: repeat(4, 58px);
  gap: 10px;
}

.hero-progress span {
  height: 2px;
  overflow: hidden;
  background: rgba(32, 33, 29, 0.2);
}

.hero-progress span::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  background: var(--olive-dark);
}

.hero-progress span.is-active::before {
  animation: heroProgress 6500ms linear forwards;
}

@keyframes heroProgress {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

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

  .hero-slide,
  .hero-progress span::before,
  .hero-content > *,
  .property-hero-content > *,
  .motion-reveal {
    transition: none !important;
    animation: none !important;
  }

  .hero-slide,
  .hero-content > *,
  .property-hero-content > *,
  .motion-reveal,
  .motion-reveal.is-visible {
    opacity: 1;
    transform: none !important;
  }
}

.rating-strip {
  display: grid;
  justify-items: center;
  padding: 108px 5vw;
  text-align: center;
  background: var(--white);
}

.rating-strip h2 {
  width: min(920px, 100%);
}

.minimal-promise {
  padding-top: 92px;
  padding-bottom: 92px;
}

.minimal-promise h2 {
  width: min(880px, 100%);
  margin-bottom: 0;
  font-size: 2.7rem;
  line-height: 1.15;
}

.about-section {
  border-bottom: 1px solid var(--line);
}

.destinations-section {
  padding: 108px 5vw;
  background: var(--white);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.destination-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition:
    transform 360ms var(--ease-soft),
    box-shadow 360ms var(--ease-soft),
    border-color 220ms ease;
}

.destination-card > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 900ms var(--ease-lux);
}

.destination-copy {
  padding: 34px 34px 38px;
}

.destination-copy h3 {
  margin-bottom: 16px;
  font-size: 2.35rem;
}

.destination-copy p:not(.section-kicker) {
  max-width: 610px;
  margin-bottom: 22px;
}

.destination-copy .property-card-link {
  margin: 0;
}

.brand-statement {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-lockup-panel {
  width: min(560px, 100%);
  margin: 0 auto 46px;
  padding: 34px 46px 38px;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.035), rgba(255, 253, 249, 0)),
    var(--logo-navy);
  border: 1px solid rgba(185, 155, 97, 0.38);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-lockup-panel img {
  width: 100%;
  height: auto;
}

.signature-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(880px, 100%);
  margin-top: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.signature-stats article {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 138px;
  padding: 28px;
  background: var(--paper);
}

.signature-stats strong {
  color: var(--olive-dark);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1;
}

.signature-stats span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stars {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--champagne);
}

.stars svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  stroke: var(--olive-dark);
  stroke-width: 1.1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
  padding: 112px 5vw;
  background: var(--paper);
}

.split-reverse {
  background: var(--white);
}

.media-block {
  min-height: 560px;
}

.media-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 800ms var(--ease-lux), box-shadow 800ms var(--ease-lux);
}

.copy-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.copy-block p {
  max-width: 650px;
}

.note {
  color: var(--ink);
  font-style: italic;
}

.amenity-list {
  columns: 2;
  column-gap: 42px;
  max-width: 680px;
  margin: 18px 0 8px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 100px 5vw;
  background: var(--line);
}

.feature-item {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 36px 28px;
  background: var(--white);
  transition: transform 360ms var(--ease-soft), background 360ms ease;
}

.feature-item > svg {
  width: 40px;
  height: 40px;
  margin-bottom: 36px;
  color: var(--champagne);
  stroke-width: 1.4;
  transition: transform 420ms var(--ease-soft), color 220ms ease;
}

.feature-item h2 {
  min-height: 72px;
  margin-bottom: 16px;
  font-size: 1.7rem;
}

.feature-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.rooms-section,
.reviews-section,
.location-section {
  padding: 108px 5vw;
  background: var(--white);
}

.rooms-section {
  background: var(--paper);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-title h2 {
  width: min(680px, 100%);
  margin-bottom: 0;
}

.carousel-actions,
.review-controls {
  display: flex;
  gap: 10px;
}

.room-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 31vw);
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--champagne) rgba(32, 33, 29, 0.12);
  padding-bottom: 16px;
}

.room-card {
  scroll-snap-align: start;
  min-height: 610px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition:
    transform 360ms var(--ease-soft),
    box-shadow 360ms var(--ease-soft),
    border-color 220ms ease;
}

.room-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 900ms var(--ease-lux);
}

.room-card h3,
.room-card p {
  margin-left: 0;
  margin-right: 0;
}

.room-card h3 {
  margin-top: 0;
}

.room-card p {
  color: var(--muted);
}

.room-card-copy {
  padding: 28px 26px 32px;
}

.property-location {
  margin-bottom: 10px;
  color: var(--antique-gold) !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.collection-track {
  grid-auto-flow: unset;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: visible;
}

.collection-track .room-card {
  min-height: 0;
}

.collection-track .room-card img {
  aspect-ratio: 4 / 3;
}

.room-card-copy .property-card-link {
  margin: 10px 0 0;
}

.property-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 22px 28px;
  color: var(--olive-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease;
}

.property-card-link svg {
  width: 17px;
  height: 17px;
}

.property-card-link:hover,
.property-card-link:focus-visible {
  color: var(--clay);
  outline: 0;
}

.room-cta {
  margin: 42px auto 0;
}

.property-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 5vw;
}

.property-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(247, 246, 241, 0.96) 0%, rgba(247, 246, 241, 0.78) 44%, rgba(247, 246, 241, 0.22) 100%),
    linear-gradient(180deg, rgba(247, 246, 241, 0.18), rgba(247, 246, 241, 0.48));
}

.property-hero-content {
  width: min(760px, 100%);
}

.property-hero-content h1 {
  margin-bottom: 18px;
  font-size: 4.65rem;
}

.property-hero-content span {
  display: block;
  width: min(620px, 100%);
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.65;
}

.property-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-top: 12px;
}

.property-hero-actions .button {
  margin-top: 0;
}

.property-overview {
  padding-top: 88px;
  padding-bottom: 88px;
}

.property-overview p {
  margin-bottom: 28px;
  color: var(--ink);
  font-weight: 800;
}

.property-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.property-facts span {
  padding: 10px 16px;
  color: var(--olive-dark);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.86rem;
  font-weight: 800;
}

.property-space-track {
  grid-auto-columns: minmax(320px, 29vw);
}

.property-space-card {
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 32px;
}

.property-space-card h3,
.property-space-card p {
  margin-left: 0;
  margin-right: 0;
}

.property-space-card h3 {
  margin-top: 0;
  font-size: 2rem;
}

.property-details-section .property-space-track {
  grid-auto-flow: unset;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: visible;
}

.list-heading {
  margin: 28px 0 4px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reviews-section {
  text-align: center;
}

.reviews-section h2 {
  width: min(760px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
}

.review-track {
  position: relative;
  width: min(780px, 100%);
  min-height: 250px;
  margin: 0 auto;
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 42px;
  background: transparent;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

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

.review-card p {
  margin-bottom: 0;
}

.review-controls {
  justify-content: center;
  margin-top: 24px;
}

.gallery-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
  padding: 0 5vw 108px;
  background: var(--paper);
}

.gallery-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 700ms var(--ease-lux), filter 300ms ease;
}

.gallery-section img:nth-child(1) {
  grid-column: span 2;
}

.gallery-section img:nth-child(4) {
  grid-row: span 2;
}

.gallery-section img:nth-child(n + 7) {
  display: none;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: center;
}

.location-section h2 {
  max-width: 720px;
}

.map-panel {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(86, 105, 88, 0.18), rgba(185, 155, 97, 0.16)),
    var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.map-grid {
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(90deg, rgba(32, 33, 29, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(32, 33, 29, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: rotate(-8deg);
}

.map-panel span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-grid;
  place-items: center;
  width: 138px;
  height: 138px;
  color: var(--olive-dark);
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid var(--champagne);
  border-radius: 50%;
  font-size: 1.35rem;
  text-align: center;
}

.book-section {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 5vw;
  text-align: center;
}

.book-overlay {
  background:
    linear-gradient(rgba(39, 55, 47, 0.48), rgba(39, 55, 47, 0.64)),
    rgba(247, 246, 241, 0.12);
}

.book-content {
  width: min(760px, 100%);
  color: var(--white);
}

.book-content h2 {
  font-size: 4.5rem;
}

.book-content p {
  width: min(620px, 100%);
  margin: 0 auto 20px;
  color: rgba(255, 253, 249, 0.84);
}

.book-content .button {
  margin-left: auto;
  margin-right: auto;
  color: var(--olive-dark);
  background: var(--white);
  border-color: var(--white);
}

.book-content .button:hover,
.book-content .button:focus-visible {
  color: var(--white);
  background: transparent;
}

@media (hover: hover) and (pointer: fine) {
  .destination-card:hover {
    transform: translateY(-4px);
    border-color: rgba(142, 116, 69, 0.34);
    box-shadow: 0 24px 64px rgba(31, 35, 29, 0.1);
  }

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

  .media-block img:hover {
    transform: scale(1.018);
    box-shadow: 0 28px 82px rgba(31, 35, 29, 0.16);
  }

  .feature-item:hover {
    transform: translateY(-4px);
    background: #fffefa;
  }

  .feature-item:hover > svg {
    color: var(--olive);
    transform: translateY(-3px);
  }

  .room-card:hover {
    transform: translateY(-5px);
    border-color: rgba(86, 105, 88, 0.28);
    box-shadow: 0 24px 64px rgba(31, 35, 29, 0.1);
  }

  .room-card:hover img {
    transform: scale(1.025);
  }

  .gallery-section img:hover {
    transform: scale(1.015);
    filter: saturate(1.04) contrast(1.02);
  }
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding: 52px 5vw;
  color: var(--white);
  background: var(--logo-navy);
}

.footer-logo {
  display: block;
}

.footer-logo-lockup {
  display: block;
  width: min(320px, 100%);
  height: auto;
}

.site-footer address {
  color: rgba(255, 253, 249, 0.74);
  font-style: normal;
  line-height: 1.8;
}

.site-footer address a {
  color: inherit;
  text-decoration: none;
}

.site-footer address a:hover,
.site-footer address a:focus-visible {
  color: var(--champagne);
  outline: 0;
}

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

.footer-links a {
  color: rgba(255, 253, 249, 0.74);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--champagne);
  outline: 0;
}

.promo {
  position: fixed;
  right: 4vw;
  bottom: 34px;
  z-index: 1100;
  width: min(330px, calc(100vw - 32px));
  padding: 34px 30px 30px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.menu-open .promo {
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.promo[hidden] {
  display: block;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}

.promo h2 {
  margin-bottom: 14px;
  padding-right: 34px;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.72rem;
  line-height: 1.08;
}

.promo p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.promo a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--olive-dark);
  border-radius: 4px;
  text-decoration: none;
  font-weight: 800;
}

.promo-close {
  position: absolute;
  right: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--olive-dark);
  background: transparent;
  border: 0;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.promo-close svg {
  width: 17px;
  height: 17px;
}

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

  .menu-toggle {
    display: inline-grid;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    display: block;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    padding: 24px 5vw 80px;
    background: rgba(255, 253, 249, 0.98);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a,
  .nav-group-button {
    width: 100%;
    justify-content: space-between;
    min-height: 60px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-book-link {
    justify-content: center;
    min-height: 60px;
    margin-top: 18px;
    border-bottom: 1px solid var(--olive-dark);
  }

  .nav-group {
    display: block;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    margin: 10px 0 20px;
    padding: 8px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-menu a {
    min-height: 52px;
    padding: 0 14px;
  }

  .social-links {
    display: none;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.8rem;
  }

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

  .property-hero-content h1 {
    font-size: 4.2rem;
  }

  .room-track {
    grid-auto-columns: minmax(310px, 45vw);
  }

  .property-space-track {
    grid-auto-columns: minmax(310px, 44vw);
  }

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

  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 82px;
  }

  .site-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand {
    font-size: 1.32rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    padding: 6px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.3rem;
  }

  .property-hero-content h1 {
    font-size: 3.2rem;
  }

  .hero,
  .property-hero {
    min-height: calc(100vh - var(--header-height));
    padding: 78px 24px 82px;
  }

  .hero-overlay,
  .property-hero::after {
    background:
      linear-gradient(90deg, rgba(247, 246, 241, 0.95), rgba(247, 246, 241, 0.78)),
      linear-gradient(180deg, rgba(247, 246, 241, 0.16), rgba(247, 246, 241, 0.7));
  }

  .rating-strip,
  .destinations-section,
  .rooms-section,
  .reviews-section,
  .location-section {
    padding: 82px 24px;
  }

  .minimal-promise h2 {
    font-size: 2.2rem;
  }

  .signature-stats {
    grid-template-columns: 1fr;
  }

  .split-section,
  .location-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 82px 24px;
  }

  .split-reverse .copy-block {
    order: 2;
  }

  .split-reverse .media-block {
    order: 1;
  }

  .media-block {
    min-height: 420px;
  }

  .amenity-list {
    columns: 1;
  }

  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 82px 24px;
  }

  .destination-grid,
  .collection-track,
  .property-details-section .property-space-track {
    grid-template-columns: 1fr;
  }

  .destination-card > img {
    height: 360px;
  }

  .section-title {
    align-items: start;
  }

  .room-track {
    grid-auto-columns: minmax(286px, 78vw);
  }

  .property-space-track {
    grid-auto-columns: minmax(286px, 76vw);
  }

  .gallery-section {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
    gap: 14px;
    padding: 0 24px 82px;
  }

  .gallery-section img:nth-child(1),
  .gallery-section img:nth-child(4) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .book-content h2 {
    font-size: 4rem;
  }

  .promo {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    max-width: 190px;
    white-space: normal;
  }

  .brand-lockup-panel {
    padding: 26px 28px 30px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .property-hero-content h1 {
    font-size: 2.55rem;
  }

  .minimal-promise h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.36rem;
  }

  .hero,
  .property-hero {
    min-height: 680px;
  }

  .hero-intro,
  .property-hero-content span {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    align-items: start;
  }

  .hero-progress {
    left: 24px;
    right: 24px;
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .destination-card > img {
    height: 290px;
  }

  .destination-copy {
    padding: 28px 24px 30px;
  }

  .destination-copy h3 {
    font-size: 1.9rem;
  }

  .feature-item {
    min-height: 0;
  }

  .feature-item h2 {
    min-height: 0;
  }

  .section-title {
    display: grid;
    gap: 18px;
  }

  .room-card {
    min-height: 560px;
  }

  .review-track {
    min-height: 360px;
  }

  .review-card {
    padding: 28px 22px;
  }

  .gallery-section {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .book-section {
    min-height: 540px;
  }

  .book-content h2 {
    font-size: 3.2rem;
  }

  .site-footer {
    padding: 40px 20px;
  }

  .footer-logo {
    font-size: 1.32rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .promo {
    display: none;
  }
}
