:root {
  --bg: #0c0e0a;
  --bg-2: #10130c;
  --green: #36631f;
  --green-deep: #1a3310;
  --green-bright: #9fce63;
  --cream: #f4f2e9;
  --white: #ffffff;
  --text: #d9dccd;
  --muted: #9aa487;

  --glass-bg: rgba(28, 44, 18, 0.34);
  --glass-bd: rgba(196, 222, 158, 0.20);
  --glass-hi: rgba(255, 255, 255, 0.10);
  --blur: 16px;

  --maxw: 1180px;
  --radius: 22px;
  --gutter: clamp(18px, 4vw, 48px);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); width: 100%; }
.eyebrow {
  margin: 0 0 clamp(20px, 3vw, 34px);
  font-size: clamp(11px, 1.4vw, 13px);
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--green-bright);
  text-align: center;
}

/* glass primitive */
.glass {
  background: var(--glass-bg);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(130%);
  backdrop-filter: blur(var(--blur)) saturate(130%);
  border: 1px solid var(--glass-bd);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .35), inset 0 1px 0 var(--glass-hi);
}

/* ---------------- NAV ---------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(10, 12, 8, .55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav__brand {
  font-weight: 700;
  letter-spacing: .26em;
  font-size: 14px;
  color: var(--cream);
  text-transform: lowercase;
}
.nav__links {
  margin-left: auto;
  display: flex;
  gap: clamp(18px, 3vw, 38px);
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  opacity: .85;
  transition: opacity .15s, color .15s;
}
.nav__links a:hover { opacity: 1; color: var(--green-bright); }
.nav__cta {
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: .62em 1.4em;
  border-radius: 999px;
  transition: background .16s, transform .16s;
}
.nav__cta:hover { background: #43792a; transform: translateY(-1px); }

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("/assets/img/hero.jpg?v=2") center 28% / cover no-repeat;
  transform: scale(1.04);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 80% at 50% 30%, rgba(12,14,10,0) 35%, rgba(12,14,10,.5) 100%),
    linear-gradient(180deg, rgba(12,14,10,.45) 0%, rgba(12,14,10,.1) 30%, rgba(12,14,10,.55) 78%, var(--bg) 100%);
}
.hero__inner { padding: 90px var(--gutter); }
.hero__eyebrow {
  margin: 0 0 clamp(8px, 1.6vw, 16px);
  font-size: clamp(12px, 1.7vw, 17px);
  font-weight: 500;
  letter-spacing: .36em;
  text-transform: lowercase;
  color: rgba(244, 242, 233, .9);
}
.hero__title {
  margin: 0;
  font-weight: 900;
  font-size: clamp(108px, 22vw, 300px);
  line-height: .82;
  letter-spacing: -.03em;
  color: var(--white);
  text-shadow: 0 10px 60px rgba(0, 0, 0, .5);
}
.hero__dates {
  display: inline-block;
  margin: clamp(18px, 3vw, 34px) 0 0;
  padding: .62em 1.7em;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 19px);
  letter-spacing: .05em;
  color: var(--cream);
  background: rgba(10, 14, 7, .4);
  border: 1px solid rgba(244, 242, 233, .34);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.hero__scroll {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(244, 242, 233, .45);
  border-radius: 14px;
}
.hero__scroll span {
  position: absolute;
  top: 8px; left: 50%;
  width: 4px; height: 8px; border-radius: 2px;
  background: var(--cream);
  transform: translateX(-50%);
  animation: scrolldot 1.8s infinite;
}
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------------- QUOTE ---------------- */
.quote { padding: clamp(64px, 12vw, 128px) 0; text-align: center; }
.quote__mark {
  display: block;
  font-weight: 900;
  font-size: clamp(80px, 12vw, 150px);
  line-height: .35;
  height: .4em;
  color: var(--green-bright);
  opacity: .85;
}
.quote__text {
  margin: clamp(26px, 4vw, 46px) auto 0;
  max-width: 22ch;
  font-weight: 400;
  font-size: clamp(22px, 3.4vw, 40px);
  line-height: 1.4;
  color: var(--cream);
}

/* ---------------- DAYS ---------------- */
.days {
  position: relative;
  padding: clamp(56px, 9vw, 104px) 0;
  isolation: isolate;
}
.days::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/assets/img/forest-dark.jpg?v=2") center / cover fixed;
}
.days::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(12,14,10,.72) 22%, rgba(12,14,10,.72) 78%, var(--bg) 100%);
}
.days__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.day {
  border-radius: var(--radius);
  padding: clamp(18px, 2vw, 28px);
  min-height: clamp(160px, 18vw, 220px);
  display: flex;
  flex-direction: column;
}
.day__n {
  font-size: clamp(11px, 1.2vw, 13px);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.day__date {
  margin-top: 2px;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--white);
}
.day__theme {
  margin: auto 0 0;
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.3;
  color: rgba(244, 242, 233, .82);
}
.day__theme b {
  display: block;
  font-weight: 800;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--white);
  margin-bottom: 4px;
}

/* ---------------- PRICING ---------------- */
.pricing {
  position: relative;
  padding: clamp(56px, 9vw, 110px) 0 clamp(50px, 8vw, 96px);
  isolation: isolate;
  background: var(--bg-2);
}
.section-title {
  margin: 0;
  text-align: center;
  font-weight: 800;
  font-size: clamp(34px, 5.6vw, 70px);
  line-height: 1;
  letter-spacing: .005em;
  text-transform: uppercase;
  color: var(--white);
}
.section-sub {
  margin: clamp(10px, 1.6vw, 18px) auto clamp(36px, 5vw, 64px);
  text-align: center;
  font-size: clamp(14px, 1.7vw, 18px);
  color: var(--muted);
}
.tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
  align-items: stretch;
  max-width: 760px;
  margin-inline: auto;
}
.tier {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(420px, 42vw, 560px);
  padding: clamp(20px, 2vw, 30px);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--photo) center / cover no-repeat;
  transition: transform .4s ease;
}
.tier::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,22,6,.10) 0%, rgba(10,20,6,.32) 46%, rgba(8,16,4,.86) 100%);
}
.tier:hover, .tier:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .5);
  outline: none;
}
.tier:hover::before, .tier:focus-visible::before { transform: scale(1.05); }
.tier:focus-visible { border-color: var(--green-bright); }

.tier__icon {
  position: absolute;
  top: clamp(20px, 2.4vw, 30px); left: 0; right: 0;
  display: flex;
  justify-content: center;
  color: var(--green-bright);
}
.tier__icon svg { width: clamp(40px, 4.4vw, 56px); height: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.4)); }

.tier__content { position: relative; }
.tier__name {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: clamp(15px, 1.7vw, 20px);
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--white);
}
.tier__price {
  display: inline-flex;
  align-items: baseline;
  gap: .25em;
  padding: .42em .85em;
  border-radius: 14px;
  font-weight: 800;
  font-size: clamp(22px, 2.8vw, 34px);
  color: var(--white);
  --glass-bg: rgba(15, 30, 8, .42);
}
.tier__price small { font-size: .5em; font-weight: 700; letter-spacing: .02em; opacity: .92; }
.tier__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  margin: 12px 0 16px;
}
.tier__old { font-size: clamp(13px, 1.4vw, 15px); color: rgba(244,242,233,.55); text-decoration: line-through; }
.tier__sale { font-size: clamp(11px, 1.2vw, 13px); color: var(--green-bright); }
.tier__onsite {
  display: inline-block;
  padding: .55em 1em;
  border-radius: 12px;
  font-size: clamp(12px, 1.3vw, 14px);
  color: rgba(244,242,233,.85);
  --glass-bg: rgba(255,255,255,.07);
}
.tier__onsite b { color: var(--white); font-weight: 700; }

/* per-card accommodation features */
.tier__features {
  list-style: none;
  margin: 14px 0 4px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.tier__features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: clamp(13px, 1.45vw, 15px);
  line-height: 1.35;
  color: rgba(244,242,233,.92);
}
.tier__features .tf-ic {
  flex: 0 0 auto;
  width: 1.5em;
  text-align: center;
  filter: saturate(1.1);
}

/* info strip below the cards */
.pricing__notes {
  margin: clamp(28px, 4vw, 44px) auto 0;
  max-width: 920px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.6vw, 18px);
}
.pricing__note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2vw, 22px);
  border-radius: 16px;
  font-size: clamp(13px, 1.5vw, 16px);
  line-height: 1.5;
  color: rgba(244,242,233,.9);
  --glass-bg: rgba(255,255,255,.07);
}
.pricing__note .pn-ic { flex: 0 0 auto; font-size: 1.3em; line-height: 1.2; }
.pricing__note b { color: var(--white); font-weight: 700; }
@media (max-width: 680px) {
  .pricing__notes { grid-template-columns: 1fr; }
}
.tier__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.tier__slots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 600;
  color: var(--cream);
}
.tier__slots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(159,206,99,.6);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(159,206,99,.5); }
  70% { box-shadow: 0 0 0 8px rgba(159,206,99,0); }
  100% { box-shadow: 0 0 0 0 rgba(159,206,99,0); }
}
.tier__choose {
  font-size: clamp(12px, 1.3vw, 14px);
  font-weight: 700;
  color: var(--green-bright);
  transition: transform .15s;
}
.tier:hover .tier__choose { transform: translateX(3px); }

.tier.is-full { cursor: not-allowed; }
.tier.is-full::before { filter: grayscale(.7) brightness(.5); }
.tier.is-full:hover { transform: none; box-shadow: none; }
.tier.is-full:hover::before { transform: none; }
.tier.is-full .tier__choose { display: none; }
.tier.is-full .tier__slots { color: #e0a08e; }
.tier.is-full .tier__slots .dot { background: #cf6347; animation: none; box-shadow: none; }

.pricing__note {
  margin: clamp(34px, 5vw, 56px) auto 0;
  text-align: center;
  font-size: clamp(12px, 1.4vw, 15px);
  color: var(--muted);
}

/* ---------------- CTA ---------------- */
.cta {
  position: relative;
  padding: clamp(80px, 14vw, 160px) var(--gutter);
  display: flex;
  justify-content: center;
  isolation: isolate;
  background: var(--bg);
}
.cta::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: min(80%, 560px);
  z-index: -1;
  background: url("/assets/img/stump.jpg?v=2") center bottom / cover no-repeat;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 28%);
  mask-image: linear-gradient(180deg, transparent, #000 28%);
}
.cta__panel {
  max-width: 580px;
  width: 100%;
  padding: clamp(34px, 5vw, 60px) clamp(26px, 4vw, 52px);
  border-radius: 26px;
  text-align: center;
}
.cta__title {
  margin: 0;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--white);
}
.cta__sub {
  margin: clamp(14px, 2vw, 22px) auto clamp(26px, 4vw, 38px);
  max-width: 30ch;
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(244,242,233,.85);
}
.btn {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: clamp(15px, 1.8vw, 18px);
  padding: .9em 2.6em;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: background .16s, transform .16s;
}
.btn:hover { background: #43792a; transform: translateY(-2px); }

/* ---------------- FOOTER ---------------- */
.footer { padding: clamp(34px, 5vw, 56px) 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer__brand { font-weight: 700; letter-spacing: .2em; color: var(--cream); text-transform: lowercase; }
.footer__brand span { color: var(--green-bright); }
.footer__tg { font-size: 14px; color: var(--muted); transition: color .15s; }
.footer__tg:hover { color: var(--cream); }

/* ---------------- MODAL ---------------- */
.modal { position: fixed; inset: 0; z-index: 60; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal[hidden] { display: none; }
.modal__overlay { position: absolute; inset: 0; background: rgba(5,6,4,.74); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.modal__dialog {
  position: relative;
  width: min(640px, 100%);
  height: min(88vh, 920px);
  background: #f6f6f3;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: var(--green);
  color: #fff;
}
.modal__title { font-weight: 600; font-size: 15px; }
.modal__close {
  background: rgba(255,255,255,.16);
  border: 0; color: #fff;
  width: 34px; height: 34px; border-radius: 9px;
  font-size: 22px; line-height: 1; cursor: pointer;
  transition: background .15s;
}
.modal__close:hover { background: rgba(255,255,255,.32); }
.modal__body { flex: 1; min-height: 0; }
.modal__frame { width: 100%; height: 100%; border: 0; background: #f6f6f3; }

/* ---------------- TOAST ---------------- */
.toast {
  position: fixed;
  left: 50%; bottom: 26px;
  transform: translateX(-50%) translateY(20px);
  z-index: 70;
  background: var(--green);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .25s, transform .25s;
  max-width: 90vw;
  text-align: center;
}
.toast[hidden] { display: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 860px) {
  .days__grid { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .tier { min-height: 440px; }
}
@media (max-width: 600px) {
  .nav__links { display: none; }
  .days::before { background-attachment: scroll; }
  .hero__title { font-size: clamp(96px, 38vw, 200px); }
}
@media (max-width: 420px) {
  .days__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero__media { transform: none; }
}
