:root {
  --forest: #14241e;
  --forest-2: #1d332a;
  --pine: #29473a;
  --sage: #788a78;
  --copper: #b57749;
  --copper-light: #d8aa7d;
  --cream: #f4f0e7;
  --paper: #fbf9f4;
  --ink: #1f2823;
  --muted: #68736d;
  --line: rgba(31, 40, 35, 0.14);
  --display: "Bodoni 72", Didot, "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--copper);
  color: white;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.23em;
  line-height: 1.4;
  text-transform: uppercase;
}

.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 7vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.section-title {
  max-width: 860px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-title em,
.display-title em {
  color: var(--copper);
  font-weight: 400;
}

.lead {
  color: var(--muted);
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.42;
}

.body-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  transition: background 280ms ease, color 280ms ease, box-shadow 280ms ease;
}

.site-header.scrolled {
  background: rgba(244, 240, 231, 0.93);
  box-shadow: 0 10px 50px rgba(16, 31, 25, 0.1);
  color: var(--forest);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 13px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 1.1rem;
}

.brand-type {
  display: grid;
  gap: 2px;
}

.brand-name {
  font-family: var(--display);
  font-size: 1.14rem;
  letter-spacing: 0.01em;
}

.brand-location {
  opacity: 0.64;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 31px);
  font-size: 0.77rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding-block: 10px;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.lang-link {
  opacity: 0.72;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  gap: 11px;
  padding: 0 24px;
  cursor: pointer;
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, border 220ms ease;
}

.nav-cta {
  min-height: 44px;
  background: var(--copper);
  color: white !important;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--copper);
  color: white;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: white;
  backdrop-filter: blur(8px);
}

.button-dark {
  background: var(--forest);
  color: white;
}

.button svg {
  width: 16px;
  height: 16px;
  transition: transform 200ms ease;
}

.button:hover svg {
  transform: translateX(3px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 100svh;
  background: var(--forest);
  color: white;
  isolation: isolate;
}

.hero-media,
.hero-media::after,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 54%;
  animation: hero-breathe 16s ease-out both;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(10, 24, 18, 0.84) 0%, rgba(10, 24, 18, 0.55) 46%, rgba(10, 24, 18, 0.18) 76%),
    linear-gradient(0deg, rgba(9, 22, 17, 0.86) 0%, rgba(9, 22, 17, 0.08) 52%);
  content: "";
}

@keyframes hero-breathe {
  from { transform: scale(1.045); }
  to { transform: scale(1); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 150px;
  padding-bottom: 42px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 21px;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 48px;
  height: 1px;
  background: var(--copper-light);
  content: "";
}

.hero .display-title {
  max-width: 900px;
  font-size: clamp(4.4rem, 9vw, 9rem);
}

.hero .display-title span {
  display: block;
  color: var(--copper-light);
  font-style: italic;
}

.hero-copy {
  max-width: 640px;
  margin: 27px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-lower {
  display: grid;
  align-items: end;
  margin-top: clamp(52px, 8vh, 94px);
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.hero-facts {
  display: grid;
  width: min(900px, 100%);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  grid-template-columns: repeat(5, 1fr);
}

.hero-facts div {
  padding: 20px 20px 0 0;
}

.hero-facts dt {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.hero-fact-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.62em;
  font-style: italic;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-cue {
  display: grid;
  min-width: 58px;
  place-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.59rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue::after {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.44);
  content: "";
}

.trust-strip {
  background: var(--forest);
  color: white;
}

.trust-inner {
  display: grid;
  align-items: center;
  padding: 27px 0;
  gap: 22px;
  grid-template-columns: 1.2fr repeat(4, 1fr);
}

.trust-label {
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.63rem;
  font-weight: 720;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.trust-item {
  display: grid;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  gap: 3px;
  padding-left: 24px;
}

.trust-item strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.65rem;
}

.intro {
  position: relative;
  padding: clamp(100px, 12vw, 180px) 0;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.76fr);
}

.intro-copy {
  max-width: 540px;
  padding-top: 70px;
}

.intro-copy .body-copy {
  margin-bottom: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px solid currentColor;
  gap: 15px;
  padding-bottom: 7px;
  color: var(--forest);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.image-stack {
  position: relative;
  min-height: 730px;
  margin-top: 105px;
}

.image-stack-main {
  position: absolute;
  top: 0;
  right: 7%;
  width: 72%;
  height: 560px;
  overflow: hidden;
  border-radius: 180px 180px 18px 18px;
}

.image-stack-main img,
.image-stack-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack-main img {
  object-position: center;
}

.image-stack-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48%;
  height: 310px;
  overflow: hidden;
  border: 12px solid var(--paper);
  border-radius: 16px;
  box-shadow: 0 32px 80px rgba(26, 43, 35, 0.18);
}

.altitude-seal {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 76px;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  border-radius: 50%;
  background: var(--copper);
  color: white;
  text-align: center;
  transform: rotate(7deg);
}

.altitude-seal strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 400;
}

.altitude-seal span {
  display: block;
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-section {
  padding: clamp(100px, 12vw, 175px) 0;
  background: var(--cream);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 58px;
  gap: 40px;
}

.section-head .body-copy {
  max-width: 390px;
}

.gallery-grid {
  display: grid;
  min-height: 850px;
  gap: 16px;
  grid-template-columns: 1.28fr 0.72fr 0.72fr;
  grid-template-rows: 1.1fr 0.9fr;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 0;
  border-radius: 12px;
  background: var(--forest);
  cursor: pointer;
}

.gallery-card:first-child {
  grid-row: 1 / 3;
}

.gallery-card:last-child {
  grid-column: 2 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}

.gallery-card:nth-child(2) img,
.gallery-card:nth-child(3) img {
  object-position: center 35%;
}

.gallery-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(10, 24, 18, 0.72));
  content: "";
}

.gallery-card:hover img {
  filter: saturate(0.92);
  transform: scale(1.035);
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  color: white;
  gap: 20px;
  text-align: left;
}

.gallery-caption strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 400;
}

.gallery-caption span {
  opacity: 0.7;
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-experience,
.gallery-desktop {
  position: relative;
}

.gallery-cylinder-stage {
  position: relative;
  height: clamp(560px, 48vw, 720px);
  overflow: clip;
  perspective: 1280px;
  perspective-origin: 50% 46%;
}

.gallery-cylinder-stage::before {
  position: absolute;
  z-index: 20;
  inset: 0;
  background: linear-gradient(90deg, var(--cream) 0%, transparent 13%, transparent 87%, var(--cream) 100%);
  content: "";
  pointer-events: none;
}

.gallery-cylinder-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 72vw);
  height: 76%;
  border-radius: 50%;
  background: rgba(181,119,73,.13);
  filter: blur(75px);
  pointer-events: none;
  transform: translate(-50%,-45%);
}

.gallery-cylinder-card {
  --gallery-scale: 1;
  --gallery-y: 0px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(390px, 38vw, 560px);
  height: clamp(480px, 42vw, 640px);
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  padding: 0;
  background: var(--forest);
  box-shadow: 0 36px 80px rgba(20,36,30,.18);
  cursor: zoom-in;
  opacity: var(--gallery-opacity);
  backface-visibility: hidden;
  transform: translate(-50%,-50%) translate3d(var(--gallery-x),var(--gallery-y),var(--gallery-z)) rotateY(var(--gallery-angle)) scale(var(--gallery-scale));
  transform-style: preserve-3d;
  transition: transform .76s cubic-bezier(.22,.72,.18,1), opacity .52s ease, box-shadow .52s ease;
}

.gallery-cylinder-card.active {
  box-shadow: 0 45px 110px rgba(20,36,30,.28);
}

.gallery-cylinder-card:not(.active) {
  box-shadow: 0 24px 58px rgba(20,36,30,.13);
}

.gallery-cylinder-card img,
.gallery-mobile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease;
}

.gallery-cylinder-card::after,
.gallery-mobile-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 54%;
  background: linear-gradient(transparent, rgba(10,24,18,.82));
  content: "";
  pointer-events: none;
}

.gallery-cylinder-card:hover img,
.gallery-cylinder-card:focus-visible img,
.gallery-mobile-card:active img {
  filter: saturate(.94);
  transform: scale(1.025);
}

.gallery-cylinder-card:focus-visible,
.gallery-mobile-card:focus-visible,
.gallery-controls button:focus-visible {
  outline: 3px solid var(--copper-light);
  outline-offset: 5px;
}

.gallery-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  gap: 22px;
}

.gallery-controls button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(251,249,244,.72);
  color: var(--forest);
  cursor: pointer;
  font-size: 1.2rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.gallery-controls button:hover {
  background: var(--forest);
  color: white;
  transform: translateY(-2px);
}

.gallery-controls > span {
  min-width: 78px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
}

.gallery-controls strong {
  color: var(--forest);
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
}

.gallery-mobile {
  display: none;
}

@media (max-width: 860px) {
  .gallery-desktop { display: none; }
  .gallery-mobile { display: block; }
  .gallery-mobile > p {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: -18px 0 18px;
    color: var(--muted);
    gap: 10px;
    font-size: .64rem;
    font-weight: 760;
    letter-spacing: .11em;
    text-transform: uppercase;
  }
  .gallery-mobile > p span { color: var(--copper); font-size: 1rem; }
  .gallery-mobile-track {
    display: flex;
    width: calc(100% + 15px);
    overflow-x: auto;
    padding: 5px 15px 22px 2px;
    gap: 14px;
    overscroll-behavior-inline: contain;
    scroll-padding-left: 2px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-mobile-track::-webkit-scrollbar { display: none; }
  .gallery-mobile-card {
    position: relative;
    flex: none;
    width: min(82vw, 540px);
    height: min(112vw, 620px);
    max-height: 620px;
    overflow: hidden;
    border: 0;
    border-radius: 14px;
    padding: 0;
    background: var(--forest);
    box-shadow: 0 20px 48px rgba(20,36,30,.15);
    cursor: zoom-in;
    scroll-snap-align: start;
  }
  .gallery-mobile-number {
    position: absolute;
    z-index: 3;
    top: 18px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 50%;
    background: rgba(20,36,30,.24);
    color: white;
    font-size: .64rem;
    letter-spacing: .08em;
    backdrop-filter: blur(10px);
  }
}

@media (max-width: 620px) {
  .gallery-mobile > p { justify-content: flex-start; margin-top: -12px; }
  .gallery-mobile-card { width: 84vw; height: min(118vw,560px); }
  .gallery-caption { align-items: flex-start; flex-direction: column; gap: 5px; right: 18px; bottom: 19px; left: 18px; }
  .gallery-caption strong { font-size: 1.45rem; }
}

.wellness {
  display: grid;
  min-height: 900px;
  background: var(--forest);
  color: white;
  grid-template-columns: 1.05fr 0.95fr;
}

.wellness-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.wellness-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(20, 36, 30, 0.38));
  content: "";
}

.wellness-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wellness-image-label {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 36px;
  display: grid;
  width: 124px;
  height: 124px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  color: white;
  font-size: .6rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.wellness-image-label span {
  display: block;
  margin-bottom: -26px;
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0;
}

.wellness-copy {
  display: flex;
  max-width: 680px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(80px, 9vw, 150px);
}

.wellness-copy .section-title,
.wellness-copy .lead,
.wellness-copy .body-copy {
  color: white;
}

.wellness-copy .lead {
  margin: 40px 0 25px;
  color: rgba(255,255,255,.8);
}

.wellness-copy .body-copy {
  color: rgba(255,255,255,.6);
}

.wellness-list {
  display: grid;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.wellness-list li {
  border-top: 1px solid rgba(255,255,255,.16);
  padding: 17px 0;
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wellness-list li::before {
  margin-right: 14px;
  color: var(--copper-light);
  content: "●";
  font-size: .45rem;
}

.amenities-section {
  padding: clamp(100px, 12vw, 175px) 0;
  background: var(--paper);
}

.amenities-grid {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.amenity-card {
  min-height: 290px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 35px;
  transition: background 260ms ease, transform 260ms ease;
}

.amenity-card:hover {
  z-index: 2;
  background: white;
  box-shadow: 0 26px 70px rgba(27, 44, 36, .09);
  transform: translateY(-5px);
}

.amenity-card > span {
  color: var(--copper);
  font-family: var(--display);
  font-size: .9rem;
}

.amenity-card h3 {
  margin: 60px 0 15px;
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
}

.amenity-card p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.7;
}

.farm-section {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  background: #18271f;
  color: white;
}

.farm-visual,
.farm-visual::after,
.farm-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.farm-visual img {
  object-fit: cover;
  object-position: center;
}

.farm-visual::after {
  background: linear-gradient(90deg, rgba(13,27,20,.92) 0%, rgba(13,27,20,.74) 43%, rgba(13,27,20,.16) 82%);
  content: "";
}

.farm-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 920px;
  max-width: 1320px;
  flex-direction: column;
  justify-content: center;
  padding-right: 46%;
}

.farm-content .section-title,
.farm-content .lead {
  color: white;
}

.farm-content .lead {
  max-width: 630px;
  margin: 38px 0 20px;
  color: rgba(255,255,255,.82);
}

.farm-content .body-copy {
  max-width: 590px;
  color: rgba(255,255,255,.6);
}

.farm-note {
  display: grid;
  max-width: 580px;
  align-items: start;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.2);
  gap: 20px;
  padding-top: 26px;
  grid-template-columns: 32px 1fr;
}

.farm-note > span {
  color: var(--copper-light);
  font-size: 1.5rem;
}

.farm-note p {
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: .85rem;
  line-height: 1.65;
}

.farm-note strong {
  display: block;
  margin-bottom: 7px;
  color: white;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seasons-section {
  padding: clamp(100px, 12vw, 175px) 0;
  background: var(--cream);
}

.seasons-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 58px;
  gap: 40px;
}

.season-tabs {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
}

.season-tabs button {
  min-width: 105px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.season-tabs button.active {
  background: var(--forest);
  color: white;
}

.season-panel {
  display: grid;
  min-height: 680px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(22, 40, 31, .08);
  grid-template-columns: 1.25fr .75fr;
}

.season-image {
  overflow: hidden;
}

.season-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.season-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(55px, 7vw, 100px);
}

.season-number {
  color: var(--copper);
  font-family: var(--display);
  font-size: 1rem;
}

.season-copy h3 {
  margin: 38px 0 25px;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .95;
}

.season-copy p {
  color: var(--muted);
  line-height: 1.78;
}

.season-copy ul {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.season-copy li {
  border-top: 1px solid var(--line);
  padding: 15px 0;
  font-size: .74rem;
  font-weight: 720;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.ideas-section {
  padding: clamp(100px, 12vw, 175px) 0;
  background: #dfe5de;
}

.ideas-head {
  margin-bottom: 58px;
}

.ideas-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.35fr 1fr;
}

.idea-card {
  position: relative;
  display: block;
  min-height: 295px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--forest);
  color: white;
  isolation: isolate;
}

.idea-card-featured {
  min-height: 608px;
  grid-row: span 2;
}

.idea-image,
.idea-image::after,
.idea-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.idea-image::after {
  background: linear-gradient(0deg, rgba(9,22,17,.9), rgba(9,22,17,.06) 68%);
  content: "";
}

.idea-image img {
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2,.7,.2,1);
}

.idea-card:hover .idea-image img {
  transform: scale(1.035);
}

.idea-copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: clamp(26px, 4vw, 46px);
}

.idea-copy small {
  color: var(--copper-light);
  font-size: .62rem;
  font-weight: 760;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.idea-copy strong {
  max-width: 18ch;
  margin: 10px 0 9px;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 3.15rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1;
}

.idea-copy > span {
  max-width: 49ch;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  line-height: 1.55;
}

.idea-copy b {
  display: inline-flex;
  align-items: center;
  width: max-content;
  margin-top: 18px;
  gap: 9px;
  font-size: .64rem;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.idea-copy b svg {
  width: 15px;
  height: 15px;
}

.location-section {
  padding: clamp(100px, 12vw, 175px) 0;
  background: var(--paper);
}

.location-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: .8fr 1.2fr;
}

.location-copy .body-copy {
  max-width: 520px;
  margin: 32px 0 18px;
}

.location-link-hint {
  max-width: 520px;
  margin: 0 0 32px;
  color: var(--copper);
  font-size: .69rem;
  font-weight: 760;
  letter-spacing: .075em;
  line-height: 1.55;
  text-transform: uppercase;
}

.location-route-button {
  width: fit-content;
}

.place-detail {
  display: grid;
  max-width: 520px;
  margin: 0 0 30px;
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr auto;
  padding-top: 22px;
}

.place-detail strong {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 400;
}

.place-detail span {
  color: var(--copper);
  font-weight: 700;
}

.place-detail p {
  grid-column: 1 / -1;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.6;
}

.place-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
}

.place-route-link {
  border-bottom: 1px solid var(--line);
  padding-bottom: 7px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease;
}

.place-route-link:hover {
  border-color: var(--forest);
  color: var(--forest);
}

.map-place:focus-visible,
.location-route-button:focus-visible,
.destination-button:focus-visible,
.idea-card:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--copper);
  outline-offset: 5px;
}

.distance-map {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-radius: 50%;
  background: #e8e6dc;
}

.map-rings {
  pointer-events: none;
}

.map-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(20,36,30,.13);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.map-rings span:nth-child(1) { width: 34%; height: 34%; }
.map-rings span:nth-child(2) { width: 62%; height: 62%; }
.map-rings span:nth-child(3) { width: 90%; height: 90%; }

.map-center {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 999px;
  padding: 8px 12px 8px 8px;
  transform: translate(-50%,-50%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.map-center strong {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
}

.map-center i {
  color: var(--copper);
  font-size: .8rem;
  font-style: normal;
}

.map-center:hover,
.map-center:focus-visible {
  background: rgba(251,249,244,.72);
  box-shadow: 0 12px 30px rgba(20,36,30,.08);
}

.map-center:focus-visible,
.destination-button:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 5px;
}

.map-place {
  position: absolute;
  z-index: 2;
  display: grid;
  min-width: 150px;
  min-height: 58px;
  align-content: center;
  border: 1px solid rgba(20,36,30,.08);
  border-radius: 13px;
  padding: 11px 34px 11px 27px;
  background: rgba(251,249,244,.88);
  color: var(--forest);
  cursor: pointer;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(20,36,30,.035);
  transition: color 200ms ease, transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.map-place::before {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sage);
  content: "";
  transform: translateY(-50%);
}

.map-place:hover,
.map-place:focus-visible {
  background: white;
  color: var(--forest);
  box-shadow: 0 13px 32px rgba(20,36,30,.1);
  transform: translateY(-2px);
}

.map-place:hover::before,
.map-place:focus-visible::before {
  background: var(--copper);
  box-shadow: 0 0 0 8px rgba(181,119,73,.15);
}

.map-place span { font-family: var(--display); font-size: 1.12rem; line-height: 1.05; }
.map-place small { margin-top: 4px; color: var(--muted); font-size: .72rem; font-weight: 720; letter-spacing: .045em; }
.map-place i {
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--copper);
  font-size: .72rem;
  font-style: normal;
  transform: translateY(-50%);
}
.map-place-0 { top: 21%; left: 46%; }
.map-place-1 { top: 43%; right: 8%; }
.map-place-2 { right: 22%; bottom: 13%; }
.map-place-3 { bottom: 17%; left: 18%; }
.map-place-4 { top: 31%; left: 12%; }

.destination-directory {
  margin-top: clamp(72px, 9vw, 125px);
  border-top: 1px solid var(--line);
  padding-top: clamp(42px, 6vw, 74px);
}

.destination-directory-head {
  display: grid;
  align-items: end;
  margin-bottom: 36px;
  gap: 35px 80px;
  grid-template-columns: 1.15fr .85fr;
}

.destination-directory-head .eyebrow {
  margin-bottom: 12px;
}

.destination-directory-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .98;
}

.destination-directory-head > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.75;
}

.destination-groups {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.destination-group {
  border: 1px solid rgba(20,36,30,.1);
  border-radius: 24px;
  padding: 26px;
  background: rgba(244,240,231,.62);
}

.destination-group header {
  margin-bottom: 20px;
}

.destination-group header span {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.destination-group h4 {
  margin: 5px 0 0;
  color: var(--forest);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.05;
}

.destination-buttons {
  display: grid;
  gap: 9px;
}

.destination-button {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(20,36,30,.1);
  border-radius: 14px;
  gap: 14px;
  padding: 11px 13px 11px 16px;
  background: rgba(251,249,244,.86);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.destination-button > span {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.destination-button strong {
  color: var(--forest);
  font-size: .92rem;
  line-height: 1.25;
}

.destination-button small {
  color: var(--muted);
  font-size: .68rem;
  line-height: 1.25;
}

.destination-button b {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: .7rem;
  font-weight: 760;
  letter-spacing: .035em;
}

.destination-button b i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(181,119,73,.12);
  color: var(--copper);
  font-size: .88rem;
  font-style: normal;
}

.destination-button:hover {
  border-color: rgba(20,36,30,.22);
  background: white;
  box-shadow: 0 12px 30px rgba(20,36,30,.08);
  transform: translateY(-2px);
}

.destination-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.destination-card {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  border: 1px solid rgba(20,36,30,.1);
  border-radius: 18px;
  padding: 27px 27px 24px;
  background: rgba(244,240,231,.72);
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.destination-card::after {
  position: absolute;
  right: -35px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(181,119,73,.2);
  border-radius: 50%;
  content: "";
}

.destination-card small {
  position: relative;
  z-index: 1;
  color: var(--copper);
  font-size: .62rem;
  font-weight: 760;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.destination-card strong {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
}

.destination-card > span {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  color: var(--muted);
  font-size: .79rem;
  line-height: 1.55;
}

.destination-card b {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 22px;
  font-size: .67rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.destination-card b i {
  color: var(--copper);
  font-size: .9rem;
  font-style: normal;
}

.destination-card:hover {
  border-color: rgba(20,36,30,.22);
  background: white;
  box-shadow: 0 18px 45px rgba(20,36,30,.1);
  color: var(--forest);
  transform: translateY(-3px);
}

.reviews-section {
  padding: clamp(100px, 12vw, 165px) 0;
  background: var(--forest);
  color: white;
  text-align: center;
}

.reviews-inner {
  max-width: 1060px;
}

.review-score {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 50px;
  gap: 20px;
}

.review-score > span {
  font-family: var(--display);
  font-size: 5rem;
}

.review-score div {
  display: grid;
  border-left: 1px solid rgba(255,255,255,.2);
  gap: 5px;
  padding-left: 20px;
  text-align: left;
}

.review-score strong { color: var(--copper-light); letter-spacing: .12em; }
.review-score small { color: rgba(255,255,255,.52); }

.reviews-section blockquote {
  margin: 0 auto 65px;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-style: italic;
  line-height: 1.18;
}

.review-metrics {
  display: grid;
  border-top: 1px solid rgba(255,255,255,.15);
  grid-template-columns: repeat(4, 1fr);
}

.review-metrics span {
  display: grid;
  gap: 5px;
  padding: 28px 12px 0;
  color: rgba(255,255,255,.54);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.review-metrics strong {
  color: white;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 400;
}

.hosts-section {
  padding: clamp(100px, 12vw, 175px) 0;
  background: var(--cream);
}

.hosts-grid {
  display: grid;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
  grid-template-columns: 1fr 1fr;
}

.hosts-visual {
  position: relative;
  height: 760px;
}

.hosts-visual img {
  width: 100%;
  height: 100%;
  border-radius: 230px 230px 12px 12px;
  object-fit: cover;
}

.hosts-monogram {
  position: absolute;
  right: -38px;
  bottom: 68px;
  display: grid;
  width: 145px;
  height: 145px;
  place-items: center;
  border: 10px solid var(--cream);
  border-radius: 50%;
  background: var(--copper);
  color: white;
  font-family: var(--display);
  font-size: 1.55rem;
}

.hosts-monogram span { font-size: .8rem; }
.hosts-copy { max-width: 600px; }
.hosts-copy .lead { margin: 35px 0 24px; }

.host-promise {
  display: grid;
  align-items: center;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  gap: 22px;
  padding-top: 26px;
  grid-template-columns: auto 1fr;
}

.host-promise > span { color: var(--copper); font-family: var(--display); font-size: 2.3rem; }
.host-promise p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.6; }
.host-promise strong { display: block; color: var(--ink); font-size: .7rem; letter-spacing: .09em; text-transform: uppercase; }

.booking-section {
  padding: clamp(100px, 12vw, 175px) 0;
  background: #dfe5de;
}

.booking-grid {
  display: grid;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
  grid-template-columns: .8fr 1.2fr;
}

.booking-intro .body-copy { max-width: 480px; margin: 32px 0; }
.booking-benefits { display: grid; margin: 0; padding: 0; list-style: none; }
.booking-benefits li { border-top: 1px solid rgba(20,36,30,.14); padding: 14px 0; font-size: .73rem; font-weight: 720; letter-spacing: .06em; text-transform: uppercase; }
.booking-benefits li::before { margin-right: 12px; color: var(--copper); content: "✓"; }

.booking-card {
  min-width: 0;
  padding: clamp(34px, 5vw, 65px);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 36px 90px rgba(29,51,42,.13);
}

.booking-card-head { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 25px; }
.booking-card-head span { font-family: var(--display); font-size: 1.55rem; }
.booking-card-head small { align-self: center; color: var(--muted); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }
.availability-calendar { margin: 30px 0 8px; border-bottom: 1px solid var(--line); padding-bottom: 30px; }
.availability-calendar-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.availability-calendar-head h3 { margin: 5px 0 0; font-family: var(--display); font-size: clamp(1.55rem, 3vw, 2.25rem); font-weight: 400; letter-spacing: -.025em; }
.field-kicker { color: var(--muted); font-size: .61rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.calendar-controls { display: flex; flex: 0 0 auto; gap: 7px; }
.calendar-controls button { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--forest); cursor: pointer; font-size: 1rem; touch-action: manipulation; transition: border-color 180ms ease, color 180ms ease, background 180ms ease; }
.calendar-controls button:hover:not(:disabled),
.calendar-controls button:focus-visible { border-color: var(--copper); background: var(--cream); color: var(--copper); outline: none; }
.calendar-controls button:disabled { cursor: not-allowed; opacity: .35; }
.calendar-status { min-height: 1.4em; margin: 13px 0 20px; color: var(--muted); font-size: .7rem; line-height: 1.55; }
.availability-calendar[data-status="unknown"] .calendar-status { color: #8a5b34; }
.calendar-months { display: grid; overflow: hidden; gap: 22px; grid-template-columns: repeat(2, minmax(0, 1fr)); touch-action: pan-y; }
.calendar-month { min-width: 0; border: 1px solid rgba(20,36,30,.1); border-radius: 10px; padding: 15px; background: white; }
.calendar-month h4 { margin: 0 0 13px; color: var(--forest); font-family: var(--display); font-size: 1.12rem; font-weight: 400; text-transform: capitalize; }
.calendar-days { display: grid; gap: 4px; grid-template-columns: repeat(7, minmax(0, 1fr)); }
.calendar-weekday { padding: 2px 0 6px; color: var(--muted); font-size: .56rem; font-weight: 760; text-align: center; text-transform: uppercase; }
.calendar-day { display: grid; min-width: 0; aspect-ratio: 1; place-items: center; padding: 0; border: 1px solid transparent; border-radius: 50%; appearance: none; color: var(--forest); font: inherit; font-size: .66rem; font-variant-numeric: tabular-nums; }
.calendar-day.is-selectable { cursor: pointer; transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease; }
.calendar-day.is-selectable:hover,
.calendar-day.is-selectable:focus-visible { background: #cde0d0; box-shadow: 0 0 0 2px rgba(181,119,73,.28); outline: none; transform: translateY(-1px); }
.calendar-day.is-free { background: #e4eee5; color: #234b31; }
.calendar-day.is-blocked { background: #eadbd4; color: #8a4934; text-decoration: line-through; }
.calendar-day.is-unknown { border-color: rgba(20,36,30,.13); background: #f5f2eb; color: var(--muted); }
.calendar-day.is-past { color: #a7aaa6; opacity: .5; }
.calendar-day.is-arrival,
.calendar-day.is-departure { border-color: var(--copper); box-shadow: 0 0 0 2px rgba(181,119,73,.16); }
.calendar-day.is-arrival,
.calendar-day.is-departure { background: var(--copper); color: #fff; font-weight: 760; }
.calendar-day.is-selected-range { background: #d8e7da; border-radius: 8px; }
.calendar-day.is-empty { visibility: hidden; }
.calendar-selection-hint { margin: 15px 0 0; color: var(--forest); font-size: .72rem; font-weight: 700; line-height: 1.5; }
.calendar-legend { display: flex; flex-wrap: wrap; margin-top: 14px; gap: 13px 20px; color: var(--muted); font-size: .63rem; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 7px; }
.calendar-legend i { width: 10px; height: 10px; border-radius: 50%; background: #f5f2eb; }
.calendar-legend i.is-free { background: #cde0d0; }
.calendar-legend i.is-blocked { background: #d7aa98; }
.calendar-legend i.is-unknown { border: 1px solid rgba(20,36,30,.2); }
.calendar-disclaimer { margin: 13px 0 0; color: var(--muted); font-size: .62rem; line-height: 1.55; }
.booking-fields { display: grid; margin: 28px 0 20px; gap: 12px; grid-template-columns: repeat(3, 1fr); }
.booking-fields-contact { margin-top: 12px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.guest-capacity-note { margin: -8px 0 18px; border-left: 2px solid var(--copper); padding: 2px 0 2px 12px; color: var(--muted); font-size: .68rem; line-height: 1.55; }
.booking-field-wide { grid-column: 1 / -1; }
.booking-fields label { display: grid; gap: 8px; }
.booking-fields label > span { color: var(--muted); font-size: .61rem; font-weight: 750; letter-spacing: .11em; text-transform: uppercase; }
.booking-fields input,
.booking-fields select,
.booking-fields textarea { min-width: 0; border: 1px solid var(--line); border-radius: 7px; padding: 0 14px; background: white; color: var(--ink); outline: none; }
.booking-fields input,
.booking-fields select { height: 56px; }
.booking-fields textarea { min-height: 108px; padding-top: 14px; padding-bottom: 14px; font: inherit; line-height: 1.5; resize: vertical; }
.booking-fields input:focus,
.booking-fields select:focus,
.booking-fields textarea:focus { border-color: var(--copper); box-shadow: 0 0 0 3px rgba(181,119,73,.1); }
.booking-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.booking-consent { display: grid; align-items: start; margin-top: 20px; gap: 11px; grid-template-columns: auto 1fr; color: var(--muted); cursor: pointer; font-size: .69rem; line-height: 1.55; }
.booking-consent input { width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--copper); }
.booking-consent a { color: var(--forest); text-decoration: underline; text-underline-offset: 2px; }
.crypto-note { margin: 17px 0 0; border-left: 3px solid var(--copper); padding: 3px 0 3px 14px; color: var(--muted); font-size: .67rem; line-height: 1.6; }
.booking-price { display: grid; margin: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 24px 0; }
.booking-price span { color: var(--muted); font-size: .64rem; font-weight: 750; letter-spacing: .09em; text-transform: uppercase; }
.booking-price strong { margin: 6px 0; font-family: var(--display); font-size: clamp(1.45rem, 2.5vw, 2.2rem); font-weight: 400; }
.booking-price small { color: var(--muted); font-size: .68rem; }
.booking-result.is-sending strong { color: var(--copper); }
.booking-result.is-success strong { color: #2e6b43; }
.booking-result.is-error strong { color: #9a4835; }
.booking-submit { width: 100%; }
.booking-submit:disabled { cursor: wait; opacity: .65; }
.booking-fineprint { margin: 18px 0 0; color: var(--muted); font-size: .63rem; line-height: 1.5; text-align: center; }

.faq-section {
  padding: clamp(100px, 12vw, 175px) 0;
  background: var(--paper);
}

.faq-grid { display: grid; align-items: start; gap: clamp(70px, 10vw, 150px); grid-template-columns: .72fr 1.28fr; }
.faq-intro { position: sticky; top: 120px; }
.faq-intro .body-copy { max-width: 380px; margin-top: 30px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; padding: 27px 0; cursor: pointer; font-family: var(--display); font-size: clamp(1.25rem, 2vw, 1.65rem); list-style: none; gap: 20px; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: 0 0 auto; color: var(--copper); font-family: var(--sans); font-size: 1.2rem; font-weight: 300; transition: transform 200ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 670px; margin: -5px 0 28px; color: var(--muted); line-height: 1.75; }

.closing-visual {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.closing-visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.closing-visual::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,24,18,.82), rgba(10,24,18,.2)); content: ""; }
.closing-content { position: relative; z-index: 2; display: flex; min-height: 780px; align-items: flex-start; flex-direction: column; justify-content: center; }
.closing-content .display-title { max-width: 850px; margin-bottom: 38px; }

.site-footer { padding: 80px 0 25px; background: #0d1b15; color: white; }
.footer-main { display: grid; gap: 45px; grid-template-columns: 1.4fr .7fr 1.2fr .9fr; }
.footer-main > div { display: flex; align-items: flex-start; flex-direction: column; gap: 12px; color: rgba(255,255,255,.62); font-size: .82rem; line-height: 1.65; }
.footer-main .brand { color: white; }
.footer-label { margin-bottom: 11px; color: var(--copper-light); font-size: .61rem; font-weight: 760; letter-spacing: .16em; text-transform: uppercase; }
.footer-main a:not(.brand):not(.button):hover { color: white; }
.footer-main .button { margin-top: 6px; color: white; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 70px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 23px; color: rgba(255,255,255,.38); font-size: .65rem; }
.footer-bottom div { display: flex; gap: 22px; }

.mobile-booking { position: fixed; z-index: 90; right: 15px; bottom: 15px; left: 15px; display: none; min-height: 54px; align-items: center; justify-content: center; border-radius: 999px; background: var(--copper); color: white; box-shadow: 0 15px 35px rgba(20,36,30,.25); gap: 10px; font-size: .69rem; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.mobile-booking svg { width: 16px; }

.lightbox { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 50px; background: rgba(7,15,11,.94); cursor: zoom-out; }
.lightbox img { max-width: min(1200px, 92vw); max-height: 86vh; object-fit: contain; box-shadow: 0 35px 100px rgba(0,0,0,.45); }
.lightbox button { position: absolute; top: 25px; right: 30px; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: transparent; color: white; cursor: pointer; font-family: var(--display); font-size: 2rem; }

.editorial-page,
.legal-page { min-height: 100vh; background: var(--paper); }
.editorial-nav { position: relative; z-index: 10; border-bottom: 1px solid var(--line); background: rgba(251,249,244,.95); color: var(--forest); }
.editorial-nav > .container > div { display: flex; align-items: center; gap: 22px; }
.editorial-nav > .container > div > a:not(.nav-cta) { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.editorial-hero { padding: 90px 0 110px; }
.editorial-hero-grid { display: grid; align-items: center; gap: clamp(70px, 9vw, 140px); grid-template-columns: .9fr 1.1fr; }
.editorial-hero .display-title { font-size: clamp(4rem, 7vw, 7.5rem); }
.editorial-hero .lead { max-width: 600px; margin: 38px 0; }
.editorial-hero-image { height: 720px; overflow: hidden; border-radius: 240px 240px 12px 12px; }
.editorial-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-facts { background: var(--forest); color: white; }
.editorial-facts > div { display: grid; grid-template-columns: repeat(3, 1fr); }
.editorial-facts > div > div { display: grid; border-right: 1px solid rgba(255,255,255,.14); gap: 8px; padding: 35px; }
.editorial-facts span { color: var(--copper-light); font-family: var(--display); }
.editorial-facts strong { font-family: var(--display); font-size: 1.45rem; font-weight: 400; }
.editorial-body { padding: clamp(100px, 12vw, 175px) 0; }
.editorial-body-grid { display: grid; gap: clamp(70px, 10vw, 160px); grid-template-columns: .85fr 1.15fr; }
.editorial-body-grid article { border-top: 1px solid var(--line); padding: 32px 0; }
.editorial-body-grid article h3 { margin: 0 0 13px; font-family: var(--display); font-size: 2rem; font-weight: 400; }
.editorial-body-grid article p { margin: 0; color: var(--muted); line-height: 1.8; }
.editorial-cta { padding: 130px 0; background: #dfe5de; text-align: center; }
.editorial-cta .section-title { margin: 0 auto 38px; }
.editorial-footer { padding: 25px 0; background: var(--forest); color: rgba(255,255,255,.55); font-size: .7rem; }
.editorial-footer > div { display: flex; justify-content: space-between; }
.legal-page main { max-width: 1000px; padding-top: 110px; padding-bottom: 130px; }
.legal-copy { max-width: 760px; margin-top: 70px; }
.legal-copy section { margin-bottom: 42px; border-top: 1px solid var(--line); padding-top: 25px; }
.legal-copy h2 { margin: 0 0 15px; font-family: var(--display); font-size: 1.7rem; font-weight: 400; }
.legal-copy p { color: var(--muted); line-height: 1.8; }
.legal-copy a { border-bottom: 1px solid currentColor; color: var(--forest); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1120px) {
  .nav-links a:nth-child(4),
  .nav-links a:nth-child(5) {
    display: none;
  }
  .gallery-grid {
    min-height: 720px;
  }
  .wellness-copy { padding: 75px; }
  .distance-map { min-height: 570px; }
  .footer-main { grid-template-columns: 1.2fr .8fr 1.2fr; }
  .footer-main > div:last-child { display: none; }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 30px, 720px);
  }
  .nav-wrap {
    min-height: 72px;
  }
  .nav-toggle {
    display: grid;
    place-items: center;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 110px 34px 40px;
    background: var(--forest);
    color: white;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 240ms ease, transform 240ms ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .nav-links a,
  .nav-links a:nth-child(4),
  .nav-links a:nth-child(5) {
    display: block;
    font-family: var(--display);
    font-size: clamp(2rem, 8vw, 3.3rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
  }
  .nav-links .nav-cta {
    min-height: 52px;
    margin-top: 15px;
    padding-inline: 24px;
    font-family: var(--sans);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .site-header.scrolled .nav-links.open {
    color: white;
  }
  .hero .display-title {
    font-size: clamp(4rem, 17vw, 6.6rem);
  }
  .hero-lower {
    grid-template-columns: 1fr;
  }
  .scroll-cue {
    display: none;
  }
  .hero-facts {
    gap: 18px 8px;
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-label {
    grid-column: 1 / -1;
  }
  .intro-grid {
    gap: 30px;
    grid-template-columns: 1fr;
  }
  .intro-copy {
    max-width: 620px;
    padding-top: 0;
  }
  .image-stack {
    min-height: 650px;
    margin-top: 20px;
  }
  .image-stack-main {
    right: 0;
    width: 78%;
  }
  .section-head {
    display: block;
  }
  .section-head .body-copy {
    margin-top: 28px;
  }
  .wellness { grid-template-columns: 1fr; }
  .wellness-image { min-height: 690px; }
  .wellness-copy { max-width: none; padding: 90px 30px 100px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .farm-content { padding-right: 26%; }
  .farm-visual::after { background: linear-gradient(90deg, rgba(13,27,20,.92), rgba(13,27,20,.54)); }
  .seasons-head { display: block; }
  .season-tabs { width: max-content; margin-top: 28px; }
  .season-panel { min-height: 0; grid-template-columns: 1fr; }
  .season-image { height: 560px; }
  .ideas-grid { grid-template-columns: 1fr 1fr; }
  .idea-card,
  .idea-card-featured { min-height: 430px; grid-row: auto; }
  .idea-card-featured { grid-column: 1 / -1; min-height: 580px; }
  .location-grid,
  .hosts-grid,
  .booking-grid,
  .faq-grid { grid-template-columns: 1fr; }
  .distance-map { min-height: 650px; }
  .destination-directory-head { align-items: start; grid-template-columns: 1fr; }
  .destination-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hosts-visual { max-width: 620px; }
  .hosts-monogram { right: -20px; }
  .faq-intro { position: static; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-bottom { gap: 20px; flex-direction: column; }
  .editorial-hero-grid,
  .editorial-body-grid { grid-template-columns: 1fr; }
  .editorial-hero-image { height: 620px; }
}

@media (max-width: 620px) {
  .brand-location {
    display: none;
  }
  .hero-inner {
    padding-bottom: 28px;
  }
  .hero-kicker {
    font-size: 0.61rem;
  }
  .hero-copy {
    max-width: 96%;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-lower {
    margin-top: 52px;
  }
  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-inner {
    gap: 18px 0;
  }
  .trust-item {
    padding-left: 15px;
  }
  .image-stack {
    min-height: 545px;
  }
  .image-stack-main {
    width: 88%;
    height: 420px;
    border-radius: 120px 120px 14px 14px;
  }
  .image-stack-small {
    width: 58%;
    height: 230px;
    border-width: 8px;
  }
  .altitude-seal {
    right: 3px;
    bottom: 20px;
    width: 100px;
    height: 100px;
  }
  .gallery-grid {
    display: block;
    min-height: 0;
  }
  .gallery-card {
    height: 370px;
    margin-bottom: 12px;
  }
  .gallery-card:nth-child(n+4) {
    display: none;
  }
  .wellness-image { min-height: 540px; }
  .wellness-copy { padding-inline: 22px; }
  .amenities-grid { border-left: 0; grid-template-columns: 1fr; }
  .amenity-card { min-height: 250px; border-left: 1px solid var(--line); padding: 28px; }
  .amenity-card h3 { margin-top: 42px; }
  .farm-section,
  .farm-content { min-height: 850px; }
  .farm-content { padding-right: 15px; }
  .farm-visual::after { background: linear-gradient(0deg, rgba(13,27,20,.94) 0%, rgba(13,27,20,.66) 66%, rgba(13,27,20,.28)); }
  .farm-visual img { object-position: 58% center; }
  .seasons-head .section-title { font-size: 2.7rem; }
  .season-tabs { width: 100%; }
  .season-tabs button { flex: 1; min-width: 0; }
  .season-image { height: 390px; }
  .season-copy { padding: 42px 26px; }
  .ideas-grid { grid-template-columns: 1fr; }
  .idea-card,
  .idea-card-featured { min-height: 420px; grid-column: auto; }
  .idea-copy strong { overflow-wrap: anywhere; font-size: clamp(2rem, 10vw, 2.75rem); }
  .location-grid { gap: 50px; }
  .distance-map {
    display: grid;
    min-height: 0;
    overflow: visible;
    border-radius: 24px;
    background: #e8e6dc;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    padding: 16px;
  }
  .map-rings { display: none; }
  .map-center {
    position: static;
    min-height: 82px;
    justify-content: center;
    border-radius: 17px;
    background: var(--forest);
    color: white;
    grid-column: 1 / -1;
    transform: none;
  }
  .map-center:hover,
  .map-center:focus-visible { background: var(--forest); box-shadow: none; }
  .map-place,
  .map-place-0,
  .map-place-1,
  .map-place-2,
  .map-place-3,
  .map-place-4 {
    position: relative;
    inset: auto;
    min-width: 0;
    min-height: 76px;
    align-content: center;
    border: 1px solid rgba(20,36,30,.1);
    border-radius: 15px;
    padding: 13px 11px 13px 28px;
    background: rgba(251,249,244,.7);
    transform: none;
  }
  .map-place::before { top: 22px; left: 13px; transform: none; }
  .map-place:hover,
  .map-place:focus-visible { background: white; box-shadow: 0 12px 30px rgba(20,36,30,.09); transform: none; }
  .map-place span { overflow-wrap: anywhere; font-size: .98rem; line-height: 1.05; }
  .map-place small { font-size: .7rem; line-height: 1.35; }
  .map-place i { top: 15px; right: 11px; transform: none; }
  .destination-directory { margin-top: 68px; padding-top: 42px; }
  .destination-directory-head { margin-bottom: 25px; }
  .destination-groups { grid-template-columns: 1fr; }
  .destination-group { padding: 20px; }
  .destination-button { min-height: 62px; }
  .review-score > span { font-size: 3.8rem; }
  .review-metrics { grid-template-columns: repeat(2, 1fr); }
  .review-metrics span:nth-child(n+3) { margin-top: 24px; }
  .hosts-visual { height: 560px; }
  .hosts-visual img { border-radius: 150px 150px 12px 12px; }
  .hosts-monogram { right: -5px; bottom: 35px; width: 112px; height: 112px; border-width: 7px; }
  .booking-card { padding: 28px 20px; }
  .booking-card-head { display: grid; gap: 6px; }
  .availability-calendar-head { align-items: flex-start; }
  .calendar-months { grid-template-columns: 1fr; }
  .calendar-month { padding: 14px; }
  .calendar-day { min-height: 40px; aspect-ratio: auto; }
  .calendar-controls button { width: 44px; height: 44px; font-size: 1.12rem; }
  .booking-fields { grid-template-columns: 1fr; }
  .booking-field-wide { grid-column: auto; }
  .faq-list summary { font-size: 1.25rem; }
  .closing-visual,
  .closing-content { min-height: 650px; }
  .site-footer { padding-bottom: 100px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom div { flex-wrap: wrap; }
  .mobile-booking { display: flex; }
  .lightbox { padding: 18px; }
  .editorial-nav .brand-location { display: none; }
  .editorial-nav > .container > div > a:not(.nav-cta) { display: none; }
  .editorial-hero { padding: 65px 0 80px; }
  .editorial-hero .display-title { font-size: 3.7rem; }
  .editorial-hero-image { height: 470px; border-radius: 150px 150px 10px 10px; }
  .editorial-facts > div { grid-template-columns: 1fr; }
  .editorial-facts > div > div { border-bottom: 1px solid rgba(255,255,255,.14); }
  .editorial-footer > div { gap: 15px; flex-direction: column; }
}

@media (max-width: 430px) {
  .availability-calendar-head { flex-wrap: wrap; }
  .calendar-controls { margin-left: auto; }
  .distance-map { grid-template-columns: 1fr; }
  .destination-group { padding: 17px; }
  .destination-button { align-items: flex-start; flex-direction: column; }
  .destination-button b { width: 100%; justify-content: space-between; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Chalet gallery: broad photographs, floating orbit and a quiet forest stage. */
.gallery-desktop {
  padding: 30px 0 26px;
  border-radius: 28px;
  background: radial-gradient(ellipse at 50% 22%, #334b40 0%, #192c24 53%, #101f19 100%);
  box-shadow: 0 24px 60px #1020181a;
  overflow: hidden;
}
.gallery-cylinder-stage { height: clamp(420px, 40vw, 570px); perspective: 1300px; perspective-origin: 50% 42%; touch-action: pan-y; }
.gallery-cylinder-stage::before { z-index: 12; background: linear-gradient(90deg,#10201970,transparent 8%,transparent 92%,#10201970); }
.gallery-cylinder-glow { top: 84%; width: 76%; height: 17%; border: 1px solid #c1d5c72b; background: transparent; filter: none; transform: translate(-50%,-50%) rotateX(48deg); box-shadow: 0 0 70px #d5c5a20d; }
.gallery-cylinder-card { width: clamp(400px,44vw,640px); height: auto; aspect-ratio: 1.42; border: 1px solid #ffffff2b; border-radius: 14px; box-shadow: 0 18px 34px #0005; transition: transform .72s cubic-bezier(.22,.72,.18,1),opacity .5s ease,box-shadow .5s ease; }
.gallery-cylinder-card.active { box-shadow: 0 26px 50px #0007,0 1px 0 #ffffff38 inset; }
.gallery-cylinder-card:not(.active) { cursor: pointer; box-shadow: 0 14px 30px #0006; }
.gallery-cylinder-card[aria-hidden="true"] { pointer-events: none; }
.gallery-cylinder-card:not(.active) .gallery-caption { opacity: 0; }
.gallery-cylinder-card img { aspect-ratio: 1.42; object-position: center; }
.gallery-cylinder-card::after { height: 40%; background: linear-gradient(transparent,#07150fc7); }
.gallery-cylinder-card .gallery-caption { bottom: 22px; }
.gallery-caption span { font-size: .875rem; letter-spacing: .05em; text-transform: none; }
.gallery-cylinder-card .gallery-caption strong { font-size: 1.5rem; }
.gallery-controls { margin-top: 5px; gap: 26px; }
.gallery-controls button { width: 48px; height: 48px; color: #fff; border-color: #ffffff40; background: #ffffff08; }
.gallery-controls button:hover { background: #f5f1e7; color: #17271e; }
.gallery-controls > span { color: #c6cfc8; font-size: .875rem; }
.gallery-controls strong { color: white; font-size: 1.5rem; }
.gallery-filmstrip { display: flex; gap: 9px; justify-content: center; margin: 24px auto 0; padding: 5px 18px; }
.gallery-filmstrip button { padding: 0; flex: 0 1 64px; height: 48px; overflow: hidden; border: 2px solid transparent; border-radius: 6px; background: #102018; opacity: .48; cursor: pointer; transition: opacity .25s,transform .25s; }
.gallery-filmstrip img { width: 100%; height: 100%; object-fit: cover; }
.gallery-filmstrip button[aria-pressed="true"] { opacity: 1; border-color: #ddbf95; transform: translateY(-3px); }
.gallery-filmstrip button:hover { opacity: 1; }
.gallery-filmstrip button:focus-visible { outline: 3px solid white; outline-offset: 3px; }
.gallery-lightbox { display: flex; justify-content: center; align-items: center; padding: 65px 85px; cursor: default; }
.gallery-lightbox figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 15px; max-width: 100%; }
.gallery-lightbox figure img { max-height: 76vh; max-width: 100%; }
.gallery-lightbox figcaption { color: #e9ede8; font-size: 1rem; text-align: center; }
.gallery-lightbox .gallery-lightbox-prev { top: 50%; right: auto; left: 22px; }
.gallery-lightbox .gallery-lightbox-next { top: 50%; right: 22px; }
.gallery-lightbox button:focus-visible { outline: 3px solid #ddbf95; outline-offset: 5px; }
@media (max-width:860px) {
  .gallery-mobile-card { width: 78vw; height: auto; aspect-ratio: 1.2; border-radius: 16px; }
  .gallery-mobile-card img { aspect-ratio: 1.2; }
  .gallery-mobile-track { padding-top: 12px; padding-bottom: 24px; }
}
@media (max-width:620px) {
  .gallery-mobile-card { width: 86vw; height: auto; aspect-ratio: 1.12; }
  .gallery-mobile-card img { aspect-ratio: 1.12; }
  .gallery-lightbox { padding: 70px 16px 100px; }
  .gallery-lightbox .gallery-lightbox-prev { top: auto; bottom: 25px; left: calc(50% - 64px); }
  .gallery-lightbox .gallery-lightbox-next { top: auto; bottom: 25px; right: calc(50% - 64px); }
  .gallery-lightbox figure img { max-height: 68vh; }
}
@media (prefers-reduced-motion:reduce) {
  .gallery-cylinder-card,.gallery-filmstrip button { transition: none; }
}

.gallery-experience:not(.gallery-ready) .gallery-cylinder-card { transition: none; }
