/* ═══════════════════════════════════════════════════════════════
   ADIKASHI — GLOBAL STYLESHEET
   Single source of truth for index.html, about.html, services.html
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

/* ── DESIGN TOKENS ── */
:root {
  /* Brand colours */
  --saffron:        #E8761A;
  --saffron-dark:   #C45A08;
  --saffron-pale:   #FEF0DF;
  --saffron-light:  #F5A451;
  --saffron-glow:   rgba(232, 118, 26, 0.10);

  --maroon:         #6B1B2A;
  --maroon-mid:     #541522;
  --maroon-deep:    #3E0F18;
  --maroon-ink:     #280A10;
  /* services.css aliases (kept for compatibility) */
  --deep:           #3E0F18;

  --cream:          #FAF5EE;
  --cream2:         #F2E9DF;
  --sand:           #F3E8D6;
  --sand2:          #EAD9C0;

  --bark:           #8C6A3F;
  --text:           #2A1A0E;
  --muted:          #7A5C3C;
  --muted2:         #A68960;

  --border:         rgba(139, 90, 30, 0.18);
  --border-faint:   rgba(139, 90, 30, 0.09);
  --white:          #FFFFFF;
  --radius:         6px;
}

/* ── BASE ── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* Subtle texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238C6A3F' fill-opacity='0.028' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}


/* ════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════ */
.topbar {
  position: relative;
  z-index: 50;
  background: var(--maroon-ink);
  padding: .45rem 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-left { display: flex; align-items: center; gap: 1.75rem; }
.topbar-link {
  display: flex; align-items: center; gap: .4rem;
  font-size: .72rem; letter-spacing: .05em;
  color: rgba(255,255,255,.48); text-decoration: none; transition: color .2s;
}
.topbar-link:hover { color: var(--saffron); }
.topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-social { display: flex; gap: .9rem; }
.topbar-social a {
  font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s;
}
.topbar-social a:hover { color: var(--saffron); }
.lang-btn {
  font-size: .68rem; font-family: 'DM Sans', sans-serif;
  border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.38);
  padding: .22rem .7rem; background: transparent; cursor: pointer;
  letter-spacing: .1em; transition: all .2s;
}
.lang-btn:hover { border-color: var(--saffron); color: var(--saffron); }


/* ════════════════════════════════════════════
   MAIN NAV  (index.html & about.html)
════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--maroon);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4.5rem; min-height: 70px;
  box-shadow: 0 3px 20px rgba(62,15,24,.4);
}
.nav-brand { display: flex; align-items: center; gap: .9rem; text-decoration: none; }
.nav-brand-icon {
  content: url('../content-ref/logi.jpeg');
  width: 44px; height: 44px; background: var(--saffron); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: 0 0 0 3px rgba(232,118,26,.25); flex-shrink: 0;
}
.nav-brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.22rem; font-weight: 700;
  color: var(--cream); letter-spacing: .04em; display: block;
}
.nav-brand-sub {
  font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(250,245,238,.42); display: block; margin-top: 1px;
}
.nav-menu { display: flex; gap: 0; list-style: none; }
.nav-menu li { position: relative; }
.nav-menu a {
  font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 500;
  color: rgba(250,245,238,.7); text-decoration: none; letter-spacing: .04em;
  padding: 0 1.15rem; height: 70px;
  display: flex; align-items: center;
  transition: color .2s, background .2s; cursor: pointer; white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--saffron); background: rgba(232,118,26,.07); }
.nav-menu a.active::after {
  content: ''; position: absolute; bottom: 0; left: 1.15rem; right: 1.15rem;
  height: 2.5px; background: var(--saffron); border-radius: 2px 2px 0 0;
}
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-book-btn {
  background: var(--saffron); color: #fff; padding: .6rem 1.55rem;
  font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 600;
  border: none; cursor: pointer; border-radius: 3px;
  text-decoration: none; letter-spacing: .04em; transition: all .25s; white-space: nowrap;
}
.nav-book-btn:hover { background: var(--saffron-dark); transform: translateY(-1px); }


/* ── SERVICES PAGE NAV (.nav class from services.css) ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  background: rgba(250,245,238,.93); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--maroon);
  text-decoration: none; letter-spacing: .04em;
}
.nav-links { display: flex; gap: 22px; }
.nav-links a {
  text-decoration: none; font-size: .75rem; font-weight: 500;
  letter-spacing: .13em; text-transform: uppercase; color: var(--muted); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--maroon); }
.nav-links a.active { border-bottom: 1.5px solid var(--saffron); padding-bottom: 2px; }


/* ── ABOUT PAGE SECONDARY NAV ── */
.about-page-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(40,10,16,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,118,26,.12);
  display: flex; align-items: center; justify-content: space-between; padding: 13px 4.5rem;
}
.about-nav-brand {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--cream); text-decoration: none; letter-spacing: .03em;
}
.about-nav-brand span { color: var(--saffron); }
.about-nav-links { display: flex; gap: 28px; align-items: center; }
.about-nav-links a {
  font-size: .73rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(250,245,238,.48); text-decoration: none; transition: color .2s;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
}
.about-nav-links a:hover, .about-nav-links a.active-pg { color: var(--saffron); }
.about-nav-links a.active-pg { border-bottom: 1.5px solid var(--saffron); padding-bottom: 2px; }
.about-nav-cta {
  padding: 9px 22px; background: linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  color: var(--cream); border: none; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; cursor: pointer; text-decoration: none; transition: all .2s;
}
.about-nav-cta:hover { box-shadow: 0 4px 16px rgba(107,27,42,.4); transform: translateY(-1px); }
/* push hero below fixed nav on about page */
.about-hero { padding-top: 60px !important; }


/* ════════════════════════════════════════════
   HAMBURGER / MOBILE NAV
════════════════════════════════════════════ */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 44px; height: 44px; cursor: pointer;
  background: rgba(232,118,26,.12); border: 1px solid rgba(232,118,26,.25);
  border-radius: 4px; gap: 5px; transition: background .2s; flex-shrink: 0;
}
.nav-hamburger:hover { background: rgba(232,118,26,.22); }
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--cream);
  border-radius: 2px; transition: all .32s cubic-bezier(.4,0,.2,1); transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(40,10,16,.62); z-index: 98; opacity: 0; transition: opacity .3s;
}
.mobile-overlay.visible { opacity: 1; }

.mobile-menu {
  position: fixed; top: 0; right: -100%;
  width: min(280px, 78vw); height: 100dvh;
  background: var(--maroon-ink); z-index: 99;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(232,118,26,.15);
  background: var(--maroon-deep);
}
.mobile-menu-brand {
  font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700;
  color: var(--cream); letter-spacing: .04em; display: flex; align-items: center; gap: .6rem;
}
.mobile-close-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(232,118,26,.12); border: 1px solid rgba(232,118,26,.2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--cream); font-size: 1.1rem; transition: background .2s;
}
.mobile-close-btn:hover { background: rgba(232,118,26,.28); }
.mobile-nav-links { list-style: none; padding: 1rem 0; flex: 1; }
.mobile-nav-links li { border-bottom: 1px solid rgba(232,118,26,.07); }
.mobile-nav-links a {
  display: flex; align-items: center; gap: 1rem; padding: 1.1rem 1.5rem;
  font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 500;
  color: rgba(250,245,238,.72); text-decoration: none;
  transition: background .2s, color .2s; letter-spacing: .03em;
}
.mobile-nav-links a:hover, .mobile-nav-links a.mob-active {
  background: rgba(232,118,26,.1); color: var(--saffron);
}
.nav-icon { font-size: 1.1rem; width: 24px; text-align: center; }
.mobile-menu-footer {
  padding: 1.25rem 1.5rem; border-top: 1px solid rgba(232,118,26,.12);
  display: flex; flex-direction: column; gap: .75rem;
}
.mobile-cta-btn {
  display: block; text-align: center; padding: .9rem;
  background: var(--saffron); color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: .88rem; font-weight: 600; border-radius: 3px;
  text-decoration: none; letter-spacing: .04em; transition: background .2s;
}
.mobile-cta-btn:hover { background: var(--saffron-dark); }
.mobile-contact-row { display: flex; gap: .65rem; justify-content: center; }
.mobile-contact-row a {
  display: flex; align-items: center; gap: .35rem; font-size: .78rem;
  color: rgba(250,245,238,.45); text-decoration: none; transition: color .2s;
}
.mobile-contact-row a:hover { color: var(--saffron); }

/* ── MOBILE BOTTOM BAR ── */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--maroon-ink); border-top: 1px solid rgba(232,118,26,.18);
}
.mobile-bottom-inner { display: flex; }
.mob-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: .2rem;
  padding: .65rem .5rem; text-decoration: none; transition: background .2s;
}
.mob-tab:hover { background: rgba(232,118,26,.08); }
.mob-tab-icon { font-size: 1.2rem; }
.mob-tab-label { font-size: .58rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(250,245,238,.42); }
.mob-tab.cta-tab {
  background: var(--saffron);
  position: relative;
  margin: -6px 4px 0;
  border-radius: 14px 14px 0 0;
  padding-top: 10px;
  box-shadow: 0 -4px 16px rgba(232,118,26,.45);
}
.mob-tab.cta-tab .mob-tab-icon { font-size: 1.4rem; }
.mob-tab.cta-tab .mob-tab-label { color: #fff; font-weight: 600; }


/* ════════════════════════════════════════════
   SECTION HELPERS
════════════════════════════════════════════ */
.sec { position: relative; z-index: 1; }
.sec-inner     { padding: 5.5rem 4.5rem; }
.sec-inner-sm  { padding: 4rem 4.5rem; }
.sec-tag {
  font-family: 'DM Sans', sans-serif; font-size: .68rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--saffron); display: block; margin-bottom: .6rem;
}
.sec-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 700;
  color: var(--text); line-height: 1.2;
}
.sec-h2 em { color: var(--saffron); font-style: italic; }
.sec-head-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; gap: 1.5rem;
}
.view-link {
  font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 600;
  color: var(--saffron-dark); text-decoration: none; letter-spacing: .05em;
  white-space: nowrap; opacity: .7;
}
.view-link:hover { opacity: 1; }


/* ════════════════════════════════════════════
   BUTTONS (global)
════════════════════════════════════════════ */
.btn-primary {
  background: var(--saffron); color: #fff; padding: .95rem 2.5rem;
  font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 600;
  border: none; cursor: pointer; border-radius: 3px;
  text-decoration: none; letter-spacing: .04em; transition: all .25s; display: inline-block;
}
.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent; color: rgba(250,245,238,.82);
  padding: .95rem 2.5rem; font-family: 'DM Sans', sans-serif; font-size: .88rem;
  border: 1.5px solid rgba(250,245,238,.28); cursor: pointer; border-radius: 3px;
  text-decoration: none; transition: all .25s; display: inline-block;
}
.btn-outline-light:hover { border-color: var(--saffron); color: var(--saffron); }

.btn-maroon {
  background: var(--maroon); color: var(--cream); padding: .9rem 2.2rem;
  font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600;
  border: none; cursor: pointer; border-radius: 3px;
  text-decoration: none; letter-spacing: .04em; transition: all .25s; display: inline-block;
}
.btn-maroon:hover { background: var(--maroon-mid); }

.btn-outline-saffron {
  background: transparent; color: var(--saffron); padding: .9rem 2.2rem;
  font-family: 'DM Sans', sans-serif; font-size: .85rem;
  border: 1.5px solid var(--saffron); cursor: pointer; border-radius: 3px;
  text-decoration: none; transition: all .25s; display: inline-block;
}
.btn-outline-saffron:hover { background: var(--saffron); color: #fff; }

.btn-saffron {
  background: var(--saffron); color: #fff; padding: .9rem 2.2rem;
  font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600;
  border: none; cursor: pointer; border-radius: 3px;
  text-decoration: none; display: inline-block; transition: all .25s; letter-spacing: .04em;
}
.btn-saffron:hover { background: var(--saffron-dark); transform: translateY(-1px); }

.btn-ghost-cream {
  background: transparent; color: rgba(250,245,238,.72); padding: .9rem 2.2rem;
  font-family: 'DM Sans', sans-serif; font-size: .85rem;
  border: 1.5px solid rgba(250,245,238,.22); cursor: pointer; border-radius: 3px;
  text-decoration: none; display: inline-block; transition: all .25s;
}
.btn-ghost-cream:hover { border-color: var(--saffron); color: var(--saffron); }

.cta-btn-group {
  display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap;
}


/* ════════════════════════════════════════════
   INDEX HERO
════════════════════════════════════════════ */
.hero {
  position: relative; z-index: 1; min-height: 92vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,rgba(62,15,24,.82) 0%,rgba(42,10,16,.72) 50%,rgba(30,8,14,.85) 100%),
    repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(232,118,26,.028) 40px,rgba(232,118,26,.028) 41px);
}
.hero-bg-mandala { position: absolute; inset: 0; z-index: 1; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.hero-bg-photo {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center top; background-repeat: no-repeat;
  opacity: .28; filter: saturate(1.1) brightness(.85);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 4rem 2rem; }
.hero-shloka { font-family: 'Tiro Devanagari Sanskrit', serif; font-size: clamp(1rem,2vw,1.4rem); color: rgba(250,245,238,.45); line-height: 1.9; margin-bottom: .75rem; letter-spacing: .06em; }
.hero-shloka-translation { font-family: 'Libre Baskerville', serif; font-size: .9rem; font-style: italic; color: rgba(250,245,238,.32); margin-bottom: 3rem; letter-spacing: .03em; }
.hero-h1 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,6vw,3.5rem); font-weight: 700; color: var(--cream); line-height: 1.1; margin-bottom: 1.5rem; letter-spacing: -.01em; }
.hero-h1 span { color: var(--saffron); font-style: italic; }
.hero-desc { font-family: 'Libre Baskerville', serif; font-size: 1.05rem; color: rgba(250,245,238,.62); line-height: 1.85; max-width: 580px; margin: 0 auto 2.75rem; }
.hero-ctas { display: flex; align-items: center; justify-content: center; gap: 1.1rem; flex-wrap: wrap; }


/* ── SERVICES PAGE HERO (from services.css) ── */
.services-page .hero {
  padding-top: 57px; min-height: 52vh;
  flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(155deg, var(--deep) 0%, var(--maroon) 60%, #9B3545 100%);
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 18% 60%, rgba(232,118,26,.14) 0%, transparent 55%),
              radial-gradient(ellipse at 82% 25%, rgba(232,118,26,.09) 0%, transparent 50%);
}
.hero-rings { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.ring { position: absolute; border-radius: 50%; border: 1px solid rgba(232,118,26,.13); }
.ring:nth-child(1){ width:480px; height:480px; }
.ring:nth-child(2){ width:360px; height:360px; border-color:rgba(232,118,26,.09); }
.ring:nth-child(3){ width:240px; height:240px; border-color:rgba(232,118,26,.06); }
.hero-inner { position: relative; z-index: 2; padding: 0 24px; }
.hero-eyebrow { display: inline-block; font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--saffron-light); margin-bottom: 14px; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem,6vw,3.8rem); font-weight: 600; color: #fff; line-height: 1.1; margin-bottom: 14px; }
.hero h1 em { font-style: italic; color: var(--saffron-light); }
.hero-sub { font-size: .88rem; color: rgba(255,255,255,.5); font-weight: 300; max-width: 320px; margin: 0 auto; line-height: 1.75; }


/* ════════════════════════════════════════════
   HERO CATEGORY INFINITE SCROLL
════════════════════════════════════════════ */
.hero-categories-wrapper {
  position: relative; z-index: 2; width: 100%;
  background: linear-gradient(180deg, rgba(10,2,6,.7) 0%, rgba(30,8,14,.5) 100%);
  backdrop-filter: blur(24px);
  border-top: 1.5px solid rgba(232,118,26,.55); border-bottom: 1.5px solid rgba(232,118,26,.2);
  overflow: hidden;
  box-shadow: 0 -12px 60px rgba(232,118,26,.22), 0 8px 40px rgba(0,0,0,.45);
}
.hero-categories-wrapper::before, .hero-categories-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 100px; z-index: 3; pointer-events: none;
}
.hero-categories-wrapper::before { left: 0; background: linear-gradient(90deg,rgba(10,2,6,1),transparent); }
.hero-categories-wrapper::after  { right: 0; background: linear-gradient(270deg,rgba(10,2,6,1),transparent); }
.hero-categories-track { display: flex; align-items: stretch; width: max-content; animation: infiniteScroll 30s linear infinite; }
.hero-categories-track:hover { animation-play-state: paused; }
@keyframes infiniteScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.hcat-item {
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  padding: 1.35rem 2.5rem; cursor: pointer;
  border-right: 1px solid rgba(232,118,26,.15);
  transition: background .25s, box-shadow .25s; flex-shrink: 0;
  text-decoration: none; min-width: 155px; position: relative;
}
.hcat-item:hover { background: rgba(232,118,26,.13); box-shadow: inset 0 0 30px rgba(232,118,26,.1); }
.hcat-icon {
  width: 58px; height: 58px;
  background: rgba(232,118,26,.22);
  border: 1.5px solid rgba(232,118,26,.65);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.55rem;
  transition: background .25s, border-color .25s, transform .25s, box-shadow .25s;
  box-shadow: 0 0 18px rgba(232,118,26,.35), 0 0 36px rgba(232,118,26,.15);
  overflow: hidden;
}
.hcat-icon img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s; transform: scale(1.45); filter: brightness(1.3) saturate(1.25); }
.hcat-item:hover .hcat-icon { background: var(--saffron); border-color: var(--saffron); transform: scale(1.12); box-shadow: 0 0 28px rgba(232,118,26,.7),0 0 56px rgba(232,118,26,.3); }
.hcat-item:hover .hcat-icon img { transform: scale(1.65); filter: brightness(1.45) saturate(1.35); }
.hcat-label { font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,245,238,.82); transition: color .25s; white-space: nowrap; }
.hcat-item:hover .hcat-label { color: var(--saffron); text-shadow: 0 0 12px rgba(232,118,26,.7); }


/* ════════════════════════════════════════════
   IMPACT STRIP (index)
════════════════════════════════════════════ */
.impact-strip {
  background: var(--saffron); padding: 3rem 4.5rem;
  display: flex; align-items: center; justify-content: space-around;
  gap: 2rem; flex-wrap: wrap; position: relative; z-index: 1;
}
.impact-item { text-align: center; }
.impact-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: #fff; display: block; line-height: 1; font-style: italic; }
.impact-label { font-family: 'DM Sans', sans-serif; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.72); margin-top: .35rem; display: block; }
.impact-sep { width: 1px; height: 50px; background: rgba(255,255,255,.2); flex-shrink: 0; }


/* ════════════════════════════════════════════
   ABOUT SECTION (index)
════════════════════════════════════════════ */
.about-sec { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-col { position: relative; }
.about-img-frame { width: 100%; aspect-ratio: 4/5; background: var(--sand2); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; position: relative; display: flex; align-items: center; justify-content: center; }
.about-img-frame::after { content: url('./content-ref/profile.png!sw800'); position: absolute; inset: 14px; border: 1px solid rgba(232,118,26,.2); border-radius: 4px; pointer-events: none; }
.about-img-bg-text { font-size: 14rem; color: rgba(232,118,26,.06); font-family: serif; line-height: 1; user-select: none; }
.about-float-badge { position: absolute; bottom: 2.5rem; right: -1.75rem; background: var(--saffron); color: #fff; padding: 1.1rem 1.4rem; text-align: center; border-radius: 4px; box-shadow: 4px 6px 24px rgba(107,27,42,.22); min-width: 110px; }
.about-float-badge strong { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 700; font-style: italic; display: block; line-height: 1; }
.about-float-badge span { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; opacity: .85; display: block; margin-top: .3rem; }
.about-float-card2 { position: absolute; top: 2rem; left: -1.75rem; background: var(--maroon); color: var(--cream); padding: .9rem 1.2rem; border-radius: 4px; box-shadow: 4px 6px 24px rgba(62,15,24,.25); min-width: 130px; }
.about-float-card2 strong { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; font-style: italic; color: var(--saffron); display: block; line-height: 1; }
.about-float-card2 span { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,245,238,.5); display: block; margin-top: .3rem; }
.about-text-col .body { font-family: 'Libre Baskerville', serif; font-size: .98rem; color: var(--muted); line-height: 1.88; margin-bottom: 1.25rem; }
.about-checks { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; margin: 1.75rem 0 2rem; }
.about-check { display: flex; align-items: center; gap: .6rem; font-size: .83rem; color: var(--muted); }
.about-check .chk { width: 18px; height: 18px; background: var(--saffron-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--saffron-dark); font-size: .62rem; flex-shrink: 0; }
.about-btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }


/* ════════════════════════════════════════════
   OFFERINGS / TAB PANELS (index)
════════════════════════════════════════════ */
.offerings-sec { background: var(--white); }
.tab-bar { display: flex; gap: 0; border-bottom: 2px solid var(--border-faint); margin-bottom: 2.75rem; overflow-x: auto; scrollbar-width: none; }
.tab-bar::-webkit-scrollbar { display: none; }
.tab-btn { font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 500; letter-spacing: .06em; padding: .9rem 1.6rem; background: transparent; border: none; cursor: pointer; color: var(--muted); border-bottom: 2.5px solid transparent; margin-bottom: -2px; transition: all .2s; white-space: nowrap; }
.tab-btn.active, .tab-btn:hover { color: var(--saffron); border-bottom-color: var(--saffron); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.offering-card { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .3s; cursor: pointer; }
.offering-card:hover { transform: translateY(-4px); box-shadow: 6px 10px 32px rgba(107,27,42,.11); }
.offering-card-img { height: 180px; background: var(--sand2); display: flex; align-items: center; justify-content: center; font-size: 3.2rem; position: relative; overflow: hidden; border-bottom: 2px solid var(--saffron-pale); }
.offering-card-img::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(232,118,26,.07) 0%, transparent 70%); }
.offering-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.offering-card-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--maroon); margin-bottom: .4rem; }
.offering-card-desc { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--muted); line-height: 1.68; margin-bottom: 1.1rem; }
.offering-book-btn { display: inline-flex; align-items: center; gap: .4rem; font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 600; color: var(--saffron-dark); text-decoration: none; border-bottom: 1px solid rgba(232,118,26,.35); padding-bottom: 1px; transition: all .2s; letter-spacing: .04em; }
.offering-card:hover .offering-book-btn { border-color: var(--saffron); color: var(--saffron); }


/* ════════════════════════════════════════════
   KASHI SECTION (index)
════════════════════════════════════════════ */
.kashi-sec { background: var(--maroon-deep); padding: 5.5rem 4.5rem; position: relative; overflow: hidden; }
.kashi-sec::before { content: 'काशी'; position: absolute; top: -1.5rem; left: -1rem; font-size: 18rem; color: rgba(255,255,255,.025); font-family: 'Playfair Display', serif; line-height: 1; pointer-events: none; }
.kashi-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.kashi-text .sec-tag { margin-bottom: 1rem; }
.kashi-text .sec-h2 { color: var(--cream); margin-bottom: 1.25rem; }
.kashi-text p { font-family: 'Libre Baskerville', serif; font-size: .97rem; color: rgba(250,245,238,.55); line-height: 1.85; margin-bottom: 2rem; }
.kashi-highlights { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.25rem; }
.kashi-hl { display: flex; align-items: center; gap: .75rem; font-family: 'DM Sans', sans-serif; font-size: .85rem; color: rgba(250,245,238,.65); }
.kashi-hl-dot { width: 6px; height: 6px; background: var(--saffron); border-radius: 50%; flex-shrink: 0; }
.kashi-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.kashi-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 170px 170px; gap: .75rem; }
.kashi-cell { background: var(--maroon-mid); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; overflow: hidden; cursor: pointer; transition: all .3s; }
.kashi-cell:first-child { grid-row: span 2; font-size: 3.5rem; }
.kashi-cell:hover { box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.kashi-cell:hover .kc-overlay { opacity: 1; }
.kc-overlay { position: absolute; inset: 0; background: rgba(62,15,24,.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .3s; color: var(--cream); font-family: 'DM Sans', sans-serif; font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; }
.kc-label { position: absolute; bottom: .6rem; left: .6rem; font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(250,245,238,.5); background: rgba(62,15,24,.6); padding: .18rem .55rem; border-radius: 2px; }


/* ════════════════════════════════════════════
   EXPLORE / RESOURCES (index)
════════════════════════════════════════════ */
.explore-sec { background: var(--sand); }
.explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.explore-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: all .3s; cursor: pointer; display: flex; flex-direction: column; }
.explore-card:hover { transform: translateY(-3px); box-shadow: 4px 8px 28px rgba(107,27,42,.1); }
.explore-card-img { height: 160px; background: var(--sand2); display: flex; align-items: center; justify-content: center; font-size: 2.8rem; position: relative; overflow: hidden; flex-shrink: 0; }
.explore-card-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(232,118,26,.06) 100%); }
.explore-card-body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.explore-card-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--maroon); margin-bottom: .4rem; }
.explore-card-desc { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: var(--muted); line-height: 1.65; flex: 1; }
.explore-card-link { display: inline-flex; align-items: center; gap: .35rem; margin-top: 1.1rem; font-family: 'DM Sans', sans-serif; font-size: .75rem; font-weight: 600; color: var(--saffron-dark); text-decoration: none; border-bottom: 1px solid rgba(232,118,26,.3); padding-bottom: 1px; transition: all .2s; }
.explore-card:hover .explore-card-link { color: var(--saffron); border-color: var(--saffron); }


/* ════════════════════════════════════════════
   GUIDES (index)
════════════════════════════════════════════ */
.guides-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.guide-card { text-align: center; border: 1px solid var(--border-faint); border-radius: var(--radius); padding: 2.5rem 2rem 2rem; transition: all .3s; background: var(--cream); }
.guide-card:hover { box-shadow: 4px 8px 28px rgba(107,27,42,.09); transform: translateY(-2px); }
.guide-avatar { width: 100px; height: 100px; border-radius: 50%; background: var(--sand2); border: 3px solid var(--saffron); margin: 0 auto 1.25rem; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; overflow: hidden; box-shadow: 0 0 0 5px var(--saffron-pale); }
.guide-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--maroon); margin-bottom: .2rem; }
.guide-title { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--saffron); margin-bottom: .85rem; display: block; }
.guide-bio { font-family: 'Libre Baskerville', serif; font-size: .88rem; color: var(--muted); line-height: 1.75; font-style: italic; }


/* ════════════════════════════════════════════
   VALUES (index)
════════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; border: 1px solid rgba(232,118,26,.18); }
.value-card { display: block; text-decoration: none; color: inherit; padding: 2.5rem 2rem; border-right: 1px solid rgba(232,118,26,.18); transition: background .3s, transform .2s; cursor: pointer; }
.value-card:last-child { border-right: none; }
.value-card:hover { background: rgba(232,118,26,.09); transform: translateY(-3px); }
.value-ico { font-size: 1.8rem; margin-bottom: 1.25rem; display: block; }
.value-name { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--saffron); margin-bottom: .5rem; }
.value-desc { font-family: 'DM Sans', sans-serif; font-size: .83rem; color: rgba(250,245,238,.45); line-height: 1.7; }


/* ════════════════════════════════════════════
   TESTIMONIALS (index)
════════════════════════════════════════════ */
.testi-sec { background: var(--cream); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.75rem; }
.testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: all .3s; position: relative; overflow: hidden; }
.testi-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--saffron); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.testi-card:hover::before { transform: scaleX(1); }
.testi-card:hover { transform: translateY(-3px); box-shadow: 4px 8px 28px rgba(107,27,42,.09); }
.testi-stars { color: var(--saffron); letter-spacing: .1em; font-size: .85rem; margin-bottom: 1rem; }
.testi-quote { font-size: 3.5rem; font-family: 'Playfair Display', serif; color: var(--saffron-pale); line-height: .8; margin-bottom: .5rem; display: block; }
.testi-body { font-family: 'Libre Baskerville', serif; font-size: .92rem; color: var(--muted); line-height: 1.82; font-style: italic; margin-bottom: 1.5rem; }
.testi-author-row { display: flex; align-items: center; gap: .75rem; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; background: var(--saffron-pale); border: 2px solid var(--saffron); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--saffron-dark); font-weight: 700; flex-shrink: 0; }
.testi-name { font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600; color: var(--maroon); display: block; }
.testi-city { font-size: .72rem; color: var(--muted2); letter-spacing: .06em; display: block; margin-top: 1px; }


/* ════════════════════════════════════════════
   FAQ (index)
════════════════════════════════════════════ */
.faq-sec { background: var(--sand); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2.75rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; cursor: pointer; gap: 1rem; font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500; color: var(--maroon); transition: background .2s; }
.faq-q:hover { background: var(--saffron-pale); }
.faq-arrow { width: 24px; height: 24px; border-radius: 50%; background: var(--saffron-pale); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--saffron-dark); flex-shrink: 0; transition: transform .25s, background .25s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--saffron); color: #fff; }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-family: 'Libre Baskerville', serif; font-size: .88rem; color: var(--muted); line-height: 1.78; border-top: 1px solid var(--border-faint); padding-top: 1rem; }
.faq-item.open .faq-a { display: block; }


/* ════════════════════════════════════════════
   CONTACT (index)
════════════════════════════════════════════ */
.contact-sec { background: var(--maroon-deep); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: start; }
.contact-info .sec-h2 { color: var(--cream); margin-bottom: 1.25rem; }
.contact-info p { font-family: 'Libre Baskerville', serif; font-size: .97rem; color: rgba(250,245,238,.52); line-height: 1.85; margin-bottom: 2.25rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.15rem; }
.contact-row { display: grid; grid-template-columns: 46px 1fr; gap: 1rem; align-items: center; }
.contact-ico { width: 46px; height: 46px; background: rgba(232,118,26,.1); border: 1px solid rgba(232,118,26,.22); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-lbl { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,245,238,.35); display: block; margin-bottom: .18rem; font-family: 'DM Sans', sans-serif; }
.contact-val { font-family: 'Playfair Display', serif; font-size: .98rem; color: var(--cream); }
.contact-socials { display: flex; gap: .65rem; margin-top: 2rem; }
.csocial { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(250,245,238,.12); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-family: 'DM Sans', sans-serif; font-weight: 600; color: rgba(250,245,238,.38); text-decoration: none; transition: all .2s; letter-spacing: .03em; }
.csocial:hover { border-color: var(--saffron); color: var(--saffron); background: rgba(232,118,26,.08); }
.booking-form { background: rgba(250,245,238,.04); border: 1px solid rgba(250,245,238,.09); border-radius: var(--radius); padding: 2.5rem; position: relative; }
.booking-form h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--cream); margin-bottom: .3rem; }
.booking-form .form-sub { font-size: .78rem; color: rgba(250,245,238,.38); margin-bottom: 1.75rem; font-family: 'DM Sans', sans-serif; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.form-grp { display: flex; flex-direction: column; gap: .3rem; margin-bottom: .85rem; }
.form-grp label { font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,245,238,.38); font-family: 'DM Sans', sans-serif; }
.form-grp input, .form-grp select, .form-grp textarea { background: rgba(250,245,238,.06); border: 1px solid rgba(250,245,238,.12); color: var(--cream); padding: .68rem .95rem; font-family: 'DM Sans', sans-serif; font-size: .88rem; border-radius: 3px; outline: none; transition: border-color .2s; -webkit-appearance: none; resize: none; }
.form-grp input::placeholder, .form-grp textarea::placeholder { color: rgba(250,245,238,.22); }
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus { border-color: rgba(232,118,26,.5); }
.form-grp select option { background: var(--maroon-deep); color: var(--cream); }
.form-submit { width: 100%; padding: .92rem; background: var(--saffron); color: #fff; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .88rem; font-weight: 600; border-radius: 3px; letter-spacing: .05em; transition: background .25s; margin-top: .25rem; }
.form-submit:hover { background: var(--saffron-dark); }
.form-privacy { font-size: .68rem; color: rgba(250,245,238,.22); margin-top: .75rem; line-height: 1.5; font-family: 'DM Sans', sans-serif; text-align: center; }


/* ════════════════════════════════════════════
   NEWSLETTER (index)
════════════════════════════════════════════ */
.newsletter-sec { background: var(--saffron-pale); padding: 4rem 4.5rem; text-align: center; position: relative; z-index: 1; border-top: 1px solid var(--border-faint); }
.newsletter-sec h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--maroon); margin-bottom: .5rem; }
.newsletter-sec p { font-family: 'Libre Baskerville', serif; font-size: .95rem; color: var(--muted); margin-bottom: 2rem; }
.newsletter-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: .85rem 1.25rem; background: var(--white); border: 1.5px solid var(--border); border-right: none; border-radius: 3px 0 0 3px; font-family: 'DM Sans', sans-serif; font-size: .88rem; color: var(--text); outline: none; }
.newsletter-form input::placeholder { color: var(--muted2); }
.newsletter-form button { background: var(--maroon); color: var(--cream); padding: .85rem 1.75rem; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600; border-radius: 0 3px 3px 0; transition: background .2s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--maroon-mid); }


/* ════════════════════════════════════════════
   IMAGE MODAL (index kashi grid)
════════════════════════════════════════════ */
.img-modal { position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; z-index: 999; opacity: 0; visibility: hidden; transition: .3s; }
.img-modal.active { opacity: 1; visibility: visible; }
.img-modal img { max-width: 90%; max-height: 90%; border-radius: 12px; }
.close-btn { position: absolute; top: 20px; right: 30px; font-size: 2rem; color: #fff; cursor: pointer; }


/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
footer { position: relative; z-index: 1; background: var(--maroon-ink); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding: 4.5rem 4.5rem 3rem; }
.footer-brand-col {}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.1rem; }
.footer-logo-icon { font-size: 1.5rem; }
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--cream); letter-spacing: .04em; }
.footer-tagline { font-family: 'Libre Baskerville', serif; font-size: .88rem; color: rgba(250,245,238,.38); line-height: 1.78; font-style: italic; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: .6rem; }
.footer-social-link { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(250,245,238,.12); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-family: 'DM Sans', sans-serif; font-weight: 700; color: rgba(250,245,238,.35); text-decoration: none; transition: all .2s; }
.footer-social-link:hover { border-color: var(--saffron); color: var(--saffron); background: rgba(232,118,26,.1); }
.footer-col h4 { font-family: 'DM Sans', sans-serif; font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(232,118,26,.65); margin-bottom: 1.25rem; }
.footer-col-title { font-family: 'DM Sans', sans-serif; font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(232,118,26,.65); margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col ul li a,
.footer-links li a { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: rgba(250,245,238,.4); text-decoration: none; transition: color .2s; }
.footer-col ul li a:hover,
.footer-links li a:hover,
.footer-col ul li a.active,
.footer-links li a.active { color: var(--saffron); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 4.5rem; border-top: 1px solid rgba(250,245,238,.07); }
.footer-copy { font-size: .72rem; color: rgba(250,245,238,.22); }
.footer-legal { display: flex; gap: 1.75rem; }
.footer-legal a { font-size: .72rem; color: rgba(250,245,238,.22); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--saffron); }


/* ════════════════════════════════════════════
   SERVICES PAGE — GRID & CARDS
════════════════════════════════════════════ */
/* Services main section */
.services-sec { max-width: 1120px; margin: 0 auto; padding: 32px 18px 80px; }

/* Category pill filter */
.cat-wrapper { position: sticky; top: 57px; z-index: 100; background: var(--cream); padding: 14px 0 10px; }
.cat-scroll { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.cat-scroll::-webkit-scrollbar { display: none; }
.cat {
  flex-shrink: 0; white-space: nowrap; padding: 8px 20px;
  border-radius: 999px; border: 1px solid var(--border);
  background: #fff; color: var(--muted); cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: .75rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: all .2s;
}
.cat:hover { border-color: var(--maroon); color: var(--maroon); }
.cat.active { background: var(--maroon); border-color: var(--maroon); color: #fff; }
.dot-row { text-align: center; color: var(--saffron); opacity: .4; letter-spacing: .35em; font-size: 1rem; margin: 20px 0 4px; }

/* Masonry grid */
.grid { columns: 3; column-gap: 14px; margin-top: 20px; }

/* Service card */
.card {
  break-inside: avoid; margin-bottom: 14px; border-radius: 16px; overflow: hidden;
  background: #fff; border: 1px solid var(--border); cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease, box-shadow .22s ease;
}
.card.show { opacity: 1; transform: none; }
.card:hover { box-shadow: 0 14px 38px rgba(62,15,24,.11); transform: translateY(-4px) !important; }
.card-img-wrap { overflow: hidden; }
.card-img { width: 100%; display: block; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img { transform: scale(1.04); }
.card-body { padding: 13px 15px 10px; }
.card-cat-tag { display: inline-block; font-size: .63rem; letter-spacing: .15em; text-transform: uppercase; color: var(--saffron); font-weight: 500; margin-bottom: 5px; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; font-weight: 600; color: var(--maroon); line-height: 1.25; margin-bottom: 5px; }
.card-desc { font-size: .78rem; color: var(--muted); line-height: 1.55; font-weight: 300; }
.card-foot { display: flex; align-items: center; justify-content: space-between; padding: 9px 15px 13px; border-top: 1px solid var(--border); margin-top: 8px; }
.card-price { font-size: .75rem; font-weight: 500; color: var(--muted); }
.card-explore { display: flex; align-items: center; gap: 5px; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--maroon); transition: gap .2s; }
.card:hover .card-explore { gap: 8px; }


/* ════════════════════════════════════════════
   SERVICE DETAIL MODAL
════════════════════════════════════════════ */
.modal-wrap {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(42,26,14,.55); backdrop-filter: blur(5px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
@media(min-width:600px){ .modal-wrap { align-items: center; } }
.modal-wrap.open { opacity: 1; pointer-events: auto; }
.modal-sheet {
  background: var(--cream); width: 100%; max-width: 540px;
  border-radius: 22px 22px 0 0; padding: 0 0 32px;
  max-height: 90vh; overflow-y: auto;
  transform: translateY(40px); transition: transform .35s cubic-bezier(.4,0,.2,1);
  position: relative;
}
@media(min-width:600px){ .modal-sheet { border-radius: 22px; transform: translateY(16px) scale(.97); } }
.modal-wrap.open .modal-sheet { transform: none !important; }
.drag-handle { width: 38px; height: 4px; background: var(--border); border-radius: 99px; margin: 14px auto 0; display: block; }
@media(min-width:600px){ .drag-handle { display: none; } }
.modal-head { position: relative; padding: 22px 24px 0; }
.modal-close-btn { position: absolute; top: 18px; right: 18px; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border); background: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--muted); font-size: .85rem; transition: all .2s; line-height: 1; }
.modal-close-btn:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.modal-eyebrow { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--saffron); font-weight: 500; margin-bottom: 6px; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; font-weight: 600; color: var(--maroon); line-height: 1.15; margin-bottom: 4px; }
.modal-meta { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 16px; }
.meta-chip { display: flex; align-items: center; gap: 6px; background: var(--cream2); border-radius: 999px; padding: 6px 14px; font-size: .75rem; color: var(--muted); }
.modal-body-text { padding: 0 24px; font-size: .86rem; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 18px; }
.includes-head { padding: 0 24px; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text); font-weight: 600; margin-bottom: 10px; }
.includes-list { padding: 0 24px; display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; list-style: none; }
.inc-item { display: flex; align-items: center; gap: 10px; font-size: .82rem; color: var(--text); }
.inc-dot { width: 20px; height: 20px; border-radius: 50%; background: linear-gradient(135deg, var(--deep), var(--maroon)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.modal-cta-row { padding: 0 24px; display: flex; gap: 10px; align-items: center; }
.btn-secondary { padding: 14px 18px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--muted); cursor: pointer; font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 500; transition: all .2s; }
.btn-secondary:hover { border-color: var(--maroon); color: var(--maroon); }


/* ════════════════════════════════════════════
   BOOKING MODAL (services page)
════════════════════════════════════════════ */
.book-wrap {
  position: fixed; inset: 0; z-index: 600;
  display: flex; align-items: flex-end; justify-content: center;
  background: rgba(42,26,14,.6); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
@media(min-width:600px){ .book-wrap { align-items: center; } }
.book-wrap.open { opacity: 1; pointer-events: auto; }
.book-sheet {
  background: var(--cream); width: 100%; max-width: 400px;
  border-radius: 22px 22px 0 0; max-height: 98vh; 
  /* overflow-y: auto; */
  transform: translateY(50px); transition: transform .38s cubic-bezier(.4,0,.2,1);
}
@media(min-width:600px){ .book-sheet { border-radius: 22px; transform: translateY(20px) scale(.96); } }
.book-wrap.open .book-sheet { transform: none !important; }
.book-inner { padding: 28px 24px 0; }
.back-btn { display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); cursor: pointer; font-weight: 500; border: none; background: none; margin-bottom: 16px; transition: color .2s; font-family: 'Jost', sans-serif; }
.back-btn:hover { color: var(--maroon); }
.book-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--maroon); margin-bottom: 3px; }
.book-service-name { font-size: .8rem; color: var(--saffron); font-weight: 500; letter-spacing: .06em; margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; background: #fff; font-family: 'Jost', sans-serif; font-size: .86rem; color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(107,27,42,.08); }
.field textarea { resize: vertical; min-height: 82px; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A5C4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field.error input, .field.error select { border-color: var(--saffron); }
.field-err { font-size: .68rem; color: var(--saffron); margin-top: 4px; display: none; }
.field.error .field-err { display: block; }
.form-divider { height: 1px; background: var(--border); margin: 20px 0 0; }
.book-submit-row { padding: 16px 24px 0; }
.btn-submit { width: 100%; padding: 15px; border-radius: 999px; background: linear-gradient(135deg, var(--maroon), var(--deep)); color: #fff; border: none; cursor: pointer; font-family: 'Jost', sans-serif; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; transition: transform .15s, box-shadow .2s; box-shadow: 0 4px 18px rgba(62,15,24,.22); }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(62,15,24,.3); }
.privacy-note { text-align: center; font-size: .7rem; color: var(--muted); padding: 10px 24px 28px; line-height: 1.55; }
/* Success state */
.success-state { display: none; flex-direction: column; align-items: center; text-align: center; padding: 48px 24px 40px; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon), var(--deep)); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: var(--maroon); margin-bottom: 10px; }
.success-sub { font-size: .84rem; color: var(--muted); line-height: 1.7; max-width: 280px; margin-bottom: 28px; }
.success-back { padding: 12px 28px; border-radius: 999px; background: var(--cream2); border: 1px solid var(--border); color: var(--maroon); font-family: 'Jost', sans-serif; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: all .2s; }
.success-back:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }


/* ════════════════════════════════════════════
   ABOUT PAGE — HERO
════════════════════════════════════════════ */
.about-hero {
  position: relative; background: var(--maroon-deep); min-height: 58vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.about-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,rgba(62,15,24,.92) 0%,rgba(40,10,16,.75) 60%,rgba(20,5,10,.95) 100%),
    repeating-linear-gradient(45deg,transparent,transparent 40px,rgba(232,118,26,.025) 40px,rgba(232,118,26,.025) 41px);
}
.about-hero-devanagari { position: absolute; top: -3rem; right: -2rem; font-family: 'Tiro Devanagari Sanskrit', serif; font-size: clamp(8rem,20vw,18rem); color: rgba(232,118,26,.055); line-height: 1; pointer-events: none; user-select: none; letter-spacing: -.02em; }
.about-hero-mandala { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: clamp(280px,50vw,560px); height: clamp(280px,50vw,560px); opacity: .045; pointer-events: none; }
.about-hero-content { position: relative; z-index: 2; padding: 4rem 4.5rem 5rem; width: 100%; max-width: 900px; }
.about-hero-eyebrow { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.5rem; }
.about-hero-line { width: 48px; height: 1.5px; background: var(--saffron); }
.about-hero-eyebrow-text { font-family: 'DM Sans', sans-serif; font-size: .68rem; letter-spacing: .32em; text-transform: uppercase; color: var(--saffron); }
.about-hero-h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem,6vw,5rem); font-weight: 700; color: var(--cream); line-height: 1.08; letter-spacing: -.02em; margin-bottom: 1.75rem; }
.about-hero-h1 em { color: var(--saffron); font-style: italic; }
.about-hero-sub { font-family: 'Libre Baskerville', serif; font-size: 1rem; color: rgba(250,245,238,.52); line-height: 1.9; max-width: 540px; font-style: italic; }
.about-hero-scroll { position: absolute; bottom: 2.5rem; right: 4.5rem; display: flex; align-items: center; gap: .75rem; font-family: 'DM Sans', sans-serif; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(250,245,238,.28); writing-mode: vertical-rl; transform: rotate(180deg); }
.about-hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to top,transparent,var(--saffron)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.15)} }


/* ── STORY SECTION (about) ── */
.story-sec { background: var(--cream); position: relative; overflow: hidden; }
.story-sec::before { content: '१'; position: absolute; top: -2rem; right: 3rem; font-family: 'Tiro Devanagari Sanskrit', serif; font-size: 20rem; color: rgba(232,118,26,.04); pointer-events: none; line-height: 1; }
.story-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 6rem; align-items: start; }
.story-pull-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.3rem,2.2vw,1.75rem); font-style: italic; color: var(--maroon); line-height: 1.55; border-left: 3px solid var(--saffron); padding-left: 1.75rem; margin: 2.25rem 0; }
.story-body { font-family: 'Libre Baskerville', serif; font-size: .97rem; color: var(--muted); line-height: 1.92; margin-bottom: 1.3rem; }
.story-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 160px 200px; gap: 10px; position: sticky; top: 120px; }
.mosaic-img { border-radius: 5px; overflow: hidden; position: relative; background: var(--sand2); }
.mosaic-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg,transparent 50%,rgba(107,27,42,.35) 100%); }
.mosaic-img .img-label { position: absolute; bottom: .85rem; left: .9rem; z-index: 2; font-family: 'DM Sans', sans-serif; font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,245,238,.7); }
.mosaic-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; background: var(--sand2); position: relative; }
.mosaic-img.tall { grid-row: span 2; }
.mosaic-img.wide { grid-column: span 2; }
.mosaic-placeholder.m1 { background: linear-gradient(135deg,#e8c99a 0%,#d4a870 100%); }
.mosaic-placeholder.m2 { background: linear-gradient(135deg,#c4855f 0%,#a86040 100%); }
.mosaic-placeholder.m3 { background: linear-gradient(135deg,#8c4a5a 0%,#6b1b2a 100%); }
.mosaic-placeholder.m4 { background: linear-gradient(135deg,#f0d5b0 0%,#e0b87a 100%); }
.mosaic-stat-card { position: absolute; background: var(--maroon); color: var(--cream); padding: 1.1rem 1.4rem; border-radius: 6px; box-shadow: 8px 12px 40px rgba(62,15,24,.35); z-index: 10; min-width: 130px; }
.mosaic-stat-card.card-1 { bottom: -1.5rem; right: -1.5rem; }
.mosaic-stat-card.card-2 { top: -1.5rem; left: -1.5rem; background: var(--saffron); }
.mosaic-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; font-style: italic; color: var(--saffron); display: block; line-height: 1; }
.mosaic-stat-card.card-2 .mosaic-stat-num { color: #fff; }
.mosaic-stat-label { font-size: .6rem; letter-spacing: .14em; text-transform: uppercase; opacity: .75; display: block; margin-top: .3rem; }

/* ── TEAM ── */
.team-sec { background: var(--white); position: relative; overflow: hidden; }
.team-sec::after { content: 'गुरु'; position: absolute; bottom: -3rem; right: -1rem; font-family: 'Tiro Devanagari Sanskrit', serif; font-size: 16rem; color: rgba(232,118,26,.035); pointer-events: none; line-height: 1; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; margin-top: 3rem; }
.team-card { position: relative; background: var(--cream); border: 1px solid var(--border); border-radius: 8px; overflow: visible; transition: all .35s cubic-bezier(.4,0,.2,1); }
.team-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(107,27,42,.14); }
.team-card-img-wrap { height: 240px; border-radius: 7px 7px 0 0; overflow: hidden; position: relative; }
.team-card-img-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(40,10,16,.6) 0%,transparent 55%); }
.team-card-photo { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 5rem; transition: transform .5s ease; }
.team-card:hover .team-card-photo { transform: scale(1.06); }
.tc-photo-1 { background: linear-gradient(155deg,#e8c99a,#c4855f); }
.tc-photo-2 { background: linear-gradient(155deg,#8c4a5a,#541522); }
.tc-photo-3 { background: linear-gradient(155deg,#d4a870,#a86040); }
.team-card-role-badge { position: absolute; bottom: 1rem; left: 1rem; z-index: 2; background: var(--saffron); color: #fff; font-family: 'DM Sans', sans-serif; font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: .3rem .7rem; border-radius: 3px; }
.team-card-body { padding: 1.5rem 1.4rem 1.6rem; }
.team-card-name { font-family: 'Playfair Display', serif; font-size: 1.18rem; font-weight: 700; color: var(--maroon); margin-bottom: .25rem; }
.team-card-title { font-family: 'DM Sans', sans-serif; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted2); margin-bottom: 1rem; }
.team-card-bio { font-family: 'Libre Baskerville', serif; font-size: .84rem; color: var(--muted); line-height: 1.78; }
.team-card-footer { border-top: 1px solid var(--border-faint); padding: .9rem 1.4rem; display: flex; align-items: center; justify-content: space-between; }
.team-card-langs { display: flex; gap: .4rem; flex-wrap: wrap; }
.team-lang-pill { font-family: 'DM Sans', sans-serif; font-size: .6rem; letter-spacing: .1em; color: var(--muted); border: 1px solid var(--border); padding: .18rem .55rem; border-radius: 20px; background: var(--sand); }
.team-social-link { font-size: .75rem; color: var(--muted2); text-decoration: none; transition: color .2s; }
.team-social-link:hover { color: var(--saffron); }

/* ── VALUES / PILLARS (about) ── */
.values-sec { background: var(--maroon-deep); position: relative; overflow: hidden; }
.values-sec::before { content: 'धर्म'; position: absolute; top: -4rem; left: -2rem; font-family: 'Tiro Devanagari Sanskrit', serif; font-size: 22rem; color: rgba(255,255,255,.025); pointer-events: none; line-height: 1; }
.values-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4.5rem; }
.values-intro-text .sec-tag { margin-bottom: .75rem; }
.values-intro-text .sec-h2 { color: var(--cream); margin-bottom: 1.25rem; }
.values-intro-text p { font-family: 'Libre Baskerville', serif; font-size: .97rem; color: rgba(250,245,238,.52); line-height: 1.88; }
.values-shloka-box { border: 1px solid rgba(232,118,26,.2); border-radius: 8px; padding: 2rem 2.25rem; background: rgba(232,118,26,.06); backdrop-filter: blur(6px); text-align: center; }
.values-shloka-box .shloka-text { font-family: 'Tiro Devanagari Sanskrit', serif; font-size: 1.2rem; color: rgba(250,245,238,.7); line-height: 1.9; letter-spacing: .06em; margin-bottom: .75rem; }
.values-shloka-box .shloka-trans { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: .82rem; color: rgba(250,245,238,.38); letter-spacing: .02em; }
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(232,118,26,.12); border: 1px solid rgba(232,118,26,.12); border-radius: 8px; overflow: hidden; }
.pillar-card { background: rgba(40,10,16,.85); padding: 2.5rem 2rem 2.25rem; position: relative; transition: background .3s; }
.pillar-card:hover { background: rgba(62,15,24,.95); }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg,transparent,var(--saffron),transparent); opacity: 0; transition: opacity .3s; }
.pillar-card:hover::before { opacity: 1; }
.pillar-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 700; font-style: italic; color: rgba(232,118,26,.15); line-height: 1; margin-bottom: 1.25rem; transition: color .3s; }
.pillar-card:hover .pillar-num { color: rgba(232,118,26,.3); }
.pillar-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }
.pillar-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--cream); margin-bottom: .6rem; letter-spacing: -.01em; }
.pillar-desc { font-family: 'DM Sans', sans-serif; font-size: .82rem; color: rgba(250,245,238,.42); line-height: 1.75; }

/* ── IMPACT SECTION (about) ── */
.impact-sec { background: var(--saffron); position: relative; overflow: hidden; }
.impact-sec::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg,transparent,transparent 30px,rgba(255,255,255,.04) 30px,rgba(255,255,255,.04) 31px), repeating-linear-gradient(-45deg,transparent,transparent 30px,rgba(255,255,255,.04) 30px,rgba(255,255,255,.04) 31px); pointer-events: none; }
.impact-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.impact-stat { text-align: center; padding: 3.5rem 2rem; border-right: 1px solid rgba(255,255,255,.15); position: relative; }
.impact-stat:last-child { border-right: none; }
.impact-big { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem,5vw,4.5rem); font-weight: 700; font-style: italic; color: #fff; line-height: 1; display: block; margin-bottom: .4rem; }
.impact-label { font-family: 'DM Sans', sans-serif; font-size: .72rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.65); }

/* ── JOURNEY / TIMELINE (about) ── */
.journey-sec { background: var(--cream); position: relative; overflow: hidden; }
.journey-grid { display: grid; grid-template-columns: 1fr 3px 1fr; gap: 0 2.5rem; margin-top: 3.5rem; }
.journey-line { width: 3px; background: linear-gradient(to bottom, var(--saffron), var(--maroon)); border-radius: 3px; position: relative; margin: 0 auto; }
.journey-event { padding: 0 0 3.5rem; position: relative; }
.journey-event.right { text-align: right; }
.journey-event-dot { position: absolute; width: 14px; height: 14px; background: var(--saffron); border-radius: 50%; border: 3px solid var(--cream); box-shadow: 0 0 0 2px var(--saffron); top: .25rem; }
.journey-event.left .journey-event-dot { right: -3.2rem; }
.journey-event.right .journey-event-dot { left: -3.2rem; }
.journey-year { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; font-style: italic; color: var(--saffron); line-height: 1; margin-bottom: .35rem; }
.journey-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--maroon); margin-bottom: .5rem; }
.journey-body { font-family: 'Libre Baskerville', serif; font-size: .85rem; color: var(--muted); line-height: 1.78; }

/* ── TESTIMONIAL PINS (about) ── */
.testi-highlight-sec { background: var(--sand); position: relative; overflow: hidden; }
.testi-highlight-sec::before { content: '"'; position: absolute; top: -1.5rem; left: 2rem; font-family: 'Playfair Display', serif; font-size: 22rem; color: rgba(107,27,42,.06); line-height: 1; pointer-events: none; }
.testi-masonry { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.25rem; margin-top: 3rem; }
.testi-pin { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.6rem 1.5rem; position: relative; transition: all .3s; }
.testi-pin:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(107,27,42,.1); }
.testi-pin:nth-child(2) { margin-top: 2rem; }
.testi-pin:nth-child(3) { margin-top: 1rem; }
.testi-pin:nth-child(5) { margin-top: -1.5rem; }
.testi-pin:nth-child(6) { margin-top: 1.5rem; }
.testi-pin-stars { margin-bottom: .85rem; color: var(--saffron); font-size: .8rem; letter-spacing: .1em; }
.testi-pin-quote { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: .92rem; color: var(--text); line-height: 1.8; margin-bottom: 1.25rem; }
.testi-pin-divider { width: 32px; height: 1.5px; background: var(--saffron); margin-bottom: 1rem; }
.testi-pin-meta { display: flex; align-items: center; gap: .75rem; }
.testi-pin-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border: 2px solid var(--saffron-pale); }
.tpa-1 { background: linear-gradient(135deg,#e8c99a,#d4a870); }
.tpa-2 { background: linear-gradient(135deg,#c4855f,#a86040); }
.tpa-3 { background: linear-gradient(135deg,#8c4a5a,#6b1b2a); }
.tpa-4 { background: linear-gradient(135deg,#d4a870,#c4855f); }
.tpa-5 { background: linear-gradient(135deg,#e8c99a,#8c4a5a); }
.tpa-6 { background: linear-gradient(135deg,#541522,#8c4a5a); }
.testi-pin-name { font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 600; color: var(--text); }
.testi-pin-from { font-family: 'DM Sans', sans-serif; font-size: .7rem; color: var(--muted2); letter-spacing: .04em; }

/* ── TRUST / CERTIFICATIONS (about) ── */
.trust-sec { background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 3rem; }
.trust-card { border: 1px solid var(--border); border-radius: 8px; padding: 2rem 1.5rem; text-align: center; background: var(--cream); transition: all .3s; }
.trust-card:hover { border-color: rgba(232,118,26,.4); box-shadow: 0 8px 32px rgba(232,118,26,.08); transform: translateY(-3px); }
.trust-icon { font-size: 2.4rem; margin-bottom: 1.1rem; display: block; }
.trust-name { font-family: 'Playfair Display', serif; font-size: .98rem; font-weight: 600; color: var(--maroon); margin-bottom: .4rem; }
.trust-desc { font-family: 'DM Sans', sans-serif; font-size: .76rem; color: var(--muted); line-height: 1.65; }

/* ── ABOUT CTA SECTION ── */
.about-cta-sec { background: var(--maroon); position: relative; overflow: hidden; text-align: center; }
.about-cta-sec::before { content: 'ॐ'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); font-family: 'Tiro Devanagari Sanskrit', serif; font-size: 28rem; color: rgba(255,255,255,.028); pointer-events: none; line-height: 1; }
.about-cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.about-cta-inner .sec-tag { margin-bottom: 1rem; }
.about-cta-h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem,4vw,3.2rem); font-weight: 700; color: var(--cream); line-height: 1.2; margin-bottom: 1.25rem; letter-spacing: -.01em; }
.about-cta-h2 em { color: var(--saffron); font-style: italic; }
.about-cta-desc { font-family: 'Libre Baskerville', serif; font-size: .97rem; color: rgba(250,245,238,.55); line-height: 1.85; margin-bottom: 2.5rem; font-style: italic; }


/* ════════════════════════════════════════════
   ABOUT PAGE — BOOKING MODAL
════════════════════════════════════════════ */
.about-book-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(40,10,16,.65); backdrop-filter: blur(8px); align-items: center; justify-content: center; }
.about-book-overlay.open { display: flex; }
.about-book-sheet { background: var(--cream); width: 100%; max-width: 480px; border-radius: 16px; padding: 36px 32px 28px; position: relative; max-height: 90vh; overflow-y: auto; }
.about-book-close { position: absolute; top: 16px; right: 16px; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--border); background: transparent; cursor: pointer; font-size: .8rem; color: var(--muted); display: flex; align-items: center; justify-content: center; transition: all .2s; }
.about-book-close:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
.about-book-title { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--maroon); margin-bottom: 4px; }
.about-book-sub { font-size: .82rem; color: var(--muted); margin-bottom: 22px; }
.about-field { margin-bottom: 14px; }
.about-field label { display: block; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text); margin-bottom: 6px; font-family: 'DM Sans', sans-serif; }
.about-field input, .about-field select, .about-field textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border); border-radius: 8px; background: #fff; font-family: 'DM Sans', sans-serif; font-size: .86rem; color: var(--text); outline: none; transition: border-color .2s, box-shadow .2s; appearance: none; }
.about-field input:focus, .about-field select:focus, .about-field textarea:focus { border-color: var(--maroon); box-shadow: 0 0 0 3px rgba(107,27,42,.08); }
.about-field textarea { resize: vertical; min-height: 80px; }
.about-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-book-btn-row { margin-top: 20px; display: flex; gap: 10px; }
.about-book-submit { flex: 1; padding: 13px 20px; border-radius: 999px; background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); color: #fff; border: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; transition: all .2s; }
.about-book-submit:hover { box-shadow: 0 6px 20px rgba(62,15,24,.35); transform: translateY(-2px); }
.about-book-cancel { padding: 13px 18px; border-radius: 999px; border: 1px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 500; transition: all .2s; }
.about-book-cancel:hover { border-color: var(--maroon); color: var(--maroon); }
.about-success { display: none; flex-direction: column; align-items: center; text-align: center; padding: 20px 0 8px; }
.about-success-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--maroon), var(--maroon-deep)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 1.4rem; }
.about-success-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--maroon); margin-bottom: 8px; }
.about-success-sub { font-size: .83rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.about-err-msg { font-size: .68rem; color: var(--saffron); margin-top: 4px; display: none; }


/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media(max-width:1100px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .values-grid, .pillars-grid { grid-template-columns: 1fr 1fr; }
  .impact-inner { grid-template-columns: 1fr 1fr; }
  .impact-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .impact-stat:last-child { border-bottom: none; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .testi-masonry { grid-template-columns: 1fr 1fr; }
  .testi-pin:nth-child(3), .testi-pin:nth-child(6) { display: none; }
  .values-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  .story-mosaic { position: static; grid-template-rows: 200px 150px 180px; }
  .grid { columns: 2; }
}

@media(max-width:900px) {
  .topbar { display: none; }
  nav { padding: 0 1.25rem; min-height: 62px; }
  .nav-menu, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .about-page-nav { padding: 13px 1.5rem; }
  .about-nav-links { display: none; }
  .sec-inner, .sec-inner-sm { padding: 4rem 1.75rem; }
  .kashi-sec { padding: 4rem 1.75rem; }
  .impact-strip { padding: 2.5rem 1.75rem; }
  .newsletter-sec { padding: 3rem 1.75rem; }
  .footer-main { padding: 3rem 1.75rem 2.5rem; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { padding: 1.25rem 1.75rem; flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .about-grid, .kashi-inner, .contact-grid { grid-template-columns: 1fr; }
  .about-img-col { display: none; }
  .offerings-grid, .explore-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .guides-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 68px; }
  .hero-categories-wrapper::before, .hero-categories-wrapper::after { width: 40px; }
}

@media(max-width:768px) {
  .about-hero-content { padding: 3rem 1.75rem 4rem; }
  .about-hero-scroll { display: none; }
  .pillars-grid { grid-template-columns: 1fr; }
  .impact-inner { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .testi-masonry { grid-template-columns: 1fr; }
  .testi-pin:nth-child(2), .testi-pin:nth-child(3), .testi-pin:nth-child(5), .testi-pin:nth-child(6) { margin-top: 0; }
  .journey-grid { grid-template-columns: 1fr; gap: 0; }
  .journey-line { display: none; }
  .journey-event.right { text-align: left; }
  .journey-event-dot { display: none; }
  .mosaic-stat-card { display: none; }
}

@media(max-width:600px) {
  nav { min-height: 58px; }
  .nav-brand-name { font-size: 1rem; }
  .nav-brand-sub { display: none; }
  .nav-brand-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .hero-content { padding: 2.5rem 1.25rem; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-shloka { font-size: .9rem; }
  .hero-shloka-translation { font-size: .82rem; margin-bottom: 1.75rem; }
  .hero-desc { font-size: .92rem; margin-bottom: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: .65rem; padding: 0; }
  .btn-primary, .btn-outline-light { text-align: center; padding: .85rem 1.5rem; }
  .hcat-item { padding: 1.1rem 1.6rem; min-width: 130px; }
  .hcat-icon { width: 54px; height: 54px; font-size: 1.4rem; box-shadow: 0 0 14px rgba(232,118,26,.4), 0 0 28px rgba(232,118,26,.18); }
  .hcat-icon img { transform: scale(1.45); filter: brightness(1.3) saturate(1.25); }
  .hcat-label { font-size: .72rem; letter-spacing: .1em; color: rgba(250,245,238,.82); }
  .sec-inner, .sec-inner-sm { padding: 3rem 1.25rem; }
  .kashi-sec { padding: 3rem 1.25rem; }
  .sec-head-row { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .offerings-grid, .explore-grid, .testi-grid { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid rgba(232,118,26,.18); }
  .value-card:last-child { border-bottom: none; }
  .impact-strip { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2rem 1.25rem; }
  .impact-sep { display: none; }
  .impact-num { font-size: 2.2rem; }
  .about-checks { grid-template-columns: 1fr; }
  .about-btn-row { flex-direction: column; }
  .about-btn-row a { text-align: center; }
  .kashi-mosaic { grid-template-rows: 130px 130px; }
  .kashi-btns { flex-direction: column; }
  .kashi-btns a { text-align: center; }
  .newsletter-sec { padding: 2.5rem 1.25rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1.5px solid var(--border); border-bottom: none; border-radius: 3px 3px 0 0; }
  .newsletter-form button { width: 100%; border-radius: 0 0 3px 3px; }
  .booking-form { padding: 1.5rem 1.1rem; }
  .form-2col { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 2.5rem 1.25rem 2rem; gap: 2rem; }
  .footer-bottom { padding: 1rem 1.25rem; }
  .footer-legal { gap: .75rem; }
  .impact-inner { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .grid { columns: 2; column-gap: 10px; }
  .about-field-row { grid-template-columns: 1fr; }
  .about-book-sheet { padding: 28px 20px 24px; border-radius: 16px 16px 0 0; }
}

@media(max-width:480px) {
  .grid { columns: 2; }
}

@media(max-width:380px) {
  .hero-h1 { font-size: 2rem; }
  .nav-brand-name { font-size: .9rem; }
}

/* ════════════════════════════════════════════
   HERO — NAKSHATRA FREE REPORT CTA
════════════════════════════════════════════ */
.hero-nakshatra-cta {
  display: inline-block; margin-top: 1.25rem;
  font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 500;
  color: var(--saffron-light); text-decoration: none; letter-spacing: .06em;
  border-bottom: 1px dashed rgba(245,164,81,.45); padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.hero-nakshatra-cta:hover { color: #fff; border-color: #fff; }


/* ════════════════════════════════════════════
   PERSONAL QUOTE STRIP  (human connection)
════════════════════════════════════════════ */
.personal-quote-strip {
  background: var(--saffron-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 4.5rem;
}
.personal-quote-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: center; gap: 2.5rem;
}
.personal-quote-photo {
  width: 90px; height: 90px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; border: 3px solid var(--saffron);
  box-shadow: 0 0 0 5px var(--saffron-pale), 0 0 0 6px var(--saffron);
}
.personal-quote-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.personal-quote-initials {
  width: 90px; height: 90px; border-radius: 50%; flex-shrink: 0;
  background: var(--maroon); color: var(--saffron); font-size: 2rem;
  font-family: 'Playfair Display', serif; font-weight: 700;
  align-items: center; justify-content: center;
}
.personal-quote-text {
  font-family: 'Libre Baskerville', serif; font-size: 1rem;
  color: var(--maroon); line-height: 1.85; font-style: italic;
  margin-bottom: .6rem; border: none; padding: 0;
}
.personal-quote-cite {
  font-family: 'DM Sans', sans-serif; font-size: .75rem;
  color: var(--muted); letter-spacing: .05em; font-style: normal;
}


/* ════════════════════════════════════════════
   OFFERINGS SECTION — sub-note
════════════════════════════════════════════ */
.sec-sub-note {
  font-family: 'DM Sans', sans-serif; font-size: .84rem;
  color: var(--muted); margin-top: .5rem; max-width: 540px; line-height: 1.6;
}


/* ════════════════════════════════════════════
   MID-CONTENT CTA STRIP
════════════════════════════════════════════ */
.mid-cta-strip {
  background: linear-gradient(135deg, var(--maroon-deep) 0%, var(--maroon) 100%);
  padding: 3rem 4.5rem; position: relative; overflow: hidden; z-index: 1;
}
.mid-cta-strip::before {
  content: 'ॐ'; position: absolute; right: 3rem; top: 50%;
  transform: translateY(-50%); font-size: 9rem; color: rgba(255,255,255,.04);
  font-family: 'Playfair Display', serif; pointer-events: none; line-height: 1;
}
.mid-cta-inner {
  max-width: 1040px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.mid-cta-text { flex: 1; min-width: 260px; }
.mid-cta-eyebrow {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--saffron-light); margin-bottom: .5rem;
}
.mid-cta-text p {
  font-family: 'Libre Baskerville', serif; font-size: 1rem;
  color: rgba(250,245,238,.75); line-height: 1.7;
}
.mid-cta-text strong { color: var(--saffron-light); font-style: italic; }
.mid-cta-btns { display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.mid-cta-primary {
  padding: .85rem 1.6rem; background: var(--saffron); color: #fff;
  border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: .82rem;
  font-weight: 600; text-decoration: none; letter-spacing: .04em;
  transition: background .2s, transform .2s; white-space: nowrap;
}
.mid-cta-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); }
.mid-cta-whatsapp {
  padding: .85rem 1.4rem; background: #25D366; color: #fff;
  border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: .82rem;
  font-weight: 600; text-decoration: none; letter-spacing: .04em;
  transition: filter .2s, transform .2s; white-space: nowrap;
}
.mid-cta-whatsapp:hover { filter: brightness(1.1); transform: translateY(-2px); }
.mid-cta-nakshatra {
  padding: .85rem 1.4rem; border: 1px solid rgba(245,164,81,.4);
  color: var(--saffron-light); border-radius: 3px;
  font-family: 'DM Sans', sans-serif; font-size: .82rem; font-weight: 500;
  text-decoration: none; letter-spacing: .04em; transition: all .2s; white-space: nowrap;
}
.mid-cta-nakshatra:hover { border-color: var(--saffron-light); color: #fff; background: rgba(245,164,81,.12); }


/* ════════════════════════════════════════════
   FOOTER CTA BAND
════════════════════════════════════════════ */
.footer-cta-band {
  background: var(--saffron-pale); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 2.5rem 4.5rem;
}
.footer-cta-inner {
  max-width: 1040px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.footer-cta-text { flex: 1; min-width: 240px; }
.footer-cta-text span {
  display: block; font-family: 'DM Sans', sans-serif;
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--saffron); margin-bottom: .35rem;
}
.footer-cta-text strong {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  color: var(--maroon); display: block;
}
.footer-cta-btns { display: flex; gap: .65rem; flex-wrap: wrap; flex-shrink: 0; }
.footer-cta-primary {
  padding: .8rem 1.5rem; background: var(--maroon); color: var(--cream);
  border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: .8rem;
  font-weight: 600; text-decoration: none; letter-spacing: .04em;
  transition: background .2s; white-space: nowrap;
}
.footer-cta-primary:hover { background: var(--maroon-mid); }
.footer-cta-wa {
  padding: .8rem 1.4rem; background: #25D366; color: #fff;
  border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: .8rem;
  font-weight: 600; text-decoration: none; letter-spacing: .04em;
  transition: filter .2s; white-space: nowrap;
}
.footer-cta-wa:hover { filter: brightness(1.1); }
.footer-cta-call {
  padding: .8rem 1.4rem; border: 1.5px solid var(--border); color: var(--muted);
  border-radius: 3px; font-family: 'DM Sans', sans-serif; font-size: .8rem;
  font-weight: 500; text-decoration: none; letter-spacing: .04em;
  transition: all .2s; white-space: nowrap;
}
.footer-cta-call:hover { border-color: var(--maroon); color: var(--maroon); }


/* ════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
════════════════════════════════════════════ */
.float-wa {
  position: fixed; bottom: 90px; right: 20px; z-index: 89;
  display: flex; align-items: center; gap: .5rem;
  background: #25D366; color: #fff; border-radius: 999px;
  padding: .65rem 1.1rem .65rem .85rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  text-decoration: none; font-family: 'DM Sans', sans-serif;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s;
}
.float-wa:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.5); }
.float-wa-label { white-space: nowrap; }
@media(max-width:900px) {
  .float-wa { bottom: 82px; right: 14px; padding: .6rem; border-radius: 50%; width: 50px; height: 50px; justify-content: center; }
  .float-wa-label { display: none; }
}


/* ════════════════════════════════════════════
   RESPONSIVE — NEW ELEMENTS
════════════════════════════════════════════ */
@media(max-width:900px) {
  .personal-quote-strip { padding: 2rem 1.75rem; }
  .mid-cta-strip { padding: 2.5rem 1.75rem; }
  .footer-cta-band { padding: 2rem 1.75rem; }
  .mid-cta-inner, .footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-cta-inner { align-items: flex-start; }
}
@media(max-width:600px) {
  .personal-quote-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .personal-quote-photo { width: 72px; height: 72px; }
  .personal-quote-text { font-size: .9rem; }
  .personal-quote-strip { padding: 1.75rem 1.25rem; }
  .mid-cta-strip { padding: 2rem 1.25rem; }
  .mid-cta-btns { flex-direction: column; width: 100%; }
  .mid-cta-primary, .mid-cta-whatsapp, .mid-cta-nakshatra { text-align: center; }
  .footer-cta-band { padding: 1.75rem 1.25rem; }
  .footer-cta-btns { width: 100%; }
  .footer-cta-primary, .footer-cta-wa, .footer-cta-call { text-align: center; flex: 1; }
  .hero-nakshatra-cta { font-size: .78rem; }
}

/* ── MOBILE MENU SECTION LABELS ── */
.mob-nav-section {
  font-family: 'DM Sans', sans-serif; font-size: .6rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(232,118,26,.4); padding: .9rem 1.5rem .3rem;
  border-bottom: none !important;
}

/* ════════════════════════════════════════════
   HERO — PERSONAL / HUMAN REDESIGN
════════════════════════════════════════════ */
.hero-acharya-intro {
  display: flex; align-items: center; gap: .9rem;
  margin-bottom: 1.75rem; justify-content: center;
}
.hero-acharya-img {
  width: 58px; height: 58px; border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid var(--saffron);
  box-shadow: 0 0 0 4px rgba(232,118,26,.22);
  flex-shrink: 0; display: block;
  background: var(--maroon-mid);
}
.hero-acharya-tag {
  text-align: left;
  display: flex; flex-direction: column; gap: .15rem;
}
.hero-acharya-name {
  font-family: 'DM Sans', sans-serif; font-size: .9rem;
  font-weight: 600; color: var(--cream); display: block; letter-spacing: .02em;
}
.hero-acharya-title {
  font-size: .72rem; color: rgba(250,245,238,.5);
  letter-spacing: .08em; text-transform: uppercase; display: block;
}
.hero-reassurance {
  font-size: .78rem; color: rgba(250,245,238,.42);
  margin-top: 1rem; font-family: 'DM Sans', sans-serif;
  font-style: italic; letter-spacing: .02em;
}


/* ════════════════════════════════════════════
   ACHARYA STORY SECTION
════════════════════════════════════════════ */
.acharya-story-sec {
  background: var(--cream2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.acharya-story-inner {
  max-width: 1120px; margin: 0 auto; padding: 5rem 4.5rem;
  display: grid; grid-template-columns: 380px 1fr; gap: 5rem; align-items: start;
}
.acharya-story-photo-col { position: relative; }
.acharya-story-photo-wrap {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 6px 12px 40px rgba(62,15,24,.14);
  background: var(--sand2);
}
.acharya-story-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: top; display: block;
}
.acharya-story-photo-badge {
  position: absolute; bottom: 1.5rem; right: -1.25rem;
  background: var(--saffron); color: #fff;
  padding: 1rem 1.25rem; border-radius: 4px;
  text-align: center; min-width: 100px;
  box-shadow: 4px 6px 22px rgba(107,27,42,.22);
}
.acharya-story-badge-num {
  font-family: 'Playfair Display', serif; font-size: 2.8rem;
  font-weight: 700; font-style: italic; display: block; line-height: 1;
}
.acharya-story-badge-txt {
  font-size: .6rem; letter-spacing: .12em; text-transform: uppercase;
  opacity: .88; display: block; margin-top: .25rem;
}
.acharya-story-credentials {
  margin-top: 2rem; display: flex; flex-direction: column; gap: .85rem;
}
.acharya-cred-item {
  display: flex; align-items: flex-start; gap: .7rem;
  font-family: 'DM Sans', sans-serif; font-size: .82rem;
  color: var(--muted); line-height: 1.5;
}
.acharya-cred-icon { font-size: 1rem; flex-shrink: 0; margin-top: .05rem; }
.acharya-story-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700;
  color: var(--maroon); line-height: 1.2; margin-bottom: 1.75rem;
}
.acharya-story-h2 em { font-style: italic; color: var(--saffron-dark); }
.acharya-story-p {
  font-family: 'Libre Baskerville', serif; font-size: .97rem;
  color: var(--muted); line-height: 1.9; margin-bottom: 1.25rem;
}
.acharya-story-p em { color: var(--maroon); font-style: italic; }
.acharya-story-signature {
  margin: 1.75rem 0 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.acharya-story-sig-script {
  display: block; font-family: 'Tiro Devanagari Sanskrit', serif;
  font-size: 1.8rem; color: var(--maroon); line-height: 1.4; margin-bottom: .2rem;
}
.acharya-story-sig-roman {
  font-family: 'DM Sans', sans-serif; font-size: .78rem;
  color: var(--muted); letter-spacing: .06em;
}
.acharya-story-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* mid-cta acharya face */
.mid-cta-acharya-face {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  overflow: hidden; border: 2px solid rgba(245,164,81,.5);
}
.mid-cta-acharya-face img {
  width: 100%; height: 100%; object-fit: cover; object-position: top; display: block;
}

/* ════════════════════════════════════════════
   RESPONSIVE — STORY SECTION
════════════════════════════════════════════ */
@media(max-width:1000px) {
  .acharya-story-inner { grid-template-columns: 280px 1fr; gap: 3rem; padding: 4rem 2rem; }
}
@media(max-width:900px) {
  .acharya-story-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.75rem; }
  .acharya-story-photo-wrap { max-width: 320px; }
  .acharya-story-photo-badge { right: -.75rem; }
  .hero-acharya-intro { flex-direction: row; }
}
@media(max-width:600px) {
  .acharya-story-inner { padding: 2.5rem 1.25rem; }
  .acharya-story-photo-wrap { max-width: 100%; aspect-ratio: 3/2; }
  .acharya-story-photo { object-position: center top; }
  .mid-cta-acharya-face { display: none; }
  .mid-cta-inner { flex-direction: column; }
  .acharya-story-ctas { flex-direction: column; }
  .acharya-story-ctas a { text-align: center; }
}