:root {
  --bg: #f3eee6;
  --surface: #fbf7f1;
  --surface-strong: #f7f1e7;
  --ink: #142117;
  --muted: #5c685f;
  --line: rgba(20, 33, 23, 0.12);
  --pine: #1e3425;
  --pine-soft: #314c3a;
  --copper: #ba8f5d;
  --shadow: 0 24px 60px rgba(15, 23, 17, 0.14);
  --font-sans: "Roboto", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
  --chrome-surface: #f7f1e9;
  --ldg-bnb-background: #ffffff;
  --ldg-bnb-border-radius: 0px;
  --ldg-bnb-box-shadow: none;
  --ldg-bnb-padding: 14px;
  --ldg-bnb-input-background: #ffffff;
  --ldg-bnb-button-border-radius: 0px;
  --ldg-bnb-color-primary: #1d4b3d;
  --ldg-bnb-color-primary-lighter: #87a99b;
  --ldg-bnb-color-primary-darker: #173c31;
  --ldg-bnb-color-primary-contrast: #f7f2ea;
  --ldg-component-calendar-cell-selection-bg-color: #1d4b3d;
  --ldg-component-calendar-cell-selection-color: #f7f2ea;
  --ldg-component-calendar-cell-selected-bg-color: #87a99b;
  --ldg-component-calendar-cell-selected-color: #f7f2ea;
  --ldg-bnb-font-family: inherit;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--chrome-surface);
  font-family: var(--font-sans);
}

body::before,
body::after {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 18;
  width: 28px;
  content: "";
  background: var(--chrome-surface);
  pointer-events: none;
}

body::before {
  left: 0;
}

body::after {
  right: 0;
}

main {
  background: #fff;
}

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

body.lightbox-open {
  overflow: hidden;
}

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

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

.shell {
  width: min(1200px, calc(100% - 56px));
  margin: 0 auto;
}

.site-chrome {
  position: fixed;
  top: 44px;
  left: 28px;
  right: 92px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0;
  color: #f7f3ed;
  pointer-events: none;
  transition:
    top 220ms ease,
    left 220ms ease,
    right 220ms ease,
    padding 220ms ease,
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-chrome > * {
  pointer-events: auto;
}

.menu-toggle {
  display: inline-grid;
  gap: 10px;
  justify-items: center;
  min-width: 88px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.menu-lines {
  display: grid;
  gap: 7px;
  width: 52px;
}

.menu-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform 240ms ease, opacity 180ms ease;
}

.menu-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: letter-spacing 220ms ease, transform 220ms ease, opacity 180ms ease;
}

.menu-toggle:hover .menu-lines span:nth-child(1),
.menu-toggle:focus-visible .menu-lines span:nth-child(1) {
  transform: translateX(-3px) scaleX(1.04);
}

.menu-toggle:hover .menu-lines span:nth-child(2),
.menu-toggle:focus-visible .menu-lines span:nth-child(2) {
  transform: translateX(3px) scaleX(0.94);
}

.menu-toggle:hover .menu-lines span:nth-child(3),
.menu-toggle:focus-visible .menu-lines span:nth-child(3) {
  transform: translateX(-2px) scaleX(1.08);
}

.menu-toggle:hover .menu-text,
.menu-toggle:focus-visible .menu-text {
  letter-spacing: 0.32em;
  transform: translateY(1px);
}

@media (prefers-reduced-motion: reduce) {
  .menu-toggle,
  .menu-lines span,
  .menu-text {
    transition: none;
  }
}

.site-home-link {
  color: rgba(247, 243, 237, 0.96);
  font-size: clamp(1.14rem, 2vw, 1.62rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    opacity 180ms ease,
    color 180ms ease,
    transform 220ms ease;
}

body.page-home .site-home-link {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: none;
}

body.page-home.has-scrolled .site-home-link,
body:not(.page-home) .site-home-link {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.site-home-link:hover,
.site-home-link:focus-visible {
  opacity: 0.74;
}

.site-nav {
  display: flex;
  justify-self: end;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 42px);
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(247, 243, 237, 0.96);
  opacity: 1;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.menu-toggle:hover,
.menu-toggle:focus-visible {
  opacity: 1;
}

.site-nav:hover a:not(:hover),
.site-nav:focus-within a:not(:focus-visible) {
  color: rgba(247, 243, 237, 0.34);
  opacity: 1;
}

body.has-scrolled .site-chrome {
  top: 0;
  left: 0;
  right: 0;
  padding: 22px 96px 18px 28px;
  background: var(--chrome-surface);
  color: var(--pine);
  box-shadow: none;
}

body.has-scrolled .site-nav a {
  color: rgba(30, 52, 37, 0.96);
}

body.has-scrolled .site-home-link {
  color: rgba(30, 52, 37, 0.96);
}

body.has-scrolled .site-nav:hover a:not(:hover),
body.has-scrolled .site-nav:focus-within a:not(:focus-visible) {
  color: rgba(30, 52, 37, 0.34);
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  align-items: stretch;
  justify-items: start;
  padding: 28px 0 28px 28px;
  background: rgba(11, 17, 13, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1200ms ease, visibility 0s linear 1200ms;
}

.menu-open .site-menu {
  opacity: 1;
  visibility: visible;
  transition: opacity 1200ms ease, visibility 0s linear 0s;
}

.site-menu-panel {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 34px;
  width: min(560px, calc(100vw - 240px));
  min-height: calc(100svh - 56px);
  padding: 26px 28px 30px 30px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, #1d4b3d 0%, #1a4438 100%);
  color: #f7f3ed;
  box-shadow: 0 32px 80px rgba(8, 14, 11, 0.34);
  opacity: 0.12;
  transform: translateX(-132px);
  transition:
    transform 1280ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 1280ms ease;
}

.menu-open .site-menu-panel {
  opacity: 1;
  transform: translateX(0);
}

.site-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-menu-close {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f7f3ed;
  cursor: pointer;
}

.site-menu-close span {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 36px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
}

.site-menu-close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.site-menu-close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.site-menu-logo {
  display: inline-grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 2px solid rgba(247, 243, 237, 0.82);
  border-radius: 50%;
  color: #f7f3ed;
  text-transform: uppercase;
}

.site-menu-logo span {
  font-size: 1.08rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
}

.site-menu-nav {
  display: grid;
  align-content: start;
}

.site-menu-link {
  position: relative;
  display: grid;
  gap: 10px;
  padding: 22px 0 18px;
  color: #f7f3ed;
  transition: color 220ms ease;
}

.site-menu-link::before,
.site-menu-link::after {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 1px;
  content: "";
}

.site-menu-link::before {
  background: rgba(247, 243, 237, 0.18);
}

.site-menu-link::after {
  background: rgba(247, 243, 237, 0.96);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 340ms ease;
}

.site-menu-link-main {
  font-size: clamp(1.2rem, 2.15vw, 1.72rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1;
}

.site-menu-link-sub {
  color: rgba(247, 243, 237, 0.7);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.site-menu-nav:hover .site-menu-link,
.site-menu-nav:focus-within .site-menu-link {
  color: rgba(247, 243, 237, 0.26);
}

.site-menu-nav:hover .site-menu-link .site-menu-link-sub,
.site-menu-nav:focus-within .site-menu-link .site-menu-link-sub {
  color: rgba(247, 243, 237, 0.2);
}

.site-menu-link:hover,
.site-menu-link:focus-visible,
.site-menu-nav:hover .site-menu-link:hover,
.site-menu-nav:hover .site-menu-link:focus-visible,
.site-menu-nav:focus-within .site-menu-link:hover,
.site-menu-nav:focus-within .site-menu-link:focus-visible {
  color: #f7f3ed;
}

.site-menu-link:hover .site-menu-link-sub,
.site-menu-link:focus-visible .site-menu-link-sub,
.site-menu-nav:hover .site-menu-link:hover .site-menu-link-sub,
.site-menu-nav:hover .site-menu-link:focus-visible .site-menu-link-sub,
.site-menu-nav:focus-within .site-menu-link:hover .site-menu-link-sub,
.site-menu-nav:focus-within .site-menu-link:focus-visible .site-menu-link-sub {
  color: rgba(247, 243, 237, 0.76);
}

.site-menu-link:hover::after,
.site-menu-link:focus-visible::after {
  transform: scaleX(1);
}

.site-menu-meta {
  align-self: end;
  display: grid;
  gap: 10px;
  max-width: 680px;
}

.site-menu-meta-title {
  margin: 0;
  color: rgba(247, 243, 237, 0.94);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.site-menu-meta-copy {
  margin: 0;
  color: rgba(247, 243, 237, 0.88);
  font-size: clamp(0.92rem, 1.35vw, 1.08rem);
  line-height: 1.6;
}

.site-menu-meta-copy a {
  color: inherit;
  text-decoration: none;
}

body.menu-open .site-chrome,
body.menu-open .floating-rates-button,
body.booking-open .site-chrome,
body.booking-open .floating-rates-button {
  opacity: 0;
  pointer-events: none;
}

.floating-rates-button {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 42;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  min-height: 182px;
  padding: 18px 10px;
  border-left: 1px solid rgba(20, 33, 23, 0.08);
  background: var(--chrome-surface);
  box-shadow: none;
  color: var(--pine);
  transform: translateY(-50%);
  transform-origin: right center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.floating-rates-button:hover,
.floating-rates-button:focus-visible {
  background: var(--chrome-surface);
  box-shadow: none;
  transform: translateY(-50%) scale(1.04);
}

.floating-rates-button span {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.booking-drawer {
  position: fixed;
  inset: 0;
  z-index: 62;
  display: grid;
  justify-items: end;
  background: rgba(11, 17, 13, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: opacity 1200ms ease, visibility 0s linear 1200ms;
}

.booking-open .booking-drawer {
  opacity: 1;
  visibility: visible;
  transition: opacity 1200ms ease, visibility 0s linear 0s;
}

.booking-drawer-panel {
  width: min(560px, calc(100vw - 80px));
  min-height: 100svh;
  padding: 28px 28px 36px;
  overflow-y: auto;
  background: var(--chrome-surface);
  color: var(--pine);
  box-shadow: -28px 0 70px rgba(8, 14, 11, 0.2);
  opacity: 0.12;
  transform: translateX(136px);
  transition:
    transform 1280ms cubic-bezier(0.19, 1, 0.22, 1),
    opacity 1280ms ease;
}

.booking-open .booking-drawer-panel {
  opacity: 1;
  transform: translateX(0);
}

.booking-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.booking-drawer-label {
  margin: 0;
  color: rgba(30, 52, 37, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.booking-drawer-close {
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--pine);
  cursor: pointer;
}

.booking-drawer-close span {
  position: absolute;
  top: 50%;
  left: 6px;
  width: 36px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
}

.booking-drawer-close span:first-child {
  transform: translateY(-50%) rotate(45deg);
}

.booking-drawer-close span:last-child {
  transform: translateY(-50%) rotate(-45deg);
}

.booking-drawer-copy {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.booking-drawer-copy h2 {
  margin: 0;
  font-size: clamp(2.05rem, 4vw, 3.05rem);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0.03em;
}

.booking-drawer-copy p {
  max-width: 26ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.booking-widget-shell {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(20, 33, 23, 0.08);
  background: #ffffff;
}

#lodgify-book-now-box {
  width: 100%;
}

.booking-widget-note {
  margin: 16px 0 0;
  color: rgba(30, 52, 37, 0.58);
  font-size: 0.82rem;
  line-height: 1.6;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  background: var(--pine);
  color: #f7f2ea;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
}

.button-ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(20, 33, 23, 0.06);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 28px 0 34px;
  background: var(--chrome-surface);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 62px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-frame {
  position: relative;
  width: min(1460px, calc(100vw - 56px));
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 23, 0.08);
  box-shadow: none;
  background: #182119;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 14, 11, 0.08), rgba(8, 14, 11, 0.54)),
    linear-gradient(90deg, rgba(8, 14, 11, 0.14), rgba(8, 14, 11, 0.06));
}

.hero-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  max-width: 680px;
  padding: 44px 46px 42px;
  color: #f8f3ea;
  text-align: left;
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.cta-panel h2,
.placeholder-copy h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: 0.03em;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  line-height: 0.98;
}

.hero-tagline {
  max-width: 24ch;
  margin: 16px 0 0;
  color: rgba(248, 243, 234, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--copper);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.editorial-section,
.reviews-strip {
  padding-top: 108px;
}

.section-divider {
  display: flex;
  justify-content: center;
  margin-bottom: 38px;
}

.section-divider-line {
  display: block;
  width: min(100%, 1280px);
  height: 1px;
  background: rgba(20, 33, 23, 0.16);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 900ms ease;
}

.section-divider-line.is-visible {
  transform: scaleX(1);
}

.editorial-intro,
.reviews-strip-head {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  margin: 0 auto 38px;
}

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

.reviews-strip-head {
  max-width: 860px;
}

.editorial-intro h2,
.reviews-strip-head h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 4.25rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0.03em;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.editorial-layout-left {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.52fr);
}

.editorial-layout-left .editorial-media {
  order: 1;
}

.editorial-layout-left .editorial-copy {
  order: 2;
}

.editorial-copy {
  display: grid;
  gap: 18px;
  max-width: 36rem;
}

.editorial-intro-wide {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.editorial-copy-centered {
  max-width: 54rem;
  margin-inline: auto;
}

.editorial-copy-centered p {
  max-width: none;
}

.editorial-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.editorial-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 23, 0.08);
}

.editorial-media-large img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.moments-carousel {
  position: relative;
  display: grid;
  gap: 34px;
  margin-top: 34px;
  width: calc(100vw - 56px);
  max-width: calc(100vw - 56px);
  margin-left: calc(50% - 50vw + 28px);
}

.moments-viewport {
  position: relative;
  overflow: hidden;
}

.moments-track {
  display: flex;
  gap: 24px;
  height: clamp(300px, 44vw, 680px);
  will-change: transform;
  transition: transform 1450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.moment-slide {
  display: block;
  flex: 0 0 clamp(660px, 73vw, 1060px);
  height: 100%;
  opacity: 0.2;
  transform: scale(0.972);
  filter: saturate(0.76) brightness(0.88);
  transition:
    opacity 1450ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1450ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.moment-slide.is-active {
  opacity: 1;
  transform: none;
  filter: none;
}

.moment-slide.is-next {
  opacity: 0.42;
  transform: scale(0.988);
  filter: saturate(0.84) brightness(0.94);
}

.moment-slide.is-prev {
  opacity: 0.42;
  transform: scale(0.988);
  filter: saturate(0.84) brightness(0.94);
}

.moment-figure {
  margin: 0;
  overflow: hidden;
  height: 100%;
}

.moment-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moments-carousel .carousel-arrow {
  top: 50%;
  width: 96px;
  height: 228px;
  transform: translateY(-50%);
  color: rgba(20, 33, 23, 0.22);
}

.moments-carousel .carousel-arrow:hover,
.moments-carousel .carousel-arrow:focus-visible {
  color: rgba(20, 33, 23, 0.42);
}

.moments-carousel .carousel-arrow span {
  display: inline-block;
  font-size: 7.2rem;
  line-height: 0.7;
  font-weight: 200;
  transform: scaleX(0.46) scaleY(2.24);
}

.moments-carousel .carousel-arrow-prev {
  left: 4px;
}

.moments-carousel .carousel-arrow-next {
  right: 4px;
}

.moments-carousel .carousel-pagination {
  gap: 14px;
  padding: 0 160px;
}

.moments-carousel .carousel-pagination-line {
  appearance: none;
  flex: 0 1 74px;
  max-width: 74px;
  padding: 0;
  border: 0;
  height: 1px;
  background: rgba(20, 33, 23, 0.16);
  transition: background-color 180ms ease, transform 180ms ease;
}

.moments-carousel .carousel-pagination-line.is-active {
  background: rgba(20, 33, 23, 0.66);
}

.reviews-strip {
  padding-bottom: 8px;
}

.reviews-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.review-quote-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 28px 26px;
  border: 1px solid rgba(20, 33, 23, 0.08);
  background: var(--surface);
}

.review-quote {
  margin: 0;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.review-source {
  margin: 0;
  color: rgba(20, 33, 23, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

section:not(.hero):not(.experience-band):not(.placeholder-hero):not(.editorial-section):not(.reviews-strip) {
  padding-top: 96px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading h2,
.experience-copy h2,
.cta-panel h2,
.placeholder-copy h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.section-heading-split {
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 360px);
  align-items: end;
}

.section-note,
.intro-copy p,
.feature-copy p,
.experience-copy p,
.stay-panel-copy p,
.cta-panel p,
.placeholder-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 30px;
  align-items: center;
}

.intro-copy {
  display: grid;
  gap: 20px;
  padding: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.intro-image,
.feature-card,
.stay-panel,
.cta-panel,
.placeholder-copy {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.intro-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.spaces {
  padding-top: 36px;
}

.spaces-carousel {
  position: relative;
  display: grid;
  gap: 34px;
}

.spaces-track {
  display: grid;
  grid-template-columns: minmax(120px, 0.17fr) minmax(0, 1fr) minmax(120px, 0.17fr);
  align-items: center;
  gap: 26px;
}

.space-slide {
  display: none;
  opacity: 0.18;
  transition: opacity 220ms ease, transform 220ms ease;
}

.space-slide.is-active,
.space-slide.is-prev,
.space-slide.is-next {
  display: block;
}

.space-slide.is-prev,
.space-slide.is-next {
  opacity: 0.2;
  transform: scale(0.98);
}

.space-slide.is-prev {
  grid-column: 1;
}

.space-slide.is-active {
  grid-column: 2;
  opacity: 1;
  transform: none;
}

.space-slide.is-next {
  grid-column: 3;
}

.space-figure {
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.space-slide.is-active .space-figure {
  box-shadow: none;
}

.space-figure img {
  aspect-ratio: 16 / 9.25;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 39%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(30, 52, 37, 0.52);
  cursor: pointer;
  transition: color 180ms ease, opacity 180ms ease;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible {
  color: rgba(30, 52, 37, 0.82);
}

.carousel-arrow span {
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 200;
}

.carousel-arrow-prev {
  left: 6px;
}

.carousel-arrow-next {
  right: 6px;
}

.carousel-pagination {
  display: flex;
  justify-content: center;
  gap: 58px;
  padding: 0 80px;
}

.carousel-pagination-line {
  flex: 1 1 0;
  max-width: 118px;
  height: 1px;
  background: rgba(20, 33, 23, 0.16);
}

.carousel-pagination-line.is-active {
  background: rgba(20, 33, 23, 0.72);
}

.features {
  padding-bottom: 8px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.feature-card {
  grid-column: span 4;
}

.feature-card-large {
  grid-column: span 6;
}

.feature-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-card-large img {
  aspect-ratio: 16 / 11;
}

.feature-copy {
  display: grid;
  gap: 10px;
  padding: 22px 22px 24px;
}

.feature-copy h3,
.stay-panel h3 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: 0.03em;
}

.experience-band {
  margin-top: 96px;
  padding: 88px 0;
  background:
    radial-gradient(circle at top left, rgba(186, 143, 93, 0.18), transparent 28%),
    linear-gradient(180deg, #162219, #1e3024);
  color: #f7f2ea;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.experience-copy p {
  color: rgba(247, 242, 234, 0.8);
}

.bullet-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(247, 242, 234, 0.9);
}

.experience-stack {
  position: relative;
  min-height: 620px;
}

.stack-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.stack-card img {
  height: 100%;
  object-fit: cover;
}

.stack-card-front {
  inset: 28px 0 0 82px;
}

.stack-card-back {
  inset: 0 112px 190px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 220ms ease;
}

.gallery-card-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.gallery-card-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 12, 0);
  transition: background 220ms ease;
  pointer-events: none;
}

.gallery-grid figure:hover .gallery-card-button::after,
.gallery-grid figure:focus-within .gallery-card-button::after,
.gallery-theme-grid figure:hover .gallery-card-button::after,
.gallery-theme-grid figure:focus-within .gallery-card-button::after {
  background: rgba(10, 16, 12, 0.18);
}

.gallery-card-button:focus-visible {
  outline: 1px solid rgba(20, 33, 23, 0.48);
  outline-offset: 4px;
}

.gallery-grid figure:nth-child(2),
.gallery-grid figure:nth-child(3),
.gallery-grid figure:nth-child(4),
.gallery-grid figure:nth-child(5) {
  grid-column: span 3;
}

.gallery-tall {
  grid-column: span 6;
}

.gallery-wide {
  grid-column: span 6;
}

.gallery-tall img {
  aspect-ratio: 5 / 4;
}

.gallery-wide img {
  aspect-ratio: 16 / 10;
}

.gallery-grid figure:nth-child(2) img,
.gallery-grid figure:nth-child(3) img,
.gallery-grid figure:nth-child(4) img,
.gallery-grid figure:nth-child(5) img {
  aspect-ratio: 4 / 4;
}

.gallery-theme-head {
  display: grid;
  gap: 12px;
  justify-items: center;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.gallery-theme-head h2,
.gallery-page-cta-panel h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0.03em;
}

.gallery-theme-head p:last-child,
.gallery-page-cta-panel p:not(.eyebrow) {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.gallery-theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.gallery-theme-grid figure {
  margin: 0;
  overflow: hidden;
}

.gallery-theme-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: filter 220ms ease;
}

.gallery-page-cta-panel {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 34px;
  border: 1px solid rgba(20, 33, 23, 0.08);
  background: var(--surface);
  text-align: center;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 36px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}

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

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 14, 11, 0.82);
}

.gallery-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(1280px, calc(100vw - 84px));
  gap: 18px;
}

.gallery-lightbox-figure {
  margin: 0;
  width: 100%;
}

.gallery-lightbox-figure img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
}

.gallery-lightbox-close {
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 2;
  width: 54px;
  height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(251, 247, 241, 0.92);
  cursor: pointer;
}

.gallery-lightbox-close span {
  position: absolute;
  top: 26px;
  left: 10px;
  width: 34px;
  height: 1px;
  background: currentColor;
}

.gallery-lightbox-close span:first-child {
  transform: rotate(45deg);
}

.gallery-lightbox-close span:last-child {
  transform: rotate(-45deg);
}

.gallery-lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(251, 247, 241, 0.56);
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease;
}

.gallery-lightbox-arrow:hover,
.gallery-lightbox-arrow:focus-visible,
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  color: rgba(251, 247, 241, 0.92);
}

.gallery-lightbox-prev {
  left: -14px;
}

.gallery-lightbox-next {
  right: -14px;
}

.gallery-lightbox-arrow span {
  font-size: 4rem;
  font-weight: 200;
  line-height: 1;
}

.gallery-lightbox-count {
  margin: 0;
  color: rgba(251, 247, 241, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.stay-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.stay-panel {
  grid-column: span 6;
}

.stay-panel:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.detail-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail-list span {
  color: var(--muted);
}

.detail-list strong {
  text-align: right;
  font-weight: 700;
}

.stay-visual img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.stay-panel-copy {
  display: grid;
  gap: 10px;
  padding: 20px 22px 24px;
}

.cta {
  padding: 96px 0;
}

.cta-panel {
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.56)),
    linear-gradient(120deg, rgba(186, 143, 93, 0.12), rgba(30, 52, 37, 0.04));
}

.cta-panel p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
}

.placeholder-hero {
  min-height: 100svh;
  padding: 28px 0 40px;
  background: var(--chrome-surface);
}

.placeholder-frame {
  position: relative;
  width: min(1460px, calc(100vw - 56px));
  min-height: calc(100svh - 68px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(20, 33, 23, 0.08);
  background:
    linear-gradient(180deg, rgba(16, 26, 19, 0.12), rgba(16, 26, 19, 0.24)),
    url("assets/images/exterior-twilight-wide.jpg") center / cover;
  box-shadow: none;
}

.placeholder-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 11, 0.12), rgba(8, 14, 11, 0.6)),
    linear-gradient(90deg, rgba(8, 14, 11, 0.1), rgba(8, 14, 11, 0.04));
  content: "";
}

.placeholder-copy {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 64px));
  margin: 0 0 54px 48px;
  padding: 36px 38px;
  background: rgba(251, 247, 241, 0.9);
}

.placeholder-layout {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 68px);
  display: flex;
  align-items: end;
}

.contact-page-hero .placeholder-frame {
  background:
    linear-gradient(180deg, rgba(16, 26, 19, 0.12), rgba(16, 26, 19, 0.24)),
    url("assets/images/deck-evening.jpg") center / cover;
}

.contact-hero-copy {
  width: min(720px, calc(100% - 64px));
}

.contact-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 30px;
  align-items: start;
}

.contact-card,
.contact-map-card,
.contact-help-card,
.contact-social-card {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: 34px 34px 36px;
}

.contact-card h3,
.contact-help-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.contact-email,
.contact-location,
.contact-response {
  margin: 0;
}

.contact-email {
  color: var(--pine);
  font-size: 1.16rem;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-location,
.contact-response,
.contact-help-card p,
.contact-social-card strong {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

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

.contact-help-card {
  display: grid;
  gap: 12px;
  padding: 28px 28px 30px;
}

.contact-help-card p {
  margin: 0;
}

.contact-location-layout {
  align-items: stretch;
}

.contact-location-layout .editorial-copy h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.2vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.03em;
}

.contact-map-card {
  overflow: hidden;
  min-height: 420px;
}

.contact-map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: saturate(0.82) contrast(0.96);
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.contact-social-card {
  display: grid;
  gap: 10px;
  padding: 26px 26px 28px;
  color: var(--pine);
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.contact-social-card:hover,
.contact-social-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(20, 33, 23, 0.16);
  background: rgba(255, 255, 255, 0.82);
}

.contact-social-label {
  color: var(--copper);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.trip-page-hero .placeholder-frame {
  background:
    linear-gradient(180deg, rgba(16, 26, 19, 0.14), rgba(16, 26, 19, 0.3)),
    url("assets/images/hammock-cabin.jpg") center 42% / cover;
}

.trip-hero-copy {
  width: min(760px, calc(100% - 64px));
}

.trip-guide-grid,
.trip-season-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.trip-guide-card,
.trip-season-card {
  display: grid;
  gap: 12px;
  padding: 28px 28px 30px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.trip-guide-kicker,
.trip-guide-meta {
  margin: 0;
  color: rgba(20, 33, 23, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.trip-guide-card h3,
.trip-season-card h3 {
  margin: 0;
  font-size: clamp(1.22rem, 2.1vw, 1.6rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.trip-guide-card p,
.trip-season-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.trip-guide-card .button {
  margin-top: 4px;
  justify-self: start;
}

.trip-guide-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trip-guide-list li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.78;
}

.trip-guide-list strong {
  color: var(--pine);
  font-weight: 500;
}

.site-footer {
  margin-top: 84px;
  padding: 88px 0 38px;
  background: var(--chrome-surface);
  border-top: 1px solid rgba(20, 33, 23, 0.08);
}

.site-footer-inner {
  display: grid;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

.site-footer-contact {
  display: grid;
  gap: 12px;
}

.site-footer-title {
  margin: 0;
  color: var(--pine);
  font-size: clamp(1.25rem, 1.9vw, 1.85rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-footer-location,
.site-footer-email {
  margin: 0;
  color: rgba(30, 52, 37, 0.86);
  font-size: clamp(1rem, 1.6vw, 1.26rem);
  line-height: 1.6;
}

.site-footer-email {
  text-decoration: none;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 20px;
}

.site-footer-social-link {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--pine);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-footer-social-link:hover,
.site-footer-social-link:focus-visible {
  transform: translateY(-2px);
  opacity: 0.8;
}

.site-footer-social-link svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer-social-link svg path {
  fill: currentColor;
  stroke: none;
}

.site-footer-cta .button {
  min-width: 220px;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 34px;
  max-width: 980px;
  padding-top: 16px;
}

.site-footer-nav a,
.site-footer-legal {
  color: rgba(30, 52, 37, 0.84);
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-footer-legal {
  margin: 8px 0 0;
  letter-spacing: 0.12em;
  text-transform: none;
}

.reviews-page-hero .placeholder-frame {
  background:
    linear-gradient(180deg, rgba(16, 26, 19, 0.22), rgba(16, 26, 19, 0.46)),
    url("assets/images/firepit-evening.jpg") center / cover;
}

.gallery-page-hero .placeholder-frame {
  background:
    linear-gradient(180deg, rgba(16, 26, 19, 0.18), rgba(16, 26, 19, 0.5)),
    url("assets/images/covered-deck-wide.jpg") center / cover;
}

.space-page-hero .placeholder-frame {
  background:
    linear-gradient(180deg, rgba(16, 26, 19, 0.2), rgba(16, 26, 19, 0.48)),
    url("assets/images/kitchen-hearth.jpg") center / cover;
}

.space-hero-copy,
.gallery-hero-copy,
.reviews-hero-copy {
  width: min(760px, calc(100% - 64px));
}

.gallery-page-intro,
.reviews-page-intro {
  padding-top: 96px;
}

.gallery-page-intro-copy,
.reviews-page-intro-copy,
.review-theme-head {
  display: grid;
  gap: 12px;
  justify-items: center;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.gallery-page-intro-copy h2,
.reviews-page-intro-copy h2,
.review-theme-head h2,
.reviews-page-cta-panel h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0.03em;
}

.gallery-page-intro-copy p:last-child,
.reviews-page-intro-copy p:last-child,
.review-theme-head p:last-child,
.reviews-page-cta-panel p:not(.eyebrow) {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.gallery-showcase,
.gallery-theme,
.gallery-page-cta {
  padding-top: 104px;
}

.review-theme {
  padding-top: 104px;
}

.review-theme-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.review-page-quote-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 30px 28px;
  border: 1px solid rgba(20, 33, 23, 0.08);
  background: #ffffff;
}

.review-page-quote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.18rem, 1.8vw, 1.46rem);
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

.review-page-meta {
  margin: 0;
  color: rgba(20, 33, 23, 0.64);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.reviews-page-cta {
  padding: 104px 0 12px;
}

.reviews-page-cta-panel {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 34px;
  border: 1px solid rgba(20, 33, 23, 0.08);
  background: var(--surface);
  text-align: center;
}

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

@media (max-width: 1200px) {
  .site-chrome {
    right: 76px;
    gap: 22px;
  }

  .site-nav {
    gap: 18px;
    font-size: 0.86rem;
  }

  body.has-scrolled .site-chrome {
    right: 0;
    padding: 18px 86px 16px 24px;
  }

  .site-menu-panel {
    width: min(520px, calc(100vw - 112px));
  }

  .booking-drawer-panel {
    width: min(520px, calc(100vw - 64px));
  }

  .site-menu-link-main {
    font-size: clamp(1.16rem, 2.8vw, 1.56rem);
  }
}

@media (max-width: 1080px) {
  .site-chrome {
    grid-template-columns: auto auto 1fr;
    right: 76px;
  }

  .hero-frame,
  .placeholder-frame {
    width: calc(100vw - 40px);
  }

  .hero-frame {
    aspect-ratio: 4 / 5;
  }

  .hero-copy {
    padding: 34px 28px 30px;
  }

  .nav,
  .site-nav {
    gap: 16px;
  }

  .intro-grid,
  .experience-grid,
  .section-heading-split,
  .editorial-layout,
  .editorial-layout-left,
  .contact-overview-grid {
    grid-template-columns: 1fr;
  }

  .contact-help-grid,
  .contact-social-grid,
  .trip-guide-grid,
  .trip-season-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-card,
  .contact-map-card iframe {
    min-height: 320px;
  }

  .editorial-layout-left .editorial-media,
  .editorial-layout-left .editorial-copy {
    order: initial;
  }

  .spaces-track {
    grid-template-columns: 1fr;
  }

  .space-slide.is-prev,
  .space-slide.is-next {
    display: none;
  }

  .space-slide.is-active {
    grid-column: 1;
  }

  .carousel-pagination {
    gap: 24px;
    padding: 0 20px;
  }

  .feature-card,
  .feature-card-large,
  .stay-panel {
    grid-column: span 12;
  }

  .experience-stack {
    min-height: 520px;
  }

  .stack-card-front {
    inset: 36px 0 0 72px;
  }

  .stack-card-back {
    inset: 0 90px 170px 0;
  }

  .gallery-tall,
  .gallery-wide,
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5) {
    grid-column: span 6;
  }

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

  .gallery-theme-grid,
  .review-theme-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

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

  .site-home-link {
    font-size: clamp(0.98rem, 2.5vw, 1.16rem);
    letter-spacing: 0.07em;
  }
}

@media (max-width: 720px) {
  body::before,
  body::after {
    width: 10px;
  }

  .shell {
    width: min(100% - 28px, 1200px);
  }

  .site-chrome {
    top: 24px;
    left: 14px;
    right: 56px;
    gap: 14px;
  }

  body.has-scrolled .site-chrome {
    top: 0;
    left: 0;
    right: 0;
    padding: 14px 56px 12px 14px;
  }

  .site-menu {
    padding: 0;
  }

  .site-menu-panel {
    width: 100vw;
    min-height: 100svh;
    padding: 24px 18px 28px;
    gap: 28px;
  }

  .site-menu-head {
    align-items: start;
  }

  .site-menu-logo {
    width: 64px;
    height: 64px;
  }

  .site-menu-link {
    gap: 8px;
    padding: 22px 0 18px;
  }

  .site-menu-link-main {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .site-menu-link-sub {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .site-menu-meta-copy {
    font-size: 0.9rem;
  }

  .menu-toggle {
    min-width: 68px;
  }

  .menu-lines {
    width: 34px;
    gap: 5px;
  }

  .menu-text {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }

  .site-home-link {
    min-width: 0;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    white-space: normal;
  }

  .floating-rates-button {
    top: auto;
    bottom: 18px;
    width: auto;
    min-height: auto;
    padding: 12px 16px;
    transform: none;
  }

  .floating-rates-button:hover,
  .floating-rates-button:focus-visible {
    transform: scale(1.04);
  }

  .floating-rates-button span {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .booking-drawer-panel {
    width: 100vw;
    padding: 22px 16px 28px;
  }

  .booking-drawer-copy {
    margin-top: 30px;
  }

  .booking-drawer-copy h2 {
    font-size: clamp(1.8rem, 8.4vw, 2.35rem);
  }

  .booking-widget-shell {
    padding: 12px;
  }

  .gallery-page-intro,
  .reviews-page-intro {
    padding-top: 72px;
  }

  .gallery-showcase,
  .gallery-theme,
  .gallery-page-cta,
  .review-theme,
  .reviews-page-cta {
    padding-top: 72px;
  }

  .editorial-section,
  .reviews-strip,
  section:not(.hero):not(.experience-band):not(.placeholder-hero):not(.editorial-section):not(.reviews-strip) {
    padding-top: 72px;
  }

  .section-divider {
    margin-bottom: 28px;
  }

  .editorial-intro,
  .reviews-strip-head {
    margin-bottom: 26px;
  }

  .editorial-intro h2,
  .reviews-strip-head h2 {
    font-size: clamp(1.95rem, 8vw, 3.05rem);
  }

  .gallery-page-intro-copy h2,
  .reviews-page-intro-copy h2,
  .review-theme-head h2,
  .reviews-page-cta-panel h2,
  .gallery-theme-head h2,
  .gallery-page-cta-panel h2 {
    font-size: clamp(1.95rem, 8vw, 3rem);
  }

  .editorial-copy p {
    font-size: 0.98rem;
    line-height: 1.85;
  }

  .moments-carousel {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    gap: 22px;
    margin-top: 28px;
  }

  .moments-track {
    height: clamp(260px, 66vw, 420px);
  }

  .moment-slide {
    flex-basis: 100%;
  }

  .moments-carousel .carousel-arrow {
    width: 68px;
    height: 150px;
  }

  .moments-carousel .carousel-arrow-prev {
    left: 0;
  }

  .moments-carousel .carousel-arrow-next {
    right: 0;
  }

  .moments-carousel .carousel-arrow span {
    font-size: 5rem;
  }

  .moments-carousel .carousel-pagination {
    gap: 10px;
    padding: 0;
  }

  .moments-carousel .carousel-pagination-line {
    flex-basis: 44px;
    max-width: none;
  }

  .gallery-page-intro-copy p:last-child,
  .reviews-page-intro-copy p:last-child,
  .review-theme-head p:last-child,
  .reviews-page-cta-panel p:not(.eyebrow),
  .gallery-theme-head p:last-child,
  .gallery-page-cta-panel p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.8;
  }

  .review-quote-card {
    padding: 22px 18px;
  }

  .review-quote {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .review-page-quote-card {
    padding: 24px 18px;
  }

  .review-page-quote {
    font-size: 1.06rem;
    line-height: 1.58;
  }

  .hero,
  .placeholder-hero {
    padding: 16px 0 22px;
  }

  .hero-frame,
  .placeholder-frame {
    width: calc(100vw - 20px);
  }

  .hero-content,
  .placeholder-layout {
    min-height: auto;
  }

  .hero-copy {
    max-width: 100%;
    padding: 28px 22px 24px;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .gallery-lightbox-panel {
    width: min(100vw - 32px, 980px);
    gap: 12px;
  }

  .gallery-lightbox-arrow {
    width: 48px;
    height: 48px;
  }

  .gallery-lightbox-prev {
    left: -4px;
  }

  .gallery-lightbox-next {
    right: -4px;
  }

  .gallery-lightbox-arrow span {
    font-size: 2.75rem;
  }

  .gallery-lightbox-close {
    top: -6px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .hero-tagline {
    max-width: none;
  }

  .spaces {
    padding-top: 28px;
  }

  .carousel-arrow {
    top: 35%;
    width: 48px;
    height: 48px;
  }

  .carousel-arrow-prev {
    left: -2px;
  }

  .carousel-arrow-next {
    right: -2px;
  }

  .carousel-arrow span {
    font-size: 2.8rem;
  }

  .carousel-pagination {
    gap: 12px;
    padding: 0;
  }

  .carousel-pagination-line {
    max-width: none;
  }

  section:not(.hero):not(.experience-band):not(.placeholder-hero) {
    padding-top: 72px;
  }

  .experience-band {
    margin-top: 72px;
    padding: 72px 0;
  }

  .experience-stack {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .stack-card {
    position: relative;
    inset: auto;
  }

  .gallery-tall,
  .gallery-wide,
  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(5) {
    grid-column: span 12;
  }

  .detail-list li {
    flex-direction: column;
  }

  .detail-list strong {
    text-align: left;
  }

  .cta {
    padding: 72px 0;
  }

  .cta-panel,
  .intro-copy,
  .stay-panel:first-child,
  .placeholder-copy {
    padding: 24px;
  }

  .contact-card,
  .contact-help-card,
  .contact-social-card,
  .trip-guide-card,
  .trip-season-card {
    padding: 22px 22px 24px;
  }

  .placeholder-copy {
    width: calc(100% - 28px);
    margin: 0 auto 20px;
  }

  .site-footer {
    margin-top: 64px;
    padding: 64px 0 30px;
  }

  .gallery-theme-grid {
    gap: 18px;
  }

  .site-footer-title {
    font-size: clamp(1.1rem, 5.8vw, 1.45rem);
  }

  .site-footer-nav {
    gap: 14px 22px;
  }

  .site-footer-nav a,
  .site-footer-legal {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }
}
