:root {
  --ink: #1f2421;
  --forest: #1c2823;
  --forest-soft: #2f4138;
  --milk: #f3f0e8;
  --paper: #fbfaf6;
  --copper: #b56e45;
  --line: rgba(31, 36, 33, 0.16);
  --white: #fff;
  --font-display: "Prata", Georgia, serif;
  --font-ui: "Manrope", Arial, sans-serif;
  --page-pad: clamp(18px, 4vw, 64px);
  --section-pad: clamp(88px, 11vw, 176px);
  --motion-factor: 1;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--forest);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.dialog-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

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

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 6vw, 88px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 var(--page-pad);
  color: var(--white);
  transition:
    min-height calc(360ms * var(--motion-factor)) var(--ease-out),
    color calc(300ms * var(--motion-factor)) ease,
    background calc(300ms * var(--motion-factor)) ease,
    border-color calc(300ms * var(--motion-factor)) ease;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto var(--page-pad) 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  transition: background 300ms ease;
}

.site-header:not(.is-scrolled):not(.is-open) {
  background: linear-gradient(180deg, rgba(13, 19, 16, 0.28), rgba(13, 19, 16, 0));
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 70px;
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled::after,
.site-header.is-open::after {
  background: var(--line);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-weight: 700;
}

.brand-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-book {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-self: end;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0;
  color: inherit;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
}

.header-book span:last-child,
.button span:last-child,
.outline-link span:last-child {
  transition: transform 240ms var(--ease-out);
}

.header-book:hover span:last-child,
.button:hover span:last-child,
.outline-link:hover span:last-child {
  transform: translate(3px, -3px);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  justify-self: end;
  border: 0;
  background: transparent;
}

.menu-lines {
  width: 22px;
  height: 14px;
  display: block;
  position: relative;
}

.menu-lines i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform 260ms var(--ease-out), top 260ms var(--ease-out);
}

.menu-lines i:first-child {
  top: 3px;
}

.menu-lines i:last-child {
  top: 11px;
}

.site-header.is-open .menu-lines i:first-child {
  top: 7px;
  transform: rotate(45deg);
}

.site-header.is-open .menu-lines i:last-child {
  top: 7px;
  transform: rotate(-45deg);
}

.hero {
  min-height: 94svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 140px var(--page-pad) 58px;
  color: var(--white);
  background: var(--forest);
}

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

.hero-media {
  overflow: hidden;
}

.hero-media img {
  transform: scale(1.08) translate3d(0, var(--parallax-y, 0), 0);
  transition: transform calc(1800ms * var(--motion-factor)) var(--ease-soft);
}

.is-ready .hero-media img {
  transform: scale(1.01) translate3d(0, var(--parallax-y, 0), 0);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 19, 16, 0.7) 0%, rgba(13, 19, 16, 0.2) 62%, rgba(13, 19, 16, 0.15) 100%),
    linear-gradient(0deg, rgba(13, 19, 16, 0.54) 0%, transparent 48%);
}

.hero-content {
  width: min(910px, 78vw);
  position: relative;
  z-index: 1;
}

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--copper);
}

.hero h1 {
  margin-bottom: 22px;
  font-size: clamp(84px, 14vw, 190px);
  line-height: 0.84;
}

.hero-lead {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.3vw, 46px);
  line-height: 1.15;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 700;
  transition:
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms var(--ease-out);
}

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

.button-light {
  min-width: 208px;
  color: var(--ink);
  background: var(--paper);
}

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

.text-action {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 700;
}

.hero-meta {
  position: absolute;
  z-index: 1;
  right: var(--page-pad);
  bottom: 58px;
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 50%;
  bottom: 22px;
  width: 44px;
  height: 44px;
}

.scroll-cue span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.7);
  animation: scroll-cue calc(1600ms * var(--motion-factor)) ease-in-out infinite;
}

.motion-ready .intro-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity calc(800ms * var(--motion-factor)) var(--ease-out),
    transform calc(800ms * var(--motion-factor)) var(--ease-out);
}

.motion-ready.is-ready .intro-item {
  opacity: 1;
  transform: translateY(0);
}

.is-ready .intro-item:nth-child(2) {
  transition-delay: calc(120ms * var(--motion-factor));
}

.is-ready .intro-item:nth-child(3) {
  transition-delay: calc(220ms * var(--motion-factor));
}

.is-ready .intro-item:nth-child(4) {
  transition-delay: calc(320ms * var(--motion-factor));
}

.is-ready .hero-meta {
  transition-delay: calc(420ms * var(--motion-factor));
}

.section {
  padding: var(--section-pad) var(--page-pad);
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  column-gap: clamp(48px, 9vw, 150px);
  row-gap: clamp(56px, 7vw, 110px);
  background: var(--paper);
}

.story-heading {
  align-self: end;
}

.story-heading h2 {
  font-size: clamp(46px, 6.2vw, 92px);
}

.story-copy {
  align-self: end;
  max-width: 580px;
}

.story-copy p {
  color: rgba(31, 36, 33, 0.7);
}

.story-copy .lead-copy {
  color: var(--ink);
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.5;
}

.media-button {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--white);
  background: var(--forest-soft);
  text-align: left;
}

.story-photo {
  grid-column: 1 / -1;
  height: clamp(420px, 61vw, 820px);
}

.image-wrap {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.image-wrap img {
  height: 112%;
  transform: translate3d(0, calc(-6% + var(--parallax-y, 0px)), 0) scale(1.01);
  transition: transform calc(700ms * var(--motion-factor)) var(--ease-soft);
}

.media-button:hover .image-wrap img {
  transform: translate3d(0, calc(-6% + var(--parallax-y, 0px)), 0) scale(1.035);
}

.media-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 19, 16, 0.36), transparent 40%);
  pointer-events: none;
}

.photo-index,
.photo-action {
  position: absolute;
  z-index: 2;
  bottom: 20px;
  font-size: 11px;
  font-weight: 700;
}

.photo-index {
  left: 22px;
}

.photo-action {
  right: 22px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  transition: color 240ms ease, background 240ms ease, transform 240ms var(--ease-out);
}

.media-button:hover .photo-action {
  color: var(--ink);
  background: var(--white);
  transform: rotate(8deg);
}

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

.story-facts div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid var(--line);
  padding: 20px 32px;
}

.story-facts div:first-child {
  padding-left: 0;
}

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

.story-facts strong {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.4vw, 50px);
  font-weight: 400;
}

.story-facts span {
  color: rgba(31, 36, 33, 0.58);
  font-size: 12px;
}

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

.section-intro {
  max-width: 960px;
  margin-bottom: clamp(58px, 8vw, 118px);
}

.section-intro > p:last-child {
  max-width: 620px;
  margin-top: 30px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.cabins-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  grid-template-rows: repeat(2, minmax(360px, 1fr));
  gap: clamp(18px, 3vw, 48px);
  align-items: start;
}

.cabin-photo-main {
  height: 100%;
  grid-row: 1 / 3;
}

.cabin-photo-detail,
.cabin-photo-wide {
  width: 86%;
  height: 100%;
  justify-self: end;
}

.cabin-note {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 20px;
  margin-top: clamp(52px, 7vw, 100px);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 24px;
}

.cabin-note > span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.cabin-note ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.1vw, 28px);
}

.interiors {
  background: var(--milk);
}

.interiors-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  max-width: none;
}

.interiors-intro .eyebrow {
  grid-column: 1 / -1;
}

.interiors-intro > p:last-child {
  align-self: end;
  color: rgba(31, 36, 33, 0.62);
}

.interior-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.8fr 0.8fr;
  grid-template-rows: minmax(360px, 42vw) minmax(330px, 36vw);
  gap: clamp(16px, 2.4vw, 36px);
}

.interior-a {
  grid-row: 1 / 3;
}

.interior-b {
  grid-column: 2 / 4;
  width: 78%;
  justify-self: end;
}

.interior-c {
  grid-column: 2;
}

.interior-d {
  grid-column: 3;
  width: 100%;
  height: 78%;
  align-self: end;
}

.amenities {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 30px;
  margin-top: clamp(72px, 10vw, 150px);
  border-top: 1px solid var(--line);
  padding-top: 32px;
}

.amenities > p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.amenity-list span {
  min-height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px);
}

.stay-format {
  background: #26362f;
}

.stay-intro {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  gap: 40px;
  max-width: none;
}

.stay-intro .eyebrow {
  grid-column: 1 / -1;
}

.stay-intro > p:last-child {
  align-self: end;
  max-width: 520px;
}

.stay-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 6vw, 96px);
}

.stay-column {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 24px;
}

.stay-label {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.stay-column ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.stay-column li {
  min-height: 72px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 28px);
}

.stay-column li span {
  color: #df9a70;
  font-family: var(--font-ui);
  font-size: 10px;
}

.stay-note {
  max-width: 720px;
  margin: 48px 0 0 auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.seasons {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 9vw, 150px);
  background: #e8ece8;
}

.seasons-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

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

.season-list article {
  display: grid;
  grid-template-columns: 130px 0.8fr 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: clamp(30px, 5vw, 58px) 0;
}

.season-list article > span {
  color: var(--copper);
  font-size: 11px;
  font-weight: 700;
}

.season-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.2;
}

.season-list p {
  margin: 0;
  color: rgba(31, 36, 33, 0.62);
  font-size: 14px;
}

.routes {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: var(--section-pad) var(--page-pad) 70px;
  color: var(--white);
  background: var(--forest);
}

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

.routes-media {
  overflow: hidden;
}

.routes-media img {
  height: 112%;
  transform: translate3d(0, calc(-6% + var(--parallax-y, 0px)), 0) scale(1.04);
}

.routes-shade {
  background:
    linear-gradient(90deg, rgba(13, 19, 16, 0.78), rgba(13, 19, 16, 0.15) 70%),
    linear-gradient(0deg, rgba(13, 19, 16, 0.62), transparent 56%);
}

.routes-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.42fr);
  gap: 42px;
  align-items: end;
}

.routes-copy {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.eyebrow-light span {
  color: #df9a70;
}

.route-names {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.route-names span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  padding: 0 15px;
  font-size: 12px;
}

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

.reviews-intro {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 40px;
  max-width: none;
}

.reviews-intro .eyebrow {
  grid-column: 1 / -1;
}

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

.review-list article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(28px, 4vw, 50px);
}

.review-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}

.review-meta strong {
  font-size: 13px;
}

.review-meta span {
  color: var(--copper);
  text-align: right;
}

blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
}

.outline-link {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.arrival-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(60px, 10vw, 160px);
  background: var(--milk);
}

.arrival-copy {
  align-self: start;
}

.arrival-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 30px;
  color: rgba(31, 36, 33, 0.64);
}

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

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

.faq-list summary {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 27px);
}

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

.faq-list summary span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--font-ui);
  transition: transform 260ms var(--ease-out);
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 620px;
  margin: -4px 0 28px;
  color: rgba(31, 36, 33, 0.62);
  font-size: 14px;
}

.booking {
  min-height: 90svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  color: var(--white);
  background: var(--forest);
}

.booking-photo {
  min-height: 720px;
  overflow: hidden;
}

.booking-photo img {
  height: 112%;
  transform: translate3d(0, calc(-6% + var(--parallax-y, 0px)), 0);
}

.booking-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-pad) var(--page-pad);
}

.booking-content h2 {
  font-size: clamp(48px, 6vw, 88px);
}

.booking-content > p:not(.eyebrow, .booking-address) {
  max-width: 580px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
}

.booking-actions {
  display: flex;
  gap: 12px;
  margin-top: 42px;
}

.button-copper {
  min-width: 178px;
  color: var(--white);
  background: var(--copper);
}

.button-copper:hover {
  background: #c77e52;
}

.button-ghost {
  min-width: 178px;
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.button-ghost:hover {
  color: var(--forest);
  background: var(--white);
}

.booking-phone {
  width: fit-content;
  margin-top: clamp(54px, 8vw, 100px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 48px);
}

.booking-address {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.footer {
  min-height: 100px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px var(--page-pad);
  color: rgba(255, 255, 255, 0.64);
  background: #111714;
}

.footer p {
  margin: 0;
  font-size: 11px;
}

.footer p:last-child {
  justify-self: end;
}

.footer-brand {
  color: var(--white);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity calc(700ms * var(--motion-factor)) var(--ease-out),
    transform calc(700ms * var(--motion-factor)) var(--ease-out);
}

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

.dialog-shell {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0s linear calc(420ms * var(--motion-factor)),
    opacity calc(300ms * var(--motion-factor)) ease;
}

.dialog-shell[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.dialog-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(11, 16, 13, 0.84);
  backdrop-filter: blur(12px);
}

.dialog-panel {
  position: relative;
  z-index: 1;
  transform: translateY(24px) scale(0.98);
  transition: transform calc(420ms * var(--motion-factor)) var(--ease-out);
}

.dialog-shell[aria-hidden="false"] .dialog-panel {
  transform: translateY(0) scale(1);
}

.contact-panel {
  width: min(660px, 100%);
  padding: clamp(30px, 5vw, 64px);
  color: var(--ink);
  background: var(--paper);
}

.contact-panel h2 {
  max-width: 520px;
  font-size: clamp(38px, 6vw, 66px);
}

.contact-panel > p:not(.eyebrow) {
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(31, 36, 33, 0.66);
}

.dialog-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 28px;
  line-height: 1;
}

.contact-options {
  display: grid;
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.contact-options a {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  transition: padding 240ms var(--ease-out), color 240ms ease;
}

.contact-options a:hover {
  padding-left: 8px;
  color: var(--copper);
}

.contact-options span {
  color: rgba(31, 36, 33, 0.52);
  font-size: 11px;
  text-transform: uppercase;
}

.contact-options strong {
  font-size: 14px;
}

.lightbox-panel {
  width: min(1180px, 100%);
  height: min(88svh, 860px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  touch-action: pan-y;
  color: var(--white);
  background: #101512;
}

.lightbox-panel img {
  min-height: 0;
  object-fit: contain;
}

.lightbox-close {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(16, 21, 18, 0.58);
}

.lightbox-footer {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.lightbox-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.lightbox-controls {
  display: flex;
  gap: 8px;
}

.lightbox-controls button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}

@keyframes scroll-cue {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

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

  .menu-toggle {
    display: grid;
  }

  .header-book {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px var(--page-pad) 22px;
    color: var(--ink);
    background: rgba(251, 250, 246, 0.97);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition:
      visibility 0s linear 260ms,
      opacity 240ms ease,
      transform 260ms var(--ease-out);
  }

  .site-header.is-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .site-nav a {
    min-height: 50px;
    border-bottom: 1px solid var(--line);
  }

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

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

  .routes-content {
    grid-template-columns: 1fr;
  }

  .route-names {
    grid-column: 1;
  }

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

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

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

  .seasons-heading {
    position: static;
  }

  .arrival-faq {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 68px;
  }

  .site-header::after {
    inset-inline: 18px;
  }

  .hero {
    min-height: 92svh;
    padding-top: 116px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(13, 19, 16, 0.56), rgba(13, 19, 16, 0.08)),
      linear-gradient(0deg, rgba(13, 19, 16, 0.72), transparent 66%);
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(74px, 24vw, 110px);
  }

  .hero-lead {
    font-size: 26px;
  }

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

  .hero-meta {
    display: none;
  }

  .scroll-cue {
    right: 26px;
  }

  .story,
  .section {
    padding-block: 84px;
  }

  h2,
  .story-heading h2,
  .booking-content h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .story {
    row-gap: 44px;
  }

  .story-photo {
    height: 64svh;
    min-height: 430px;
  }

  .story-facts {
    grid-template-columns: 1fr;
  }

  .story-facts div,
  .story-facts div:first-child {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
  }

  .swipe-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    overscroll-behavior-inline: contain;
    touch-action: pan-y;
    scrollbar-width: none;
  }

  .swipe-track::-webkit-scrollbar {
    display: none;
  }

  .cabins-showcase {
    grid-template-rows: none;
  }

  .cabin-photo,
  .cabin-photo-main,
  .cabin-photo-detail,
  .cabin-photo-wide {
    width: auto;
    height: 56svh;
    min-height: 440px;
    flex: 0 0 min(86vw, 430px);
    scroll-snap-align: start;
    grid-row: auto;
  }

  .cabin-note {
    grid-template-columns: 1fr;
  }

  .interiors-intro {
    grid-template-columns: 1fr;
  }

  .interiors-intro .eyebrow {
    grid-column: 1;
  }

  .interior-grid {
    grid-template-columns: none;
    grid-template-rows: auto;
  }

  .interior-photo,
  .interior-a,
  .interior-b,
  .interior-c,
  .interior-d {
    width: auto;
    height: 62svh;
    min-height: 430px;
    display: block;
    flex: 0 0 min(86vw, 430px);
    scroll-snap-align: start;
    grid-row: auto;
    grid-column: auto;
  }

  .interior-c {
    height: 52svh;
  }

  .amenities {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

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

  .stay-intro,
  .stay-columns {
    grid-template-columns: 1fr;
  }

  .stay-intro .eyebrow {
    grid-column: 1;
  }

  .stay-column li {
    min-height: 66px;
  }

  .season-list article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .routes {
    min-height: 92svh;
    padding-bottom: 48px;
  }

  .routes-content {
    gap: 28px;
  }

  .route-names {
    margin-top: 12px;
  }

  .review-list {
    border-left: 0;
  }

  .review-list article {
    min-height: 390px;
    flex: 0 0 min(86vw, 390px);
    scroll-snap-align: start;
    border: 1px solid var(--line);
    padding: 28px;
  }

  .arrival-faq {
    gap: 60px;
  }

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

  .booking-photo {
    min-height: 62svh;
  }

  .booking-content {
    padding-block: 84px;
  }

  .booking-actions {
    flex-direction: column;
  }

  .booking-actions .button {
    width: 100%;
  }

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

  .footer > p:first-of-type {
    display: none;
  }

  .dialog-shell {
    align-items: end;
    padding: 10px;
  }

  .contact-panel {
    max-height: 92svh;
    overflow-y: auto;
  }

  .lightbox-panel {
    height: 86svh;
  }

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

@media (prefers-reduced-motion: reduce) {
  :root {
    --motion-factor: 0;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal],
  .intro-item {
    opacity: 1;
    transform: none;
  }

  [data-parallax],
  .hero-media img,
  .image-wrap img,
  .routes-media img,
  .booking-photo img {
    transform: none !important;
  }
}
