:root {
  --orange: #f37b2b;
  --orange-deep: #d95f19;
  --ink: #19211c;
  --paper: #f8f7f2;
  --white: #fff;
  --mist: #e9eee9;
  --sage: #a8b6a3;
  --night: #101716;
  --line: rgba(25, 33, 28, .22);
  --line-light: rgba(255, 255, 255, .28);
  --jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --latin: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", monospace;
  --header-h: 82px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--jp);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  word-break: normal;
  word-break: auto-phrase;
  line-break: strict;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }

h1, h2, h3 {
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -.045em;
  text-wrap: balance;
}

p { text-wrap: pretty; }

.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;
  z-index: 500;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.eyebrow {
  color: var(--orange);
  font-family: var(--mono);
  font-size: .66rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  height: var(--header-h);
  padding: 0 3vw;
  color: var(--orange);
  background: rgba(248, 247, 242, .88);
  border-bottom: 1px solid rgba(243, 123, 43, .18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  font-family: var(--latin);
  line-height: 1;
}

.brand span {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: .04em;
}

.brand small {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: .42rem;
  letter-spacing: .14em;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .12em;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

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

.header-reserve {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-self: end;
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: .12em;
}

.header-reserve b {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--paper);
  background: var(--orange);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 300;
  transition: transform .35s var(--ease);
}

.header-reserve:hover b { transform: rotate(45deg); }

.menu-button {
  display: none;
  position: relative;
  z-index: 210;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--orange);
  border-radius: 50%;
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1px;
  background: var(--orange);
  transition: transform .35s var(--ease), top .35s var(--ease);
}

.menu-button span:first-child { top: 19px; }
.menu-button span:nth-child(2) { top: 27px; }
.menu-button[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { top: 23px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 140;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 35px) 7vw 45px;
  color: var(--paper);
  background: var(--orange);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}

.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu a {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  font-family: var(--latin);
  font-size: clamp(2rem, 9vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.05em;
}

.mobile-menu a span {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .1em;
}

.mobile-menu p {
  margin-top: auto;
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .14em;
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  padding: calc(var(--header-h) + 18px) 5vw 52px;
  background: var(--paper);
}

.hero-frame {
  position: relative;
  min-height: calc(100svh - var(--header-h) - 70px);
  overflow: hidden;
  background: var(--sage);
}

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

.hero-media::after {
  background: linear-gradient(180deg, rgba(10, 24, 20, .02) 36%, rgba(10, 24, 20, .66) 100%);
  content: "";
}

.parallax-media { overflow: hidden; }

.parallax-media img {
  transform: translate3d(0, var(--drift, 0), 0) scale(1.07);
  transition: transform .12s linear;
  will-change: transform;
}

.hero-logo {
  position: absolute;
  z-index: 2;
  top: -3.2vw;
  right: 2vw;
  left: -2vw;
  display: flex;
  justify-content: space-between;
  color: var(--orange);
  font-family: var(--latin);
  font-size: clamp(5rem, 10.8vw, 10rem);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.09em;
  pointer-events: none;
}

.hero-keywords {
  position: absolute;
  z-index: 3;
  top: 12vh;
  left: 2.5vw;
  color: var(--orange);
  font-family: var(--mono);
  font-size: clamp(.85rem, 1.4vw, 1.3rem);
  line-height: 1.65;
  letter-spacing: -.03em;
}

.field-weather {
  position: absolute;
  z-index: 3;
  top: 2.2vw;
  right: 2.6vw;
  display: grid;
  justify-items: end;
  color: var(--orange);
  font-family: var(--mono);
  line-height: 1;
}

.field-weather span { font-size: .66rem; letter-spacing: .08em; }
.field-weather strong { margin-top: 16px; font-family: var(--latin); font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 300; letter-spacing: -.06em; }
.field-weather small { margin-top: 10px; font-size: .52rem; letter-spacing: .1em; }

.field-weather i {
  position: relative;
  width: 48px;
  height: 26px;
  margin-top: 18px;
  border: 1px solid currentColor;
  border-radius: 50% 50% 44% 44%;
}

.field-weather i::before,
.field-weather i::after {
  position: absolute;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
}

.field-weather i::before { top: -10px; left: 6px; width: 22px; height: 22px; background: transparent; }
.field-weather i::after { top: -4px; right: 4px; width: 18px; height: 18px; }

.hero-copy {
  position: absolute;
  z-index: 3;
  bottom: 62px;
  left: 4vw;
  max-width: 790px;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0, 0, 0, .25);
}

.hero-copy .eyebrow { color: #ffc699; }

.hero-copy h1 {
  margin-top: 12px;
  font-size: clamp(3.4rem, 5.5vw, 6.2rem);
}

.hero-copy > p:last-child {
  max-width: 440px;
  margin-top: 22px;
  margin-left: 145px;
  font-size: clamp(.8rem, 1vw, .95rem);
  line-height: 2.05;
}

@media (min-width: 1200px) {
  .hero-copy > p:last-child { max-width: 580px; margin-left: 180px; }
}

.hero-cta {
  position: absolute;
  z-index: 4;
  right: 2.6vw;
  bottom: 34px;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  min-width: 250px;
  padding: 18px 22px;
  color: var(--orange);
  background: var(--paper);
  font-size: .78rem;
}

.hero-cta b { font-size: 1rem; font-weight: 300; transition: transform .3s var(--ease); }
.hero-cta:hover b { transform: translateY(5px); }

.field-note {
  position: absolute;
  z-index: 5;
  bottom: 46px;
  left: 1.7vw;
  width: min(240px, 20vw);
  padding: 18px;
  color: var(--orange);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 45px rgba(25, 33, 28, .12);
}

.field-note span,
.field-note small {
  display: block;
  font-family: var(--mono);
  font-size: .48rem;
  line-height: 1.45;
  letter-spacing: .08em;
}

.field-note p {
  margin: 12px 0 14px;
  color: var(--ink);
  font-size: .66rem;
  line-height: 1.75;
}

.scroll-note {
  position: absolute;
  right: 5vw;
  bottom: 60px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: .52rem;
  letter-spacing: .08em;
}

.scroll-note span { display: inline-block; margin-left: 15px; animation: scroll-pulse 1.7s infinite var(--ease); }

@keyframes scroll-pulse {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(6px); }
}

.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 1320px;
  padding: 160px 0 180px;
  background: var(--white);
}

.manifesto-copy {
  z-index: 2;
  grid-column: 8 / 12;
  align-self: start;
  padding-top: 45px;
}

.manifesto-copy h2 {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(2.5rem, 4.4vw, 5rem);
}

.manifesto-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin-top: 34px;
  font-size: .86rem;
  line-height: 2.25;
}

.manifesto-wide {
  grid-column: 1 / 8;
  height: 520px;
  margin-top: 300px;
}

.manifesto-tall {
  grid-column: 9 / 13;
  height: 590px;
  margin-top: 190px;
}

.manifesto-en {
  position: absolute;
  bottom: 110px;
  left: 7vw;
  color: var(--orange);
  font-family: var(--mono);
  font-size: .65rem;
  letter-spacing: .12em;
  writing-mode: vertical-rl;
}

.one-day { padding-top: 125px; background: var(--paper); }

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, .4fr);
  gap: 5vw;
  align-items: end;
  margin: 0 7vw 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.section-head > *,
.activity-head > * { min-width: 0; }

.section-head h2 {
  margin-top: 22px;
  font-size: clamp(3.2rem, 5vw, 6.4rem);
  white-space: nowrap;
}

.section-head > p {
  max-width: 430px;
  padding-bottom: 10px;
  font-size: .84rem;
  line-height: 2.1;
}

.time-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 7vw 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.time-index::-webkit-scrollbar { display: none; }

.time-index a {
  display: flex;
  flex-direction: column;
  min-height: 86px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .08em;
  transition: color .3s, background .3s;
}

.time-index a:last-child { border-right: 0; }
.time-index a span { margin-bottom: 7px; color: var(--orange); }
.time-index a:hover { color: var(--white); background: var(--orange); }
.time-index a:hover span { color: var(--white); }

.moment {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 920px;
  padding: 150px 7vw;
  overflow: hidden;
}

.moment figure { position: relative; z-index: 1; }

.moment-time {
  position: absolute;
  z-index: 0;
  top: 50px;
  color: rgba(243, 123, 43, .16);
  font-family: var(--latin);
  font-size: clamp(7rem, 18vw, 17rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.08em;
}

.moment-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 42px 0 20px;
}

.moment-copy h3 {
  margin-top: 18px;
  font-size: clamp(2.3rem, 4.6vw, 5rem);
}

.moment-copy > p:last-child {
  max-width: 470px;
  margin-top: 28px;
  font-size: .84rem;
  line-height: 2.15;
}

.moment-morning figure { grid-column: 1 / 8; height: 630px; }
.moment-morning .moment-copy { grid-column: 9 / 13; }
.moment-morning .moment-time { right: 4vw; }

.moment-river { min-height: 1080px; background: var(--white); }
.moment-river figure { grid-column: 6 / 13; height: 700px; margin-top: 120px; }
.moment-river .moment-copy { grid-column: 1 / 5; grid-row: 1; align-self: center; }
.moment-river .moment-time { left: 2vw; }

.moment-fire { padding-top: 230px; }
.moment-fire figure { grid-column: 2 / 10; height: 660px; }
.moment-fire .moment-copy { grid-column: 8 / 13; margin-top: -120px; padding: 40px; background: rgba(248, 247, 242, .94); }
.moment-fire .moment-time { right: 3vw; }

.moment-night {
  min-height: 1060px;
  color: var(--white);
  background: var(--night);
}

.moment-night::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 15, 14, .06), rgba(9, 15, 14, .7));
  content: "";
}

.moment-night figure { position: absolute; inset: 0; }
.moment-night .moment-time { z-index: 2; top: 90px; left: 5vw; color: rgba(243, 123, 43, .55); }
.moment-night .moment-copy { z-index: 3; grid-column: 7 / 13; align-self: end; padding-bottom: 90px; }
.moment-night .moment-copy .eyebrow { color: #ffb47e; }

.activity-field {
  padding: 140px 7vw 160px;
  color: var(--paper);
  background: var(--orange);
}

.activity-head {
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 7vw;
  align-items: end;
  margin-bottom: 70px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
}

.activity-head .eyebrow { grid-column: 1 / -1; color: var(--paper); }
.activity-head h2 { font-size: clamp(3.3rem, 7vw, 7.6rem); }
.activity-head > p:last-child { max-width: 430px; padding-bottom: 10px; font-size: .82rem; line-height: 2.1; }

.activity-body {
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(500px, 1.2fr);
  gap: 7vw;
  align-items: start;
}

.activity-preview {
  position: sticky;
  top: calc(var(--header-h) + 36px);
  height: min(65vw, 690px);
  max-height: calc(100svh - var(--header-h) - 72px);
  overflow: hidden;
  background: var(--orange-deep);
}

.activity-preview img {
  transition: opacity .22s, transform .8s var(--ease);
}

.activity-preview.is-changing img { opacity: .08; transform: scale(1.13); }

.activity-preview figcaption {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  padding-top: 11px;
  border-top: 1px solid rgba(255, 255, 255, .65);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .08em;
}

.activity-list { border-top: 1px solid rgba(255, 255, 255, .55); }

.activity-list button {
  display: grid;
  grid-template-columns: 45px 1fr minmax(110px, .5fr) 32px;
  gap: 15px;
  align-items: center;
  width: 100%;
  min-height: 110px;
  padding: 15px 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  text-align: left;
  cursor: pointer;
}

.activity-list button span,
.activity-list button small {
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: .08em;
}

.activity-list button b {
  font-family: var(--latin);
  font-size: clamp(2rem, 3.7vw, 4.3rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.055em;
  transition: transform .35s var(--ease);
}

.activity-list button i { font-size: 1.2rem; font-style: normal; transition: transform .35s var(--ease); }
.activity-list button:hover b,
.activity-list button.is-active b { transform: translateX(18px); }
.activity-list button:hover i,
.activity-list button.is-active i { transform: rotate(45deg); }

.plans { padding: 135px 0 110px; background: var(--paper); }
.plan-list { border-top: 1px solid var(--line); }

.plan-row {
  display: grid;
  grid-template-columns: minmax(220px, 28vw) 44px minmax(290px, 1fr) minmax(230px, .55fr);
  gap: 35px;
  align-items: center;
  min-height: 370px;
  padding: 42px 7vw;
  border-bottom: 1px solid var(--line);
  transition: color .45s, background .45s;
}

.plan-row:hover { color: var(--white); background: var(--ink); }

.plan-row figure {
  height: 270px;
  overflow: hidden;
}

.plan-row figure img { transition: transform .7s var(--ease); }
.plan-row:hover figure img { transform: scale(1.06); }

.plan-no {
  align-self: start;
  padding-top: 10px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: .7rem;
}

.plan-copy .eyebrow { margin-bottom: 16px; }
.plan-copy h3 { font-size: clamp(2rem, 3.4vw, 4rem); }
.plan-copy > p:not(.eyebrow) { max-width: 510px; margin-top: 20px; font-size: .78rem; line-height: 2; }

.plan-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.plan-copy li {
  padding: 5px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: .6rem;
  line-height: 1.4;
}

.plan-price { display: flex; flex-direction: column; align-items: flex-start; }
.plan-price small { font-family: var(--mono); font-size: .52rem; letter-spacing: .08em; }
.plan-price strong { margin-top: 10px; font-family: var(--latin); font-size: clamp(2.3rem, 4.2vw, 4.7rem); font-weight: 300; line-height: 1; letter-spacing: -.07em; }
.plan-price em { margin-left: 7px; font-family: var(--jp); font-size: .68rem; font-style: normal; letter-spacing: 0; }

.plan-price a {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 35px;
  padding: 13px 0;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
}

.price-note { margin: 28px 7vw 0; font-size: .67rem; }

.photo-passage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  min-height: 1120px;
  padding: 125px 0 155px;
  background: var(--white);
}

.passage-main { grid-column: 1 / 9; height: 610px; }
.passage-sub { grid-column: 9 / 13; height: 450px; margin-top: 370px; }

.photo-passage > p {
  position: absolute;
  right: 7vw;
  bottom: 62px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .12em;
}

.guide { padding: 135px 0 125px; }

.gear-grid {
  display: grid;
  grid-template-columns: 1.2fr .7fr .7fr;
  gap: 1px;
  margin: 0 7vw 125px;
  background: var(--line);
  border: 1px solid var(--line);
}

.gear-grid figure { min-height: 600px; }

.gear-grid article {
  min-height: 600px;
  padding: 45px 32px;
  background: var(--paper);
}

.gear-grid h3 { margin-top: 20px; font-size: clamp(1.8rem, 2.7vw, 3rem); }
.gear-grid ul { margin-top: 60px; border-top: 1px solid var(--line); }

.gear-grid li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: .72rem;
}

.gear-grid li::before { margin-right: 12px; color: var(--orange); content: "＋"; }

.visit-flow { margin: 0 7vw; border-top: 1px solid var(--line); }

.visit-flow li {
  display: grid;
  grid-template-columns: 75px 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 145px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.visit-flow > li > span { color: var(--orange); font-family: var(--mono); font-size: .7rem; }
.visit-flow b { font-size: clamp(1.2rem, 2vw, 2rem); font-weight: 400; }
.visit-flow p { margin-top: 8px; font-size: .72rem; }
.visit-flow small { font-family: var(--mono); font-size: .55rem; letter-spacing: .1em; }

.faq {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 8vw;
  padding: 135px 7vw;
  background: var(--mist);
}

.faq-title { position: sticky; top: calc(var(--header-h) + 50px); align-self: start; }
.faq-title h2 { margin-top: 22px; font-size: clamp(3rem, 5.4vw, 6rem); }
.faq-list { border-top: 1px solid var(--line); }

.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: grid;
  grid-template-columns: 42px 1fr 30px;
  gap: 12px;
  align-items: center;
  min-height: 110px;
  padding: 18px 0;
  font-size: .86rem;
  font-weight: 400;
  list-style: none;
  cursor: pointer;
}

.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--orange); font-family: var(--mono); font-size: .6rem; }
.faq summary i { justify-self: end; width: 24px; min-width: 0; font-size: 1.2rem; font-style: normal; font-weight: 300; text-align: center; transition: transform .3s var(--ease); }
.faq details[open] summary i { transform: rotate(45deg); }
.faq details p { max-width: 640px; padding: 0 42px 35px 54px; font-size: .76rem; line-height: 2.1; }

.reserve {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: end;
  min-height: 1000px;
  padding: 150px 7vw 100px;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.reserve::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 10, .14), rgba(5, 10, 10, .82));
  content: "";
}

.reserve-bg { position: absolute; inset: 0; }

.reserve-brand {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: -2vw;
  left: -2vw;
  color: var(--orange);
  font-family: var(--latin);
  font-size: clamp(5rem, 13.5vw, 13rem);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.095em;
}

.reserve-copy { position: relative; z-index: 3; grid-column: 1 / 8; max-width: 780px; }
.reserve-copy .eyebrow { color: #ffb27b; }
.reserve-copy h2 { margin-top: 22px; font-size: clamp(3.4rem, 6.2vw, 7rem); }
.reserve-copy h2 span { display: block; }
.reserve-copy > p:not(.eyebrow) { max-width: 570px; margin-top: 28px; font-size: .84rem; line-height: 2.1; }

.reserve-copy > a {
  display: flex;
  justify-content: space-between;
  width: min(100%, 620px);
  margin-top: 45px;
  padding: 24px 28px;
  color: var(--orange);
  background: var(--paper);
  font-size: .82rem;
}

.reserve-copy > a b { font-size: 1.2rem; font-weight: 300; transition: transform .3s var(--ease); }
.reserve-copy > a:hover b { transform: rotate(45deg); }
.reserve-copy > small { display: block; max-width: 620px; margin-top: 17px; color: rgba(255, 255, 255, .72); font-size: .63rem; }

.reserve-condition {
  position: relative;
  z-index: 3;
  grid-column: 10 / 13;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-bottom: 40px;
  font-family: var(--mono);
}

.reserve-condition span { font-size: .62rem; letter-spacing: .08em; }
.reserve-condition strong { margin: 14px 0 9px; color: var(--orange); font-family: var(--latin); font-size: clamp(3rem, 5vw, 5.8rem); font-weight: 300; line-height: 1; letter-spacing: -.07em; }
.reserve-condition small { font-size: .54rem; letter-spacing: .1em; }

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr .7fr .8fr;
  gap: 5vw;
  padding: 90px 7vw 35px;
  color: var(--orange);
  background: var(--paper);
}

.footer-brand { display: flex; flex-direction: column; font-family: var(--latin); line-height: 1; }
.footer-brand strong { font-size: clamp(2.4rem, 5vw, 6rem); font-weight: 300; letter-spacing: -.07em; }
.footer-brand span { margin-top: 12px; font-family: var(--mono); font-size: .52rem; letter-spacing: .12em; }
.site-footer nav { display: flex; flex-direction: column; gap: 8px; font-family: var(--mono); font-size: .63rem; letter-spacing: .1em; }
.site-footer address { font-size: .7rem; line-height: 2.1; }
.site-footer > p { grid-column: 1 / 3; margin-top: 50px; font-family: var(--mono); font-size: .58rem; letter-spacing: .12em; }
.site-footer > small { justify-self: end; align-self: end; font-family: var(--mono); font-size: .5rem; }

.mobile-cta { display: none; }

.reveal-soft { transition: transform .95s var(--ease), filter .95s var(--ease), clip-path 1.1s var(--ease); }
.js .reveal-soft { transform: translateY(28px); filter: blur(3px); }
.js figure.reveal-soft { clip-path: inset(3% 0 4%); }
.js .reveal-soft.is-visible { transform: none; filter: none; clip-path: inset(0); }

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 24px; }
  .desktop-nav { gap: 20px; }
  .field-note { left: 3vw; width: 220px; }
  .hero-copy { left: 5vw; max-width: 650px; }
  .moment-fire .moment-copy { grid-column: 7 / 13; }
  .activity-body { grid-template-columns: minmax(330px, .8fr) minmax(420px, 1.2fr); gap: 5vw; }
  .plan-row { grid-template-columns: minmax(200px, 25vw) 35px 1fr minmax(190px, .45fr); gap: 24px; }
  .gear-grid { grid-template-columns: 1fr 1fr; }
  .gear-grid figure { grid-column: 1 / -1; min-height: 520px; }
  .gear-grid article { min-height: 440px; }
}

@media (max-width: 900px) {
  :root { --header-h: 70px; }
  body { font-size: 15px; padding-bottom: 64px; }
  .site-header { grid-template-columns: 1fr auto auto; padding: 0 18px; }
  .desktop-nav { display: none; }
  .menu-button { display: block; order: 3; }
  .header-reserve { margin-right: 2px; }
  .header-reserve b { width: 38px; height: 38px; }

  .hero { min-height: 980px; padding: calc(var(--header-h) + 12px) 16px 130px; }
  .hero-frame { min-height: 800px; }
  .hero-logo { top: 22px; right: 14px; left: 14px; flex-direction: column; font-size: clamp(4.5rem, 16vw, 7.5rem); line-height: .76; }
  .hero-logo span:last-child { align-self: flex-end; }
  .hero-keywords { top: 175px; left: 24px; font-size: .72rem; }
  .field-weather { top: 122px; right: 22px; }
  .field-weather strong { font-size: 2.7rem; }
  .hero-copy { right: 26px; bottom: 185px; left: 26px; }
  .hero-copy h1 { font-size: clamp(3rem, 10vw, 5.6rem); }
  .hero-copy > p:last-child { max-width: 520px; margin-left: 0; }
  .hero-cta { right: 24px; bottom: 88px; left: 24px; min-width: 0; }
  .field-note { bottom: 38px; left: 0; width: 230px; }
  .scroll-note { display: none; }

  .manifesto { grid-template-columns: repeat(8, 1fr); min-height: 1160px; padding: 120px 0 140px; }
  .manifesto-copy { grid-column: 3 / 8; padding: 0 5vw; }
  .manifesto-copy h2 { font-size: clamp(2.7rem, 7vw, 4.7rem); }
  .manifesto-wide { grid-column: 1 / 7; height: 440px; margin-top: 155px; }
  .manifesto-tall { grid-column: 5 / 9; height: 470px; margin-top: 120px; }
  .manifesto-en { bottom: 55px; }

  .one-day { padding-top: 100px; }
  .section-head { grid-template-columns: 1fr; gap: 30px; margin: 0 5vw 60px; }
  .section-head h2 { font-size: clamp(3rem, 9.8vw, 5.6rem); }
  .section-head h2 { word-break: normal; white-space: normal; }
  .time-index { margin: 0 5vw 20px; }
  .time-index a { min-height: 74px; padding: 14px 11px; font-size: .5rem; }
  .moment { min-height: 820px; padding: 120px 5vw; }
  .moment-time { top: 60px; font-size: 20vw; }
  .moment-morning figure,
  .moment-river figure,
  .moment-fire figure { grid-column: 1 / 10; height: 520px; margin: 0; }
  .moment-morning .moment-copy,
  .moment-river .moment-copy,
  .moment-fire .moment-copy { grid-column: 7 / 13; grid-row: auto; align-self: end; margin: -90px 0 0; padding: 30px; color: var(--ink); background: rgba(248, 247, 242, .95); }
  .moment-copy h3 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
  .moment-night { min-height: 900px; }
  .moment-night .moment-copy { grid-column: 5 / 13; margin: 0; padding: 0 0 55px; color: var(--white); background: transparent; }

  .activity-field { padding: 110px 5vw 125px; }
  .activity-head { grid-template-columns: 1fr; gap: 25px; }
  .activity-head h2 { font-size: clamp(3rem, 10vw, 5.6rem); }
  .activity-body { grid-template-columns: 1fr; }
  .activity-preview { position: relative; top: auto; height: 62vw; max-height: 560px; margin-bottom: 40px; }
  .activity-list button { min-height: 95px; }

  .plans { padding-top: 110px; }
  .plan-row { grid-template-columns: 44px 1fr minmax(180px, .45fr); padding: 40px 5vw; }
  .plan-row figure { grid-column: 1 / -1; height: 47vw; min-height: 320px; }
  .plan-no { grid-column: 1; }
  .plan-copy { grid-column: 2; }
  .plan-price { grid-column: 3; }
  .price-note { margin-inline: 5vw; }

  .photo-passage { min-height: 970px; padding-top: 100px; }
  .passage-main { grid-column: 1 / 11; height: 520px; }
  .passage-sub { grid-column: 7 / 13; height: 370px; margin-top: 285px; }

  .guide { padding-top: 110px; }
  .gear-grid { margin: 0 5vw 95px; }
  .visit-flow { margin-inline: 5vw; }

  .faq { grid-template-columns: 1fr; gap: 60px; padding: 110px 5vw; }
  .faq-title { position: static; }
  .faq-title h2 { font-size: clamp(3rem, 9vw, 5.4rem); }

  .reserve { min-height: 880px; padding: 140px 5vw 80px; }
  .reserve-copy { grid-column: 1 / 10; }
  .reserve-condition { grid-column: 10 / 13; }

  .site-footer { grid-template-columns: 1fr 1fr; padding: 70px 5vw 30px; }
  .site-footer address { grid-column: 2; grid-row: 1 / span 2; }
  .site-footer > p { grid-column: 1 / -1; }

  .mobile-cta {
    position: fixed;
    z-index: 145;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 64px;
    color: var(--paper);
    background: var(--ink);
    transition: transform .45s var(--ease);
  }

  .mobile-cta.is-hidden,
  .mobile-cta.is-menu-hidden { transform: translateY(100%); }
  .mobile-cta > span { display: flex; align-items: center; padding: 0 18px; color: var(--orange); font-family: var(--mono); font-size: .5rem; letter-spacing: .08em; }
  .mobile-cta a { display: flex; align-items: center; justify-content: space-between; padding: 0 18px; color: var(--orange); background: var(--paper); font-size: .72rem; }
  .mobile-cta b { font-size: 1rem; font-weight: 300; }
}

@media (max-width: 600px) {
  .brand span { font-size: 1rem; }
  .brand small { font-size: .36rem; }
  .header-reserve span { display: none; }
  .header-reserve b { width: 42px; height: 42px; }

  .hero { min-height: 920px; padding-right: 10px; padding-left: 10px; }
  .hero-frame { min-height: 770px; }
  .hero-logo { top: 30px; font-size: 20vw; }
  .hero-keywords { top: 168px; left: 18px; font-size: .58rem; }
  .field-weather { top: 126px; right: 16px; }
  .field-weather span { font-size: .5rem; }
  .field-weather strong { margin-top: 10px; font-size: 2.2rem; }
  .field-weather small { font-size: .42rem; }
  .field-weather i { width: 38px; height: 22px; margin-top: 12px; }
  .hero-copy { right: 18px; bottom: 178px; left: 18px; }
  .hero-copy h1 { font-size: clamp(3.1rem, 13.2vw, 4.6rem); }
  .hero-copy > p:last-child { margin-top: 18px; font-size: .73rem; line-height: 1.95; }
  .hero-cta { right: 16px; bottom: 82px; left: 16px; }
  .field-note { position: relative; bottom: auto; left: auto; width: calc(100% - 46px); margin: -43px 23px 0; }

  .manifesto { display: block; min-height: 0; padding: 115px 0 100px; }
  .manifesto-copy { padding: 0 7vw; }
  .manifesto-copy h2 { font-size: clamp(2.7rem, 11.5vw, 4.3rem); }
  .manifesto-copy > p:not(.eyebrow) { font-size: .76rem; }
  .manifesto-wide { width: 88%; height: 390px; margin: 105px 0 0; }
  .manifesto-tall { width: 66%; height: 390px; margin: 60px 0 0 auto; }
  .manifesto-en { position: static; margin: 45px 7vw 0; writing-mode: horizontal-tb; }

  .section-head { margin-inline: 5vw; }
  .section-head h2 { font-size: clamp(2.9rem, 12vw, 4.5rem); }
  .section-head > p { font-size: .76rem; }
  .time-index { overflow-x: auto; grid-template-columns: repeat(4, 145px); margin-right: 0; padding-right: 5vw; }
  .time-index a { border-top: 0; }

  .moment { display: block; min-height: 0; padding: 120px 5vw 140px; }
  .moment-time { top: 54px; font-size: 28vw; }
  .moment-morning figure,
  .moment-river figure,
  .moment-fire figure { width: 100%; height: 400px; }
  .moment-morning .moment-copy,
  .moment-river .moment-copy,
  .moment-fire .moment-copy { width: calc(100% - 30px); margin: -110px 0 0 30px; padding: 25px; }
  .moment-copy h3 { font-size: clamp(2rem, 9vw, 3rem); }
  .moment-copy > p:last-child { font-size: .74rem; }
  .moment-night { min-height: 820px; }
  .moment-night .moment-time { top: 100px; }
  .moment-night .moment-copy { position: absolute; right: 5vw; bottom: 55px; left: 5vw; width: auto; margin: 0; padding: 0; }

  .activity-field { padding-inline: 5vw; }
  .activity-head h2 { font-size: clamp(2.9rem, 12vw, 4.5rem); }
  .activity-head > p:last-child { font-size: .74rem; }
  .activity-preview { height: 110vw; max-height: 520px; }
  .activity-list button { grid-template-columns: 32px 1fr 28px; gap: 9px; min-height: 86px; }
  .activity-list button small { display: none; }
  .activity-list button b { font-size: clamp(1.9rem, 9vw, 3.1rem); }

  .plans { padding-bottom: 110px; }
  .plan-row { display: grid; grid-template-columns: 34px 1fr; gap: 18px; padding: 32px 5vw 45px; }
  .plan-row figure { grid-column: 1 / -1; height: 80vw; min-height: 300px; }
  .plan-no { grid-column: 1; }
  .plan-copy { grid-column: 2; }
  .plan-copy h3 { font-size: 2.2rem; }
  .plan-copy > p:not(.eyebrow) { font-size: .72rem; }
  .plan-price { grid-column: 2; margin-top: 12px; }
  .plan-price strong { font-size: 3.1rem; }
  .plan-price a { margin-top: 24px; }

  .photo-passage { display: block; min-height: 900px; padding: 90px 0 120px; }
  .passage-main { width: 92%; height: 430px; }
  .passage-sub { width: 68%; height: 340px; margin: 70px 0 0 auto; }
  .photo-passage > p { right: auto; bottom: 45px; left: 5vw; max-width: 280px; }

  .gear-grid { display: block; background: transparent; border: 0; }
  .gear-grid figure { min-height: 390px; }
  .gear-grid article { min-height: 0; padding: 45px 24px 60px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-left: 1px solid var(--line); }
  .gear-grid ul { margin-top: 35px; }
  .visit-flow li { grid-template-columns: 40px 1fr; gap: 14px; min-height: 145px; }
  .visit-flow small { grid-column: 2; }

  .faq { padding-bottom: 100px; }
  .faq-title h2 { font-size: clamp(2.7rem, 11vw, 4rem); }
  .faq summary { grid-template-columns: 34px 1fr 24px; gap: 8px; min-height: 100px; font-size: .76rem; }
  .faq details p { padding: 0 22px 28px 42px; font-size: .72rem; }

  .reserve { display: block; min-height: 880px; padding: 180px 5vw 80px; }
  .reserve-brand { top: 44px; font-size: 20vw; white-space: nowrap; }
  .reserve-copy { position: absolute; right: 5vw; bottom: 100px; left: 5vw; }
  .reserve-copy h2 { font-size: clamp(3rem, 12vw, 4.5rem); }
  .reserve-copy > p:not(.eyebrow) { font-size: .74rem; }
  .reserve-copy > a { padding: 21px 20px; }
  .reserve-condition { position: absolute; top: 140px; right: 5vw; padding: 0; }

  .site-footer { display: block; padding-bottom: 50px; }
  .site-footer nav { margin-top: 45px; }
  .site-footer address { margin-top: 45px; }
  .site-footer > p { margin-top: 45px; }
  .site-footer > small { display: block; margin-top: 18px; }

  .mobile-cta { grid-template-columns: 42% 58%; }
  .mobile-cta > span { padding-inline: 11px; font-size: .42rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .parallax-media img { transform: scale(1.03); }
  .js .reveal-soft { transform: none; filter: none; clip-path: none; }
}
