
:root {
  --cream: #f3eee5;
  --paper: #fcfaf6;
  --beige: #e8dfd0;
  --ink: #292b29;
  --muted: #646259;
  --line: #dcd5c9;
  --taupe: #8c7b62;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header: 96px;
  --hero-shift: 0px;
  --radius-sm: 4px;
  --radius: 5px;
  --radius-card: 6px;
  --radius-lg: 8px;
  --section-space: 104px;
  --duration-fast: .25s;
  --duration-ui: .3s;
  --duration-reveal: .65s;
  --shadow-soft: 0 6px 35px #292b2908;
  --shadow-booking: 0 14px 35px #34291e0a;
  --booking-offset: 0px;
  --section-dock-height: 0px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.dialog-open,
html.dialog-open {
  overflow: hidden;
}

button {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  touch-action: manipulation;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  color: inherit;
  text-decoration: none;
}

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

figure {
  margin: 0;
}

ul,
ol {
  padding-left: 22px;
}

li + li {
  margin-top: 6px;
}

button:disabled {
  cursor: wait;
}

button[hidden],
[hidden] {
  display: none !important;
}

::selection {
  background: #d9cbb7;
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid #997943;
  outline-offset: 5px;
}

picture {
  display: contents;
}

p {
  margin: 0;
  color: var(--muted);
}

h1 {
  margin: 0;
  font-weight: 500;
  font-family: var(--serif);
  letter-spacing: -.043em;
  line-height: 1.17;
}

h2 {
  margin: 0;
  font-weight: 500;
  font-family: var(--serif);
  letter-spacing: -.043em;
  line-height: 1.17;
  font-size: clamp(34px, 3.6vw, 51px);
}

h3 {
  margin: 0;
  font-weight: 500;
  font-size: 21px;
  line-height: 1.35;
}

h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

p + p {
  margin-top: 16px;
}

h1 em,
h2 em,
h3 em {
  font-weight: 500;
}

.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 600 10px/1.6 var(--sans);
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 19px;
  font-size: 10px;
}

.eyebrow .icon {
  width: 17px;
  height: 17px;
}

.section-note {
  line-height: 1.7;
  font-size: 12px !important;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: .025em;
  transition: transform var(--duration-ui) var(--ease), background var(--duration-ui), border-color var(--duration-ui), color var(--duration-ui);
  text-align: center;
  font-size: 13px;
}

.button .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-ui) var(--ease);
}

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

.button:hover .icon {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(0) scale(.985);
}

.button:disabled,
.button:disabled:hover {
  opacity: .7;
  transform: none;
}

.button:disabled .icon {
  transform: none;
}

[data-airbnb-link][aria-disabled="true"] {
  cursor: not-allowed;
  opacity: .72;
}

[data-airbnb-link][aria-disabled="true"]:hover,
[data-airbnb-link][aria-disabled="true"]:active,
[data-airbnb-link][aria-disabled="true"]:hover .icon {
  transform: none;
}

[data-airbnb-link]:focus-visible {
  outline: 3px solid #b58e52;
  outline-offset: 5px;
  opacity: 1;
}

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

.button--dark:hover {
  background: #41443e;
}

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

.button--light:hover {
  background: white;
}

.button--outline-light {
  color: white;
  background: transparent;
  border-color: #ffffff8c;
}

.button--outline-light:hover {
  background: #ffffff15;
  border-color: white;
}

.button--full {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 44px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--taupe);
  padding: 6px 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  transition: gap var(--duration-ui) var(--ease);
}

.text-link:hover {
  gap: 18px;
}

.text-link .icon {
  width: 17px;
  height: 17px;
}

.icon-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.icon-button:hover {
  background: var(--beige);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 20px;
  transform: translateY(-160%);
  background: var(--paper);
  color: var(--ink);
}

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

.button--secondary {
  color: var(--ink);
  background: var(--cream);
  border-color: var(--line);
}

.button--secondary:hover {
  background: var(--beige);
  border-color: var(--taupe);
}

.container {
  width: calc(100% - 112px);
  max-width: 1280px;
  margin-inline: auto;
}

.section {
  padding: var(--section-space) 0;
}

.section-heading {
  margin-bottom: 44px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
}

.section-heading--split > p,
.section-heading__aside {
  max-width: 350px;
  justify-self: end;
  font-size: 15px;
}

.section-heading__aside .text-link {
  margin-top: 17px;
}

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: var(--header);
  color: white;
  border-bottom: 1px solid #ffffff26;
  transition: background .4s, border-color .4s, box-shadow .4s, color .4s;
  isolation: isolate;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  width: 164px;
  flex-shrink: 0;
  min-height: 58px;
}

.brand img {
  width: 164px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .4s;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 48px;
  font-weight: 500;
  white-space: nowrap;
  font-size: 12px;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-ui);
}

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

.nav-shell > .button {
  min-height: 44px;
  padding: 11px 17px;
  gap: 18px;
  background: var(--cream);
  color: var(--ink);
  font-size: 11px;
}

.site-header.is-scrolled {
  background: #f8f4edfa;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: 0 5px 24px #292b2906;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled .brand img {
  filter: brightness(.6);
}

.site-header.is-scrolled .nav-shell > .button {
  background: var(--ink);
  color: var(--paper);
}

.menu-toggle {
  display: none;
  border: 0;
  color: inherit;
}

.menu-toggle:hover {
  background: #ffffff20;
}

/* Secondary destinations stay within the existing header. */
.nav-more {
  position: relative;
}

.nav-more summary {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 48px;
  font-size: 12px;
  cursor: pointer;
  list-style: none;
}

.nav-more summary::-webkit-details-marker {
  display: none;
}

.nav-more summary .icon {
  width: 13px;
  height: 13px;
}

.nav-more[open] summary,
.nav-more.has-active-section summary {
  text-decoration: underline;
  text-underline-offset: 8px;
}

.nav-more__links {
  position: absolute;
  top: 100%;
  right: -16px;
  width: 190px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

/* A quiet guide in the outer gutter; a slim dock on smaller screens. */
.section-navigator {
  position: fixed;
  z-index: 14;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: grid;
  justify-items: center;
  width: 84px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fcfaf6f2;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
  transition: opacity var(--duration-ui) var(--ease), visibility var(--duration-ui);
}

.section-navigator button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background var(--duration-fast), transform var(--duration-fast) var(--ease);
}

.section-navigator button:hover:not(:disabled) {
  background: var(--beige);
}

.section-navigator button:active:not(:disabled) {
  transform: scale(.97);
}

.section-navigator button:disabled {
  opacity: .3;
  cursor: default;
}

.section-navigator button:focus-visible {
  outline-offset: 0;
}

.section-navigator__previous .icon {
  transform: rotate(-90deg);
}

.section-navigator__next .icon {
  transform: rotate(90deg);
}

.section-navigator__current {
  display: grid;
  gap: 5px;
  padding-block: 8px;
  text-align: center;
}

.section-navigator__number {
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .1em;
  font-variant-numeric: tabular-nums;
}

.section-navigator__title {
  font: 500 11px/1.4 var(--sans);
}

.dialog-open .section-navigator {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

@media (min-width: 1180px) {
  .js-enabled main .container,
  .js-enabled .footer .container {
    width: calc(100% - 208px);
  }
}

@media (max-width: 1179px) {
  .js-enabled {
    --section-dock-height: 52px;
    scroll-padding-bottom: calc(var(--section-dock-height) + var(--booking-offset) + env(safe-area-inset-bottom) + 16px);
  }

  .section-navigator {
    inset: auto 0 var(--booking-offset);
    transform: none;
    width: 100%;
    grid-template-columns: 44px minmax(0, 150px) 44px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: var(--section-dock-height);
    padding: 3px 12px calc(3px + env(safe-area-inset-bottom));
    border-width: 1px 0 0;
    border-radius: 0;
    box-shadow: 0 -3px 18px #292b2906;
  }

  .has-sticky-booking .section-navigator {
    padding-bottom: 3px;
  }

  .section-navigator__current {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
  }

  .section-navigator__title {
    font-size: 12px;
  }

  .js-enabled .footer {
    padding-bottom: calc(var(--section-dock-height) + var(--booking-offset) + env(safe-area-inset-bottom) + 20px);
  }

  .js-enabled .toast-notice {
    bottom: calc(var(--section-dock-height) + var(--booking-offset) + env(safe-area-inset-bottom) + 12px);
  }
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(850px, 100svh);
  color: white;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  z-index: -2;
  inset: -35px 0;
  transform: translateY(var(--hero-shift));
  will-change: transform;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #171a17b8 0%, #1c201a77 43%, #1d20192b 78%), linear-gradient(180deg, #15191355 0%, transparent 30%, #1b1d1940 100%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.hero__content {
  padding-top: 30px;
  padding-bottom: 55px;
}

.hero__address {
  font-size: 10px;
  color: #f6f0e7;
  margin-bottom: 24px;
  letter-spacing: .17em;
}

.hero h1 {
  font-size: clamp(54px, 5.7vw, 81px);
  line-height: 1.08;
  letter-spacing: -.044em;
  max-width: 730px;
}

.hero h1 em {
  color: #ede4d6;
}

.hero__description {
  line-height: 1.75;
  color: #f7f3e9;
  margin-top: 24px;
  font-size: 16px;
  max-width: 560px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
  max-width: 700px;
}

.hero__highlights span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #fffdf8;
  font-size: 12px;
}

.hero__highlights .icon {
  width: 17px;
  height: 17px;
}

.hero__highlights span + span {
  border-left: 0;
  padding-left: 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.hero__actions .button {
  min-height: 54px;
  padding-inline: 25px;
  gap: 35px;
}

.hero__booking-note {
  margin-top: 12px;
  color: #f7f3e9;
  font-size: 12px;
}

.hero__explore {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 48px;
  font-size: 12px;
}

.hero__explore .icon {
  width: 15px;
  height: 15px;
}

.hero__bottom {
  position: absolute;
  inset: auto 0 73px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__bottom > span {
  letter-spacing: .045em;
  color: #f6eee4;
  font-size: 12px;
}

.hero__photos {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  background: #fffef514;
  border: 1px solid #ffffff66;
  border-radius: var(--radius-sm);
  color: white;
  padding: 12px 16px;
  backdrop-filter: blur(8px);
  transition: background var(--duration-ui);
  font-size: 12px;
}

.hero__photos:hover {
  background: #fffef52b;
}

.hero__photos span {
  margin-left: 14px;
  color: #e7e0d4;
  font-size: 12px;
}

.hero__photos .icon {
  width: 17px;
  height: 17px;
}

.booking-strip {
  position: relative;
  margin-top: -40px;
  z-index: 2;
}

.hero-booking-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px 40px;
  background: var(--paper);
  border: 1px solid #e8e1d7;
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  box-shadow: var(--shadow-booking);
}

.booking-strip__copy {
  min-width: 0;
}

.booking-strip__copy .eyebrow {
  margin-bottom: 9px;
  font-size: 9px;
}

.booking-strip__copy h2 {
  font-size: clamp(27px, 2.4vw, 34px);
  line-height: 1.2;
}

.booking-strip__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 11px;
  font-size: 13px;
  line-height: 1.75;
}

.hero-booking-bar > .button {
  min-height: 54px;
  gap: 20px;
  max-width: 100%;
}

.booking-strip__note {
  text-align: center;
  letter-spacing: .015em;
  margin-top: 14px;
  font-size: 12px;
}

.booking-strip__note span {
  margin-left: 10px;
}

.booking-strip__status {
  max-width: 570px;
  margin: 14px auto 0;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  text-align: center;
  font-size: 12px;
  line-height: 1.65;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.quick-facts > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  text-align: center;
  color: #605f57;
  font-size: 12px;
}

.quick-facts .icon {
  width: 24px;
  height: 24px;
  color: #68685b;
}


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

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(3, 150px);
  gap: 12px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--beige);
  border-radius: var(--radius);
  isolation: isolate;
}

.gallery-item--0 {
  grid-row: span 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-reveal) var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, #15171095);
  pointer-events: none;
}

.gallery-item__label {
  position: absolute;
  z-index: 1;
  inset: auto 18px 15px;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  text-align: left;
}

.gallery-item__label .icon {
  width: 23px;
  height: 23px;
  padding: 4px;
  border: 1px solid #ffffff80;
  border-radius: 50%;
}

.gallery-item--0 .gallery-item__label {
  inset: auto 26px 24px;
  font-size: 14px;
}

.gallery-item--more {
  display: grid;
  place-items: center;
  min-height: 0;
  color: white;
  background:
    linear-gradient(135deg, #4c4439, #756957);
}

.gallery-item--more::after {
  inset: 0;
  background: linear-gradient(180deg, #1817142b 0%, #181714b8 100%);
}

.gallery-item__more-preview {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform var(--duration-reveal) var(--ease), opacity var(--duration-ui);
}

.gallery-item--more:hover .gallery-item__more-preview {
  transform: scale(1.04);
}

.gallery-item--more.has-image-fallback {
  background:
    radial-gradient(circle at 25% 20%, #9d8d754d, transparent 33%),
    linear-gradient(135deg, #423d35, #756957);
}

.gallery-item__more-content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 7px;
  padding: 18px;
  text-align: center;
  line-height: 1.35;
}

.gallery-item__more-content > .icon {
  width: 24px;
  height: 24px;
  margin-bottom: 2px;
}

.gallery-item__more-content > span {
  font-size: 12px;
  font-weight: 600;
}

.gallery-item__more-content small {
  color: #f3eee5d6;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .04em;
}

.gallery-footnote {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 12px !important;
}

.gallery-footnote .icon {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-filter {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: transparent;
  font-size: 12px;
  line-height: 1.5;
  transition: background var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast);
}

.gallery-filter:hover {
  background: var(--beige);
  border-color: var(--taupe);
}

.gallery-filter[aria-pressed="true"] {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.gallery-item:focus-visible {
  outline-offset: 4px;
}

.gallery-item:focus-visible img {
  transform: scale(1.03);
}

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

.bedroom-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  padding: 30px;
  transition: transform var(--duration-ui) var(--ease), box-shadow var(--duration-ui);
}

.bedroom-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px #292b2906;
}

.bedroom-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.bedroom-card__top > span {
  font: 500 44px/1 var(--serif);
  color: #9e8c73;
}

.bedroom-card__top > .icon {
  width: 38px;
  height: 38px;
  color: #756b5a;
}

.bedroom-card .eyebrow {
  letter-spacing: .16em;
  margin-bottom: 10px;
  font-size: 9px;
}

.bedroom-card h3 {
  font-family: var(--serif);
  font-size: 25px;
  letter-spacing: -.035em;
}

.bedroom-card ul {
  padding: 0;
  list-style: none;
  color: var(--muted);
  margin: 18px 0 27px;
  min-height: 51px;
  font-size: 14px;
}

.bedroom-card__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px !important;
}

.bedroom-card__footer .icon {
  width: 14px;
  height: 14px;
}

.bedroom-card__footer .icon:nth-of-type(2) {
  margin-left: auto;
}

.stay-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 27px;
}

.stay-note > .icon {
  color: var(--taupe);
  width: 20px;
}

.stay-note > .text-link {
  margin-left: auto;
  flex-shrink: 0;
}

.stay-note > p {
  font-size: 12px !important;
}

/* 12. Why stay at Casita Lia */

.why-stay {
  padding-top: 0;
}

.why-stay .section-heading {
  max-width: 780px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.why-point {
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.why-point > .icon {
  width: 29px;
  height: 29px;
  color: var(--taupe);
}

.why-point h3 {
  font-size: 17px;
  margin: 19px 0 11px;
}

.why-point p {
  font-size: 14px;
  line-height: 1.85;
}

.amenities {
  padding-top: 10px;
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  background: var(--paper);
}

.amenity-card {
  padding: 31px 33px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.amenity-card:nth-child(3n) {
  border-right: 0;
}

.amenity-card:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.amenity-card > .icon {
  width: 28px;
  height: 28px;
  color: #8a7b63;
  margin-bottom: 18px;
}

.amenity-card h3 {
  font-weight: 500;
  font-size: 15px;
}

.amenity-card ul {
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.65;
  margin: 16px 0 0;
  font-size: 14px;
}

.amenity-card li {
  position: relative;
  padding-left: 14px;
}

.amenity-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b7aa95;
}

.pool-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  align-items: stretch;
  margin-top: 32px;
  border-radius: 7px;
  overflow: hidden;
  background: var(--beige);
}

/* Keep the <picture> wrapper as one grid item.
   The global `picture { display: contents; }` otherwise exposes <source>
   and <img> to the grid, which can push the image/content into diagonal rows
   on wide screens. */
.pool-feature > picture {
  display: block;
  min-width: 0;
  overflow: hidden;
}

.pool-feature > picture > img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.pool-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 43px 45px;
}

@media (min-width: 601px) {
  .pool-feature > picture {
    grid-column: 1;
    grid-row: 1;
  }

  .pool-feature__content {
    grid-column: 2;
    grid-row: 1;
  }
}

.pool-feature__content .eyebrow {
  margin-bottom: 20px;
  font-size: 9px;
}

.pool-feature h3 {
  font: 500 37px/1.2 var(--serif);
  letter-spacing: -.035em;
}

.pool-feature__content > p:not(.eyebrow):not(.section-note) {
  margin-top: 16px;
  font-size: 14px;
}

.pool-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 330px;
  border-top: 1px solid #cfc3af;
  padding-top: 19px;
  margin-top: 20px;
  font-size: 12px;
}

.pool-price strong {
  font-size: 20px;
  font-weight: 500;
}

.pool-price small {
  font-size: 10px;
  color: var(--muted);
  font-weight: 400;
}

.pool-feature__content .section-note {
  margin-top: 12px;
  font-size: 12px !important;
}

.location {
  background: var(--paper);
}

.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.3fr;
  gap: 32px;
  align-items: stretch;
}

.location-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 34px;
}

.location-card > .icon {
  width: 31px;
  height: 31px;
  color: var(--taupe);
  margin-bottom: 22px;
}

.location-card .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
}

.location-card h3 {
  font: 500 34px/1.2 var(--serif);
  letter-spacing: -.025em;
}

.location-card__address {
  margin-top: 14px;
  font-size: 14px;
}

.location-card__map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 175px;
  margin: 25px 0 19px;
  border: 1px solid #d6cebf;
  border-radius: var(--radius-sm);
  background: radial-gradient(ellipse at center, #ece5d7 0%, #e2dbc9 100%);
  overflow: hidden;
}

.location-card__map::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid #b9af9980;
  border-radius: 50%;
  outline: 1px solid #b9af9950;
  outline-offset: 25px;
  pointer-events: none;
}

.location-card__map > .button {
  z-index: 1;
  box-shadow: 0 3px 14px #292b2910;
  font-size: 11px;
}

.location-card__map iframe {
  position: relative;
  width: 100%;
  height: 270px;
  border: 0;
  z-index: 1;
}

.location-card__actions .button {
  width: 100%;
  font-size: 11px;
}

.location-card .section-note {
  margin-top: 15px;
  font-size: 12px !important;
}

.nearby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 25px;
}

.nearby-card {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.nearby-card:first-child {
  grid-column: span 2;
  padding-top: 6px;
}

.nearby-card h3 {
  font-weight: 550;
  margin-bottom: 12px;
  font-size: 15px;
}

.nearby-card > p:not(.nearby-card__time) {
  line-height: 1.85;
  font-size: 14px;
}

.nearby-card__time {
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 11px;
  color: #726047;
}

.nearby-card__time .icon {
  width: 17px;
  height: 17px;
  margin-right: 5px;
}

.nearby-card .section-note {
  margin-top: 8px;
  font-size: 12px !important;
}

.location-disclaimer {
  margin-top: 19px;
  font-size: 12px !important;
}

.location-card__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.location-card__actions > .copy-address {
  min-height: 44px;
  font-size: 12px;
  order: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}

.about-visual {
  position: relative;
  padding-right: 24px;
}

.about-visual > picture > img {
  width: 100%;
  height: 595px;
  object-fit: cover;
  border-radius: var(--radius);
  object-position: 45% center;
}

.about-visual__note {
  position: absolute;
  right: 0;
  bottom: 65px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--paper);
  padding: 26px 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.about-visual__note > .icon {
  width: 28px;
  height: 28px;
  color: var(--taupe);
}

.about-visual__note span {
  font: 500 23px/1.45 var(--serif);
  letter-spacing: -.02em;
}

.photo-caption {
  margin-top: 17px;
  color: var(--muted);
  letter-spacing: .02em;
  font-size: 12px !important;
}

.about-copy > p:not(.eyebrow) {
  line-height: 1.85;
  margin-top: 19px;
  font-size: 15px;
}

.about-copy .about-copy__lead {
  font-size: 17px !important;
  color: var(--ink);
  margin-top: 25px !important;
  line-height: 1.6 !important;
}

.about-copy .about-copy__welcome {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px !important;
  color: var(--ink);
}

.about-copy .text-link {
  margin-top: 16px;
}

.getting-here {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.getting-here > h3 {
  font-family: var(--serif);
  font-size: 27px;
  margin-bottom: 30px;
}

.getting-here__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.getting-here__grid .eyebrow {
  font-size: 9px;
  margin-bottom: 10px;
}

.getting-here__grid h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.getting-here__grid p:not(.eyebrow) {
  font-size: 14px;
}

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

.getting-here > h2 {
  margin-bottom: 35px;
}

.getting-here__grid > div {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.check-in .section-heading h2 {
  max-width: 650px;
}

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

.arrival-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.arrival-card > .icon {
  width: 26px;
  height: 26px;
  color: var(--taupe);
  margin-bottom: 17px;
}

.arrival-card h3 {
  margin-bottom: 13px;
  font-weight: 500;
  font-size: 14px;
}

.arrival-card__value {
  font: 500 32px/1.3 var(--serif);
  letter-spacing: -.035em;
  color: var(--ink);
}

.arrival-card__value span:not([data-property]) {
  font: 400 13px var(--sans);
  letter-spacing: 0;
}

.arrival-card > p:last-child {
  margin-top: 13px;
  font-size: 12px !important;
}

.arrival-note {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  margin: 26px 0 30px;
}

.arrival-note > p + p {
  margin-top: 0;
}

.parking-card {
  display: flex;
  align-items: center;
  gap: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 21px 27px;
}

.parking-card > .icon {
  width: 30px;
  height: 30px;
  color: var(--taupe);
}

.parking-card h3 {
  font-weight: 550;
  margin-bottom: 3px;
  font-size: 15px;
}

.parking-card .text-link {
  margin-left: auto;
  font-size: 11px;
  flex-shrink: 0;
}

.arrival-note > p {
  font-size: 14px;
}

.parking-card p {
  font-size: 12px !important;
}

.house-rules {
  background: var(--paper);
}

.rules-layout,
.faq-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 110px;
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 130px;
}

.section-intro > p:not(.eyebrow) {
  max-width: 330px;
  margin-top: 24px;
  font-size: 15px;
}

.section-intro .text-link {
  margin-top: 25px;
}

.rules-summary {
  margin-top: 32px;
}

.rules-summary p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px !important;
}

.rules-summary .icon {
  width: 18px;
  height: 18px;
  color: var(--taupe);
}

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

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  line-height: 1.5;
  font-size: 15px;
}

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

.accordion summary .icon {
  width: 17px;
  height: 17px;
  color: var(--taupe);
  transition: transform .35s var(--ease);
}

.accordion details[open] summary .icon {
  transform: rotate(45deg);
}

.accordion summary:hover {
  color: #7b6546;
}

.accordion__body {
  padding: 0 25px 22px 0;
  line-height: 1.85;
  color: var(--muted);
  animation: accordion-in .35s var(--ease);
  font-size: 14px;
}

.accordion__body p + p {
  margin-top: 12px;
}

.accordion__body ul,
.accordion__body ol {
  margin-top: 0;
  margin-bottom: 0;
}

.accordion__body strong {
  font-weight: 600;
  color: #42443d;
}

.faq .section-intro h2 {
  max-width: 370px;
}

.cancellation {
  padding-top: 10px;
}

.policy-layout {
  display: grid;
  gap: 24px;
  padding-top: 0;
  border-top: 0;
  grid-template-columns: 1fr 1fr;
}

.policy-layout .section-intro {
  position: static;
}

.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--paper);
}

.policy-card h3 {
  font-size: 16px;
  margin-bottom: 16px;
}

.policy-card ul {
  margin-block: 16px;
}

.policy-card--accent {
  background: var(--beige);
}

.policy-note {
  font-size: 12px;
  margin-top: 20px;
}

.policy-note strong {
  color: var(--ink);
}

.policy-card p,
.policy-card li,
.policy-note p {
  font-size: 14px;
}

.policy-card + .policy-card {
  margin-top: 0;
}

.contact-cta {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: white;
  overflow: hidden;
}

.contact-cta > picture > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  z-index: -2;
}

.contact-cta__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  background: linear-gradient(90deg, #21251bc4, #24291c44);
  z-index: -1;
}

.contact-cta__content {
  padding-block: 65px;
}

.contact-cta .eyebrow {
  color: #ede4d5;
}

.contact-cta h2 {
  font-size: clamp(40px, 4.2vw, 61px);
  max-width: 720px;
}

.contact-cta h2 em {
  color: #eee1cb;
}

.contact-cta__content > p:not(.eyebrow):not(.contact-cta__note) {
  color: #f0eadf;
  font-size: 14px;
  max-width: 400px;
  margin-top: 24px;
}

.contact-cta__actions {
  display: flex;
  gap: 15px;
  margin-top: 29px;
}

.contact-cta__content > .contact-cta__note {
  max-width: 400px;
  margin-top: 17px;
  color: #e4dccf;
  font-size: 12px;
  line-height: 1.7;
}


.footer {
  background: var(--cream);
}

.footer__main {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.1fr;
  gap: 45px;
  padding: 65px 0 47px;
}

.footer__brand img {
  width: 190px;
  height: auto;
  filter: brightness(.65);
  margin-bottom: 17px;
}

.footer__brand p {
  line-height: 1.8;
  font-size: 13px;
}

.footer__brand > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  margin-top: 18px;
  font-size: 11px;
}

.footer__brand > span .icon {
  width: 15px;
  height: 15px;
}

.footer__column h3 {
  font-weight: 600;
  margin: 12px 0 18px;
  font-size: 12px;
}

.footer__column > a,
.footer__column > button:not(.text-link) {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  padding: 0;
  border: 0;
  background: none;
  text-align: left;
  font-size: 12px;
  min-height: 44px;
}

.footer__column > a:hover,
.footer__column > button:hover {
  color: var(--ink);
  text-decoration: underline;
}

.footer__column .icon {
  width: 15px;
  height: 15px;
}

.footer__contact > p {
  font-size: 11px;
  line-height: 1.8;
}

.footer__contact .text-link {
  font-size: 11px;
  margin-top: 13px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.footer__bottom > div {
  display: flex;
  align-items: center;
  gap: 26px;
}

.footer__bottom button {
  border: 0;
  background: none;
  padding: 9px 0;
  color: inherit;
  font-size: 11px;
  min-height: 44px;
}

.footer__bottom button:hover {
  text-decoration: underline;
}

.sticky-book-bar {
  display: none;
}

.toast-notice {
  position: fixed;
  z-index: 40;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, 15px);
  max-width: calc(100% - 32px);
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-fast), transform var(--duration-fast), visibility var(--duration-fast);
  box-shadow: 0 8px 35px #0002;
  text-align: center;
  pointer-events: none;
}

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

.noscript-note {
  position: fixed;
  bottom: 0;
  z-index: 50;
  background: var(--paper);
  padding: 15px;
  box-shadow: 0 0 30px #0002;
  font-size: 12px;
}

.footer__contact p {
  font-size: 13px;
}

dialog {
  --dialog-pad-x: 32px;
  --dialog-pad-y: 32px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  border-radius: 10px;
  max-height: calc(100dvh - 48px);
  max-width: calc(100% - 32px);
  padding: var(--dialog-pad-y) var(--dialog-pad-x);
  margin: auto;
  overscroll-behavior: contain;
  overflow-y: auto;
}

dialog::backdrop {
  background: #181b18a6;
  backdrop-filter: blur(6px);
}

dialog[open] {
  animation: dialog-in .35s var(--ease);
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.policy-dialog .dialog-heading {
  position: sticky;
  top: calc(-1 * var(--dialog-pad-y));
  z-index: 2;
  margin-top: calc(-1 * var(--dialog-pad-y));
  margin-inline: calc(-1 * var(--dialog-pad-x));
  padding: var(--dialog-pad-y) var(--dialog-pad-x) 16px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.dialog-heading h2 {
  font-size: 36px;
}

.dialog-heading .eyebrow {
  font-size: 9px;
  margin-bottom: 9px;
}

.dialog-heading .icon-button {
  width: 44px;
  height: 44px;
  min-width: 44px;
}

.policy-dialog {
  --dialog-pad-x: 36px;
  --dialog-pad-y: 36px;
  width: 650px;
}

.policy-dialog .dialog-heading {
  margin-bottom: 30px;
}

.policy-dialog > h3 {
  margin-bottom: 18px;
  font-size: 18px;
}

.policy-dialog > p {
  line-height: 1.9;
  font-size: 14px;
}

.policy-dialog > .button {
  margin-top: 26px;
}

.mobile-menu {
  width: 100%;
  max-width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  border: 0;
  border-radius: 0;
  padding: 25px;
  background: var(--cream);
}

.mobile-menu__top {
  position: sticky;
  top: -25px;
  z-index: 2;
  padding-block: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}

.mobile-menu__top img {
  width: 160px;
  height: auto;
  filter: brightness(.7);
}

.mobile-menu .eyebrow {
  font-size: 9px;
}

.mobile-menu nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px 25px;
  margin: 20px 0 35px;
}

.mobile-menu nav a {
  font: 500 27px/1.4 var(--serif);
  min-height: 57px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.mobile-menu nav a.is-active {
  color: #726047;
  border-bottom-color: currentColor;
  box-shadow: 0 1px 0 currentColor;
}

.mobile-menu > .button {
  width: 100%;
}

.mobile-menu__note {
  font-size: 11px;
  text-align: center;
  margin-top: 20px;
}

.lightbox {
  width: 1100px;
  background: #252823;
  color: #f3eee5;
  border-color: #5e5e52;
  padding: 22px 28px;
}

.lightbox .icon-button {
  border-color: #f3eee555;
  color: var(--cream);
}

.lightbox .icon-button:hover {
  background: #ffffff16;
}

.lightbox__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.lightbox__top p {
  color: var(--cream);
  font-size: 10px;
  letter-spacing: .16em;
}

.lightbox__top p span {
  font-size: 10px;
  color: #c0bbaf;
  letter-spacing: 0;
  margin-left: 20px;
}

.lightbox__stage {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  gap: 20px;
  align-items: center;
}

.lightbox__stage figure {
  min-width: 0;
}

.lightbox__image {
  width: 100%;
  height: min(56vh, 560px);
  object-fit: contain;
}

.lightbox__stage figcaption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-size: 12px;
  margin-top: 14px;
  align-items: baseline;
}

.lightbox__stage figcaption strong {
  font-weight: 400;
}

.lightbox__stage figcaption > span {
  font-size: 10px;
  color: #d0c9bb;
  flex-shrink: 0;
}

.lightbox__prev .icon {
  transform: rotate(180deg);
}

.lightbox__thumbs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 23px;
  flex-wrap: wrap;
  max-height: 128px;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 6px;
  align-content: start;
}

.lightbox__thumbs button {
  padding: 3px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: transparent;
  opacity: .5;
  transition: opacity var(--duration-fast), border-color var(--duration-fast);
  flex: 0 0 auto;
  min-width: 46px;
  min-height: 46px;
}

.lightbox__thumbs button.is-active,
.lightbox__thumbs button:hover {
  opacity: 1;
  border-color: #e5dac3;
}

.lightbox__thumbs img {
  width: 75px;
  height: 47px;
  object-fit: cover;
  border-radius: 1px;
}

.lightbox__hint {
  font-size: 10px;
  text-align: center;
  margin-top: 13px;
  color: #b5b2a7;
}

.lightbox__thumbs button[aria-pressed="true"] {
  opacity: 1;
  border-color: #e5dac3;
}

.lightbox__thumbs button:focus-visible {
  outline-color: #e5dac3;
  outline-offset: 2px;
}

.will-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--duration-reveal) var(--ease), transform var(--duration-reveal) var(--ease);
}

.will-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes accordion-in {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(.985);
  }

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


@media (min-width: 1600px) {
  .hero__content {
    padding-top: 50px;
  }

  .hero h1 {
    font-size: 84px;
  }
}

@media (max-width: 1250px) {
  .desktop-nav {
    gap: 15px;
  }

  .nav-shell {
    gap: 18px;
  }

  .brand,
  .brand img {
    width: 145px;
  }

  .container {
    width: calc(100% - 80px);
  }

  .about-grid {
    gap: 60px;
  }

  .rules-layout,
  .faq-layout {
    gap: 65px;
  }

  .bedroom-card {
    padding: 25px;
  }

  .bedroom-card h3 {
    font-size: 23px;
  }

  .pool-feature__content {
    padding: 35px;
  }

  .footer__main {
    gap: 30px;
  }
}

@media (max-width: 1179px) {
  :root {
    --header: 84px;
    --section-space: 85px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-shell > .button {
    margin-left: auto;
  }

  .menu-toggle {
    display: flex;
  }

  .container {
    width: calc(100% - 64px);
  }

  .hero {
    height: 780px;
    min-height: 740px;
  }

  .hero h1 {
    font-size: 70px;
  }

  .hero__bottom {
    bottom: 80px;
  }

  .quick-facts {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 25px;
  }

  .hero-booking-bar {
    gap: 24px;
    padding: 26px 28px;
  }

  .hero-booking-bar > .button {
    padding-inline: 18px;
    font-size: 12px;
    gap: 14px;
  }

  .section {
    padding: var(--section-space) 0;
  }

  .about-grid {
    gap: 48px;
  }

  .about-visual > picture > img {
    height: 610px;
  }

  .about-visual__note {
    padding: 22px;
  }

  .about-visual__note span {
    font-size: 21px;
  }

  .gallery-grid {
    grid-template-rows: repeat(3, 145px);
  }

  .amenities {
    padding-top: 0;
  }

  .bedroom-card {
    padding: 23px;
  }

  .bedroom-card h3 {
    font-size: 21px;
    min-height: 58px;
  }

  .bedroom-card__footer {
    flex-wrap: wrap;
    gap: 5px;
  }

  .bedroom-card__footer .icon:nth-of-type(2) {
    margin-left: 7px;
  }

  .stay-note {
    flex-wrap: wrap;
  }

  .stay-note p {
    flex: 1;
  }

  .stay-note .text-link {
    margin-left: auto;
  }

  .pool-feature > picture > img {
    min-height: 355px;
    height: 100%;
  }

  .pool-feature__content {
    padding: 30px;
    align-self: center;
  }

  .location-grid {
    gap: 25px;
    grid-template-columns: .9fr 1.1fr;
  }

  .location-card {
    padding: 27px;
  }

  .nearby-grid {
    gap: 0 20px;
  }

  .arrival-card {
    padding: 23px;
  }

  .arrival-card__value {
    font-size: 28px;
  }

  .rules-layout,
  .faq-layout {
    gap: 55px;
  }

  .footer__main {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .footer__contact {
    grid-column: 1/-1;
    max-width: 400px;
  }

  .footer__contact h3 {
    margin-top: 0;
  }

  .cancellation {
    padding-top: 0;
  }

  .footer__contact p {
    font-size: 13px;
  }
}

@media (max-width: 850px) {
  .hero {
    height: 760px;
    min-height: 720px;
  }

  .hero h1 {
    font-size: 66px;
  }

  .hero__content {
    padding-top: 35px;
  }

  .hero-booking-bar {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .hero-booking-bar > .button {
    justify-self: start;
    min-height: 52px;
  }

  .booking-strip {
    margin-top: -40px;
  }

  .hero__bottom {
    bottom: 70px;
  }

  .hero__bottom > span {
    display: none;
  }

  .hero__photos {
    margin-left: auto;
  }

  .about-grid {
    gap: 32px;
    align-items: start;
    grid-template-columns: 1fr;
  }

  .about-visual {
    padding-right: 10px;
    max-width: 600px;
  }

  .about-visual__note {
    padding: 18px;
    gap: 13px;
    bottom: 65px;
  }

  .about-visual__note span {
    font-size: 18px;
  }

  .about-copy > p:not(.eyebrow) {
    line-height: 1.75;
    font-size: 15px;
  }

  .about-copy .about-copy__lead,
  .about-copy .about-copy__welcome {
    font-size: 15px !important;
  }

  .section-heading--split {
    gap: 30px;
    grid-template-columns: 1.3fr 1fr;
  }

  .section-heading--split > p,
  .section-heading__aside {
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(3, 140px);
  }

  .bedroom-grid {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .amenity-card {
    padding: 26px 23px;
  }

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

  .pool-feature h3 {
    font-size: 32px;
  }

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

  .location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 30px;
    align-items: start;
  }

  .location-card > .icon {
    grid-column: 1;
    margin-bottom: 14px;
  }

  .location-card .eyebrow,
  .location-card h3,
  .location-card__address {
    grid-column: 1;
  }

  .location-card__map {
    grid-column: 2;
    grid-row: 1/5;
    margin: 0;
    align-self: stretch;
    min-height: 220px;
  }

  .location-card__actions {
    grid-column: 2;
    margin-top: 16px;
  }

  .location-card > .section-note {
    grid-column: 1;
    grid-row: 5;
    margin-top: 16px;
  }

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

  .nearby-card:first-child {
    grid-column: span 1;
    padding-top: 22px;
  }

  .nearby-card {
    padding: 22px 0;
  }

  .nearby-card--airport {
    grid-column: 1/-1;
  }

  .getting-here__grid {
    gap: 25px;
  }

  .arrival-card__value {
    font-size: 26px;
  }

  .arrival-card__value span:not([data-property]) {
    display: block;
    font-size: 11px;
    margin-top: 5px;
  }

  .accordion summary {
    min-height: 63px;
  }

  .footer__bottom > div > span {
    display: none;
  }

  .bedroom-card {
    padding: 28px;
  }

  .bedroom-card h3 {
    min-height: 0;
    font-size: 26px;
  }

  .bedroom-card ul {
    min-height: 0;
    font-size: 14px;
  }

  .bedroom-card__top {
    margin-bottom: 20px;
  }

  .bedroom-card .eyebrow {
    font-size: 9px;
  }

  .bedroom-card__footer {
    gap: 8px;
  }

  .bedroom-card__footer .icon {
    width: 16px;
    height: 16px;
  }

  .bedroom-card__footer .icon:nth-of-type(2) {
    margin-left: auto;
  }

  .about-visual > picture > img {
    height: 480px;
  }

  .about-copy {
    max-width: 620px;
  }

  .rules-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .section-intro {
    position: static;
  }

  .section-intro > p:not(.eyebrow) {
    max-width: 480px;
  }

  .faq .section-intro h2 {
    max-width: 540px;
  }

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

@media (max-width: 600px) {
  :root {
    --header: 74px;
    --section-space: 65px;
  }

  .container {
    width: calc(100% - 40px);
  }

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

  .section {
    padding: var(--section-space) 0;
  }

  h2 {
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: -.045em;
  }

  .eyebrow {
    letter-spacing: .15em;
    margin-bottom: 16px;
    font-size: 10px;
  }

  .brand,
  .brand img {
    width: 134px;
    height: auto;
  }

  .nav-shell {
    gap: 9px;
  }

  .nav-shell > .button {
    padding: 9px 12px;
    min-height: 44px;
    font-size: 11px;
    padding-inline: 10px;
    gap: 7px;
  }

  .nav-shell > .button .icon {
    width: 14px;
    height: 14px;
  }

  .menu-toggle {
    min-width: 44px;
    width: 44px;
    height: 44px;
  }

  .hero {
    height: auto;
    min-height: 740px;
    align-items: flex-start;
  }

  .hero__media img {
    object-position: 62% center;
  }

  .hero__veil {
    background: linear-gradient(90deg, #1a211ab8, #171d1860), linear-gradient(180deg, #1c241e1a, transparent 65%, #20251c40);
  }

  .hero__content {
    padding-top: 138px;
    padding-bottom: 170px;
  }

  .hero__address {
    letter-spacing: .12em;
    margin-bottom: 23px;
    gap: 7px;
    font-size: 8px;
  }

  .hero__address .icon {
    width: 14px;
    height: 14px;
  }

  .hero h1 {
    font-size: clamp(44px, 11.4vw, 66px);
    line-height: 1.13;
    letter-spacing: -.047em;
  }

  .hero__description {
    margin-top: 25px;
    line-height: 1.9;
    font-size: 14px;
    max-width: 340px;
  }

  .desktop-break {
    display: none;
  }

  .hero__highlights {
    margin-top: 22px;
    gap: 12px 18px;
    flex-wrap: wrap;
  }

  .hero__actions {
    margin-top: 31px;
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero__actions .button {
    padding-inline: 17px;
    gap: 19px;
    font-size: 12px;
    min-height: 50px;
  }

  .hero__explore {
    gap: 8px;
    font-size: 12px;
  }

  .hero__explore .icon {
    width: 12px;
    height: 12px;
  }

  .hero__photos {
    padding: 9px 12px;
    gap: 8px;
    margin-left: 0;
    font-size: 11px;
    min-height: 44px;
  }

  .hero__photos span {
    margin-left: 9px;
    font-size: 10px;
  }

  .hero__photos .icon {
    width: 14px;
    height: 14px;
  }

  .booking-strip {
    margin-top: -34px;
  }

  .hero-booking-bar {
    gap: 22px;
    padding: 25px 20px 20px;
    border-radius: 7px;
  }

  .booking-strip__copy .eyebrow {
    font-size: 8px;
    letter-spacing: .15em;
  }

  .booking-strip__copy h2 {
    max-width: 310px;
    font-size: 28px;
  }

  .hero-booking-bar > .button {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    padding-inline: 14px;
    font-size: 12px;
    min-height: 54px;
    text-align: left;
  }

  .booking-strip__note {
    line-height: 1.8;
    margin-top: 12px;
    font-size: 11px;
  }

  .booking-strip__note span {
    display: block;
    margin-left: 0;
  }

  .quick-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 18px;
    padding: 33px 0;
  }

  .quick-facts > div {
    line-height: 1.5;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    font-size: 12px;
    gap: 12px;
  }

  .quick-facts .icon {
    width: 21px;
    height: 21px;
  }

  .about-grid {
    gap: 42px;
  }

  .about-visual {
    padding-right: 15px;
  }

  .about-visual > picture > img {
    object-position: 45% center;
    height: 380px;
  }

  .about-visual__note {
    padding: 22px 25px;
    bottom: 55px;
    right: 0;
    gap: 17px;
  }

  .about-visual__note span {
    font-size: 21px;
  }

  .photo-caption {
    margin-top: 14px;
  }

  .about-copy > p:not(.eyebrow) {
    line-height: 1.85;
    font-size: 14px;
  }

  .about-copy .about-copy__lead {
    font-size: 16px !important;
    margin-top: 22px !important;
  }

  .about-copy .about-copy__welcome {
    font-size: 17px !important;
  }

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

  .section-heading {
    margin-bottom: 29px;
  }

  .section-heading--split > p,
  .section-heading__aside {
    justify-self: start;
    max-width: 350px;
    font-size: 14px;
  }

  .section-heading__aside .text-link {
    margin-top: 13px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 265px repeat(3, 155px);
    gap: 9px;
  }

  .gallery-item--0 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-item--0 .gallery-item__label {
    inset: auto 20px 18px;
    font-size: 12px;
  }

  .gallery-item__label {
    inset: auto 12px 12px;
    font-size: 11px;
  }

  .gallery-item__label .icon {
    width: 20px;
    height: 20px;
  }

  .gallery-item__more-content {
    gap: 5px;
    padding: 12px;
  }

  .gallery-item__more-content > .icon {
    width: 20px;
    height: 20px;
  }

  .gallery-item__more-content > span {
    font-size: 11px;
  }

  .gallery-item__more-content small {
    font-size: 9px;
  }

  .gallery-footnote {
    margin-top: 18px;
    font-size: 11px !important;
  }

  .gallery-footnote > span:last-child {
    display: none;
  }

  .bedroom-grid {
    gap: 15px;
  }

  .bedroom-card__top > span {
    font-size: 42px;
  }

  .bedroom-card__top > .icon {
    width: 34px;
    height: 34px;
  }

  .bedroom-card ul {
    margin: 16px 0 24px;
  }

  .bedroom-card__footer {
    padding-top: 15px;
    font-size: 11px !important;
  }

  .stay-note {
    gap: 10px;
    align-items: flex-start;
    margin-top: 23px;
  }

  .stay-note > .icon {
    margin-top: 3px;
  }

  .stay-note > .text-link {
    margin: 7px 0 0 30px;
    font-size: 11px;
  }

  .amenities {
    padding-top: 0;
  }

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

  .amenity-card {
    padding: 24px 18px;
  }

  .amenity-card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .amenity-card:nth-child(2n) {
    border-right: 0;
  }

  .amenity-card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .amenity-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .amenity-card > .icon {
    width: 25px;
    height: 25px;
    margin-bottom: 15px;
  }

  .amenity-card h3 {
    line-height: 1.45;
    font-size: 15px;
  }

  .amenity-card ul {
    line-height: 1.8;
    margin-top: 13px;
    font-size: 13px;
  }

  .amenity-card li::before {
    width: 3px;
    height: 3px;
    top: 11px;
  }

  .pool-feature {
    grid-template-columns: 1fr;
    margin-top: 23px;
  }

  .pool-feature > picture > img {
    min-height: 0;
  }

  .pool-feature__content {
    padding: 28px;
  }

  .pool-feature h3 {
    font-size: 35px;
  }

  .location-card {
    display: block;
    padding: 27px;
  }

  .location-card h3 {
    font-size: 33px;
  }

  .location-card__map {
    min-height: 190px;
    margin: 24px 0 18px;
  }

  .location-card__actions {
    margin-top: 0;
  }

  .location-card > .section-note {
    font-size: 10px;
    margin-top: 15px;
  }

  .nearby-grid {
    gap: 0 20px;
  }

  .nearby-card {
    padding: 22px 0;
  }

  .getting-here {
    margin-top: 0;
  }

  .getting-here__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .getting-here > h3 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .arrival-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .arrival-card {
    position: relative;
    padding: 23px 24px 23px 73px;
  }

  .arrival-card > .icon {
    position: absolute;
    left: 24px;
    top: 27px;
    width: 26px;
    height: 26px;
  }

  .arrival-card h3 {
    margin-bottom: 8px;
    font-size: 13px;
  }

  .arrival-card__value {
    font-size: 29px;
  }

  .arrival-card__value span:not([data-property]) {
    display: inline;
    font-size: 12px;
  }

  .arrival-card > p:last-child {
    margin-top: 9px;
  }

  .arrival-note {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 23px;
  }

  .arrival-note > .section-note {
    font-size: 10px;
  }

  .parking-card {
    padding: 22px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .parking-card > .icon {
    width: 24px;
    height: 24px;
  }

  .parking-card > div {
    flex: 1;
  }

  .parking-card .text-link {
    margin: 4px 0 0 38px;
    font-size: 12px;
  }

  .section-intro > p:not(.eyebrow) {
    margin-top: 19px;
    font-size: 14px;
  }

  .section-intro .text-link {
    margin-top: 18px;
    font-size: 12px;
  }

  .rules-summary {
    margin-top: 22px;
  }

  .accordion summary {
    padding-block: 19px;
    font-size: 14px;
    min-height: 66px;
  }

  .accordion__body {
    padding-right: 10px;
    font-size: 14px;
  }

  .cancellation {
    padding-top: 0;
  }

  .policy-card {
    padding: 23px;
  }

  .contact-cta {
    min-height: 450px;
  }

  .contact-cta__content {
    padding: 60px 0;
  }

  .contact-cta h2 {
    font-size: 39px;
  }

  .contact-cta__content > p:not(.eyebrow):not(.contact-cta__note) {
    max-width: 310px;
    font-size: 14px;
  }

  .contact-cta__actions {
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .contact-cta__actions .button {
    padding: 13px 16px;
    gap: 15px;
    font-size: 12px;
    min-height: 50px;
  }

  .footer {
    padding-bottom: 88px;
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
    padding: 43px 0 30px;
  }

  .footer__brand {
    grid-column: 1/-1;
  }

  .footer__brand img {
    width: 170px;
  }

  .footer__column h3 {
    margin: 0 0 13px;
    font-size: 12px;
  }

  .footer__contact {
    max-width: 320px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px 0;
    font-size: 11px;
  }

  .footer__bottom > div {
    gap: 23px;
  }

  .sticky-book-bar {
    display: flex;
    position: fixed;
    z-index: 15;
    bottom: 0;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #fcfaf6fa;
    backdrop-filter: blur(12px);
    transform: translateY(110%);
    visibility: hidden;
    transition: transform .35s var(--ease), visibility .35s;
    box-shadow: 0 -5px 22px #292b2908;
  }

  .sticky-book-bar.is-visible {
    transform: translateY(0);
    visibility: visible;
  }

  .dialog-open .sticky-book-bar {
    visibility: hidden;
    transform: translateY(110%);
  }

  .sticky-book-bar > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .sticky-book-bar strong {
    font: 500 20px var(--serif);
    letter-spacing: -.025em;
  }

  .sticky-book-bar span {
    color: var(--muted);
    font-size: 10px;
  }

  .sticky-book-bar .button {
    min-height: 44px;
    padding: 11px 15px;
    gap: 14px;
    font-size: 12px;
  }

  .sticky-book-bar .icon {
    width: 15px;
    height: 15px;
  }

  .toast-notice {
    bottom: 95px;
    width: max-content;
    font-size: 11px;
  }

  .dialog-heading h2 {
    font-size: 32px;
  }

  .dialog-heading {
    gap: 10px;
    margin-bottom: 17px;
  }

  .dialog-heading .eyebrow {
    font-size: 7px;
  }

  .dialog-heading .icon-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .policy-dialog {
    --dialog-pad-x: 25px;
    --dialog-pad-y: 25px;
    max-width: calc(100% - 24px);
  }

  .policy-dialog .dialog-heading h2 {
    font-size: 31px;
  }

  .lightbox {
    max-width: calc(100% - 16px);
    padding: 16px 13px;
    border-radius: 7px;
  }

  .lightbox__top {
    margin-bottom: 13px;
  }

  .lightbox__top p {
    font-size: 9px;
  }

  .lightbox__top p span {
    display: none;
  }

  .lightbox .icon-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .lightbox__stage {
    grid-template-columns: 44px 44px;
    justify-content: center;
    gap: 8px 16px;
  }

  .lightbox__stage figure {
    grid-column: 1 / -1;
    grid-row: 1;
    width: calc(100vw - 44px);
    justify-self: center;
  }

  .lightbox__stage > .icon-button {
    height: 44px;
    border: 0;
    width: 44px;
    min-width: 44px;
  }

  .lightbox__image {
    height: 48vh;
  }

  .lightbox__stage figcaption {
    gap: 8px;
    font-size: 12px;
  }

  .lightbox__thumbs {
    gap: 6px;
    margin-top: 22px;
    padding-inline: 3px;
  }

  .lightbox__thumbs img {
    width: 46px;
    height: 39px;
  }

  .mobile-menu {
    padding: 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .mobile-menu__top {
    top: -24px;
    margin-bottom: 35px;
  }

  .mobile-menu nav a {
    font-size: clamp(18px, 5.5vw, 25px);
    min-height: 61px;
  }

  .mobile-menu nav {
    gap: 8px 22px;
  }

  .hero__highlights span {
    font-size: 11px;
    gap: 7px;
  }

  .hero__highlights span + span {
    padding-left: 0;
  }

  .hero__highlights .icon {
    width: 16px;
    height: 16px;
  }

  .hero__bottom {
    bottom: 70px;
  }

  .text-link,
  .about-copy .text-link {
    font-size: 12px;
  }

  .amenity-card li {
    padding-left: 12px;
  }

  .pool-feature__content .eyebrow {
    font-size: 9px;
  }

  .pool-feature__content > p:not(.eyebrow):not(.section-note) {
    font-size: 14px;
  }

  .pool-price {
    font-size: 13px;
  }

  .pool-price small,
  .location-card__actions .button {
    font-size: 12px;
  }

  .nearby-card h3 {
    font-size: 15px;
  }

  .nearby-card__time {
    font-size: 10px;
  }

  .nearby-card > p:not(.nearby-card__time) {
    font-size: 13px;
  }

  .getting-here__grid p:not(.eyebrow),
  .arrival-note > p {
    font-size: 14px;
  }

  .getting-here__grid h4 {
    font-size: 15px;
  }

  .parking-card h3,
  .policy-card p,
  .policy-card li,
  .policy-note p {
    font-size: 14px;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .policy-card h3 {
    font-size: 17px;
  }

  .footer__column > a,
  .footer__column > button:not(.text-link) {
    font-size: 12px;
    min-height: 44px;
  }

  .footer__contact p,
  .footer__contact .text-link {
    font-size: 13px;
  }

  .footer__bottom button {
    font-size: 12px;
  }

  .policy-dialog > p {
    font-size: 14px;
  }

  .lightbox__hint,
  .lightbox__stage figcaption > span {
    font-size: 11px;
  }

  .why-grid {
    gap: 28px 24px;
  }

  .why-point {
    padding-top: 21px;
  }

  .why-point h3 {
    font-size: 16px;
    margin-top: 16px;
  }

  .why-point p {
    font-size: 13px;
  }

  .gallery-filters {
    gap: 8px;
    margin-bottom: 20px;
  }

  .gallery-filter {
    padding-inline: 12px;
    font-size: 12px;
  }

  .getting-here > h2 {
    margin-bottom: 28px;
  }

}

@media (max-width: 359px) {
  .container {
    width: calc(100% - 32px);
  }

  .nav-shell > .button {
    padding-inline: 10px;
    gap: 6px;
    display: none;
  }

  .nav-shell {
    gap: 4px;
  }

  .hero {
    min-height: 695px;
  }

  .hero__content {
    padding-top: 127px;
  }

  .hero__address {
    gap: 5px;
    font-size: 7px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero__actions .button {
    gap: 14px;
    font-size: 11px;
    padding-inline: 14px;
  }

  .hero__explore {
    gap: 5px;
    font-size: 11px;
  }

  .quick-facts {
    gap: 25px 15px;
    grid-template-columns: repeat(2, 1fr);
  }

  .about-visual__note {
    padding: 19px;
  }

  .about-visual__note span {
    font-size: 19px;
  }

  h2 {
    font-size: 32px;
  }

  .gallery-grid {
    grid-template-rows: 235px repeat(3, 140px);
  }

  .pool-feature__content {
    padding: 24px;
  }

  .contact-cta h2 {
    font-size: 34px;
  }

  .contact-cta__actions .button {
    padding-inline: 13px;
  }

  .sticky-book-bar {
    padding-inline: 16px;
    gap: 8px;
  }

  .sticky-book-bar strong {
    font-size: 18px;
  }

  .sticky-book-bar .button {
    padding-inline: 12px;
    gap: 10px;
    font-size: 11px;
  }

  .mobile-menu nav a {
    font-size: 18px;
  }

  .menu-toggle {
    margin-left: auto;
  }

  .brand,
  .brand img {
    width: 136px;
  }

  .hero__highlights span {
    font-size: 10px;
  }

  .hero__highlights span + span {
    padding-left: 0;
    border: 0;
  }

  .hero__highlights {
    gap: 12px;
  }

  .hero__actions {
    gap: 14px;
  }

  .quick-facts > div {
    font-size: 12px;
    gap: 9px;
  }

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

  .amenity-card {
    padding: 27px;
  }

  .amenity-card:nth-child(n) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .amenity-card:last-child {
    border-bottom: 0;
  }

  .amenity-card h3 {
    font-size: 16px;
  }

  .amenity-card ul {
    font-size: 14px;
  }

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

  .nearby-card {
    grid-column: auto;
  }

  .sticky-book-bar span {
    font-size: 9px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .why-point p {
    font-size: 14px;
  }

  .lightbox__thumbs img {
    width: 40px;
  }
}

@media (max-height: 540px) {
  dialog {
    max-height: calc(100dvh - 16px);
  }

  .policy-dialog {
    --dialog-pad-x: 22px;
    --dialog-pad-y: 22px;
    max-height: calc(100dvh - 16px);
  }

  .dialog-heading {
    margin-bottom: 14px;
  }

  .mobile-menu {
    max-height: 100dvh;
  }

  .mobile-menu__top {
    margin-bottom: 16px;
  }

  .mobile-menu nav {
    gap: 5px 22px;
    margin-block: 12px 20px;
  }

  .mobile-menu nav a {
    min-height: 48px;
    font-size: 23px;
  }

  .lightbox {
    padding-block: 12px;
  }

  .lightbox__top {
    margin-bottom: 8px;
  }

  .lightbox__image {
    height: clamp(110px, calc(100dvh - 230px), 270px);
  }

  .lightbox__stage figcaption {
    margin-top: 8px;
  }

  .lightbox__thumbs {
    margin-top: 10px;
    max-height: 65px;
  }

  .lightbox__hint {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero__media {
    transform: none !important;
    will-change: auto;
  }

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

@media print {
  .site-header,
  .hero,
  .booking-strip,
  .contact-cta,
  .footer,
  .sticky-book-bar,
  .section-navigator,
  dialog,
  .text-link,
  .button {
    display: none !important;
  }

  .section {
    padding: 24px 0;
  }

  .container {
    width: 100%;
  }

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

  .section-intro {
    position: static;
  }

  .accordion details::details-content,
  .accordion__body,
  .rules-layout,
  .faq-layout,
  .policy-layout {
    display: block;
  }

  .getting-here-section {
    background: transparent;
  }

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

/* Location heading: keep the supporting copy directly below "Where you'll be." */
.location .section-heading--split {
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

.location .section-heading--split > p {
  justify-self: start;
  max-width: 560px;
  margin-top: 0;
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 850px) {
  .location .section-heading--split {
    gap: 14px;
  }

  .location .section-heading--split > p {
    max-width: 100%;
    font-size: 14px;
  }
}

