:root {
  --forest: #0f2419;
  --forest-mid: #1a3d2b;
  --forest-deep: #0a1811;
  --sand: #d4c4a8;
  --ivory: #f7f3eb;
  --charcoal: #1a1a1a;
  --earth: #4a3728;
  --gold: #c4a35a;
  --gold-muted: #b8956c;
  --cream: #efe8d8;
  --muted: #8a8172;
  --white: #ffffff;
  --line: rgba(196, 163, 90, .28);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
  --script: "Great Vibes", cursive;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.15; letter-spacing: .01em; margin: 0; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.container-wide { width: min(1360px, calc(100% - 32px)); margin-inline: auto; }

.eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s, box-shadow .35s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--forest); }
.btn-gold:hover { background: #d4b56a; box-shadow: 0 10px 30px rgba(196,163,90,.28); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: #163324; color: #fff; box-shadow: 0 10px 30px rgba(15,36,25,.28); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-ghost:hover { background: var(--white); color: var(--forest); }
.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--ivory); }
.btn-rect { border-radius: 2px; padding: 13px 26px; }

/* Header — Apple House style */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background .4s var(--ease), backdrop-filter .4s, box-shadow .4s;
}
.site-header.is-scrolled,
.site-header.solid {
  background: rgba(15, 36, 25, .92);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(0,0,0,.18);
}
.header-inner {
  width: min(1360px, calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.logo img {
  display: block;
  height: 64px;
  width: auto;
  max-width: min(240px, 48vw);
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
}
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop a {
  color: rgba(255,255,255,.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 0 14px;
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 28px;
  border-right: 1px solid rgba(255,255,255,.35);
}
.nav-desktop li:last-child a { border-right: 0; }
.nav-desktop a:hover,
.nav-desktop a.is-active { color: var(--gold); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.burger span,
.burger span::before,
.burger span::after {
  position: absolute; left: 11px; width: 18px; height: 1.5px; background: #fff;
  transition: .3s var(--ease);
  transform-origin: center;
}
.burger span { top: 20px; }
.burger span::before { content: ""; top: -6px; }
.burger span::after { content: ""; top: 6px; }
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--forest-deep);
  z-index: 99;
  padding: 32px 28px;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
}
.nav-mobile.open { transform: none; }
.nav-mobile a {
  display: block;
  color: var(--ivory);
  font-size: 1.4rem;
  font-family: var(--serif);
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
body.nav-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--forest-deep);
}
.hero-media, .hero-media video, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-flow {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-flow-track {
  display: flex;
  height: 100%;
  width: max-content;
  will-change: transform;
  backface-visibility: hidden;
}
.hero-flow-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.hero-flow-slide img,
.hero-flow-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: brightness(.78) saturate(.9) contrast(1.02);
  transform: scale(1.06);
  animation: heroKen 9s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroKen {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.03) translate3d(1.4%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-flow-slide img,
  .hero-flow-slide video { animation: none; transform: none; }
}
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 78px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255,255,255,.4);
  cursor: pointer;
}
.hero-dots button.on { background: var(--gold); width: 22px; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,14,10,.38) 0%, rgba(6,14,10,.2) 40%, rgba(6,14,10,.52) 100%),
    radial-gradient(800px 400px at 50% 80%, rgba(10,24,17,.22), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 110px;
  max-width: 860px;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  font-weight: 500;
  color: var(--white);
  margin: 8px 0 18px;
}
.hero-type .type-line {
  display: block;
  min-height: 1.15em;
}
.hero-type .type-cursor {
  display: inline-block;
  width: 3px;
  height: .78em;
  margin-left: 4px;
  background: var(--gold);
  vertical-align: -0.05em;
  animation: typeBlink .9s step-end infinite;
}
@keyframes typeBlink {
  50% { opacity: 0; }
}
.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(247,243,235,.88);
  max-width: 540px;
  margin: 0 auto 32px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.7); font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
}
.scroll-indicator .mouse {
  width: 22px; height: 34px; border: 1px solid rgba(255,255,255,.5); border-radius: 12px; position: relative;
}
.scroll-indicator .mouse::after {
  content: ""; position: absolute; top: 6px; left: 50%; width: 3px; height: 7px;
  margin-left: -1.5px; background: var(--gold); border-radius: 2px;
  animation: scrollDot 1.6s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(28px); animation: fadeUp .9s var(--ease) forwards; }
.reveal-d1 { animation-delay: .12s; }
.reveal-d2 { animation-delay: .28s; }
.reveal-d3 { animation-delay: .44s; }
.reveal-d4 { animation-delay: .6s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  place-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--forest);
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.page-hero .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,24,17,.5), rgba(10,24,17,.62)); }
.page-hero .inner { position: relative; z-index: 2; text-align: center; padding: 140px 20px 72px; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); color: #fff; }

/* Sections */
.section { padding: 100px 0; }
.section-dark { background: var(--forest); color: var(--ivory); }
.section-cream { background: var(--cream); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
.split-img { position: relative; overflow: hidden; min-height: 420px; }
.split-img img,
.split-img video { width: 100%; height: 100%; object-fit: cover; min-height: 480px; display: block; transition: transform 1.2s var(--ease); }
.split-img:hover img,
.split-img:hover video { transform: scale(1.06); }
.meals-section .split-img:hover img { transform: none; }
.split-img::after {
  content: ""; position: absolute; inset: 18px; border: 1px solid rgba(196,163,90,.4); pointer-events: none; z-index: 3;
}
.acc-listing .split { margin-bottom: 72px; }
.acc-listing h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.acc-listing .price { font-size: 1.35rem; }
.acc-listing .acc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.welcome-block {
  padding: 0 0 24px;
  overflow: visible;
}
.welcome-lead {
  color: var(--earth);
  margin: 12px 0 0;
}
.welcome-copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
}
.welcome-block .welcome-layout {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 28px 40px;
  align-items: stretch;
}
.welcome-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 0;
}
.welcome-copy {
  width: 100%;
}
.welcome-side > .exp-cards,
.welcome-exp-cards {
  display: none !important;
  width: 100%;
  margin: 0;
}
@media (min-width: 821px) {
  .welcome-side > .exp-cards,
  .welcome-exp-cards {
    display: grid !important;
  }
}
.welcome-more {
  margin-top: 2px;
}
.welcome-stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  background: #1c1c18;
}
.welcome-stage img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.perk-bar {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 64px));
  margin: 36px auto 56px;
  padding: 26px 28px;
  border-radius: 28px;
  background: rgba(16, 20, 16, .52);
  backdrop-filter: blur(18px) saturate(1.25);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 22px 48px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.18);
  color: var(--ivory);
}
.perk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 20px;
}
.perk-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 12px;
  align-items: start;
  text-align: left;
}
.perk-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.38);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}
.perk-grid h3 {
  font-size: .68rem;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 2px 0 6px;
  color: var(--gold);
}
.perk-grid p {
  margin: 0;
  color: rgba(247,243,235,.78);
  font-size: .82rem;
  line-height: 1.45;
}
.stay-block {
  padding-top: 32px;
}
.exp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.exp-card {
  background: #fff;
  overflow: hidden;
  text-align: center;
  padding-bottom: 4px;
  box-shadow: 0 12px 28px rgba(15,36,25,.08);
}
.exp-media {
  height: 118px;
  overflow: hidden;
  background: #1a1a1a;
}
.exp-media img,
.exp-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.exp-ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: -21px auto 10px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  position: relative;
  z-index: 1;
}
.exp-card h3 {
  font-size: 1.15rem;
  margin: 0 10px 16px;
  line-height: 1.2;
}
.exp-card p { margin: 0 10px 12px; color: var(--earth); font-size: .78rem; line-height: 1.4; }

.meals-list { list-style: none; padding: 0; margin: 20px 0 0; }
.meals-list li {
  position: relative;
  padding: 18px 0 18px 22px;
  border-top: 1px solid var(--line);
  color: var(--earth);
  font-size: .98rem;
}
.meals-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.meals-list strong {
  display: block;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.meals-frame {
  position: relative;
  align-items: stretch;
  gap: 48px;
  padding: 22px 24px;
}
.meals-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(196,163,90,.55);
  pointer-events: none;
  z-index: 3;
}
.meals-section .split-img::after {
  content: none;
}
.meals-section .split-img,
.meals-shuffle {
  min-height: 0;
  height: auto;
  align-self: stretch;
}
.meals-shuffle img {
  min-height: 0;
}
.meals-copy {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.meals-copy .meals-list {
  margin-top: 12px;
}
.meals-cta {
  margin-top: auto;
  padding-top: 22px;
}
.home-gallery {
  margin-top: 56px;
}
.home-gallery h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  margin: 6px 0 22px;
}
.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.home-gallery-cell {
  margin: 0;
}
.home-gallery-frame {
  position: relative;
  padding: 9px;
  background:
    linear-gradient(145deg, #f3e6c4 0%, #c4a35a 38%, #8a7344 72%, #f0e2b8 100%);
  box-shadow:
    0 18px 40px rgba(10, 24, 17, .12),
    inset 0 0 0 1px rgba(255, 255, 255, .28);
}
.home-gallery-frame::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, .38);
  pointer-events: none;
  z-index: 2;
}
.home-gallery-frame::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px solid rgba(26, 26, 26, .18);
  pointer-events: none;
  z-index: 2;
}
.home-gallery-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #142018;
}
.home-gallery-media img,
.home-gallery-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.05s cubic-bezier(.22, 1, .36, 1), transform 6.4s cubic-bezier(.22, 1, .36, 1);
}
.home-gallery-media img.is-on,
.home-gallery-media video.is-on {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.home-gallery-media img.is-leave,
.home-gallery-media video.is-leave {
  opacity: 0;
  transform: scale(1.04);
  z-index: 0;
}
.home-gallery-cta {
  margin-top: 26px;
  text-align: center;
}
@media (prefers-reduced-motion: reduce) {
  .home-gallery-media img,
  .home-gallery-media video {
    transition: none;
    transform: none;
  }
}
.meals-shuffle {
  isolation: isolate;
  min-height: 0;
}
.meals-shuffle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.8s cubic-bezier(.22, 1, .36, 1);
  will-change: opacity, transform;
}
.meals-shuffle img.is-on {
  opacity: 1;
  z-index: 1;
}
.meals-shuffle img.is-flow {
  animation: mealsShuffle 7.2s cubic-bezier(.22, 1, .36, 1) forwards;
}
.meals-shuffle img:nth-child(even).is-flow {
  animation-name: mealsShuffleAlt;
}
@keyframes mealsShuffle {
  from { transform: scale(1.12) translate3d(0, 2%, 0); }
  to { transform: scale(1.02) translate3d(0, -1.5%, 0); }
}
@keyframes mealsShuffleAlt {
  from { transform: scale(1.02) translate3d(0, -2%, 0); }
  to { transform: scale(1.1) translate3d(0, 1.5%, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .meals-shuffle img.is-flow { animation: none; }
}

.tour-stage {
  background: var(--forest-deep);
}
.tour-band {
  position: relative;
  min-height: min(86vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.tour-band-mid { min-height: min(68vh, 640px); }
.tour-band-media,
.tour-band-media img,
.tour-band-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.tour-band-media video { background: #0a1811; }
.tour-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,24,17,.08) 28%, rgba(10,24,17,.82) 100%);
  pointer-events: none;
}
.tour-band-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 8px 56px;
}
.tour-band-copy .eyebrow { color: var(--gold); }
.tour-band-copy h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  color: #fff;
  margin: 0 0 12px;
}
.tour-band-copy p {
  color: rgba(247,243,235,.9);
  margin: 0 auto 18px;
  max-width: 540px;
  line-height: 1.6;
}
.tour-band-note {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sand) !important;
  margin-bottom: 22px !important;
}
.tour-band .btn { margin-top: 4px; }
.tour-band-media img,
.tour-band-media video {
  transform: scale(1.04);
  transition: transform 1.6s var(--ease);
}
.tour-band:hover .tour-band-media img,
.tour-band:hover .tour-band-media video {
  transform: scale(1.08);
}
@media (prefers-reduced-motion: reduce) {
  .tour-band-media img,
  .tour-band-media video,
  .tour-band:hover .tour-band-media img,
  .tour-band:hover .tour-band-media video {
    transform: none;
    transition: none;
  }
}

.camp-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.camp-service {
  background: #fff;
  padding: 22px 20px;
  border: 1px solid var(--line);
}
.camp-service h3 { font-size: 1.35rem; margin-bottom: 8px; }
.camp-service p { margin: 0; color: var(--earth); font-size: .92rem; }

.rates-stack {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  color: var(--earth);
  font-size: .95rem;
}
.rates-stack li {
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}
.card .meta.room-rates {
  text-transform: none;
  letter-spacing: .04em;
  line-height: 1.5;
}

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; perspective: 900px; }
.stay-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  perspective: 900px;
}
.stay-more {
  display: grid;
  gap: 22px;
  margin-top: 22px;
  perspective: 900px;
  justify-content: center;
}
.stay-more[data-count="1"] {
  grid-template-columns: minmax(0, 1fr);
  max-width: calc((100% - 44px) / 3);
  margin-left: auto;
  margin-right: auto;
}
.stay-more[data-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: calc((200% - 22px) / 3);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.stay-more:not([data-count="1"]):not([data-count="2"]) {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  background: #fff;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s;
  will-change: transform;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 24px 50px rgba(15,36,25,.12); }
.card-img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 22px 20px 26px; }
.card h3 { font-size: 1.55rem; margin-bottom: 8px; }
.card .meta { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-muted); margin-bottom: 8px; }
.card p { color: var(--earth); font-size: .95rem; margin: 0 0 16px; }
.price { font-family: var(--serif); font-size: 1.35rem; color: var(--forest); }

/* Why us */
.why-section { background: var(--forest-deep); color: var(--ivory); }
.why-section .eyebrow { color: var(--gold); }
.why-section h2 { color: var(--ivory); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 300px;
  border-radius: 18px;
  padding: 28px 24px 26px;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,.14);
}
.why-bg {
  position: absolute;
  inset: -28px;
  width: calc(100% + 56px);
  height: calc(100% + 56px);
  object-fit: cover;
  filter: blur(10px) saturate(1.08);
  transform: scale(1.1);
  z-index: 0;
  pointer-events: none;
}
.why-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,24,17,.28) 0%, rgba(10,24,17,.78) 100%);
}
.why-copy { position: relative; z-index: 2; }
.why-icon {
  width: 42px; height: 42px; border: 1px solid rgba(196,163,90,.55);
  display: grid; place-items: center;
  margin-bottom: 14px; color: var(--gold);
  background: rgba(15,36,25,.35);
  backdrop-filter: blur(6px);
}
.why-item h3 { font-size: 1.45rem; margin-bottom: 8px; color: #fff; }
.why-item p { color: rgba(247,243,235,.9); margin: 0; line-height: 1.55; }

/* Glass guest comments slideshow */
.voices-section {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--ivory);
}
.voices-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1489392191049-fc10c97e64b6?auto=format&fit=crop&w=1800&q=80') center/cover;
  opacity: .22;
  transform: scale(1.04);
}
.voices-head { position: relative; z-index: 2; text-align: center; margin-bottom: 36px; }
.voices-head h2 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; margin-bottom: 18px; }
.voices-empty { position: relative; z-index: 2; text-align: center; color: var(--sand); }
.voices-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(1180px, calc(100% - 24px));
  margin-inline: auto;
}
.glass-viewport { overflow: hidden; flex: 1; min-width: 0; padding: 8px 2px; touch-action: pan-y; }
.glass-track { display: flex; will-change: transform; }
.glass-card {
  background: rgba(247, 243, 235, .12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .2);
  border-radius: 22px;
  padding: 26px 24px 28px;
  color: var(--ivory);
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
.glass-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.guest-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(196, 163, 90, .18);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--gold);
}
.glass-card-top strong { display: block; font-size: 1.05rem; }
.glass-card .stars { color: var(--gold); margin-bottom: 10px; letter-spacing: 2px; }
.glass-card blockquote {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.45;
  margin: 0;
  color: rgba(247, 243, 235, .92);
}
.glass-nav {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease), background .3s;
}
.glass-nav:hover { transform: scale(1.06); background: rgba(196, 163, 90, .85); color: var(--forest); }

.comment-modal {
  position: fixed;
  inset: 0;
  z-index: 160;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(10, 24, 17, .62);
  backdrop-filter: blur(8px);
}
.comment-modal.open { display: grid; }
.comment-modal-card {
  width: min(460px, 100%);
  background: rgba(247, 243, 235, .16);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  color: var(--ivory);
  padding: 32px 28px 28px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 24px 50px rgba(0,0,0,.28);
}
.comment-modal-card h3 { font-size: 2rem; color: #fff; margin-bottom: 8px; }
.comment-modal-card p { color: var(--sand); margin-top: 0; }
.comment-modal-card .fg { margin-bottom: 12px; }
.comment-modal-card input,
.comment-modal-card select,
.comment-modal-card textarea {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.comment-modal-card select option {
  color: #1a1a1a;
  background: #fff;
  font-weight: 600;
}
.comment-modal-card label { color: var(--sand); }
.comment-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 820px) {
  .glass-nav { width: 42px; height: 42px; }
  .glass-card { min-height: 240px; padding: 20px; }
}

/* Testimonials */
.t-slider { position: relative; overflow: hidden; }
.t-track { display: flex; transition: transform .7s var(--ease); }
.t-slide { min-width: 100%; padding: 12px 8% 20px; text-align: center; }
.t-slide img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; }
.t-slide blockquote { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.85rem); font-style: italic; margin: 0 0 18px; }
.stars { color: var(--gold); letter-spacing: 3px; }

/* Masonry gallery */
.masonry { columns: 4; column-gap: 14px; }
.masonry figure { break-inside: avoid; margin: 0 0 14px; position: relative; overflow: hidden; cursor: pointer; }
.masonry img,
.masonry video { width: 100%; display: block; transition: transform .7s var(--ease); }
.masonry figure:hover img { transform: scale(1.05); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(10,24,17,.75));
  color: #fff; font-size: 13px; opacity: 0; transition: .35s;
}
.masonry figure:hover figcaption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(10,24,17,.92); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; }
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 0; background: #fff; cursor: pointer; font-size: 22px;
}
.lb-prev { left: 18px; } .lb-next { right: 18px; }
.lb-close { top: 18px; right: 18px; transform: none; }

/* Coverflow 3D slider */
.coverflow-wrap { position: relative; padding: 28px 0 20px; background: var(--forest-deep); overflow: hidden; }
.coverflow-wrap::before {
  content: ""; position: absolute; inset: 0 0 40% 0;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.04));
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: perspective(600px) rotateX(62deg);
  transform-origin: top;
  opacity: .35; pointer-events: none;
}
.coverflow {
  position: relative;
  height: min(480px, 58vh);
  perspective: 1400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cf-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(340px, 72vw);
  height: min(420px, 50vh);
  border-radius: 28px;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform .75s var(--ease), opacity .75s, filter .75s;
  box-shadow: 0 30px 60px rgba(0,0,0,.4);
  cursor: pointer;
}
.cf-card img { width: 100%; height: 100%; object-fit: cover; }
.cf-card .cf-meta {
  position: absolute; inset: auto 0 0 0;
  padding: 48px 20px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: #fff;
  transform: translateY(12px); opacity: 0; transition: .4s;
}
.cf-card.is-active .cf-meta { transform: none; opacity: 1; }
.cf-card h3 { font-size: 1.6rem; color: #fff; }
.cf-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 64px; height: 64px; border-radius: 50%; border: 0; background: #fff;
  cursor: pointer; z-index: 5; font-size: 22px; display: grid; place-items: center;
  transition: transform .3s;
}
.cf-nav:hover { transform: translateY(-50%) scale(1.06); }
.cf-prev { left: max(12px, 4vw); } .cf-next { right: max(12px, 4vw); }
.cf-dots { display: flex; justify-content: center; gap: 18px; margin-top: 4px; position: relative; z-index: 2; }
.cf-dots button {
  background: none; border: 0; color: rgba(255,255,255,.45); font-size: 14px; cursor: pointer; padding: 6px;
  position: relative;
}
.cf-dots button.on { color: var(--gold); }
.cf-dots button.on::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold);
}

/* Booking wizard */
.wizard { background: #fff; padding: 36px; box-shadow: 0 20px 60px rgba(15,36,25,.08); }
.steps { display: flex; gap: 8px; margin-bottom: 32px; overflow-x: auto; }
.steps span {
  flex: 1; min-width: 90px; text-align: center; font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding-bottom: 10px; border-bottom: 2px solid #e8e0d2; color: var(--muted);
}
.steps span.on { border-color: var(--gold); color: var(--forest); font-weight: 500; }
.step { display: none; }
.step.on { display: block; animation: fadeUp .5s var(--ease); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; color: var(--earth); }
input, textarea, select {
  width: 100%; padding: 12px 14px; border: 1px solid #ddd4c4; background: var(--ivory); color: var(--charcoal);
  outline: none; transition: border .25s;
}
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
.room-pick { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.room-pick label.opt {
  border: 1px solid #ddd4c4; padding: 16px; cursor: pointer; text-transform: none; letter-spacing: 0; font-size: 15px;
}
.room-pick input { display: none; }
.room-pick input:checked + span, .room-pick label.opt:has(input:checked) { border-color: var(--gold); background: #faf6ee; }
.school-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.school-pick label.opt {
  border: 1px solid #ddd4c4; padding: 16px; cursor: pointer; text-transform: none; letter-spacing: 0; font-size: 15px;
}
.school-pick input { display: none; }
.school-pick input:checked + span, .school-pick label.opt:has(input:checked) { border-color: var(--gold); background: #faf6ee; }
.dorm-guests[hidden], .room-guests[hidden], .dorm-sum[hidden] { display: none !important; }
.summary { background: var(--forest); color: var(--ivory); padding: 24px; }
.summary row, .sum-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; font-size: 13px; }
.cal .d { aspect-ratio: 1; display: grid; place-items: center; background: #fff; border: 1px solid #eee; cursor: pointer; }
.cal .d.off { opacity: .3; pointer-events: none; background: #f0ebe3; text-decoration: line-through; }
.cal .d.sel { background: var(--gold); color: var(--forest); }
.alert { padding: 12px 14px; background: #f6e6d8; color: var(--earth); margin-bottom: 16px; display: none; }
.alert.show { display: block; }
.alert.show.is-ok { background: #e7efe4; color: #1c3a28; }
.alert.show.is-error { background: #f6e6d8; color: var(--earth); }

/* Confirm */
.confirm-page { padding-top: 120px; padding-bottom: 72px; }
.confirm-card {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 36px 48px;
  text-align: center;
  box-shadow: 0 18px 48px rgba(26, 26, 20, .08);
}
.confirm-logo { display: inline-block; margin: 0 0 18px; }
.confirm-logo img { height: 78px; width: auto; }
.confirm-card h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 0 0 12px; }
.confirm-lead { margin: 0 0 16px; color: var(--earth); }
.confirm-note { margin-top: 12px; }
.confirm-card .summary { text-align: left; margin-top: 28px; }
.confirm-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.status-pill {
  display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  background: #efe4c8; color: var(--earth);
}
.status-pill.confirmed { background: #dce8dc; color: var(--forest); }
.status-pill.denied { background: #edd8d2; }
.status-pill.cancelled { background: #edd8d2; }
.status-pill.completed { background: #d8e4ee; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.article-body { max-width: 720px; margin: 0 auto; font-size: 1.05rem; }
.article-body p { margin: 0 0 1.1em; }
.comments { max-width: 720px; margin: 48px auto 0; }
.comment { border-top: 1px solid #e8e0d2; padding: 18px 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.map { min-height: 360px; background: #ddd; }
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* Footer */
.site-footer {
  background: #111;
  color: #cfc6b8;
  padding: 0;
  position: relative;
}
.foot-main {
  padding: 80px 0 56px;
  background-color: #121212;
  background-image:
    radial-gradient(900px 320px at 12% 0%, rgba(196,163,90,.1), transparent 58%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='420' viewBox='0 0 900 420'%3E%3Cg fill='none' stroke='%23c4a35a' stroke-opacity='.08' stroke-width='1'%3E%3Cpath d='M-40 70C80 20 170 120 290 70s210-70 360 10 250 10 360-40'/%3E%3Cpath d='M-40 130C90 80 200 180 320 120s200-40 350 30 240 20 350-20'/%3E%3Cpath d='M-20 190C110 140 230 230 350 180s210-30 340 20 250 10 340-10'/%3E%3Cpath d='M-10 250C130 210 250 300 380 250s200-20 330 30 240 0 330-20'/%3E%3Cpath d='M0 310C150 270 270 360 410 310s190-10 320 20 230-10 320-20'/%3E%3C/g%3E%3C/svg%3E");
  background-size: auto, 900px 420px;
  background-repeat: no-repeat, repeat-x;
  background-position: top left, top center;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(200px, 1.3fr) minmax(120px, .7fr) minmax(120px, .75fr) minmax(210px, 1.25fr) minmax(180px, .95fr);
  gap: 40px 32px;
}
.site-footer h4 {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 16px;
}
.site-footer .foot-sub { margin-top: 28px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0 0 10px; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: var(--gold); }
.foot-mark {
  display: block;
  margin-bottom: 14px;
  color: var(--gold) !important;
}
.foot-logo-img {
  display: block;
  width: min(280px, 100%);
  height: auto;
  max-height: 148px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 8px 10px;
}
.foot-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin: 0 0 14px;
}
.foot-brand p { line-height: 1.75; margin: 0 0 18px; color: rgba(255,255,255,.78); }
.foot-social { display: flex; gap: 10px; }
.foot-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  display: grid; place-items: center;
  color: #fff !important;
  transition: background .3s, border-color .3s, color .3s, transform .3s;
}
.foot-social a:hover {
  background: var(--gold);
  color: var(--forest) !important;
  border-color: var(--gold);
  transform: translateY(-2px);
}
.foot-contact li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: rgba(255,255,255,.8);
  font-size: 14px;
}
.foot-contact svg { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.foot-person {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.foot-person strong {
  color: #fff;
  font-weight: 500;
}
.foot-contact em {
  font-style: italic;
  color: var(--gold);
  font-size: 13px;
}
.foot-phones {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-top: 4px;
}
.foot-phones a {
  white-space: nowrap;
  letter-spacing: .02em;
}
.foot-news p { color: rgba(255,255,255,.72); margin: 0 0 16px; font-size: 14px; line-height: 1.7; }
.news-form input {
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  margin-bottom: 10px;
  border-radius: 8px;
}
.news-form input::placeholder { color: rgba(255,255,255,.4); }
.news-form input:focus { box-shadow: 0 0 0 3px rgba(196,163,90,.18); }
.news-form .btn { width: 100%; justify-content: center; border-radius: 8px; }
.news-form .alert {
  background: rgba(196,163,90,.12);
  color: var(--gold);
  border: 1px solid rgba(196,163,90,.28);
}

.foot-values {
  position: relative;
  padding: 48px 0;
  background:
    linear-gradient(180deg, rgba(8,8,8,.58), rgba(8,8,8,.78)),
    url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.values-row > div { padding: 0 24px; border-left: 1px solid rgba(255,255,255,.18); }
.values-row > div:first-child { border-left: 0; padding-left: 0; }
.val-ico { display: block; color: var(--gold); margin-bottom: 12px; }
.values-row b {
  display: block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.values-row p { margin: 0; color: rgba(255,255,255,.9); font-size: 14px; line-height: 1.6; }

.foot-gallery { background: #121212; padding: 10px 0 28px; }
.foot-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.foot-strip img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .5s var(--ease), filter .5s;
}
.foot-strip img:hover { transform: scale(1.04); filter: brightness(1.1); }

.foot-legal {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,.08);
}
.foot-bottom {
  padding: 18px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.5);
}
.foot-copy, .foot-bottom em { display: inline-flex; align-items: center; gap: 8px; }
.foot-copy svg { color: var(--gold); flex-shrink: 0; }
.foot-legal-links { display: flex; gap: 8px; align-items: center; }
.foot-legal-links a { color: rgba(255,255,255,.5); }
.foot-legal-links a:not(:last-child)::after {
  content: "|";
  margin-left: 8px;
  color: rgba(255,255,255,.22);
}
.foot-bottom em {
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
}

/* 404 */
.notfound { min-height: 80vh; display: grid; place-items: center; text-align: center; padding: 140px 20px; }

/* Skeleton */
.skel { background: linear-gradient(90deg, #eee 25%, #f6f3ec 50%, #eee 75%); background-size: 200% 100%; animation: skel 1.2s infinite; }
@keyframes skel { to { background-position: -200% 0; } }

/* Page transition */
.page-fade { animation: pageIn .55s var(--ease); }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .stay-top,
  .stay-more,
  .stay-more[data-count="1"],
  .stay-more[data-count="2"],
  .stay-more:not([data-count="1"]):not([data-count="2"]) {
    grid-template-columns: 1fr 1fr;
    width: auto;
    max-width: none;
  }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .acc-listing .split,
  .acc-listing .split.reverse {
    grid-template-columns: minmax(112px, 42%) minmax(0, 1fr);
    gap: 12px 14px;
    align-items: start;
    margin-bottom: 28px;
  }
  .acc-listing .split-img { min-height: 0; }
  .acc-listing .split-img img,
  .acc-listing .split-img video {
    min-height: 0;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
  .acc-listing .split-img::after { inset: 8px; }
  .acc-listing h2 { font-size: 1.28rem; margin: 2px 0 6px; }
  .acc-listing .acc-copy p { font-size: .86rem; margin: 0 0 8px; }
  .acc-listing .price { font-size: 1rem; margin: 0 0 8px; }
  .acc-listing .acc-copy .eyebrow { font-size: 9px; }
  .acc-listing .rates-stack { font-size: .78rem; margin: 0 0 8px; }
  .acc-listing .acc-actions { margin-top: 10px; gap: 6px; }
  .acc-listing .acc-actions .btn { padding: 8px 12px; font-size: 10px; }
  .meals-shuffle { min-height: 280px; }
  .home-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .camp-services { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 3; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; max-width: 560px; }
  .values-row { grid-template-columns: 1fr 1fr; gap: 28px 22px; }
  .values-row > div { border-left: 0; padding: 0; }
  .foot-strip { grid-template-columns: repeat(3, 1fr); }
  .foot-strip img:nth-child(n+4) { height: 100px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .perk-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-desktop, .header-cta .btn { display: none; }
  .burger, .nav-mobile { display: block; }
  .logo img { height: 48px; }
  .section { padding: 72px 0; }
  .coverflow { height: 400px; }
  .cf-nav { width: 44px; height: 44px; }
  .contact-grid, .form-grid, .room-pick, .school-pick { grid-template-columns: 1fr; }
  .wizard { padding: 22px 16px; }
  .welcome-block { padding: 0 0 16px; }
  .welcome-block .welcome-layout {
    grid-template-columns: minmax(108px, 38%) minmax(0, 1fr);
    gap: 10px 12px;
    align-items: start;
  }
  .welcome-side { gap: 10px; }
  .welcome-stage {
    min-height: 0;
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .welcome-copy .eyebrow { font-size: 10px; }
  .welcome-copy h2 {
    font-size: 1.28rem;
    line-height: 1.2;
  }
  .welcome-lead {
    font-size: .8rem;
    line-height: 1.45;
    margin-top: 8px;
  }
  .welcome-more {
    padding: 8px 14px;
    font-size: 10px;
  }
  .stay-block { padding-top: 24px; }
}
@media (max-width: 767px) {
  .perk-bar { margin-top: -52px; }
}
@media (max-width: 640px) {
  .tour-band, .tour-band-mid { min-height: 58vh; }
  .tour-band-copy { padding: 36px 4px 40px; }
  .card-grid, .why-grid, .blog-grid, .camp-services { grid-template-columns: 1fr !important; }
  .stay-top,
  .stay-more,
  .stay-more[data-count="1"],
  .stay-more[data-count="2"],
  .stay-more:not([data-count="1"]):not([data-count="2"]) {
    grid-template-columns: 1fr;
    width: auto;
    max-width: none;
  }
  .masonry { columns: 2; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: min(280px, 100%); justify-content: center; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-brand { max-width: none; }
  .values-row { grid-template-columns: 1fr; gap: 22px; }
  .foot-strip { grid-template-columns: 1fr 1fr; }
  .foot-strip img:last-child { grid-column: 1 / -1; height: 120px; }
  .foot-bottom { flex-direction: column; text-align: center; }
  .foot-legal-links { flex-wrap: wrap; justify-content: center; }
  .page-hero { min-height: 42vh; }
  .perk-bar { width: calc(100% - 28px); padding: 20px 16px; margin-top: -36px; border-radius: 22px; }
  .perk-grid { grid-template-columns: 1fr; }
  .welcome-more { width: auto; }
  .welcome-block { padding-bottom: 16px; }
  .stay-block { padding-top: 24px; }
}

.float-dock {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 92;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.float-wa {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(15, 36, 25, .32);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.float-wa:hover { transform: translateY(-2px); }
a.float-wa:visited { color: #fff; }

/* Floating lodge location pin */
.float-pin {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(15, 36, 25, .28);
  transition: transform .35s var(--ease), box-shadow .35s;
}
.float-pin:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 36px rgba(15, 36, 25, .35); }
.float-pin-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  animation: pinPulse 2.2s ease-out infinite;
  pointer-events: none;
}
.float-pin-label {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--forest);
  color: var(--ivory);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 2px;
  opacity: 0;
  transform: translateX(8px);
  transition: .3s var(--ease);
  pointer-events: none;
}
.float-pin:hover .float-pin-label { opacity: 1; transform: none; }
@keyframes pinPulse {
  0% { transform: scale(.9); opacity: .7; }
  100% { transform: scale(1.35); opacity: 0; }
}

.float-chat-wrap {
  position: relative;
  width: 56px;
  height: 56px;
}
.float-chat {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: #1c1c1c;
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 36, 25, .32);
  position: relative;
}
.float-chat:hover { transform: translateY(-2px); }
.float-chat-bubble {
  width: 28px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
}
.float-chat-bubble::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -4px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 0 0 0 6px;
  transform: rotate(-28deg);
}
.float-chat-bubble i {
  width: 3.5px;
  height: 3.5px;
  border-radius: 50%;
  background: #1c1c1c;
  display: block;
}
.float-chat-badge {
  position: absolute;
  top: -6px;
  left: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--gold);
  color: var(--forest);
  font-size: 10px;
  font-weight: 600;
  display: grid;
  place-items: center;
}
.float-chat-badge[hidden] { display: none !important; }
.chat-panel {
  position: absolute;
  right: 68px;
  bottom: 0;
  width: min(360px, calc(100vw - 100px));
  height: min(480px, calc(100vh - 120px));
  background: #121212;
  border: 1px solid rgba(196,163,90,.32);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
}
.chat-panel[hidden] { display: none !important; }
.float-dock .chat-panel {
  right: calc(100% + 12px);
  bottom: 0;
}
.chat-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 14px 12px;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.chat-head strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
}
.chat-head span { display: block; font-size: 12px; color: rgba(255,255,255,.55); }
.chat-close {
  width: 32px; height: 32px;
  border: 0; background: transparent; color: #fff;
  font-size: 22px; cursor: pointer;
}
.chat-log {
  flex: 1;
  overflow: auto;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-log .bubble {
  max-width: 86%;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.45;
}
.chat-log .bubble p { margin: 0; }
.chat-log .bubble time { display: block; font-size: 10px; opacity: .55; margin-top: 4px; }
.chat-log .them { background: #2a2a2a; align-self: flex-start; }
.chat-log .me { background: var(--gold); color: var(--forest); align-self: flex-end; }
.chat-form { padding: 10px; border-top: 1px solid rgba(255,255,255,.08); background: #161616; }
.chat-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-bottom: 8px; }
.chat-meta input,
.chat-compose textarea {
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
}
.chat-compose { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: end; }
.chat-compose textarea { min-height: 44px; resize: none; }
.chat-compose .btn { border-radius: 8px; padding: 12px 16px; }
.chat-meta.is-set { display: none; }
body.chat-open .float-offer-wrap { visibility: hidden; pointer-events: none; }

.float-offer-wrap {
  position: fixed;
  right: 22px;
  bottom: 228px;
  z-index: 91;
  width: 58px;
  height: 58px;
}
.float-offer {
  position: relative;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 36, 25, .32);
  animation: offerBeep 1.6s ease-in-out infinite;
}
.float-offer:hover { color: var(--ivory); }
.float-offer-pulse,
.float-offer-pulse.delay {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  animation: pinPulse 1.5s ease-out infinite;
  pointer-events: none;
}
.float-offer-pulse.delay { animation-delay: .75s; }
.float-offer-label {
  position: absolute;
  right: 68px;
  white-space: nowrap;
  background: var(--gold);
  color: var(--forest);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 2px;
  pointer-events: none;
  animation: offerLabelBeep 1.6s ease-in-out infinite;
}
@keyframes offerBeep {
  0%, 64%, 100% { transform: scale(1); }
  70% { transform: scale(1.16); }
  78% { transform: scale(.94); }
  86% { transform: scale(1.1); }
  94% { transform: scale(1); }
}
@keyframes offerLabelBeep {
  0%, 64%, 100% { opacity: .92; transform: none; }
  70% { opacity: 1; transform: translateX(-4px); }
  86% { opacity: 1; transform: none; }
}

.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 170;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(10, 24, 17, .66);
  backdrop-filter: blur(8px);
}
.offer-modal.open { display: grid; }
.offer-modal-card {
  width: min(560px, 100%);
  max-height: min(86vh, 720px);
  overflow: auto;
  background: #121212;
  border: 1px solid rgba(196,163,90,.35);
  color: var(--ivory);
  padding: 28px 24px 24px;
  border-radius: 18px;
  position: relative;
  box-shadow: 0 28px 60px rgba(0,0,0,.4);
}
.offer-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
}
.offer-card {
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a1a;
}
.offer-card img { width: 100%; height: 180px; object-fit: cover; }
.offer-copy { padding: 16px 16px 18px; }
.offer-badge {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.offer-copy h3 { font-size: 1.7rem; color: #fff; margin: 0 0 8px; }
.offer-copy p { color: rgba(255,255,255,.78); margin: 0 0 10px; }
.offer-copy small { display: block; color: var(--gold); margin-bottom: 14px; }
.offer-copy .btn { justify-content: center; width: 100%; border-radius: 8px; }

@media (max-width: 640px) {
  .float-dock { right: 16px; bottom: 16px; }
  .float-wa, .float-chat-wrap, .float-chat { width: 52px; height: 52px; }
  .float-chat { border-radius: 14px; }
  .float-pin { width: 52px; height: 52px; }
  .float-pin-label { display: none; }
  .chat-panel,
  .float-dock .chat-panel {
    position: fixed;
    right: 12px;
    left: 12px;
    bottom: 196px;
    width: auto;
    height: min(62vh, 460px);
  }
  .float-offer-wrap { right: 16px; bottom: 210px; width: 52px; height: 52px; }
  .float-offer { width: 52px; height: 52px; }
  .float-offer-label { display: none; }
}

/* Reactive layer */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: var(--gold);
  transform-origin: left;
  pointer-events: none;
}
.site-header.is-compact { height: 70px; }
.site-header.is-compact .logo img { height: 50px; }
.site-header.is-hidden { transform: translateY(-100%); }
.site-header { transition: background .4s var(--ease), backdrop-filter .4s, box-shadow .4s, height .35s var(--ease), transform .4s var(--ease); }
.logo { transition: transform .35s var(--ease); }
.logo:hover { transform: translateY(-1px); }

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after { transform: scaleX(1); }
.nav-desktop a { transition: color .25s var(--ease); }

.btn:active { transform: translateY(1px) scale(.98); }
.btn:focus-visible, .glass-nav:focus-visible, .float-pin:focus-visible, .float-offer:focus-visible, .float-chat:focus-visible, a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { transform: rotate(45deg); top: 0; }
body.nav-open .burger span::after { transform: rotate(-45deg); top: 0; }
.nav-mobile a { transition: color .25s, padding-left .25s var(--ease); }
.nav-mobile a:hover { color: var(--gold); padding-left: 8px; }

.hero-media video, .hero-media img {
  transform: scale(1.08);
  transition: transform .2s linear;
  will-change: transform;
}
.hero-flow-slide img,
.hero-flow-slide video {
  filter: brightness(.78) saturate(.9) contrast(1.02);
}
.page-hero img { transition: transform 1.4s var(--ease); }
.page-hero:hover img { transform: scale(1.08); }

.card { border-radius: 4px; transform-style: preserve-3d; }
.card .btn { transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s; }
.card:hover .btn-outline { background: var(--forest); color: var(--ivory); }
.why-item {
  transition: transform .45s var(--ease), border-color .45s, box-shadow .45s;
}
.why-item:hover {
  transform: translateY(-8px);
  border-color: rgba(196,163,90,.55);
  box-shadow: 0 22px 40px rgba(0,0,0,.28);
}
.why-bg { transition: transform 1.1s var(--ease), filter 1.1s var(--ease); }
.why-item:hover .why-bg {
  transform: scale(1.18);
  filter: blur(6px) saturate(1.15);
}
.why-icon { transition: transform .4s var(--ease), background .4s; }
.why-item:hover .why-icon { transform: rotate(8deg) scale(1.08); background: var(--forest); color: var(--gold); }

.glass-card { transition: transform .45s var(--ease), background .45s, border-color .45s; }
.glass-card:hover { transform: translateY(-8px); background: rgba(247,243,235,.2); border-color: rgba(196,163,90,.55); }
.glass-nav:active { transform: scale(.94); }

.site-footer a { transition: color .25s; }
.room-pick label.opt { transition: transform .3s var(--ease), border-color .3s, background .3s, box-shadow .3s; }
.room-pick label.opt:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(15,36,25,.08); }

input, textarea, select { transition: border-color .25s, box-shadow .25s, background .25s; }
input:focus, textarea:focus, select:focus { box-shadow: 0 0 0 3px rgba(196,163,90,.22); }

.float-pin:active { transform: scale(.94); }
.lb-btn { transition: transform .3s var(--ease); }
.lb-btn:hover { transform: translateY(-50%) scale(1.08); }
.lb-close:hover { transform: scale(1.08); }

.card-grid .js-reveal:nth-child(1) { transition-delay: .04s; }
.card-grid .js-reveal:nth-child(2) { transition-delay: .1s; }
.card-grid .js-reveal:nth-child(3) { transition-delay: .16s; }
.card-grid .js-reveal:nth-child(4) { transition-delay: .22s; }
.card-grid .js-reveal:nth-child(5) { transition-delay: .28s; }
.card-grid .js-reveal:nth-child(6) { transition-delay: .34s; }

@media (hover: none) {
  .card:hover { transform: none; }
  .page-hero:hover img { transform: scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; animation: none; }
}
