/* OFF HOURS · zero-JavaScript site. Everything below is CSS doing the work.
   Scrubbed timelines (scroll/view) run linear by design: scroll position IS the clock.
   Shaping lives in the keyframes; every time-based transition uses a custom bezier. */

/* ---------- registered properties (animatable scene colors) ---------- */
@property --sky-hi  { syntax: "<color>"; inherits: true; initial-value: #d6cdb6; }
@property --sky-mid { syntax: "<color>"; inherits: true; initial-value: #e6dcc4; }
@property --sky-lo  { syntax: "<color>"; inherits: true; initial-value: #f0e5cd; }
@property --ridge-far-c  { syntax: "<color>"; inherits: true; initial-value: #767c62; }
@property --ridge-near-c { syntax: "<color>"; inherits: true; initial-value: #2b3c30; }
@property --valley-c { syntax: "<color>"; inherits: true; initial-value: #453724; }
@property --sun-core { syntax: "<color>"; inherits: true; initial-value: #f2d489; }
@property --sun-glow { syntax: "<color>"; inherits: true; initial-value: rgba(217, 164, 65, 0.55); }
@property --haze-o { syntax: "<number>"; inherits: true; initial-value: 0.24; }

/* ---------- tokens ---------- */
:root {
  --bone: #efe9df;
  --bone-2: #e6ddcb;
  --ink: #1d2721;
  --juniper: #2e4034;
  --jun-deep: #243229;
  --jun-night: #16211b;
  --night-2: #0f1813;
  --terra: #b4552d;
  --terra-deep: #8a3f22;
  --gold: #d9a441;
  --gold-pale: #ecd9a8;

  --e-out: cubic-bezier(0.19, 1, 0.22, 1);
  --e-soft: cubic-bezier(0.45, 0, 0.15, 1);
  --e-inout: cubic-bezier(0.65, 0, 0.35, 1);
  --e-lift: cubic-bezier(0.34, 1.45, 0.64, 1);
  --e-sun: cubic-bezier(0.37, 0, 0.63, 1);

  --wrap: min(1240px, 92vw);
  --sun-size: clamp(60px, 9vw, 132px);

  /* sun waypoints; overridden at narrow widths to stay clear of the masthead */
  --sun-rest: -16vw -34vh;
  --sun-dawn: -37vw 1vh;
  --sun-mid: -27vw -22vh;
  --sun-late: -12vw -38vh;
  --sun-noon: 2vw -46vh;

  interpolate-size: allow-keywords;
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: "Karla", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: clip;
}
h1, h2, h3 { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
dl, ul { margin: 0; padding: 0; }
li { list-style: none; }
a { color: inherit; }
.nw { white-space: nowrap; }
.wrap { width: var(--wrap); margin-inline: auto; }
::selection { background: var(--terra); color: var(--bone); }

/* paper grain: one fixed feTurbulence tile over everything, no request, no script */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='0.52'/%3E%3C/svg%3E");
  opacity: 0.06; mix-blend-mode: multiply;
}

:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; }
.prov :focus-visible, .inquire :focus-visible, .night :focus-visible, .water :focus-visible { outline-color: var(--gold); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}
.skip {
  position: absolute; left: 1rem; top: -4rem; z-index: 100;
  background: var(--ink); color: var(--bone);
  padding: 0.7rem 1.2rem; font: 700 0.8rem "Karla", sans-serif;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  transition: top 0.35s var(--e-out);
}
.skip:focus-visible { top: 1rem; }

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

/* ---------- header ---------- */
.site-head {
  position: absolute; inset: 0 0 auto 0; z-index: 10;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  width: var(--wrap); margin-inline: auto; padding-top: 1.6rem;
}
.brand {
  font: 700 0.85rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.34em;
}
.site-head nav { display: flex; gap: 1.7rem; flex-wrap: wrap; }
.site-head a {
  font: 700 0.68rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.18em;
  text-decoration: none; padding-bottom: 0.25rem; position: relative;
}
.site-head a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 100%;
  background: var(--terra); transform: scaleX(0); transform-origin: left;
  transition: transform 0.45s var(--e-out);
}
.site-head a:hover::after, .site-head a:focus-visible::after { transform: scaleX(1); }

/* ================================================================
   HERO · the sun crosses the sky as you scroll
   ================================================================ */
.hero { height: 260vh; view-timeline: --day block; }
.sky {
  position: sticky; top: 0; height: 100vh; overflow: clip;
  background: linear-gradient(180deg, var(--sky-hi) 0%, var(--sky-mid) 44%, var(--sky-lo) 68%, var(--sky-lo) 100%);
}

.haze {
  position: absolute; left: 0; right: 0; bottom: 26vh; height: 30vh; z-index: 1;
  background: linear-gradient(180deg, rgba(239, 233, 223, 0) 0%, rgba(239, 233, 223, var(--haze-o)) 78%, rgba(239, 233, 223, 0) 100%);
}

.sun {
  position: absolute; left: 50%; top: 64vh; z-index: 2;
  width: var(--sun-size); aspect-ratio: 1; border-radius: 50%;
  margin-left: calc(var(--sun-size) / -2); margin-top: calc(var(--sun-size) / -2);
  background: radial-gradient(circle, var(--sun-core) 0% 88%, rgba(217, 164, 65, 0) 100%);
  box-shadow: 0 0 60px 14px var(--sun-glow), 0 0 150px 54px color-mix(in srgb, var(--sun-glow) 28%, transparent);
  translate: var(--sun-rest); /* fallback pose: mid-morning */
}

.ridge { position: absolute; left: -1vw; right: -1vw; width: 102vw; }
.ridge path { transition: fill 0.6s var(--e-soft); }
.ridge .p-narrow { display: none; }
.ridge-far { bottom: 7vh; height: 40vh; z-index: 3; }
.ridge-far path { fill: var(--ridge-far-c); }
.ridge-near { bottom: 0; height: 47vh; z-index: 4; }
.ridge-near path { fill: var(--ridge-near-c); }

.valley {
  position: absolute; left: 0; right: 0; bottom: 0; height: 9vh; z-index: 5;
  background: linear-gradient(180deg, var(--valley-c) 0%, color-mix(in oklab, var(--valley-c) 82%, black) 100%);
}
.lodge-mark {
  position: absolute; left: 11vw; top: -10px;
  width: 46px; height: 16px; background: #17201a;
}
.lodge-mark::before {
  content: ""; position: absolute; right: 7px; top: -8px; width: 4px; height: 8px; background: #17201a;
}
.lodge-mark .win {
  position: absolute; left: 8px; bottom: 4px; width: 5px; height: 5px;
  background: var(--gold); box-shadow: 0 0 8px 2px rgba(217, 164, 65, 0.85);
}

.hero-type { position: absolute; top: 15vh; right: 5vw; z-index: 6; text-align: right; }
.hero-type h1 {
  font-size: clamp(4.6rem, 11.5vw, 10rem);
  line-height: 0.86; letter-spacing: 0.015em; text-transform: uppercase;
  color: var(--ink);
}
.deck {
  margin: 2rem 0 0 auto; max-width: 34ch;
  font-size: clamp(0.95rem, 1.15vw, 1.08rem); line-height: 1.7;
  color: rgba(29, 39, 33, 0.85);
}

.hero-meta {
  position: absolute; left: 5vw; bottom: 3.2vh; z-index: 6;
  display: flex; gap: 2.2rem;
  font: 700 0.68rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(239, 233, 223, 0.75);
}
.hero-cue {
  position: absolute; left: 50%; bottom: 3.2vh; translate: -50% 0; z-index: 6;
  display: flex; align-items: center; gap: 0.9rem;
  font: italic 500 0.82rem "Karla", sans-serif; color: rgba(239, 233, 223, 0.8);
}
.cue-line { width: 44px; height: 1px; background: rgba(239, 233, 223, 0.65); transform-origin: left; }

@media (prefers-reduced-motion: no-preference) {
  .cue-line { animation: cue-pulse 2.6s var(--e-inout) infinite alternate; }
  @keyframes cue-pulse { from { transform: scaleX(0.35); } to { transform: scaleX(1); } }
}

/* scroll-driven day: dawn to high noon across the hero's stick */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {

    .sky {
      animation-name: daylight;
      animation-duration: 1s;
      animation-fill-mode: both;
      animation-timing-function: linear;
      animation-timeline: --day;
      animation-range: contain 0% contain 90%;
    }
    @keyframes daylight {
      0% {
        --sky-hi: #af9f83; --sky-mid: #d8b083; --sky-lo: #e19a58;
        --ridge-far-c: #7d6d58; --ridge-near-c: #1f2d22; --valley-c: #2c2317;
        --haze-o: 0.55;
      }
      45% {
        --sky-hi: #cdc0a4; --sky-mid: #e2d3ae; --sky-lo: #eed9a4;
        --ridge-far-c: #77785e; --ridge-near-c: #27382c; --valley-c: #3a2f1e;
        --haze-o: 0.3;
      }
      100% {
        --sky-hi: #e7e1cd; --sky-mid: #ede5d2; --sky-lo: #f6efdd;
        --ridge-far-c: #6e765c; --ridge-near-c: #2e4034; --valley-c: #514029;
        --haze-o: 0.1;
      }
    }

    .sun {
      animation-name: sun-arc;
      animation-duration: 1s;
      animation-fill-mode: both;
      animation-timing-function: var(--e-sun);
      animation-timeline: --day;
      animation-range: contain 0% contain 90%;
    }
    @keyframes sun-arc {
      0%   { translate: var(--sun-dawn); scale: 1.22; --sun-core: #eeb35e; --sun-glow: rgba(200, 116, 51, 0.7); }
      35%  { translate: var(--sun-mid); scale: 1.12; }
      70%  { translate: var(--sun-late); scale: 1.04; }
      100% { translate: var(--sun-noon); scale: 1; --sun-core: #f8eec9; --sun-glow: rgba(238, 222, 168, 0.55); }
    }

    .lodge-mark .win {
      animation-name: lights-off;
      animation-duration: 1s;
      animation-fill-mode: both;
      animation-timing-function: var(--e-inout);
      animation-timeline: --day;
      animation-range: contain 0% contain 45%;
    }
    @keyframes lights-off { from { opacity: 1; } to { opacity: 0; } }

    .hero-cue {
      animation-name: cue-away;
      animation-duration: 1s;
      animation-fill-mode: both;
      animation-timing-function: var(--e-soft);
      animation-timeline: --day;
      animation-range: contain 0% contain 14%;
    }
    @keyframes cue-away { to { opacity: 0; } }
  }
}

/* ---------- section furniture ---------- */
section { position: relative; }
.premise, .days, .rooms-sec, .land { padding: clamp(5rem, 10vh, 8.5rem) 0; }

.sec-head { margin-bottom: clamp(2.6rem, 5vw, 4.2rem); }
.eyebrow {
  display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.4rem;
  font: 700 0.72rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.22em;
  color: var(--terra);
}
.eyebrow .ord { color: rgba(29, 39, 33, 0.45); letter-spacing: 0.1em; }
.eyebrow .ord::after {
  content: ""; display: inline-block; width: 44px; height: 1px;
  background: currentColor; vertical-align: middle; margin-left: 0.85rem;
}
.eyebrow-light { color: var(--gold); }
.eyebrow-light .ord { color: rgba(239, 233, 223, 0.5); }

h2 { font-size: clamp(2.4rem, 4.6vw, 4.1rem); line-height: 1.04; max-width: 20ch; }
h2 em { font-style: italic; color: var(--terra); }
h2.on-dark { color: var(--bone); }
h2.on-dark em { color: var(--gold); }

.lede {
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500;
  font-size: clamp(1.35rem, 1.9vw, 1.7rem); line-height: 1.45;
}

figcaption {
  margin-top: 0.9rem; font: 0.8rem/1.5 "Karla", sans-serif; color: rgba(29, 39, 33, 0.6);
  max-width: 56ch;
}
figcaption::before {
  content: ""; display: inline-block; width: 18px; height: 1px;
  background: var(--terra); vertical-align: 0.28em; margin-right: 0.7rem;
}

/* ================================================================
   01 · PREMISE
   ================================================================ */
.premise-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.5fr); gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.premise-body p + p { margin-top: 1.4rem; }
.premise-body p:not(.lede) { max-width: 58ch; color: rgba(29, 39, 33, 0.85); }
.premise-body .lede { margin-bottom: 2rem; }
.premise-body em { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.15em; }

.premise-stats { position: sticky; top: 14vh; }
.premise-stats div {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 0; border-bottom: 1px solid rgba(29, 39, 33, 0.18);
}
.premise-stats div:first-child { border-top: 1px solid rgba(29, 39, 33, 0.18); }
.premise-stats dt { font: 700 0.7rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(29, 39, 33, 0.55); }
.premise-stats dd { margin: 0; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: 2.3rem; line-height: 1; }

.premise-fig { margin-top: clamp(3.5rem, 7vw, 6.5rem); width: min(920px, 78%); margin-left: auto; }
.premise-fig img { width: 100%; aspect-ratio: 1920 / 1072; object-fit: cover; }

/* ================================================================
   02 · THE DAYS · details/summary that open like a folded map
   ================================================================ */
.days { background: linear-gradient(180deg, var(--bone) 0%, #ebe1c9 100%); }

.day { border-top: 1px solid rgba(29, 39, 33, 0.28); }
.day:last-of-type { border-bottom: 1px solid rgba(29, 39, 33, 0.28); }

.day summary {
  display: grid; grid-template-columns: 26px 108px 1fr auto; gap: 1.6rem; align-items: baseline;
  padding: 2rem 0; cursor: pointer; list-style: none;
}
.day summary::-webkit-details-marker { display: none; }
.fold { position: relative; width: 15px; height: 15px; align-self: center; }
.fold::before, .fold::after {
  content: ""; position: absolute; background: var(--terra);
  transition: transform 0.5s var(--e-lift), background 0.3s var(--e-soft);
}
.fold::before { left: 0; top: 7px; width: 15px; height: 1.5px; }
.fold::after { left: 7px; top: 0; width: 1.5px; height: 15px; }
.day[open] .fold::before { transform: rotate(135deg); }
.day[open] .fold::after { transform: rotate(135deg); }

.d-ord { font: 700 0.72rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.2em; color: var(--terra); }
.d-name {
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 1; color: var(--ink);
  transition: color 0.4s var(--e-soft);
}
.day summary:hover .d-name { color: var(--terra); }
.d-span { font: 700 0.7rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(29, 39, 33, 0.5); }

.day::details-content {
  block-size: 0; overflow: clip;
  transition: block-size 0.6s var(--e-out), content-visibility 0.6s allow-discrete;
}
.day[open]::details-content { block-size: auto; }

.day-body { padding: 0.4rem 0 3rem calc(26px + 108px + 3.2rem); }
@media (prefers-reduced-motion: no-preference) {
  .day[open] .day-body { animation: unfold 0.8s var(--e-out) both; transform-origin: 50% 0; }
  @keyframes unfold {
    from { transform: perspective(1100px) rotateX(-7deg); opacity: 0.35; }
  }
}

.sched li {
  display: grid; grid-template-columns: 92px 1fr; gap: 2rem;
  padding: 0.95rem 0; border-top: 1px dashed rgba(180, 85, 45, 0.35);
}
.sched li:first-child { border-top: 0; }
.sched .t { font: 700 0.74rem "Karla", sans-serif; letter-spacing: 0.08em; color: var(--terra); padding-top: 0.25rem; white-space: nowrap; }
.sched p { max-width: 56ch; color: rgba(29, 39, 33, 0.82); }
.sched strong { color: var(--ink); }

/* ================================================================
   03 · ROOMS · radios + :has(); pick a room, the panel changes
   ================================================================ */
.rooms-sec { background: linear-gradient(180deg, #ebe1c9 0%, var(--bone) 26%); }
.rooms fieldset { border: 0; margin: 0; padding: 0; }
.rooms-grid {
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) minmax(0, 0.8fr);
  gap: clamp(2rem, 4vw, 4.5rem); align-items: start;
}

.room-list label { display: block; padding: 1.4rem 2.4rem 1.4rem 0; border-top: 1px solid rgba(29, 39, 33, 0.22); cursor: pointer; position: relative; }
.room-list label:last-of-type { border-bottom: 1px solid rgba(29, 39, 33, 0.22); }
.r-no { font: 700 0.68rem "Karla", sans-serif; letter-spacing: 0.16em; color: rgba(29, 39, 33, 0.4); display: block; margin-bottom: 0.3rem; transition: color 0.45s var(--e-soft); }
.r-name {
  display: block; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600;
  font-size: clamp(1.9rem, 2.6vw, 2.5rem); line-height: 1.05; color: rgba(29, 39, 33, 0.44);
  transition: color 0.45s var(--e-soft), translate 0.45s var(--e-out);
}
.r-hint { display: block; margin-top: 0.35rem; font: italic 400 0.85rem "Karla", sans-serif; color: rgba(29, 39, 33, 0.45); }
.room-list label::after {
  content: "\2192"; position: absolute; right: 0.2rem; top: 50%; translate: -14px -50%;
  font-size: 1.5rem; color: var(--terra); opacity: 0;
  transition: opacity 0.4s var(--e-soft), translate 0.45s var(--e-out);
}
.room-list label:hover .r-name { color: rgba(29, 39, 33, 0.7); }

.rooms:has(#r-bunk:checked)  label[for="r-bunk"]  .r-name,
.rooms:has(#r-room:checked)  label[for="r-room"]  .r-name,
.rooms:has(#r-cabin:checked) label[for="r-cabin"] .r-name { color: var(--ink); translate: 6px 0; }
.rooms:has(#r-bunk:checked)  label[for="r-bunk"]  .r-no,
.rooms:has(#r-room:checked)  label[for="r-room"]  .r-no,
.rooms:has(#r-cabin:checked) label[for="r-cabin"] .r-no { color: var(--terra); }
.rooms:has(#r-bunk:checked)  label[for="r-bunk"]::after,
.rooms:has(#r-room:checked)  label[for="r-room"]::after,
.rooms:has(#r-cabin:checked) label[for="r-cabin"]::after { opacity: 1; translate: 0 -50%; }

.rooms:has(#r-bunk:focus-visible)  label[for="r-bunk"],
.rooms:has(#r-room:focus-visible)  label[for="r-room"],
.rooms:has(#r-cabin:focus-visible) label[for="r-cabin"] { outline: 2px solid var(--terra); outline-offset: 3px; }

.room-note {
  margin-top: 2rem; padding-top: 1.3rem; border-top: 1px dashed rgba(180, 85, 45, 0.35);
  font-size: 0.85rem; color: rgba(29, 39, 33, 0.6); max-width: 34ch;
}

.room-panels { display: grid; }
.panel {
  grid-area: 1 / 1; opacity: 0; visibility: hidden; translate: 0 18px;
  transition: opacity 0.5s var(--e-soft), translate 0.55s var(--e-out), visibility 0s linear 0.55s;
}
.rooms:has(#r-bunk:checked)  .panel-bunk,
.rooms:has(#r-room:checked)  .panel-room,
.rooms:has(#r-cabin:checked) .panel-cabin {
  opacity: 1; visibility: visible; translate: 0 0;
  transition-delay: 0.16s, 0.16s, 0s;
}

.rate {
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600;
  font-size: clamp(3.2rem, 4.6vw, 4.4rem); line-height: 1; color: var(--ink);
}
.rate .cur { font-size: 0.5em; color: var(--terra); vertical-align: 0.5em; margin-right: 0.06em; }
.rate .per { display: block; font: 700 0.68rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(29, 39, 33, 0.5); margin-top: 0.7rem; }
.r-copy { margin: 1.6rem 0 2rem; max-width: 46ch; color: rgba(29, 39, 33, 0.85); }

.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
.specs div { padding: 0.7rem 0; border-top: 1px solid rgba(29, 39, 33, 0.18); }
.specs dt { font: 700 0.66rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(29, 39, 33, 0.5); }
.specs dd { margin: 0.15rem 0 0; font-weight: 500; font-size: 0.95rem; }

.rooms-photo { display: grid; }
.rooms-photo img {
  grid-area: 1 / 1; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: 50% 45%;
  transition: object-position 1.1s var(--e-soft);
}
.rooms:has(#r-bunk:checked)  .rooms-photo img { object-position: 50% 12%; }
.rooms:has(#r-cabin:checked) .rooms-photo img { object-position: 50% 82%; }
.rooms-photo .cap { grid-area: 2 / 1; opacity: 0; translate: 0 6px; transition: opacity 0.5s var(--e-soft), translate 0.5s var(--e-out); }
.rooms:has(#r-bunk:checked)  .cap-bunk,
.rooms:has(#r-room:checked)  .cap-room,
.rooms:has(#r-cabin:checked) .cap-cabin { opacity: 1; translate: 0 0; }

/* ================================================================
   04 · THE LAND
   ================================================================ */
.land { background: linear-gradient(180deg, var(--bone) 0%, #e9d6a6 58%, #e2c184 100%); }
.land .eyebrow .ord { color: rgba(29, 39, 33, 0.45); }

.land-grid { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.land-fig img { width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; }
.land-body .lede { margin-bottom: 1.6rem; max-width: 42ch; }
.land-body p:not(.lede) { max-width: 52ch; color: rgba(29, 39, 33, 0.85); }
.climate { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2.4rem; margin-top: 2.6rem; max-width: 30rem; }
.climate div { padding: 0.75rem 0; border-top: 1px solid rgba(29, 39, 33, 0.22); }
.climate dt { font: 700 0.66rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(29, 39, 33, 0.55); }
.climate dd { margin: 0.2rem 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: 1.7rem; line-height: 1; }

.profile { margin-top: clamp(4rem, 8vw, 7rem); position: relative; padding-top: 1rem; view-timeline: --pf block; }
.profile svg { width: 100%; height: clamp(150px, 20vw, 230px); display: block; overflow: visible; }
.profile::before {
  content: ""; position: absolute; left: 0; right: 0; top: 1rem;
  height: clamp(150px, 20vw, 230px); pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(29, 39, 33, 0.14) 0 1px, transparent 1px 20%);
  opacity: 0; transition: opacity 0.55s var(--e-soft);
}
.profile:hover::before, .profile:focus-visible::before { opacity: 1; }
.pf-line { stroke: var(--ink); stroke-width: 2px; vector-effect: non-scaling-stroke; }
.pf-dot { fill: var(--terra); transform-box: fill-box; transform-origin: center; }
.pf-label {
  position: absolute; font: 700 0.68rem "Karla", sans-serif; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(29, 39, 33, 0.62); line-height: 1.5;
  transition: color 0.45s var(--e-soft);
}
.pf-label b { display: block; color: var(--ink); font-weight: 700; }
.pf-a { left: 1%; top: 0; }
.pf-b { left: 44.5%; top: 76%; }
.pf-c { right: 2%; top: 16%; }
.profile:hover .pf-label, .profile:focus-visible .pf-label { color: var(--terra-deep); }
.pf-cap { margin-top: 1.2rem; }

/* ================================================================
   05 · THE WATER
   ================================================================ */
.water { background: var(--jun-night); }
.water-fig { position: relative; }
.water-fig::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 16vh; z-index: 1;
  background: linear-gradient(180deg, #e2c184 0%, rgba(226, 193, 132, 0) 100%);
}
.water-fig img { width: 100%; height: min(94vh, 860px); object-fit: cover; }
.water::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(16, 24, 19, 0.78) 0%, rgba(16, 24, 19, 0.32) 44%, rgba(16, 24, 19, 0) 70%),
              linear-gradient(0deg, rgba(16, 24, 19, 0.85) 0%, rgba(16, 24, 19, 0) 38%);
}
.water-type { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; width: var(--wrap); margin-inline: auto; padding-bottom: clamp(3rem, 7vh, 5.5rem); }
.water-stats { max-width: none; }
.water-stats span {
  display: block; color: var(--bone);
  font-size: clamp(2rem, 4.4vw, 3.9rem); line-height: 1.12;
}
.water-stats span:first-child { color: var(--gold); }
.water-copy { margin-top: 1.8rem; max-width: 46ch; color: rgba(239, 233, 223, 0.85); }
.water-specs { display: flex; gap: clamp(1.6rem, 4vw, 3.4rem); margin-top: 2.4rem; flex-wrap: wrap; }
.water-specs div { border-top: 1px solid rgba(239, 233, 223, 0.3); padding-top: 0.8rem; min-width: 84px; }
.water-specs dt { font: 700 0.66rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(239, 233, 223, 0.6); }
.water-specs dd { margin: 0.2rem 0 0; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: 1.7rem; color: var(--bone); }

/* ================================================================
   06 · PROVISIONS
   ================================================================ */
.prov { background: linear-gradient(180deg, var(--jun-night) 0%, var(--jun-deep) 30%, #1d2a23 100%); padding: clamp(5rem, 10vh, 8.5rem) 0; }
.prov-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(3rem, 7vw, 7rem); }
.prov-leave { margin-top: clamp(3rem, 7vw, 6.5rem); }
.prov h3 {
  font-size: clamp(2rem, 3.2vw, 2.9rem); font-style: italic; font-weight: 600;
  color: var(--gold); margin-bottom: 1.4rem;
}
.prov-list li {
  position: relative; padding: 1.05rem 0 1.05rem 2.3rem;
  border-top: 1px solid rgba(239, 233, 223, 0.14);
  color: rgba(239, 233, 223, 0.88); max-width: 46ch;
}
.prov-list li::before {
  position: absolute; left: 0.1rem; top: 1.05rem;
  font: 700 0.95rem "Karla", sans-serif;
}
.bring li::before { content: "+"; color: var(--gold); }
.leave li::before { content: "\2715"; font-size: 0.8rem; top: 1.2rem; color: rgba(239, 233, 223, 0.45); }

/* ================================================================
   07 · INQUIRE · CSS-only validation states
   ================================================================ */
.inquire { background: var(--jun-night); padding: clamp(5rem, 10vh, 8.5rem) 0 clamp(6rem, 12vh, 10rem); }
.inq-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.72fr); gap: clamp(3rem, 6vw, 6rem); align-items: start; }

.inq-form {
  background: var(--bone); padding: clamp(1.8rem, 3.4vw, 3.2rem);
  display: grid; grid-template-columns: 1fr 1fr; column-gap: 2.4rem;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
}
.field { position: relative; grid-column: span 2; padding: 0 0 1.7rem; margin-top: 1.1rem; }
.field:first-child { margin-top: 0; }
.field-half { grid-column: span 1; }
.field label {
  display: block; margin-bottom: 0.45rem;
  font: 700 0.7rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(29, 39, 33, 0.68);
}
.field .opt { text-transform: none; letter-spacing: 0.02em; font-weight: 400; font-style: italic; color: rgba(29, 39, 33, 0.45); }

.field input, .field select {
  width: 100%; background: transparent; border: 0; border-radius: 0;
  border-bottom: 1.5px solid rgba(29, 39, 33, 0.32);
  padding: 0.5rem 0; margin: 0;
  font: 400 1rem "Karla", sans-serif; color: var(--ink);
  transition: border-color 0.4s var(--e-soft), box-shadow 0.4s var(--e-soft);
}
.field ::placeholder { color: rgba(29, 39, 33, 0.38); font-style: italic; }
.field select {
  appearance: none; cursor: pointer; padding-right: 1.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232e4034' stroke-width='1.6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.2rem center;
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--juniper); box-shadow: 0 1.5px 0 0 var(--juniper);
}
.field input:user-invalid, .field select:user-invalid {
  border-color: var(--terra); box-shadow: 0 1.5px 0 0 var(--terra);
}
.field:has(:user-invalid)::after {
  content: attr(data-error); position: absolute; left: 0; bottom: 0.35rem;
  font: italic 400 0.78rem "Karla", sans-serif; color: var(--terra-deep);
}
.field:has(:user-valid) label::after {
  content: "\2713"; margin-left: 0.5rem; color: var(--juniper); font-size: 0.85rem;
}

.submit-row { grid-column: span 2; display: flex; align-items: center; gap: 1.5rem; margin-top: 1rem; flex-wrap: wrap; }
.inq-form button {
  border: 0; cursor: pointer; background: var(--terra); color: var(--bone);
  padding: 1.05rem 2.1rem; font: 700 0.76rem "Karla", sans-serif;
  text-transform: uppercase; letter-spacing: 0.18em;
  transition: background 0.4s var(--e-soft), translate 0.4s var(--e-lift), box-shadow 0.4s var(--e-soft);
}
.inq-form button:hover { background: var(--terra-deep); translate: 0 -2px; box-shadow: 0 10px 24px rgba(138, 63, 34, 0.35); }
.inq-form button:focus-visible { outline: 2px solid var(--terra-deep); outline-offset: 3px; }
.bt-ready { display: none; }
.inq-form:valid .bt-idle { display: none; }
.inq-form:valid .bt-ready { display: inline; }
.mail-note { font: italic 400 0.8rem "Karla", sans-serif; color: rgba(29, 39, 33, 0.55); }

.inq-aside { color: rgba(239, 233, 223, 0.82); }
.inq-aside > p:first-child { max-width: 36ch; }
.inq-phone { margin-top: 2.6rem; font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; font-size: clamp(2rem, 2.8vw, 2.7rem); color: var(--bone); line-height: 1; }
.inq-phone-note { margin-top: 0.7rem; font-size: 0.85rem; color: rgba(239, 233, 223, 0.6); max-width: 34ch; }
.inq-addr {
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(239, 233, 223, 0.18);
  font: 700 0.74rem/2 "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(239, 233, 223, 0.7);
}

/* ================================================================
   NIGHT · footer
   ================================================================ */
.night { position: relative; background: linear-gradient(180deg, var(--jun-night) 0%, var(--night-2) 55%); overflow: clip; padding: clamp(7rem, 14vh, 11rem) 0 3rem; }
.stars { position: absolute; inset: 0; width: 100%; height: 100%; }
.stars circle { fill: var(--bone); }
.tw-a { opacity: 0.5; } .tw-b { opacity: 0.85; }
@media (prefers-reduced-motion: no-preference) {
  .tw-a { animation: twinkle 5.4s var(--e-inout) infinite alternate; }
  .tw-b { animation: twinkle 4.2s var(--e-inout) infinite alternate -2.4s; }
  @keyframes twinkle { from { opacity: 0.28; } to { opacity: 0.95; } }
}
.orion circle { fill: rgba(239, 233, 223, 0.85); }
.orion path { stroke: rgba(239, 233, 223, 0.22); stroke-width: 1; }

.night .wrap { position: relative; z-index: 1; }
.creed {
  font-family: "Cormorant Garamond", Georgia, serif; font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1.18; color: var(--bone);
  text-align: center; text-wrap: balance; margin: 0 auto 5rem;
}
.creed em { color: var(--gold); }

.colophon { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.colophon p { font-size: 0.84rem; line-height: 1.75; color: rgba(239, 233, 223, 0.62); max-width: 38ch; }
.colophon .code { font-weight: 700; color: rgba(239, 233, 223, 0.85); }
.guide-link { color: var(--gold); text-underline-offset: 4px; transition: text-underline-offset 0.35s var(--e-lift), color 0.35s var(--e-soft); }
.guide-link:hover, .guide-link:focus-visible { color: var(--bone); text-underline-offset: 7px; }

.night-meta {
  margin-top: 5.5rem; padding-top: 1.6rem; padding-right: 120px; border-top: 1px solid rgba(239, 233, 223, 0.12);
  display: flex; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  font: 700 0.66rem "Karla", sans-serif; text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(239, 233, 223, 0.45);
}

/* ---------- sundial · your place in the day, scroll(root) as the clock ---------- */
.sundial { display: none; }
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: scroll()) {
    .sundial {
      display: block; position: fixed; right: 18px; bottom: 16px; z-index: 85;
      width: 92px; height: 52px;
      background: color-mix(in srgb, var(--bone) 90%, transparent);
      border: 1px solid rgba(29, 39, 33, 0.22); border-radius: 12px;
      transition: background 0.4s var(--e-soft), border-color 0.4s var(--e-soft);
    }
    .sundial:hover { background: var(--bone); border-color: rgba(29, 39, 33, 0.4); }
    .dial-horizon { position: absolute; left: 10px; right: 10px; bottom: 14px; height: 1px; background: rgba(29, 39, 33, 0.4); }
    .dial-horizon::before, .dial-horizon::after {
      content: ""; position: absolute; bottom: 0; width: 1px; height: 4px; background: rgba(29, 39, 33, 0.4);
    }
    .dial-horizon::before { left: 0; }
    .dial-horizon::after { right: 0; }
    .dial-dot {
      position: absolute; left: 0; top: 0; width: 8px; height: 8px; border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 7px 1px rgba(217, 164, 65, 0.75), inset 0 0 0 1px rgba(180, 85, 45, 0.5);
      offset-path: path("M10 38 A 36 30 0 0 1 82 38");
      offset-rotate: 0deg;
      animation-name: dial-run; animation-duration: 1s; animation-fill-mode: both;
      animation-timing-function: linear; /* a progress meter must not lie */
      animation-timeline: scroll(root);
    }
    @keyframes dial-run { from { offset-distance: 0%; } to { offset-distance: 100%; } }
  }
}

/* ================================================================
   view() reveals · progressive, motion-gated
   ================================================================ */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .rv, .sec-head {
      animation-name: rise; animation-duration: 1s; animation-fill-mode: both;
      animation-timing-function: var(--e-out);
      animation-timeline: view(); animation-range: entry 5% entry 45%;
    }
    .premise-fig, .land-fig {
      animation-name: unveil; animation-duration: 1s; animation-fill-mode: both;
      animation-timing-function: var(--e-soft);
      animation-timeline: view(); animation-range: entry 5% entry 60%;
    }
    .premise-fig img, .land-fig img {
      animation-name: settle; animation-duration: 1s; animation-fill-mode: both;
      animation-timing-function: var(--e-soft);
      animation-timeline: view(); animation-range: entry 5% entry 60%;
    }
    .pf-line {
      stroke-dasharray: 1; /* pathLength=1 on the path */
      animation-name: pf-draw; animation-duration: 1s; animation-fill-mode: both;
      animation-timing-function: var(--e-soft);
      animation-timeline: --pf; animation-range: entry 25% cover 52%;
    }
    .pf-label, .pf-cap {
      animation-name: pf-fade; animation-duration: 1s; animation-fill-mode: both;
      animation-timing-function: var(--e-out);
      animation-timeline: --pf; animation-range: cover 30% cover 55%;
    }
    .pf-dot {
      animation-name: pf-pop; animation-duration: 1s; animation-fill-mode: both;
      animation-timing-function: var(--e-lift);
      animation-timeline: --pf; animation-range: cover 32% cover 50%;
    }
    @keyframes pf-draw { from { stroke-dashoffset: 1; } to { stroke-dashoffset: 0; } }
    @keyframes pf-fade { from { opacity: 0; } }
    @keyframes pf-pop { from { scale: 0; } }

    @keyframes rise { from { opacity: 0; translate: 0 36px; } }
    @keyframes unveil { from { clip-path: inset(0 0 62% 0); } }
    @keyframes settle { from { scale: 1.07; } }
  }
}

/* ================================================================
   reduced motion: composed stillness
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  .day[open] .day-body { animation: none; }
  .day::details-content { transition: none; }
  .panel, .rooms-photo .cap, .rooms-photo img { transition-duration: 0.01s; }
  .cue-line { animation: none; }
}

/* ================================================================
   responsive
   ================================================================ */
@media (max-width: 1080px) {
  .rooms-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); }
  .rooms-photo { grid-column: 1 / -1; }
  .rooms-photo img { aspect-ratio: 16 / 10; object-position: 50% 40%; }
  .colophon { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  :root {
    --sun-rest: -22vw -26vh;
    --sun-dawn: -38vw 11vh;
    --sun-mid: -33vw -22vh;
    --sun-late: -29vw -33vh;
    --sun-noon: -24vw -40vh;
  }

  .site-head { padding-top: 1.2rem; align-items: flex-start; }
  .brand { white-space: nowrap; }
  .site-head nav { gap: 0.45rem 0.95rem; justify-content: flex-end; }
  .site-head a { font-size: 0.6rem; letter-spacing: 0.14em; }

  .hero { height: 240vh; }
  .hero-type { top: 13vh; right: 6vw; }
  .hero-type h1 { font-size: clamp(3.2rem, 15.5vw, 4.6rem); }
  .deck { max-width: 26ch; font-size: 0.92rem; margin-top: 1.4rem; }
  .hero-meta { gap: 1.2rem; letter-spacing: 0.14em; font-size: 0.6rem; bottom: 2.6vh; }
  .hero-cue { display: none; }

  .ridge .p-wide { display: none; }
  .ridge .p-narrow { display: block; }
  .ridge-far { bottom: 6vh; height: 26vh; }
  .ridge-near { height: 32vh; }
  .valley { height: 8vh; }
  .lodge-mark { left: 14vw; width: 36px; height: 13px; top: -8px; }

  .premise-grid { grid-template-columns: 1fr; }
  .premise-stats { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }
  .premise-stats div:nth-child(2) { border-top: 1px solid rgba(29, 39, 33, 0.18); }
  .premise-fig { width: 100%; }

  .day summary { grid-template-columns: 22px 1fr auto; gap: 0.9rem 1.1rem; padding: 1.6rem 0; }
  .d-ord { grid-column: 2; }
  .d-name { grid-column: 2; grid-row: 2; }
  .d-span { grid-column: 3; grid-row: 1; font-size: 0.62rem; }
  .fold { grid-row: 1 / 3; }
  .day-body { padding-left: 0; }
  .sched li { grid-template-columns: 74px 1fr; gap: 1.1rem; }

  .rooms-grid { grid-template-columns: 1fr; }
  .room-panels { min-height: 0; }
  .rooms-photo img { aspect-ratio: 4 / 3; }

  .land-grid { grid-template-columns: 1fr; }
  .land-fig img { aspect-ratio: 16 / 11; }
  .pf-b { left: 40%; }

  .water-fig img { height: 88vh; }
  .water::after { background: linear-gradient(0deg, rgba(16, 24, 19, 0.9) 0%, rgba(16, 24, 19, 0.25) 55%, rgba(16, 24, 19, 0) 75%); }

  .prov-grid { grid-template-columns: 1fr; }
  .prov-leave { margin-top: 1rem; }

  .inq-grid { grid-template-columns: 1fr; }
  .field-half { grid-column: span 2; }

  .colophon { grid-template-columns: 1fr; }
  .creed { margin-bottom: 3.5rem; }
  .stars { height: 36%; }
}
