@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/Fraunces-Variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("assets/fonts/Fraunces-Italic-Variable.woff2") format("woff2-variations");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("assets/fonts/Geist-Variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --cream: #f2ecdf;
  --cream-light: #faf7ef;
  --parchment: #ded2bf;
  --sage: #879483;
  --sage-soft: #b8c0b2;
  --forest: #263c34;
  --forest-deep: #172a24;
  --espresso: #2d241f;
  --espresso-soft: #4a3b32;
  --rust: #9a523c;
  --gold: #ddbd78;
  --ink: #272722;
  --muted: #686961;
  --serif: "Fraunces", Georgia, Cambria, serif;
  --sans: "Geist", ui-sans-serif, system-ui, sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shadow-soft: 0 28px 75px rgba(45, 36, 31, .12);
  --shadow-deep: 0 34px 90px rgba(23, 42, 36, .24);
  --radius-sm: .7rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --page-pad: clamp(1rem, 4vw, 2rem);
  --header-offset: 6rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-offset); }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
button { color: inherit; }
::selection { background: var(--sage-soft); color: var(--forest-deep); }

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1000;
  padding: .8rem 1rem;
  border-radius: 999px;
  background: var(--cream-light);
  color: var(--espresso);
  font-size: .8rem;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 3px solid var(--rust); outline-offset: 4px; }
.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;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  padding: 1rem var(--page-pad) 0;
  transition: background-color .28s var(--ease), box-shadow .28s var(--ease), backdrop-filter .28s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 239, .96);
  box-shadow: 0 12px 42px rgba(45, 36, 31, .12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled .nav-shell {
  background: transparent;
  box-shadow: none;
}
.site-header.is-scrolled .nav-links a[aria-current="location"]::after {
  background: var(--forest);
}
.nav-shell {
  position: relative;
  max-width: 1440px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: .65rem .7rem .65rem .8rem;
  border-radius: 1.15rem;
  background: rgba(250, 247, 239, .94);
  box-shadow: 0 12px 42px rgba(45, 36, 31, .08);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}
.wordmark-mark {
  display: grid;
  width: 40px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream-light);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}
.wordmark-name {
  color: var(--espresso);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 560;
  line-height: .95;
}
.wordmark-name small {
  display: block;
  margin-top: .28rem;
  font-family: var(--sans);
  font-size: .48rem;
  font-weight: 720;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .65rem .8rem;
  border: 0;
  border-radius: 999px;
  background: var(--forest);
  color: var(--cream-light);
  font-size: .65rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-icon { width: 19px; display: grid; gap: 5px; }
.menu-icon i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: transform .45s var(--ease);
}
.menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
.nav-links {
  position: absolute;
  top: calc(100% + .55rem);
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
  padding: 1rem;
  border-radius: 1.15rem;
  background: var(--cream-light);
  box-shadow: var(--shadow-soft);
}
.js .nav-links { visibility: hidden; opacity: 0; transform: translateY(-12px); pointer-events: none; transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s; }
.js .nav-links.is-open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
.nav-links a {
  position: relative;
  padding: .8rem .7rem;
  border-radius: .65rem;
  font-size: .75rem;
  font-weight: 650;
  letter-spacing: .06em;
  text-decoration: none;
}
.nav-links a:hover { background: rgba(135, 148, 131, .16); }
.nav-links a[aria-current="location"]::after {
  content: "";
  position: absolute;
  right: .7rem;
  bottom: .32rem;
  left: .7rem;
  height: 2px;
  border-radius: 999px;
  background: var(--sage);
}
.nav-links .nav-cta {
  display: flex;
  justify-content: space-between;
  margin-top: .35rem;
  background: var(--forest);
  color: var(--cream-light);
}
.nav-links .nav-cta:hover {
  background: var(--forest-deep);
  color: var(--cream-light);
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 460;
  letter-spacing: -.04em;
  line-height: .98;
  font-variation-settings: "SOFT" 30, "WONK" 1;
}
h1 em, h2 em {
  font-weight: 430;
  font-variation-settings: "SOFT" 55, "WONK" 1;
}
h1 { margin-bottom: 1.5rem; font-size: clamp(2.6rem, 6.5vw, 4.4rem); }
h2 { margin-bottom: 1.7rem; font-size: clamp(2rem, 5vw, 3.4rem); }
.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  font-weight: 420;
  letter-spacing: -.015em;
  line-height: 1.32;
  font-variation-settings: "SOFT" 35, "WONK" 0;
}
.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.4rem;
  color: var(--rust);
  font-size: .62rem;
  font-weight: 760;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow-light { color: #d99a7e; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) var(--page-pad); }

.cta {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding: .45rem .45rem .45rem 1.25rem;
  border: 0;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 720;
  letter-spacing: .07em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background-color .45s var(--ease);
}
.cta:hover { transform: translateY(-3px); }
.cta-dark { background: var(--forest); color: var(--cream-light); box-shadow: 0 18px 40px rgba(38, 60, 52, .18); }
.cta-dark:hover { background: var(--forest-deep); box-shadow: 0 22px 46px rgba(38, 60, 52, .25); }
.cta-light { width: 100%; background: var(--cream-light); color: var(--forest-deep); box-shadow: 0 18px 42px rgba(0, 0, 0, .12); }
.cta-icon {
  display: grid;
  width: 46px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  font-size: 1rem;
  transition: transform .45s var(--ease);
}
.cta-light .cta-icon { background: var(--forest); color: var(--cream-light); }
.cta:hover .cta-icon { transform: translate(2px, -2px); }

.hero {
  display: grid;
  gap: 1.25rem;
  padding: 7rem var(--page-pad) 1.5rem;
}
.hero-copy { align-self: center; padding: 2rem 0 .75rem; }
.hero-statement {
  max-width: 34rem;
  margin-bottom: 1rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 420;
  letter-spacing: -.02em;
  line-height: 1.23;
}
.hero-intro { max-width: 34rem; margin-bottom: 2rem; color: var(--muted); }
.hero-media {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 861 / 1200;
  justify-self: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sage);
  box-shadow: var(--shadow-soft);
}
.photo-frame {
  isolation: isolate;
  background: var(--sage-soft);
}
.photo-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}
picture.photo-frame {
  position: relative;
  display: block;
  overflow: hidden;
}
.photo-picture img,
picture.photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
picture.photo-frame img {
  position: absolute;
  inset: 0;
}
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(23, 42, 36, .04), rgba(23, 42, 36, .18));
}
.hero-photo::after {
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, .16), transparent 24%),
    linear-gradient(180deg, rgba(23, 42, 36, .02), rgba(23, 42, 36, .32));
}
.hero-photo { background: var(--sage); }
.hero-photo img { object-position: center center; }
.concept-landscape img { object-position: center 54%; }
.concept-detail img { object-position: 69% 48%; }
.host-photo img { object-position: center 46%; }
.hero-sun {
  position: absolute;
  top: 11%;
  right: 11%;
  width: 37%;
  max-width: 230px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 90px rgba(221, 189, 120, .26);
}
.hero-ridge {
  position: absolute;
  left: -10%;
  bottom: 0;
  width: 120%;
  clip-path: polygon(0 100%, 0 72%, 16% 54%, 27% 66%, 45% 28%, 59% 64%, 76% 40%, 100% 70%, 100% 100%);
}
.ridge-back { height: 72%; background: #6d7e71; }
.ridge-front {
  z-index: 2;
  height: 48%;
  background: var(--forest-deep);
  clip-path: polygon(0 100%, 0 69%, 18% 42%, 34% 72%, 52% 35%, 69% 67%, 85% 48%, 100% 62%, 100% 100%);
}
.hero-cabin {
  position: absolute;
  right: 12%;
  bottom: 14%;
  z-index: 3;
  width: 30%;
  max-width: 200px;
  height: 18%;
  background: var(--espresso);
}
.hero-cabin::before {
  content: "";
  position: absolute;
  left: -10%;
  top: -54%;
  width: 120%;
  height: 57%;
  background: #211b18;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.hero-cabin i {
  position: absolute;
  right: 18%;
  top: 27%;
  width: 22%;
  height: 38%;
  background: var(--gold);
  box-shadow: -38px 0 0 var(--gold);
}
.ski-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  width: 118px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 50%;
  background: var(--cream-light);
  color: var(--forest-deep);
  box-shadow: 0 16px 45px rgba(23, 42, 36, .18);
}
.ski-badge-line { width: 26px; height: 2px; margin-bottom: .6rem; background: var(--rust); }
.ski-badge strong { font-family: var(--serif); font-size: 1rem; font-weight: 540; line-height: 1.1; }
.concept { background: var(--cream-light); }
.concept-main { max-width: 1180px; margin: 0 auto; }
.concept-copy { display: grid; gap: 2rem; }
.concept-copy .lead { margin-bottom: 0; }
.concept-story > p:first-child { color: var(--muted); }
.concept-value {
  max-width: 32rem;
  margin: 1.7rem 0 0;
  padding-top: 1.4rem;
  color: var(--forest-deep);
  box-shadow: inset 0 1px rgba(38, 60, 52, .18);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.1vw, 1.55rem);
  font-weight: 430;
  letter-spacing: -.012em;
  line-height: 1.3;
  font-variation-settings: "SOFT" 35, "WONK" 0;
}
.concept-gallery { display: grid; gap: 1rem; margin-top: 3rem; }
.concept-media {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.concept-landscape { background: #91a097; }
.concept-detail { min-height: 210px; background: #a99076; }
.concept-sun { position: absolute; top: 13%; right: 11%; width: 22%; aspect-ratio: 1; border-radius: 50%; background: var(--gold); opacity: .84; }
.concept-ridge { position: absolute; inset: 20% -8% 0; }
.concept-ridge-back { background: #65796e; clip-path: polygon(0 100%, 0 74%, 18% 48%, 34% 67%, 52% 28%, 68% 65%, 84% 45%, 100% 71%, 100% 100%); }
.concept-ridge-front { z-index: 2; inset-block-start: 38%; background: var(--forest); clip-path: polygon(0 100%, 0 73%, 19% 54%, 37% 75%, 56% 39%, 73% 70%, 88% 53%, 100% 68%, 100% 100%); }
.concept-window { position: absolute; inset: 10% 10% 28%; border: .65rem solid #59483d; background: linear-gradient(#aab8b1 0 52%, var(--forest) 52%); box-shadow: 0 16px 38px rgba(45, 36, 31, .2); }
.concept-table { position: absolute; right: 5%; bottom: 9%; z-index: 3; width: 58%; height: 12%; border-radius: 50%; background: var(--espresso); box-shadow: 0 19px 0 -14px #332922; }

.cabin { overflow: hidden; background: var(--parchment); }
.cabin-heading .eyebrow { color: var(--espresso-soft); }
.cabin-heading { max-width: 780px; margin-bottom: 3rem; }
.cabin-heading > p:last-child { max-width: 39rem; color: var(--espresso-soft); }
.cabin-stage {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
.cabin-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
html:not(.js) .cabin-gallery > picture[data-strict-lazy] { display: none; }
html:not(.js) .cabin-gallery > noscript { display: contents; }
html.js .cabin-gallery > picture[data-strict-lazy] { display: block; }
html.js .cabin-gallery > noscript { display: none; }
.cabin-thumb {
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 52px rgba(45, 36, 31, .14);
}
picture[data-strict-lazy] img,
img.activity-dining-backdrop[data-strict-lazy] { opacity: 0; }
.cabin-thumb:first-child img { object-position: center 60%; }
.cabin-thumb:nth-child(2) img { object-position: center 48%; }
.cabin-thumb:nth-child(3) img { object-position: center 50%; }
.cabin-thumb:last-child img { object-position: center 56%; }
.room-window {
  position: absolute;
  top: 8%;
  left: 7%;
  width: 54%;
  height: 58%;
  padding: .7rem;
  background: #40362f;
  box-shadow: 0 18px 54px rgba(45, 36, 31, .18);
}
.room-window i { position: absolute; inset: .7rem; overflow: hidden; background: #9aaba7; }
.room-window i::after {
  content: "";
  position: absolute;
  inset: 42% -10% 0;
  background: var(--forest);
  clip-path: polygon(0 100%, 0 68%, 24% 20%, 44% 72%, 69% 5%, 100% 61%, 100% 100%);
}
.room-light {
  position: absolute;
  top: 18%;
  right: 17%;
  width: 62px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 75px 34px rgba(221, 189, 120, .28);
}
.room-sofa {
  position: absolute;
  right: 5%;
  bottom: 14%;
  width: 56%;
  height: 22%;
  border-radius: 1.2rem 1.2rem .35rem .35rem;
  background: #665a4d;
  box-shadow: inset 0 16px #77695a, 0 20px 46px rgba(45, 36, 31, .22);
}
.room-table { position: absolute; left: 11%; bottom: 12%; width: 34%; height: 6%; border-radius: 50%; background: #594639; box-shadow: 0 22px 0 -17px #332922; }
.double-bezel {
  padding: .45rem;
  border-radius: calc(var(--radius-lg) + .45rem);
  background: rgba(250, 247, 239, .36);
  box-shadow: var(--shadow-deep), inset 0 0 0 1px rgba(250, 247, 239, .48);
}
.bezel-inner {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(250, 247, 239, .12);
}
.cabin-bezel { position: relative; z-index: 6; margin: 1rem .75rem 0; }
.cabin-card { padding: 2.25rem 1.5rem; background: var(--forest-deep); color: var(--cream-light); }
.cabin-card::after, .form-card::after {
  content: "";
  position: absolute;
  right: -18%;
  top: -32%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(135, 148, 131, .12);
  pointer-events: none;
}
.card-kicker { margin-bottom: 1.5rem; color: #d99a7e; font-size: .61rem; font-weight: 760; letter-spacing: .14em; text-transform: uppercase; }
.cabin-card h3 { position: relative; z-index: 1; margin-bottom: 1.5rem; font-size: clamp(2rem, 4vw, 3.4rem); }
.cabin-card > p:not(.card-kicker) { position: relative; z-index: 1; max-width: 30rem; color: #c7d0ca; }
.cabin-sleeping {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .6rem;
  margin: 1.4rem 0 1.5rem;
  padding: 0;
  list-style: none;
}
.cabin-sleeping li {
  padding: .75rem .9rem;
  border-radius: .7rem;
  background: rgba(250, 247, 239, .07);
  color: var(--cream-light);
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.25;
}
.cabin-facts { position: relative; z-index: 1; margin: 2.4rem 0 0; }
.cabin-facts div { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1rem; padding: 1.05rem 0; box-shadow: inset 0 1px rgba(242, 236, 223, .15); }
.cabin-facts dt { color: #9eaaa2; font-size: .58rem; font-weight: 720; letter-spacing: .11em; text-transform: uppercase; }
.cabin-facts dd { margin: 0; font-family: var(--serif); font-size: 1.15rem; line-height: 1.2; }

.experiences { background: var(--cream-light); }
.experiences-intro { max-width: 940px; margin-bottom: 2.5rem; }
.experiences-intro .lead { max-width: 650px; color: var(--espresso-soft); }
.experience-grid {
  display: grid;
  gap: 1rem;
}
.experience-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: 0 18px 52px rgba(45, 36, 31, .11);
  transition: transform .32s var(--ease);
  will-change: transform;
}
.experience-card:hover { transform: translate3d(0, -6px, 0); }
.activity-media {
  position: relative;
  min-height: 245px;
  overflow: hidden;
  background: var(--sage-soft);
}
.activity-media::after { background: linear-gradient(180deg, rgba(23, 42, 36, 0), rgba(23, 42, 36, .22)); }
.activity-tour img { object-position: center 56%; }
.activity-cross img { object-position: center 48%; }
.activity-sled img { object-position: center 72%; }
.activity-fishing img { object-position: center 58%; }
.activity-yoga img { object-position: center 48%; }
.activity-dining img {
  object-fit: contain;
  object-position: center;
}
.activity-tour { background: #94a395; }
.activity-cross { background: #b8c0b2; }
.activity-sled { background: #8f9b92; }
.activity-fishing { background: #8f9b92; }
.activity-yoga { background: #b79f83; }
.activity-dining { background: #a99076; }
.activity-dining-backdrop {
  position: absolute;
  inset: -18px;
  z-index: 0;
  width: calc(100% + 36px);
  height: calc(100% + 36px);
  object-fit: cover;
  object-position: center 48%;
  filter: blur(16px) saturate(.72);
  opacity: .43;
  transform: scale(1.08);
  pointer-events: none;
}
.activity-dining .photo-picture { z-index: 1; }
.activity-dining::after { z-index: 2; }
.activity-orb {
  position: absolute;
  top: 12%;
  right: 11%;
  z-index: 1;
  width: 26%;
  max-width: 130px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold);
  opacity: .72;
}
.activity-ridge {
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  z-index: 2;
  height: 62%;
  background: var(--forest);
  clip-path: polygon(0 100%, 0 73%, 17% 51%, 33% 68%, 50% 26%, 66% 69%, 83% 44%, 100% 68%, 100% 100%);
}
.activity-track {
  position: absolute;
  left: 42%;
  bottom: -8%;
  z-index: 3;
  width: 18%;
  height: 48%;
  border-radius: 50% 50% 0 0;
  background: rgba(250, 247, 239, .78);
  transform: rotate(9deg);
}
.activity-cross .activity-track {
  left: 15%;
  bottom: 18%;
  width: 70%;
  height: 3px;
  border-radius: 999px;
  background: rgba(250, 247, 239, .82);
  box-shadow: 0 24px 0 rgba(250, 247, 239, .66), 0 48px 0 rgba(250, 247, 239, .5);
  transform: rotate(-12deg);
}
.activity-sled .activity-track {
  left: 18%;
  bottom: 21%;
  width: 34%;
  height: 7%;
  border-radius: 999px;
  background: var(--espresso);
  box-shadow: 38px -18px 0 -10px var(--espresso);
  transform: rotate(-5deg);
}
.activity-copy { padding: 1.1rem 1.1rem 1.25rem; }
.experience-number {
  display: block;
  margin-bottom: .55rem;
  color: var(--rust);
  font-size: .55rem;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.activity-copy h3 { margin-bottom: .45rem; font-size: clamp(1.35rem, 2.2vw, 1.9rem); }
.activity-copy p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.48; }
.experience-note { max-width: 680px; margin: 3rem 0 0 auto; color: var(--muted); font-size: .78rem; }
.experience-note span { margin-right: .55rem; color: var(--rust); font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }

.about { display: grid; gap: 3rem; background: var(--espresso); color: var(--cream-light); }
.about-media {
  position: relative;
  height: auto;
  max-height: 720px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #6d746c;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .2);
}
.about-glow { position: absolute; top: 9%; left: 13%; width: 52%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(221, 189, 120, .55), transparent 69%); }
.host-shape { position: absolute; bottom: 0; width: 44%; height: 62%; border-radius: 48% 48% 0 0; background: var(--forest-deep); }
.host-shape::before { content: ""; position: absolute; top: -18%; left: 27%; width: 46%; aspect-ratio: 1; border-radius: 50%; background: #967662; }
.host-one { left: 10%; }
.host-two { right: 7%; height: 57%; background: #46574f; }
.about-copy { align-self: center; }
.about-copy h2 { max-width: 740px; }
.about-copy .lead { max-width: 610px; }
.about-copy > p:not(.eyebrow, .lead, .signature) { max-width: 560px; color: #c8c2b8; }
.signature { margin: 2rem 0 0; color: #d99a7e; font-family: var(--serif); font-size: 1.55rem; font-style: italic; }

.testimonial { background: var(--cream); }
.testimonial .eyebrow { justify-content: center; }
.testimonial-list { display: grid; gap: 1rem; max-width: 1180px; margin: 2.5rem auto 0; }
.quote-card { display: flex; flex-direction: column; margin: 0; padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius-lg); background: var(--cream-light); box-shadow: 0 18px 52px rgba(45, 36, 31, .09); }
.quote-card blockquote { margin: 0 0 1.5rem; overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(1.25rem, 2.1vw, 1.75rem); font-weight: 410; letter-spacing: -.025em; line-height: 1.25; font-variation-settings: "SOFT" 46, "WONK" 1; }
.quote-card blockquote::before { content: "“"; display: block; height: 2.6rem; color: var(--rust); font-size: 4rem; line-height: .8; }
.quote-card blockquote p { margin: 0; }
.quote-credit { margin-top: auto; color: var(--muted); font-size: .61rem; font-style: normal; font-weight: 720; letter-spacing: .14em; text-transform: uppercase; }

.contact { background: var(--sage); }
.contact-heading { max-width: 930px; margin-bottom: 3rem; }
.contact-heading .eyebrow { color: var(--forest-deep); }
.contact-copy { max-width: 520px; color: var(--forest-deep); }
.contact-copy p:last-child { margin-bottom: 0; }
.contact-price {
  padding-top: 1rem;
  box-shadow: inset 0 1px rgba(23, 42, 36, .2);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 520;
  line-height: 1.35;
}
.contact-bezel {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(250, 247, 239, .27);
  box-shadow: 0 22px 58px rgba(23, 42, 36, .18), inset 0 0 0 1px rgba(250, 247, 239, .42);
  contain: paint;
  transform: translateZ(0);
  will-change: transform;
}
.form-card {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--forest-deep);
  color: var(--cream-light);
  backface-visibility: hidden;
  transform: translateZ(0);
}
.form-intro { position: relative; z-index: 1; margin-bottom: 3rem; }
.form-intro p:last-child { max-width: 540px; color: #bac4bd; }
form { position: relative; z-index: 1; }
.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.fields { display: grid; gap: 1.5rem; }
label, legend { font-size: .62rem; font-weight: 720; letter-spacing: .1em; text-transform: uppercase; }
label { display: block; }
input, textarea {
  width: 100%;
  margin-top: .5rem;
  padding: .85rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cream-light);
  box-shadow: inset 0 -1px rgba(242, 236, 223, .24);
  font-size: 1rem;
  transition: box-shadow .35s var(--ease), background-color .35s var(--ease);
}
input:focus, textarea:focus { outline: 0; background: rgba(250, 247, 239, .035); box-shadow: inset 0 -2px var(--cream-light); }
input[aria-invalid="true"], textarea[aria-invalid="true"] { box-shadow: inset 0 -2px #f1c1ac; }
input::placeholder, textarea::placeholder { color: #849188; opacity: 1; }
textarea { resize: vertical; }
fieldset { margin: 3rem 0 2.5rem; padding: 0; border: 0; }
legend { margin-bottom: 1rem; }
.checks { display: flex; flex-wrap: wrap; gap: .65rem; }
.checks label {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: .55rem .8rem;
  border-radius: 999px;
  background: rgba(250, 247, 239, .07);
  box-shadow: inset 0 0 0 1px rgba(242, 236, 223, .15);
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: transform .22s var(--ease);
  will-change: transform;
}
.checks label:hover { transform: translate3d(0, -2px, 0); background: rgba(250, 247, 239, .11); }
.interest-label-short { display: none; }
.checks input, .acknowledgement input {
  width: auto;
  margin: 0 .45rem 0 0;
  padding: 0;
  background: transparent;
  accent-color: var(--sage-soft);
  box-shadow: none;
  transition: none;
}
.checks input:focus, .acknowledgement input:focus { background: transparent; box-shadow: none; }
.checks input:focus-visible, .acknowledgement input:focus-visible { outline: 3px solid var(--cream-light); outline-offset: 3px; }
.checks input[aria-invalid="true"], .acknowledgement input[aria-invalid="true"] { outline: 3px solid #f1c1ac; outline-offset: 3px; }
.form-footer { display: grid; gap: 2rem; align-items: center; padding-top: 2.2rem; box-shadow: inset 0 1px rgba(242, 236, 223, .15); }
.privacy-copy p, .form-status { color: #99a69e; font-size: .72rem; }
.privacy-details { margin-top: .75rem; }
.privacy-details summary { color: #cbd3cd; cursor: pointer; font-size: .72rem; font-weight: 650; }
.privacy-details summary::marker { color: var(--sage-soft); }
.privacy-details p { margin: .75rem 0 0; }
.acknowledgement { display: flex; align-items: flex-start; margin-top: 1rem; line-height: 1.5; letter-spacing: .01em; text-transform: none; }
.acknowledgement input { margin-top: .16rem; flex: 0 0 auto; }
.form-status, .form-noscript { margin: 1.1rem 0 0; }
.form-noscript { color: #f1c1ac; font-size: .72rem; }
.form-success {
  display: grid;
  min-height: clamp(15rem, 36vw, 22rem);
  place-items: center;
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  background: rgba(156, 176, 164, .16);
  box-shadow: inset 0 0 0 1px rgba(242, 236, 223, .2);
  text-align: center;
}
.form-success[hidden] { display: none; }
.form-success p { max-width: 670px; margin: 0; color: var(--cream-light); font-family: var(--serif); font-size: clamp(1.7rem, 4vw, 3rem); font-weight: 520; line-height: 1.18; }
.form-success:focus-visible { outline: 3px solid var(--cream-light); outline-offset: 5px; }
.cta:disabled { cursor: not-allowed; opacity: .58; transform: none; }
.cta:disabled .cta-icon { transform: none; }

.site-footer { display: grid; gap: 1.8rem; align-items: end; padding: 4rem var(--page-pad); background: var(--cream-light); }
.site-footer p, .back-to-top { margin: 0; color: var(--muted); font-size: .7rem; line-height: 1.55; text-decoration: none; }
.back-to-top { color: var(--forest); font-weight: 700; }

.reveal-ready [data-reveal] { opacity: 0; transform: translateY(22px); }
.reveal-ready [data-reveal].is-revealed { opacity: 1; transform: translateY(0); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-ready .contact-bezel[data-reveal] { transform: translate3d(0, 22px, 0); }
.reveal-ready .contact-bezel[data-reveal].is-revealed { transform: translate3d(0, 0, 0); }
.reveal-ready .experience-card[data-reveal].is-revealed { transition: opacity .9s var(--ease), transform .32s var(--ease); }
.reveal-ready .experience-card[data-reveal].is-revealed:hover { transform: translate3d(0, -6px, 0); }

@media (min-width: 700px) {
  :root { --page-pad: clamp(2rem, 5vw, 5rem); }
  .concept-copy { grid-template-columns: 1fr 1fr; gap: 6vw; align-items: start; }
  .concept-gallery { grid-template-columns: minmax(0, 1.4fr) minmax(180px, .6fr); align-items: end; }
  .concept-landscape { height: 360px; }
  .concept-detail { height: 270px; }
  .experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
  .activity-media { min-height: 280px; }
  .testimonial-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .cabin-card { padding: 3rem; }
  .cabin-stage { gap: 1.5rem; }
  .cabin-bezel { margin: 0; }
  .cabin-gallery { gap: 1rem; }
  .cabin-facts div { grid-template-columns: 1fr 1fr; }
  .fields { grid-template-columns: 1fr 1fr; gap: 1.7rem 2.5rem; }
  .field-wide { grid-column: 1 / -1; }
  .form-footer { grid-template-columns: 1.35fr .65fr; gap: 3rem; }
  .site-footer { grid-template-columns: 1.2fr 1fr auto; }
  .back-to-top { justify-self: end; }
}

@media (min-width: 700px) and (max-width: 979px) {
  .experience-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

@media (min-width: 980px) {
  .site-header { padding-top: 1.25rem; }
  .nav-shell { padding-left: 1rem; }
  .menu-toggle { display: none; }
  .nav-links, .js .nav-links {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    flex-direction: row;
    align-items: center;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .nav-links a { padding: .65rem .7rem; }
  .nav-links .nav-cta { margin: 0 0 0 .3rem; padding: .72rem .9rem; gap: 1.3rem; }
  .hero {
    grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr);
    grid-template-rows: 1fr auto;
    column-gap: clamp(2rem, 5vw, 6rem);
    min-height: 100vh;
    padding-top: 7.5rem;
  }
  .hero-copy { padding: 2rem 0; }
  .hero-media { width: min(100%, 520px); align-self: center; justify-self: end; }
  .section { padding-inline: var(--page-pad); }
  .cabin-heading { display: grid; grid-template-columns: .38fr 1.2fr .62fr; column-gap: 3rem; max-width: none; align-items: end; }
  .cabin-heading .eyebrow { align-self: start; }
  .cabin-heading h2, .cabin-heading > p:last-child { margin-bottom: 0; }
  .cabin-stage { grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr); gap: clamp(1.5rem, 4vw, 4rem); }
  .cabin-bezel { margin: 0; }
  .cabin-gallery { gap: 1rem; }
  .experience-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 1.25rem; }
  .experience-card { grid-column: span 2; }
  .activity-media { min-height: 300px; }
  .testimonial-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quote-card:last-child:nth-child(odd) { grid-column: auto; }
  .about { grid-template-columns: 1.05fr .95fr; gap: 8vw; }
  .about-copy { padding-right: 3vw; }
  .contact-heading { display: grid; grid-template-columns: .33fr 1.12fr .55fr; gap: 3rem; max-width: none; align-items: end; }
  .contact-heading .eyebrow { align-self: start; }
  .contact-heading h2, .contact-copy { margin-bottom: 0; }
  .form-card { padding: 3.5rem; }
}

@media (min-width: 1320px) {
  :root { --page-pad: max(5vw, calc((100vw - 1440px) / 2)); }
  .hero { grid-template-columns: minmax(380px, .76fr) minmax(0, 1.24fr); }
}

@media (max-width: 699px) {
  .checks {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .55rem;
  }
  .checks label {
    min-width: 0;
    min-height: 44px;
    padding: .5rem .4rem;
    font-size: .54rem;
    letter-spacing: .05em;
    line-height: 1.15;
  }
  .checks label span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .interest-label-short { display: inline; }
  .interest-label-full {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .reveal-ready [data-reveal] { transform: translateY(12px); }
  .reveal-ready [data-reveal].is-revealed { transition-duration: .45s; }
  .reveal-ready .contact-bezel[data-reveal] { transform: translate3d(0, 12px, 0); }
  .reveal-ready .experience-card[data-reveal].is-revealed { transition: opacity .45s var(--ease), transform .32s var(--ease); }
}

@media (max-width: 359px) {
  .checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (hover: none), (pointer: coarse) {
  .cta:hover,
  .experience-card:hover,
  .checks label:hover,
  .reveal-ready .experience-card[data-reveal].is-revealed:hover { transform: none; }
  .cta:hover .cta-icon { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .reveal-ready [data-reveal] { opacity: 1; transform: none; }
}
