/* ═══════════════════════════════════════════════
   MAUNVAN — Complete Stylesheet
   Colors: Exact match to kriyayogael reference
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Great+Vibes&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS VARIABLES (Kriya exact palette) ── */
:root {
  --cream:        #F5F0E3;   /* body bg */
  --cream-dark:   #EDE5CC;   /* alt section bg */
  --cream-card:   #FAF7F0;   /* card bg */
  --olive:        #7E8446;   /* header, links, accents */
  --olive-dark:   #5A6030;   /* hover, darker */
  --olive-light:  #9BA55C;   /* lighter olive */
  --olive-pale:   #EDF0DC;   /* very light olive tint */
  --gold:         #A58251;   /* heading accent, decorative */
  --gold-light:   #C4A06E;   /* lighter gold */
  --brown:        #484338;   /* primary body text */
  --brown-light:  #6B6455;   /* secondary text */
  --brown-pale:   #9A9080;   /* muted text */
  --white:        #FFFFFF;
  --border:       rgba(126,132,70,0.18);
  --shadow-sm:    0 2px 12px rgba(72,67,56,0.08);
  --shadow-md:    0 6px 28px rgba(72,67,56,0.12);
  --shadow-lg:    0 12px 48px rgba(72,67,56,0.16);
  --nav-h:        80px;
  --top-bar-h:    36px;
  --radius:       4px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.72;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ══════════════════════════════════
   TOP BAR
══════════════════════════════════ */
.header-top-bar {
  background: var(--olive-dark);
  height: var(--top-bar-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.04em;
}
.header-top-bar a { color: rgba(255,255,255,0.90); }
.header-top-bar a:hover { color: #fff; }

/* ══════════════════════════════════
   MAIN NAV
══════════════════════════════════ */
.main-nav {
  background: linear-gradient(135deg, #5A6030 0%, var(--olive) 50%, #6B7238 100%);
  height: var(--nav-h);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
  border-bottom: 2px solid rgba(165,130,81,0.35);
}
.site-header {
  height: var(--nav-h);
}
.site-header.scrolled .main-nav {
  box-shadow: 0 4px 28px rgba(40,50,10,0.35);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img {
  width: 54px; height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}
.site-logo:hover img { transform: scale(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.18em;
}
.logo-tagline {
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
  margin-top: 3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 15px;
  color: rgba(255,255,255,0.82);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 15px; right: 15px;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.nav-links > li > a:hover { color: #fff; }
.nav-links > li > a:hover::after,
.nav-links > li.active > a::after { transform: scaleX(1); }
.nav-links > li.active > a { color: #fff; }

.caret { font-size: 0.55rem; opacity: 0.65; transition: transform 0.22s; margin-left: 2px; }
.nav-links > li:hover .caret { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  background: transparent;
  min-width: 210px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.22s, transform 0.22s;
}
.sub-menu::before {
  content: '';
  display: block;
  position: absolute;
  top: 8px; left: 0; right: 0; bottom: 0;
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 12px 40px rgba(60,70,20,0.18);
  z-index: -1;
}
.nav-links > li:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.sub-menu li { border-bottom: 1px solid rgba(126,132,70,0.08); }
.sub-menu li:last-child { border-bottom: none; }
.sub-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-size: 0.83rem;
  color: var(--brown);
  font-weight: 500;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.sub-menu li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.15s;
}
.sub-menu li a:hover {
  background: var(--olive-pale);
  color: var(--olive-dark);
  padding-left: 22px;
}
.sub-menu li a:hover::before { transform: translateX(3px); }

/* Book btn */
.nav-book-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #BF9660 100%);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
  transition: box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(165,130,81,0.35);
}
.nav-book-btn:hover {
  box-shadow: 0 6px 20px rgba(165,130,81,0.5);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
}
.hamburger span:nth-child(2) { width: 18px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 26px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #3d4420;
  z-index: 999;
  padding: 8px 0 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
  border-top: 2px solid rgba(165,130,81,0.3);
}
.mobile-nav.open { display: block; }
.mobile-nav ul li a {
  display: block;
  padding: 13px 28px;
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  letter-spacing: 0.04em;
}
.mobile-nav ul li a:hover { background: rgba(255,255,255,0.07); color: #fff; padding-left: 36px; }
.mobile-nav .mob-parent > ul { display: none; background: rgba(0,0,0,0.18); }
.mobile-nav .mob-parent.mob-open > ul { display: block; }
.mobile-nav .mob-parent > ul li a { padding-left: 44px; font-size: 0.84rem; color: rgba(255,255,255,0.58); }
.mobile-nav .mob-parent > ul li a:hover { padding-left: 50px; }
.mob-phone {
  color: var(--gold-light) !important;
  font-weight: 600 !important;
  border-top: 1px solid rgba(165,130,81,0.2) !important;
  margin-top: 4px;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  position: relative;
  height: 70vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 80%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(45,55,15,0.25) 0%,
    rgba(45,55,15,0.52) 55%,
    rgba(45,55,15,0.75) 100%
  );
}
.hero-mandala {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  opacity: 0.06;
  width: min(65vw,65vh);
  z-index: 1;
  animation: mandalaSpin 90s linear infinite;
}
@keyframes mandalaSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero-mandala { animation: none; } }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 24px;
  max-width: 860px;
  text-align: center;
}
.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--gold-light);
  display: block;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  margin-bottom: 18px;
}
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto 30px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 34px;
  background: linear-gradient(180deg,rgba(165,130,81,0.7),transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-olive  { background: var(--olive); color: #fff; border-color: var(--olive); }
.btn-olive:hover  { background: var(--olive-dark); border-color: var(--olive-dark); }
.btn-gold   { background: var(--gold);  color: #fff; border-color: var(--gold); }
.btn-gold:hover   { background: var(--gold-light);  border-color: var(--gold-light); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn-outline-olive { background: transparent; color: var(--olive); border-color: var(--olive); }
.btn-outline-olive:hover { background: var(--olive); color: #fff; }

/* ══════════════════════════════════
   SECTION COMMONS
══════════════════════════════════ */
.section { padding: 80px 24px; }
.section-sm { padding: 52px 24px; }

.sec-label {
  display: block;
  font-family: 'Great Vibes', cursive;
  font-size: 1.6rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 6px;
}
.sec-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--brown);
  text-align: center;
  line-height: 1.22;
  text-wrap: balance;
  margin-bottom: 14px;
}
.sec-desc {
  color: var(--brown-light);
  font-size: 0.97rem;
  text-align: center;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.gold-divider {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-bottom: 48px;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.gold-divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.gold-divider span { color: var(--gold); font-size: 0.8rem; }

/* ══════════════════════════════════
   STRIP / BADGES
══════════════════════════════════ */
.badge-strip {
  background: var(--olive);
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.badge-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-icon { color: var(--gold-light); font-size: 1rem; }

/* ══════════════════════════════════
   SERVICE CARDS (4-col grid)
══════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-img {
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 18px;
}
.service-card-icon { font-size: 2.4rem; margin-bottom: 14px; }
.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--olive-dark);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.86rem; color: var(--brown-light); line-height: 1.7; margin-bottom: 16px; }
.service-card a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap 0.2s, color 0.2s;
}
.service-card a:hover { gap: 9px; color: var(--gold); }

/* ══════════════════════════════════
   RETREAT CARDS (image overlay)
══════════════════════════════════ */
.retreats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.retreat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.retreat-card img {
  width: 100%; height: 320px;
  object-fit: cover;
  transition: transform 0.65s ease;
  display: block;
}
.retreat-card:hover img { transform: scale(1.06); }
.retreat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(30,40,8,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  transition: background 0.3s;
}
.retreat-card:hover .retreat-overlay {
  background: linear-gradient(180deg, rgba(30,40,8,0.15) 0%, rgba(30,40,8,0.92) 100%);
}
.retreat-tag {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.retreat-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0;
}
.retreat-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  line-height: 1.6;
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.4s, opacity 0.35s, margin-top 0.3s;
}
.retreat-card:hover p { max-height: 72px; opacity: 1; margin-top: 8px; }
.retreat-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 12px;
  transition: gap 0.2s;
}
.retreat-link:hover { gap: 9px; }

/* ══════════════════════════════════
   ABOUT SPLIT
══════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-img-side {
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.about-text-side {
  background: var(--cream-dark);
  padding: 72px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text-side .sec-label,
.about-text-side .sec-title { text-align: left; }
.about-text-side p { color: var(--brown-light); font-size: 0.95rem; line-height: 1.85; margin-bottom: 14px; }
.about-text-side em { color: var(--olive); font-style: italic; }

.stats-row { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.stat-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  color: var(--olive);
  display: block;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-pale);
  margin-top: 4px;
  display: block;
}

/* ══════════════════════════════════
   OLIVE CTA SECTION
══════════════════════════════════ */
.olive-section {
  background: var(--olive);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.olive-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(165,130,81,0.12) 0%, transparent 65%);
}
.olive-section .sec-label { color: rgba(255,255,255,0.65); }
.olive-section .sec-title { color: #fff; position: relative; }
.olive-section .sec-desc { color: rgba(255,255,255,0.68); position: relative; }
.olive-section .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ══════════════════════════════════
   TTC CARDS
══════════════════════════════════ */
.ttc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1150px;
  margin: 0 auto;
}
.ttc-card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  position: relative;
  transition: box-shadow 0.28s, transform 0.28s;
}
.ttc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.ttc-card.featured-card {
  background: var(--olive);
  border-color: var(--gold);
}
.ttc-card.featured-card .ttc-unit,
.ttc-card.featured-card h3 { color: rgba(255,255,255,0.75); }
.ttc-card.featured-card ul li { color: rgba(255,255,255,0.62); border-color: rgba(255,255,255,0.10); }
.ttc-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold);
  color: #fff;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.ttc-hours {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.ttc-unit {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown-pale);
  display: block;
  margin-bottom: 14px;
}
.ttc-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.3;
}
.ttc-card ul { margin-bottom: 22px; }
.ttc-card ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--brown-light);
  font-size: 0.84rem;
  display: flex; align-items: center; gap: 8px;
}
.ttc-card ul li::before { content: '✦'; color: var(--gold); font-size: 0.5rem; flex-shrink: 0; }

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1150px;
  margin: 0 auto;
}
.testi-card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: var(--olive-pale);
  position: absolute;
  top: 4px; left: 16px;
  line-height: 1;
}
.stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; margin-bottom: 10px; }
.testi-text { color: var(--brown-light); font-size: 0.9rem; line-height: 1.75; font-style: italic; margin-bottom: 18px; }
.testi-name { color: var(--brown); font-weight: 700; font-size: 0.87rem; }
.testi-loc { color: var(--brown-pale); font-size: 0.76rem; margin-top: 2px; }

/* ══════════════════════════════════
   GALLERY GRID
══════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 6px;
  max-width: 1200px;
  margin: 0 auto;
}
.gal-item { overflow: hidden; border-radius: 2px; background: var(--cream-dark); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.gal-item:hover img { transform: scale(1.08); }
.gal-item.tall { grid-row: span 2; }
.gal-item.wide { grid-column: span 2; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  padding: 18px 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.02rem;
  color: var(--brown);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--olive); }
.faq-toggle {
  width: 28px; height: 28px;
  background: var(--olive-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--olive);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.3s;
}
.faq-item.open .faq-toggle { background: var(--gold); color: #fff; transform: rotate(45deg); }
.faq-a {
  color: var(--brown-light);
  font-size: 0.92rem;
  line-height: 1.8;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 18px; }

/* ══════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════ */
.page-hero {
  background: var(--olive);
  padding: 64px 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .sec-label { color: rgba(255,255,255,0.62); }
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 14px;
}
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 0 auto; font-size: 1.02rem; }

/* Breadcrumb */
.breadcrumb {
  background: var(--cream-card);
  border-bottom: 1px solid var(--border);
  padding: 11px 24px;
  font-size: 0.8rem;
  color: var(--brown-pale);
  display: flex; gap: 8px; align-items: center;
}
.breadcrumb a { color: var(--olive); }
.breadcrumb a:hover { text-decoration: underline; }

/* ══════════════════════════════════
   PAGE LAYOUT — CONTENT + SIDEBAR
══════════════════════════════════ */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 52px 24px;
  align-items: start;
}
.page-content { min-width: 0; }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 20px; }
.sidebar-widget {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.widget-title {
  background: var(--olive);
  color: #fff;
  padding: 13px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
}
.widget-body { padding: 16px 18px; }
.widget-nav li { border-bottom: 1px solid var(--border); }
.widget-nav li:last-child { border-bottom: none; }
.widget-nav li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 4px;
  color: var(--brown);
  font-size: 0.88rem;
  transition: color 0.18s, padding-left 0.18s;
}
.widget-nav li a:hover { color: var(--olive); padding-left: 6px; }
.widget-nav li a::after { content: '›'; color: var(--gold); }
.widget-nav li.current a { color: var(--olive); font-weight: 700; }
.widget-contact p { font-size: 0.86rem; color: var(--brown-light); margin-bottom: 10px; line-height: 1.65; }
.widget-contact a { color: var(--olive); font-weight: 700; }
.widget-phone {
  display: block;
  background: var(--olive);
  color: #fff !important;
  text-align: center;
  padding: 10px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 10px;
  letter-spacing: 0.03em;
}
.widget-phone:hover { background: var(--olive-dark) !important; }
.widget-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.widget-gallery img { width: 100%; height: 70px; object-fit: cover; border-radius: 2px; transition: opacity 0.2s; }
.widget-gallery img:hover { opacity: 0.8; }

/* Sidebar mobile toggle */
.sidebar-toggle-btn {
  display: none;
  background: var(--olive);
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 3px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: 100%;
}

/* ══════════════════════════════════
   CONTENT BLOCKS
══════════════════════════════════ */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.content-split.flip { direction: rtl; }
.content-split.flip > * { direction: ltr; }
.content-split img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  height: 340px; object-fit: cover;
}
.content-split h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  color: var(--brown);
  margin-bottom: 14px;
  line-height: 1.25;
}
.content-split p { color: var(--brown-light); font-size: 0.95rem; line-height: 1.85; margin-bottom: 12px; }

/* Feature list */
.feat-list { list-style: none; margin: 18px 0 22px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  color: var(--brown-light);
  font-size: 0.9rem;
  line-height: 1.6;
}
.feat-list li::before { content: '✦'; color: var(--gold); font-size: 0.55rem; margin-top: 5px; flex-shrink: 0; }

/* Info cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  max-width: 1150px;
  margin: 0 auto;
}
.info-card {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-card-icon { font-size: 2rem; margin-bottom: 12px; }
.info-card h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  color: var(--olive-dark);
  margin-bottom: 8px;
}
.info-card p { font-size: 0.84rem; color: var(--brown-light); line-height: 1.68; }

/* Schedule list */
.schedule-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.schedule-row {
  display: flex; gap: 20px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row:nth-child(even) { background: var(--olive-pale); }
.schedule-time { color: var(--gold); font-weight: 700; min-width: 90px; font-variant-numeric: tabular-nums; }
.schedule-act { color: var(--brown-light); }

/* ══════════════════════════════════
   CONTACT FORM
══════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; margin: 0 auto; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-light);
  font-weight: 700;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.92rem;
  color: var(--brown);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive-light);
  box-shadow: 0 0 0 3px rgba(126,132,70,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.site-footer {
  background: linear-gradient(180deg, #3a4120 0%, #2e3418 100%);
  color: rgba(255,255,255,0.58);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 32px; left: 50%;
  transform: translateX(-50%);
  font-size: 2.2rem;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 52px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-logo img {
  width: 48px; height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 3px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}
.footer-logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2em;
}
.footer-about p { font-size: 0.84rem; line-height: 1.82; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem; font-weight: 700;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.site-footer h4 {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(165,130,81,0.25);
  display: flex; align-items: center; gap: 8px;
}
.site-footer h4::before { content: '✦'; font-size: 0.6rem; color: var(--gold); opacity: 0.7; }

.site-footer ul li { margin-bottom: 10px; }
.site-footer ul li a {
  color: rgba(255,255,255,0.48);
  font-size: 0.84rem;
  transition: color 0.18s, padding-left 0.18s;
  display: flex; align-items: center; gap: 6px;
}
.site-footer ul li a::before { content: '›'; color: var(--gold); opacity: 0.5; transition: opacity 0.18s; }
.site-footer ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.site-footer ul li a:hover::before { opacity: 1; }

.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
}
.fc-icon { color: var(--gold-light); flex-shrink: 0; font-size: 0.95rem; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.52); font-size: 0.84rem; transition: color 0.18s; }
.footer-contact-list a:hover { color: var(--gold-light); }
.footer-contact-list span:last-child { color: rgba(255,255,255,0.48); font-size: 0.84rem; line-height: 1.6; }

/* CTA Strip */
.footer-cta-strip {
  background: linear-gradient(135deg, var(--olive) 0%, #5a6030 100%);
  padding: 40px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.footer-cta-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.footer-cta-label {
  display: block; font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}
.footer-cta-text h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; font-weight: 700;
  margin: 0;
}
.footer-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-cta-btn {
  padding: 12px 26px; border-radius: 4px; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-decoration: none; transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.footer-cta-btn.primary { background: var(--gold); color: #fff; }
.footer-cta-btn.primary:hover { background: #b8924e; }
.footer-cta-btn.outline { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.footer-cta-btn.outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* Main footer */
.footer-main { padding: 64px 32px 48px; }
.footer-tagline {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 12px; font-family: 'Poppins', sans-serif;
}
.footer-desc { font-size: 0.84rem; line-height: 1.82; max-width: 240px; color: rgba(255,255,255,0.5); }

/* Social icons */
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.footer-social a:hover { transform: translateY(-3px); border-color: var(--gold); color: var(--gold-light); background: rgba(165,130,81,0.15); }

/* Om divider */
.footer-divider {
  text-align: center; padding: 0;
  position: relative;
}
.footer-divider::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(165,130,81,0.4), transparent);
  margin: 0 32px;
}
.footer-om {
  display: inline-block;
  font-size: 1.4rem;
  color: rgba(165,130,81,0.5);
  line-height: 1;
  margin-top: -14px;
  background: #2e3418;
  padding: 0 14px;
}

/* Footer bottom */
.footer-bottom {
  padding: 18px 32px;
  background: rgba(0,0,0,0.2);
}
.footer-bottom-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); letter-spacing: 0.03em; margin: 0; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color 0.18s; }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ══════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.revealed { opacity: 1; transform: none; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .ttc-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-book-btn { display: none; }
  .hamburger { display: flex; }
  .retreats-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .about-img-side { min-height: 280px; }
  .about-text-side { padding: 44px 24px; }
  .testi-grid { grid-template-columns: 1fr; }
  .page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .sidebar-toggle-btn { display: block; }
  .sidebar { display: none; }
  .sidebar.sidebar-open { display: flex; }
  .content-split { grid-template-columns: 1fr; gap: 24px; }
  .content-split.flip { direction: ltr; }
}

@media (max-width: 768px) {
  .section { padding: 52px 16px; }
  .header-top-bar { font-size: 0.7rem; gap: 16px; }
  .ttc-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gal-item.tall, .gal-item.wide { grid-row: auto; grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .badge-strip { gap: 14px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 4px; }
}
