:root {
  color-scheme: light;
  --paper: #f2eee4;
  --paper-soft: #ebe5d8;
  --paper-warm: #ded5c4;
  --ink: #1d241f;
  --ink-soft: #51584f;
  --forest: #173b2a;
  --forest-2: #244b35;
  --moss: #82926d;
  --sand: #b8a77f;
  --copper: #9f6547;
  --water: #6f9e9a;
  --line: rgba(29, 36, 31, 0.18);
  --white: #fffaf0;
  --shadow: 0 24px 70px rgba(24, 31, 25, 0.18);
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
}

main {
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

button {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  height: 2px;
  background: rgba(242, 238, 228, 0.18);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--sand);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 5vw, 64px);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    padding 220ms ease;
}

.site-header.is-scrolled {
  padding-block: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.16));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 24px);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 16px;
  border: 1px solid currentColor;
  border-radius: 2px;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 18px;
    padding-inline: clamp(18px, 3vw, 34px);
  }

  .brand {
    gap: 10px;
    font-size: 1.05rem;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.68rem;
  }

  .nav-cta {
    padding-inline: 12px;
  }
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 90;
}

.nav-toggle span {
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  display: grid;
  align-items: end;
  padding: 120px clamp(22px, 5vw, 72px) 44px;
}

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

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
}

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

.hero-media video {
  z-index: 1;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 21, 14, 0.64), rgba(10, 21, 14, 0.18) 52%, rgba(10, 21, 14, 0.4)),
    linear-gradient(0deg, rgba(10, 21, 14, 0.6), rgba(10, 21, 14, 0) 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: clamp(42px, 8vh, 90px);
}

.location-line,
.section-label {
  margin: 0 0 18px;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 {
  margin: 0;
  max-width: 1080px;
  font-size: clamp(3.35rem, 7.4vw, 7.8rem);
  line-height: 1.01;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  color: rgba(255, 250, 240, 0.86);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 18px;
  border-radius: 2px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button svg {
  width: 22px;
  height: 22px;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.62);
  background: rgba(255, 250, 240, 0.06);
}

.button.secondary {
  color: var(--forest);
  border-color: rgba(23, 59, 42, 0.35);
  background: transparent;
}

.hero-metrics {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 920px;
  border-top: 1px solid rgba(255, 250, 240, 0.36);
  border-bottom: 1px solid rgba(255, 250, 240, 0.28);
}

.hero-metrics div {
  padding: 24px clamp(16px, 2vw, 30px);
  border-right: 1px solid rgba(255, 250, 240, 0.24);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.hero-metrics small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.band {
  background: var(--paper);
}

.section-shell {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: start;
}

.intro {
  padding: clamp(28px, 4vw, 46px) 0 clamp(28px, 4vw, 44px);
}

.copy-block h2,
.section-heading h2,
.terrain-note h2,
.gallery-caption h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.6rem);
}

.copy-block p,
.intro-copy p,
.terrain-note p {
  color: var(--ink-soft);
}

.intro-copy {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
}

.intro-copy p {
  margin: 0;
}

.overview-strip {
  width: min(1180px, calc(100% - 44px));
  margin: clamp(18px, 2.6vw, 28px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-strip article {
  padding: 16px clamp(14px, 2vw, 22px);
  border-right: 1px solid var(--line);
}

.overview-strip article:last-child {
  border-right: 0;
}

.overview-strip span,
.asset-panel span,
.overview-strip strong {
  display: block;
}

.overview-strip span,
.asset-panel span {
  margin-bottom: 10px;
  color: var(--moss);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.overview-strip strong {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  font-weight: 400;
  line-height: 1.06;
}

.boundary-proof {
  padding: clamp(70px, 10vw, 128px) 0;
  background: var(--paper-warm);
}

.boundary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.62fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: end;
}

.boundary-media,
.photo-frame,
.field-card {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(29, 36, 31, 0.16);
  box-shadow: var(--shadow);
}

.boundary-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.boundary-media figcaption,
.photo-frame figcaption,
.field-card figcaption {
  padding: 14px 16px 16px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.boundary-copy h2,
.mountain-copy h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.boundary-copy p,
.mountain-copy p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.22vw, 1.14rem);
}

.boundary-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(29, 36, 31, 0.18);
  border-bottom: 1px solid rgba(29, 36, 31, 0.18);
}

.boundary-stats article {
  min-width: 0;
  padding: 16px 14px;
  border-right: 1px solid rgba(29, 36, 31, 0.18);
}

.boundary-stats article:last-child {
  border-right: 0;
}

.boundary-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--forest-2);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.boundary-stats strong {
  display: block;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.06;
}

.terrain {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  min-height: 760px;
  background: var(--forest);
  color: var(--white);
}

.terrain-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.terrain-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 90px);
}

.terrain-note p {
  max-width: 470px;
  color: rgba(255, 250, 240, 0.75);
}

.assets {
  padding: clamp(28px, 4vw, 48px) 0;
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(16px, 2.4vw, 28px);
}

.asset-interface {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.asset-tabs {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.asset-tab {
  min-height: 50px;
  padding: 13px 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.asset-tab:last-child {
  border-bottom: 0;
}

.asset-tab.is-active {
  color: var(--white);
  background: var(--forest);
}

.asset-panels {
  min-height: 210px;
  display: grid;
}

.asset-panel {
  padding: clamp(20px, 2.8vw, 34px);
}

.asset-panel h3 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 2.85rem);
}

.asset-panel p {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.section-heading > p:not(.section-label) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.concepts {
  padding: clamp(86px, 12vw, 154px) 0;
  background: var(--paper-soft);
}

.concept-grid {
  display: grid;
  position: relative;
  min-height: clamp(520px, 48vw, 640px);
  overflow: hidden;
}

.concept-card {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.58fr);
  min-height: 480px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(29, 36, 31, 0.14);
  box-shadow: 0 24px 70px rgba(24, 31, 25, 0.12);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

.concept-card.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.concept-card:nth-child(even) {
  grid-template-columns: minmax(360px, 0.58fr) minmax(0, 1.05fr);
}

.concept-card:nth-child(even) img {
  order: 2;
}

.concept-card > img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 48vw, 640px);
  object-fit: cover;
  display: block;
}

.concept-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4.5vw, 58px);
}

.concept-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--copper);
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.concept-kicker svg {
  width: 24px;
  height: 24px;
}

.concept-copy h3 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 4rem);
}

.concept-copy p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.concept-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.concept-copy li {
  position: relative;
  padding-left: 24px;
  color: var(--forest);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.concept-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sand);
}

.concept-slider-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}

.concept-timer {
  height: 3px;
  overflow: hidden;
  background: rgba(184, 167, 127, 0.28);
}

.concept-timer span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--sand);
}

.concept-timer.is-running span {
  animation: conceptTimer 10s linear forwards;
}

.concept-dots {
  display: flex;
  gap: 10px;
}

.concept-dots button {
  width: 34px;
  height: 8px;
  border: 1px solid rgba(23, 59, 42, 0.3);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.concept-dots button.is-active {
  background: var(--sand);
  border-color: var(--sand);
}

@keyframes conceptTimer {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.development-map {
  padding: clamp(86px, 12vw, 154px) 0;
}

.map-frame {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  box-shadow: var(--shadow);
  border: 1px solid rgba(29, 36, 31, 0.18);
}

.map-frame > img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(10, 20, 13, 0.2), transparent 24%, transparent 76%, rgba(10, 20, 13, 0.16)),
    linear-gradient(0deg, rgba(10, 20, 13, 0.18), transparent 24%);
}

.map-marker {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translate(-50%, -50%);
}

.marker-dot {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--forest);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(23, 59, 42, 0.3);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(12, 22, 14, 0.22);
}

.marker-dot svg {
  width: 21px;
  height: 21px;
}

.marker-label {
  max-width: 220px;
  padding: 7px 10px;
  color: var(--forest);
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(23, 59, 42, 0.18);
  box-shadow: 0 10px 26px rgba(12, 22, 14, 0.18);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  line-height: 1.28;
  text-transform: uppercase;
}

.marker-road {
  left: 40%;
  top: 78%;
}

.marker-spring {
  left: 50%;
  top: 66%;
}

.marker-glamp {
  left: 25%;
  top: 45%;
}

.marker-wellness {
  left: 49%;
  top: 39%;
}

.marker-view {
  left: 65%;
  top: 43%;
}

.marker-farm {
  left: 77%;
  top: 67%;
}

.marker-trail {
  left: 61%;
  top: 16%;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.map-legend span {
  padding: 8px 11px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.36);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery {
  background: #101812;
  color: var(--white);
}

.gallery-main {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
}

.gallery-main > img {
  width: 100%;
  height: 86svh;
  min-height: 620px;
  object-fit: cover;
  display: block;
  opacity: 0.92;
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.gallery-main > img.is-fading {
  opacity: 0.32;
  transform: scale(1.015);
}

.gallery-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 16, 12, 0.72), rgba(10, 16, 12, 0.12) 55%),
    linear-gradient(0deg, rgba(10, 16, 12, 0.74), rgba(10, 16, 12, 0.05) 52%);
  pointer-events: none;
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 5vw, 72px);
  bottom: clamp(38px, 7vw, 96px);
  max-width: 720px;
}

.gallery-caption span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-caption p {
  max-width: 560px;
  color: rgba(255, 250, 240, 0.8);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.gallery-controls {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(38px, 7vw, 96px);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.gallery-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 250, 240, 0.48);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.05);
  color: var(--white);
  cursor: pointer;
}

.gallery-controls svg {
  width: 28px;
  height: 28px;
  margin: auto;
}

.gallery-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 250, 240, 0.16);
}

.gallery-thumb {
  min-width: 0;
  padding: 0;
  border: 0;
  border-right: 1px solid rgba(255, 250, 240, 0.16);
  background: #101812;
  color: rgba(255, 250, 240, 0.7);
  text-align: left;
  cursor: pointer;
}

.gallery-thumb:last-child {
  border-right: 0;
}

.gallery-thumb img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2) brightness(0.72);
  transition: filter 180ms ease;
}

.gallery-thumb span {
  display: block;
  padding: 14px 16px 18px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-thumb.is-active img,
.gallery-thumb:hover img {
  filter: grayscale(0) brightness(1);
}

.gallery-thumb.is-active {
  color: var(--white);
}

.mountain-context {
  padding: clamp(82px, 12vw, 150px) 0;
  color: var(--white);
  background: #101812;
}

.mountain-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.mountain-copy {
  max-width: 520px;
}

.mountain-copy p {
  color: rgba(255, 250, 240, 0.76);
}

.mountain-photos {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.photo-frame {
  background: rgba(255, 250, 240, 0.06);
  border-color: rgba(255, 250, 240, 0.16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.photo-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.mountain-feature img {
  aspect-ratio: 16 / 10;
}

.mountain-clouds img {
  aspect-ratio: 4 / 5;
  object-position: center;
}

.photo-frame figcaption {
  color: rgba(255, 250, 240, 0.78);
}

.field-notes {
  padding: clamp(86px, 12vw, 148px) 0;
  background: var(--paper-soft);
}

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

.field-card {
  grid-column: span 2;
}

.field-card.route-card {
  grid-column: span 3;
}

.field-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.field-card.route-card img {
  aspect-ratio: 16 / 9;
}

.harvest-card {
  align-self: start;
}

.harvest-card img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: top left;
}

.rationale {
  padding: clamp(84px, 12vw, 148px) 0;
}

.rational-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.asking-card {
  padding: clamp(30px, 4.8vw, 58px);
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.46);
  box-shadow: var(--shadow);
}

.asking-card span,
.asking-card small {
  display: block;
  color: var(--moss);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.asking-card strong {
  display: block;
  margin-top: 18px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.8vw, 5.9rem);
  font-weight: 400;
  line-height: 0.96;
}

.asking-card p {
  margin: 26px 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.asking-card small {
  margin-top: 28px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.fine-print {
  margin: 0;
  padding: 20px 24px 24px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.buyer-kit {
  padding: clamp(84px, 12vw, 148px) 0;
  background: var(--paper-soft);
}

.buyer-checklist {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.buyer-checklist article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.check-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--forest-2);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(23, 59, 42, 0.18);
}

.check-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
}

.buyer-checklist h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.buyer-checklist p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.inquiry {
  padding: clamp(84px, 12vw, 148px) 0;
  background: var(--forest);
  color: var(--white);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.68fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}

.inquiry .copy-block p {
  color: rgba(255, 250, 240, 0.75);
}

.inquiry-form {
  position: relative;
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(255, 250, 240, 0.32);
  padding-top: 26px;
}

.netlify-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-bottom: 1px solid rgba(255, 250, 240, 0.36);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  outline: none;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.inquiry-form select option {
  color: var(--ink);
}

.inquiry-form textarea {
  min-height: 116px;
  resize: vertical;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 250, 240, 0.38);
}

.copy-status,
.form-status {
  min-height: 24px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.82);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(22px, 5vw, 64px);
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.video-dialog {
  width: min(1080px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  background: transparent;
}

.video-dialog::backdrop {
  background: rgba(8, 14, 10, 0.78);
  backdrop-filter: blur(8px);
}

.video-shell {
  position: relative;
  background: #080e0a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.video-shell video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.close-video {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.55);
  border-radius: 50%;
  background: rgba(8, 14, 10, 0.62);
  color: var(--white);
  cursor: pointer;
}

.close-video svg {
  width: 22px;
  height: 22px;
  margin: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding: 18px 22px;
  }

  .nav-toggle {
    display: inline-flex;
    position: fixed;
    top: 18px;
    right: 22px;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    height: 100dvh;
    min-height: 100vh;
    display: grid;
    grid-auto-rows: min-content;
    align-content: start;
    justify-items: stretch;
    gap: 0;
    padding: 88px 22px 28px;
    color: var(--ink);
    background: rgba(242, 238, 228, 0.98);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform 260ms ease;
    font-size: 0.86rem;
    overflow-y: auto;
  }

  .site-nav a {
    display: flex;
    min-height: 48px;
    width: min(100%, 360px);
    align-items: center;
    justify-content: center;
    justify-self: center;
    border-bottom: 1px solid var(--line);
    text-align: center;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    width: min(100%, 360px);
    min-height: 56px;
    margin-top: 18px;
    padding: 14px 16px;
    border: 1px solid rgba(29, 36, 31, 0.72);
    background: rgba(255, 250, 240, 0.42);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.nav-open {
    color: var(--ink);
  }

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    min-height: 940px;
  }

  .hero-metrics,
  .overview-strip {
    grid-template-columns: 1fr;
  }

  .hero-metrics div,
  .overview-strip article {
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .overview-strip article {
    border-bottom-color: var(--line);
  }

  .hero-metrics div:last-child,
  .overview-strip article:last-child {
    border-bottom: 0;
  }

  .two-col,
  .terrain,
  .boundary-grid,
  .mountain-grid,
  .asset-interface,
  .rational-grid,
  .inquiry-grid,
  .concept-card,
  .concept-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .mountain-copy {
    max-width: 720px;
  }

  .mountain-photos {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
  }

  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .field-card,
  .field-card.route-card {
    grid-column: span 1;
  }

  .field-card.route-card {
    grid-column: span 2;
  }

  .concept-grid {
    display: block;
    min-height: 0;
    overflow: visible;
  }

  .concept-card {
    display: none;
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .concept-card.is-active {
    display: grid;
  }

  .concept-card:nth-child(even) img {
    order: 0;
  }

  .concept-card,
  .concept-card > img {
    min-height: 0;
  }

  .concept-card > img {
    aspect-ratio: 16 / 10;
    height: auto;
    min-height: 0;
  }

  .asset-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .asset-tab:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .gallery-main,
  .gallery-main > img {
    min-height: 660px;
  }

  .gallery-controls {
    left: clamp(22px, 5vw, 72px);
    right: auto;
    bottom: 28px;
  }

  .gallery-caption {
    bottom: 104px;
  }

  .gallery-rail {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    overflow-x: auto;
  }

  .marker-label {
    max-width: 160px;
    font-size: 0.66rem;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    right: auto;
    left: min(calc(100vw - 64px), 326px);
  }

  .brand span:last-child {
    max-width: 210px;
    white-space: normal;
    line-height: 1.05;
  }

  .hero {
    min-height: 900px;
    padding-inline: 18px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 10.8vw, 3.7rem);
    line-height: 1.02;
  }

  .hero-copy,
  .hero-content {
    max-width: 100%;
  }

  .hero-copy {
    max-width: 20.5rem;
    font-size: 1rem;
  }

  .hero-actions {
    max-width: 21rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section-shell,
  .overview-strip {
    width: min(100% - 36px, 1180px);
  }

  .boundary-stats,
  .mountain-photos,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .boundary-stats article {
    border-right: 0;
    border-bottom: 1px solid rgba(29, 36, 31, 0.18);
  }

  .boundary-stats article:last-child {
    border-bottom: 0;
  }

  .field-card,
  .field-card.route-card {
    grid-column: span 1;
  }

  .harvest-card img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  .copy-block h2,
  .section-heading h2,
  .terrain-note h2,
  .gallery-caption h2 {
    font-size: clamp(2.5rem, 12vw, 4.1rem);
  }

  .terrain-image img,
  .gallery-main > img {
    min-height: 520px;
  }

  .terrain-note,
  .asset-panel {
    padding: 42px 22px;
  }

  .concept-copy {
    padding: 34px 22px;
  }

  .concept-slider-controls {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .map-frame {
    overflow: visible;
  }

  .map-frame > img {
    aspect-ratio: 1 / 1;
  }

  .map-marker {
    gap: 0;
  }

  .marker-dot {
    width: 34px;
    height: 34px;
  }

  .marker-dot svg {
    width: 18px;
    height: 18px;
  }

  .marker-label {
    display: none;
  }

  .asset-tabs {
    grid-template-columns: 1fr;
  }

  .asset-tab:nth-child(odd) {
    border-right: 0;
  }

  .gallery-caption {
    right: 22px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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