@font-face {
  font-family: "Kaushan Script";
  src: url("../fonts/kaushan-script/KaushanScript-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #17211b;
  --forest: #214536;
  --sage: #6f8f79;
  --clay: #b85d3c;
  --gold: #c99b45;
  --sand: #f3eadb;
  --stone: #d9d1c4;
  --sky: #88a8b7;
  --paper: #fffaf1;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(23, 33, 27, 0.18);
  --radius: 8px;
  --site-width: 1400px;
  --font-romantic: "Kaushan Script", "Segoe Script", cursive;
  color-scheme: light;
  font-family: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.pre-header {
  background: #14271f;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 500;
}

.pre-header-inner {
  width: min(var(--site-width), calc(100% - 32px));
  min-height: 40px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.pre-header a {
  color: inherit;
  text-decoration: none;
}

.pre-header-link {
  white-space: nowrap;
}

.pre-header-email {
  justify-self: end;
  cursor: text;
  user-select: text;
}

.pre-header-social {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.pre-header-social span {
  color: #f4c25e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pre-header-social-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 194, 94, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.pre-header-social-icon:hover,
.pre-header-social-icon:focus-visible {
  border-color: #f4c25e;
  background: #f4c25e;
  color: #14271f;
}

.pre-header-social-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.pre-header-social-icon:last-child svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 241, 0.95);
  border-bottom: 1px solid rgba(23, 33, 27, 0.1);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--site-width), calc(100% - 32px));
  min-height: 108px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 258px;
  text-decoration: none;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand-tagline {
  width: 100%;
  color: #263029;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.035em;
  text-align: center;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 33, 27, 0.18);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: #425044;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--forest);
}

.site-nav a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[href*="information"] {
  min-height: 40px;
  margin-inline: 4px;
  padding-inline: 16px;
  border: 1px solid #d8a53e;
  border-radius: 8px;
  background: #e3ad42;
  color: #17211b;
  box-shadow: 0 8px 20px rgba(216, 165, 62, 0.2);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-nav a[href*="information"]:hover,
.site-nav a[href*="information"]:focus-visible {
  border-color: #101713;
  background: #101713;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 23, 19, 0.26);
  transform: translateY(-1px);
}

.site-nav a[href*="information"]::after {
  content: none;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button.secondary {
  background: var(--white);
  border-color: rgba(23, 33, 27, 0.16);
  color: var(--forest);
}

.button.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 13px;
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.hero {
  --hero-mobile-media-height: clamp(240px, 66vw, 340px);
  position: relative;
  min-height: calc(100vh - 148px);
  min-height: max(560px, calc(100svh - 148px));
  display: grid;
  align-items: center;
  isolation: isolate;
  background: #1d2e25;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #1d2e25;
}

.hero-slide {
  --hero-focus: center center;
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 650ms ease-in-out;
  will-change: opacity;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-native-1024 {
  --hero-native-width: 1024px;
}

.hero-slide-native-1536 {
  --hero-native-width: 1536px;
}

.hero-slide-native-1600 {
  --hero-native-width: 1600px;
}

.hero-slide-native-1672 {
  --hero-native-width: 1672px;
}

.hero-slide-native-2048 {
  --hero-native-width: 2048px;
}

.hero-slide-ambient {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--hero-focus);
  filter: blur(6px) brightness(0.76) saturate(0.98);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 10%, rgba(0, 0, 0, 0.82) 14%, rgba(0, 0, 0, 0.58) 18%, rgba(0, 0, 0, 0.34) 22%, rgba(0, 0, 0, 0.16) 26%, transparent 30%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 10%, rgba(0, 0, 0, 0.82) 14%, rgba(0, 0, 0, 0.58) 18%, rgba(0, 0, 0, 0.34) 22%, rgba(0, 0, 0, 0.16) 26%, transparent 30%, transparent 100%);
}

.hero-slide-foreground {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  filter: none;
}

.hero-slide-foreground img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--hero-focus);
  filter: saturate(1.04) contrast(1.03);
}

.hero-slide:nth-child(1) {
  --hero-focus: 50% 54%;
}

.hero-slide:nth-child(2) {
  --hero-focus: 50% 55%;
}

.hero-slide:nth-child(3) {
  --hero-focus: 50% 52%;
}

.hero-slide:nth-child(4) {
  --hero-focus: 50% 57%;
}

.hero-slide:nth-child(5),
.hero-slide:nth-child(6) {
  --hero-focus: 50% 50%;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.hero-picture,
.page-hero-picture {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
}

.hero-picture img,
.page-hero-picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-picture img {
  object-position: 68% 56%;
}

.home-hero-sunset img {
  object-position: 50% 32%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(6, 12, 8, 0.84) 0%,
      rgba(7, 14, 10, 0.68) 30%,
      rgba(7, 14, 10, 0.36) 52%,
      rgba(7, 14, 10, 0.1) 76%,
      rgba(7, 14, 10, 0.06) 100%
    ),
    linear-gradient(0deg, rgba(6, 12, 8, 0.24) 0%, rgba(6, 12, 8, 0) 48%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-inner-copy-only {
  grid-template-columns: minmax(0, 620px);
  justify-content: start;
}

.hero-copy-block {
  width: 100%;
  max-width: 620px;
  min-width: 0;
}

.hero-media {
  justify-self: end;
  width: min(360px, 27vw);
  min-width: 260px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(12, 24, 18, 0.44);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(10px);
}

.hero-media video,
.hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  max-height: min(58vh, 560px);
  object-fit: cover;
  border-radius: 6px;
  background: #0b120e;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(42px, 6vw, 78px);
}

.hero-title {
  max-width: min(940px, 100%);
  display: grid;
  gap: 6px;
  color: var(--white);
  text-transform: uppercase;
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 0.96;
  font-weight: 950;
  text-shadow:
    0 4px 0 rgba(17, 26, 21, 0.18),
    0 18px 48px rgba(0, 0, 0, 0.45);
}

.hero-title > span {
  display: block;
  white-space: normal;
}

.hero-title-accent {
  color: #e7b957;
  font-family: var(--font-romantic);
  font-size: 1.12em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
  text-shadow:
    0 3px 0 rgba(17, 26, 21, 0.22),
    0 18px 48px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
}

h3 {
  font-size: 22px;
}

main h3 {
  color: var(--forest);
  font-family: var(--font-romantic);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.14;
}

.visual-card-content h3,
.stay-option-card h3,
.information-card-grid .card h3,
.camp-sites-section .notice-card h3 {
  color: var(--white);
}

.hero-copy {
  max-width: none;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.18vw, 20px);
}

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

.hero-facts {
  width: min(var(--site-width), calc(100% - 32px));
  margin: -48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(18, 35, 27, 0.92);
  box-shadow:
    0 18px 48px rgba(8, 14, 10, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(20px) saturate(1.28);
}

.hero-facts::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 52%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06) 58%, rgba(255, 255, 255, 0));
}

.fact {
  min-height: 112px;
  padding: 24px;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(19, 38, 30, 0.42);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.16);
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  color: #f4c25e;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fact span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 88px 0;
}

.section.alt {
  background: var(--sand);
}

.container {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 16px 0 0;
  color: #5e675f;
  font-size: 17px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.visual-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.visual-grid.two-card .visual-card,
.visual-grid.two-card .visual-card.wide {
  grid-column: span 6;
}

.visual-grid.three-inline .visual-card,
.visual-grid.three-inline .visual-card.wide {
  grid-column: span 4;
}

.visual-grid.three-inline .visual-card {
  height: calc(clamp(340px, 27vw, 390px) + 2px);
}

.visual-card {
  min-height: 320px;
  grid-column: span 4;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #24362c;
  color: var(--white);
  text-decoration: none;
}

.visual-card.wide {
  grid-column: span 6;
}

.visual-card.tall {
  min-height: 420px;
  grid-row: span 2;
}

.visual-card img,
.visual-card video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transform: scale(1.01);
}

.visual-card picture {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.visual-card.no-photo {
  background:
    radial-gradient(circle at 78% 28%, rgba(201, 155, 69, 0.28), transparent 24%),
    linear-gradient(135deg, #1c3329, #365a48);
}

.visual-card-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 26, 21, 0.82), rgba(17, 26, 21, 0.08) 62%);
}

.visual-card-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.visual-card-content h3 {
  max-width: 100%;
  padding: 0;
  color: #f4c25e;
  font-size: clamp(28px, 2.15vw, 36px);
  line-height: 1.08;
  background: transparent;
  text-shadow:
    0 2px 2px rgba(0, 0, 0, 0.98),
    0 5px 16px rgba(0, 0, 0, 0.98),
    0 0 1px rgba(0, 0, 0, 1);
}

.visual-card-content p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.92);
}

.visual-card-content p {
  max-width: 420px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
}

.video-panel {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  background: #111a15;
  color: var(--white);
  box-shadow: var(--shadow);
}

.video-panel video {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: calc(var(--radius) - 2px);
  background: #0b120e;
}

.video-panel-copy {
  max-width: 560px;
}

.video-panel-copy p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.card {
  position: relative;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 33, 27, 0.08);
  overflow: hidden;
}

.information-card-grid .card {
  --information-card-bg: #173e2f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 96% 4%, rgba(244, 194, 94, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    var(--information-card-bg);
  color: #fffdf8;
  box-shadow: 0 20px 44px rgba(18, 35, 27, 0.15);
}

.information-card-grid {
  align-items: start;
}

.information-card-grid > .card {
  align-self: start;
}

/* Guest guidance must never appear as empty reserved space while scrolling. */
.page-hero-information ~ .section .reveal-item.is-reveal-ready,
.page-hero-information ~ .section .reveal-item.is-reveal-ready.is-revealed {
  opacity: 1;
  transform: none;
}

@media (min-width: 701px) {
  .information-card-grid.grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .information-card-grid.grid.three > .card:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .information-card-grid.grid.three > .card:nth-child(2) {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
  }

  .information-card-grid.grid.three > .information-card-lodge {
    display: flex;
    align-items: center;
  }

  .information-card-lodge .card-body {
    width: 100%;
  }

  .information-payment-grid {
    align-items: stretch;
  }

  .information-payment-grid > .card {
    display: flex;
    align-self: stretch;
  }

  .information-payment-grid > .card .card-body {
    width: 100%;
  }

  .information-payment-grid > .information-card-cancellation {
    align-items: center;
  }

  .information-card-grid.grid.three > .card:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
}

.information-card-grid .card:nth-child(3n + 2) {
  --information-card-bg: #24543f;
}

.information-card-grid .card:nth-child(3n + 3) {
  --information-card-bg: #35684f;
}

.information-card-grid .card h3 {
  color: #fffdf8;
}

.information-payment-grid .card h3 {
  color: #f4c25e;
}

.information-card-grid .card-body p {
  color: #e8eee9;
}

.information-card-grid .card-body strong {
  color: #f9d98c;
}

.information-policy-list {
  margin: 14px 0 0;
  padding-left: 1.25rem;
  color: #e8eee9;
}

.information-policy-list li + li {
  margin-top: 10px;
}

.activity-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}

.activities-grid [data-experience-card] .card-body h3 {
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.card:has(.activity-card-link:focus-visible) {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #d5d8ce;
}

.card-media img,
.card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bird-guide-card .card-media {
  background: #ffffff;
}

.bird-guide-card .card-media img {
  object-fit: contain;
}

.card-media-placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(33, 69, 54, 0.96), rgba(17, 38, 29, 0.98)),
    #214536;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Arial Narrow", Arial, sans-serif;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.card-body {
  padding: 24px;
}

.card-body p {
  margin: 10px 0 0;
  color: #5e675f;
}

.activities-grid .card-body > p {
  display: -webkit-box;
  height: 3.44em;
  overflow: hidden;
  line-height: 1.72;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.detail-card .card-body {
  min-height: 156px;
}

.detail-icon,
.stay-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
}

.detail-icon {
  background: rgba(33, 69, 54, 0.1);
  color: var(--forest);
}

.detail-icon svg,
.stay-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stay-options-section .grid.two {
  gap: 18px;
}

.stay-options-section .split {
  align-items: start;
}

.stay-options-section .booking-actions {
  justify-content: flex-start;
  margin-top: 24px;
}

.stay-options-video {
  width: min(320px, 100%);
  margin-top: 28px;
  padding: 10px;
  border: 1px solid rgba(33, 69, 54, 0.16);
  border-radius: var(--radius);
  background: #111a15;
  box-shadow: 0 22px 58px rgba(18, 35, 27, 0.16);
}

.stay-options-video video {
  display: block;
  width: 100%;
  max-height: min(52vh, 520px);
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: calc(var(--radius) - 3px);
  background: #0b120e;
}

.stay-option-card {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0)),
    var(--stay-card-bg, var(--forest));
  color: #fffdf8;
  box-shadow: 0 20px 44px rgba(18, 35, 27, 0.16);
}

.stay-option-card:nth-child(odd) {
  --stay-card-bg: #174936;
}

.stay-option-card:nth-child(even) {
  --stay-card-bg: #2f6f53;
}

.stay-option-card .card-body p {
  color: rgba(255, 253, 248, 0.92);
}

.stay-option-card h3 {
  color: var(--white);
}

.stay-option-card .stay-icon {
  background: rgba(244, 194, 94, 0.16);
  color: #f4c25e;
}

.stay-option-card .button.secondary {
  min-height: 36px;
  padding: 0 15px;
  border-color: rgba(244, 194, 94, 0.32);
  background: rgba(255, 253, 248, 0.9);
  color: #173128;
  font-size: 13px;
  box-shadow: 0 10px 22px rgba(12, 26, 18, 0.14);
}

.stay-option-card .button.secondary:hover,
.stay-option-card .button.secondary:focus-visible {
  border-color: #f4c25e;
  background: #f4c25e;
  color: #10281f;
  box-shadow: 0 12px 26px rgba(12, 26, 18, 0.18);
}

.notice-card {
  border-left: 5px solid var(--clay);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(111, 143, 121, 0.16);
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
}

.tag.warning {
  background: rgba(184, 93, 60, 0.15);
  color: #8a3d29;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

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

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

.platform-card {
  min-height: 160px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(23, 33, 27, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(23, 33, 27, 0.08);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.platform-card:hover {
  transform: translateY(-2px);
  border-color: rgba(33, 69, 54, 0.3);
  box-shadow: 0 18px 42px rgba(23, 33, 27, 0.12);
}

.platform-card.direct {
  background:
    linear-gradient(135deg, rgba(33, 69, 54, 0.94), rgba(35, 86, 65, 0.9)),
    var(--forest);
  color: var(--white);
}

.platform-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(201, 155, 69, 0.18);
  color: var(--forest);
}

.platform-card.direct .platform-icon {
  background: #25d366;
  color: var(--white);
}

.platform-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-copy {
  display: grid;
  gap: 8px;
}

.platform-copy strong {
  font-size: 18px;
  line-height: 1.15;
}

.platform-copy span {
  color: #5e675f;
}

.platform-card.direct .platform-copy span {
  color: rgba(255, 255, 255, 0.82);
}

.platform-destination {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: var(--forest) !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-card.direct .platform-destination {
  color: #f5c668 !important;
}

.platform-destination svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.platform-note {
  max-width: 780px;
  margin: 18px 0 0;
  color: #5e675f;
}

.platform-note a,
.platform-note .contact-text {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: center;
}

.split > * {
  min-width: 0;
}

.split .section-head {
  margin-bottom: 0;
}

.media-panel {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-panel video,
.media-panel img {
  width: 100%;
  height: clamp(320px, 31vw, 460px);
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.home-setting-section .split {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.setting-heading,
.two-line-heading {
  font-size: clamp(22px, 7vw, 52px);
}

.setting-heading > span,
.two-line-heading > span {
  display: block;
  white-space: nowrap;
}

.setting-slider {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  background: #14271f;
  isolation: isolate;
  touch-action: pan-y;
}

.setting-slider-track,
.setting-slide {
  position: absolute;
  inset: 0;
}

.setting-slide {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

.setting-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.media-panel.setting-slider .setting-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: var(--slide-focus, center);
}

.setting-cover-panel {
  background: #f7f0e4;
}

.media-panel.setting-cover-panel img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.setting-slider::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(9, 18, 14, 0.76));
  content: "";
  pointer-events: none;
}

.setting-slider-meta {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: flex-end;
  padding: clamp(18px, 2.2vw, 28px);
  color: var(--white);
}

.setting-slider-controls {
  display: flex;
  gap: 8px;
}

.setting-slider-button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 50%;
  background: rgba(16, 30, 23, 0.62);
  color: var(--white);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.setting-slider-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.setting-slider-button:hover,
.setting-slider-button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.setting-slider-button:active {
  transform: scale(0.94);
}

@media (max-width: 1100px) {
  .home-setting-section .split {
    grid-template-columns: 1fr;
  }

  .home-setting-section .media-panel {
    width: min(680px, 100%);
  }

  .home-setting-section .setting-slider {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 700px) {
  .home-setting-section .setting-slider {
    aspect-ratio: 4 / 3;
  }

  .setting-slider-meta {
    padding: 16px;
  }

  .setting-slider-button {
    width: 42px;
    height: 42px;
  }
}

.image-story-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.image-story-strip-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.image-story-strip-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-story-strip img {
  width: 100%;
  height: 230px;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(23, 33, 27, 0.13);
}

.image-story-strip img:nth-child(even) {
  object-position: center 38%;
}

.image-story-carousel {
  --story-gap: 12px;
  grid-column: 1 / -1;
  min-width: 0;
  margin-top: 34px;
}

.image-story-viewport {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.image-story-track {
  display: flex;
  gap: var(--story-gap);
  transform: translate3d(0, 0, 0);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.image-story-track.is-jumping {
  transition: none;
}

.image-story-slide {
  flex: 0 0 calc((100% - (var(--story-gap) * 2)) / 3);
  min-width: 0;
  margin: 0;
}

.image-story-slide img {
  width: 100%;
  height: 230px;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: var(--story-focus, center);
  box-shadow: 0 14px 34px rgba(23, 33, 27, 0.13);
}

.image-story-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.image-story-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  appearance: none;
  border: 1px solid rgba(29, 64, 49, 0.28);
  border-radius: 50%;
  padding: 0;
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.image-story-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.image-story-button:hover,
.image-story-button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.image-story-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.image-story-button:active {
  transform: scale(0.94);
}

.image-story-icon-play,
.image-story-toggle.is-paused .image-story-icon-pause {
  display: none;
}

.image-story-toggle.is-paused .image-story-icon-play {
  display: block;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .image-story-slide {
    flex-basis: calc((100% - var(--story-gap)) / 2);
  }
}

@media (max-width: 700px) {
  .image-story-carousel {
    margin-top: 28px;
  }

  .image-story-slide {
    flex-basis: 100%;
  }

  .image-story-slide img {
    height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .image-story-track {
    transition: none;
  }
}

.contact-location-strip {
  margin-top: 12px;
}

.list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.mark {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--clay);
  color: var(--white);
  font-weight: 900;
}

.cta-band {
  padding: 56px 0;
  background: var(--forest);
  color: var(--white);
}

.cta-inner {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner p {
  max-width: 640px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.page-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  padding: 64px 0;
  isolation: isolate;
  overflow: hidden;
  background: #17271f;
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(17, 29, 23, 0.9), rgba(17, 29, 23, 0.48));
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero > .container > .eyebrow {
  color: #e7b957;
}

.page-hero-accommodation .page-hero-picture img {
  object-position: 54% 36%;
}

.page-hero-activities .page-hero-picture img {
  object-position: 58% 50%;
}

.page-hero-gallery {
  min-height: clamp(520px, 34vw, 620px);
  background: #0c1712;
}

.page-hero-gallery::after {
  background:
    linear-gradient(
      90deg,
      rgba(7, 14, 10, 0.96) 0%,
      rgba(7, 14, 10, 0.88) 32%,
      rgba(7, 14, 10, 0.56) 55%,
      rgba(7, 14, 10, 0.2) 74%,
      rgba(7, 14, 10, 0.08) 100%
    ),
    linear-gradient(0deg, rgba(7, 14, 10, 0.62) 0%, rgba(7, 14, 10, 0) 52%);
}

.gallery-hero-collage {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(210px, 0.45fr) minmax(210px, 0.45fr);
  gap: 3px;
  background: #c99b45;
}

.gallery-hero-frame {
  min-width: 0;
  min-height: 0;
  display: block;
  overflow: hidden;
  background: #17271f;
}

.gallery-hero-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.002);
}

.gallery-hero-frame-main img {
  object-position: 50% 48%;
}

.gallery-hero-frame-hot-tub img {
  object-position: 68% center;
}

.gallery-hero-frame-event img {
  object-position: 57% center;
}

.page-hero-gallery .hero-title {
  max-width: 760px;
}

.page-hero-gallery p {
  max-width: 690px;
}

.page-hero-about .page-hero-picture img {
  object-position: 58% 50%;
}

.page-hero-information {
  background: #10251d;
}

.page-hero-information .page-hero-picture img {
  object-position: 50% 35%;
}

.page-hero-information::after {
  background:
    linear-gradient(
      90deg,
      rgba(7, 22, 16, 0.95) 0%,
      rgba(7, 22, 16, 0.88) 38%,
      rgba(7, 22, 16, 0.58) 66%,
      rgba(7, 22, 16, 0.38) 100%
    ),
    linear-gradient(0deg, rgba(7, 22, 16, 0.36), rgba(7, 22, 16, 0.08) 58%);
}

.page-hero-contact {
  background:
    radial-gradient(circle at 82% 22%, rgba(201, 155, 69, 0.2), transparent 24%),
    radial-gradient(circle at 68% 72%, rgba(255, 255, 255, 0.06), transparent 25%),
    linear-gradient(128deg, #10251d 0%, #214536 58%, #2c5946 100%);
}

.page-hero-contact::after {
  background:
    linear-gradient(90deg, rgba(10, 25, 19, 0.76), rgba(10, 25, 19, 0.2)),
    repeating-linear-gradient(135deg, transparent 0 28px, rgba(255, 255, 255, 0.025) 28px 29px);
}

.page-hero p {
  max-width: none;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(18px, 1.18vw, 20px);
  white-space: normal;
}

@media (max-width: 980px) {
  .page-hero p,
  .hero-copy {
    max-width: 760px;
    white-space: normal;
  }
}

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

.page-hero-actions .button {
  width: fit-content;
}

.gallery-section {
  background:
    radial-gradient(circle at 92% 4%, rgba(201, 155, 69, 0.12), transparent 24%),
    #101713;
  color: var(--white);
}

.section.gallery-section {
  padding-bottom: clamp(44px, 5vw, 64px);
}

.dark-heading-accent {
  display: block;
  color: #e7b957;
  font-family: var(--font-romantic);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: none;
}

.gallery-project-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.gallery-project-heading .eyebrow {
  color: #e7b957;
}

.gallery-project-heading h2 {
  color: var(--white);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
}

.gallery-toolbar {
  margin-bottom: 28px;
}

.gallery-filters {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  overflow-x: auto;
  padding: 2px 0 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-filters::-webkit-scrollbar {
  display: none;
}

.gallery-filter {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 1px solid transparent;
  padding: 8px 0 9px;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.gallery-filter:hover,
.gallery-filter:focus-visible,
.gallery-filter.is-active {
  border-bottom-color: #e7b957;
  color: var(--white);
}

.gallery-filter:focus-visible {
  outline: 2px solid #e7b957;
  outline-offset: 5px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.gallery-mosaic {
  grid-auto-flow: dense;
  grid-auto-rows: 88px;
}

.gallery-project-grid {
  display: block;
  column-count: var(--gallery-column-count, 4);
  column-gap: 16px;
}

.gallery-item {
  min-height: 0;
  grid-column: span 3;
  grid-row: span 3;
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #d5d8ce;
  box-shadow: 0 16px 36px rgba(23, 33, 27, 0.12);
  isolation: isolate;
}

.gallery-project-grid .gallery-item {
  width: 100%;
  height: auto;
  margin: 0 0 16px;
  display: block;
  grid-column: auto;
  grid-row: auto;
  break-inside: avoid;
  vertical-align: top;
  border-radius: 9px;
  background: #26352d;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.gallery-project-grid .gallery-item[hidden] {
  display: none !important;
}

.gallery-item.wide {
  grid-column: span 6;
}

.gallery-item.large {
  grid-column: span 6;
  grid-row: span 5;
}

.gallery-item.tall {
  grid-row: span 5;
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform 280ms ease, filter 280ms ease;
}

.gallery-project-grid .gallery-item img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
}

.gallery-project-grid .gallery-item::after {
  background: linear-gradient(180deg, transparent 72%, rgba(8, 16, 12, 0.16));
}

.gallery-load-status {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-align: center;
}

.gallery-load-status[hidden] {
  display: none;
}

.gallery-loading-indicator {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid rgba(244, 194, 94, 0.28);
  border-top-color: #f4c25e;
  border-radius: 50%;
  animation: gallery-loader-spin 900ms linear infinite;
}

.gallery-load-status.is-complete .gallery-loading-indicator {
  display: none;
}

@keyframes gallery-loader-spin {
  to {
    transform: rotate(360deg);
  }
}

.gallery-more {
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
  color: var(--white);
}

.gallery-more:hover,
.gallery-more:focus-visible {
  border-color: #e7b957;
  background: #e7b957;
  color: #16251d;
}

.gallery-more[hidden] {
  display: none;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 26, 21, 0), rgba(17, 26, 21, 0.14));
  opacity: 0.75;
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.045);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.has-gallery-lightbox {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  grid-template-columns: minmax(52px, 90px) minmax(0, 1fr) minmax(52px, 90px);
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding: clamp(18px, 4vw, 48px);
  background: rgba(17, 26, 21, 0.94);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.gallery-lightbox-figure {
  grid-column: 2;
  min-width: 0;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.gallery-lightbox-image {
  display: block;
  width: auto;
  max-width: min(100%, 1120px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  background: #111a15;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.gallery-lightbox-button {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gallery-lightbox-button:hover,
.gallery-lightbox-button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--forest);
  outline: none;
}

.gallery-lightbox-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.gallery-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.gallery-lightbox-next {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}

@media (max-width: 700px) {
  .gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    align-content: center;
    padding: 68px 16px 18px;
  }

  .gallery-lightbox-figure {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
  }

  .gallery-lightbox-image {
    max-width: 100%;
    max-height: 68vh;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    grid-row: 2;
    justify-self: stretch;
    width: 100%;
  }

  .gallery-lightbox-prev {
    grid-column: 1;
  }

  .gallery-lightbox-next {
    grid-column: 2;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
    width: 46px;
    height: 46px;
  }

}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-box {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 33, 27, 0.08);
}

.contact-box a,
.contact-box .contact-text {
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.contact-detail-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(33, 69, 54, 0.1);
  color: var(--forest);
}

.contact-detail-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-detail a,
.contact-detail span:not(.contact-detail-icon) {
  display: block;
}

.contact-address-lines {
  white-space: pre-line;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-actions .button {
  min-width: 170px;
  color: var(--white);
}

.contact-actions .button.secondary {
  border-color: rgba(33, 69, 54, 0.22);
  color: var(--forest);
}

.contact-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.contact-box a.contact-social-link {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(33, 69, 54, 0.28);
  border-radius: 50%;
  background: rgba(33, 69, 54, 0.07);
  color: var(--forest);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.contact-box a.contact-social-link:hover,
.contact-box a.contact-social-link:focus-visible {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  color: var(--forest-deep);
  transform: translateY(-2px);
}

.contact-social-link svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 21px;
  height: 21px;
  color: currentColor;
  transform: translate(-50%, -50%);
}

.contact-social-link.facebook svg,
.contact-social-link.tiktok svg {
  fill: currentColor;
}

.contact-social-link.instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
}

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

.form-grid label {
  display: grid;
  gap: 7px;
  color: #4d584f;
  font-size: 13px;
  font-weight: 800;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

input,
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(23, 33, 27, 0.18);
  border-radius: 8px;
  padding: 10px 12px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.form-note {
  margin: 12px 0 0;
  color: #697269;
  font-size: 13px;
}

.site-footer {
  background: #111a15;
  color: rgba(255, 255, 255, 0.78);
  padding: 58px 0 28px;
}

.footer-grid {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(260px, 1.25fr)
    minmax(145px, 0.72fr)
    minmax(235px, 1.12fr)
    minmax(250px, 1.18fr);
  align-items: start;
  gap: 32px;
}

.footer-brand-column p {
  max-width: 340px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-top: 18px;
}

.footer-social-label {
  margin-right: 2px;
  color: #e7b957;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.footer-social-links .footer-social-link {
  position: relative;
  width: 38px;
  min-width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  justify-content: initial;
  margin-top: 0;
  border: 1px solid rgba(244, 194, 94, 0.52);
  border-radius: 50%;
  background: rgba(244, 194, 94, 0.07);
  padding: 0;
  line-height: 0;
  color: var(--gold-bright);
}

.footer-social-link > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.footer-social-links .footer-social-link:hover,
.footer-social-links .footer-social-link:focus-visible {
  border-color: var(--gold-bright);
  background: var(--gold-bright);
  color: var(--forest-deep);
  transform: translateY(-2px);
}

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

.footer-brand {
  width: 260px;
  max-width: 100%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.footer-brand img {
  display: block;
  width: 260px;
  height: auto;
  max-width: 100%;
  filter: brightness(0) invert(1);
}

.footer-brand-tagline {
  width: 100%;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.footer-grid h3 {
  color: var(--white);
  font-size: 15px;
}

.footer-grid a,
.footer-grid .contact-text {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-grid a.footer-link {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 10px;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.footer-link-arrow svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 19px;
  display: block;
  flex: none;
  flex-basis: 19px;
  margin: 0;
  transform: translate(-50%, -50%);
  transform-origin: center;
  color: currentColor;
}

.footer-social-link.tiktok svg {
  width: 21px;
  height: 21px;
  flex-basis: 21px;
}

.footer-contact-link svg {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-link .contact-text {
  display: inline;
  margin-top: 0;
}

.footer-social-link.facebook svg,
.footer-social-link.tiktok svg {
  fill: currentColor;
  stroke: none;
}

.footer-social-link.instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
}

.footer-link:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  width: min(var(--site-width), calc(100% - 32px));
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.footer-bottom > :first-child {
  justify-self: start;
}

.footer-bottom > :last-child {
  justify-self: end;
  text-align: right;
}

.footer-bottom strong {
  color: var(--white);
}

.footer-bottom a.footer-credit-link {
  color: var(--white);
  text-decoration-color: rgba(244, 194, 94, 0.72);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms ease;
}

.footer-bottom a.footer-credit-link:hover,
.footer-bottom a.footer-credit-link:focus-visible {
  color: var(--gold-bright);
}

@media (max-width: 1120px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-social-links {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }
}

@media (max-width: 700px) {
  .footer-social-links {
    display: flex;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom > :first-child,
  .footer-bottom > :last-child {
    justify-self: center;
    text-align: center;
  }
}

@media (min-width: 1181px) {
  .hero-copy-break {
    display: initial;
  }
}

@media (max-width: 1180px) {
  .hero-copy-break {
    display: none;
  }
}

.note-panel {
  padding: 22px;
  border-left: 4px solid var(--clay);
  background: #fff4ea;
  border-radius: 8px;
  color: #51453c;
}

.note-panel p {
  margin: 8px 0 0;
}

@media (max-width: 1010px) {
  .gallery-project-grid {
    column-count: 3;
  }

  .nav-wrap {
    gap: 12px;
  }

  .nav-toggle {
    display: inline-block;
    order: 3;
  }

  .site-nav {
    position: absolute;
    top: 108px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--paper);
    border: 1px solid rgba(23, 33, 27, 0.12);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    display: flex;
    margin-left: auto;
    order: 2;
  }

  .header-actions .button {
    padding: 0 14px;
    white-space: nowrap;
  }

  .hero-facts,
  .platform-grid,
  .grid.four,
  .grid.three,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .media-panel video,
  .media-panel img {
    height: min(52vw, 420px);
  }

  .visual-card,
  .visual-card.wide,
  .visual-card.tall,
  .visual-grid.three-inline .visual-card,
  .visual-grid.three-inline .visual-card.wide {
    grid-column: span 6;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero .hero-inner-copy-only {
    grid-template-columns: minmax(0, 620px);
  }

  .hero-media {
    justify-self: start;
    width: min(320px, 100%);
    min-width: 0;
  }

  .video-panel {
    grid-template-columns: 1fr;
  }

  .gallery-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 82px;
  }

  .image-story-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .image-story-strip-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item {
    grid-column: span 3;
    grid-row: span 3;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 6;
  }

  .gallery-item.tall {
    grid-row: span 4;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .fact:nth-child(2n) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 700px) {
  .home-hero-sunset img {
    object-position: 38% 32%;
  }

  .gallery-project-grid {
    column-count: var(--gallery-column-count, 2);
    column-gap: 12px;
  }

  .gallery-project-grid .gallery-item {
    margin-bottom: 12px;
  }

  .gallery-project-heading {
    margin-bottom: 28px;
  }

  .gallery-filter {
    font-size: 13px;
  }

  .pre-header-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 7px;
    padding: 8px 0;
    text-align: center;
  }

  .pre-header-email {
    justify-self: center;
  }

  .pre-header-social {
    flex-wrap: wrap;
  }

  .nav-wrap {
    min-height: 84px;
    gap: 8px;
  }

  .brand img {
    width: 100%;
  }

  .brand {
    width: clamp(132px, 40vw, 170px);
  }

  .brand-tagline {
    font-size: clamp(6.8px, 2vw, 9px);
    letter-spacing: 0.01em;
  }

  .header-actions .button {
    min-height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 84px;
  }

  .hero {
    min-height: 0;
    display: block;
    background: #101b15;
  }

  .hero-slides {
    height: var(--hero-mobile-media-height);
    bottom: auto;
  }

  .hero-slide-ambient {
    display: none;
  }

  .hero-slide-foreground {
    width: 100%;
    justify-content: center;
    filter: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-slide-foreground img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero::after {
    background: linear-gradient(
      180deg,
      rgba(6, 12, 8, 0) 0,
      rgba(6, 12, 8, 0.04) calc(var(--hero-mobile-media-height) - 44px),
      rgba(6, 12, 8, 0.94) calc(var(--hero-mobile-media-height) + 26px),
      rgba(6, 12, 8, 0.98) 100%
    );
  }

  .hero-inner {
    padding: calc(var(--hero-mobile-media-height) + 38px) 0 56px;
  }

  .hero .hero-inner-copy-only {
    grid-template-columns: 1fr;
  }

  .hero-media {
    width: min(240px, 100%);
  }

  .hero-title {
    font-size: clamp(22px, 6.4vw, 38px);
    line-height: 1;
  }

  .page-hero .eyebrow {
    display: none;
  }

  .page-hero::after {
    background: linear-gradient(180deg, rgba(17, 29, 23, 0.74), rgba(17, 29, 23, 0.56));
  }

  .page-hero-accommodation .page-hero-picture img {
    object-position: 68% 50%;
  }

  .page-hero-activities .page-hero-picture img {
    object-position: 64% 50%;
  }

  .page-hero-about .page-hero-picture img {
    object-position: 62% 50%;
  }

  .page-hero-information .page-hero-picture img {
    object-position: 66% 50%;
  }

  .page-hero-information::after {
    background: linear-gradient(180deg, rgba(7, 22, 16, 0.68), rgba(7, 22, 16, 0.88));
  }

  .page-hero-contact::after {
    background:
      linear-gradient(180deg, rgba(10, 25, 19, 0.72), rgba(10, 25, 19, 0.42)),
      repeating-linear-gradient(135deg, transparent 0 28px, rgba(255, 255, 255, 0.025) 28px 29px);
  }

  .hero-facts,
  .platform-grid,
  .platform-grid.booking-grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .split,
  .contact-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .media-panel video,
  .media-panel img {
    height: min(64vw, 320px);
  }

  .visual-card,
  .visual-card.wide,
  .visual-card.tall,
  .visual-grid.three-inline .visual-card,
  .visual-grid.three-inline .visual-card.wide {
    grid-column: 1 / -1;
  }

  .visual-grid.three-inline .visual-card {
    height: 332px;
  }

  .section {
    padding: 64px 0;
  }

  .gallery,
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-item,
  .gallery-item.wide,
  .gallery-item.large,
  .gallery-item.tall {
    min-height: 0;
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-item.wide,
  .gallery-item.large {
    aspect-ratio: 16 / 10;
  }

  .gallery-item.tall {
    aspect-ratio: 3 / 4;
  }

  .image-story-strip,
  .image-story-strip-three,
  .image-story-strip-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-story-strip img {
    height: 180px;
  }

  .hero-actions,
  .cta-inner .hero-actions,
  .contact-actions,
  .page-hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .page-hero-actions .button {
    width: 100%;
  }

  .header-actions .button {
    width: auto;
  }

  .fact,
  .fact:nth-child(2n),
  .fact:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .hero-facts {
    margin-top: -32px;
  }

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

@media (min-width: 370px) and (max-width: 700px) {
  .hero .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .hero-actions .button {
    width: auto;
    padding-inline: 10px;
    font-size: 13px;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .brand {
    width: 130px;
  }

  .brand-tagline {
    font-size: 6.2px;
    letter-spacing: 0;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 0 8px;
    font-size: 12px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .image-story-strip,
  .image-story-strip-three,
  .image-story-strip-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-project-grid {
    column-count: var(--gallery-column-count, 1);
  }

  .gallery-filters {
    gap: 24px;
  }
}

.button:hover,
.button:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(201, 155, 69, 0.3);
  transform: translateY(-1px);
}

.button.ghost:hover,
.button.ghost:focus-visible,
.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.information-document-actions .button,
.information-document-actions .button:visited {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(33, 69, 54, 0.2);
}

.information-document-actions .button:hover,
.information-document-actions .button:focus-visible {
  border-color: #101713;
  background: #101713;
  color: var(--white);
  box-shadow: 0 12px 28px rgba(16, 23, 19, 0.3);
}

.button:focus-visible {
  outline: 2px solid #f4c25e;
  outline-offset: 3px;
}

.button:active {
  box-shadow: 0 5px 14px rgba(201, 155, 69, 0.24);
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .gallery-item img,
  .gallery-item video {
    transition: none;
  }

  .button {
    transition: none;
  }

  .button:hover,
  .button:focus-visible,
  .button:active {
    transform: none;
  }
}

/* Final typography scale */
:root {
  --body-size: 16px;
  --button-size: 15px;
}

body {
  font-size: var(--body-size);
}

p,
li,
dd,
input,
select,
textarea,
.hero-copy,
.page-hero p,
.section-head p,
.fact span,
.visual-card-content p,
.card-body p,
.video-panel-copy p,
.platform-copy span,
.platform-note,
.contact-box,
.contact-detail a,
.contact-detail span:not(.contact-detail-icon),
.footer-grid a,
.footer-grid .contact-text {
  font-size: var(--body-size);
}

@media (min-width: 1181px) {
  .hero-inner-copy-only {
    grid-template-columns: minmax(0, 760px);
  }

  .hero-copy-block {
    max-width: 760px;
  }

  .hero-copy {
    max-width: 760px;
    font-size: 19px;
    white-space: normal;
  }

  .page-hero p {
    max-width: none;
    font-size: 19px;
    white-space: nowrap;
  }
}

button,
.button,
.button.small,
.header-actions .button,
.stay-option-card .button.secondary,
.page-hero-actions .button,
.contact-actions .button,
.gallery-filter {
  font-size: var(--button-size);
}

.form-grid label,
.form-note {
  font-size: var(--body-size);
}

.hero-copy,
.page-hero p {
  font-size: clamp(18px, 1.32vw, 19px);
}

/* Final visual-breathing pass */
:root {
  --gold: #d8a53e;
  --gold-bright: #f4c25e;
  --gold-soft: rgba(216, 165, 62, 0.16);
  --forest-deep: #10271e;
  --shadow: 0 24px 64px rgba(23, 33, 27, 0.16);
}

body {
  background:
    radial-gradient(circle at 8% 28%, rgba(216, 165, 62, 0.08), transparent 28%),
    linear-gradient(180deg, #fffaf1 0%, #fcf3e6 100%);
}

.section {
  position: relative;
  padding: clamp(88px, 7.4vw, 118px) 0;
}

.section.alt {
  background:
    radial-gradient(circle at 92% 8%, rgba(216, 165, 62, 0.17), transparent 26%),
    radial-gradient(circle at 8% 88%, rgba(33, 69, 54, 0.08), transparent 30%),
    linear-gradient(135deg, #f5ead8 0%, #fbf3e7 54%, #f1e2c9 100%);
}

.section-head {
  max-width: 880px;
  margin-bottom: clamp(38px, 4vw, 54px);
}

.section-head h2::after {
  width: 74px;
  height: 3px;
  display: block;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  box-shadow: 0 5px 18px rgba(216, 165, 62, 0.3);
  content: "";
}

.eyebrow {
  color: #bd8420;
}

.button {
  border-color: rgba(244, 194, 94, 0.3);
  box-shadow: 0 10px 24px rgba(16, 39, 30, 0.12);
}

.button.secondary {
  border-color: rgba(216, 165, 62, 0.38);
}

.visual-grid {
  gap: clamp(16px, 1.6vw, 24px);
}

.visual-card {
  min-height: clamp(340px, 27vw, 390px);
  border: 1px solid rgba(23, 33, 27, 0.14);
  box-shadow: 0 20px 48px rgba(16, 39, 30, 0.16);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.visual-card img,
.visual-card video {
  filter: saturate(1.04) contrast(1.02);
  transition:
    filter 520ms ease,
    transform 520ms ease;
}

.visual-card:hover {
  border-color: rgba(33, 69, 54, 0.34);
  box-shadow: 0 28px 66px rgba(16, 39, 30, 0.24);
  transform: translateY(-5px);
}

.visual-card:hover img,
.visual-card:hover video {
  filter: saturate(1.12) contrast(1.03);
  transform: scale(1.05);
}

.visual-card-content::before {
  width: 42px;
  height: 3px;
  display: block;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--gold-bright);
  content: "";
}

.card,
.platform-card,
.contact-box {
  border: 1px solid rgba(23, 33, 27, 0.1);
  box-shadow: 0 18px 44px rgba(23, 33, 27, 0.1);
  transition:
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.card:hover,
.contact-box:hover {
  border-color: rgba(33, 69, 54, 0.24);
  box-shadow: 0 26px 58px rgba(23, 33, 27, 0.15);
  transform: translateY(-4px);
}

.card-media img,
.card-media video {
  transition: transform 520ms ease;
}

.card:hover .card-media img,
.card:hover .card-media video {
  transform: scale(1.04);
}

.card-body {
  padding: clamp(26px, 2.4vw, 34px);
}

.stay-options-section .grid.two {
  gap: clamp(18px, 2vw, 28px);
}

.stay-option-card {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 96% 0%, rgba(244, 194, 94, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 52%),
    var(--stay-card-bg, var(--forest));
}

.stay-option-card .card-body {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.stay-option-card .card-body p:first-of-type strong {
  color: #ffd77d;
}

.stay-option-card .lead-actions {
  margin-top: auto;
  padding-top: 24px;
}

.stay-option-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 194, 94, 0.3), transparent 34%),
    linear-gradient(115deg, #173e2f 0%, #286247 72%, #7c662d 145%);
}

.stay-option-card:last-child:nth-child(odd) .card-body {
  min-height: 220px;
  padding: clamp(30px, 3vw, 42px);
}

.stay-option-card:last-child:nth-child(odd) .card-body p:last-of-type {
  max-width: 980px;
}

.detail-icon {
  background: rgba(216, 165, 62, 0.18);
  color: #9d6c17;
}

.mark {
  background: var(--gold);
  color: var(--ink);
}

.notice-card,
.note-panel {
  border-left-color: transparent;
  background:
    radial-gradient(circle at 96% 8%, rgba(216, 165, 62, 0.15), transparent 30%),
    #fff8ed;
}

.cta-band {
  position: relative;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  background:
    radial-gradient(circle at 82% 28%, rgba(244, 194, 94, 0.28), transparent 28%),
    linear-gradient(118deg, var(--forest-deep), #24543f 72%, #6c5929 150%);
}

.site-footer {
  border-top: 3px solid transparent;
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 165, 62, 0.1), transparent 26%),
    #111a15;
}

.footer-grid h3 {
  color: var(--gold-bright);
}

.camp-sites-section {
  background: #f3eadc;
}

.camp-sites-section .split {
  align-items: stretch;
}

.camp-sites-section .section-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 24px) 0;
}

.camp-primary-rate {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
  margin: 24px 0 0;
  color: var(--ink);
}

.camp-primary-rate strong {
  color: var(--forest);
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
}

.camp-primary-rate span {
  color: #59645d;
  font-size: 15px;
}

.camp-sites-section .camp-sites-intro {
  max-width: 590px;
  margin-top: 18px;
}

.camp-rate-list {
  max-width: 560px;
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid rgba(23, 33, 27, 0.14);
}

.camp-rate-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 33, 27, 0.14);
}

.camp-rate-list li > span {
  color: #48554d;
}

.camp-rate-list strong {
  color: var(--forest);
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.camp-sites-section .notice-card {
  align-self: center;
  display: flex;
  align-items: center;
  min-height: clamp(380px, 31vw, 460px);
  border: 0;
  border-radius: 10px;
  background: #18382c;
  box-shadow: none;
  color: var(--white);
}

.camp-sites-section .notice-card .card-body {
  width: 100%;
  min-height: 0;
  padding: clamp(40px, 4.5vw, 64px);
}

.camp-sites-section .notice-card .detail-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  background: transparent;
  color: var(--gold-bright);
}

.camp-sites-section .notice-card h3 {
  max-width: 520px;
  color: var(--white);
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1.12;
}

.camp-sites-section .notice-card p {
  max-width: 650px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.camp-sites-highlight {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(244, 194, 94, 0.28), transparent 27%),
    linear-gradient(135deg, #f4e5ca 0%, #fff8ed 54%, #ead4aa 100%);
}

.camp-sites-highlight::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright), var(--forest));
}

.camp-sites-highlight .split {
  position: relative;
  padding: clamp(26px, 3.5vw, 54px);
  border: 1px solid rgba(157, 108, 23, 0.28);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 28px 70px rgba(43, 36, 23, 0.14);
}

.camp-sites-highlight .section-head {
  padding: 0;
}

.camp-sites-highlight .eyebrow {
  align-self: flex-start;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gold-bright);
  box-shadow: 0 9px 24px rgba(157, 108, 23, 0.2);
  color: var(--forest-deep);
}

.camp-sites-highlight .notice-card {
  border: 1px solid rgba(244, 194, 94, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 194, 94, 0.17), transparent 30%),
    linear-gradient(145deg, #123429, #1e5741);
  box-shadow: 0 24px 54px rgba(15, 39, 30, 0.24);
}

.camp-sites-highlight .notice-card h3 {
  color: var(--gold-bright);
}

.card-media img.card-image-focus-night {
  object-position: center 56%;
}

.card-media img.card-image-focus-hot-tub {
  object-position: center bottom;
}

.camp-sites-note-card {
  display: flex;
  align-items: center;
  min-height: 0;
  border: 1px solid rgba(244, 194, 94, 0.42);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 12%, rgba(244, 194, 94, 0.17), transparent 30%),
    linear-gradient(145deg, #123429, #1e5741);
  box-shadow: 0 24px 54px rgba(15, 39, 30, 0.24);
  color: var(--white);
}

.camp-sites-note-card .card-body {
  width: 100%;
  min-height: 0;
  padding: clamp(36px, 4vw, 58px);
}

.camp-sites-note-card .detail-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  background: transparent;
  color: var(--gold-bright);
}

.camp-sites-note-card h3 {
  max-width: 760px;
  color: var(--gold-bright);
  font-size: clamp(26px, 2.3vw, 36px);
  line-height: 1.12;
}

.camp-sites-note-card p {
  max-width: 900px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.7;
}

.information-camp-site-note {
  margin-top: 24px;
}

.directions-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.directions-kicker .eyebrow {
  margin: 0;
}

.directions-kicker-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(189, 132, 32, 0.38);
  border-radius: 999px;
  background: rgba(244, 194, 94, 0.2);
  color: #9f6c14;
}

.directions-kicker-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.activities-grid-section--lead {
  padding-bottom: clamp(48px, 4vw, 68px);
}

.activities-grid-section--trail {
  padding-top: clamp(48px, 4vw, 68px);
}

.activities-grid-section--lead + .camp-sites-highlight,
.camp-sites-highlight + .activities-grid-section--trail {
  margin-top: 0;
}

.reveal-item.is-reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-item.is-reveal-ready.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .camp-sites-section .split {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 72px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2::after {
    width: 58px;
    margin-top: 16px;
  }

  .visual-card {
    min-height: 330px;
  }

  .stay-option-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .stay-option-card .card-body,
  .stay-option-card:last-child:nth-child(odd) .card-body {
    min-height: 0;
  }

  .camp-rate-list li {
    gap: 14px;
  }

  .camp-sites-section h2 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.05;
  }

  .camp-sites-section .notice-card {
    min-height: 0;
  }

  .camp-sites-section .notice-card .card-body {
    padding: 32px 26px;
  }

  .camp-sites-note-card .card-body {
    padding: 32px 26px;
  }
}

@media (max-width: 980px) {
  .gallery-hero-collage {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  }

  .gallery-hero-frame-event {
    display: none;
  }

  .page-hero-gallery::after {
    background:
      linear-gradient(
        90deg,
        rgba(7, 14, 10, 0.94) 0%,
        rgba(7, 14, 10, 0.82) 46%,
        rgba(7, 14, 10, 0.32) 76%,
        rgba(7, 14, 10, 0.12) 100%
      ),
      linear-gradient(0deg, rgba(7, 14, 10, 0.68), rgba(7, 14, 10, 0) 56%);
  }
}

@media (max-width: 720px) {
  .page-hero-gallery {
    min-height: 560px;
    align-items: end;
    padding: 92px 0 52px;
  }

  .gallery-hero-collage {
    display: block;
    background: #17271f;
  }

  .gallery-hero-frame-main {
    height: 100%;
  }

  .gallery-hero-frame-hot-tub,
  .gallery-hero-frame-event {
    display: none;
  }

  .gallery-hero-frame-main img {
    object-position: 54% center;
  }

  .page-hero-gallery::after {
    background:
      linear-gradient(
        180deg,
        rgba(7, 14, 10, 0.3) 0%,
        rgba(7, 14, 10, 0.56) 42%,
        rgba(7, 14, 10, 0.94) 100%
      ),
      linear-gradient(90deg, rgba(7, 14, 10, 0.52), rgba(7, 14, 10, 0.14));
  }
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 12px 0 0;
  color: #59665d;
}

.form-status:empty {
  display: none;
}

form[aria-busy="true"] .button[type="submit"] {
  cursor: wait;
  opacity: 0.78;
}

@media (prefers-reduced-motion: reduce) {
  .visual-card,
  .visual-card img,
  .visual-card video,
  .card,
  .card-media img,
  .card-media video,
  .contact-box,
  .reveal-item.is-reveal-ready {
    transition: none;
  }

  .visual-card:hover,
  .card:hover,
  .contact-box:hover,
  .reveal-item.is-reveal-ready,
  .reveal-item.is-reveal-ready.is-revealed {
    opacity: 1;
    transform: none;
  }

  .gallery-loading-indicator {
    animation: none;
  }
}

.gallery-project-grid {
  display: grid;
  grid-template-columns: repeat(var(--gallery-column-count, 4), minmax(0, 1fr));
  grid-auto-flow: row;
  grid-auto-rows: auto;
  gap: 16px;
  column-count: auto;
}

.gallery-project-grid .gallery-item {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  align-self: stretch;
  grid-row-end: auto;
  margin: 0;
}

.gallery-project-grid .gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

@media (max-width: 700px) {
  .gallery-project-grid {
    grid-template-columns: repeat(var(--gallery-column-count, 2), minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .gallery-project-grid {
    grid-template-columns: repeat(var(--gallery-column-count, 1), minmax(0, 1fr));
  }
}

/* Reusable experience-card dialog. See the matching contract in assets/js/main.js. */
template[data-experience-template] {
  display: none !important;
}

button[data-experience-open] {
  cursor: pointer;
}

button[data-experience-open].activity-card-link {
  appearance: none;
  padding: 0;
  border: 0;
  background: transparent;
}

body.experience-modal-open {
  overflow: hidden;
  overscroll-behavior: contain;
}

.experience-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(7, 14, 10, 0.78);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 0s linear 180ms;
}

.experience-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s, 0s;
}

.experience-modal__dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  border: 1px solid rgba(216, 165, 62, 0.38);
  border-radius: 12px;
  background: var(--paper, #fffaf1);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  color: var(--ink, #17211b);
  transform: translateY(12px) scale(0.99);
  transition: transform 180ms ease;
}

.experience-modal.is-open .experience-modal__dialog {
  transform: translateY(0) scale(1);
}

.experience-modal__close,
.experience-modal__nav {
  appearance: none;
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(216, 165, 62, 0.55);
  border-radius: 999px;
  background: var(--paper, #fffaf1);
  color: var(--forest-deep, #10271e);
  font: inherit;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    border-color 150ms ease,
    color 150ms ease,
    transform 150ms ease;
}

.experience-modal__close:hover,
.experience-modal__nav:hover {
  border-color: var(--gold, #d8a53e);
  background: var(--gold, #d8a53e);
  color: var(--forest-deep, #10271e);
  transform: translateY(-1px);
}

.experience-modal__close:focus-visible,
.experience-modal__nav:focus-visible {
  outline: 3px solid var(--gold-bright, #f4c25e);
  outline-offset: 3px;
}

.experience-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  font-size: 1.75rem;
}

.experience-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.experience-modal__body.is-copy-only {
  display: block;
}

.experience-modal__media {
  align-self: start;
  position: sticky;
  top: 0;
  min-width: 0;
  padding: 24px;
  background: var(--forest-deep, #10271e);
  color: var(--white, #ffffff);
}

.experience-modal__track {
  min-width: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.experience-modal__slide {
  width: 100%;
  margin: 0;
  background: rgba(255, 255, 255, 0.06);
}

.experience-modal__slide[hidden] {
  display: none !important;
}

.experience-modal__slide picture {
  display: block;
}

.experience-modal__slide img {
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: cover;
  object-position: center;
}

.experience-modal__slide figcaption {
  padding: 10px 14px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.45;
}

.experience-modal__controls {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.experience-modal__controls.has-single-image {
  grid-template-columns: minmax(0, 1fr);
}

.experience-modal__nav {
  background: transparent;
  color: var(--white, #ffffff);
}

.experience-modal__nav[hidden] {
  display: none !important;
}

.experience-modal__status {
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.experience-modal__copy {
  min-width: 0;
  padding: clamp(64px, 7vw, 88px) clamp(24px, 4vw, 56px) clamp(32px, 5vw, 64px);
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 0.35vw + 0.93rem, 1.1rem);
  line-height: 1.72;
}

.experience-modal__body.is-copy-only .experience-modal__copy {
  width: min(780px, 100%);
  margin: 0 auto;
}

.experience-modal__copy > :first-child,
.experience-modal__copy > :first-child > :first-child {
  margin-top: 0;
}

.experience-modal__copy > :last-child,
.experience-modal__copy > :last-child > :last-child {
  margin-bottom: 0;
}

.experience-modal__title {
  margin: 0 0 20px;
  color: var(--forest-deep, #10271e);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
  line-height: 1.12;
  text-wrap: balance;
}

.experience-modal__copy p,
.experience-modal__copy [data-experience-copy] {
  display: block !important;
  max-height: none !important;
  overflow: visible !important;
  white-space: normal !important;
  text-overflow: clip !important;
  -webkit-box-orient: initial !important;
  -webkit-line-clamp: unset !important;
}

.experience-modal__copy p {
  margin: 0 0 1em;
}

.experience-modal__copy ul,
.experience-modal__copy ol {
  margin: 0 0 1.25em;
  padding-inline-start: 1.35em;
}

.experience-modal__copy a {
  color: var(--forest, #214536);
  font-weight: 700;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.experience-modal__dialog--poster {
  width: min(1320px, 100%);
}

.experience-modal__dialog--poster .experience-modal__body {
  grid-template-columns: minmax(0, 2fr) minmax(340px, 0.8fr);
}

.experience-modal__dialog--poster .experience-modal__slide {
  background: #ffffff;
}

.experience-modal__dialog--poster .experience-modal__slide img {
  max-height: 72vh;
  object-fit: contain;
}

.experience-modal__dialog--poster .experience-modal__slide figcaption {
  background: var(--forest-deep, #10271e);
}

.experience-modal__dialog--poster .bird-guide-full-link {
  color: var(--gold-bright, #f4c25e);
}

.experience-modal__dialog--poster .experience-modal__copy {
  padding-inline: clamp(28px, 3vw, 42px);
}

.experience-modal__dialog--poster .experience-modal__title {
  overflow-wrap: normal;
  word-break: normal;
}

/* Activity-only glass gallery: accommodation and any future shared dialogs retain their own surface. */
.experience-modal--activities {
  background:
    radial-gradient(circle at 18% 16%, rgba(64, 126, 93, 0.2), transparent 42%),
    rgba(4, 15, 10, 0.76);
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
}

.experience-modal--activities .experience-modal__dialog {
  border-color: rgba(244, 194, 94, 0.38);
  border-radius: 24px;
  background: rgba(15, 49, 35, 0.96);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.experience-modal--activities .experience-modal__dialog::before {
  content: none;
}

.experience-modal--activities .experience-modal__body {
  position: relative;
  z-index: 2;
  scrollbar-gutter: auto;
}

.experience-modal--activities .experience-modal__close {
  z-index: 4;
}

.experience-modal--activities .experience-modal__media {
  min-height: 100%;
  background:
    radial-gradient(circle at 18% 8%, rgba(79, 141, 108, 0.24), transparent 44%),
    linear-gradient(145deg, rgba(8, 36, 25, 0.94), rgba(12, 44, 31, 0.82));
  box-shadow: inset -1px 0 rgba(255, 255, 255, 0.08);
}

.experience-modal--activities .experience-modal__track {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(3, 13, 9, 0.42);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.experience-modal--activities .experience-modal__slide {
  display: grid;
  place-items: center;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.experience-modal--activities .experience-modal__slide picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.experience-modal--activities .experience-modal__slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.experience-modal--activities .experience-modal__slide > img {
  position: absolute;
  inset: 0;
}

.experience-modal--activities .experience-modal__copy {
  color: #173126;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.66), transparent 42%),
    linear-gradient(145deg, rgba(240, 247, 239, 0.96), rgba(218, 232, 222, 0.92));
  box-shadow:
    inset 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 1px rgba(255, 255, 255, 0.78);
}

.experience-modal--activities .experience-modal__title {
  color: #123528;
}

.experience-modal--activities .experience-modal__copy a {
  color: #174832;
}

.experience-modal--activities .experience-modal__close,
.experience-modal--activities .experience-modal__nav {
  border-color: rgba(244, 194, 94, 0.52);
  background: rgba(239, 246, 239, 0.9);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.experience-modal--activities .experience-modal__nav {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.experience-modal__thumbnails {
  display: grid;
  grid-template-columns: repeat(var(--experience-thumbnail-count, 3), minmax(64px, 1fr));
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.experience-modal__thumbnails::-webkit-scrollbar {
  display: none;
}

.experience-modal__thumbnail {
  appearance: none;
  position: relative;
  min-width: 0;
  min-height: 56px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: pointer;
  opacity: 0.68;
  transition:
    border-color 150ms ease,
    opacity 150ms ease,
    transform 150ms ease;
}

.experience-modal__thumbnail:hover,
.experience-modal__thumbnail.is-active {
  border-color: var(--gold-bright, #f4c25e);
  opacity: 1;
  transform: translateY(-1px);
}

.experience-modal__thumbnail:focus-visible {
  outline: 3px solid var(--gold-bright, #f4c25e);
  outline-offset: 3px;
  opacity: 1;
}

.experience-modal__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-modal__thumbnail--contain img {
  background: #ffffff;
  object-fit: contain;
}

@supports ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .experience-modal--activities .experience-modal__dialog {
    background: rgba(15, 49, 35, 0.78);
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    backdrop-filter: blur(24px) saturate(145%);
  }

  .experience-modal--activities .experience-modal__copy {
    background:
      radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.56), transparent 42%),
      linear-gradient(145deg, rgba(240, 247, 239, 0.9), rgba(218, 232, 222, 0.82));
    -webkit-backdrop-filter: blur(20px) saturate(125%);
    backdrop-filter: blur(20px) saturate(125%);
  }
}

@media (max-width: 760px) {
  .experience-modal {
    padding: 8px;
  }

  .experience-modal__dialog,
  .experience-modal__body {
    max-height: calc(100vh - 16px);
    max-height: calc(100dvh - 16px);
  }

  .experience-modal__dialog--poster .experience-modal__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-modal__dialog {
    border-radius: 8px;
  }

  .experience-modal--activities .experience-modal__dialog {
    border-radius: 16px;
  }

  .experience-modal__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .experience-modal__media {
    position: static;
    padding: 64px 16px 18px;
  }

  .experience-modal__slide img {
    max-height: 44vh;
  }

  .experience-modal__copy {
    padding: 32px 20px 40px;
  }

  .experience-modal__body.is-copy-only .experience-modal__copy {
    padding-top: 72px;
  }

  .experience-modal__close {
    top: 14px;
    right: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .experience-modal,
  .experience-modal__dialog,
  .experience-modal__close,
  .experience-modal__nav,
  .experience-modal__thumbnail {
    transition: none;
  }

  .experience-modal__dialog,
  .experience-modal.is-open .experience-modal__dialog,
  .experience-modal__close:hover,
  .experience-modal__nav:hover,
  .experience-modal__thumbnail:hover,
  .experience-modal__thumbnail.is-active {
    transform: none;
  }
}
