:root {
  --pine: #2f4f3e;
  --pine-deep: #1a3b29;
  --moss: #6c8a5e;
  --clay: #c66a3c;
  --cream: #e9e1d6;
  --white: #faf8f4;
  --ink: #323330;
  --muted: #6f7169;
  --line: rgba(47, 79, 62, 0.18);
  --line-light: rgba(250, 248, 244, 0.22);
  --shadow: 0 28px 80px rgba(26, 59, 41, 0.22);
  --sans: "Instrument Sans", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "WindSong", cursive;
  --stable-vh: 1vh;
  --stable-vw: 1vw;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
}

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

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.site-header {
  --header-height: 76px;
  --nav-y: 16px;
  --brand-scale: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 clamp(1.5rem, 2.5vw, 3rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  contain: layout style;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-bottom: 1px solid rgba(47, 79, 62, 0.13);
  background: rgba(233, 225, 214, 0.96);
  box-shadow: 0 18px 60px rgba(26, 59, 41, 0.16);
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  transition:
    opacity 1.05s ease,
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  --nav-y: 0px;
  --brand-scale: 0.91;
}

.site-header.is-scrolled::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.brand,
.desktop-nav,
.header-actions,
.contact-list {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.brand {
  color: var(--white);
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.32);
  transform: translate3d(0, var(--nav-y), 0) scale(var(--brand-scale));
  transform-origin: left center;
  backface-visibility: hidden;
  will-change: transform;
  transition:
    color 0.55s ease,
    text-shadow 0.55s ease,
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .brand {
  color: var(--pine);
  text-shadow: none;
}

.desktop-nav {
  justify-content: center;
  gap: 1.5rem;
  transform: translate3d(0, var(--nav-y), 0);
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 1.4rem;
  padding: 0;
  border-radius: 0;
  color: rgba(250, 248, 244, 0.84);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
  transform: translateZ(0);
  backface-visibility: hidden;
  transition:
    opacity 0.2s,
    color 0.55s ease,
    text-shadow 0.55s ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.site-header.is-scrolled .desktop-nav a {
  color: rgba(47, 79, 62, 0.88);
  text-shadow: none;
}

.site-header.is-scrolled .desktop-nav a:hover {
  color: var(--pine);
}

.header-actions {
  gap: 1.45rem;
  color: rgba(250, 248, 244, 0.86);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  transform: translate3d(0, var(--nav-y), 0);
  backface-visibility: hidden;
  will-change: transform;
  transition:
    color 0.55s ease,
    transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled .header-actions {
  color: rgba(47, 79, 62, 0.88);
}

.header-link {
  display: inline-flex;
  align-items: center;
  min-height: 1.4rem;
  color: inherit;
  text-decoration: none;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
  transform: translateZ(0);
  backface-visibility: hidden;
  transition:
    color 0.55s ease,
    text-shadow 0.55s ease;
}

.header-link:hover {
  color: var(--white);
}

.site-header.is-scrolled .header-link {
  color: rgba(47, 79, 62, 0.88);
  text-shadow: none;
}

.site-header.is-scrolled .header-link:hover {
  color: var(--pine);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(250, 248, 244, 0.42);
  border-radius: 50%;
  background: rgba(250, 248, 244, 0.1);
  transition:
    border-color 1s ease,
    background 1s ease;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 4px;
  background: var(--white);
  transition:
    transform 0.25s,
    opacity 0.25s,
    background 1s ease;
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(47, 79, 62, 0.2);
  background: rgba(47, 79, 62, 0.05);
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--pine);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 24;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  padding: 6rem 1.4rem 2rem;
  background: var(--pine-deep);
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}

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

.mobile-nav a {
  font-family: var(--serif);
  font-size: 3rem;
  text-decoration: none;
}

.hero {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 6.6rem min(3.75vw, 3.4rem) 5.2rem;
  overflow: hidden;
  background: var(--pine);
  color: var(--white);
}

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

.hero-media {
  z-index: 0;
  transform: scale(1.14);
}

.hero-media img {
  filter: none;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    radial-gradient(ellipse at 46% 54%, rgba(4, 12, 8, 0.28) 0%, rgba(4, 12, 8, 0.18) 42%, rgba(4, 12, 8, 0.54) 100%),
    linear-gradient(180deg, rgba(12, 24, 18, 0.6) 0%, rgba(12, 24, 18, 0.2) 40%, rgba(12, 24, 18, 0.64) 100%),
    linear-gradient(90deg, rgba(8, 18, 13, 0.58) 0%, rgba(8, 18, 13, 0.16) 48%, rgba(8, 18, 13, 0.46) 100%);
}

.hero-content {
  position: fixed;
  top: var(--hero-content-top, 50%);
  left: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  column-gap: 3rem;
  width: min(1136px, calc(100% - min(7.5vw, 6.8rem)));
  max-width: none;
  margin: 0;
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, -45%, 0);
  transform-origin: center;
  backface-visibility: hidden;
  will-change: opacity, transform;
  transition:
    opacity 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 0s;
}

.hero-content.is-hero-content-culled {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, -42%, 0);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0s linear 0.28s;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1c09c;
}

.hero h1 {
  grid-column: 1 / 3;
  max-width: none;
  margin: 0;
  font-family: var(--serif);
  font-size: 11.9rem;
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.54),
    0 10px 54px rgba(0, 0, 0, 0.42);
}

.hero-script {
  display: block;
  width: max-content;
  margin: 0.1rem 0 0 8.2rem;
  color: rgba(250, 248, 244, 0.94);
  font-family: var(--script);
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 0.78;
  transform: rotate(-5deg);
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.56),
    0 8px 42px rgba(0, 0, 0, 0.38);
}

.hero-list {
  grid-column: 2;
  align-self: start;
  margin: -5.15rem 0 0;
  color: rgba(250, 248, 244, 0.9);
  font-size: 1.55rem;
  line-height: 1.56;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.76),
    0 7px 32px rgba(0, 0, 0, 0.48);
}

.button {
  padding: 0.86rem 1.15rem;
}

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

.button.ghost {
  background: rgba(250, 248, 244, 0.08);
  color: var(--white);
  border-color: var(--line-light);
}

.button.full {
  width: 100%;
}

.arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.section {
  position: relative;
  z-index: 1;
  padding: 7rem min(5vw, 4rem);
}

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

.dark .section-kicker {
  color: #f1c09c;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: min(7vw, 6rem);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 4rem;
}

.intro h2,
.rooms h2,
.activities h2,
.reviews-title,
.offer h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 4.6rem;
  font-weight: 400;
  line-height: 0.98;
}

.intro-copy p,
.rooms-heading p,
.offer-copy p,
.contact-info p {
  max-width: 610px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.dark .rooms-heading p,
.dark .offer-copy p {
  color: rgba(250, 248, 244, 0.68);
}

.intro-stats {
  display: grid;
  gap: 0.7rem;
}

.intro-stats span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--pine);
}

.intro-stats strong {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
}

.intro {
  z-index: 2;
  min-height: 112vh;
  min-height: 112svh;
  display: grid;
  align-items: center;
  align-content: center;
  margin-top: -1px;
  padding-top: 8.5rem;
  padding-bottom: 13rem;
  overflow: hidden;
  background: var(--pine);
  color: var(--cream);
  isolation: isolate;
}

.intro .section-kicker {
  position: relative;
  z-index: 3;
  margin-bottom: 1.15rem;
  color: rgba(233, 225, 214, 0.78);
  text-align: center;
}

.intro .intro-layout {
  position: relative;
  z-index: 3;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.1rem;
  margin-bottom: 0;
  text-align: center;
}

.intro .intro-copy h2 {
  max-width: 1240px;
  margin: 0 auto;
  color: var(--cream);
  font-size: clamp(5.5rem, 7.2vw, 8.35rem);
  line-height: 0.9;
}

.intro .intro-copy p {
  max-width: 560px;
  margin-top: 2rem;
  margin-right: auto;
  margin-left: auto;
  color: rgba(250, 248, 244, 0.68);
}

.intro .intro-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(860px, 100%);
  margin: clamp(5rem, 8vh, 7rem) auto 0;
}

.intro .intro-stats span {
  display: grid;
  justify-content: center;
  gap: 0.3rem;
  border-color: rgba(233, 225, 214, 0.22);
  color: rgba(250, 248, 244, 0.82);
  text-align: center;
}

.intro .intro-stats strong {
  color: var(--cream);
}

.offer-media {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rooms-heading,
.activities-head {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.room-gallery {
  margin: 0 min(-5vw, -4rem);
  overflow: hidden;
}

.room-gallery-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto 1rem;
  padding: 0 min(5vw, 4rem);
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-controls {
  display: flex;
  gap: 0.5rem;
}

.room-control {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--pine);
  cursor: pointer;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.room-control:hover {
  background: var(--pine);
  color: var(--cream);
  transform: translateY(-1px);
}

.room-slider {
  display: grid;
  grid-template-columns:
    minmax(260px, 24vw)
    minmax(560px, 50vw)
    minmax(260px, 24vw);
  gap: 0.65rem;
  justify-content: center;
  overflow: hidden;
  padding: 0 0 0.85rem;
}

.room-slide {
  --room-scale: 0.995;
  position: relative;
  display: none;
  height: clamp(410px, 32vw, 500px);
  overflow: hidden;
  border-radius: 0;
  opacity: 0.9;
  transform: translate3d(0, 0, 0) scale(var(--room-scale));
  contain: layout paint;
  will-change: opacity, transform;
  backface-visibility: hidden;
  transition: opacity 0.48s ease;
}

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

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

.room-slide.active {
  --room-scale: 1;
  grid-column: 2;
  grid-row: 1;
  opacity: 1;
}

.room-slide.is-next {
  grid-column: 3;
  grid-row: 1;
}

.room-slide.is-hidden {
  display: none;
}

.room-slide-media {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.room-slide img,
.activity-feature-inset,
.offer-media img {
  transform: translateZ(0);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
}

.room-slide:hover img,
.offer-media:hover img {
  transform: scale(1.045);
}

.room-slide-book {
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  display: grid;
  place-items: center;
  min-width: 150px;
  min-height: 42px;
  padding: 0 1.25rem;
  border-radius: 8px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    background 0.25s ease;
}

.room-slide.active .room-slide-book {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.room-slide-book:hover {
  background: #b95d31;
}

.room-active-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(360px, 1fr);
  gap: min(6vw, 4rem);
  width: min(980px, calc(100% - 2rem));
  margin: 1.1rem auto 0;
  color: var(--ink);
}

.room-active-panel.is-changing {
  animation: roomPanelIn 0.32s ease;
}

@keyframes roomPanelIn {
  from {
    opacity: 0.4;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.room-active-kicker {
  margin: 0 0 0.55rem;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.room-active-panel h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 2.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1;
}

.room-active-panel p {
  margin: 1.05rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.room-active-details {
  align-self: start;
}

.room-active-meta,
.room-active-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.room-active-meta span,
.room-active-features span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--pine);
  font-size: 0.82rem;
  font-weight: 800;
}

.room-active-features {
  margin-top: 1rem;
}

.room-active-features span {
  color: var(--muted);
  font-weight: 700;
}

.room-active-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.35rem;
}

.room-active-actions .button.primary {
  border-radius: 8px;
}

.room-more-link {
  color: var(--pine);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.35em;
}

.rooms.section.dark,
.activities.section.dark,
.offer.section.dark {
  background: var(--cream);
  color: var(--ink);
}

.rooms.section.dark {
  padding-top: clamp(7rem, 9vw, 9rem);
}

.rooms.section.dark .rooms-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.rooms.section.dark .section-kicker,
.activities.section.dark .section-kicker,
.offer.section.dark .section-kicker {
  color: var(--clay);
}

.rooms.section.dark .rooms-heading p,
.offer.section.dark .offer-copy p {
  color: var(--muted);
}

.activities.section.dark {
  padding: 0;
}

.activities-head {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(7rem, 10vw, 10rem) min(5vw, 4rem) clamp(4rem, 6vw, 6rem);
  text-align: left;
}

.activities-head h2 {
  max-width: 940px;
  color: var(--pine);
  font-size: clamp(4.4rem, 6.2vw, 8rem);
  line-height: 0.9;
}

.activity-showcase {
  display: grid;
  overflow: hidden;
}

.activity-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: min(104vh, 1040px);
  min-height: min(104svh, 1040px);
  background: var(--cream);
}

.activity-feature-media {
  --activity-bg-top: -21%;
  --activity-bg-height: 156%;
  --activity-bg-scale: 1.08;
  --activity-inset-max-width: min(36vw, 470px);
  --activity-inset-max-height: clamp(260px, 32vw, 430px);
  position: relative;
  min-height: clamp(860px, 112vh, 1180px);
  min-height: clamp(860px, 112svh, 1180px);
  overflow: hidden;
  background: var(--pine);
  contain: paint;
}

.activity-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8, 18, 13, 0.15) 0%, rgba(8, 18, 13, 0) 22%, rgba(8, 18, 13, 0.18) 100%),
    linear-gradient(90deg, rgba(8, 18, 13, 0.16) 0%, rgba(8, 18, 13, 0) 24%, rgba(8, 18, 13, 0) 76%, rgba(8, 18, 13, 0.14) 100%),
    radial-gradient(circle at 50% 50%, rgba(26, 59, 41, 0) 46%, rgba(14, 34, 23, 0.18) 100%);
}

.activity-feature-bg {
  position: absolute;
  top: var(--activity-bg-top);
  left: 0;
  width: 100%;
  height: var(--activity-bg-height);
  object-fit: cover;
  object-position: center;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) scale(var(--activity-bg-scale));
}

.activity-feature-bg--subject-low {
  --activity-bg-top: -34%;
  object-position: center 72%;
}

.hero-media.is-parallax-active {
  will-change: transform;
}

.activity-feature-inset {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: min(var(--activity-inset-max-width), calc(100% - 4rem));
  max-height: var(--activity-inset-max-height);
  object-fit: contain;
  transform: translate3d(-50%, -50%, 0);
  transform-origin: center;
}

.activity-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(760px, 96vh, 1040px);
  min-height: clamp(760px, 96svh, 1040px);
  padding: clamp(4rem, 8vw, 9rem);
}

.activity-feature-copy h3 {
  max-width: 620px;
  margin: 0;
  color: var(--pine);
  font-family: var(--serif);
  font-size: clamp(3.7rem, 5.2vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
}

.activity-feature-copy p {
  max-width: 440px;
  margin: 1.55rem 0 0 clamp(3rem, 6vw, 5.5rem);
  color: var(--ink);
  line-height: 1.65;
}

.activity-feature-copy span {
  max-width: 440px;
  margin: 1.25rem 0 0 clamp(3rem, 6vw, 5.5rem);
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activity-feature.reverse .activity-feature-media {
  grid-column: 2;
  grid-row: 1;
}

.activity-feature.reverse .activity-feature-copy {
  grid-column: 1;
  grid-row: 1;
}

.reviews {
  overflow: hidden;
  background: var(--cream);
  padding-right: 0;
  padding-left: 0;
}

.reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: min(10vw, 9rem);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto clamp(3.6rem, 6vw, 5.8rem);
  padding: 0 min(5vw, 4rem);
}

.reviews-title {
  max-width: 520px;
  margin: 0;
  color: var(--pine);
  font-size: clamp(4.2rem, 5.6vw, 6.8rem);
}

.reviews-copy {
  align-self: end;
}

.reviews-copy p {
  max-width: 440px;
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
}

.reviews-copy .button {
  margin-top: 1.6rem;
}

.review-rail {
  display: grid;
  grid-auto-columns: minmax(390px, 31vw);
  grid-auto-flow: column;
  gap: 0.65rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 0 min(5vw, 4rem) 1.2rem;
  cursor: grab;
  scroll-behavior: auto;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
}

.review-rail::-webkit-scrollbar {
  display: none;
}

.review-rail.is-dragging {
  cursor: grabbing;
}

.review-card {
  display: flex;
  flex-direction: column;
  height: clamp(345px, 27vw, 420px);
  padding: clamp(1.45rem, 1.9vw, 2rem);
  padding-bottom: clamp(1rem, 1.2vw, 1.25rem);
  border-radius: 8px;
  background: var(--pine);
  color: var(--cream);
}

.review-card.is-expanded {
  height: auto;
  min-height: clamp(345px, 27vw, 420px);
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(250, 248, 244, 0.56);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.review-stars {
  color: var(--cream);
  font-size: 1.12rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.review-title {
  margin: 0.85rem 0 0.45rem;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card blockquote {
  position: relative;
  flex: 1 1 auto;
  max-height: none;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.review-card.has-overflow:not(.is-expanded) blockquote::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2.1rem;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(47, 79, 62, 0), var(--pine));
}

.review-card.is-expanded blockquote {
  flex: 0 0 auto;
  max-height: none;
  overflow: visible;
}

.review-card blockquote p {
  margin: 0;
  color: rgba(250, 248, 244, 0.88);
  font-size: clamp(1rem, 1.08vw, 1.18rem);
  line-height: 1.5;
}

.review-card-long blockquote p {
  font-size: clamp(0.92rem, 0.98vw, 1rem);
  line-height: 1.45;
}

.review-more {
  display: none;
  align-self: flex-start;
  min-height: 30px;
  margin-top: 0.55rem;
  border: 1px solid rgba(250, 248, 244, 0.22);
  border-radius: 999px;
  background: rgba(250, 248, 244, 0.08);
  color: var(--cream);
  padding: 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.review-card.has-overflow .review-more {
  display: inline-flex;
  align-items: center;
}

.review-more:hover {
  border-color: rgba(250, 248, 244, 0.44);
  background: rgba(250, 248, 244, 0.14);
}

.review-card cite {
  display: block;
  margin-top: 0.4rem;
  padding-top: 0;
  color: var(--moss);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-transform: uppercase;
}

.offer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: min(7vw, 5rem);
  align-items: center;
}

.offer-media {
  height: 560px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
  gap: min(7vw, 5rem);
  max-width: 1260px;
  margin: 0 auto;
}

.contact-map {
  position: relative;
  grid-column: 1 / -1;
  min-height: clamp(360px, 42vw, 560px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--pine);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.map-link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 8px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(26, 59, 41, 0.24);
}

.contact-list {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  margin-top: 2rem;
}

.contact-list a {
  color: var(--pine);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.legal {
  font-size: 0.88rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  padding: 0 0.9rem;
  text-transform: none;
  letter-spacing: 0;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem min(5vw, 4rem);
  background: var(--pine-deep);
  color: var(--cream);
}

.footer p {
  margin: 0.45rem 0 0;
  color: rgba(250, 248, 244, 0.62);
}

.footer a {
  align-self: start;
  font-weight: 800;
}

.image-credits {
  max-width: 760px;
  margin-top: 1rem;
  color: rgba(250, 248, 244, 0.62);
  font-size: 0.78rem;
}

.image-credits summary {
  width: max-content;
  cursor: pointer;
  color: rgba(250, 248, 244, 0.82);
  font-weight: 800;
}

.image-credits ul {
  display: grid;
  gap: 0.35rem;
  padding-left: 1rem;
  margin: 0.75rem 0 0;
}

.image-credits a {
  font-weight: 800;
  text-underline-offset: 0.25em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

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

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

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

  .hero-content {
    grid-template-columns: minmax(0, 1fr) 240px;
  }

  .hero-script {
    margin-left: 5rem;
    font-size: 3.7rem;
  }

  .hero-list {
    margin-top: -3.5rem;
    font-size: 1.35rem;
  }

  .intro h2,
  .rooms h2,
  .activities h2,
  .reviews-title,
  .offer h2,
  .contact h2 {
    font-size: 3.7rem;
  }

  .intro .intro-copy h2 {
    font-size: 4.6rem;
  }

  .room-slider {
    grid-template-columns:
      minmax(190px, 28vw)
      minmax(500px, 68vw)
      minmax(190px, 28vw);
  }

  .room-active-panel {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 2rem));
  }

  .activity-feature-copy {
    padding: clamp(3.5rem, 6vw, 5.5rem);
  }

  .activity-feature-copy p,
  .activity-feature-copy span {
    margin-left: 0;
  }

  .activity-feature-inset {
    max-width: min(44vw, 390px, calc(100% - 3rem));
    max-height: clamp(240px, 36vw, 390px);
  }

  .reviews-head {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  .review-rail {
    grid-auto-columns: minmax(340px, 46vw);
  }
}

@media (max-width: 860px) {
  .site-header {
    --header-height: 62px;
    --nav-y: 15px;
    top: 0;
    width: 100%;
    padding: 0 1rem;
  }

  .site-header.is-scrolled {
    --nav-y: 0px;
  }

  .header-link {
    display: none;
  }

  .brand {
    font-size: 1.8rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: calc(var(--stable-vh) * 100);
    align-items: center;
    padding: 7rem 1.2rem 6.5rem;
  }

  .hero-media img {
    object-position: left center;
  }

  .hero-content {
    --hero-content-top: calc(var(--stable-vh) * 50);
    display: block;
    width: calc(100% - 2.4rem);
    margin-top: 0;
    transform: translate3d(-50%, -48%, 0);
  }

  .hero-content.is-hero-content-culled {
    transform: translate3d(-50%, -45%, 0);
  }

  .hero h1 {
    font-size: 4.7rem;
    line-height: 0.9;
  }

  .hero-script {
    margin-left: 2.2rem;
    font-size: 2.65rem;
  }

  .hero-list {
    margin: 2.1rem 0 0;
    font-size: 1.15rem;
    line-height: 1.55;
  }

  .section {
    padding: 5rem 1.2rem;
  }

  .rooms.section.dark {
    padding-right: 0;
    padding-left: 0;
  }

  .rooms-heading {
    padding: 0 1.2rem;
    margin-bottom: 2.5rem;
    text-align: left;
  }

  .room-gallery {
    margin: 0;
  }

  .room-gallery-top {
    padding: 0 1.2rem;
  }

  .room-slider {
    grid-template-columns:
      56vw
      min(82vw, 360px)
      56vw;
    gap: 0.55rem;
    padding-bottom: 0.75rem;
  }

  .room-slide,
  .room-slide.active {
    height: 380px;
  }

  .room-slide-book {
    right: 1rem;
    bottom: 1rem;
    min-width: 128px;
  }

  .room-active-panel {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    width: auto;
    margin: 1.1rem 1.2rem 0;
  }

  .activities-head {
    padding: 5rem 1.2rem 3rem;
  }

  .activities-head h2 {
    font-size: 3.45rem;
  }

  .activity-feature,
  .activity-feature.reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .activity-feature.reverse .activity-feature-media,
  .activity-feature.reverse .activity-feature-copy,
  .activity-feature-media,
  .activity-feature-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .activity-feature-media {
    --activity-bg-top: -20%;
    --activity-bg-height: 150%;
    --activity-bg-scale: 1.06;
    --activity-inset-max-width: min(78vw, 380px);
    --activity-inset-max-height: min(48vh, 420px);
    --activity-inset-max-height: min(48svh, 420px);
    --activity-inset-max-height: min(calc(var(--stable-vh) * 48), 420px);
    min-height: clamp(520px, 72vh, 680px);
    min-height: clamp(520px, 72svh, 680px);
    min-height: clamp(520px, calc(var(--stable-vh) * 72), 680px);
  }

  .activity-feature-bg--subject-low {
    --activity-bg-top: -29%;
    object-position: center 74%;
  }

  .activity-feature-copy {
    min-height: auto;
    padding: 3.2rem 1.2rem 5rem;
  }

  .activity-feature-copy h3 {
    font-size: 3.45rem;
  }

  .activity-feature-copy p,
  .activity-feature-copy span {
    margin-left: 0;
  }

  .activity-feature-inset {
    max-width: min(var(--activity-inset-max-width), calc(100% - 2.4rem));
    max-height: var(--activity-inset-max-height);
  }

  .intro {
    padding-bottom: 9rem;
  }

  .intro .intro-layout {
    margin-bottom: 3rem;
  }

  .intro .intro-copy h2 {
    font-size: 3.45rem;
  }

  .intro .intro-stats {
    display: none;
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .intro-layout,
  .offer,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .offer-media {
    height: 360px;
    margin-top: 0;
  }

  .reviews {
    padding-top: 5rem;
    padding-bottom: 4rem;
  }

  .reviews-head {
    padding: 0 1.2rem;
    margin-bottom: 2.5rem;
  }

  .reviews-copy p {
    font-size: 1rem;
  }

  .review-rail {
    grid-auto-columns: minmax(280px, 82vw);
    gap: 0.55rem;
    padding: 0 1.2rem 1rem;
  }

  .review-card {
    height: 360px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 3.35rem;
  }

  .hero-script {
    margin-left: 1.5rem;
    font-size: 2.1rem;
  }

  .hero-list {
    font-size: 1.05rem;
  }

  .intro h2,
  .rooms h2,
  .activities h2,
  .reviews-title,
  .offer h2,
  .contact h2 {
    font-size: 2.65rem;
  }

  .intro .intro-copy h2 {
    font-size: 2.65rem;
  }

  .activities-head h2,
  .activity-feature-copy h3 {
    font-size: 2.75rem;
  }

  .activity-feature-media {
    --activity-bg-top: -18%;
    --activity-bg-height: 148%;
    --activity-bg-scale: 1.05;
    --activity-inset-max-width: min(84vw, 340px);
    --activity-inset-max-height: min(46vh, 380px);
    --activity-inset-max-height: min(46svh, 380px);
    --activity-inset-max-height: min(calc(var(--stable-vh) * 46), 380px);
    min-height: clamp(480px, 68vh, 620px);
    min-height: clamp(480px, 68svh, 620px);
    min-height: clamp(480px, calc(var(--stable-vh) * 68), 620px);
  }

  .activity-feature-inset {
    max-width: min(var(--activity-inset-max-width), calc(100% - 2rem));
    max-height: var(--activity-inset-max-height);
  }

  .button {
    width: 100%;
  }

  .intro-stats strong {
    font-size: 2.25rem;
  }

  .review-card {
    height: 368px;
    padding: 1.35rem;
    padding-bottom: 1rem;
  }

  .review-card blockquote p {
    font-size: 0.98rem;
  }

  .review-card-long blockquote p {
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .footer {
    flex-direction: column;
  }

  .mobile-nav a {
    font-size: 2.35rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
