:root {
  --paper: #f6f1e7;
  --paper-light: #fbf8f1;
  --ink: #23211c;
  --muted: #5b5648;
  --line: rgba(35, 33, 28, 0.12);
  --green: #2e5e45;
  --green-dark: #21452f;
  --gold: #b08a3e;
  --hero-gold: #ebcb84;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/43d2e636-a8db-4ff6-94a2-08166744e8dc.woff2") format("woff2");
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("fonts/051c974c-650b-4272-a4cd-8a7c16dbf554.woff2") format("woff2");
}

@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("fonts/6db2ca0b-29e8-451b-b505-9d8616aedae9.woff2") format("woff2");
}

:root {
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}

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

@keyframes cueMove {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(9px);
    opacity: 1;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Mulish", sans-serif;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 20px clamp(20px, 5vw, 64px);
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: "Mulish", sans-serif;
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease, color 0.45s ease;
}

.site-nav.is-scrolled {
  background: rgba(246, 241, 231, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.05);
  color: var(--ink);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-mark {
  width: 45px;
  height: 45px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

.site-nav.is-scrolled .brand-mark {
  filter: none;
}

.brand-lockup {
  display: block;
}

.brand-title {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.10em;
}

.brand-subtitle {
  display: block;
  margin-top: 4px;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.36em;
  opacity: 0.82;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  min-width: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav a {
  opacity: 0.88;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a.is-active:not([href="#top"]),
.mobile-menu-panel a.is-active:not([href="#top"]) {
  color: var(--green);
  opacity: 1;
}

.desktop-cta,
.mobile-menu-panel .menu-cta {
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 11px 20px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.mobile-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(35, 33, 28, 0.25);
  border-radius: 2px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.hamburger {
  display: grid;
  gap: 5px;
  width: 19px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.menu-open .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) { opacity: 0; }

body.menu-open .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-panel {
  position: fixed;
  top: 86px;
  left: 18px;
  right: 18px;
  z-index: 25;
  display: grid;
  gap: 0;
  padding: 8px 20px 20px;
  background: rgba(246, 241, 231, 0.99);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(35, 33, 28, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

body.menu-open .mobile-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu-panel a,
.mobile-menu-panel button {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.mobile-menu-panel .menu-cta {
  display: inline-flex;
  justify-content: center;
  margin-top: 18px;
  border-color: rgba(46, 94, 69, 0.38);
  color: var(--green);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 140px 24px 90px;
  overflow: hidden;
  text-align: center;
  color: #f8f4ea;
  background: linear-gradient(135deg, #d9b676 0%, #bb914f 42%, #7a5a32 78%, #4a3720 100%);
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #d9b676 0%, #bb914f 42%, #7a5a32 78%, #4a3720 100%);
}

.hero-video-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 14, 8, 0.38) 0%, rgba(20, 14, 8, 0.22) 45%, rgba(20, 14, 8, 0) 100%);
  pointer-events: none;
}

.hero-video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max(100vw, 177.78vh);
  height: max(56.25vw, 100vh);
  border: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  object-fit: cover;
}

.film-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(20, 14, 8, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.film-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.film-modal-frame {
  width: min(100%, 1080px);
  aspect-ratio: 16 / 9;
  background: #16110c;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.film-modal-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #16110c;
}

.film-modal-close {
  position: absolute;
  top: clamp(14px, 3vw, 32px);
  right: clamp(14px, 3vw, 32px);
  width: 44px;
  height: 44px;
  border: 1px solid rgba(248, 244, 234, 0.55);
  border-radius: 50%;
  background: transparent;
  color: #f8f4ea;
  cursor: pointer;
  font: 300 30px/1 "Mulish", sans-serif;
}

.hero-inner {
  position: relative;
  z-index: 2;
  isolation: isolate;
  width: min(100%, 1000px);
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: -70px -120px -56px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(20, 14, 8, 0.42) 0%, rgba(20, 14, 8, 0.28) 38%, rgba(20, 14, 8, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
}

.hero-note {
  position: absolute;
  left: clamp(16px, 5vw, 40px);
  bottom: 18px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  font-family: ui-monospace, Menlo, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.hero h1 {
  margin: 24px 0 0;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.hero h1 span {
  color: var(--hero-gold);
  font-style: italic;
}

.hero p {
  max-width: 560px;
  margin: 26px auto 0;
  color: rgba(248, 244, 234, 0.9);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 34px;
  margin-top: 42px;
}

.film-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #f8f4ea;
  cursor: pointer;
  font: inherit;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.play-icon {
  display: block;
  flex: 0 0 46px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border: 0;
  border-radius: 2px;
  background: var(--green);
  color: #f8f4ea;
  cursor: pointer;
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #fff;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, rgba(248,244,234,0.8), transparent);
  animation: cueMove 2.2s ease-in-out infinite;
}

.intro {
  padding: clamp(90px, 13vw, 160px) 24px;
  text-align: center;
  background: var(--paper);
}

.intro-inner {
  width: min(100%, 1000px);
  margin: 0 auto;
}

.kicker {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.intro h2 {
  margin: 18px 0 0;
  font-size: clamp(4rem, 13vw, 9.5rem);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

.intro-title {
  max-width: 980px;
  margin-inline: auto;
  font-size: clamp(2.4rem, 5vw, 4.4rem) !important;
  line-height: 1.08 !important;
  font-weight: 600;
}

.intro-title span {
  color: var(--gold);
}

.intro-line {
  display: block;
  width: 54px;
  height: 2px;
  margin: 40px auto 34px;
  background: var(--gold);
}

.intro p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18.5px);
  line-height: 1.9;
  font-weight: 300;
}

.intro p + p {
  margin-top: 18px;
}

.intro em {
  color: var(--green);
  font-style: italic;
}

.journey {
  margin-top: 34px;
  color: #9a9078;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.camps {
  padding: clamp(90px, 12vw, 150px) clamp(20px, 6vw, 90px);
  background: var(--paper-light);
  border-top: 1px solid rgba(35,33,28,0.06);
}

.camps-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

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

.section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.section-head p {
  max-width: 350px;
  margin: 0;
  color: #6c6657;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.camps-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(42px, 5vw, 64px);
}

.camp-media {
  position: relative;
  min-height: 380px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(135deg, #84a06f 0%, #5f7e52 46%, #374f33 100%);
}

.camp-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(118deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 11px);
}

.camp-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20,14,8,0.35));
}

.camp-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  display: inline-block;
  max-width: max-content;
  padding: 6px 11px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.92);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.camp-copy .kicker {
  font-size: 12px;
  letter-spacing: 0.24em;
}

.camp-copy h3 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.06;
}

.camp-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.85;
  font-weight: 300;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding-bottom: 7px;
  border: 0;
  border-bottom: 1px solid rgba(46, 94, 69, 0.3);
  background: transparent;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.camp-tabs {
  display: flex;
  gap: clamp(20px, 4vw, 60px);
  max-width: 780px;
  margin-top: clamp(40px, 5vw, 60px);
}

.camp-tab {
  flex: 1;
  padding: 18px 2px 0;
  border: 0;
  border-top: 2px solid rgba(35, 33, 28, 0.1);
  background: transparent;
  color: #a39c8c;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.camp-tab[aria-selected="true"] {
  border-top-color: var(--gold);
  color: var(--ink);
}

.section-pad {
  padding: clamp(90px, 12vw, 150px) clamp(20px, 6vw, 90px);
}

.wide-inner {
  width: min(100%, 1320px);
  margin: 0 auto;
}

.center-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.center-head h2 {
  margin: 14px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.center-head p {
  max-width: 560px;
  margin: 18px 0 0;
  color: #6c6657;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}

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

.experiences-grid,
.conservation-grid,
.plan-grid {
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.experiences-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
}

.experience-media,
.lightbox-image,
.gallery-tile,
.map-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(135deg, #dcb877 0%, #b98f4f 46%, #6b4d2b 100%);
}

.experience-media {
  min-height: 440px;
  aspect-ratio: 5 / 6;
  transition: background 0.45s ease;
}

.experience-media::before,
.gallery-tile::before,
.lightbox-image::before,
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(118deg, rgba(255,255,255,0.05) 0 2px, transparent 2px 11px);
}

.experience-media::after,
.gallery-tile::after,
.lightbox-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,14,8,0.58));
}

.image-tag {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 16px;
  padding: 6px 11px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.32);
  color: rgba(255, 255, 255, 0.92);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.experience-media-copy {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #f8f4ea;
}

.experience-media-copy .kicker,
.conservation .kicker {
  color: var(--hero-gold);
}

.experience-media-copy h3,
.experience-copy h2,
.conservation h2,
.plan-copy h3 {
  margin: 10px 0 0;
  line-height: 1.05;
}

.experience-media-copy h3 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.experience-media-copy p {
  max-width: 440px;
  margin: 12px 0 0;
  color: rgba(248,244,234,0.9);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.experience-copy h2,
.conservation h2,
.plan .center-head h2 {
  font-size: clamp(2.4rem, 4.6vw, 4rem);
}

.experience-copy p {
  max-width: 420px;
  margin: 12px 0 22px;
  color: #6c6657;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.experience-list {
  display: grid;
}

.experience-tab {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 4px;
  border: 0;
  border-bottom: 1px solid rgba(35,33,28,0.1);
  background: transparent;
  color: #8d8676;
  cursor: pointer;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 500;
  text-align: left;
  transition: color 0.25s ease;
}

.experience-tab span {
  width: 26px;
  color: #bdb6a4;
  font-family: "Mulish", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: color 0.25s ease;
}

.experience-tab i {
  margin-left: auto;
  color: var(--gold);
  font-style: normal;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.experience-tab[aria-selected="true"] {
  color: var(--ink);
}

.experience-tab[aria-selected="true"] span {
  color: var(--gold);
}

.experience-tab[aria-selected="true"] i {
  opacity: 1;
  transform: translateX(0);
}

.conservation {
  position: relative;
  overflow: hidden;
  background: #1c2e22;
  color: #f2eee2;
}

.conservation::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #26412f 0%, #1c2e22 50%, #14241a 100%);
}

.conservation::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(118deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 13px);
}

.conservation-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
}

.conservation h2 {
  color: #f8f4ea;
}

.conservation h2 span {
  color: var(--hero-gold);
  font-style: italic;
}

.conservation p {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(242,238,226,0.82);
  font-size: 16.5px;
  line-height: 1.9;
  font-weight: 300;
}

.outline-gold {
  margin-top: 34px;
  padding: 15px 30px;
  border: 1px solid rgba(235,203,132,0.5);
  border-radius: 2px;
  background: transparent;
  color: var(--hero-gold);
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.stats-grid div {
  padding: clamp(26px, 3vw, 40px) clamp(20px, 2.4vw, 32px);
  background: #1c2e22;
}

.stats-grid strong {
  display: block;
  color: var(--hero-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.stats-grid span {
  display: block;
  margin-top: 12px;
  color: rgba(242,238,226,0.78);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 300;
}

.gallery {
  background: var(--paper-light);
  border-top: 1px solid rgba(35,33,28,0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 14px;
  margin-top: clamp(40px, 5vw, 56px);
}

.gallery-tile {
  min-height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  color: #f8f4ea;
  text-align: left;
}

.gallery-tile:nth-child(1) { background: linear-gradient(135deg, #dcb877, #b98f4f, #6b4d2b); }
.gallery-tile:nth-child(2) { background: linear-gradient(135deg, #e6c98a, #cf9b62, #7a5a32); }
.gallery-tile:nth-child(3) { background: linear-gradient(135deg, #c98a5a, #9a5f3a, #4a3720); }
.gallery-tile:nth-child(4) { background: linear-gradient(135deg, #84a06f, #5f7e52, #374f33); }
.gallery-tile:nth-child(5) { background: linear-gradient(135deg, #a98b5a, #7d6238, #3f3018); }
.gallery-tile:nth-child(6) { background: linear-gradient(135deg, #a96a52, #7d4a38, #3f2418); }
.gallery-tile:nth-child(7) { background: linear-gradient(135deg, #e6c98a, #cf9b62, #7a5a32); }
.gallery-tile:nth-child(8) { background: linear-gradient(135deg, #c98a5a, #9a5f3a, #4a3720); }

.tile-large {
  grid-column: span 2;
  grid-row: span 2;
}

.tile-wide {
  grid-column: span 2;
}

.gallery-tile span {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.gallery-tile i {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(248,244,234,0.6);
  border-radius: 50%;
  font-style: normal;
}

.stories {
  background: var(--paper);
  text-align: center;
}

.story-inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.quote-mark {
  height: 48px;
  margin-top: 26px;
  color: #d8c39a;
  font-family: "Cormorant Garamond", serif;
  font-size: 90px;
  line-height: 0.6;
}

.stories blockquote {
  min-height: 2.8em;
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  font-style: italic;
  line-height: 1.4;
}

.story-name {
  margin-top: 30px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-place {
  margin-top: 7px;
  color: #9a9078;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.story-controls {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 42px;
}

.story-controls > button,
.lightbox-nav,
.lightbox-close,
.enquiry-close {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-family: "Mulish", sans-serif;
}

.story-controls > button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(35,33,28,0.22);
  color: var(--ink);
  font-size: 17px;
}

.story-dots {
  display: flex;
  gap: 9px;
}

.story-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: rgba(35,33,28,0.2);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.story-dots button[aria-current="true"] {
  width: 26px;
  background: var(--green);
}

.postcard {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background: #1c2e22;
}

.postcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(118deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 13px);
}

.postcard-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  width: min(100%, 900px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 3px;
  background: #f4ecd8;
  box-shadow: 0 28px 64px rgba(0,0,0,0.4);
}

.postcard-note {
  padding: clamp(30px, 3.6vw, 50px);
  border-right: 2px dashed rgba(35,33,28,0.22);
}

.postcard-note p {
  margin: 0;
  color: #3a352a;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-style: italic;
  line-height: 1.4;
}

.postcard-note p:first-child {
  color: var(--green);
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.postcard-note p + p {
  margin-top: 14px;
}

.postcard-form {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
}

.stamp {
  align-self: flex-end;
  display: grid;
  place-items: end center;
  width: 74px;
  height: 88px;
  padding-bottom: 7px;
  border: 1px solid rgba(35,33,28,0.25);
  border-radius: 2px;
  background: linear-gradient(150deg, #cf9b62, #7a5a32);
  color: #f4ecd8;
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 0.1em;
}

.postcard-form form {
  margin-top: auto;
}

.postcard-form label {
  display: block;
  margin-bottom: 14px;
  color: #9a8a64;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.postcard-form input {
  width: 100%;
  padding: 7px 0;
  border: 0;
  border-bottom: 1.5px solid rgba(35,33,28,0.4);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
}

.postcard-form button,
.enquiry-dialog form button {
  width: 100%;
  margin-top: 20px;
  padding: 13px;
  border: 0;
  border-radius: 2px;
  background: var(--green);
  color: #f8f4ea;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.plan-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: stretch;
  margin-top: clamp(40px, 5vw, 60px);
}

.map-card {
  min-height: 380px;
  background: linear-gradient(150deg, #cdbf99 0%, #a9a06f 42%, #6f7a4c 100%);
}

.map-pin {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 3px 7px;
  border-radius: 2px;
  background: rgba(246,241,231,0.85);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.map-pin::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.map-pin.bush {
  left: 32%;
  top: 40%;
}

.map-pin.spirit {
  left: 58%;
  top: 62%;
}

.map-pin.spirit::before {
  background: #b0863a;
}

.map-note {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: rgba(255,255,255,0.65);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
}

.plan-copy article {
  padding: 22px 0;
  border-top: 1px solid rgba(35,33,28,0.12);
}

.plan-copy article:last-of-type {
  border-bottom: 1px solid rgba(35,33,28,0.12);
}

.plan-copy article span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.plan-copy h3 {
  color: var(--ink);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
}

.plan-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.primary-link.compact {
  margin-top: 28px;
}

.site-footer {
  padding: clamp(54px, 6vw, 76px) clamp(28px, 5vw, 72px) 34px;
  background: #14241a;
  color: rgba(242,238,226,0.82);
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.footer-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.footer-brand-mark {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  object-fit: contain;
}

.footer-brand-text {
  display: inline-flex;
  flex-direction: column;
}

.footer-brand-text span {
  color: #f8f4ea;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.10em;
}

.footer-brand-text small {
  margin-top: 5px;
  color: rgba(242,238,226,0.7);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.36em;
}

.footer-about p {
  max-width: 290px;
  margin: 22px 0 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  color: var(--hero-gold);
}

.footer-social a {
  display: flex;
  color: inherit;
}

.footer-bottom .footer-social {
  margin-top: 0;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: var(--hero-gold);
  font-family: "Mulish", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-column span {
  display: block;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.footer-column span + span {
  margin-top: 10px;
}

.footer-column .muted {
  opacity: 0.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(242,238,226,0.55);
  font-size: 12px;
  letter-spacing: 0.06em;
}

.enquiry-modal,
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.enquiry-modal.is-open,
.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.enquiry-modal {
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(20,14,8,0.62);
  backdrop-filter: blur(3px);
}

.enquiry-dialog {
  position: relative;
  width: min(100%, 540px);
  max-height: 92vh;
  overflow: auto;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 3px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.enquiry-close,
.lightbox-close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(35,33,28,0.18);
  color: var(--ink);
  font-size: 22px;
}

.enquiry-close {
  position: absolute;
  top: 18px;
  right: 18px;
}

.enquiry-dialog h2 {
  margin: 12px 0 0;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  line-height: 1.06;
}

.enquiry-dialog form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.enquiry-dialog input,
.enquiry-dialog textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(35,33,28,0.16);
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-message {
  margin: 14px 0 0;
  color: var(--green);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
}

.gallery-lightbox {
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 70px);
  background: rgba(12,9,5,0.9);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 24px;
  border-color: rgba(248,244,234,0.4);
  color: #f8f4ea;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(248,244,234,0.4);
  color: #f8f4ea;
  font-size: 22px;
  transform: translateY(-50%);
}

.lightbox-nav.prev { left: clamp(12px, 3vw, 40px); }
.lightbox-nav.next { right: clamp(12px, 3vw, 40px); }

.lightbox-content {
  width: min(100%, 1000px);
}

.lightbox-image {
  aspect-ratio: 16 / 10;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  color: #f8f4ea;
}

.lightbox-meta span:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-style: italic;
}

.lightbox-meta span:last-child {
  color: rgba(248,244,234,0.6);
  font-family: ui-monospace, Menlo, Consolas, monospace;
  font-size: 13px;
  letter-spacing: 0.12em;
}

@media (max-width: 980px) {
  .site-nav {
    min-height: 80px;
    padding: 16px clamp(18px, 5vw, 38px);
    background: rgba(246, 241, 231, 0.96);
    border-bottom-color: var(--line);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.05);
    color: var(--ink);
  }

  .brand-mark {
    width: 45px;
    height: 45px;
    filter: none;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .mobile-menu-button { display: inline-flex; }

  .mobile-menu-panel { top: 80px; }

  .hero {
    min-height: 76vh;
    padding-top: 125px;
  }

  .section-head,
  .camps-layout,
  .experiences-grid,
  .conservation-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .section-head p { max-width: 620px; }

  .camps-layout { display: grid; }

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

  .tile-large,
  .tile-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .postcard-card {
    grid-template-columns: 1fr;
  }

  .postcard-note {
    border-right: 0;
    border-bottom: 2px dashed rgba(35,33,28,0.22);
  }
}

@media (max-width: 560px) {
  .brand { gap: 9px; }

  .brand-mark {
    width: 45px;
    height: 45px;
  }

  .brand-title { font-size: 25px; }

  .brand-subtitle {
    font-size: 8px;
    letter-spacing: 0.26em;
  }

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

  .eyebrow {
    gap: 10px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .eyebrow::before,
  .eyebrow::after {
    width: 22px;
  }

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

  .primary-link,
  .film-button {
    justify-content: center;
  }

  .camps { padding-inline: 28px; }

  .camp-media {
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .camp-label {
    max-width: calc(100% - 32px);
    white-space: normal;
  }

  .camp-tabs {
    display: grid;
    gap: 22px;
  }

  .section-pad {
    padding-inline: 24px;
  }

  .experience-media,
  .map-card {
    min-height: 360px;
  }

  .gallery-grid {
    grid-auto-rows: 130px;
    gap: 10px;
  }

  .stats-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .lightbox-nav.prev { left: 10px; }
  .lightbox-nav.next { right: 10px; }

  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
