:root {
  --ink: #192019;
  --muted: #5e675d;
  --cream: #f7f3ea;
  --paper: #fffdf7;
  --field: #293b2f;
  --moss: #6f7f52;
  --sun: #d99855;
  --line: rgba(25, 32, 25, 0.14);
  --header-height: 72px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 16px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 10px 30px rgba(25, 32, 25, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.93rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.launch-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--field);
  transition: opacity 220ms ease, visibility 220ms ease;
}

.launch-overlay.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.launch-overlay > img,
.launch-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.launch-overlay > img {
  object-fit: cover;
}

.launch-shade {
  background:
    linear-gradient(90deg, rgba(12, 18, 13, 0.84), rgba(12, 18, 13, 0.42) 50%, rgba(12, 18, 13, 0.08)),
    linear-gradient(0deg, rgba(12, 18, 13, 0.76), rgba(12, 18, 13, 0.14) 58%);
}

.launch-content {
  position: relative;
  max-width: 820px;
  padding: calc(var(--header-height) + 42px) clamp(20px, 5vw, 72px) clamp(44px, 8vw, 92px);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.launch-content .eyebrow {
  color: #f4c47f;
}

.launch-content h2 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 8vw, 8rem);
}

.launch-content p {
  max-width: 620px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.launch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.launch-actions button {
  font: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

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

.hero img {
  object-fit: cover;
  animation: heroDrift 18s ease-out forwards;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 20, 15, 0.78), rgba(14, 20, 15, 0.36) 44%, rgba(14, 20, 15, 0.05)),
    linear-gradient(0deg, rgba(14, 20, 15, 0.64), rgba(14, 20, 15, 0.08) 55%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: calc(var(--header-height) + 52px) clamp(20px, 5vw, 72px) 76px;
  animation: heroLift 520ms ease-out both;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sun);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f4c47f;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 9vw, 8.8rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.hero-actions,
.channel-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font-weight: 760;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--sun);
  color: #16130f;
  background: var(--sun);
}

.button:disabled,
.availability-form input:disabled,
.availability-form select:disabled {
  cursor: not-allowed;
  opacity: 0.66;
}

.button.ghost {
  color: #fff;
}

section:not(.hero):not(.image-band) {
  padding: clamp(64px, 10vw, 132px) clamp(20px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

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

.intro-copy {
  max-width: 760px;
  padding-top: clamp(34px, 4vw, 58px);
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.intro-copy p {
  margin: 0 0 20px;
}

.image-band {
  height: min(72svh, 720px);
  overflow: hidden;
}

.image-band img {
  height: 115%;
  object-fit: cover;
  transform: translateY(var(--parallax, 0));
}

.stays,
.local-area {
  background: var(--cream);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(34px, 7vw, 88px);
}

.section-heading h2 {
  max-width: 15ch;
}

.stays-heading {
  display: block;
  max-width: 1120px;
  margin-bottom: clamp(46px, 8vw, 96px);
}

.stays-heading h2 {
  max-width: 980px;
}

.stay-list {
  display: grid;
  gap: clamp(40px, 8vw, 96px);
}

.stay-item {
  display: grid;
  grid-template-columns: minmax(280px, 1.08fr) minmax(280px, 0.78fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.stay-item.reverse {
  grid-template-columns: minmax(280px, 0.78fr) minmax(280px, 1.08fr);
}

.stay-item.reverse .stay-media {
  order: 2;
}

.stay-media {
  min-height: 360px;
  overflow: hidden;
  border-radius: 6px;
  background: #d8d2c3;
}

.stay-media img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.stay-item:hover .stay-media img {
  transform: scale(1.035);
}

.photo-reel {
  min-width: 0;
}

.photo-reel-main {
  min-height: 360px;
  overflow: hidden;
  border-radius: 6px;
  background: #d8d2c3;
}

.photo-reel-main img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: opacity 180ms ease, transform 700ms ease;
}

.photo-reel:hover .photo-reel-main img {
  transform: scale(1.025);
}

.photo-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-bottom: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.photo-thumb {
  flex: 0 0 92px;
  width: 92px;
  height: 64px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  opacity: 0.68;
  transition: border-color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.photo-thumb:hover,
.photo-thumb:focus-visible,
.photo-thumb.is-active {
  border-color: var(--sun);
  opacity: 1;
  transform: translateY(-1px);
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stay-detail p {
  color: var(--muted);
  font-size: 1.08rem;
}

.stay-detail ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.stay-detail li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.placeholder {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(170deg, rgba(41, 59, 47, 0.18), transparent 42%),
    linear-gradient(0deg, rgba(25, 32, 25, 0.18), rgba(25, 32, 25, 0)),
    #d6d6c4;
}

.placeholder::before,
.placeholder::after {
  position: absolute;
  content: "";
}

.tent-placeholder::before {
  left: 17%;
  bottom: 18%;
  width: 42%;
  height: 42%;
  background: linear-gradient(135deg, transparent 50%, #ece6d7 0);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 18px 22px rgba(25, 32, 25, 0.16));
}

.tent-placeholder::after,
.van-placeholder::after {
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(111, 127, 82, 0), rgba(111, 127, 82, 0.54));
}

.van-placeholder::before {
  left: 18%;
  bottom: 26%;
  width: 56%;
  height: 28%;
  border-radius: 28px 28px 12px 12px;
  background: #eee9dc;
  box-shadow:
    42px -28px 0 -12px #eee9dc,
    32px 34px 0 -22px var(--field),
    260px 34px 0 -22px var(--field);
}

.facilities {
  background: var(--field);
  color: #fff;
}

.facilities .eyebrow {
  color: #f0bc78;
}

.facility-reel .photo-reel-main {
  min-height: clamp(360px, 44vw, 560px);
}

.facility-reel .photo-reel-main img {
  min-height: clamp(360px, 44vw, 560px);
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
}

.area-map {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  overflow: hidden;
  border-radius: 6px;
  color: #fff;
  background:
    radial-gradient(circle at 64% 38%, rgba(217, 152, 85, 0.95) 0 9px, transparent 10px),
    linear-gradient(140deg, rgba(41, 59, 47, 0.95), rgba(41, 59, 47, 0.58)),
    linear-gradient(30deg, transparent 45%, rgba(255, 255, 255, 0.22) 46% 48%, transparent 49%),
    linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.16) 33% 35%, transparent 36%),
    #7e8b71;
}

.area-map span {
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 0.94;
}

.area-map a {
  width: fit-content;
  padding-bottom: 4px;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.area-columns {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.area-columns > div {
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.area-columns p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.activities {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  gap: clamp(32px, 6vw, 92px);
  align-items: start;
  background: var(--paper);
}

.activity-copy {
  position: sticky;
  top: calc(var(--header-height) + 26px);
}

.activity-copy p:last-child {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.1rem;
}

.activity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 8px;
}

.activity-list button {
  padding: 14px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--field);
  background: #f6f0e5;
  font: inherit;
  font-weight: 720;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.activity-list button:hover,
.activity-list button:focus-visible,
.activity-list button.is-active {
  border-color: var(--field);
  color: #fff;
  background: var(--field);
  transform: translateY(-1px);
}

.activity-detail {
  margin-top: clamp(22px, 4vw, 42px);
  border-top: 1px solid var(--line);
}

.activity-panel {
  padding-top: clamp(22px, 3vw, 34px);
}

.activity-panel h3 {
  max-width: 18ch;
}

.activity-panel p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.04rem;
}

.activity-panel ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.activity-panel li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.activity-panel a {
  color: var(--field);
  font-weight: 760;
  text-decoration-color: rgba(41, 59, 47, 0.34);
  text-underline-offset: 3px;
}

.race-section {
  background: #f0eee6;
}

.race-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.race-list article {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.race-list p {
  margin: 0;
  color: var(--muted);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
  background: var(--field);
  color: #fff;
}

.booking .eyebrow {
  color: #f0bc78;
}

.booking-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 6px;
}

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

.booking-panel {
  align-self: center;
}

.booking-panel h2 {
  max-width: 10ch;
}

.booking-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.availability-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.availability-form label {
  display: grid;
  gap: 7px;
  font-weight: 720;
}

.availability-form input,
.availability-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

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

.form-status {
  min-height: 26px;
  margin: 0;
}

.channel-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: #fff;
  background: #111711;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroLift {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.045);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    min-height: var(--header-height);
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 0;
    padding: 8px;
    border-radius: 10px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 18px 48px rgba(25, 32, 25, 0.16);
    transform: translateY(-12px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

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

  .site-nav a {
    padding: 14px;
    border-radius: 6px;
  }

  .nav-cta {
    border-color: var(--line);
  }

  .hero {
    min-height: 92svh;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(14, 20, 15, 0.78), rgba(14, 20, 15, 0.1) 62%),
      linear-gradient(90deg, rgba(14, 20, 15, 0.58), rgba(14, 20, 15, 0.04));
  }

  .hero-content {
    padding: calc(var(--header-height) + 44px) 20px 48px;
  }

  .launch-content {
    padding: calc(var(--header-height) + 44px) 20px 48px;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 5.6rem);
  }

  h2 {
    font-size: clamp(2.05rem, 11vw, 3.5rem);
  }

  .section-grid,
  .section-heading,
  .stay-item,
  .stay-item.reverse,
  .area-layout,
  .activities,
  .booking {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .stay-item.reverse .stay-media {
    order: 0;
  }

  .stay-media,
  .stay-media img,
  .photo-reel-main,
  .photo-reel-main img,
  .placeholder {
    min-height: 300px;
  }

  .facility-reel .photo-reel-main,
  .facility-reel .photo-reel-main img {
    height: 340px;
    min-height: 340px;
  }

  .photo-thumb {
    flex-basis: 82px;
    width: 82px;
    height: 58px;
  }

  .area-map,
  .activity-copy {
    position: static;
  }

  .booking-image {
    min-height: 360px;
  }

  .site-footer {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

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