/* ===== BRAND TOKENS ===== */
:root {
  --primary:    #2C3E2D;
  --accent:     #4A9B9B;
  --highlight:  #C9A96E;
  --bg:         #FAF6F1;
  --surface:    #F0EBE3;
  --dark:       #1C1C1A;
  --muted:      #8A8A85;
  --radius:     8px;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', system-ui, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--dark); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.1; font-weight: 400; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section--dark { background: var(--primary); }
.section--surface { background: var(--surface); }
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 16px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 15px 36px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn--primary { background: var(--primary); color: white; }
.btn--primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn--gold { background: var(--highlight); color: var(--dark); }
.btn--gold:hover { filter: brightness(1.06); transform: translateY(-1px); }
.btn--outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.btn--outline-dark { background: transparent; color: var(--dark); border: 1.5px solid rgba(28,28,26,0.3); }
.btn--outline-dark:hover { border-color: var(--dark); }
.link-soft {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
  padding-bottom: 1px;
}
.link-soft:hover { color: white; border-color: rgba(255,255,255,0.5); }
.link-soft--dark {
  color: var(--accent);
  font-size: 14px;
}
.link-soft--dark:hover { border-bottom-color: var(--accent); }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 64px; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(250,246,241,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(28,28,26,0.08);
}
.nav__logo { font-family: var(--font-heading); font-size: 22px; font-style: italic; color: white; transition: color 0.3s; }
.nav.scrolled .nav__logo { color: var(--dark); }
.nav__links { display: flex; gap: 28px; list-style: none; }
.nav__links a { font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.nav.scrolled .nav__links a { color: var(--dark); opacity: 0.7; }
.nav__links a:hover { color: white; opacity: 1; }
.nav.scrolled .nav__links a:hover { color: var(--dark); opacity: 1; }
.nav__cta { font-size: 14px; padding: 10px 24px; }
.nav__cta.btn--primary { background: white; color: var(--dark); }
.nav.scrolled .nav__cta.btn--primary { background: var(--primary); color: white; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  color: white;
  transition: color 0.3s;
}
.nav.scrolled .nav__hamburger { color: var(--dark); }
.nav__hamburger span {
  display: block;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu panel */
.nav__mobile-menu {
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: rgba(250,246,241,0.98);
  backdrop-filter: blur(12px);
  z-index: 199;
  display: flex;
  flex-direction: column;
  padding: 8px 32px 32px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  border-bottom: 1px solid rgba(28,28,26,0.08);
  box-shadow: 0 16px 40px rgba(28,28,26,0.1);
}
.nav__mobile-menu.open { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav__mobile-menu a:not(.btn) {
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--dark);
  padding: 18px 0;
  border-bottom: 1px solid rgba(28,28,26,0.08);
  transition: color 0.2s;
}
.nav__mobile-menu a:not(.btn):hover { color: var(--primary); }
.nav__mobile-menu .btn { margin-top: 24px; text-align: center; width: 100%; }

@media (max-width: 767px) {
  .nav__hamburger { display: flex; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
.hero__bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,28,26,0.1) 0%, rgba(28,28,26,0.25) 40%, rgba(28,28,26,0.82) 100%);
  z-index: 1;
}
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__content {
  position: relative; z-index: 2;
  max-width: 800px;
  padding: 0 32px 72px;
  will-change: transform;
}
.hero__date {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 16px;
}
.hero__h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 400;
  color: white;
  line-height: 1.0;
  margin-bottom: 12px;
}
.hero__h1 em { font-style: italic; }
.hero__sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 20px;
  line-height: 1.65;
}
.hero__ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll span { display: block; font-family: var(--font-body); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 8px; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); margin: 0 auto; animation: scrollLine 2s ease infinite; }
@keyframes scrollLine { 0%,100%{opacity:0;transform:scaleY(0);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

/* ===== VSL ===== */
.vsl { background: var(--dark); padding: 80px 0; }
.vsl__inner { max-width: 900px; margin: 0 auto; text-align: center; padding: 0 32px; }
.vsl__label { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--highlight); margin-bottom: 20px; }
.vsl__frame {
  position: relative;
  aspect-ratio: 16/9;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.vsl__play {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--highlight);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s;
}
.vsl__play:hover { transform: scale(1.08); filter: brightness(1.1); }
.vsl__play svg { width: 28px; height: 28px; color: var(--dark); margin-left: 4px; }
.vsl__caption { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.4); margin-top: 16px; font-style: italic; }

/* ===== UPCOMING RETREATS ===== */
.retreats { background: var(--surface); }
.retreats__header { text-align: center; margin-bottom: 56px; }
.retreats__h2 { font-size: clamp(36px, 5vw, 64px); color: var(--dark); margin-top: 12px; }
.retreats__h2 em { font-style: italic; color: var(--primary); }
.retreats__list { border-top: 1px solid rgba(44,62,45,0.15); }
.retreat-row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(44,62,45,0.15);
  transition: background 0.2s;
  text-decoration: none;
  color: inherit;
}
.retreat-row:hover { background: rgba(201,169,110,0.06); }
.retreat-row__year {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  min-width: 52px;
}
.retreat-row__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.retreat-row__name {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.5vw, 30px);
  color: var(--dark);
  font-style: italic;
}
.retreat-row__dates {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.retreat-row__spots {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #C0603A;
  white-space: nowrap;
}
.spots-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #C0603A;
  flex-shrink: 0;
  animation: spotPulse 2.4s ease-in-out infinite;
}
@keyframes spotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.65); }
}
.retreat-row__arrow {
  font-size: 22px;
  color: var(--highlight);
  transition: transform 0.2s, color 0.2s;
  padding: 8px;
}
.retreat-row:hover .retreat-row__arrow { transform: translateX(6px); color: var(--primary); }
.retreat-row--active { background: rgba(201,169,110,0.08); border-left: 3px solid var(--highlight); }
@media (max-width: 600px) {
  .retreat-row { display: grid; grid-template-columns: auto 1fr auto; grid-template-rows: auto auto; align-items: center; gap: 2px 12px; text-decoration: none; }
  .retreat-row__year { grid-column: 1; grid-row: 1 / 3; align-self: center; min-width: auto; }
  .retreat-row__info { grid-column: 2; grid-row: 1; }
  .retreat-row__spots { grid-column: 2; grid-row: 2; display: flex; font-size: 12px; width: auto; }
  .retreat-row__arrow { grid-column: 3; grid-row: 1 / 3; align-self: center; }
}

/* ===== ABOUT ===== */
.about { background: var(--bg); text-align: center; }
.about__h2 { font-size: clamp(32px, 4vw, 52px); color: var(--dark); max-width: 680px; margin: 0 auto 24px; }
.about__h2 em { font-style: italic; }
.about__body { font-family: var(--font-body); font-size: 17px; color: var(--muted); max-width: 640px; margin: 0 auto 48px; line-height: 1.75; }
.about__stats { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.about__stat-num { font-family: var(--font-heading); font-size: 48px; color: var(--primary); display: block; line-height: 1; margin-bottom: 6px; }
.about__stat-label { font-family: var(--font-body); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }

/* ===== INCLUDED ===== */
/* ===== COMBINED SCHEDULE & INCLUDED ===== */
.nsched { padding: 100px 0 32px; background: var(--bg); overflow: hidden; }
.nsched__header { text-align: center; margin-bottom: 64px; }
.nsched__h2 { font-size: clamp(36px, 5vw, 68px); color: var(--dark); margin-top: 12px; line-height: 1.05; }
.nsched__h2 em { font-style: italic; color: var(--primary); }
.nsched__sub { font-family: var(--font-body); font-size: 16px; color: var(--muted); margin-top: 16px; }

.nsched__track-wrap {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 20px 64px 40px;
  overflow: hidden;
}
.nsched__track-wrap::before,
.nsched__track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 5;
}
.nsched__track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg) 40%, transparent); }
.nsched__track-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg) 40%, transparent); }

.nsched__track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Arrow buttons — shown on both desktop and mobile */
.nsched__arrow {
  display: flex;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 4px 16px rgba(44,62,45,0.18);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.25s, box-shadow 0.2s;
  border: none;
}
.nsched__arrow:hover { box-shadow: 0 6px 24px rgba(44,62,45,0.28); }
.nsched__arrow svg { width: 20px; height: 20px; stroke: var(--primary); }
.nsched__arrow--prev { left: 10px; }
.nsched__arrow--next { right: 10px; }
.nsched__arrow--hidden { opacity: 0 !important; pointer-events: none; }

.ns-card {
  background: white;
  border: 1px solid rgba(44,62,45,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  width: 270px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.ns-card:hover { box-shadow: 0 8px 32px rgba(44,62,45,0.1); border-color: var(--highlight); }
.ns-card__top { display: flex; justify-content: space-between; align-items: center; }
.ns-card__num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
}
.ns-card__date {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.ns-card__title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: var(--primary);
  line-height: 1.2;
  border-bottom: 1px solid rgba(44,62,45,0.1);
  padding-bottom: 14px;
}
.ns-card__events {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.ns-card__events li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--dark);
  line-height: 1.4;
}
.ns-card__events li svg {
  width: 15px; height: 15px;
  stroke: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.ns-card__events li em {
  font-style: normal;
  color: var(--muted);
  font-size: 11px;
  display: block;
  margin-bottom: 1px;
}
.ns-event--own { opacity: 0.55; }
.ns-event--own::after {
  content: 'own';
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface);
  border-radius: 4px;
  padding: 2px 5px;
  margin-left: auto;
  flex-shrink: 0;
  align-self: center;
}
.nsched__legend {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
}
.nsched__legend-item {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 7px;
}
.nsched__legend-item::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.nsched__legend-item--incl::before { background: var(--primary); }
.nsched__legend-item--own::before { background: var(--muted); opacity: 0.5; }
.ns-card__goodbye {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(44,62,45,0.1);
}

/* ===== INCLUDED ===== */
.included { background: var(--bg); }
.included__header { text-align: center; margin-bottom: 56px; }
.included__h2 { font-size: clamp(44px, 6vw, 80px); color: var(--dark); margin-top: 12px; line-height: 1; }
.included__h2 em { font-style: italic; color: var(--primary); }
.included__sub {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.02em;
}
.included__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.inc-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.inc-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(44,62,45,0.08); }
.inc-card__emoji { font-size: 32px; line-height: 1; }
.inc-card__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.activity-card {
  position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/5; cursor: default;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.activity-card:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(0,0,0,0.2); }
.activity-card img { width: 100%; height: 100%; object-fit: cover; }
.activity-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,28,26,0.88) 0%, rgba(28,28,26,0.1) 55%, transparent 100%); }
.activity-card__text { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 16px; }
.activity-card__icon { font-size: 20px; display: block; margin-bottom: 4px; }
.activity-card__name { font-family: var(--font-heading); font-size: 19px; font-style: italic; color: white; }

/* Full inclusions toggle */
.inclusions-toggle { text-align: center; margin-bottom: 48px; }
.inclusions-panel { display: none; }
.inclusions-panel.open { display: block; }
.inclusions-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 40px; background: var(--surface); border-radius: 12px; margin-top: 24px; }
.inclusions-list__group h4 { font-family: var(--font-heading); font-size: 20px; color: var(--primary); margin-bottom: 12px; }
.inclusions-list__group ul { list-style: none; }
.inclusions-list__group li { font-family: var(--font-body); font-size: 14px; color: var(--dark); padding: 6px 0; border-bottom: 1px solid rgba(28,28,26,0.07); display: flex; align-items: flex-start; gap: 8px; }
.inclusions-list__group li::before { content: '✓'; color: var(--accent); font-weight: 600; flex-shrink: 0; margin-top: 1px; }

/* Not included */
.not-included { background: var(--surface); border-radius: 12px; padding: 32px; margin-top: 32px; }
.not-included h3 { font-family: var(--font-heading); font-size: 24px; color: var(--dark); margin-bottom: 20px; }
.not-included__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.not-included__item { font-family: var(--font-body); font-size: 14px; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; }
.not-included__item::before { content: '✕'; color: var(--muted); flex-shrink: 0; }

/* ===== VILLA ===== */
.villa { background: var(--surface); padding-top: 56px; }
.villa__h2 { font-size: clamp(30px, 3.5vw, 48px); color: var(--dark); margin-bottom: 12px; }
.villa__h2 em { font-style: italic; }
.villa__sub { font-family: var(--font-body); font-size: 16px; color: var(--muted); max-width: 580px; margin-bottom: 16px; }
.villa__distance { display: flex; flex-direction: column; gap: 4px; margin-bottom: 36px; font-family: var(--font-body); font-size: 14px; color: var(--muted); }
/* Villa gallery grid */
.vgal { display: grid; grid-template-columns: 3fr 2fr; gap: 8px; height: 480px; border-radius: 16px; overflow: hidden; margin-bottom: 40px; cursor: pointer; position: relative; }
.vgal__hero { overflow: hidden; cursor: pointer; }
.vgal__hero img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.vgal__hero:hover img { transform: scale(1.03); }
.vgal__grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 8px; }
.vgal__cell { overflow: hidden; position: relative; cursor: pointer; }
.vgal__cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.vgal__cell:hover img { transform: scale(1.05); }
.vgal__hidden { display: none; }
.vgal__more-btn {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  background: white; color: var(--dark); border: none; border-radius: 6px;
  padding: 9px 16px; font-family: var(--font-body); font-size: 13px; font-weight: 500;
  cursor: pointer; display: flex; align-items: center; gap: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18); transition: box-shadow 0.2s; white-space: nowrap;
}
.vgal__more-btn:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.28); }
/* Villa lightbox modal */
.vgal__modal {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.vgal__modal.open { opacity: 1; pointer-events: all; }
.vgal__modal-overlay { position: absolute; inset: 0; background: rgba(10,10,10,0.96); }
/* Top bar */
.vgal__modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 4;
  background: white; border: none; color: var(--dark);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4); transition: transform 0.15s;
}
.vgal__modal-close:hover { transform: scale(1.08); }
/* Navigation arrows — solid white, always visible */
.vgal__modal-prev, .vgal__modal-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  background: white; border: none; color: var(--dark);
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.4); transition: transform 0.15s;
}
.vgal__modal-prev:hover, .vgal__modal-next:hover { transform: translateY(-50%) scale(1.08); }
.vgal__modal-prev { left: 16px; }
.vgal__modal-next { right: 16px; }
/* Image */
.vgal__modal-content { position: relative; z-index: 3; width: 100%; display: flex; align-items: center; justify-content: center; padding: 64px 80px 56px; box-sizing: border-box; }
.vgal__modal-img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; display: block; box-shadow: 0 8px 40px rgba(0,0,0,0.5); }
/* Counter */
.vgal__modal-counter {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 4;
  background: rgba(255,255,255,0.12); color: white; border-radius: 20px;
  padding: 5px 14px; font-family: var(--font-body); font-size: 13px; letter-spacing: 0.05em;
}
.vgal__modal-btn--hidden { opacity: 0 !important; pointer-events: none; }
@media (max-width: 767px) {
  .vgal__modal-prev { left: 8px; width: 40px; height: 40px; }
  .vgal__modal-next { right: 8px; width: 40px; height: 40px; }
  .vgal__modal-content { padding: 56px 56px 48px; }
}
.villa__amenities-toggle { margin-top: 32px; }
.villa__amenities-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: #fff; border: none; border-radius: 6px;
  padding: 14px 24px; font-family: var(--font-body); font-size: 15px; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.villa__amenities-btn:hover { background: #1e2e1f; }
.villa__amenities-chevron { transition: transform 0.35s ease; flex-shrink: 0; }
.villa__amenities-btn[aria-expanded="true"] .villa__amenities-chevron { transform: rotate(180deg); }
.villa__amenities-panel { max-height: 0; overflow: hidden; transition: max-height 0.45s ease; }
.villa__amenities-panel.open { max-height: 700px; }
.villa__amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 40px; padding: 28px 0 8px; }
.amenity-group h4 { font-family: var(--font-heading); font-size: 18px; color: var(--primary); margin-bottom: 10px; }
.amenity-group ul { list-style: none; }
.amenity-group li { font-family: var(--font-body); font-size: 13px; color: var(--muted); padding: 4px 0; display: flex; align-items: center; gap: 6px; }
.amenity-group li::before { content: '·'; color: var(--highlight); font-size: 18px; line-height: 0; margin-top: 2px; }

/* ===== SCHEDULE ===== */
.schedule { background: var(--bg); }
.schedule__h2 { font-size: clamp(30px, 3.5vw, 48px); color: var(--dark); margin-bottom: 8px; }
.schedule__h2 em { font-style: italic; }
.schedule__sub { font-family: var(--font-body); font-size: 15px; color: var(--muted); margin-bottom: 40px; }
.schedule__legend { display: flex; gap: 24px; margin-bottom: 32px; }
.legend-item { display: flex; align-items: center; gap: 6px; font-family: var(--font-body); font-size: 12px; color: var(--muted); }
.legend-dot { width: 8px; height: 8px; border-radius: 50%; }
.legend-dot--included { background: var(--accent); }
.legend-dot--own { background: var(--muted); }
.day-item { border-bottom: 1px solid rgba(28,28,26,0.1); }
.day-item__header {
  width: 100%; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; text-align: left;
}
.day-item__header:hover .day-item__title { color: var(--primary); }
.day-item__num { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--highlight); min-width: 44px; }
.day-item__title { font-family: var(--font-heading); font-size: 22px; color: var(--dark); flex: 1; transition: color 0.2s; }
.day-item__date { font-family: var(--font-body); font-size: 13px; color: var(--muted); }
.day-item__icon { width: 20px; height: 20px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.day-item.open .day-item__icon { transform: rotate(180deg); }
.day-item__body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.day-item.open .day-item__body { max-height: 600px; padding-bottom: 24px; }
.day-events { display: flex; flex-direction: column; gap: 10px; }
.day-event { display: flex; align-items: flex-start; gap: 16px; }
.day-event__time { font-family: var(--font-body); font-size: 13px; color: var(--muted); min-width: 64px; padding-top: 2px; }
.day-event__info { flex: 1; }
.day-event__name { font-family: var(--font-body); font-size: 15px; color: var(--dark); font-weight: 500; }
.day-event__note { font-family: var(--font-body); font-size: 13px; color: var(--muted); margin-top: 2px; }
.day-event__badge { display: inline-block; font-size: 11px; padding: 2px 8px; border-radius: 4px; margin-top: 4px; font-weight: 500; }
.day-event__badge--included { background: rgba(74,155,155,0.12); color: var(--accent); }
.day-event__badge--own { background: rgba(138,138,133,0.12); color: var(--muted); }

/* ===== TRAINING VENUE ===== */
.venue { background: var(--bg); }
.venue__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.venue__img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.venue__img img { width: 100%; height: 100%; object-fit: cover; }
.venue__h2 { font-size: clamp(28px, 3vw, 42px); color: var(--dark); margin-bottom: 20px; }
.venue__h2 em { font-style: italic; }
.venue__body { font-family: var(--font-body); font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--surface); }
.testimonials { padding-top: 64px; }
.testimonials__h2 { font-size: clamp(30px, 3.5vw, 48px); color: var(--dark); text-align: center; margin-bottom: 48px; }
.testimonials__h2 em { font-style: italic; }
.testi-carousel { max-width: 720px; margin: 0 auto; position: relative; }
.testi-track-wrap { overflow: hidden; position: relative; border-radius: 16px; }
.testi-track { display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.testi-card { flex: 0 0 100%; width: 100%; background: white; border: 1px solid #EDE8E1; border-radius: 16px; padding: 56px 64px; text-align: center; box-sizing: border-box; }
.testi-card__stars { color: var(--highlight); font-size: 18px; margin-bottom: 24px; letter-spacing: 3px; }
.testi-card__quote { font-family: var(--font-heading); font-style: italic; font-size: clamp(20px, 2.2vw, 26px); color: var(--dark); line-height: 1.55; margin-bottom: 28px; }
.testi-card__name { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--dark); }
.testi-card__context { font-family: var(--font-body); font-size: 13px; color: var(--muted); margin-top: 4px; }
.testi-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: white;
  border: 1px solid #EDE8E1; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(44,62,45,0.1); transition: box-shadow 0.2s; z-index: 2;
}
.testi-arrow:hover { box-shadow: 0 6px 24px rgba(44,62,45,0.2); }
.testi-arrow svg { width: 18px; height: 18px; stroke: var(--primary); }
.testi-arrow--prev { left: -54px; }
.testi-arrow--next { right: -54px; }
.testi-arrow--hidden { opacity: 0; pointer-events: none; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: #D8D3CB; cursor: pointer; padding: 0; transition: background 0.3s; }
.testi-dot--active { background: var(--primary); }

/* ===== PRICING ===== */
.pricing { background: var(--bg); text-align: center; }
.pricing__h2 { font-size: clamp(30px, 3.5vw, 48px); color: var(--dark); margin-bottom: 8px; }
.pricing__h2 em { font-style: italic; }
.pricing__sub { font-family: var(--font-body); font-size: 16px; color: var(--muted); margin-bottom: 12px; }
.pricing__retreat-label { font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--highlight); text-align: center; margin-bottom: 36px; transition: opacity 0.25s; }
.pricing__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 800px; margin: 0 auto 48px; align-items: stretch; }
.price-card { background: white; border-radius: 20px; padding: 40px; text-align: left; box-shadow: 0 2px 24px rgba(28,28,26,0.07); border: 2px solid transparent; transition: border-color 0.2s, box-shadow 0.2s; display: flex; flex-direction: column; position: relative; }
.price-card:hover { border-color: rgba(201,169,110,0.4); box-shadow: 0 8px 40px rgba(28,28,26,0.12); }
.price-card--featured { border-color: var(--primary); box-shadow: 0 8px 40px rgba(44,62,45,0.15); }
.price-card--featured:hover { border-color: var(--primary); }
.price-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; min-height: 28px; }
.price-card__badge { display: inline-block; background: var(--primary); color: white; font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: 50px; white-space: nowrap; }
.price-card__label { font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.price-card__price-area { height: 112px; display: flex; flex-direction: column; justify-content: flex-end; margin-bottom: 4px; }
.price-card__was-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.price-card__was { font-family: var(--font-heading); font-size: 36px; color: var(--muted); text-decoration: line-through; }
.price-card__savings { display: inline-flex; align-items: center; background: rgba(44,62,45,0.07); color: var(--primary); font-family: var(--font-body); font-size: 11px; font-weight: 600; padding: 3px 9px; border-radius: 50px; }
.price-card__amount { font-family: var(--font-heading); font-size: 56px; color: var(--dark); line-height: 1; display: flex; align-items: baseline; gap: 6px; }
.price-card__amount > span:first-child { font-size: 22px; vertical-align: top; margin-top: 10px; display: inline-block; }
.price-card__amount small { font-family: var(--font-body); font-size: 13px; font-weight: 400; color: var(--muted); align-self: flex-end; padding-bottom: 6px; margin-left: 2px; }
.price-card__divider { height: 1px; background: var(--surface); margin: 20px 0; }
.price-card__perks { list-style: none; display: flex; flex-direction: column; margin-bottom: 28px; flex: 1; }
.price-card__perks li { font-family: var(--font-body); font-size: 14px; color: var(--muted); line-height: 1.5; padding: 10px 0; border-bottom: 1px solid var(--surface); }
.price-card__perks li:first-child { padding-top: 0; }
.price-card__perks li:last-child { border-bottom: none; }
.price-card .btn { width: 100%; text-align: center; margin-top: auto; }
@keyframes ctaPulseGreen { 0%,100%{box-shadow:0 0 0 0 rgba(44,62,45,0.35)} 50%{box-shadow:0 0 0 14px rgba(44,62,45,0)} }
.price-card__btn--pulse { animation: ctaPulseGreen 4s ease infinite; }
.price-card__btn--pulse:hover { animation: none; }
.pricing__note { font-family: var(--font-body); font-size: 13px; color: var(--muted); }
.pricing__note a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.pricing__note a:hover { border-color: var(--accent); }
.pricing__call-cta { text-align: center; margin-top: 40px; }
.pricing__call-cta p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.pricing__call-btn { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--primary); color: var(--primary); padding: 14px 28px; border-radius: 50px; font-size: 14px; font-weight: 500; transition: background 0.2s, color 0.2s; }
.pricing__call-btn:hover { background: var(--primary); color: white; }
.pricing__how-to-book { max-width: 640px; margin: 48px auto 0; text-align: left; }
.pricing__how-to-book h3 { font-family: var(--font-heading); font-size: 30px; color: var(--dark); margin-bottom: 28px; text-align: center; }
.booking-steps { display: flex; flex-direction: column; gap: 20px; }
.booking-step { display: flex; gap: 16px; align-items: flex-start; }
.booking-step__num { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: white; font-family: var(--font-body); font-size: 14px; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-step__text h4 { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.booking-step__text p { font-family: var(--font-body); font-size: 14px; color: var(--muted); }
.pricing__callbox { background: white; border-radius: 12px; padding: 32px; text-align: center; margin-top: 40px; max-width: 480px; margin-left: auto; margin-right: auto; }
.pricing__callbox p { font-family: var(--font-heading); font-style: italic; font-size: 22px; color: var(--dark); margin-bottom: 12px; }
.pricing__callbox .contact-links { display: flex; justify-content: center; gap: 24px; margin-top: 12px; }
.contact-links a { font-family: var(--font-body); font-size: 14px; color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.contact-links a:hover { border-color: var(--accent); }

/* ===== FAQ ===== */
.faq { background: var(--surface); }
.faq__h2 { font-size: clamp(28px, 3vw, 42px); color: var(--dark); margin-bottom: 8px; }
.faq__h2 em { font-style: italic; }
.faq__sub { font-family: var(--font-body); font-size: 15px; color: var(--muted); margin-bottom: 40px; }
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 64px; }
.faq__col { }
.faq__item { border-bottom: 1px solid rgba(28,28,26,0.1); }
.faq__q { width: 100%; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; background: none; font-family: var(--font-body); font-size: 16px; font-weight: 500; color: var(--dark); transition: color 0.2s; }
.faq__q:hover { color: var(--primary); }
.faq__chevron { width: 18px; height: 18px; color: var(--muted); transition: transform 0.3s; flex-shrink: 0; }
.faq__item.open .faq__chevron { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq__item.open .faq__a { max-height: 300px; padding-bottom: 20px; }
.faq__a p { font-family: var(--font-body); font-size: 15px; color: var(--muted); line-height: 1.75; }
.faq__a a { color: var(--accent); }

/* ===== BOOK CTA ===== */
.book-cta { background: var(--primary); text-align: center; }
.book-cta .eyebrow { color: rgba(255,255,255,0.5); }
.book-cta__h2 { font-size: clamp(32px, 4vw, 56px); color: white; max-width: 680px; margin: 0 auto 16px; }
.book-cta__h2 em { font-style: italic; }
.book-cta__sub { font-family: var(--font-body); font-size: 17px; color: rgba(255,255,255,0.65); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }
.book-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
@keyframes ctaPulse { 0%,100%{box-shadow:0 0 0 0 rgba(201,169,110,0.35)} 50%{box-shadow:0 0 0 14px rgba(201,169,110,0)} }
.btn--gold { animation: ctaPulse 8s ease infinite; }
.btn--gold:hover { animation: none; }

/* ===== POLICY ===== */
.policy { background: var(--bg); }
.policy__h2 { font-size: clamp(28px, 3vw, 38px); color: var(--dark); margin-bottom: 32px; }
.policy__h2 em { font-style: italic; }
.policy__blocks { display: flex; flex-direction: column; gap: 24px; }
.policy-block { background: white; border-radius: 12px; padding: 28px 32px; display: flex; gap: 16px; align-items: flex-start; }
.policy-block__icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.policy-block h4 { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.policy-block p { font-family: var(--font-body); font-size: 14px; color: var(--muted); line-height: 1.7; }
.policy-block p strong { color: var(--dark); }

/* ===== FOOTER ===== */
.footer { background: var(--primary); padding: 72px 0 40px; text-align: center; }
.footer__brand { margin-bottom: 28px; }
.footer__logo { font-family: var(--font-heading); font-size: 42px; font-style: italic; color: white; margin-bottom: 8px; letter-spacing: 0.01em; }
.footer__tagline { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; }
.footer__links { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.footer__links a { font-family: var(--font-body); font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__links a:hover { color: white; }
.footer__dot { width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.25); display: inline-block; }
.footer__cta { display: inline-block; margin-bottom: 48px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }
.footer__copy { font-family: var(--font-body); font-size: 12px; color: rgba(255,255,255,0.25); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
  .included__grid { grid-template-columns: repeat(2, 1fr); }
  .vgal { height: 380px; }
  .villa__amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .venue__inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing__cards { grid-template-columns: 1fr; max-width: 400px; }
  .footer__links { flex-direction: column; gap: 12px; }
  .footer__dot { display: none; }
  .not-included__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .section { padding: 72px 0; }
  .nav__links { display: none; }
  .hero { min-height: 70svh; }
  .hero__img { object-position: center center; }
  .hero__h1 { font-size: 44px; }
  .included__grid { grid-template-columns: 1fr 1fr; }
  .vgal { grid-template-columns: 1fr; grid-template-rows: 240px 160px; height: auto; }
  .vgal__grid { grid-template-columns: repeat(4, 1fr); grid-template-rows: 1fr; }
  .villa__amenities-grid { grid-template-columns: 1fr 1fr; }
  .vgal__modal-prev { left: 10px; }
  .vgal__modal-next { right: 10px; }
  .testi-card { padding: 40px 28px; }
  .testi-arrow--prev { left: -20px; }
  .testi-arrow--next { right: -20px; }
  .price-card { padding: 28px 24px; }
  .price-card__price-area { height: auto; min-height: 90px; }
  .inclusions-list { grid-template-columns: 1fr; }
  .not-included__grid { grid-template-columns: 1fr; }
  .faq__grid { grid-template-columns: 1fr; gap: 0; }
  .nsched { padding: 72px 0 60px; }
  .nsched__track-wrap {
    padding: 24px 0 40px;
    overflow: hidden;
  }
  .nsched__track {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    padding: 16px 56px;
    gap: 12px;
  }
  .nsched__track::-webkit-scrollbar { display: none; }
  .ns-card {
    scroll-snap-align: center;
    min-width: calc(100vw - 136px);
    width: calc(100vw - 136px);
    padding: 22px 18px;
    opacity: 0.45;
    transform: scale(0.93);
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
  }
  .ns-card--active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 16px 48px rgba(44,62,45,0.15);
  }
  .nsched__arrow { display: flex; }
  .retreat-row { flex-wrap: wrap; gap: 10px; }
  .retreat-row__spots { font-size: 11px; }
  .retreats__h2 { font-size: clamp(32px, 8vw, 52px); }
}

@media (max-width: 375px) {
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
  .hero__h1 { font-size: 36px; }
  .included__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ns-card { width: 220px; }
}

/* ===== PAY OPTIONS MODAL ===== */
.pay-options-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.pay-options-modal.open { opacity: 1; pointer-events: all; }
.pay-options-modal__overlay { position: absolute; inset: 0; background: rgba(28,28,26,0.6); backdrop-filter: blur(4px); }
.pay-options-modal__box { position: relative; background: var(--bg); border-radius: 20px; padding: 48px 40px 40px; max-width: 460px; width: calc(100% - 40px); box-shadow: 0 24px 80px rgba(28,28,26,0.3); animation: modalSlideIn 0.3s ease; }
.pay-options-modal__option { display: block; background: white; border: 2px solid rgba(201,169,110,0.25); border-radius: 14px; padding: 20px 24px; text-decoration: none; color: var(--dark); transition: border-color 0.2s, box-shadow 0.2s; margin-bottom: 0; }
.pay-options-modal__option:hover { border-color: var(--highlight); box-shadow: 0 4px 20px rgba(201,169,110,0.2); }
.pay-options-modal__opt-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.pay-options-modal__opt-label { font-family: var(--font-body); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.pay-options-modal__opt-badge { font-family: var(--font-body); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; background: var(--primary); color: white; padding: 3px 10px; border-radius: 20px; }
.pay-options-modal__opt-was-row { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.pay-options-modal__opt-was { font-family: var(--font-heading); font-size: 20px; color: var(--muted); text-decoration: line-through; }
.pay-options-modal__opt-savings { font-family: var(--font-body); font-size: 11px; font-weight: 500; background: var(--surface); color: var(--dark); padding: 3px 10px; border-radius: 20px; }
.pay-options-modal__opt-amount { font-family: var(--font-heading); font-size: 40px; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.pay-options-modal__opt-amount small { font-family: var(--font-body); font-size: 13px; color: var(--muted); margin-left: 4px; }
.pay-options-modal__opt-amount-sm { font-family: var(--font-body); font-size: 17px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.pay-options-modal__opt-amount-sm small { font-size: 13px; font-weight: 400; color: var(--muted); }
.pay-options-modal__opt-note { font-family: var(--font-body); font-size: 12px; color: var(--muted); }
.pay-options-modal__divider { text-align: center; font-family: var(--font-body); font-size: 11px; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin: 14px 0; position: relative; }
.pay-options-modal__divider::before, .pay-options-modal__divider::after { content: ''; position: absolute; top: 50%; width: calc(50% - 20px); height: 1px; background: var(--surface); }
.pay-options-modal__divider::before { left: 0; }
.pay-options-modal__divider::after { right: 0; }
@media (max-width: 600px) { .pay-options-modal__box { padding: 48px 24px 32px; } }

/* ===== BOOKING MODAL ===== */
.book-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.book-modal.open {
  opacity: 1;
  pointer-events: all;
}
.book-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 26, 0.6);
  backdrop-filter: blur(4px);
}
.book-modal__box {
  position: relative;
  background: var(--bg);
  border-radius: 20px;
  padding: 48px 40px 40px;
  max-width: 480px;
  width: calc(100% - 40px);
  box-shadow: 0 24px 80px rgba(28, 28, 26, 0.3);
  animation: modalSlideIn 0.3s ease;
}
@keyframes modalSlideIn {
  from { transform: translateY(16px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.book-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: background 0.2s;
}
.book-modal__close:hover { background: #e0dbd3; }
.book-modal__eyebrow { display: block; margin-bottom: 6px; }
.book-modal__title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--dark);
}

/* Date options */
.book-modal__dates { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.book-modal__opt { cursor: pointer; }
.book-modal__opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.book-modal__opt-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1.5px solid #DDD8D0;
  background: white;
  transition: border-color 0.2s, background 0.2s;
}
.book-modal__opt input:checked + .book-modal__opt-inner {
  border-color: var(--primary);
  background: rgba(44, 62, 45, 0.04);
}
.book-modal__opt-date {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--dark);
}
.book-modal__opt-spots {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* Payment toggle */
.book-modal__payment-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}
.book-modal__popt {
  flex: 1;
  padding: 11px 8px;
  border-radius: 8px;
  border: 1.5px solid #DDD8D0;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--muted);
  background: white;
  transition: all 0.2s;
  line-height: 1.4;
}
.book-modal__popt small { font-size: 11px; font-weight: 400; display: block; }
.book-modal__popt--active {
  border-color: var(--highlight);
  background: rgba(201, 169, 110, 0.08);
  color: var(--dark);
}
.book-modal__pnote {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.5;
}
.book-modal__cta {
  width: 100%;
  text-align: center;
  pointer-events: none;
  opacity: 0.5;
}
.book-modal__cta.ready {
  pointer-events: all;
  opacity: 1;
}

@media (max-width: 767px) {
  .book-modal__box { padding: 40px 24px 32px; }
  .book-modal__title { font-size: 24px; }
  .book-modal__payment-toggle { flex-direction: column; }
}

/* ===== WAITLIST MODAL ===== */
.retreat-row__spots--soon {
  color: var(--highlight);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.waitlist-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.waitlist-modal.open { opacity: 1; pointer-events: all; }
.waitlist-modal__overlay { position: absolute; inset: 0; background: rgba(28,28,26,0.6); backdrop-filter: blur(4px); }
.waitlist-modal__box {
  position: relative; background: var(--bg); border-radius: 20px;
  padding: 48px 40px 40px; max-width: 480px; width: calc(100% - 40px);
  box-shadow: 0 24px 80px rgba(28,28,26,0.3); animation: modalSlideIn 0.3s ease;
}
.waitlist-modal__close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--dark); transition: background 0.2s;
}
.waitlist-modal__close:hover { background: #e0dbd3; }
.waitlist-modal__title {
  font-family: var(--font-heading); font-size: 28px; font-weight: 400;
  color: var(--dark); margin-bottom: 8px;
}
.waitlist-modal__sub {
  font-family: var(--font-body); font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6;
}
.waitlist-form { display: flex; flex-direction: column; gap: 12px; }
.waitlist-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.waitlist-form input {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid #DDD8D0; background: white;
  font-family: var(--font-body); font-size: 15px; color: var(--dark);
  outline: none; transition: border-color 0.2s;
}
.waitlist-form input:focus { border-color: var(--primary); }
.waitlist-form input::placeholder { color: var(--muted); }
.waitlist-form__submit { margin-top: 4px; width: 100%; text-align: center; }
.waitlist-success { display: none; text-align: center; padding: 20px 0 8px; }
.waitlist-success.visible { display: block; }
.waitlist-success__heading {
  font-family: var(--font-heading); font-style: italic; font-size: 26px;
  color: var(--dark); margin-bottom: 10px;
}
.waitlist-success__sub { font-family: var(--font-body); font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (max-width: 767px) {
  .waitlist-form__row { grid-template-columns: 1fr; }
  .waitlist-modal__box { padding: 40px 24px 32px; }
  .waitlist-modal__title { font-size: 24px; }
}
