@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400&family=Inter:wght@400;500&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --anim-duration: 0.6s;
  --anim-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --anim-rise: 10px;
  --green: #1c2a21;
  --cream: #faf7f2;
  --ink: #1c2a21;
}

html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #1c2a24;
}

/* ---------- Top nav ---------- */

.site-nav {
  position: relative;
  z-index: 20;
  background: var(--green);
}

.site-nav--overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
}

.site-nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.875rem 1.5rem;
}

.site-nav__group {
  display: flex;
  gap: 1.75rem;
}

.site-nav__group--right {
  justify-content: flex-end;
}

.site-nav__link {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease;
}

.site-nav__link:hover {
  color: #fff;
}

.site-nav__link--active {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.site-nav__logo {
  display: block;
  width: 44px;
  height: 44px;
}

@media (max-width: 480px) {
  .site-nav__group {
    gap: 1rem;
  }

  .site-nav__link {
    font-size: 0.8125rem;
  }

  .site-nav__logo {
    width: 36px;
    height: 36px;
  }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.hero__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  pointer-events: none;
}

.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
  margin-top: auto;
  margin-bottom: auto;
  color: #fff;
  z-index: 1;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(var(--anim-rise));
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__title,
.hero__subtitle,
.hero .hero__waitlist {
  animation: rise var(--anim-duration) var(--anim-ease) both;
}

.hero .hero__waitlist {
  animation-delay: 120ms;
}

.reveal {
  opacity: 0;
  transform: translateY(var(--anim-rise));
  transition:
    opacity var(--anim-duration) var(--anim-ease),
    transform var(--anim-duration) var(--anim-ease);
  will-change: opacity, transform;
}

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

.hero__content::before {
  content: "";
  position: absolute;
  inset: -15% -25%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.12) 45%, transparent 75%);
  z-index: -1;
  pointer-events: none;
}

.hero__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
  margin-top: 0.75rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* ---------- Waitlist capsule ---------- */

.hero__waitlist {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
  margin-top: 2rem;
  background: rgba(15, 15, 15, 0.45);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero__waitlist-input,
.hero__waitlist-button {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  padding: 0.875rem 1.5rem;
}

.hero__waitlist-input {
  flex: 1;
  min-width: 0;
  font-weight: 400;
}

.hero__waitlist-input::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.hero__waitlist-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
}

.hero__waitlist-input:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.hero__waitlist-button {
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  transition: background 0.2s ease;
}

.hero__waitlist-button:hover {
  background: rgba(255, 255, 255, 0.12);
}

.hero__waitlist-button:focus-visible {
  outline: 1px solid #fff;
  outline-offset: -4px;
}

.hero__waitlist-message {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.hero__waitlist-message:empty {
  display: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (min-width: 480px) {
  .hero__waitlist {
    flex-direction: row;
  }

  .hero__waitlist-button {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.55);
  }
}

@media (min-width: 768px) {
  .hero__background {
    object-position: center;
  }
}

/* ---------- Home sections ---------- */

.concept {
  background: var(--green);
  color: #fff;
  padding: 7rem 1.5rem;
  text-align: center;
}

.concept__inner {
  max-width: 720px;
  margin: 0 auto;
}

.concept__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.15;
}

.concept__body {
  margin-top: 1.5rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  font-size: clamp(1.125rem, 1.3vw, 1.375rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.experience {
  background: var(--cream);
  color: var(--ink);
  padding: 7rem 1.5rem;
}

.experience__grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.experience__subhead {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.375rem, 1.6vw, 1.75rem);
  line-height: 1.25;
}

.experience__body {
  margin-top: 0.75rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(1rem, 1.15vw, 1.1875rem);
  color: rgba(28, 42, 33, 0.75);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .experience__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sites {
  background: var(--green);
  color: #fff;
  padding: 7rem 1.5rem;
}

.sites__header {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.15;
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
}

.sites__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.site-illustration {
  display: block;
  width: 100%;
  height: auto;
}

.site-card__name {
  margin-top: 1.25rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
}

.site-card__description {
  margin-top: 0.75rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.sites__more {
  text-align: center;
  margin-top: 3.5rem;
}

@media (min-width: 700px) {
  .sites__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .sites__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.interlude {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85vh;
}

.interlude__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.interlude__text {
  position: relative;
  z-index: 1;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
  text-align: center;
  padding: 0 1.5rem;
}

.ask {
  background: var(--green);
  color: #fff;
  padding: 7rem 1.5rem 0;
  text-align: center;
}

.ask__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ask__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.15;
}

.ask__body {
  margin-top: 1rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.site-footer {
  margin-top: 5rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(13px, 0.9vw, 15px);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  text-align: center;
  padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom));
}

.footer-band {
  background: var(--green);
}

.footer-band .site-footer {
  margin-top: 0;
}

/* ---------- Shared text link ---------- */

.text-link {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.text-link:hover {
  border-bottom-color: #fff;
}

.text-link--dark {
  color: var(--ink);
  border-bottom-color: rgba(28, 42, 33, 0.45);
}

.text-link--dark:hover {
  border-bottom-color: var(--ink);
}

/* ---------- Subpage scaffolding ---------- */

.page-header {
  background: var(--green);
  color: #fff;
  padding: 4.5rem 1.5rem 3.5rem;
  text-align: center;
}

.page-header__title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.25rem, 3.5vw, 3.75rem);
  line-height: 1.12;
}

.page-header__lede {
  max-width: 640px;
  margin: 1rem auto 0;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.region-label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Camps page ---------- */

.camps {
  background: var(--green);
  color: #fff;
  padding: 1.5rem 1.5rem 6rem;
}

.camps__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.camps__region {
  margin-top: 3.5rem;
}

.camp {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.camp:last-child {
  border-bottom: none;
}

.camp__media {
  width: 100%;
}

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

.camp__media--photo img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

#nosara .camp__media--photo img {
  /* Cabin sits below center in this image; bias the crop toward it */
  object-position: center 62%;
}

.camp-carousel {
  position: relative;
}

.camp-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}

.camp-carousel__track::-webkit-scrollbar {
  display: none;
}

.camp-carousel__track:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 2px;
}

.camp-carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.camp-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(15, 20, 17, 0.55);
  color: #fff;
  cursor: pointer;
  transition: background 0.15s ease;
}

.camp-carousel__arrow:hover {
  background: rgba(15, 20, 17, 0.8);
}

.camp-carousel__arrow--prev {
  left: 0.875rem;
}

.camp-carousel__arrow--next {
  right: 0.875rem;
}

.camp-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.875rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.camp-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.camp-carousel__dot--active {
  background: #fff;
  transform: scale(1.2);
}

.camp__media--drawing {
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.camp__name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  line-height: 1.2;
}

.camp__status {
  margin-top: 0.5rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.camp__description {
  margin-top: 1rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.camp__reserve {
  display: inline-block;
  margin-top: 1.5rem;
}

.camp__reserve + .camp__reserve {
  margin-left: 1.75rem;
}

@media (min-width: 820px) {
  .camp {
    grid-template-columns: 5fr 4fr;
    gap: 3.5rem;
  }
}

/* ---------- Blog ---------- */

.blog-list {
  background: var(--cream);
  color: var(--ink);
  padding: 4rem 1.5rem 6rem;
}

.blog-list__inner {
  max-width: 760px;
  margin: 0 auto;
}

.article-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(28, 42, 33, 0.15);
}

.article-card:first-child {
  padding-top: 0;
}

.article-card__tag {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(28, 42, 33, 0.55);
}

.article-card__title {
  margin-top: 0.5rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  line-height: 1.25;
  transition: opacity 0.2s ease;
}

.article-card:hover .article-card__title {
  opacity: 0.7;
}

.article-card__excerpt {
  margin-top: 0.625rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  color: rgba(28, 42, 33, 0.72);
  line-height: 1.7;
  max-width: 640px;
}

.article-body {
  background: var(--cream);
  color: var(--ink);
  padding: 4rem 1.5rem 6rem;
}

.article-body__inner {
  max-width: 680px;
  margin: 0 auto;
}

.article-body p {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(28, 42, 33, 0.82);
  margin-bottom: 1.5rem;
}

.article-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.article-body .article-back {
  display: inline-block;
  margin-top: 2rem;
}

/* ---------- 14ers map post ---------- */

.map-post {
  background: var(--cream);
  color: var(--ink);
  padding: 3rem 1.5rem 6rem;
}

.map-post__inner {
  max-width: 1080px;
  margin: 0 auto;
}

.map-post__intro {
  max-width: 680px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(28, 42, 33, 0.82);
  margin: 0 auto 2.5rem;
}

.map-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.map-filter-btn {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(28, 42, 33, 0.4);
  border-radius: 0;
  padding: 0.5rem 1.125rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.map-filter-btn:hover {
  background: rgba(28, 42, 33, 0.08);
}

.map-filter-btn--active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.map-stats {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: rgba(28, 42, 33, 0.65);
  margin-left: auto;
}

#peaks-map {
  height: 70vh;
  min-height: 420px;
  width: 100%;
  border: 1px solid rgba(28, 42, 33, 0.2);
}

.peak-popup {
  font-family: 'Inter', -apple-system, sans-serif;
  padding: 14px 16px;
  min-width: 170px;
}

.peak-popup__name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--ink);
}

.peak-popup__row {
  margin-top: 4px;
  font-size: 0.8125rem;
  color: rgba(28, 42, 33, 0.7);
}

.leaflet-popup-content-wrapper {
  border-radius: 0 !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18) !important;
  padding: 0 !important;
}

.leaflet-popup-content {
  margin: 0 !important;
}

.leaflet-popup-tip-container {
  display: none;
}

/* ---------- Base kit post ---------- */

.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.kit-note {
  max-width: 680px;
  margin: 0 auto;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: rgba(28, 42, 33, 0.82);
}

.kit-item {
  position: relative;
  padding: 1.5rem 1.5rem 1.75rem;
  border: 1px solid rgba(28, 42, 33, 0.14);
  background: transparent;
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.kit-item__check {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1.5px solid rgba(28, 42, 33, 0.35);
  background: #fff;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.kit-item__check svg {
  width: 14px;
  height: 14px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.kit-item:hover .kit-item__check {
  border-color: rgba(28, 42, 33, 0.6);
}

.kit-item--checked,
.kit-item--checked:hover,
.kit-item--checked:focus-visible {
  background: #eef0e6;
  border-color: rgba(28, 42, 33, 0.4);
}

.kit-item--checked .kit-item__check {
  background: var(--ink);
  border-color: var(--ink);
}

.kit-item--checked .kit-item__check svg {
  opacity: 1;
}

.kit-item:hover,
.kit-item:focus-visible {
  background: #fff;
  border-color: rgba(28, 42, 33, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(28, 42, 33, 0.12);
  outline: none;
}

.kit-item .kit-item__icon {
  transition: transform 0.2s ease;
}

.kit-item:hover .kit-item__icon,
.kit-item:focus-visible .kit-item__icon {
  transform: scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .kit-item,
  .kit-item .kit-item__icon {
    transition: none;
  }

  .kit-item:hover,
  .kit-item:focus-visible {
    transform: none;
  }

  .kit-item:hover .kit-item__icon,
  .kit-item:focus-visible .kit-item__icon {
    transform: none;
  }
}

.kit-item__icon {
  width: 44px;
  height: 44px;
  stroke: var(--ink);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.kit-item__name {
  margin-top: 0.875rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.3;
}

.kit-item__blurb {
  margin-top: 0.375rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: rgba(28, 42, 33, 0.7);
  line-height: 1.65;
}

@media (min-width: 820px) {
  .kit-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- Reserve flow ---------- */

.reserve {
  background: var(--green);
  color: #fff;
  padding: 1rem 1.5rem 6rem;
}

.reserve__inner {
  max-width: 560px;
  margin: 0 auto;
}

.reserve-steps {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  margin-bottom: 3rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.reserve-steps__step {
  white-space: nowrap;
}

@media (max-width: 480px) {
  .reserve-steps {
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.6875rem;
  }
}

.reserve-steps__step--active {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 3px;
}

.reserve-steps__step--done {
  color: rgba(255, 255, 255, 0.7);
}

.reserve-form__label {
  display: block;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 1.75rem 0 0.625rem;
}

.reserve-form__input,
.reserve-form__select {
  width: 100%;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  color: #fff;
  background: rgba(15, 15, 15, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  padding: 0.875rem 1.25rem;
  appearance: none;
  -webkit-appearance: none;
}

.reserve-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.reserve-form__input:focus,
.reserve-form__select:focus {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.reserve-form__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.reserve-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.reserve-form__row .reserve-form__input {
  min-width: 0;
}

.reserve-form__input::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.7;
  cursor: pointer;
}

.reserve-button {
  display: block;
  width: 100%;
  margin-top: 2.5rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0;
  padding: 0.9375rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s ease;
  text-align: center;
  text-decoration: none;
}

.reserve-button:hover {
  background: rgba(255, 255, 255, 0.88);
}

.reserve-button--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  margin-top: 0.875rem;
}

.reserve-button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.camp-picker {
  position: relative;
}

.camp-picker__button {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  width: 100%;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  text-align: left;
  color: #fff;
  background: rgba(15, 15, 15, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  padding: 0.625rem 1rem;
  cursor: pointer;
}

.camp-picker__button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.camp-picker__thumb {
  flex-shrink: 0;
  width: 64px;
  height: 36px;
  object-fit: cover;
  display: block;
}

.camp-picker__name {
  flex: 1;
  min-width: 0;
}

.camp-picker__rate {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  white-space: nowrap;
}

.camp-picker__list {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 0.25rem;
  list-style: none;
  background: #243429;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  max-height: 330px;
  overflow-y: auto;
}

.camp-picker__option {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.625rem 0.75rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
}

.camp-picker__option:hover,
.camp-picker__option:focus {
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.camp-picker__option[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.16);
}

.reserve-summary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 1.5rem;
  margin-top: 2rem;
}

.reserve-summary__camp {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #fff;
}

.reserve-summary__thumb {
  width: 96px;
  height: 54px;
  object-fit: cover;
  display: block;
}

.reserve-summary__hero {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.reserve-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4375rem 0;
}

.reserve-summary__row--total {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 0.75rem;
  padding-top: 1rem;
  font-weight: 500;
  color: #fff;
}

.reserve-note {
  margin-top: 1.25rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  text-align: center;
}

.reserve-error {
  margin-top: 1.25rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.9375rem;
  color: #f0c9a8;
  text-align: center;
}

.reserve-error:empty {
  display: none;
}

.stay-hero {
  text-align: center;
  margin-bottom: 1rem;
}

.stay-hero__headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 300;
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  line-height: 1.15;
}

.stay-hero__sub {
  margin-top: 0.75rem;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .hero__title,
  .hero__subtitle,
  .hero .hero__waitlist {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}
