/* ============================================
   COMPONENTS.CSS — The Moksha Retreat
   ============================================ */

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  transition: all 400ms ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.95) !important;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 2px 12px rgba(28,28,28,0.1);
}

.navbar.scrolled .nav-logo {
  color: var(--clay);
}
.navbar.scrolled .nav-link {
  color: var(--text-secondary);
}
.navbar.scrolled .nav-link:hover {
  color: var(--clay);
}
.navbar.scrolled .hamburger span {
  background: var(--charcoal);
}
.navbar.scrolled .hamburger:focus {
  outline-color: var(--clay);
}

.navbar-inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-logo-img {
  height: 65px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: brightness(1.2) saturate(1.1);
  transition: opacity var(--transition-base);
}
.footer-brand .nav-logo-img {
  height: 85px;
  max-width: 240px;
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(250,247,242,0.88);
  transition: color var(--transition-base);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition-base);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover {
  color: var(--gold-light);
}
.nav-link.active {
  color: var(--gold-light);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  padding: 6px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  z-index: 250;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #faf7f2;
  transition: all 0.3s ease;
}

/* Hamburger open state */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 240;
  background: rgba(20, 15, 10, 0.98);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 100px 2rem 3rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open {
  display: flex !important;
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.mobile-nav .nav-link {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 6vw, 2rem);
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.01em;
  padding: 1rem 0;
  transition: color 300ms ease;
  display: block;
  text-decoration: none;
}
.mobile-nav .nav-link:hover,
.mobile-nav .nav-link:active,
.mobile-nav .nav-link.active {
  color: var(--gold-light);
}
.mobile-nav .btn {
  margin-top: 1.5rem;
  min-width: 240px;
  min-height: 48px;
  font-size: var(--text-sm);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  max-width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.btn:hover::before {
  opacity: 1;
}

/* Primary */
.btn-primary {
  background: var(--clay);
  color: var(--ivory);
  border-color: var(--clay);
  border: 1.5px solid var(--clay);
  box-shadow: var(--shadow-clay);
}
.btn-primary:hover {
  background: var(--clay-dark);
  border-color: var(--clay-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(124,74,43,0.30);
}
.btn-primary:active {
  transform: translateY(0);
}

/* Secondary / Outline */
.btn-secondary {
  background: transparent;
  color: var(--clay);
  border-color: var(--clay);
}
.btn-secondary:hover {
  background: var(--clay);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* Ghost (light — on dark backgrounds) */
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250,247,242,0.55);
}
.btn-ghost:hover {
  background: rgba(250,247,242,0.12);
  border-color: var(--ivory);
  transform: translateY(-2px);
}

/* Gold outline */
.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* Forest */
.btn-forest {
  background: var(--forest);
  color: var(--ivory);
  border-color: var(--forest);
}
.btn-forest:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-2px);
}

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  gap: 0.6rem;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}

/* Size variants */
.btn-sm {
  padding: 0.55rem 1.4rem;
  font-size: var(--text-xs);
}
.btn-lg {
  padding: 1rem 2.6rem;
  font-size: var(--text-md);
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: clamp(500px, 100vh, 1000px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0805;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
  display: block;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20,15,10,0.75) 0%,
    rgba(28,28,28,0.55) 50%,
    rgba(28,28,28,0.25) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-inline: clamp(1.25rem, 6vw, 3rem);
  padding-top: clamp(4rem, 12vh, 8rem);
  padding-bottom: clamp(3rem, 10vh, 6rem);
  max-width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: fadeInUp 0.9s 0.2s ease forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: var(--text-5xl);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-lg);
  max-width: 900px;
  margin-inline: auto;
  opacity: 0;
  animation: fadeInUp 0.9s 0.45s ease forwards;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 400;
  color: rgba(250,247,242,0.82);
  margin-bottom: var(--space-xl);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeInUp 0.9s 0.68s ease forwards;
}

.hero-ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.9s 0.90s ease forwards;
}

/* Page Hero (shorter) */
.page-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-inline: clamp(1rem, 5vw, 3rem);
}
.page-hero--lg { min-height: 60vh; }
.page-hero--md { min-height: 50vh; }
.page-hero--sm { min-height: 40vh; }

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(28,28,28,0.55) 0%, rgba(28,28,28,0.65) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--navbar-h);
}
.page-hero-content h1 {
  color: var(--ivory);
  margin-bottom: var(--space-md);
}
.page-hero-content p {
  color: rgba(250,247,242,0.82);
  font-size: var(--text-lg);
  max-width: 600px;
  margin-inline: auto;
}

/* ---- BOOKING CARD (Glassmorphism) ---- */
.booking-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  gap: var(--space-md);
  align-items: flex-end;
  flex-wrap: wrap;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  margin-top: var(--space-xl);
  max-width: 900px;
  width: 100%;
  margin-inline: auto;
}

.booking-field {
  flex: 1;
  min-width: 160px;
}
.booking-field label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.booking-field select,
.booking-field input {
  width: 100%;
  padding: 0.65rem 0.9rem;
  background: rgba(250,247,242,0.12);
  border: 1px solid rgba(250,247,242,0.22);
  border-radius: var(--radius-md);
  color: var(--ivory);
  font-size: var(--text-sm);
  font-family: var(--font-sans);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--transition-base), background var(--transition-base);
}
.booking-field select:focus,
.booking-field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(250,247,242,0.18);
}
.booking-field select option {
  background: var(--charcoal);
  color: var(--ivory);
}
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.6);
  cursor: pointer;
}

/* ---- TRUST STRIP ---- */
.trust-strip {
  background: var(--charcoal);
  padding: 1rem;
  text-align: center;
}
.trust-strip p {
  color: var(--sand);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin: 0;
  line-height: 1.5;
}
.trust-strip span {
  color: var(--gold);
  margin: 0 0.75rem;
}

/* ---- SECTION HEADING BLOCK ---- */
.section-heading {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}
.section-heading h2 {
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}
.section-heading p {
  max-width: 580px;
  margin-inline: auto;
  color: var(--text-secondary);
  font-size: var(--text-md);
}
.section-heading--light h2 {
  color: var(--ivory);
}
.section-heading--light p {
  color: rgba(250,247,242,0.75);
}
.section-heading--light .section-label {
  color: var(--gold-light);
}

/* ---- ROOM CARDS ---- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.room-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.room-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.room-card:hover .room-card-image img {
  transform: scale(1.08);
}

.room-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--clay);
  color: var(--ivory);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
}

.room-card-body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card-name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
  line-height: 1.2;
}

.room-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.room-card-meta span {
  font-size: var(--text-xs);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.room-card-price {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--clay);
  margin-bottom: var(--space-sm);
}
.room-card-price sup {
  font-size: 0.65em;
  font-weight: 500;
}
.room-card-price span {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--text-muted);
}

.room-card-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: var(--space-md);
  flex: 1;
}

.amenity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: var(--space-md);
}
.amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--sand-light);
  color: var(--clay-dark);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.02em;
}

/* ---- EDITORIAL / SPLIT SECTIONS ---- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.split-section.reverse .split-text { order: 2; }
.split-section.reverse .split-image { order: 1; }

.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  background: var(--warm-white);
}
.split-text h2 {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}
.split-text p {
  margin-bottom: var(--space-lg);
  font-size: var(--text-md);
}

.split-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.split-section:hover .split-image img {
  transform: scale(1.04);
}

/* ---- PHILOSOPHY FULL-WIDTH SECTION ---- */
.philosophy-section {
  background: var(--forest);
  text-align: center;
  padding-block: clamp(5rem, 12vw, 9rem);
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: '"';
  position: absolute;
  top: -0.2em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 22rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.philosophy-quote {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.3;
  max-width: 820px;
  margin-inline: auto;
  padding-inline: var(--space-lg);
  position: relative;
  z-index: 1;
}
.philosophy-attr {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 1;
}

/* ---- STATS SECTION ---- */
.stats-section {
  background: var(--sand);
  padding-block: clamp(4rem, 8vw, 6rem);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}
.stat-item {
  padding: var(--space-lg);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  font-weight: 400;
  color: var(--clay);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.stat-label {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clay-dark);
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  background: var(--warm-white);
}
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}
.testimonial-slide {
  flex: 0 0 100%;
  padding: var(--space-md);
}
.testimonial-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid var(--border-light);
  max-width: 800px;
  margin-inline: auto;
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-md);
  justify-content: center;
}
.testimonial-stars span {
  color: var(--gold);
  font-size: 1.1rem;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
  text-align: center;
  margin-bottom: var(--space-lg);
}
.testimonial-author {
  text-align: center;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}
.testimonial-author span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.testimonials-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--ivory);
  font-size: 1.1rem;
  color: var(--clay);
}
.testimonials-btn:hover {
  background: var(--clay);
  color: var(--ivory);
  border-color: var(--clay);
}
.testimonials-dots {
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--border-mid);
  cursor: pointer;
  transition: all var(--transition-base);
}
.dot.active {
  background: var(--clay);
  width: 24px;
}

/* ---- INSTAGRAM STRIP ---- */
.instagram-strip {
  background: var(--ivory);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(124,74,43,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.insta-overlay span {
  font-size: 2rem;
}
.insta-item:hover img {
  transform: scale(1.1);
}
.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* ---- GALLERY MASONRY ---- */
.gallery-filter-tabs {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}
.filter-tab {
  padding: 0.55rem 1.5rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-mid);
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.04em;
}
.filter-tab:hover {
  border-color: var(--clay);
  color: var(--clay);
}
.filter-tab.active {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--ivory);
}

.gallery-masonry {
  columns: 4;
  column-gap: 16px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform var(--transition-slow);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay span {
  font-size: 2rem;
}
.gallery-item-caption {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--ivory);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  padding-inline: var(--space-md);
}

/* ---- LIGHTBOX ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(10,8,6,0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: var(--ivory);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition-base), transform var(--transition-base);
  z-index: 10;
}
.lightbox-close:hover {
  color: var(--gold);
  transform: rotate(90deg);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250,247,242,0.12);
  border: 1px solid rgba(250,247,242,0.2);
  color: var(--ivory);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10;
}
.lightbox-prev { left: -72px; }
.lightbox-next { right: -72px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--clay);
  border-color: var(--clay);
}
.lightbox-meta {
  margin-top: var(--space-md);
  text-align: center;
}
.lightbox-counter {
  font-size: var(--text-xs);
  color: rgba(250,247,242,0.55);
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
}
.lightbox-caption {
  font-size: var(--text-sm);
  color: rgba(250,247,242,0.80);
  margin-top: 0.4rem;
}

/* ---- CONTACT FORM ---- */
.contact-section {
  background: var(--ivory);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--clay-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--warm-white);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--text-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px rgba(124,74,43,0.10);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Contact info cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.contact-info-card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--sand-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-card h4 {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.contact-info-card p, .contact-info-card a {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}
.contact-info-card a:hover {
  color: var(--clay);
}

/* ---- FAQ ACCORDION ---- */
.faq-section {
  background: var(--warm-white);
}
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.faq-item {
  background: var(--ivory);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--space-lg);
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: background var(--transition-base);
  text-align: left;
  gap: var(--space-md);
}
.faq-question:hover {
  background: var(--sand-light);
}
.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--clay);
  transition: transform var(--transition-base);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}
.faq-answer-inner {
  padding: 0 var(--space-lg) 1.25rem;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ---- MAPS EMBED ---- */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 420px;
}

/* ---- AMENITIES GRID ---- */
.amenities-section {
  background: var(--sand-light);
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.amenity-card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--clay);
}
.amenity-emoji {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}
.amenity-card h4 {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}
.amenity-card p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

/* ---- POLICIES SECTION ---- */
.policies-section {
  background: var(--ivory);
}
.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.policy-card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
}
.policy-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  color: var(--clay);
}
.policy-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.policy-card ul li {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  line-height: 1.5;
}
.policy-card ul li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
}

/* ---- TEAM CARDS ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.team-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  transition: all var(--transition-base);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto var(--space-lg);
  border: 3px solid var(--gold);
}
.team-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.3rem;
}
.team-role {
  font-size: var(--text-sm);
  color: var(--clay);
  font-weight: 500;
  margin-bottom: var(--space-md);
  display: block;
}
.team-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ---- PHILOSOPHY PILLARS ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.pillar-card {
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--warm-white);
  border-left: 4px solid var(--clay);
  transition: all var(--transition-base);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar-number {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  color: var(--sand);
  font-weight: 400;
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.pillar-card h3 {
  font-size: var(--text-xl);
  color: var(--clay);
  margin-bottom: var(--space-sm);
}
.pillar-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* ---- SCROLL PROGRESS BAR ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clay), var(--gold));
  z-index: calc(var(--z-sticky) + 10);
  transform-origin: left;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---- WHATSAPP FLOATING BUTTON ---- */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-modal);
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
  animation: none;
}
.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: var(--charcoal);
  color: var(--ivory);
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}
.whatsapp-fab:hover .whatsapp-tooltip {
  opacity: 1;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--charcoal);
  border-right: 0;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--charcoal);
  color: var(--sand);
  padding-top: clamp(3rem, 8vw, 6rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: clamp(2rem, 6vw, 4rem);
  border-bottom: 1px solid rgba(232,213,183,0.12);
}
.footer-brand .nav-logo {
  color: var(--ivory);
  display: inline-block;
  margin-bottom: var(--space-md);
}
.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(232,213,183,0.65);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}
.footer-socials {
  display: flex;
  gap: var(--space-sm);
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(232,213,183,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--sand);
  transition: all var(--transition-base);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.10);
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: var(--text-sm);
  color: rgba(232,213,183,0.7);
  transition: color var(--transition-base);
}
.footer-links a:hover {
  color: var(--sand);
}
.footer-contact-item {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}
.footer-contact-item span:first-child {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.footer-contact-item p, .footer-contact-item a {
  font-size: var(--text-sm);
  color: rgba(232,213,183,0.7);
  line-height: 1.45;
  margin: 0;
}
.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-lg);
  flex-wrap: wrap;
  gap: var(--space-md);
}
.footer-bottom p {
  font-size: var(--text-xs);
  color: rgba(232,213,183,0.45);
  margin: 0;
}
.footer-bottom a {
  color: rgba(232,213,183,0.6);
  transition: color var(--transition-base);
}
.footer-bottom a:hover {
  color: var(--gold);
}

/* ---- SECTION DIVIDER / WAVE ---- */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ---- EXPERIENCE SECTION ---- */
.experience-section {
  background: var(--ivory);
  padding-top: clamp(3rem, 6vw, 5rem); /* override section--lg top padding */
}
.experience-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.experience-text h2 {
  font-size: var(--text-4xl);
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}
.experience-text p {
  font-size: var(--text-md);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}
.experience-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 580px;
  box-shadow: var(--shadow-xl);
}
.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-image-badge {
  position: absolute;
  bottom: var(--space-lg);
  left: var(--space-lg);
  background: rgba(250,247,242,0.93);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
}
.experience-image-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--clay);
}
.experience-image-badge span {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

/* ---- SUSTAINABILITY SECTION ---- */
.sustainability-section {
  background: var(--forest);
}
.sustainability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.sustain-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  transition: all var(--transition-base);
}
.sustain-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}
.sustain-card .emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--space-md);
}
.sustain-card h3 {
  color: var(--ivory);
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
}
.sustain-card p {
  font-size: var(--text-sm);
  color: rgba(250,247,242,0.72);
}

/* ---- RESPONSIVE BREAKPOINTS ---- */

/* 1280px */
@media (max-width: 1280px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-grid > *:first-child {
    grid-column: 1 / -1;
  }
}

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .nav-logo-img {
    height: 50px;
  }
  .navbar {
    height: 65px;
  }
  .navbar-inner {
    padding-inline: 1rem;
  }
  .navbar.scrolled .hamburger span {
    background: #1c1c1c;
  }
}

/* Tablet & Small Screens (768px) */
@media (max-width: 768px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .sustainability-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .policies-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-inner { max-width: 96vw; }
  .booking-card { flex-direction: column; }
  .booking-field { min-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .whatsapp-fab { bottom: 1.5rem; right: 1.5rem; width: 56px; height: 56px; font-size: 1.5rem; }
  .hero { min-height: 85vh; height: auto; }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }

  .hero {
    min-height: 70vh;
    height: clamp(500px, 70vh, 800px);
  }
  .hero-content {
    padding-top: clamp(3rem, 8vh, 5rem);
    padding-inline: 1.25rem;
  }

  .testimonial-card { padding: 1.5rem; }
  .philosophy-quote { font-size: var(--text-2xl); }
  .hero-ctas { flex-direction: column; align-items: center; }

  /* Touch-friendly button sizing */
  .btn {
    padding: 0.85rem 1.5rem;
    min-height: 48px;
    min-width: 140px;
    font-size: var(--text-sm);
    -webkit-tap-highlight-color: transparent;
  }
  .btn-lg {
    padding: 1rem 1.8rem;
    min-height: 52px;
    min-width: 100%;
  }
  .btn-sm {
    padding: 0.75rem 1.25rem;
    min-height: 44px;
  }

  .room-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .room-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-fab {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 56px;
    height: 56px;
  }

  .navbar {
    height: 60px;
  }
  .nav-logo-img {
    height: 48px;
  }
}
