/* Pine & Birch Ranch & Retreat — image-led static demo */

:root {
  --ink: #17231d;
  --ink-soft: #314039;
  --pine: #214b38;
  --pine-bright: #5d806d;
  --lake: #7d9b98;
  --paper: #f3f2eb;
  --paper-deep: #e7e8df;
  --white: #fffef9;
  --ember: #d45635;
  --line: rgba(23, 35, 29, 0.18);
  --font-display: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 88px;
}

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

::selection { background: var(--ember); color: #fff; }

.skip-link {
  position: fixed;
  z-index: 200;
  left: 16px;
  top: 14px;
  padding: 10px 14px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus { transform: translateY(0); }

.shell { width: min(1380px, calc(100% - 96px)); margin-inline: auto; }
.section { padding: 144px 0; }

.eyebrow {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--pine);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.eyebrow--light { color: rgba(255, 255, 255, 0.78); }

h1, h2, h3, p { margin-top: 0; }
h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.98;
}
h3 { font-family: var(--font-display); font-weight: 400; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid #f1aa8e;
  outline-offset: 4px;
}
.button--light { background: var(--white); color: var(--ink); }
.button--light:hover { background: #fff; }
.button--dark { background: var(--ink); color: #fff; }
.button--dark:hover { background: var(--pine); }
.button--ember { background: var(--ember); color: #fff; }
.button--ember:hover { background: #b94327; }
.button--wide { width: 100%; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.text-link span { transition: transform 0.25s var(--ease); }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: #fff; border-bottom-color: rgba(255,255,255,0.55); }

/* Header */
.site-header {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, height 0.35s ease;
}
.site-header.is-scrolled {
  height: 72px;
  color: var(--ink);
  background: rgba(243, 242, 235, 0.94);
  border-color: var(--line);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 30px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.brand-copy > span {
  margin-top: 5px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.desktop-nav a:not(.nav-book) { opacity: 0.78; }
.desktop-nav a:not(.nav-book):hover { opacity: 1; }
.nav-book { padding: 10px 15px; border: 1px solid rgba(255,255,255,0.5); }
.site-header.is-scrolled .nav-book { border-color: var(--line); }
.menu-toggle { display: none; }

.mobile-nav {
  position: fixed;
  z-index: 100;
  inset: 0;
  padding: 92px 28px 32px;
  color: #fff;
  background: var(--ink);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s var(--ease);
}
.mobile-nav.is-open { opacity: 1; transform: translateY(0); }
.menu-close {
  position: absolute;
  top: 23px;
  right: 25px;
  width: 40px;
  height: 40px;
  padding: 7px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-close svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.5; }
.mobile-nav__links { display: flex; flex-direction: column; }
.mobile-nav__links a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.17);
  font-family: var(--font-display);
  font-size: 2.7rem;
  line-height: 1.05;
}
.mobile-nav > p { position: absolute; left: 28px; bottom: 30px; margin: 0; color: rgba(255,255,255,0.55); font-size: 0.78rem; }

/* Hero */
.hero {
  --hero-tail: 0px;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #1b2a23;
}
.hero-media, .hero-scrim { position: absolute; inset: 0; }
.hero-media { z-index: -2; overflow: hidden; }
.hero-media img, .hero-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 55%;
  filter: brightness(1.1) saturate(1.1) contrast(1.02);
  transform: scale(1.07);
  animation: heroZoom 15s var(--ease) both;
}
.hero-scrim {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8,16,12,0.48) 0%, rgba(8,16,12,0.22) 42%, rgba(8,16,12,0.04) 72%),
    linear-gradient(180deg, rgba(8,16,12,0.2) 0%, transparent 32%, rgba(8,16,12,0.48) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 170px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(8,16,12,0.64) 100%);
}
@keyframes heroZoom { from { transform: scale(1.13); } to { transform: scale(1.07); } }

.hero-motion {
  position: absolute;
  z-index: 3;
  right: 48px;
  top: calc(var(--header-h) + 18px);
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 50%;
  background: rgba(8,16,12,0.22);
  color: #fff;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.25s ease, border-color 0.25s ease;
}
.hero-motion:hover { background: rgba(8,16,12,0.42); border-color: rgba(255,255,255,0.6); }
.hero-motion svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.hero-motion__play { display: none; fill: currentColor !important; stroke: none !important; }
.hero-motion[aria-pressed="true"] .hero-motion__pause { display: none; }
.hero-motion[aria-pressed="true"] .hero-motion__play { display: block; }

.hero-inner {
  position: absolute;
  z-index: 2;
  left: 48px;
  bottom: 168px;
  width: min(880px, calc(100% - 96px));
}
.hero-kicker {
  margin: 0 0 21px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 6.25rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 0.82;
  white-space: nowrap;
}
.hero h1 em { font-size: 0.46em; font-weight: 400; }
.hero-subtitle {
  margin: 26px 0 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-style: italic;
}
.hero-lead { max-width: 60ch; margin: 15px 0 0; color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.6; }
.hero-actions { margin-top: 30px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }

.hero-facts {
  position: absolute;
  z-index: 2;
  left: 48px;
  right: 48px;
  bottom: calc(38px + var(--hero-tail));
  margin: 0;
  padding-top: 21px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,0.22);
}
.hero-facts div { display: flex; align-items: baseline; gap: 8px; }
.hero-facts dt { font-family: var(--font-display); font-size: 1.75rem; line-height: 1; }
.hero-facts dd { margin: 0; color: rgba(255,255,255,0.65); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; }
.scroll-cue {
  position: absolute;
  z-index: 2;
  right: 24px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  color: rgba(255,255,255,0.58);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-cue i { position: relative; display: block; width: 54px; height: 1px; overflow: hidden; background: rgba(255,255,255,0.25); }
.scroll-cue i::after { content: ""; position: absolute; inset: 0; background: #fff; animation: cue 2.3s ease-in-out infinite; }
@keyframes cue { from { transform: translateX(-100%); } to { transform: translateX(110%); } }

/* Shared NewLife / Bacata hero cover reveal */
.hero-spacer { display: none; }
.site-body { position: relative; z-index: 1; background: var(--paper); }

@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    body { --hero-cover-lift: 100svh; --hero-cover-drag: 112svh; }
    .hero {
      --hero-tail: 46px;
      position: fixed;
      z-index: 20;
      inset: 0 0 auto;
      width: 100%;
      height: calc(100svh + var(--hero-tail));
      min-height: 0;
      border-radius: 0 0 42px 42px;
      box-shadow: 0 34px 58px -18px rgba(4, 12, 8, 0.68);
      will-change: transform;
      animation: pineHeroCoverLift linear both;
      animation-range: 0 var(--hero-cover-lift);
      animation-timeline: scroll(root);
    }
    .hero-spacer { display: block; height: var(--hero-cover-drag); }
    .site-body {
      z-index: 10;
      will-change: transform;
      animation: pineSiteBodyPin linear both;
      animation-range: 0 var(--hero-cover-drag);
      animation-timeline: scroll(root);
    }
    .arrival-grid {
      transform-origin: top center;
      will-change: transform, opacity, filter;
      animation: pineArrivalSettle linear both;
      animation-range: 50svh var(--hero-cover-drag);
      animation-timeline: scroll(root);
    }
  }
}
@keyframes pineHeroCoverLift { from { transform: translate3d(0,0,0); } to { transform: translate3d(0,-100%,0); } }
@keyframes pineSiteBodyPin { from { transform: translate3d(0,-112svh,0); } to { transform: translate3d(0,0,0); } }
@keyframes pineArrivalSettle {
  from { opacity: 0.2; filter: blur(3px); transform: translate3d(0,56px,0) scale(0.975); }
  45% { opacity: 0.72; filter: blur(1.4px); transform: translate3d(0,20px,0) scale(0.99); }
  78% { opacity: 0.94; filter: blur(0.35px); transform: translate3d(0,5px,0) scale(0.997); }
  to { opacity: 1; filter: blur(0); transform: translate3d(0,0,0) scale(1); }
}

/* Hero entrance */
@keyframes riseIn { from { opacity: 0; filter: blur(6px); transform: translateY(26px); } to { opacity: 1; filter: blur(0); transform: none; } }
.js .hero-inner > *, .js .hero-facts { animation: riseIn 0.95s var(--ease) backwards; }
.js .hero-inner > :nth-child(1) { animation-delay: 0.12s; }
.js .hero-inner > :nth-child(2) { animation-delay: 0.23s; }
.js .hero-inner > :nth-child(3) { animation-delay: 0.34s; }
.js .hero-inner > :nth-child(4) { animation-delay: 0.45s; }
.js .hero-inner > :nth-child(5) { animation-delay: 0.56s; }
.js .hero-facts { animation-delay: 0.67s; }

/* Arrival */
.arrival { padding-top: 168px; }
.arrival-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  column-gap: 84px;
  align-items: stretch;
}
.arrival-text { display: flex; flex-direction: column; min-width: 0; }
.arrival-copy h2 { max-width: 13ch; }
.arrival-story { max-width: 46ch; margin-top: 46px; }
.arrival-story .lede { font-family: var(--font-display); font-size: 1.46rem; line-height: 1.4; }
.arrival-story > p:not(.lede) { color: #637069; }
.arrival-story .text-link { margin-top: 22px; }
.arrival-residents { margin-top: auto; padding-top: 48px; }
.arrival-residents__label { margin: 0 0 16px; color: #6f7974; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.arrival-residents__list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; list-style: none; }
.arrival-residents__list li { min-width: 0; }
.arrival-residents__list img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 4px; }
.arrival-residents__list span { display: block; margin-top: 9px; color: #637069; font-size: 0.72rem; letter-spacing: 0.04em; }
.arrival-figure { margin: 0; }
.arrival-figure img { width: 100%; height: 720px; object-fit: cover; object-position: center; }
.arrival-figure figcaption { margin-top: 12px; display: flex; justify-content: space-between; color: #6f7974; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; }
.arrival-note { grid-column: 1 / -1; margin: 64px 0 0; padding-top: 18px; border-top: 1px solid var(--line); color: #6c7771; font-size: 0.73rem; letter-spacing: 0.14em; text-align: center; text-transform: uppercase; }

/* Lake */
.lake-section { position: relative; min-height: 100svh; overflow: hidden; isolation: isolate; color: #fff; background: #23362f; }
.lake-figure { position: absolute; z-index: -2; inset: -7%; margin: 0; overflow: hidden; }
.lake-figure img { width: 100%; height: 114%; object-fit: cover; object-position: center 44%; filter: brightness(1.16) saturate(1.1); transform: scale(1.04); will-change: transform; }
.lake-section::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(10,21,15,0.46) 0%, rgba(10,21,15,0.16) 48%, transparent 72%), linear-gradient(0deg, rgba(10,21,15,0.62) 0%, rgba(10,21,15,0.2) 40%, transparent 66%); }
.lake-copy { position: absolute; left: 0; right: 0; bottom: 88px; }
.lake-copy h2 { max-width: 13ch; font-size: 5rem; }
.lake-copy p:last-child { max-width: 49ch; margin: 28px 0 0; color: rgba(255,255,255,0.76); }

/* Cottage */
.cottage { background: var(--white); }
.section-heading { display: grid; grid-template-columns: 1.1fr 0.6fr; gap: 80px; align-items: end; margin-bottom: 82px; }
.section-heading > p { margin: 0 0 4px; color: #65716b; }
.cottage-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 165px 310px 245px;
  gap: 18px;
}
.cottage-gallery figure { margin: 0; overflow: hidden; background: var(--paper-deep); }
.cottage-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.cottage-gallery figure:hover img { transform: scale(1.025); }
.gallery-main { grid-column: 1 / 7; grid-row: 1 / 4; }
.gallery-main img { object-position: center 56%; }
.gallery-kitchen { grid-column: 7 / 10; grid-row: 1 / 3; }
.cottage-details { grid-column: 10 / 13; grid-row: 1 / 4; padding: 2px 0 0 22px; }
.detail-price { margin: 0 0 34px; color: #6b756f; font-size: 0.8rem; text-transform: uppercase; }
.detail-price strong { margin: 0 3px 0 6px; color: var(--ink); font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.cottage-details dl { margin: 0 0 34px; }
.cottage-details dl div { padding: 13px 0; display: grid; grid-template-columns: 88px 1fr; gap: 10px; border-top: 1px solid var(--line); }
.cottage-details dl div:last-child { border-bottom: 1px solid var(--line); }
.cottage-details dt { color: #747e79; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.cottage-details dd { margin: 0; font-size: 0.85rem; line-height: 1.45; }

/* Experience */
.experience { color: #fff; background: var(--ink); }
.experience-grid { display: grid; grid-template-columns: 0.72fr 1.03fr 0.9fr; gap: 56px; align-items: start; }
.experience-intro { position: sticky; top: 116px; }
.experience-intro h2 { font-size: 3.7rem; }
.experience-intro > p:last-child { max-width: 41ch; margin: 28px 0 0; color: rgba(255,255,255,0.58); }
.experience-list { margin: 0; padding: 0; list-style: none; }
.experience-list li { padding: 28px 0; display: grid; grid-template-columns: 48px 1fr; gap: 20px; border-top: 1px solid rgba(255,255,255,0.17); }
.experience-list li:last-child { border-bottom: 1px solid rgba(255,255,255,0.17); }
.experience-list > li > span { color: rgba(255,255,255,0.38); font-family: var(--font-display); font-size: 1rem; }
.experience-list h3 { margin: 0 0 7px; font-size: 1.75rem; }
.experience-list p { margin: 0; color: rgba(255,255,255,0.56); font-size: 0.88rem; }
.experience-photo { margin: 54px 0 0; }
.experience-photo img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; object-position: center; }

/* Festival */
.festival {
  margin-top: 104px;
  padding-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 68px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.festival-poster { margin: 0; overflow: hidden; background: #08100c; }
.festival-poster img {
  width: 100%;
  height: auto;
  transition: transform 0.8s var(--ease);
}
.festival:hover .festival-poster img { transform: scale(1.025); }
.festival-copy h3 {
  margin: 0 0 24px;
  font-size: 3rem;
  line-height: 1.02;
}
.festival-copy > p { max-width: 600px; margin: 0 0 34px; color: rgba(255, 255, 255, 0.58); font-size: 0.95rem; }
.festival-facts { max-width: 600px; margin: 0 0 36px; }
.festival-facts div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.festival-facts div:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.festival-facts dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.festival-facts dd { margin: 0; color: rgba(255, 255, 255, 0.86); font-size: 0.88rem; line-height: 1.45; }

/* Ranch store */
.store { background: var(--paper-deep); }
.store-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 88px;
  align-items: center;
}
.store-figure { margin: 0; overflow: hidden; background: var(--paper); }
.store-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 58%;
}
.store-copy h2 { font-size: 3.7rem; }
.store-copy .lede { max-width: 620px; margin: 30px 0 0; font-size: 1.12rem; line-height: 1.5; }
.store-copy .lede em { font-style: italic; }
.store-copy > p:not(.lede):not(.eyebrow) { max-width: 620px; margin: 18px 0 0; color: #5f6d65; font-size: 0.95rem; }
.store-list { max-width: 620px; margin: 40px 0 0; padding: 0; list-style: none; }
.store-list li {
  padding: 15px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid var(--line);
}
.store-list li:last-child { border-bottom: 1px solid var(--line); }
.store-list strong { font-family: var(--font-display); font-size: 1.22rem; font-weight: 400; }
.store-list span { color: #6b756f; font-size: 0.8rem; }

/* Retreats & gatherings */
.retreats { background: var(--paper); }
.retreats-heading {
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.55fr);
  gap: 90px;
  align-items: end;
}
.retreats-heading h2 { font-size: 4.7rem; }
.retreats-intro > p { max-width: 50ch; margin: 0 0 22px; color: #5f6d65; }
.retreats-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(200px, 17vw, 270px));
  gap: 12px;
}
.retreat-shot { position: relative; min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: var(--paper-deep); }
.retreat-shot::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(180deg, transparent, rgba(8,16,12,0.6)); pointer-events: none; }
.retreat-shot img { width: 100%; height: 100%; object-fit: cover; }
.retreat-shot figcaption { position: absolute; z-index: 1; left: 20px; right: 20px; bottom: 17px; color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.retreat-shot--studio { grid-column: 1 / span 6; grid-row: 1 / span 2; }
.retreat-shot--meditation { grid-column: 7 / span 3; grid-row: 1 / span 2; }
.retreat-shot--meditation img { object-position: center 60%; }
.retreat-shot--table { grid-column: 10 / span 3; grid-row: 1; }
.retreat-shot--fire { grid-column: 10 / span 3; grid-row: 2; }
.retreat-shot--fire img { object-position: center 45%; }
.retreats-list { margin: 56px 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; list-style: none; }
.retreats-list li { padding-top: 20px; border-top: 1px solid var(--line); }
.retreats-list strong { display: block; margin-bottom: 8px; font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.retreats-list span { display: block; color: #66716b; font-size: 0.86rem; }

/* Property journal */
.journal { background: var(--white); }
.journal-heading {
  margin-bottom: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.55fr);
  gap: 90px;
  align-items: end;
}
.journal-heading h2 { font-size: 4.7rem; }
.journal-heading > p { max-width: 51ch; margin: 0 0 8px; color: #5f6d65; }
.journal-grid {
  --journal-row: clamp(142px, 10.7vw, 188px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, var(--journal-row));
  gap: 12px;
}
.journal-shot {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}
.journal-shot:nth-child(1) { grid-column: 1 / span 6; grid-row: 1 / span 2; }
.journal-shot:nth-child(2) { grid-column: 7 / span 3; grid-row: 1 / span 2; }
.journal-shot:nth-child(3) { grid-column: 10 / span 3; grid-row: 1 / span 2; }
.journal-shot:nth-child(4) { grid-column: 1 / span 3; grid-row: 3 / span 2; }
.journal-shot:nth-child(5) { grid-column: 4 / span 3; grid-row: 3 / span 2; }
.journal-shot:nth-child(6) { grid-column: 7 / span 6; grid-row: 3 / span 2; }
.journal-shot:nth-child(7) { grid-column: 1 / span 4; grid-row: 5 / span 2; }
.journal-shot:nth-child(8) { grid-column: 5 / span 4; grid-row: 5 / span 2; }
.journal-shot:nth-child(9) { grid-column: 9 / span 4; grid-row: 5 / span 2; }
.journal-shot:nth-child(10) { grid-column: 1 / span 3; grid-row: 7 / span 2; }
.journal-shot:nth-child(11) { grid-column: 4 / span 3; grid-row: 7 / span 2; }
.journal-shot:nth-child(12) { grid-column: 7 / span 6; grid-row: 7 / span 2; }
.journal-shot:nth-child(13) { grid-column: 1 / span 4; grid-row: 9 / span 2; }
.journal-shot:nth-child(14) { grid-column: 5 / span 4; grid-row: 9 / span 2; }
.journal-shot:nth-child(15) { grid-column: 9 / span 4; grid-row: 9 / span 2; }
.journal-shot:nth-child(16) { grid-column: 1 / span 6; grid-row: 11 / span 2; }
.journal-shot:nth-child(17) { grid-column: 7 / span 6; grid-row: 11 / span 2; }
.journal-shot button {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: zoom-in;
}
.journal-shot button::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(180deg, transparent, rgba(8, 16, 12, 0.62));
  pointer-events: none;
}
.journal-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s ease;
}
.journal-shot:nth-child(1) img { object-position: center 58%; }
.journal-shot:nth-child(2) img { object-position: center 55%; }
.journal-shot:nth-child(3) img { object-position: center 40%; }
.journal-shot:nth-child(4) img { object-position: center 22%; }
.journal-shot:nth-child(6) img { object-position: center 42%; }
.journal-shot:nth-child(9) img { object-position: center 38%; }
.journal-shot button:hover img { filter: saturate(1.06); transform: scale(1.035); }
.journal-shot button span {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 17px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
}

/* Property films */
.field-films { color: #fff; background: #13251c; }
.film-heading {
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr) minmax(300px, 0.65fr);
  gap: 54px;
  align-items: end;
}
.film-heading .eyebrow { align-self: start; }
.film-heading h2 { font-size: 4.4rem; }
.film-heading > p:last-child { max-width: 48ch; margin: 0 0 7px; color: rgba(255,255,255,0.58); }
.film-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 44px 18px;
  align-items: start;
}
.film { min-width: 0; grid-column: span 6; }
.film--portrait { grid-column: span 3; }
.film--feature { grid-column: 1 / -1; }
.film-media { aspect-ratio: 16 / 9; overflow: hidden; background: #08100c; }
.film--portrait .film-media { aspect-ratio: 9 / 16; }
.film video { width: 100%; height: 100%; display: block; object-fit: cover; background: #08100c; }
.film--portrait video { object-fit: contain; }
.film-copy {
  min-height: 76px;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.film-copy span {
  flex: 0 0 auto;
  color: rgba(255,255,255,0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.film-copy p { max-width: 37ch; margin: 0; color: rgba(255,255,255,0.52); font-size: 0.78rem; }
.film--feature .film-copy p { max-width: 62ch; }

/* Booking */
.booking { background: var(--paper-deep); }
.booking-head { padding-bottom: 50px; display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr); gap: 90px; align-items: end; border-bottom: 1px solid var(--line); }
.booking-head h2 { font-size: 4.5rem; }
.booking-head > div > p:last-child { max-width: 59ch; margin: 26px 0 0; color: #59685f; }
.booking-assurances { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; }
.booking-assurances li { min-height: 67px; padding-left: 24px; display: flex; flex-direction: column; justify-content: flex-end; border-left: 1px solid var(--line); }
.booking-assurances strong { font-family: var(--font-display); font-size: 1.55rem; font-weight: 400; line-height: 1.1; }
.booking-assurances span { margin-top: 6px; color: #68756e; font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; }

.booking-workspace { margin-top: 52px; display: grid; grid-template-columns: minmax(0, 1fr) 360px; align-items: stretch; border: 1px solid var(--line); background: var(--white); }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Calendar column */
.stay-calendar { min-width: 0; padding: 36px 40px 32px; display: flex; flex-direction: column; }
.calendar-selection { padding: 0 0 22px; display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto; gap: 20px; align-items: end; border-bottom: 1px solid var(--line); }
.calendar-field { min-width: 0; padding: 12px 16px 12px; border: 1px solid var(--line); border-radius: 4px; background: var(--paper); transition: border-color 0.25s ease, background 0.25s ease; }
.calendar-field.is-active { border-color: var(--pine); background: #fff; }
.calendar-field > span, .summary-kicker, .guest-picker legend { display: block; margin-bottom: 5px; color: #66736c; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; line-height: 1.2; text-transform: uppercase; }
.calendar-field strong { display: block; overflow: hidden; font-family: var(--font-display); font-size: 1.28rem; font-weight: 400; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.calendar-field.is-empty strong { color: #8b948f; }
.calendar-nights { padding-bottom: 14px; color: #6f7a74; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-align: center; text-transform: uppercase; white-space: nowrap; }
.clear-dates { align-self: center; padding: 6px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: #68756e; font-size: 0.68rem; cursor: pointer; }
.clear-dates:hover { color: var(--ember); }

.calendar-body { position: relative; margin-top: 26px; }
.calendar-toolbar { position: absolute; z-index: 2; inset: -6px 0 auto; display: flex; justify-content: space-between; pointer-events: none; }
.calendar-nav { width: 36px; height: 36px; padding: 0; border: 1px solid transparent; border-radius: 50%; background: transparent; font-size: 1.05rem; cursor: pointer; pointer-events: auto; transition: border-color 0.2s ease, color 0.2s ease; }
.calendar-nav:hover:not(:disabled) { color: var(--ember); border-color: currentColor; }
.calendar-nav:disabled { opacity: 0.22; cursor: not-allowed; }
.calendar-months { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
.calendar-month h4 { height: 24px; margin: 0 0 14px; font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; line-height: 24px; text-align: center; }
.calendar-weekdays, .calendar-days { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.calendar-days { row-gap: 3px; }
.calendar-weekdays span { padding: 0 0 8px; color: #87908b; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-align: center; text-transform: uppercase; }
.calendar-day { --range-bg: rgba(33, 75, 56, 0.1); position: relative; isolation: isolate; width: 100%; height: auto; aspect-ratio: 1 / 1; padding: 0; border: 0; background: transparent; font-size: 0.8rem; font-variant-numeric: tabular-nums; cursor: pointer; }
.calendar-day > span { position: relative; z-index: 2; }
.calendar-day::after { content: ""; position: absolute; z-index: 1; inset: 2px; border-radius: 50%; background: transparent; transition: background 0.18s ease; }
.calendar-day:hover:not(:disabled) { color: var(--ember); }
.calendar-day:hover:not(:disabled)::after { background: rgba(212, 86, 53, 0.1); }
.calendar-day:disabled { color: #c3c9c5; cursor: not-allowed; }
.calendar-day[aria-current="date"]:not(.is-selected) > span::after { content: ""; position: absolute; left: 50%; bottom: -6px; width: 3px; height: 3px; border-radius: 50%; background: var(--ember); transform: translateX(-50%); }
.calendar-day.is-in-range { color: var(--pine); }
.calendar-day.is-in-range::before, .calendar-day.is-range-start::before, .calendar-day.is-range-end::before { content: ""; position: absolute; z-index: 0; top: 2px; bottom: 2px; background: var(--range-bg); }
.calendar-day.is-in-range::before { left: 0; right: 0; }
.calendar-day.is-range-start::before { left: 50%; right: 0; }
.calendar-day.is-range-end::before { left: 0; right: 50%; }
.calendar-day.is-selected, .calendar-day.is-selected:hover { color: #fff; }
.calendar-day.is-selected::after, .calendar-day.is-selected:hover::after { background: var(--pine); }
.calendar-day:focus-visible { z-index: 3; outline-color: var(--ember); outline-offset: -2px; border-radius: 50%; }
.calendar-hint { min-height: 22px; margin: 18px 0 0; color: #6f7a74; font-size: 0.71rem; }
.stay-notes { margin: auto 0 0; padding-top: 26px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; border-top: 1px solid var(--line); }
.stay-notes > div { padding-top: 32px; }
.stay-notes dt { margin: 0 0 5px; color: #66736c; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.stay-notes dd { margin: 0; color: #4f5c55; font-size: 0.78rem; line-height: 1.5; }

/* Summary column */
.booking-summary { position: static; padding: 36px 36px 30px; display: flex; flex-direction: column; border-left: 1px solid var(--line); background: var(--paper); }
.booking-summary__head { padding-bottom: 22px; display: flex; justify-content: space-between; gap: 22px; border-bottom: 1px solid var(--line); }
.booking-summary__head h3 { margin: 0; font-size: 1.5rem; line-height: 1.1; }
.booking-summary__head > div > p:last-child { margin: 6px 0 0; color: #738079; font-size: 0.72rem; }
.summary-kicker { margin: 0 0 10px; }
.summary-rate { margin: 0; text-align: right; white-space: nowrap; }
.summary-rate strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; line-height: 1.1; }
.summary-rate span { color: #748079; font-size: 0.69rem; }
.guest-picker { margin: 20px 0 0; padding: 0; border: 0; }
.guest-picker legend { width: 100%; margin-bottom: 6px; }
.guest-stepper { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.guest-stepper > div:first-child strong, .guest-stepper > div:first-child span { display: block; }
.guest-stepper > div:first-child strong { font-size: 0.82rem; }
.guest-stepper > div:first-child span { margin-top: 2px; color: #7c8681; font-size: 0.65rem; }
.stepper-controls { display: grid; grid-template-columns: 32px 30px 32px; align-items: center; text-align: center; }
.stepper-button { width: 32px; height: 32px; padding: 0; border: 1px solid #bfc6c1; border-radius: 50%; background: #fff; font-size: 1rem; line-height: 1; cursor: pointer; }
.stepper-button:hover:not(:disabled) { color: #fff; border-color: var(--pine); background: var(--pine); }
.stepper-button:disabled { opacity: 0.28; cursor: not-allowed; }
.stepper-controls output { font-size: 0.82rem; font-variant-numeric: tabular-nums; }
.guest-cap-note { margin: 10px 0 0; color: #9c452f; font-size: 0.67rem; }
.booking-estimate { margin-top: 22px; padding: 18px 0 0; }
.estimate-empty { margin: 0; padding: 14px 16px; border: 1px dashed var(--line); border-radius: 4px; color: #6f7a74; font-size: 0.74rem; text-align: center; }
.estimate-lines p { margin: 0 0 10px; display: flex; justify-content: space-between; gap: 20px; color: #65716a; font-size: 0.74rem; }
.estimate-lines p strong { color: var(--ink); font-weight: 500; white-space: nowrap; font-variant-numeric: tabular-nums; }
.estimate-lines .estimate-total { margin: 16px 0 0; padding-top: 16px; align-items: baseline; border-top: 1px solid var(--line); color: var(--ink); font-size: 0.82rem; }
.estimate-total strong { font-family: var(--font-display); font-size: 1.75rem; font-weight: 400 !important; }
.booking-summary__action { margin-top: auto; padding-top: 26px; }
.booking-summary .button { display: flex; align-items: center; justify-content: center; text-align: center; }
.booking-summary .button[aria-disabled="true"] { color: rgba(255,255,255,0.78); background: #9ba29e; cursor: not-allowed; pointer-events: none; transform: none; }
.hipcamp-note { margin: 13px auto 0; max-width: 40ch; color: #7a837e; font-size: 0.63rem; line-height: 1.55; text-align: center; }

/* Useful details */
.know { background: var(--white); }
.know-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 100px; }
.know-grid h2 { font-size: 3.6rem; }
.know-list details { border-top: 1px solid var(--line); }
.know-list details:last-child { border-bottom: 1px solid var(--line); }
.know-list summary { position: relative; padding: 24px 44px 24px 0; font-family: var(--font-display); font-size: 1.3rem; cursor: pointer; list-style: none; }
.know-list summary::-webkit-details-marker { display: none; }
.know-list summary::after { content: "+"; position: absolute; right: 5px; top: 22px; font-family: var(--font-sans); font-size: 1.35rem; font-weight: 300; }
.know-list details[open] summary::after { content: "−"; }
.know-list details p { max-width: 62ch; margin: -5px 0 24px; color: #66716b; font-size: 0.88rem; }

/* Final image */
.final-cta { position: relative; min-height: 76svh; display: grid; place-items: center; overflow: hidden; isolation: isolate; color: #fff; }
.final-cta__media, .final-cta__scrim { position: absolute; inset: -7%; z-index: -2; }
.final-cta__media img { width: 100%; height: 114%; object-fit: cover; object-position: center 54%; transform: scale(1.04); will-change: transform; }
.final-cta__scrim { z-index: -1; background: rgba(10,21,15,0.55); }
.final-cta__inner { text-align: center; }
.final-cta__inner .eyebrow { justify-content: center; }
.final-cta h2 { margin-bottom: 34px; font-size: 5.6rem; }

/* Footer */
.site-footer { position: relative; z-index: 20; color: rgba(255,255,255,0.65); background: var(--ink); }
.footer-main { padding: 74px 0 58px; display: grid; grid-template-columns: 1.3fr 1fr 0.6fr 0.9fr; gap: 50px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; color: #fff; line-height: 1; }
.footer-brand strong { font-family: var(--font-display); font-size: 2rem; font-weight: 400; }
.footer-brand span { margin-top: 8px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; }
.footer-location, .footer-links, .footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 0.75rem; }
.footer-location span:first-child { color: #fff; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,0.13); font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; }

.mobile-book { display: none; }

/* Fullscreen gallery viewer */
.gallery-lightbox {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 44px 92px 36px;
  overflow: hidden;
  border: 0;
  color: #fff;
  background: rgba(8, 16, 12, 0.96);
}
.gallery-lightbox::backdrop { background: rgba(8, 16, 12, 0.82); backdrop-filter: blur(10px); }
.gallery-lightbox[open] { display: grid; place-items: center; }
.gallery-lightbox figure { max-width: 100%; max-height: 100%; margin: 0; display: grid; place-items: center; gap: 16px; }
.gallery-lightbox figure img { max-width: calc(100vw - 184px); max-height: calc(100vh - 118px); object-fit: contain; }
.gallery-lightbox figcaption { color: rgba(255,255,255,0.72); font-size: 0.74rem; letter-spacing: 0.06em; text-align: center; text-transform: uppercase; }
.gallery-lightbox__close {
  position: fixed;
  z-index: 2;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
  padding: 7px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.gallery-lightbox__close svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.35; }
.gallery-lightbox__nav {
  position: fixed;
  z-index: 2;
  top: 50%;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,0.76);
  font-size: 1.6rem;
  cursor: pointer;
  transform: translateY(-50%);
}
.gallery-lightbox__nav:hover { color: #fff; }
.gallery-lightbox__nav--prev { left: 22px; }
.gallery-lightbox__nav--next { right: 22px; }
body.lightbox-open { overflow: hidden; }

/* Scroll reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .shell { width: min(100% - 64px, 1120px); }
  .hero-inner { left: 48px; right: 48px; width: auto; }
  .hero-facts { left: 48px; right: 48px; width: auto; }
  .hero h1 { font-size: 5.25rem; }
  .arrival-grid { column-gap: 48px; }
  .arrival-story { margin-top: 36px; }
  .arrival-figure img { height: 640px; }
  .arrival-residents__list { gap: 12px; }
  .cottage-gallery { grid-template-rows: 140px 260px 300px; }
  .gallery-main { grid-column: 1 / 7; grid-row: 1 / 3; }
  .gallery-kitchen { grid-column: 7 / 13; grid-row: 1 / 3; }
  .cottage-details { grid-column: 1 / 13; grid-row: 3; padding: 20px 0 0; display: grid; grid-template-columns: 0.62fr 1.38fr 0.65fr; gap: 28px; align-items: start; }
  .cottage-details dl { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .cottage-details dl div:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .experience-grid { grid-template-columns: 0.8fr 1.2fr; }
  .experience-photo { display: none; }
  .festival { gap: 46px; }
  .festival-copy h3 { font-size: 2.6rem; }
  .store-grid { gap: 54px; }
  .store-copy h2 { font-size: 3.2rem; }
  .journal-heading { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr); gap: 54px; }
  .journal-heading h2 { font-size: 4.15rem; }
  .retreats-heading { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr); gap: 54px; }
  .retreats-heading h2 { font-size: 4.15rem; }
  .retreats-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 40px; }
  .journal-grid { --journal-row: clamp(112px, 12.2vw, 156px); }
  .film-heading { grid-template-columns: 0.75fr 1.25fr; }
  .film-heading > p:last-child { grid-column: 2; }
  .booking-head { gap: 54px; }
  .booking-workspace { grid-template-columns: minmax(0, 1fr) 320px; }
  .stay-calendar { padding: 30px 30px 28px; }
  .booking-summary { padding: 30px 28px 26px; }
  .calendar-months { gap: 26px; }
  .stay-notes { gap: 18px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .site-header { height: var(--header-h); padding: 0 24px; }
  .site-header.is-scrolled { height: var(--header-h); }
  .hero-inner { left: 24px; right: 24px; }
  .hero-facts { left: 24px; right: 24px; }
  .desktop-nav { display: none; }
  .menu-toggle { width: 42px; height: 42px; padding: 11px 8px; display: flex; flex-direction: column; justify-content: center; gap: 7px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 100%; height: 1px; background: currentColor; }
  .section { padding: 112px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .lake-copy h2 { font-size: 4.2rem; }
  .booking-head { grid-template-columns: 1fr; gap: 42px; }
  .booking-assurances { max-width: 680px; }
  .booking-workspace { grid-template-columns: 1fr; }
  .calendar-months { grid-template-columns: 1fr; }
  .calendar-month { max-width: 420px; margin: 0 auto; }
  .calendar-toolbar { max-width: 420px; margin: 0 auto; }
  .booking-summary { border-top: 1px solid var(--line); border-left: 0; }
  .festival { margin-top: 76px; grid-template-columns: 1fr; gap: 44px; }
  .festival-poster { width: min(78%, 420px); }
  .store-grid { grid-template-columns: 1fr; gap: 48px; }
  .store-figure img { aspect-ratio: 16 / 10; object-position: center 62%; }
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; grid-auto-rows: auto; }
  .journal-shot:nth-child(n) { grid-column: auto; grid-row: auto; aspect-ratio: 1 / 1; }
  .retreats-heading { grid-template-columns: 1fr; gap: 28px; }
  .retreats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; grid-auto-flow: row dense; }
  .retreat-shot[class*="--"] { grid-column: auto; grid-row: auto; aspect-ratio: 3 / 4; }
  .retreat-shot--studio[class*="--"],
  .retreat-shot--table[class*="--"] { grid-column: 1 / -1; aspect-ratio: 4 / 3; }
  .journal-shot:last-child:nth-child(odd) { grid-column: span 2; aspect-ratio: 16 / 11; }
  .film, .film--portrait { grid-column: span 6; }
  .film--feature { grid-column: 1 / -1; }
  .know-grid { grid-template-columns: 1fr; gap: 55px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .shell { width: calc(100% - 40px); }
  .section { padding: 90px 0; }
  h2 { font-size: 3rem; }
  .brand-copy strong { font-size: 1.06rem; }
  .brand-copy > span { font-size: 0.53rem; }
  .brand-mark { width: 25px; height: 34px; }
  .hero-media img, .hero-media video { object-position: 50% 55%; }
  .hero-scrim { background: linear-gradient(180deg, rgba(8,16,12,0.28), rgba(8,16,12,0.06) 30%, rgba(8,16,12,0.62) 100%); }
  .hero-inner { left: 24px; right: 24px; bottom: 144px; width: auto; }
  .hero-kicker { margin-bottom: 15px; font-size: 0.64rem; }
  .hero h1 { display: block; font-size: 4.2rem; line-height: 0.86; white-space: normal; }
  .hero h1 em { margin: 0 5px; font-size: 0.42em; }
  .hero-subtitle { margin-top: 17px; font-size: 1.35rem; }
  .hero-lead { max-width: 39ch; margin-top: 11px; font-size: 0.88rem; }
  .hero-actions { margin-top: 21px; gap: 18px; }
  .hero-actions .button { min-height: 47px; }
  .hero-actions .text-link { font-size: 0.7rem; }
  .hero-facts { left: 24px; right: 24px; bottom: calc(25px + var(--hero-tail)); grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero-facts div:nth-child(n+3) { display: none; }
  .hero-facts dt { font-size: 1.5rem; }
  .scroll-cue { display: none; }
  @supports (animation-timeline: scroll()) {
    @media (prefers-reduced-motion: no-preference) {
      .hero { border-radius: 0 0 30px 30px; }
    }
  }
  .arrival { padding-top: 104px; }
  .arrival-grid { display: block; }
  .arrival-copy h2 { max-width: none; }
  .arrival-story { max-width: none; margin-top: 30px; }
  .arrival-story .lede { font-size: 1.25rem; }
  .arrival-residents { padding-top: 40px; }
  .arrival-residents__list { gap: 10px; }
  .arrival-residents__list span { font-size: 0.66rem; }
  .arrival-figure { margin-top: 48px; }
  .arrival-figure img { height: 560px; }
  .arrival-note { margin-top: 45px; line-height: 1.8; }
  .lake-section { min-height: 82svh; }
  .lake-figure { inset: -4%; }
  .lake-figure img { object-position: center 50%; }
  .lake-copy { bottom: 52px; }
  .lake-copy h2 { font-size: 3.5rem; }
  .section-heading { margin-bottom: 48px; }
  .section-heading > p { max-width: 50ch; }
  .cottage-gallery { display: block; }
  .cottage-gallery figure { margin-bottom: 14px; }
  .gallery-main { height: 550px; }
  .gallery-kitchen { height: 390px; }
  .cottage-details { display: block; padding: 31px 0 0; }
  .cottage-details dl { display: block; }
  .detail-price { margin-bottom: 25px; }
  .experience-grid { display: block; }
  .experience-intro { position: static; margin-bottom: 52px; }
  .experience-intro h2 { font-size: 3rem; }
  .experience-photo { display: block; margin: 58px 0 0; }
  .experience-photo img { height: auto; aspect-ratio: 3 / 4; }
  .festival { margin-top: 58px; padding-top: 46px; }
  .festival-poster { width: 100%; }
  .festival-copy h3 { font-size: 2.2rem; }
  .festival-facts div { grid-template-columns: 1fr; gap: 4px; }
  .store-copy h2 { font-size: 2.7rem; }
  .store-list li { grid-template-columns: 1fr; gap: 4px; }
  .journal-heading { margin-bottom: 46px; display: block; }
  .journal-heading h2 { font-size: 3.25rem; }
  .journal-heading > p { margin-top: 25px; }
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; grid-auto-rows: auto; gap: 8px; }
  .journal-shot,
  .journal-shot--portrait,
  .journal-shot--wide,
  .journal-shot:nth-child(n) { grid-column: auto; grid-row: auto; aspect-ratio: 1 / 1; }
  .journal-shot:last-child:nth-child(odd) { grid-column: span 2; aspect-ratio: 16 / 11; }
  .journal-shot button span { left: 13px; right: 13px; bottom: 12px; font-size: 0.58rem; }
  .retreats-heading { margin-bottom: 46px; display: block; }
  .retreats-heading h2 { margin-bottom: 25px; font-size: 3.25rem; }
  .retreats-heading h2 br { display: none; }
  .retreats-grid { gap: 8px; }
  .retreat-shot figcaption { left: 13px; right: 13px; bottom: 12px; font-size: 0.58rem; }
  .retreats-list { margin-top: 42px; grid-template-columns: 1fr; gap: 22px; }
  .hero-motion { right: 20px; top: calc(var(--header-h) + 10px); width: 36px; height: 36px; }
  .film-heading { margin-bottom: 44px; display: block; }
  .film-heading h2 { margin-bottom: 25px; font-size: 3.3rem; }
  .film-heading > p:last-child { margin-bottom: 0; }
  .film-grid { display: block; }
  .film { margin-bottom: 46px; }
  .film:last-child { margin-bottom: 0; }
  .film--portrait { width: min(82%, 360px); }
  .film-copy { min-height: 0; display: block; }
  .film-copy p { margin-top: 8px; }
  .booking-head { padding-bottom: 40px; }
  .booking-head h2 { font-size: 3.35rem; }
  .booking-head > div > p:last-child { margin-top: 20px; }
  .booking-assurances { grid-template-columns: 1fr; }
  .booking-assurances li { min-height: 54px; padding: 13px 0; display: grid; grid-template-columns: 120px 1fr; align-items: baseline; border-top: 1px solid var(--line); border-left: 0; }
  .booking-assurances li:last-child { border-bottom: 1px solid var(--line); }
  .booking-assurances strong { font-size: 1.25rem; }
  .booking-assurances span { margin: 0; }
  .booking-workspace { margin-top: 34px; }
  .stay-calendar { padding: 24px 18px 24px; }
  .calendar-selection { padding-bottom: 20px; grid-template-columns: 1fr 1fr; gap: 10px; }
  .calendar-field { padding: 10px 12px; }
  .calendar-field strong { font-size: 1.05rem; }
  .calendar-nights { grid-row: 2; grid-column: 1; padding: 0; text-align: left; align-self: center; }
  .clear-dates { grid-row: 2; grid-column: 2; justify-self: end; align-self: center; }
  .calendar-hint { margin-top: 16px; }
  .stay-notes { grid-template-columns: 1fr; gap: 0; }
  .stay-notes > div { padding: 14px 0 0; }
  .booking-summary { padding: 26px 18px 24px; }
  .estimate-total strong { font-size: 1.55rem; }
  .know-grid h2 { font-size: 3rem; }
  .know-list summary { font-size: 1.15rem; }
  .final-cta { min-height: 68svh; }
  .final-cta h2 { font-size: 4rem; }
  .footer-main { padding-top: 62px; grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { padding-bottom: 86px; flex-direction: column; }
  .gallery-lightbox { padding: 70px 14px 94px; }
  .gallery-lightbox figure img { max-width: calc(100vw - 28px); max-height: calc(100vh - 180px); }
  .gallery-lightbox figcaption { max-width: 88vw; font-size: 0.65rem; }
  .gallery-lightbox__nav { top: auto; bottom: 18px; transform: none; }
  .gallery-lightbox__nav--prev { left: calc(50% - 78px); }
  .gallery-lightbox__nav--next { right: calc(50% - 78px); }
  .mobile-book {
    position: fixed;
    z-index: 70;
    left: 12px;
    right: 12px;
    bottom: 10px;
    min-height: 54px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: var(--ember);
    box-shadow: 0 12px 30px rgba(23,35,29,0.25);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: translateY(130%);
    transition: transform 0.35s var(--ease);
  }
  .mobile-book span { font-size: 0.65rem; font-weight: 500; letter-spacing: 0; text-transform: none; }
  body.show-mobile-book .mobile-book { transform: translateY(0); }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 3.55rem; }
  .hero-lead { display: none; }
  .hero-inner { bottom: 140px; }
  .hero-actions { margin-top: 22px; }
  .hero-actions .text-link { display: none; }
  .mobile-nav__links a { font-size: 2.25rem; }
  .calendar-selection { grid-template-columns: 1fr auto 1fr; }
  .calendar-selection__arrow { font-size: 0.95rem; }
  .calendar-day { width: 38px; height: 38px; }
  .booking-summary__head h3 { font-size: 1.35rem; }
  .final-cta h2 { font-size: 3.35rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .hero-media img, .depth-image { transform: none !important; }
}

/* Retreat enquiry → shared Supabase enquiries table */
.retreat-enquiry { margin-top: 72px; padding: 44px 48px; display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr); gap: 64px; border: 1px solid var(--line); background: var(--white); }
.retreat-enquiry__intro h3 { margin: 0 0 14px; font-size: 2rem; }
.retreat-enquiry__intro p:last-child { max-width: 38ch; margin: 0; color: #66716b; font-size: 0.9rem; }
.rfield { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.rfield label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.rfield label span { color: #7a857f; font-weight: 500; letter-spacing: 0.04em; text-transform: none; }
.rfield input, .rfield textarea { width: 100%; min-height: 48px; padding: 11px 14px; border: 1px solid #c9cec9; background: var(--paper); font-size: 0.94rem; transition: border-color 0.2s ease, background 0.2s ease; }
.rfield textarea { min-height: 112px; resize: vertical; }
.rfield input:focus, .rfield textarea:focus { border-color: var(--pine); background: #fff; outline: none; }
.rfield [aria-invalid="true"] { border-color: #b94327; background: #fff6f3; }
.rfield-error { margin: 0; color: #b94327; font-size: 0.72rem; }
.rfield-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.rfield--trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.retreat-enquiry__actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.retreat-enquiry__actions .button[aria-busy="true"] { opacity: 0.7; pointer-events: none; }
.retreat-enquiry__status { margin: 0; color: #b94327; font-size: 0.76rem; }
.retreat-enquiry__success { grid-column: 2; }
.retreat-enquiry__success h3 { margin: 0 0 10px; font-size: 1.9rem; }
.retreat-enquiry__success p:not(.eyebrow) { margin: 0 0 20px; color: #66716b; }
@media (max-width: 1180px) { .retreat-enquiry { padding: 36px; gap: 40px; } }
@media (max-width: 900px) { .retreat-enquiry { grid-template-columns: 1fr; gap: 30px; } .retreat-enquiry__success { grid-column: 1; } }
@media (max-width: 700px) { .retreat-enquiry { margin-top: 48px; padding: 24px 18px; } .rfield-row { grid-template-columns: 1fr; gap: 0; } .retreat-enquiry__intro h3 { font-size: 1.7rem; } }

/* Preserve the full aerial composition above the seasonal photo grid. */
.journal .journal-feature { aspect-ratio: 16 / 9; margin-bottom: 12px; }

/* Drone-led hero sequence; manual controls remain available with reduced motion. */
.hero-media .hero-slide { position: absolute; inset: 0; opacity: 0; animation: none; transition: opacity 1.2s ease; }
.hero-media .hero-slide.is-active { opacity: 1; }
.hero-controls { position: absolute; z-index: 3; right: clamp(20px, 3vw, 48px); top: calc(var(--header-h) + 18px); display: flex; gap: 8px; }
.hero-controls button { position: static; display: grid; place-items: center; width: 40px; height: 40px; padding: 0; border: 0; border-radius: 0; background: rgba(8,16,12,.45); color: white; cursor: pointer; }
.hero-controls button:focus-visible { outline: 2px solid white; outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .hero-media .hero-slide { transition: none; transform: none; } }

/* Original Pine & Birch logo from their existing website. */
.brand-logo { display: block; width: 220px; height: auto; }
.site-header.is-scrolled .brand-logo { filter: brightness(0) saturate(100%); }
.footer-logo { display: block; width: 250px; max-width: 100%; height: auto; }
@media (max-width: 900px) { .brand-logo { width: 180px; } }
