@charset "utf-8";

:root {
  --forest-950: #07100d;
  --forest-900: #0b1713;
  --forest-800: #13241d;
  --forest-700: #20372c;
  --moss: #566c5f;
  --fog: #dce5de;
  --ivory: #f2f0e9;
  --paper: #f6f4ee;
  --ink: #17211c;
  --muted: #737b75;
  --wood: #a98663;
  --line: rgba(23, 33, 28, .16);
  --white-line: rgba(255, 255, 255, .28);
  --font-display: "Iowan Old Style", "Times New Roman", "AppleMyungjo", "Noto Serif KR", serif;
  --font-sans: "Helvetica Neue", "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
  --page-pad: clamp(22px, 4vw, 72px);
  --section-gap: clamp(110px, 14vw, 220px);
  --radius: 22px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
address { font-style: normal; }
[hidden] { display: none !important; }

::selection { color: var(--ivory); background: var(--forest-700); }
:focus-visible { outline: 2px solid #c9a97d; outline-offset: 5px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--forest-950);
  background: var(--ivory);
  transform: translateY(-160%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.cinema-intro {
  position: fixed;
  z-index: 999;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  pointer-events: none;
  animation: cinema-intro-shell 2.55s linear both;
}
.cinema-intro__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%;
  background: #030806;
  will-change: transform;
}
.cinema-intro__bar--top {
  top: 0;
  transform-origin: top;
  animation: cinema-bar-top 1.2s var(--ease) .9s both;
}
.cinema-intro__bar--bottom {
  bottom: 0;
  transform-origin: bottom;
  animation: cinema-bar-bottom 1.2s var(--ease) .9s both;
}
.cinema-intro__title {
  position: relative;
  z-index: 2;
  min-width: min(360px, 76vw);
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
  animation: cinema-title 1.75s var(--ease) both;
}
.cinema-intro__title span,
.cinema-intro__title small {
  font-size: 9px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: .24em;
}
.cinema-intro__title strong {
  font-family: var(--font-display);
  font-size: clamp(27px, 3.1vw, 46px);
  font-weight: 400;
  letter-spacing: .03em;
}
.cinema-intro__title i {
  width: 0;
  height: 1px;
  margin: 7px 0;
  background: rgba(255, 255, 255, .7);
  animation: cinema-line 1.2s var(--ease) .2s both;
}
@keyframes cinema-intro-shell {
  0%, 88% { visibility: visible; }
  100% { visibility: hidden; }
}
@keyframes cinema-bar-top {
  0% { transform: translateY(0); }
  100% { transform: translateY(-101%); }
}
@keyframes cinema-bar-bottom {
  0% { transform: translateY(0); }
  100% { transform: translateY(101%); }
}
@keyframes cinema-title {
  0% { opacity: 0; transform: translateY(10px); }
  22%, 58% { opacity: 1; transform: translateY(0); }
  82%, 100% { opacity: 0; transform: translateY(-8px); }
}
@keyframes cinema-line { to { width: 86px; } }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  padding: 0 var(--page-pad);
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  color: #fff;
  transition: height .45s var(--ease), background .45s var(--ease), backdrop-filter .45s var(--ease), border-color .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 76px;
  background: rgba(7, 16, 13, .78);
  border-color: rgba(255, 255, 255, .1);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.brand { position: relative; z-index: 102; width: 72px; }
.brand img { height: auto; }
.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 52px);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.desktop-nav a,
.header-reserve { position: relative; opacity: .86; transition: opacity .25s; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.desktop-nav a:hover,
.header-reserve:hover { opacity: 1; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-reserve {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  font-family: var(--font-display);
  font-size: 17px;
}
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  height: max(760px, 100svh);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: var(--forest-950);
  isolation: isolate;
  overflow: hidden;
}
.hero__media,
.hero__shade,
.hero__grain,
.hero__image,
.mist { position: absolute; inset: 0; }
.hero__media { z-index: -5; overflow: hidden; }
.hero__image {
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(.82) contrast(1.06) brightness(.94);
  transform: scale(1.055);
  transition: opacity 1.8s var(--ease), transform 9s linear;
}
.hero__image.is-active { opacity: 1; transform: scale(1); }
.hero__shade {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(4, 12, 9, .74) 0%, rgba(4, 12, 9, .28) 55%, rgba(4, 12, 9, .52) 100%),
    linear-gradient(0deg, rgba(4, 12, 9, .76) 0%, transparent 52%, rgba(4, 12, 9, .2) 100%);
}
.hero__grain {
  z-index: -1;
  opacity: .09;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.mist {
  z-index: -2;
  width: 70vw;
  height: 46vh;
  top: auto;
  bottom: -13vh;
  filter: blur(60px);
  opacity: .22;
  background: radial-gradient(ellipse at center, rgba(224, 234, 227, .74), transparent 68%);
  animation: mist-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
.mist--one { left: -18vw; }
.mist--two { left: auto; right: -24vw; bottom: 20vh; opacity: .13; animation-duration: 23s; animation-direction: alternate-reverse; }
@keyframes mist-drift { to { transform: translate3d(14vw, -4vh, 0) scale(1.08); } }

.hero__coordinate {
  position: absolute;
  top: 132px;
  right: var(--page-pad);
  margin: 0;
  text-align: right;
  font-size: 10px;
  line-height: 1.75;
  letter-spacing: .18em;
  opacity: .65;
}
.hero__content {
  width: min(920px, calc(100% - var(--page-pad) * 2));
  margin: 0 var(--page-pad) clamp(108px, 13vh, 145px);
}
.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow--dark { color: var(--moss); }
.hero h1,
.section h2,
.forest-break h2,
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(66px, 8.1vw, 132px);
  line-height: .91;
  text-wrap: balance;
  transform:
    translate3d(
      var(--hero-title-x, 0px),
      calc(var(--hero-title-y, 0px) + var(--hero-title-scroll, 0px)),
      0
    );
  transition: transform .85s var(--ease);
  will-change: transform;
}
.hero__description {
  margin: 34px 0 0;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, .8);
}
.hero__actions { display: flex; gap: 10px; margin-top: 38px; }
.button {
  min-width: 176px;
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transition: color .35s, background .35s, border-color .35s, transform .35s var(--ease);
}
.button:hover { transform: translateY(-3px); }
.button--light { color: var(--forest-950); background: rgba(246, 244, 238, .95); }
.button--light:hover { background: #fff; }
.button--glass {
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.button--glass:hover { border-color: rgba(255, 255, 255, .65); background: rgba(255, 255, 255, .15); }
.button--dark { color: #fff; background: var(--forest-900); }
.button--dark:hover { background: var(--forest-700); }
.button--line { color: var(--ink); border-color: var(--line); }
.button--line:hover { border-color: var(--ink); }

.hero__morning-card {
  position: absolute;
  right: var(--page-pad);
  bottom: 118px;
  width: 260px;
  min-height: 104px;
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--white-line);
  border-radius: 18px;
  background: rgba(221, 231, 224, .12);
  backdrop-filter: blur(18px) saturate(115%);
  -webkit-backdrop-filter: blur(18px) saturate(115%);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero__morning-time { font-family: var(--font-display); font-size: 26px; letter-spacing: -.02em; }
.hero__morning-line { width: 1px; height: 42px; background: rgba(255, 255, 255, .3); }
.motion-toggle {
  position: absolute;
  right: var(--page-pad);
  bottom: 48px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .05);
  cursor: pointer;
}
.motion-toggle__pause::before,
.motion-toggle__pause::after {
  content: "";
  position: absolute;
  top: 13px;
  width: 2px;
  height: 11px;
  background: currentColor;
}
.motion-toggle__pause::before { left: 15px; }
.motion-toggle__pause::after { right: 15px; }
.motion-toggle[aria-pressed="true"] .motion-toggle__pause::before {
  left: 15px;
  top: 12px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid currentColor;
  background: transparent;
}
.motion-toggle[aria-pressed="true"] .motion-toggle__pause::after { display: none; }
.scroll-cue {
  position: absolute;
  left: var(--page-pad);
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 10px;
  letter-spacing: .08em;
  opacity: .65;
}
.scroll-cue__line { position: relative; width: 76px; height: 1px; background: rgba(255, 255, 255, .5); overflow: hidden; }
.scroll-cue__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: line-travel 2.2s var(--ease) infinite;
}
@keyframes line-travel { 0% { transform: translateX(-105%); } 55%, 100% { transform: translateX(105%); } }

.section { position: relative; padding: var(--section-gap) var(--page-pad); }
.section__index {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(60px, 7vw, 110px);
}
.section__heading > *,
.location__copy,
.stage-copy { min-width: 0; }
.section__heading h2,
.story__intro h2,
.day-guide__content h2,
.location__copy h2 {
  margin: 0;
  font-size: clamp(50px, 6.1vw, 96px);
  line-height: .98;
}
.section__heading .eyebrow,
.story__intro .eyebrow,
.day-guide__content .eyebrow,
.location__copy .eyebrow { margin-top: 52px; }
.section__lead { margin: 0 0 6px; color: var(--muted); font-size: 14px; line-height: 1.9; }

.story { min-height: 1200px; background: var(--paper); }
.story__intro {
  width: min(850px, 72vw);
  margin: 0 auto;
  text-align: center;
}
.story__intro p:last-child {
  margin: 48px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2.05;
}
.story__composition {
  position: relative;
  max-width: 1300px;
  height: clamp(650px, 72vw, 930px);
  margin: clamp(80px, 11vw, 160px) auto 0;
}
.story__image { position: absolute; margin: 0; overflow: hidden; }
.story__image img { height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.story__image:hover img { transform: scale(1.025); }
.story__image--main { top: 0; left: 0; width: 68%; height: 70%; }
.story__image--detail { right: 1%; bottom: 0; width: 31%; height: 56%; box-shadow: -30px -30px 0 var(--paper); }
.glass-panel {
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(225, 234, 228, .16);
  backdrop-filter: blur(22px) saturate(120%);
  -webkit-backdrop-filter: blur(22px) saturate(120%);
  box-shadow: 0 25px 90px rgba(19, 36, 29, .12);
}
.story__note {
  position: absolute;
  z-index: 2;
  left: 52%;
  top: 44%;
  width: min(340px, 30vw);
  min-height: 290px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  color: #fff;
  border-radius: 26px;
  background: rgba(16, 36, 28, .48);
}
.story__note span { font-size: 10px; letter-spacing: .16em; }
.story__note strong { margin-top: 38px; font-family: var(--font-display); font-size: clamp(27px, 2.5vw, 38px); font-weight: 400; line-height: 1.05; }
.story__note p { margin: auto 0 0; color: rgba(255, 255, 255, .7); font-size: 12px; }

.stays { background: #e7e9e3; }
.stay-tabs { display: flex; gap: 8px; padding: 6px; border: 1px solid var(--line); border-radius: 100px; }
.stay-tabs button {
  min-width: 116px;
  height: 42px;
  padding: 0 20px;
  border: 0;
  border-radius: 100px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  transition: color .3s, background .3s;
}
.stay-tabs button[aria-selected="true"] { color: #fff; background: var(--forest-900); }
.stay-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 2vw, 32px); }
.stay-card a { display: block; }
.stay-card__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--fog); }
.stay-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 9, .16), transparent 35%, rgba(4, 12, 9, .12));
  pointer-events: none;
}
.stay-card__media img { height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .9s var(--ease); }
.stay-card:hover .stay-card__media img { transform: scale(1.045); filter: saturate(.9); }
.stay-card__number,
.stay-card__badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  color: #fff;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.stay-card__number { left: 18px; }
.stay-card__badge { right: 18px; padding: 6px 10px; border: 1px solid rgba(255, 255, 255, .4); border-radius: 100px; background: rgba(7, 16, 13, .25); backdrop-filter: blur(10px); }
.stay-card__body {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 2px 0;
  border-top: 1px solid transparent;
}
.stay-card__body > div:last-child { text-align: right; }
.stay-card h3 { margin: 0; font-family: var(--font-display); font-size: clamp(27px, 2.2vw, 36px); font-weight: 400; letter-spacing: -.03em; }
.stay-card p,
.stay-card span { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.stay-card strong { display: block; margin-top: 2px; font-size: 13px; font-weight: 500; }

.forest-break {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--forest-900);
}
.forest-break > img { position: absolute; inset: 0; height: 115%; object-fit: cover; object-position: center; }
.forest-break__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7, 16, 13, .68), rgba(7, 16, 13, .12) 68%, rgba(7, 16, 13, .4)); }
.forest-break__copy { position: relative; z-index: 1; margin-left: var(--page-pad); }
.forest-break__copy > span { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.forest-break h2 { margin: 34px 0 0; font-size: clamp(57px, 7vw, 110px); line-height: .95; }
.forest-break__copy p { margin-top: 34px; font-family: var(--font-display); font-size: 16px; letter-spacing: .08em; }
.forest-break__stamp {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 64px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  line-height: 1.05;
}
.forest-break__stamp span:first-child { font-size: 29px; }
.forest-break__stamp span:last-child { font-size: 18px; }

.experience { background: var(--forest-900); color: #fff; }
.experience .section__index,
.experience .eyebrow,
.experience .section__lead { color: rgba(255, 255, 255, .54); }
.experience-grid { display: grid; grid-template-columns: 1.35fr .8fr .8fr 1.35fr; gap: 12px; align-items: end; }
.experience-card { position: relative; min-height: 500px; overflow: hidden; }
.experience-card:nth-child(2),
.experience-card:nth-child(3) { min-height: 420px; }
.experience-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; filter: saturate(.72) brightness(.82); transition: transform 1s var(--ease), filter 1s; }
.experience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7, 16, 13, .8), transparent 58%); }
.experience-card:hover img { transform: scale(1.04); filter: saturate(.9) brightness(.9); }
.experience-card > div { position: absolute; z-index: 1; left: 25px; right: 25px; bottom: 24px; }
.experience-card span { font-size: 10px; opacity: .6; }
.experience-card h3 { margin: 8px 0 0; font-family: var(--font-display); font-size: 35px; font-weight: 400; }
.experience-card p { margin: 5px 0 0; font-size: 11px; color: rgba(255, 255, 255, .65); }

.day-guide { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(60px, 9vw, 150px); align-items: center; background: var(--ivory); }
.day-guide__visual { position: relative; min-height: 760px; }
.day-guide__visual > img { width: 88%; height: 100%; object-fit: cover; }
.day-guide__weather {
  position: absolute;
  right: 0;
  bottom: 58px;
  width: 260px;
  min-height: 190px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  color: #fff;
  background: rgba(20, 38, 30, .48);
}
.day-guide__weather span { font-size: 10px; letter-spacing: .1em; }
.day-guide__weather strong { margin: 25px 0 auto; font-family: var(--font-display); font-size: 54px; font-weight: 400; }
.timeline { margin: 62px 0 50px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.timeline li { display: grid; grid-template-columns: 86px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.timeline time { font-family: var(--font-display); font-size: 23px; }
.timeline div { display: flex; flex-direction: column; gap: 3px; }
.timeline strong { font-size: 13px; font-weight: 600; }
.timeline span { color: var(--muted); font-size: 12px; }
.text-link { display: inline-flex; gap: 32px; padding-bottom: 7px; border-bottom: 1px solid var(--ink); font-size: 12px; }

.location { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 9vw, 150px); align-items: center; background: #e1e6df; }
.location__copy address { display: flex; flex-direction: column; gap: 8px; margin-top: 54px; color: var(--muted); font-size: 13px; }
.location__copy address a { color: var(--ink); font-family: var(--font-display); font-size: 27px; }
.location__actions { display: flex; gap: 10px; margin-top: 36px; }
.location__image { position: relative; height: min(72vw, 760px); overflow: hidden; }
.location__image > img { height: 100%; object-fit: cover; filter: saturate(.76); }
.location__map-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: 250px;
  min-height: 220px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  color: #fff;
  background: rgba(12, 31, 23, .46);
}
.location__map-label span { font-size: 10px; letter-spacing: .12em; }
.location__map-label strong { margin: 30px 0 auto; font-family: var(--font-display); font-size: 27px; font-weight: 400; line-height: 1.15; }

.final-cta {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--forest-950);
}
.final-cta > img { position: absolute; inset: 0; height: 110%; object-fit: cover; }
.final-cta__overlay { position: absolute; inset: 0; background: rgba(5, 14, 10, .64); }
.final-cta__content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  padding: 80px var(--page-pad);
}
.final-cta h2 { margin: 0; font-size: clamp(68px, 9vw, 140px); line-height: .9; }
.final-cta .hero__actions { justify-content: center; }
.final-cta .eyebrow { margin-bottom: 30px; }

.site-footer {
  padding: 80px var(--page-pad) 42px;
  color: rgba(255, 255, 255, .72);
  background: var(--forest-950);
  text-align: center;
}
.footer-brand { display: block; width: 90px; margin: 0 auto; }
.site-footer > p { margin: 24px 0 70px; font-family: var(--font-display); font-size: 18px; }
.footer-meta { padding-top: 25px; display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: 10px; letter-spacing: .05em; }
.mobile-reserve { display: none; }

/* Chronological journey */
.hero--arrival .hero__shade {
  background:
    linear-gradient(90deg, rgba(4, 12, 9, .82) 0%, rgba(4, 12, 9, .26) 57%, rgba(4, 12, 9, .46) 100%),
    linear-gradient(0deg, rgba(4, 12, 9, .78) 0%, transparent 54%, rgba(4, 12, 9, .22) 100%);
}
.fog-field {
  position: absolute;
  z-index: -2;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(var(--fog-pointer-x, 0), var(--fog-pointer-y, 0), 0) scale(1.025);
  transition: transform 1.1s var(--ease);
}
.fog-field::before,
.fog-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.fog-field::before {
  z-index: 2;
  inset: -18%;
  opacity: .82;
  filter: blur(38px);
  background:
    radial-gradient(ellipse at 18% 64%, rgba(235, 241, 237, .8), transparent 27%),
    radial-gradient(ellipse at 52% 55%, rgba(218, 229, 221, .68), transparent 30%),
    radial-gradient(ellipse at 84% 68%, rgba(237, 242, 238, .72), transparent 25%);
  animation: landing-fog-clear 6.2s var(--ease) .7s both;
}
.fog-field::after {
  z-index: 3;
  left: -40%;
  top: 32%;
  width: 180%;
  height: 44%;
  opacity: .42;
  filter: blur(54px);
  background: linear-gradient(90deg, transparent 8%, rgba(226, 235, 229, .55) 36%, rgba(242, 245, 242, .66) 52%, transparent 82%);
  animation: landing-fog-sweep 14s ease-in-out 1.1s infinite alternate;
}
.fog {
  position: absolute;
  left: -25%;
  width: 150%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 22% 54%, rgba(237, 242, 238, .72), transparent 25%),
    radial-gradient(ellipse at 55% 48%, rgba(226, 235, 229, .62), transparent 28%),
    radial-gradient(ellipse at 86% 60%, rgba(237, 242, 238, .55), transparent 24%);
  filter: blur(42px);
  mix-blend-mode: screen;
  will-change: transform, opacity;
}
.fog--far {
  top: 7%;
  height: 42%;
  opacity: .22;
  animation: fog-drift-far 28s ease-in-out infinite alternate;
}
.fog--mid {
  top: 30%;
  height: 47%;
  opacity: .28;
  animation: fog-drift-mid 21s ease-in-out infinite alternate-reverse;
}
.fog--near {
  bottom: -18%;
  height: 64%;
  opacity: .42;
  filter: blur(58px);
  animation: fog-drift-near 17s ease-in-out infinite alternate;
}
@keyframes fog-drift-far { to { transform: translate3d(13%, 4%, 0) scale(1.08); opacity: .31; } }
@keyframes fog-drift-mid { to { transform: translate3d(-10%, -3%, 0) scale(1.12); opacity: .18; } }
@keyframes fog-drift-near { to { transform: translate3d(9%, -7%, 0) scale(1.1); opacity: .3; } }
@keyframes landing-fog-clear {
  0% { opacity: .82; transform: translate3d(-2%, 3%, 0) scale(1.08); }
  48% { opacity: .48; }
  100% { opacity: .16; transform: translate3d(8%, -5%, 0) scale(1.16); }
}
@keyframes landing-fog-sweep {
  to { opacity: .24; transform: translate3d(13%, -8%, 0) scale(1.08); }
}
.motion-paused .fog { animation-play-state: paused; }
.motion-paused .fog-field::before,
.motion-paused .fog-field::after { animation-play-state: paused; }

.journey {
  --stage-progress: 0;
  position: relative;
  color: #fff;
  background: var(--forest-950);
}
.journey__intro {
  min-height: 94svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 76% 24%, rgba(148, 170, 156, .18), transparent 32%),
    var(--paper);
}
.journey__intro h2 {
  width: 100%;
  min-width: 0;
  max-width: 1100px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(66px, 8vw, 126px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.055em;
}
.journey__intro .eyebrow { margin-top: 44px; }
.journey__intro-copy {
  max-width: 590px;
  margin: 46px 0 0 auto;
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
}
.journey-rail {
  position: sticky;
  z-index: 46;
  top: 92px;
  width: 136px;
  height: calc(100svh - 130px);
  margin: 0 26px calc(-100svh + 130px) auto;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  pointer-events: none;
}
.journey-rail__line {
  position: absolute;
  right: 6px;
  top: 11%;
  width: 1px;
  height: 78%;
  overflow: hidden;
  background: rgba(255, 255, 255, .18);
}
.journey-rail__line span {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .88);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .15s linear;
}
.journey-rail a {
  position: relative;
  padding-right: 22px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  line-height: 1;
  pointer-events: auto;
  transition: color .35s, transform .35s var(--ease);
}
.journey-rail a::after {
  content: "";
  position: absolute;
  right: 2px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  background: var(--forest-950);
  transition: background .35s, border-color .35s, transform .35s;
}
.journey-rail a time {
  font-family: var(--font-display);
  font-size: 13px;
}
.journey-rail a.is-active {
  color: #fff;
  transform: translateX(-5px);
}
.journey-rail a.is-active::after {
  border-color: #fff;
  background: #fff;
  transform: scale(1.15);
}

.journey-clock {
  position: fixed;
  z-index: 48;
  top: 50%;
  left: 50%;
  width: min(620px, 74vw);
  color: #fff;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
  transform: translate3d(-50%, -42%, 0) scale(.97);
  transition: opacity .55s var(--ease), visibility .55s, transform .7s var(--ease);
}
.journey-clock.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, -50%, 0) scale(1);
}
.journey-clock__kicker,
.journey-clock__label {
  display: block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .48;
}
.journey-clock__digits {
  position: relative;
  height: clamp(74px, 8vw, 112px);
  margin: 5px 0 2px;
  overflow: hidden;
}
.journey-clock__digits span,
.journey-clock__digits strong {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(70px, 8vw, 116px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.06em;
  color: rgba(255, 255, 255, .44);
  text-shadow: 0 0 48px rgba(255, 255, 255, .13), 0 4px 35px rgba(0, 0, 0, .42);
}
.journey-clock__digits span { opacity: 0; }
.journey-clock.is-changing .journey-clock__digits span {
  animation: clock-time-out .7s var(--ease) both;
}
.journey-clock.is-changing .journey-clock__digits strong {
  animation: clock-time-in .85s var(--ease) both;
}
.journey-clock.is-changing .journey-clock__label {
  animation: clock-label-in .7s var(--ease) .14s both;
}
@keyframes clock-time-out {
  0% { opacity: .19; filter: blur(0); transform: translate3d(0, 0, 0); }
  100% { opacity: 0; filter: blur(8px); transform: translate3d(0, -68%, 0); }
}
@keyframes clock-time-in {
  0% { opacity: 0; filter: blur(9px); transform: translate3d(0, 68%, 0); }
  100% { opacity: 1; filter: blur(0); transform: translate3d(0, 0, 0); }
}
@keyframes clock-label-in {
  0% { opacity: 0; letter-spacing: .32em; transform: translateY(6px); }
  100% { opacity: .48; letter-spacing: .22em; transform: translateY(0); }
}

.journey-stage {
  position: relative;
  min-height: 168svh;
  background: var(--forest-950);
}
.journey-stage__sticky {
  --stage-scale: 1.07;
  --stage-shift: 0px;
  --stage-progress: 0;
  --detail-shift: 70px;
  --detail-opacity: 0;
  --copy-shift: 0px;
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 700px;
  overflow: hidden;
  isolation: isolate;
}
.journey-stage__sticky::after {
  content: "";
  position: absolute;
  z-index: 20;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 0 18px rgba(255, 255, 255, .35);
  transform: scaleX(var(--stage-progress));
  transform-origin: left;
}
.stage-media,
.stage-media__main,
.stage-media__shade,
.stars-layer {
  position: absolute;
  inset: 0;
}
.stage-media {
  z-index: -1;
  overflow: hidden;
  background: var(--forest-950);
}
.stage-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  opacity: .075;
  pointer-events: none;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='f'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23f)' opacity='.78'/%3E%3C/svg%3E");
}
.stage-media::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(2, 7, 5, .82) 0 10px,
      transparent 10px calc(100% - 10px),
      rgba(2, 7, 5, .82) calc(100% - 10px)
    ),
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, .36) 100%);
  box-shadow: inset 0 0 110px rgba(0, 0, 0, .18);
}
.stage-media__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:
    saturate(.8)
    contrast(1.08)
    brightness(var(--scene-brightness, .93));
  transform:
    translate3d(
      calc(var(--camera-x, 0px) + var(--media-x, 0px)),
      calc(var(--stage-shift) + var(--media-y, 0px)),
      0
    )
    scale(var(--stage-scale));
  transition: transform .25s linear;
  will-change: transform;
}
.stage-media__shade {
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 12, 9, .82) 0%, rgba(4, 12, 9, .32) 52%, rgba(4, 12, 9, .58) 100%),
    linear-gradient(0deg, rgba(4, 12, 9, .8), transparent 56%);
}
.stage-media__shade::after {
  content: "";
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -48%;
  width: 28%;
  opacity: .13;
  filter: blur(32px);
  mix-blend-mode: screen;
  background: linear-gradient(90deg, transparent, rgba(221, 183, 127, .75), transparent);
  transform: translate3d(var(--light-travel, 0vw), 0, 0) rotate(7deg);
  will-change: transform;
}
.stage-detail {
  position: absolute;
  z-index: 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
  opacity: var(--detail-opacity);
  clip-path: inset(0 var(--detail-clip, 0%) 0 0);
  transform: translate3d(0, var(--detail-shift), 0);
  transition: box-shadow .5s var(--ease), clip-path .16s linear;
  will-change: transform, opacity;
}
.stage-detail img {
  height: 100%;
  object-fit: cover;
  color: transparent;
  font-size: 0;
  background: rgba(12, 24, 18, .68);
}
.stage-detail--one {
  top: 14%;
  right: 8%;
  width: min(26vw, 390px);
  aspect-ratio: 4 / 3;
  transform:
    translate3d(
      var(--detail-one-x, 0px),
      calc(var(--detail-shift) + var(--detail-one-y, 0px)),
      0
    );
}
.stage-detail--two {
  right: 20%;
  bottom: 11%;
  width: min(18vw, 280px);
  aspect-ratio: 3 / 4;
  clip-path: inset(0 0 0 var(--detail-clip, 0%));
  transform:
    translate3d(
      var(--detail-two-x, 0px),
      calc(var(--detail-shift) + var(--detail-two-y, 0px)),
      0
    );
}
.stage-detail:hover { box-shadow: 0 38px 110px rgba(0, 0, 0, .42); }
.stage-copy {
  position: absolute;
  z-index: 8;
  left: var(--page-pad);
  bottom: clamp(72px, 11vh, 130px);
  width: min(720px, calc(100vw - 510px));
  transform: translate3d(0, var(--copy-shift), 0);
  transition: transform .2s linear;
}
.stage-copy__step {
  display: block;
  margin-bottom: 30px;
  font-size: 9px;
  letter-spacing: .2em;
  opacity: .56;
}
.stage-copy > time {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: .08em;
}
.stage-copy .eyebrow { margin-bottom: 22px; color: rgba(255, 255, 255, .62); }
.stage-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(60px, 6.7vw, 106px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.052em;
}
.stage-copy > p:last-child {
  max-width: 550px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  line-height: 1.9;
}
.stage-sense {
  position: absolute;
  z-index: 9;
  right: 42px;
  bottom: 46px;
  min-width: 235px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: 18px;
  background: rgba(17, 36, 28, .35);
  transform:
    perspective(700px)
    rotateX(var(--glass-tilt-x, 0deg))
    rotateY(var(--glass-tilt-y, 0deg));
  transform-origin: center;
  transition: transform .35s var(--ease), background .35s;
}
.stage-sense:hover { background: rgba(29, 52, 42, .52); }
.stage-sense span {
  font-size: 9px;
  letter-spacing: .12em;
  opacity: .62;
}
.stage-sense strong {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
}
.journey-stage--night .stage-media__shade {
  background:
    linear-gradient(90deg, rgba(2, 7, 9, .84), rgba(4, 12, 15, .28) 58%, rgba(2, 7, 9, .62)),
    linear-gradient(0deg, rgba(2, 7, 9, .86), transparent 60%);
}
.journey-stage--night .stage-media__main {
  filter:
    saturate(.7)
    contrast(1.12)
    brightness(var(--scene-brightness, .88));
}
.stars-layer {
  z-index: 2;
  opacity: .7;
  background-image:
    radial-gradient(circle at 8% 18%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 17% 7%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 31% 22%, #fff 0 1px, transparent 1.6px),
    radial-gradient(circle at 48% 10%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 63% 24%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 78% 8%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 92% 19%, #fff 0 1px, transparent 1.5px);
  animation: star-breathe 4s ease-in-out infinite alternate;
}
@keyframes star-breathe { to { opacity: .35; } }
.journey-stage--morning .stage-media__shade,
.journey-stage--day .stage-media__shade,
.journey-stage--checkout .stage-media__shade {
  background:
    linear-gradient(90deg, rgba(18, 29, 23, .72), rgba(18, 29, 23, .15) 60%, rgba(18, 29, 23, .34)),
    linear-gradient(0deg, rgba(12, 24, 18, .72), transparent 58%);
}
.journey-stage--morning .stage-media__main,
.journey-stage--day .stage-media__main,
.journey-stage--checkout .stage-media__main {
  filter:
    saturate(.88)
    contrast(1.04)
    sepia(.055)
    brightness(var(--scene-brightness, .96));
}
.morning-steam {
  position: absolute;
  z-index: 5;
  right: 18%;
  top: 29%;
  width: 120px;
  height: 180px;
  opacity: .42;
  filter: blur(8px);
}
.morning-steam span {
  position: absolute;
  bottom: 0;
  width: 28px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(255, 255, 255, .55), transparent);
  animation: steam-rise 4.8s ease-in-out infinite;
}
.morning-steam span:nth-child(2) { left: 34px; height: 150px; animation-delay: -1.7s; }
.morning-steam span:nth-child(3) { left: 68px; height: 105px; animation-delay: -3.1s; }
@keyframes steam-rise {
  0% { transform: translate3d(0, 18px, 0) scaleX(.7); opacity: 0; }
  35% { opacity: .65; }
  100% { transform: translate3d(18px, -55px, 0) scaleX(1.3); opacity: 0; }
}

.archive-gallery {
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(124, 151, 135, .16), transparent 26%),
    var(--paper);
}
.archive-gallery__intro { width: 100%; min-width: 0; max-width: 900px; }
.archive-gallery__intro h2 {
  margin: 46px 0 0;
  font-family: var(--font-display);
  font-size: clamp(58px, 7vw, 108px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.05em;
}
.archive-gallery__intro > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}
.gallery-toggle { width: auto; margin-top: 30px; border: 0; cursor: pointer; }
.gallery-teaser {
  height: min(70vw, 850px);
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.gallery-teaser img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .8s;
}
.gallery-teaser img:hover { transform: scale(.985); filter: saturate(.82) brightness(.94); }
.gallery-teaser img:first-child { grid-row: 1 / -1; }
.gallery-teaser img:nth-child(4) { grid-column: 2 / -1; }
.archive-gallery__full { margin-top: 120px; }
.archive-group + .archive-group { margin-top: 110px; }
.archive-group__heading {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 15px;
}
.archive-group__heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 400;
}
.archive-group__heading span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
}
.archive-group__grid {
  columns: 4 240px;
  column-gap: 10px;
}
.archive-group figure {
  margin: 0 0 10px;
  break-inside: avoid;
  background: #e4e5df;
  overflow: hidden;
}
.archive-group figure img {
  width: 100%;
  height: auto;
  transition: transform .7s var(--ease), filter .7s;
}
.archive-group figure:hover img { transform: scale(1.02); filter: saturate(.88); }
.archive-group figcaption {
  padding: 8px 10px 10px;
  color: var(--muted);
  font-size: 9px;
}

.has-fitted-lines {
  width: 100%;
  max-width: 100%;
  text-wrap: initial;
}
.headline-line {
  display: block;
  width: 100%;
  padding: .025em 0 .045em;
  margin: -.025em 0 -.045em;
  overflow: hidden;
}
.headline-line__inner {
  display: inline-block;
  white-space: nowrap;
  will-change: transform, opacity;
}
.headline-char {
  display: inline-block;
  transform-origin: 50% 85%;
  will-change: transform, opacity, filter;
}
.motion-ready .hero .headline-line__inner,
.motion-ready .journey-stage .headline-line__inner {
  opacity: 0;
  transform: translate3d(0, 108%, 0);
  transition: transform .9s var(--ease), opacity .7s var(--ease);
}
.motion-ready .hero .headline-line__inner {
  transition-delay: 1.32s;
}
.motion-ready .hero .headline-line:nth-child(2) .headline-line__inner {
  transition-delay: 1.44s;
}
.motion-ready .hero .headline-char {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, .42em, 0) rotateX(-62deg) scale(.96);
  transition:
    opacity .78s var(--ease),
    filter .9s var(--ease),
    transform .92s var(--ease);
  transition-delay: calc(1.5s + var(--char-index) * 48ms);
}
.motion-ready .hero.is-current .headline-char {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotateX(0) scale(1);
}
.motion-ready .hero.is-current .headline-line__inner,
.motion-ready .journey-stage.is-current .headline-line__inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.motion-ready .headline-line:nth-child(2) .headline-line__inner { transition-delay: .09s; }
.motion-ready .headline-line:nth-child(3) .headline-line__inner { transition-delay: .18s; }
.motion-ready .journey-stage .stage-copy > time,
.motion-ready .journey-stage .stage-copy > .eyebrow,
.motion-ready .journey-stage .stage-copy > p:last-child {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}
.motion-ready .journey-stage.is-current .stage-copy > time,
.motion-ready .journey-stage.is-current .stage-copy > .eyebrow,
.motion-ready .journey-stage.is-current .stage-copy > p:last-child {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.motion-ready .journey-stage.is-current .stage-copy > .eyebrow { transition-delay: .08s; }
.motion-ready .journey-stage.is-current .stage-copy > p:last-child { transition-delay: .2s; }

.will-reveal { opacity: 0; transform: translateY(45px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.will-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 100px 1fr 120px; }
  .desktop-nav { gap: 24px; }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-card, .experience-card:nth-child(2), .experience-card:nth-child(3) { min-height: 470px; }
  .day-guide, .location { gap: 60px; }
  .day-guide__visual { min-height: 650px; }
}

@media (max-width: 820px) {
  :root { --page-pad: 20px; --section-gap: 104px; }
  body { padding-bottom: 64px; }
  .site-header { height: 72px; grid-template-columns: 1fr auto; }
  .site-header.is-scrolled { height: 66px; }
  .brand { width: 62px; }
  .desktop-nav, .header-reserve { display: none; }
  .menu-toggle {
    position: relative;
    z-index: 102;
    width: 42px;
    height: 42px;
    padding: 0;
    display: block;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span { position: absolute; left: 8px; width: 26px; height: 1px; background: #fff; transition: transform .35s var(--ease), top .35s var(--ease); }
  .menu-toggle span:first-child { top: 16px; }
  .menu-toggle span:last-child { top: 25px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: block;
    color: #fff;
    background: rgba(7, 16, 13, .96);
    backdrop-filter: blur(22px);
  }
  .mobile-menu__inner { height: 100%; padding: 120px 26px 92px; display: flex; flex-direction: column; }
  .mobile-menu__inner > a { padding: 9px 0; font-family: var(--font-display); font-size: clamp(38px, 12vw, 58px); line-height: 1.05; }
  .mobile-menu__reserve { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .mobile-menu__reserve a { min-height: 52px; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, .25); border-radius: 100px; font-size: 12px; }

  .hero { min-height: 780px; height: 100svh; max-height: 920px; }
  .hero__image { object-position: 55% center; }
  .hero__coordinate { top: 94px; right: 20px; }
  .hero__content { margin: 0 20px 120px; width: calc(100% - 40px); }
  .hero h1 { font-size: clamp(54px, 15.4vw, 78px); line-height: .94; }
  .hero__description { margin-top: 25px; font-size: 13px; }
  .hero__description br { display: none; }
  .hero__actions { flex-direction: column; align-items: stretch; width: min(100%, 390px); }
  .button { width: 100%; }
  .hero__morning-card { display: none; }
  .motion-toggle { bottom: 30px; }
  .scroll-cue { bottom: 36px; }
  .scroll-cue span:first-child { display: none; }
  .scroll-cue__line { width: 58px; }

  .section__heading { grid-template-columns: 1fr; align-items: start; }
  .section__heading h2,
  .story__intro h2,
  .day-guide__content h2,
  .location__copy h2 { font-size: clamp(46px, 13vw, 66px); }
  .section__heading .eyebrow,
  .story__intro .eyebrow,
  .day-guide__content .eyebrow,
  .location__copy .eyebrow { margin-top: 34px; }
  .section__lead { margin: -22px 0 0; }

  .story { min-height: 0; }
  .story__intro { width: 100%; text-align: left; }
  .story__intro p:last-child { margin-top: 34px; font-size: 13px; }
  .story__intro p:last-child br { display: none; }
  .story__composition { height: auto; margin-top: 62px; display: grid; grid-template-columns: 1fr 42%; align-items: end; gap: 10px; }
  .story__image { position: relative; inset: auto; width: auto; height: auto; box-shadow: none; }
  .story__image--main { aspect-ratio: 4 / 5; }
  .story__image--detail { aspect-ratio: 3 / 4; margin-bottom: -58px; }
  .story__note { position: relative; left: auto; top: auto; grid-column: 1 / -1; width: calc(100% - 34px); min-height: 230px; margin: -30px 0 0 auto; padding: 26px; }
  .story__note strong { margin-top: 25px; font-size: 30px; }

  .stay-tabs { width: fit-content; }
  .stay-tabs button { min-width: 104px; }
  .stay-grid { grid-template-columns: 1fr; gap: 58px; }
  .stay-card__media { aspect-ratio: 4 / 4.8; }
  .stay-card__body { padding-top: 17px; }
  .stay-card h3 { font-size: 31px; }

  .forest-break { min-height: 760px; align-items: flex-end; }
  .forest-break > img { height: 100%; object-position: 55% center; }
  .forest-break__copy { margin: 0 20px 130px; }
  .forest-break h2 { font-size: clamp(53px, 14vw, 74px); }
  .forest-break__stamp { right: 20px; bottom: 24px; width: 100px; height: 100px; }
  .forest-break__stamp span:first-child { font-size: 20px; }

  .experience-grid { grid-template-columns: 1fr; gap: 10px; }
  .experience-card, .experience-card:nth-child(2), .experience-card:nth-child(3) { min-height: 470px; }

  .day-guide, .location { grid-template-columns: 1fr; gap: 72px; }
  .day-guide__visual { min-height: 590px; }
  .day-guide__visual > img { width: 92%; }
  .day-guide__weather { width: 220px; min-height: 165px; right: 0; bottom: 28px; padding: 22px; }
  .day-guide__weather strong { font-size: 44px; }
  .timeline { margin-top: 46px; }
  .timeline li { grid-template-columns: 66px 1fr; gap: 15px; }

  .location { padding-bottom: 0; }
  .location__image { height: 620px; margin: 0 calc(var(--page-pad) * -1); }
  .location__map-label { right: 20px; bottom: 20px; width: 220px; min-height: 195px; }
  .location__actions { flex-direction: column; }

  .final-cta { min-height: 760px; }
  .final-cta h2 { font-size: clamp(66px, 18vw, 96px); }
  .final-cta .hero__actions { margin-left: auto; margin-right: auto; }

  .footer-meta { flex-direction: column; }
  .site-footer { padding-bottom: 58px; }
  .mobile-reserve {
    position: fixed;
    z-index: 90;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: #fff;
    background: rgba(7, 16, 13, .94);
    border-top: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(18px);
  }
  .mobile-reserve a { display: flex; align-items: center; justify-content: center; font-size: 12px; }
  .mobile-reserve a + a { border-left: 1px solid rgba(255, 255, 255, .14); }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 55px; }
  .hero__description { max-width: 330px; }
  .section__heading h2,
  .story__intro h2,
  .day-guide__content h2,
  .location__copy h2 { font-size: 47px; }
  .story__composition { grid-template-columns: 1fr 38%; }
  .experience-card, .experience-card:nth-child(2), .experience-card:nth-child(3) { min-height: 430px; }
}

@media (min-width: 1101px) and (max-width: 1350px) {
  .stage-detail--two { display: none; }
  .stage-detail--one {
    top: 11%;
    right: 4%;
    width: min(28vw, 340px);
  }
  .stage-copy { width: min(700px, 61vw); }
}

@media (max-width: 1100px) {
  .journey-rail { display: none; }
  .stage-copy {
    left: 4vw;
    right: 4vw;
    bottom: 58px;
    width: min(720px, 92vw);
  }
  .stage-detail--one {
    top: 94px;
    right: 4vw;
    width: min(24vw, 240px);
  }
  .stage-detail--two { display: none; }
  .stage-sense {
    top: 94px;
    left: 4vw;
    right: auto;
    bottom: auto;
    width: min(280px, 38vw);
  }
}

@media (max-width: 820px) {
  .hero--arrival .hero__image { object-position: 58% center; }
  .fog--far { opacity: .16; }
  .fog--mid { opacity: .22; }
  .fog--near { opacity: .34; }

  .journey__intro { min-height: 780px; }
  .journey__intro h2 {
    font-size: clamp(52px, 15vw, 72px);
    line-height: .95;
  }
  .journey__intro-copy {
    margin: 38px 0 0;
    font-size: 13px;
  }
  .journey__intro-copy br { display: none; }

  .journey-clock {
    top: 42%;
    left: 50%;
    width: calc(100% - 40px);
  }
  .journey-clock__digits {
    height: 66px;
  }
  .journey-clock__digits span,
  .journey-clock__digits strong {
    font-size: 66px;
    color: rgba(255, 255, 255, .15);
  }
  .journey-clock__kicker { display: none; }

  .journey-stage { min-height: 142svh; }
  .journey-stage__sticky {
    min-height: 680px;
    --stage-scale: 1.05;
  }
  .stage-media__main { object-position: center; }
  .stage-media__shade {
    background:
      linear-gradient(0deg, rgba(4, 12, 9, .9) 0%, rgba(4, 12, 9, .35) 58%, rgba(4, 12, 9, .34) 100%);
  }
  .stage-detail--one {
    top: 88px;
    right: 20px;
    width: 148px;
    aspect-ratio: 4 / 3;
  }
  .stage-detail--two { display: none; }
  .stage-copy {
    left: 20px;
    right: 20px;
    bottom: 96px;
    width: auto;
  }
  .stage-copy__step { margin-bottom: 14px; }
  .stage-copy > time { font-size: 15px; }
  .stage-copy .eyebrow { margin-bottom: 14px; }
  .stage-copy h2 {
    max-width: 590px;
    font-size: clamp(46px, 13.5vw, 65px);
    line-height: .94;
  }
  .stage-copy > p:last-child {
    margin-top: 23px;
    font-size: 12px;
    line-height: 1.75;
  }
  .stage-sense {
    top: 88px;
    left: 20px;
    right: auto;
    bottom: auto;
    min-width: 0;
    width: calc(100% - 198px);
    padding: 15px 17px;
  }
  .stage-sense strong { font-size: 15px; }
  .journey-stage--morning .stage-media__main { object-position: 58% center; }
  .journey-stage--day .stage-media__main { object-position: 62% center; }
  .journey-stage--checkout .stage-media__main { object-position: 55% center; }
  .morning-steam { right: 4%; top: 26%; transform: scale(.72); }

  .archive-gallery__intro h2 { font-size: clamp(51px, 14vw, 72px); }
  .gallery-teaser {
    height: 780px;
    margin-top: 58px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.25fr .8fr .9fr;
  }
  .gallery-teaser img:first-child { grid-column: 1 / -1; grid-row: auto; }
  .gallery-teaser img:nth-child(4) { grid-column: 1 / -1; }
  .archive-gallery__full { margin-top: 80px; }
  .archive-group + .archive-group { margin-top: 72px; }
  .archive-group__grid { columns: 2 145px; gap: 7px; }
  .archive-group figure { margin-bottom: 7px; }
  .archive-group__heading h3 { font-size: 27px; }
}

@media (max-width: 420px) {
  .hero--arrival h1 { font-size: 54px; }
  .stage-copy h2 { font-size: 47px; }
  .stage-copy > p:last-child { max-width: 340px; }
  .stage-detail--one { width: 126px; }
  .stage-sense { width: calc(100% - 168px); }
  .gallery-teaser { height: 680px; }
}

@media (min-width: 821px) and (max-height: 760px) {
  .stage-detail { display: none; }
  .stage-copy {
    bottom: 38px;
    width: min(690px, 72vw);
  }
  .stage-copy h2 { font-size: clamp(48px, 5.5vw, 70px); }
  .stage-copy__step { margin-bottom: 13px; }
  .stage-copy > p:last-child { margin-top: 20px; }
  .stage-sense {
    top: 84px;
    right: 28px;
    left: auto;
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .cinema-intro { display: none; }
  .hero__image { transform: none !important; }
  .mist, .fog, .morning-steam, .stars-layer { display: none; }
  .fog-field::before, .fog-field::after { display: none; }
  .journey-stage { min-height: 100svh; }
  .stage-media__main { transform: none !important; }
  .stage-media__shade::after { display: none; }
  .stage-detail { opacity: 1; transform: none; }
  .headline-line__inner,
  .headline-char,
  .stage-copy > time,
  .stage-copy > .eyebrow,
  .stage-copy > p:last-child { opacity: 1 !important; transform: none !important; }
  .will-reveal { opacity: 1; transform: none; }
}
