/* 
 * Shunaya Retreats - Redesigned (v2.0)
 * Sticky header, oval cursor, static pillars, calendar, scroll cards, brand collab
 */

:root {
  --soft-green: #7A8F7C;
  --dark-green: #2B3A2C;
  --charcoal: #1E1E1E;
  --sand: #F5F1EA;
  --white: #FFFFFF;
  --pure-white: #FFFFFF;
  --font-heading: 'Playfair Display', serif;
  --font-sans: 'Jost', sans-serif;
  
  --spacing-sm: clamp(1.5rem, 4vw, 2rem);
  --spacing-md: clamp(2.5rem, 6vw, 4.0rem);
  --spacing-lg: clamp(4rem, 10vw, 8rem);
  --spacing-xl: clamp(6rem, 15vw, 12rem);
}

/* Reset & Basics */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background-color: var(--sand);
}

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden; 
  background-color: var(--sand);
}

/* Custom Cursor Basics */
* {
  cursor: none !important;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

/* -- Utilities -- */
.container { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.full-width { padding: var(--spacing-lg) 5%; }
.center-text { text-align: center; }
.margin-bottom-md { margin-bottom: var(--spacing-md); }
.margin-bottom-lg { margin-bottom: var(--spacing-lg); }
.spacer-top { margin-top: var(--spacing-lg); }
.spacer-top-sm { margin-top: var(--spacing-md); }
.muted { color: #888; font-size: 0.95rem; }

.section-subtitle {
  font-size: 1.1rem;
  color: #888;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* -- Header (Sticky with Glassmorphism) -- */
.main-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.main-header.header-scrolled {
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  padding: 1rem 5%;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--soft-green);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--soft-green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-instagram {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
  margin-right: 1.5rem;
}

.nav-instagram:hover {
  color: var(--soft-green);
}

.btn-pill {
  background: var(--charcoal);
  color: var(--pure-white);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-pill:hover { 
  background: #333; 
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--charcoal);
  cursor: pointer;
}

/* -- Hero Section -- */
.hero-wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(to bottom, var(--pure-white) 0%, rgba(255,255,255,0.7) 15%, rgba(0,0,0,0.2) 60%), url('images/ONZS2845.webp');
  background-size: 100% 100%, cover;
  background-position: center top, center center;
  background-repeat: no-repeat, no-repeat;
  display: flex;
  align-items: center; 
  justify-content: center;
  padding-bottom: 5vh;
  padding-top: 10vh; 
  overflow: visible;
}

.hero-content-box.centered-hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: auto;
  text-align: center;
  gap: 2rem;
}

.hero-title {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(4rem, 10vw, 8rem);
  line-height: 1.05; 
  color: var(--pure-white);
  margin-bottom: 0;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.minimal-text {
  max-width: 600px;
  width: 90%;
  color: var(--pure-white);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.minimal-text p {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
}

/* Scroll Down Indicator (Centered) */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 10;
  color: var(--pure-white);
  margin-top: 2rem;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* Hide scroll indicator when search results panel is active to prevent overlapping */
.hero-content-box:has(.search-results-panel.active) .scroll-indicator {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transform: translateY(15px);
}

.scroll-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 20px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--pure-white);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { transform: translate(-50%, 0); opacity: 1; }
  50% { transform: translate(-50%, 15px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}


/* --- Standard Sections --- */
.page-content {
  position: relative;
  z-index: 20;
  background-color: transparent;
}

/* Intro Setup */
.intro { 
  padding-top: var(--spacing-xl);
  padding-bottom: var(--spacing-md); 
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: flex-start;
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .two-liner-title {
    white-space: normal !important;
  }
}

.two-liner-title {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  line-height: 1.4;
  color: var(--charcoal);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
  font-weight: 500;
  white-space: nowrap;
}

.intro-right .lead-text {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--charcoal);
}

.intro-right p { 
  margin-bottom: 1.5rem; 
  font-size: 0.95rem; 
  line-height: 1.7;
}

.parallax-text {
  will-change: transform;
}

/* --- Retreat Hero Section (Two Column Layout) --- */
.retreat-hero {
  position: relative;
  width: 100%;
}

.retreat-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.retreat-hero-img-box {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.retreat-hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.retreat-hero-content-box {
  padding: 2rem 0;
}

.retreat-hero-content-box h2 {
  color: var(--charcoal);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
  font-style: italic;
}

.retreat-hero-text p {
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.retreat-hero-text strong {
  color: var(--dark-green);
}
/* --- Retreat Cards (Horizontal Scroll) --- */
.retreats-scroll-section {
  padding-bottom: var(--spacing-md);
}

.section-header {
  margin-bottom: 3rem;
}

.retreat-scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.retreat-scroll {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0 2rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.retreat-scroll::-webkit-scrollbar {
  display: none;
}

.retreat-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.9);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.5s ease;
}

.retreat-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

.retreat-card-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.retreat-card:hover .retreat-card-img {
  transform: scale(1.05);
}

.retreat-card-body {
  padding: 2rem;
}

.retreat-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--soft-green);
  font-weight: 600;
  margin-bottom: 0.5rem;
  background: rgba(122, 143, 124, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.retreat-card-body h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.retreat-card-body p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-book {
  display: inline-block;
  background: var(--charcoal);
  color: var(--pure-white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: var(--soft-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(122, 143, 124, 0.3);
}

.scroll-arrow {
  position: absolute;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--pure-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.scroll-arrow:hover {
  background: #333;
  transform: scale(1.1);
}

.scroll-arrow-left { left: -24px; }
.scroll-arrow-right { right: -24px; }

/* --- Full Year Calendar --- */
.calendar-section {
  background: var(--sand);
}

.calendar-key {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.key-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

.key-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.key-holiday { background: #5B8DEF; }
.key-upcoming { background: #4CAF50; }
.key-previous { background: #FF9800; }

/* 12-Month Year Grid */
.year-calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1100px) {
  .year-calendar-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .year-calendar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .year-calendar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .month-card {
    padding: 0.6rem 0.4rem !important;
    border-radius: 12px !important;
  }
  .month-card-title {
    font-size: 0.85rem !important;
    margin-bottom: 0.5rem !important;
  }
  .month-weekdays {
    font-size: 0.55rem !important;
    margin-bottom: 0.2rem !important;
  }
  .cal-day {
    font-size: 0.65rem !important;
    border-radius: 4px !important;
  }
}

/* Individual Month Card */
.month-card {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 25px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.month-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.month-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.8rem;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}

.month-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.month-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  cursor: default;
  transition: all 0.2s ease;
  position: relative;
  color: var(--charcoal);
}

.cal-day.empty {
  pointer-events: none;
}

.cal-day.today {
  background: var(--charcoal);
  color: var(--pure-white);
  font-weight: 700;
  border-radius: 50%;
}

.cal-day.has-event {
  cursor: pointer;
  font-weight: 700;
}

.cal-day.has-event:hover {
  transform: scale(1.3);
  z-index: 5;
}

.cal-day.holiday::after,
.cal-day.upcoming::after,
.cal-day.previous::after {
  content: '';
  position: absolute;
  bottom: 1px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.cal-day.holiday::after { background: #5B8DEF; }
.cal-day.upcoming::after { background: #4CAF50; }
.cal-day.previous::after { background: #FF9800; }

.cal-day.holiday {
  background: rgba(91, 141, 239, 0.15);
}

.cal-day.upcoming {
  background: rgba(76, 175, 80, 0.15);
}

.cal-day.previous {
  background: rgba(255, 152, 0, 0.15);
}

/* Calendar Detail Panel */
.calendar-detail {
  max-width: 800px;
  margin: 2rem auto 0;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  display: none;
  position: relative;
  animation: slideUp 0.4s ease;
}

.calendar-detail.active {
  display: block;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.detail-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--pure-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.detail-close:hover {
  background: #333;
  transform: rotate(90deg);
}

.detail-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.detail-content .detail-date {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 1rem;
}

.detail-content .detail-type {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.detail-type.type-holiday {
  background: rgba(91, 141, 239, 0.15);
  color: #5B8DEF;
}

.detail-type.type-upcoming {
  background: rgba(76, 175, 80, 0.15);
  color: #4CAF50;
}

.detail-type.type-previous {
  background: rgba(255, 152, 0, 0.15);
  color: #FF9800;
}

.detail-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* --- Moments / Video Grid --- */
.moments-section {
  padding-bottom: var(--spacing-md);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.video-card {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.video-embed {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.video-embed blockquote {
  margin: 0 !important;
  max-width: 100% !important;
  min-width: 280px !important;
  width: 100% !important;
  border-radius: 16px !important;
  overflow: hidden;
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.video-placeholder-inner {
  text-align: center;
  padding: 3rem;
}

.video-placeholder-inner i {
  font-size: 4rem;
  color: var(--soft-green);
  margin-bottom: 1.5rem;
  display: block;
}

.video-placeholder-inner h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.video-placeholder-inner p {
  color: #888;
  font-size: 0.95rem;
}

/* --- Brand Collaborations --- */
.collaborations-section {
  padding-bottom: var(--spacing-md);
}

.collab-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 3rem 0;
}

.collab-logo-item {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
  padding: 1rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.05);
  background: rgba(255,255,255,0.3);
}

.collab-logo-item:hover {
  color: var(--charcoal);
  border-color: rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.6);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* --- Testimonials --- */
.testimonials {
  background-color: #2A3525;
  color: var(--white);
  padding: 5rem 0;
}

.testimonials h2 {
  color: var(--white) !important;
}

.testimonial-marquee-wrapper {
  display: flex;
  flex-wrap: nowrap !important;
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 3rem 0;
}

.testimonial-marquee-wrapper::before,
.testimonial-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.testimonial-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #2A3525, transparent);
}
.testimonial-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #2A3525, transparent);
}

.testimonial-list {
  display: flex;
  flex-wrap: nowrap !important;
  flex-shrink: 0;
  gap: 2rem;
  padding-right: 2rem;
  width: max-content;
  animation: scroll-marquee 120s linear infinite;
}

.testimonial-marquee-wrapper:hover .testimonial-list {
  animation-play-state: paused;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.testimonial-block {
  flex: 0 0 380px;
  scroll-snap-align: center;
  text-align: left;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform 0.3s ease, background 0.3s ease;
}

.testimonial-block:hover {
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--charcoal);
  margin: 0;
  font-weight: 600;
}

.testimonial-trip {
  font-size: 0.85rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.testimonial-body {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

.testimonial-body p {
  margin-bottom: 1rem;
}
.testimonial-body p:last-child {
  margin-bottom: 0;
}

/* --- Yoga Calendar CTA --- */
.yoga-cta-section {
  padding-bottom: var(--spacing-md);
}

.yoga-cta-card {
  padding: 4rem;
  text-align: center;
  background: rgba(122, 143, 124, 0.15);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(122, 143, 124, 0.3);
  border-radius: 30px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.yoga-cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(122, 143, 124, 0.15);
}

.yoga-cta-icon {
  font-size: 4rem;
  color: var(--soft-green);
  margin-bottom: 1.5rem;
  display: block;
}

.yoga-cta-content h2 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.yoga-cta-content p {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.yoga-cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline-dark {
  display: inline-block;
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--pure-white);
  transform: translateY(-2px);
}

/* --- Founder's Note --- */
.founders-note {
  position: relative;
  width: 100%;
  padding: 8rem 0;
  background-image: linear-gradient(to bottom, rgba(15,20,15,0.75) 0%, rgba(15,20,15,0.5) 20%, rgba(15,20,15,0.5) 80%, rgba(15,20,15,0.75) 100%), url('images/extracted/founders_note.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.founders-note-content-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 4.5rem;
  background: rgba(20, 25, 20, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.founders-note-letter .label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: var(--soft-green);
  font-weight: 600;
  opacity: 0.9;
}

.founders-note-letter h2 {
  margin-bottom: 2rem;
  color: var(--pure-white);
}

.founders-letter-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.88);
}

.founders-signatures {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.founder-sig {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-sig-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.founder-sig strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--pure-white);
}

.founder-sig span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Minimal Footer */
.minimal-footer {
  background: transparent;
  padding: 3rem 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.5rem);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--soft-green);
}

.footer-links .divider {
  color: #ccc;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

/* Clean CSS Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Reusable Image Utilities */
.rounded-img {
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.full-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Intro Image Integration */
.intro-image-block {
  margin-top: 3rem;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.serif-text {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 3rem;
  letter-spacing: 0.01em;
}

/* --- Pillars Section: Static (No Hover Animation) --- */
.pillars {
  display: flex;
  min-height: 90vh;
  gap: 0;
  overflow: hidden;
  margin-top: var(--spacing-lg);
}

.pillar-item {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
  overflow: hidden;
}

/* No hover expansion â€” static layout */

.pillar-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.4) blur(5px);
  transform: scale(1.1);
}

/* No hover zoom on bg â€” static */

.pillar-content {
  position: relative;
  z-index: 2;
  width: 420px;
  max-width: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.glass-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  color: var(--charcoal);
  opacity: 0.6;
}

.pillar-item h2 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 2rem;
  font-style: italic;
  color: var(--charcoal);
}

.pillar-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
}

.pillar-text strong {
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
  .pillars {
    flex-direction: column;
    min-height: auto;
  }
  .pillar-item {
    min-height: 60vh;
  }
}

/* --- Custom Cursor Styling (OVAL) --- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--charcoal);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

.cursor-outline {
  width: 50px;
  height: 34px;
  border: 1.5px solid var(--charcoal);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
              height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
              background-color 0.4s ease, 
              border-color 0.4s ease, 
              opacity 0.4s ease;
}

/* Interactive States */
.cursor-outline.hovered {
  width: 90px;
  height: 62px;
  background-color: rgba(30,30,30, 0.05);
  border-color: rgba(30,30,30, 0.2);
}

.cursor-dot.hovered {
  opacity: 0.5;
  width: 4px;
  height: 4px;
}

.cursor-outline.card-hovered {
  width: 130px;
  height: 90px;
  background-color: rgba(122, 143, 124, 0.1);
  border-color: var(--soft-green);
  border-width: 1.5px;
}

.cursor-dot.active {
  transform: translate(-50%, -50%) scale(0.5);
}

.cursor-outline.active {
  transform: translate(-50%, -50%) scale(1.2);
}

/* Mobile Fallback */
@media (max-width: 1024px) {
  * { cursor: auto !important; }
  .cursor-dot, .cursor-outline { display: none !important; }
}



/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-instagram { display: none; }
  .mobile-nav-toggle { display: block; }
  
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .intro-image-block { height: 300px; width: 100%; }
  .retreat-card { flex: 0 0 85vw; }
  .testimonial-block { flex: 0 0 85vw; padding: 2rem; }
  .retreat-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .retreat-hero-img-box { height: 300px; }
  .retreat-hero-content-box { padding: 1rem 0; text-align: center; }
}

/* --- Airbnb-Style Retreats Search Bar --- */
.retreats-search-wrapper {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 3.5rem;
  padding: 0 1.5rem;
  position: relative;
  z-index: 150;
}

.retreats-search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
  border-radius: 100px;
  padding: 0.5rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
  max-width: 820px;
  transition: all 0.3s ease;
}

.retreats-search-bar:hover {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
}

.search-segment {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.6rem 1.8rem;
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  flex: 1;
  user-select: none;
  transition: background-color 0.25s ease;
}

.search-segment:hover {
  background: rgba(0, 0, 0, 0.035);
}

.search-segment-icon {
  font-size: 1.3rem;
  color: var(--soft-green);
  display: flex;
  align-items: center;
}

.search-segment-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.search-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--charcoal);
  opacity: 0.7;
}

.search-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap;
}

.search-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, 0.08);
}

/* Dropdown Menu */
.search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 240px;
  background: var(--sand);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 110;
}

.search-segment.active .search-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.search-dropdown-item {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.search-dropdown-item:hover {
  background: rgba(122, 143, 124, 0.1);
  color: var(--dark-green);
}

.search-dropdown-item.active {
  background: var(--soft-green);
  color: var(--pure-white);
  font-weight: 600;
}

/* Search Button */
.search-btn {
  background: var(--soft-green);
  color: var(--pure-white);
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(122, 143, 124, 0.2);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-left: 0.5rem;
}

.search-btn:hover {
  background: var(--dark-green);
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(122, 143, 124, 0.35);
}

.search-btn:active {
  transform: scale(0.98);
}

/* Search Results Pop-up Overlay (Modal style) */
.search-results-panel {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.search-results-panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

/* Modal Content Card */
.search-results-modal {
  width: 95%;
  max-width: 820px;
  max-height: 85vh;
  background: rgba(245, 241, 234, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.08);
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.search-results-panel.active .search-results-modal {
  transform: scale(1) translateY(0);
}

.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 0.8rem;
}

.search-results-header h3 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.search-results-close-btn {
  background: rgba(0, 0, 0, 0.04);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  color: var(--charcoal);
  transition: all 0.25s ease;
}

.search-results-close-btn:hover {
  background: var(--charcoal);
  color: var(--pure-white);
}

.search-results-body {
  max-height: 420px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--soft-green) transparent;
  padding-right: 0.5rem;
}

.search-results-body::-webkit-scrollbar {
  width: 5px;
}

.search-results-body::-webkit-scrollbar-thumb {
  background: var(--soft-green);
  border-radius: 10px;
}

.search-results-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Individual Result Card */
.search-result-item {
  display: flex;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 1rem;
  transition: all 0.3s ease;
  align-items: center;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.search-result-img {
  width: 100px;
  height: 100px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.search-result-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--soft-green);
  text-transform: uppercase;
}

.search-result-info h4 {
  font-size: 1.2rem;
  margin: 0;
  color: var(--charcoal);
}

.search-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: #666;
}

.search-result-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.search-result-meta i {
  color: var(--soft-green);
}

.search-result-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
  margin-top: 0.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-result-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}

.search-result-price {
  text-align: right;
  display: flex;
  flex-direction: column;
}

.search-result-price-label {
  font-size: 0.7rem;
  color: #888;
  text-transform: uppercase;
}

.search-result-price-val {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-green);
}

.search-result-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

/* Empty State */
.search-results-empty {
  text-align: center;
  padding: 3rem 1rem;
}

.search-results-empty .no-results-icon {
  font-size: 2.8rem;
  color: #ccc;
  margin-bottom: 0.8rem;
}

.search-results-empty h4 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.search-results-empty p {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* Mobile Stacking for Result Items */
@media (max-width: 580px) {
  .search-result-item {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .search-result-img {
    width: 100%;
    height: 150px;
  }

  .search-result-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 0.8rem;
    margin-top: 0.2rem;
  }

  .search-result-price {
    text-align: left;
  }
}


/* Retreat Cards Transitions for Filtering */
.retreat-card {
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}

.retreat-card.filter-hidden {
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Responsive Stacking */
@media (max-width: 768px) {
  .retreats-search-bar {
    flex-direction: column;
    border-radius: 24px;
    padding: 1rem;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.85);
  }

  .search-segment {
    width: 100%;
    padding: 0.8rem 1.2rem;
  }

  .search-divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
  }

  .search-dropdown {
    width: 100%;
    top: 100%;
    left: 0;
    box-sizing: border-box;
  }

  .search-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
    justify-content: center;
  }
}

/* --- Brand Collaborations: Infinite Scrolling Band --- */
.collab-marquee-wrapper {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 2rem 0;
  user-select: none;
}

.collab-marquee-content {
  display: flex;
  flex-shrink: 0;
  gap: 6rem;
  padding-right: 6rem;
  width: max-content;
  animation: scroll-collab 30s linear infinite;
}

@keyframes scroll-collab {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.collab-section-header {
  margin-bottom: 1.5rem;
}

/* --- Gallery Modal System --- */
.gallery-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(10px);
}

.gallery-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.gallery-modal {
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  background: var(--pure-white);
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-modal-overlay.active .gallery-modal {
  transform: translateY(0);
}

.gallery-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.05);
  color: var(--charcoal);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.3s ease;
}

.gallery-close-btn:hover {
  background: rgba(0,0,0,0.1);
}

.gallery-modal-header {
  padding: 2rem 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.gallery-modal-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--charcoal);
}

.gallery-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-modal-body img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-modal-body img:hover {
  transform: scale(1.02);
}

/* --- Full-Page Booking Modal System --- */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal {
  position: fixed;
  inset: 0;
  background: var(--sand);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-modal-overlay.active .booking-modal {
  transform: translateY(0);
}

body.modal-open {
  overflow: hidden;
}

/* Top Bar */
.booking-topbar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  background: rgba(245, 241, 234, 0.95);
  backdrop-filter: blur(10px);
  z-index: 10;
  flex-shrink: 0;
}

.booking-topbar-brand {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.booking-back-btn {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.booking-back-btn:hover {
  background: rgba(0,0,0,0.05);
}

.booking-progress-bar {
  flex: 1;
  max-width: 400px;
  margin: 0 auto;
}

.booking-progress-track {
  height: 3px;
  background: rgba(0,0,0,0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.booking-progress-fill {
  height: 100%;
  background: var(--soft-green);
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-progress-steps {
  display: flex;
  justify-content: space-between;
}

.bp-step {
  font-size: 0.7rem;
  font-weight: 500;
  color: #bbb;
  transition: color 0.3s ease;
}

.bp-step.active {
  color: var(--soft-green);
  font-weight: 600;
}

.booking-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--pure-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.booking-close-btn:hover {
  transform: rotate(90deg) scale(1.05);
  background: #333;
}

/* Modal Body */
.booking-modal-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--soft-green) transparent;
}

.booking-modal-body::-webkit-scrollbar { width: 5px; }
.booking-modal-body::-webkit-scrollbar-thumb { background: var(--soft-green); border-radius: 10px; }

/* Steps */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: bkFadeIn 0.5s ease forwards;
}

@keyframes bkFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========= STEP 1: RETREAT DETAIL PAGE ========= */

/* Hero Banner */
.bk-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 340px;
  max-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.bk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.02) 100%);
}

.bk-hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 5%;
  color: var(--pure-white);
  max-width: 800px;
}

.bk-hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.bk-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--pure-white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.bk-hero-subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Quick Info Bar */
.bk-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 1.5rem 5%;
  background: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bk-info-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
  background: rgba(255,255,255,0.7);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  border: 1px solid rgba(0,0,0,0.06);
}

.bk-info-pill i {
  font-size: 1rem;
  color: var(--soft-green);
}

.bk-status-pill {
  background: rgba(122, 143, 124, 0.12);
  color: var(--dark-green);
  font-weight: 600;
}

/* Detail Container */
.bk-detail-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 5% 8rem;
}

.bk-section {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.bk-section:last-child {
  border-bottom: none;
}

.bk-section-title {
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  color: var(--charcoal);
}

.bk-about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  max-width: 700px;
}

/* Highlights Grid */
.bk-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.bk-highlight-card {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.3s ease;
}

.bk-highlight-card:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.bk-highlight-card i {
  font-size: 1.8rem;
  color: var(--soft-green);
}

.bk-highlight-card h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
}

.bk-highlight-card p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
}

/* Photo Gallery */
.bk-gallery-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bk-gallery-scroll::-webkit-scrollbar { display: none; }

.bk-gallery-img {
  flex-shrink: 0;
  width: 280px;
  height: 200px;
  border-radius: 16px;
  object-fit: cover;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.bk-gallery-img:hover {
  transform: scale(1.03);
}

/* Timeline Itinerary */
.bk-timeline {
  position: relative;
  padding-left: 2.5rem;
}

.bk-timeline::before {
  content: '';
  position: absolute;
  left: 0.7rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--soft-green) 0%, rgba(122, 143, 124, 0.15) 100%);
}

.bk-timeline-item {
  position: relative;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.bk-timeline-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.bk-timeline-dot {
  position: absolute;
  left: -2.15rem;
  top: 0.25rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--soft-green);
  border: 3px solid var(--sand);
  box-shadow: 0 0 0 2px var(--soft-green);
}

.bk-timeline-item h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--soft-green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.bk-timeline-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Included / Excluded Grid */
.bk-inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.bk-inc-card, .bk-exc-card {
  background: rgba(255,255,255,0.5);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(0,0,0,0.04);
}

.bk-inc-card h3, .bk-exc-card h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bk-inc-card h3 i { color: #4CAF50; }
.bk-exc-card h3 i { color: #e57373; }

.bk-inc-card ul, .bk-exc-card ul {
  list-style: none;
  padding: 0;
}

.bk-inc-card li, .bk-exc-card li {
  font-size: 0.9rem;
  color: #555;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
  padding-left: 1.2rem;
  position: relative;
}

.bk-inc-card li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: #4CAF50;
  font-weight: 700;
  font-size: 0.8rem;
}

.bk-exc-card li::before {
  content: 'âœ•';
  position: absolute;
  left: 0;
  color: #e57373;
  font-weight: 700;
  font-size: 0.8rem;
}

.bk-inc-card li:last-child, .bk-exc-card li:last-child {
  border-bottom: none;
}

/* Room Selection */
.bk-room-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bk-room-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.5);
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bk-room-card:hover {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.1);
}

.bk-room-card.active {
  background: rgba(122, 143, 124, 0.06);
  border-color: var(--soft-green);
}

.bk-room-radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
  transition: all 0.3s ease;
}

.bk-room-card.active .bk-room-radio {
  border-color: var(--soft-green);
}

.bk-radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.bk-room-card.active .bk-radio-dot {
  background: var(--soft-green);
}

.bk-room-info {
  flex: 1;
}

.bk-room-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.bk-room-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
}

.bk-room-price {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark-green);
}

.bk-room-info p {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.5;
}

/* Sticky CTA */
.bk-sticky-cta {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(245, 241, 234, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.bk-sticky-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.bk-sticky-label {
  font-size: 0.8rem;
  color: #888;
  font-weight: 400;
}

.bk-sticky-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-heading);
}

.bk-sticky-per {
  font-size: 0.85rem;
  color: #888;
}

.bk-continue-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* ========= STEP 2: GUEST FORM ========= */
.bk-form-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 5% 4rem;
}

.bk-form-header {
  margin-bottom: 2.5rem;
}

.bk-form-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.bk-form-header p {
  font-size: 1rem;
  color: #777;
}

.bk-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.bk-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.bk-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}

.bk-form-group label .required {
  color: #e57373;
}

.bk-form-group input,
.bk-form-group textarea {
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  outline: none;
  transition: all 0.3s ease;
}

.bk-form-group input:focus,
.bk-form-group textarea:focus {
  border-color: var(--soft-green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(122, 143, 124, 0.1);
}

.bk-form-group.invalid input,
.bk-form-group.invalid textarea {
  border-color: #e57373;
  box-shadow: 0 0 0 3px rgba(229, 115, 115, 0.1);
}

.bk-error {
  display: none;
  font-size: 0.75rem;
  color: #e57373;
  font-weight: 500;
}

.bk-form-group.invalid .bk-error {
  display: block;
}

.bk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bk-form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: 0.5rem;
}

.bk-form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  accent-color: var(--soft-green);
  flex-shrink: 0;
}

.bk-form-check label {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

.bk-form-actions {
  display: flex;
  gap: 1rem;
}

.bk-form-actions button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* ========= STEP 3: REVIEW ========= */
.bk-review-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 3rem 5% 4rem;
}

.bk-review-header {
  margin-bottom: 2.5rem;
}

.bk-review-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.bk-review-header p {
  font-size: 1rem;
  color: #777;
}

.bk-review-card {
  display: flex;
  gap: 1.5rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 1.2rem;
  margin-bottom: 2rem;
}

.bk-review-card-img {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.bk-review-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bk-review-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--soft-green);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.bk-review-card-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.bk-review-card-info p {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.15rem;
}

/* Receipt */
.bk-receipt {
  background: rgba(255,255,255,0.7);
  border: 1px dashed rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.bk-receipt-header {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  letter-spacing: 0.04em;
}

.bk-receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.6rem 0;
  color: #555;
}

.bk-receipt-row strong {
  color: var(--charcoal);
}

.bk-receipt-total {
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.1rem;
}

.bk-receipt-total strong {
  font-size: 1.3rem;
  color: var(--dark-green);
}

/* Review Guest */
.bk-review-guest {
  background: rgba(255,255,255,0.5);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.bk-review-guest h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.bk-review-guest-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  color: #555;
}

.bk-review-guest-row strong {
  color: var(--charcoal);
}

.bk-review-note {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  background: rgba(122, 143, 124, 0.06);
  border: 1px solid rgba(122, 143, 124, 0.12);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
}

.bk-review-note i {
  font-size: 1.2rem;
  color: var(--soft-green);
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.bk-review-note p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* ========= STEP 4: SUCCESS ========= */
.bk-success-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px);
  padding: 3rem 5%;
  text-align: center;
}

.bk-success-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.12);
  color: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  animation: bkPulse 2s ease infinite;
}

@keyframes bkPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.2); }
  50% { box-shadow: 0 0 0 20px rgba(76, 175, 80, 0); }
}

.bk-success-container h2 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.bk-success-subtitle {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 0.5rem;
}

.bk-success-container > p {
  font-size: 0.9rem;
  color: #888;
  max-width: 400px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.bk-success-receipt {
  background: rgba(255,255,255,0.7);
  border: 1px dashed rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 1.5rem;
  width: 100%;
  max-width: 400px;
  text-align: left;
  margin-bottom: 2rem;
}

.bk-success-receipt-header {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding-bottom: 0.8rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  letter-spacing: 0.04em;
}

.bk-success-receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.5rem 0;
  color: #555;
}

.bk-success-receipt-row strong {
  color: var(--charcoal);
}

.w-100 { width: 100%; max-width: 400px; }

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
  .booking-topbar {
    padding: 0.8rem 1.2rem;
    gap: 0.8rem;
  }

  .booking-topbar-brand {
    display: none;
  }

  .booking-progress-bar {
    max-width: 100%;
  }

  .bk-hero {
    height: 40vh;
    min-height: 260px;
  }

  .bk-hero-content {
    padding: 2rem 5%;
  }

  .bk-hero-content h1 {
    font-size: 2rem;
  }

  .bk-info-bar {
    padding: 1rem 4%;
    gap: 0.5rem;
  }

  .bk-info-pill {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }

  .bk-detail-container {
    padding: 0 4% 7rem;
  }

  .bk-section {
    padding: 2rem 0;
  }

  .bk-section-title {
    font-size: 1.3rem;
  }

  .bk-highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bk-gallery-img {
    width: 220px;
    height: 160px;
  }

  .bk-inc-exc-grid {
    grid-template-columns: 1fr;
  }

  .bk-sticky-cta {
    padding: 0.8rem 4%;
  }

  .bk-sticky-amount {
    font-size: 1.3rem;
  }

  .bk-continue-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .bk-form-container,
  .bk-review-container {
    padding: 2rem 5% 3rem;
  }

  .bk-form-header h2,
  .bk-review-header h2 {
    font-size: 1.6rem;
  }

  .bk-form-row {
    grid-template-columns: 1fr;
  }

  .bk-review-card {
    flex-direction: column;
  }

  .bk-review-card-img {
    width: 100%;
    height: 160px;
  }

  .bk-form-actions {
    flex-direction: column-reverse;
  }

  .bk-success-container {
    min-height: auto;
    padding: 3rem 5%;
  }
}

@media (max-width: 480px) {
  .bk-highlights-grid {
    grid-template-columns: 1fr;
  }

  .bk-hero {
    height: 35vh;
    min-height: 220px;
  }
}

/* --- New YouTube Video Playable Cards --- */
.youtube-card {
  cursor: pointer;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.video-thumbnail {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.video-thumbnail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
  z-index: 1;
}

.youtube-card:hover .video-thumbnail::before {
  background: rgba(0, 0, 0, 0.48);
}

.youtube-card:hover .video-thumbnail {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.youtube-card:hover .play-btn {
  transform: scale(1.15);
  background: var(--soft-green);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(122, 143, 124, 0.4);
}

.video-info {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  color: var(--white);
  text-align: left;
}

.video-info h3 {
  color: var(--white) !important;
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
}

.video-info p {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.85rem;
  margin: 0;
  font-family: var(--font-sans);
}

.youtube-card iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 24px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Brand Collaborators Vector Styling --- */
.collab-logo-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem !important;
  font-size: 1.15rem !important;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.35s ease;
}

.collab-logo-item svg {
  color: #aaa;
  transition: color 0.35s ease, transform 0.35s ease;
}

.collab-logo-item:hover svg {
  color: var(--soft-green);
  transform: rotate(10deg) scale(1.1);
}

/* Brand specific fonts for logo look */
.collab-logo-item.bohofit span {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: lowercase;
}

.collab-logo-item.wise-life span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.01em;
}

.collab-logo-item.stoned-age span {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collab-logo-item.moira span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: 1.35rem;
}

.collab-logo-item.fitwear span {
  font-family: var(--font-sans);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* =============================================
   MOBILE NAV DRAWER
   ============================================= */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  display: none;
}
.mobile-nav-overlay.active { opacity: 1; visibility: visible; display: block; }

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 340px);
  height: 100dvh;
  background: var(--sand);
  z-index: 1200;
  display: none;
  flex-direction: column;
  padding: 2rem 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}
.mobile-nav-drawer.active { transform: translateX(0); }

.mobile-nav-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}
.mobile-nav-drawer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--charcoal);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.mobile-nav-close:hover { background: rgba(0,0,0,0.05); }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-nav-links a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.25s ease;
}
.mobile-nav-links a:hover { color: var(--soft-green); }
.mobile-nav-links a::after {
  content: '→';
  font-size: 0.9rem;
  opacity: 0.3;
  transition: opacity 0.25s, transform 0.25s;
}
.mobile-nav-links a:hover::after { opacity: 1; transform: translateX(4px); }

.mobile-nav-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-instagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.7;
}

/* =============================================
   TABLET (≤ 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .mobile-nav-toggle { display: flex; align-items: center; justify-content: center; }
  .mobile-nav-overlay { display: block; }
  .mobile-nav-drawer { display: flex; }
  .founders-note { padding: 5rem 0; }
  .founders-note-content-box { padding: 3rem 2rem; border-radius: 24px; }
  .yoga-cta-card { padding: 3rem 2rem; }
  .retreat-hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .retreat-hero-img-box { height: 320px; }
  .retreat-hero-content-box { text-align: center; }
  .scroll-arrow { display: none; }
}

/* =============================================
   MOBILE (≤ 768px)
   ============================================= */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .main-header { padding: 1rem 5%; }

  /* Hero */
  .hero-wrapper { padding-top: 6rem; padding-bottom: 3rem; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .minimal-text p { font-size: 1rem; }
  .serif-text { font-size: 2rem; }

  /* Intro */
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .two-liner-title { font-size: clamp(1.4rem, 5vw, 2rem); white-space: normal; }
  .intro-image-block { height: 240px; }

  /* Retreat hero */
  .retreat-hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .retreat-hero-img-box { height: 250px; }
  .retreat-hero-content-box { padding: 0; text-align: center; }

  /* Retreat cards */
  .retreat-card { flex: 0 0 82vw; }
  .retreat-card-img { height: 210px; }
  .retreat-card-body h3 { font-size: 1.5rem; }

  /* Pillars */
  .pillars { flex-direction: column; min-height: auto; margin-top: var(--spacing-md); }
  .pillar-item { min-height: 65vh; }
  .pillar-content { width: 100%; padding: 2rem; }
  .pillar-item h2 { font-size: clamp(2rem, 7vw, 3.2rem); }
  .pillar-text p { font-size: 0.95rem; }

  /* Calendar */
  .year-calendar-grid { grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
  .month-card { padding: 0.8rem 0.5rem; border-radius: 12px; }
  .month-card-title { font-size: 0.8rem; margin-bottom: 0.5rem; }
  .month-weekdays { font-size: 0.5rem; margin-bottom: 0.3rem; }
  .cal-day { font-size: 0.62rem; border-radius: 4px; }
  .calendar-key { gap: 0.8rem; }
  .key-item { font-size: 0.8rem; }

  /* Video grid */
  .video-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .video-thumbnail { height: 240px; }
  .youtube-card iframe { height: 240px; }

  /* Testimonials */
  .testimonials { padding: 3rem 0; }
  .testimonial-block { flex: 0 0 85vw; padding: 1.8rem; }

  /* Yoga CTA */
  .yoga-cta-card { padding: 2.5rem 1.5rem; border-radius: 20px; }
  .yoga-cta-content h2 { font-size: 2rem; }
  .yoga-cta-content p { font-size: 1rem; }
  .yoga-cta-actions { flex-direction: column; align-items: center; }
  .yoga-cta-actions a, .yoga-cta-actions button { width: 100%; max-width: 320px; text-align: center; justify-content: center; }

  /* Founders */
  .founders-note { padding: 3rem 0; }
  .founders-note-content-box { padding: 2.2rem 1.5rem; border-radius: 20px; }
  .founders-signatures { gap: 1.5rem; flex-wrap: wrap; }

  /* Footer */
  .minimal-footer { padding: 2rem 0; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
  .footer-links { justify-content: center; flex-wrap: wrap; }

  /* Search bar */
  .retreats-search-bar { flex-direction: column; border-radius: 20px; padding: 1rem; gap: 0.5rem; background: rgba(255,255,255,0.88); }
  .search-segment { width: 100%; padding: 0.75rem 1rem; }
  .search-divider { width: 100%; height: 1px; }
  .search-btn { width: 100%; justify-content: center; margin-left: 0; margin-top: 0.5rem; }

  /* Search results modal */
  .search-results-modal { padding: 1.5rem 1rem; border-radius: 20px; }
  .search-result-item { flex-direction: column; align-items: stretch; gap: 0.75rem; }
  .search-result-img { width: 100%; height: 130px; }
  .search-result-actions { flex-direction: row; justify-content: space-between; align-items: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 0.75rem; }
  .search-result-price { text-align: left; }

  /* Booking */
  .booking-topbar { padding: 0.8rem 1.2rem; gap: 0.8rem; }
  .booking-topbar-brand { display: none; }
  .booking-progress-bar { max-width: 100%; }
  .bk-hero { height: 38vh; min-height: 240px; }
  .bk-hero-content { padding: 2rem 5%; }
  .bk-hero-content h1 { font-size: 2rem; }
  .bk-info-bar { padding: 1rem 4%; gap: 0.5rem; }
  .bk-info-pill { font-size: 0.75rem; padding: 0.4rem 0.7rem; }
  .bk-detail-container { padding: 0 4% 7rem; }
  .bk-section { padding: 1.8rem 0; }
  .bk-section-title { font-size: 1.3rem; }
  .bk-highlights-grid { grid-template-columns: 1fr 1fr; }
  .bk-gallery-img { width: 200px; height: 150px; }
  .bk-inc-exc-grid { grid-template-columns: 1fr; }
  .bk-sticky-cta { padding: 0.8rem 4%; }
  .bk-sticky-amount { font-size: 1.3rem; }
  .bk-continue-btn { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
  .bk-form-container, .bk-review-container { padding: 2rem 5% 3rem; }
  .bk-form-header h2, .bk-review-header h2 { font-size: 1.6rem; }
  .bk-form-row { grid-template-columns: 1fr; }
  .bk-review-card { flex-direction: column; }
  .bk-review-card-img { width: 100%; height: 150px; }
  .bk-form-actions { flex-direction: column-reverse; }
  .bk-success-container { min-height: auto; padding: 3rem 5%; }
}

/* =============================================
   SMALL PHONE (≤ 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); }
  .pillar-item { min-height: 75vw; }
  .pillar-content { padding: 1.5rem; }
  .glass-card { border-radius: 18px; }
  .year-calendar-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .month-card { padding: 0.6rem 0.35rem; border-radius: 10px; }
  .month-card-title { font-size: 0.7rem; }
  .month-weekdays { font-size: 0.44rem; }
  .cal-day { font-size: 0.56rem; }
  .retreat-card { flex: 0 0 88vw; }
  .yoga-cta-icon { font-size: 2.8rem; }
  .btn-pill { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
  .btn-book { padding: 0.7rem 1.5rem; font-size: 0.85rem; }
  .footer-links { flex-wrap: wrap; gap: 0.5rem; }
  .bk-highlights-grid { grid-template-columns: 1fr; }
  .bk-hero { height: 35vh; min-height: 210px; }
}
