/* ============================================================
   SHIV SHAKTI YOGASHALA — Shared Design System
   shared.css — Used by all 5 pages
   ============================================================ */

/* ── GOOGLE FONTS (non-blocking, loaded via each page's <link>) ── */

/* ── ROOT DESIGN TOKENS ── */
:root {
  --bg:          #f7f5f0;
  --bg-card:     #ffffff;
  --bg-warm:     #f0ebe1;
  --green:       #1c3d24;
  --green-light: #2e6040;
  --green-dark:  #111a13;
  --dark:        #111a13;
  --text:        #2a2a2a;
  --text-muted:  #6b6b6b;
  --cream:       #f7f5f0;
  --gold:        #c8a84b;
  --gold-dark:   #8f7330;
  --gold-light:  #ead9a0;
  --border:      #d8d0c0;
  --saffron:     #c27c1a;
  --saffron-dark:#8f5a0d;
  --saffron-soft:#fef3dc;
  --lotus:       #e8e0ce;
  --sunrise:     #fdf8ef;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', -apple-system, sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
  --font-deva:   'Tiro Devanagari Sanskrit', serif;

  --nav-h: 80px;
  --ease:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ── RESET & GPU PERFORMANCE OPTIMIZATIONS ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* GPU Hardware Acceleration for 60fps animations */
.nav, .hero-lotus, .shloka-track, .reveal, .btn, .wa-float-btn, .class-list li, .teacher-card, .offer-card, .filter-btn {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.hero-lotus svg, .shloka-track {
  will-change: transform;
}
.reveal {
  will-change: opacity, transform;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
section { scroll-margin-top: var(--nav-h); }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
::selection { background: var(--green); color: #fff; }

:focus-visible { outline: 3px solid var(--saffron); outline-offset: 4px; }
body.menu-open { overflow: hidden; }
/* ── UTILITIES ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 1.5rem; }
/* ── MOBILE RESPONSIVE — 860px ── */
@media(max-width: 860px) {
  .container { padding: 0 1rem; }
  .section { padding: 3.5rem 1rem; }
  body { padding-bottom: 72px; }

  /* Logo — smaller on mobile */
  .logo { gap: 8px; }
  .logo-badge { width: 42px; height: 42px; }
  .logo-title { font-size: 1.05rem; }
  .logo-shloka { font-size: 0.7rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* Buttons */
  .btn { padding: 14px 22px; font-size: 0.9rem; }
}

/* ── MOBILE RESPONSIVE — 560px ── */
@media(max-width: 560px) {
  .section { padding: 3rem 1rem; }

  /* Logo tighter on small screens */
  .logo { gap: 7px; max-width: calc(100vw - 60px); }
  .logo-badge { width: 38px; height: 38px; }
  .logo-title { font-size: 0.95rem; line-height: 1.05; }
  .logo-shloka { font-size: 0.65rem; }

  /* Nav inner - prevent overflow */
  .nav-inner { padding: 0 14px; }

  /* Hero text */
  .section-title { font-size: clamp(1.6rem, 6.5vw, 2.4rem); }
  .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.08em; }

  /* Buttons - full width stack on mobile */
  .btn { padding: 13px 18px; font-size: 0.88rem; }

  /* Filter buttons wrap nicely */
  .class-filter-bar { gap: 7px; padding: 0 4px; }
  .filter-btn { padding: 8px 14px; font-size: 0.65rem; letter-spacing: 0.06em; }

  /* Page banner height reduce */
  .page-banner { min-height: 28vh; padding: calc(var(--nav-h) + 28px) 16px 36px; }
  .page-banner-sub { font-size: 0.92rem; }

  /* Cards full width */
  .teacher-card, .course-card, .retreat-card { width: 100%; }

  /* Table horizontal scroll label */
  .table-wrapper { -webkit-overflow-scrolling: touch; overflow-x: auto; }
}

/* ── MOBILE RESPONSIVE — 400px (smallest phones) ── */
@media(max-width: 400px) {
  .section { padding: 48px 14px; }

  /* Logo minimal */
  .logo { gap: 6px; }
  .logo-badge { width: 34px; height: 34px; }
  .logo-title { font-size: 0.85rem; }

  /* Full width buttons */
  .btn { padding: 12px 16px; font-size: 0.85rem; width: 100%; text-align: center; box-sizing: border-box; }

  /* Filter buttons even more compact */
  .filter-btn { padding: 7px 10px; font-size: 0.6rem; letter-spacing: 0.04em; }

  /* Shloka ticker smaller */
  .shloka-item { font-size: 0.85rem; padding: 0 20px; gap: 14px; }

  /* Section title smallest */
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
}

/* ── SECTION TYPOGRAPHY ── */
.section-label {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--saffron); margin-bottom: 20px; font-weight: 500;
}
.section-label::before { content:''; width:36px; height:1.5px; background:var(--gold); }
.section-title {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1.1; letter-spacing: -0.015em; color: var(--green);
}
.section-title em { font-style: italic; color: var(--saffron); font-weight: 400; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity:0; transform:translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: var(--rd,0s); }
.reveal.visible { opacity:1; transform:none; }
.gold-line { width:64px; height:2px; background:var(--gold); margin-bottom:24px; transform:scaleX(0); transform-origin:left; transition:transform 0.6s var(--ease) 0.3s; }
.reveal.visible .gold-line { transform:scaleX(1); }

/* ── SCROLL PROGRESS BAR ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--saffron));
  z-index: 9999; transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── BUTTONS ── */
.btn {
  position: relative; z-index: 0; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.03em;
  padding: 18px 40px; border-radius: 999px; cursor: pointer;
  transition: color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}
.btn::before { content:''; position:absolute; inset:0; z-index:-1; transform:scaleX(0); transform-origin:left; transition:transform 0.35s ease; }
.btn:hover::before { transform:scaleX(1); }
.btn-saffron { background:linear-gradient(160deg,var(--gold),var(--saffron)); color:#fff; border:1px solid var(--gold); }
.btn-saffron::before { background:var(--gold-dark); }
.btn-saffron:hover { transform:translateY(-3px); box-shadow:0 16px 32px -10px rgba(200,168,75,0.5); }
.btn-green { background:linear-gradient(160deg,var(--green-light),var(--green)); color:#fff; border:1px solid var(--green); }
.btn-green::before { background:var(--green-dark); }
.btn-green:hover { transform:translateY(-3px); box-shadow:0 16px 32px -10px rgba(28,61,36,0.5); }
.btn-outline { background:transparent; color:var(--green); border:1.5px solid var(--green); }
.btn-outline::before { background:var(--green); }
.btn-outline:hover { color:#fff; transform:translateY(-3px); }
.btn-cream { background:rgba(255,255,255,0.9); color:var(--green); border:1.5px solid var(--gold-light); }
.btn-cream::before { background:var(--green); }
.btn-cream:hover { color:#fff; transform:translateY(-3px); box-shadow:0 12px 28px -10px rgba(28,61,36,0.3); }
.btn-gold { background:linear-gradient(160deg,var(--gold),var(--gold-dark)); color:#fff; border:1px solid var(--gold); }
.btn-gold:hover { transform:translateY(-3px); box-shadow:0 16px 32px -10px rgba(200,168,75,0.5); }

/* ── NAVBAR ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h); display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(247, 245, 240, 0.94);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,168,75,0.18);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: rgba(247, 245, 240, 0.99);
  box-shadow: 0 6px 28px -12px rgba(28, 61, 36, 0.14);
  border-bottom-color: rgba(200,168,75,0.3);
}
.nav-inner { width:100%; max-width:1240px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; }
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-badge { flex-shrink: 0; width: 52px; height: 52px; border-radius: 50%; object-fit: cover; display: block; border: 1px solid rgba(200,168,75,0.4); transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease; box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
.logo:hover .logo-badge { transform: rotate(6deg) scale(1.06); border-color: var(--gold); box-shadow: 0 6px 22px rgba(200,168,75,0.45); }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 600; color: var(--green); line-height: 1.1; }
.logo-title em { font-style: italic; font-weight: 400; color: var(--gold); margin-left: 3px; }
.logo-title .dot { color: var(--saffron); }
.logo-shloka { font-family: var(--font-deva); font-size: 0.78rem; color: var(--saffron); letter-spacing: 0.04em; margin-top: 2px; line-height: 1.1; font-weight: 500; text-align: right; }
.logo-tagline { display: none !important; }
.nav-links { display:none; }
.hamburger { display:flex; flex-direction:column; justify-content:center; gap:5px; width:40px; height:40px; padding:8px; background:none; border:none; cursor:pointer; }
.hamburger span { display:block; width:24px; height:1.8px; background:var(--dark); transition:transform 0.3s ease,opacity 0.3s ease; }
.hamburger.active span:nth-child(1) { transform:translateY(6.8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:translateY(-6.8px) rotate(-45deg); }
.mobile-menu { position:fixed; inset:0; z-index:150; background:var(--bg); display:flex; flex-direction:column; justify-content:center; padding:calc(var(--nav-h) + 24px) 32px 32px; transform:translateY(-100%); visibility:hidden; transition:transform 0.5s var(--ease),visibility 0s 0.5s; }
.mobile-menu.open { transform:translateY(0); visibility:visible; transition:transform 0.5s var(--ease),visibility 0s; }
.mobile-menu > a { display:flex; align-items:baseline; font-family:var(--font-serif); font-size:clamp(2rem,8vw,3rem); font-weight:500; line-height:1.25; color:var(--green); padding:4px 0; opacity:0; transform:translateY(24px); transition:color 0.3s ease,opacity 0.5s var(--ease),transform 0.5s var(--ease); }
.mobile-menu > a.active, .mobile-menu > a:hover { color:var(--saffron); font-style:italic; }
.mobile-menu.open > a { opacity:1; transform:none; }
.mobile-menu.open > a:nth-child(1) { transition-delay:0.12s; }
.mobile-menu.open > a:nth-child(2) { transition-delay:0.18s; }
.mobile-menu.open > a:nth-child(3) { transition-delay:0.24s; }
.mobile-menu.open > a:nth-child(4) { transition-delay:0.30s; }
.mobile-menu.open > a:nth-child(5) { transition-delay:0.36s; }

.class-filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 auto 36px; max-width: 900px;
}
.filter-btn {
  background: var(--bg-card); border: 1.5px solid var(--border);
  color: var(--text-muted); font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 20px;
  border-radius: 30px; cursor: pointer; transition: all 0.3s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--green); color: var(--gold); border-color: var(--green);
  box-shadow: 0 4px 14px rgba(28,61,36,0.2);
}
.class-list li { transition: opacity 0.3s ease, transform 0.3s ease; }
.class-list li.hidden { display: none !important; }

/* ── BESPOKE GALLERY GRID & LIGHTBOX ── */
.gallery-filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin: 1.5rem auto 0; max-width: 800px;
}
.gallery-filter-btn {
  background: var(--bg-warm); border: 1px solid var(--border);
  color: var(--text-muted); font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.06em; padding: 8px 16px; border-radius: 20px;
  cursor: pointer; transition: all 0.25s ease;
}
.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--green); color: var(--gold); border-color: var(--green);
  box-shadow: 0 4px 12px rgba(28,61,36,0.2);
}

.gallery-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 900px) {
  .gallery-grid-8 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid-8 { grid-template-columns: 1fr; }
}

.gallery-card {
  position: relative; border-radius: 1rem; overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06); cursor: pointer;
  background: #111; aspect-ratio: 3/4;
}
.gallery-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s ease;
  display: block;
}
.gallery-card:hover img {
  transform: scale(1.08); opacity: 0.9;
}
.gallery-card.hidden {
  display: none !important;
}

.gallery-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(17,26,19,0.88) 0%, rgba(17,26,19,0.2) 50%, transparent 100%);
  opacity: 0; padding: 1.25rem; display: flex; flex-direction: column; justify-content: flex-end;
  transition: opacity 0.35s ease; color: white;
}
.gallery-card:hover .gallery-card-overlay { opacity: 1; }
.gcard-tag {
  font-family: var(--font-mono); font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--gold); margin-bottom: 4px;
}
.gcard-title {
  font-family: var(--font-serif); font-size: 1.15rem; margin: 0 0 6px; color: white; line-height: 1.2;
}
.gcard-zoom-icon {
  font-size: 0.7rem; color: rgba(255,255,255,0.7); font-family: var(--font-mono);
}

/* ── LIGHTBOX MODAL LUXURY REDESIGN ── */
.lightbox-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(12, 20, 14, 0.94); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0s 0.3s;
  padding: 1.5rem;
}
.lightbox-modal.open {
  opacity: 1; visibility: visible; transition: opacity 0.3s var(--ease), visibility 0s;
}
.lightbox-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 1.8rem; cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center; z-index: 10000;
  transition: all 0.25s ease;
}
.lightbox-close:hover {
  background: var(--saffron); border-color: var(--saffron); color: white;
  transform: rotate(90deg) scale(1.08);
}
.lightbox-content {
  position: relative; max-width: 90vw; max-height: 90vh; text-align: center;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: scale(0.92); transition: transform 0.35s var(--ease);
}
.lightbox-modal.open .lightbox-content {
  transform: scale(1);
}
.lightbox-content img {
  max-width: 85vw; max-height: 72vh; border-radius: 1rem;
  border: 1.5px solid rgba(200,168,75,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6); object-fit: contain; display: block;
}
.lightbox-caption {
  margin-top: 1.2rem; background: rgba(28, 61, 36, 0.88); border: 1px solid rgba(200,168,75,0.35);
  padding: 0.6rem 1.6rem; border-radius: 30px; color: var(--gold);
  font-family: var(--font-serif); font-size: 1.2rem; letter-spacing: 0.03em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

@media(min-width:860px) {
  .hamburger, .mobile-menu { display:none; }
  .nav-links { display:flex; align-items:center; gap:28px; }
  .nav-links a:not(.nav-cta) { position:relative; font-size:0.94rem; font-weight:500; padding:4px 0; color: var(--text); transition: color 0.3s ease; }
  .nav-links a:not(.nav-cta):hover { color: var(--green); }
  .nav-links a:not(.nav-cta)::after { content:''; position:absolute; left:0; bottom:0; width:100%; height:2px; background:var(--saffron); transform:scaleX(0); transform-origin:right; transition:transform 0.3s ease; }
  .nav-links a:not(.nav-cta):hover::after { transform:scaleX(1); transform-origin:left; }
  .nav-cta { font-size:0.88rem; font-weight:500; padding:11px 26px; border-radius:999px; background:linear-gradient(160deg, var(--green-light), var(--green)); color:#fff; border:1px solid var(--green); transition:transform 0.3s ease, box-shadow 0.3s ease; }
  .nav-cta:hover { transform:translateY(-2px); box-shadow: 0 8px 22px -6px rgba(28,61,36,0.45); }
  /* Highlight current page nav link */
  .nav-links a.active { color: var(--green); }
  .nav-links a.active::after { transform: scaleX(1); background: var(--gold); }
}

/* ── INNER PAGE HERO BANNER ── */
.page-banner {
  min-height: 36vh;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 48px) 24px 56px;
  position: relative; overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(200,168,75,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 10% 80%, rgba(200,168,75,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.page-banner .section-label { color: var(--gold); }
.page-banner .section-label::before { background: var(--gold); }
.page-banner .section-title { color: #fff; }
.page-banner .section-title em { color: var(--gold); }
.page-banner > .container { position: relative; z-index: 1; }
.page-banner p, .page-banner-sub { color: rgba(250,248,244,0.78); font-size: 1.05rem; font-weight: 300; max-width: 620px; margin: 16px auto 0; line-height: 1.75; }

/* ── MOBILE BOTTOM NAV ── */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(28, 61, 36, 0.97); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(200, 168, 75, 0.3);
  padding: 10px 0 env(safe-area-inset-bottom, 10px);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
}
@media(max-width: 860px) { .mobile-bottom-nav { display: flex; } }
.mob-nav-items { display: flex; width: 100%; align-items: center; justify-content: space-around; }
.mob-nav-item { display: flex; flex-direction: column; align-items: center; gap: 3px; color: rgba(250,248,244,0.65); text-decoration: none; font-family: var(--font-mono); font-size: 0.52rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 10px; transition: color 0.2s ease; -webkit-tap-highlight-color: transparent; }
.mob-nav-item.active, .mob-nav-item:hover { color: var(--gold); }
.mob-nav-item svg { width: 20px; height: 20px; flex-shrink: 0; }
.mob-nav-item.mob-nav-wa { background: #25D366; color: #fff; border-radius: 14px; padding: 6px 14px; position: relative; top: -6px; box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
.mob-nav-item.mob-nav-wa svg { width: 22px; height: 22px; }

/* ── PULSING WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 88px; right: 20px; z-index: 998; display: flex; align-items: center; gap: 10px; }
@media(min-width: 861px) { .wa-float { bottom: 28px; } }
.wa-float-label { background: var(--green); color: #fff; font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 6px 12px; border-radius: 20px; opacity: 0; transform: translateX(8px); transition: opacity 0.3s ease, transform 0.3s ease; white-space: nowrap; pointer-events: none; box-shadow: 0 4px 12px rgba(0,0,0,0.2); }
.wa-float:hover .wa-float-label { opacity: 1; transform: translateX(0); }
.wa-float-btn { width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(37,211,102,0.5); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.wa-float-btn::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.4); animation: waPulse 2s ease-in-out infinite; }
.wa-float-btn:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }
@keyframes waPulse { 0%,100%{transform:scale(1);opacity:0.8} 50%{transform:scale(1.3);opacity:0} }

/* ── TICKER BAND ── */
.shloka-band { background: linear-gradient(135deg,#c4621c,#b85412,#a04408); color: #fff6e8; padding: 14px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 10; }
.shloka-band::before, .shloka-band::after { content:''; position:absolute; top:0; bottom:0; width:70px; z-index:2; pointer-events:none; }
.shloka-band::before { left:0; background:linear-gradient(to right,#b85412,transparent); }
.shloka-band::after  { right:0; background:linear-gradient(to left,#a04408,transparent); }
.shloka-track { display:inline-flex; animation: tickerScroll 42s linear infinite; }
.shloka-track:hover { animation-play-state:paused; }
.shloka-item { display:inline-flex; align-items:center; gap:24px; padding: 0 36px; font-family: var(--font-deva); font-size: 1.05rem; letter-spacing: 0.05em; }
.shloka-sep { color: var(--gold); font-size: 1.2rem; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── INSTAGRAM STRIP ── */
.instagram-strip { background: var(--bg); border-top: 1px solid var(--border); padding: 64px 24px; }
.ig-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.ig-handle { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.16em; color: var(--green); text-transform: uppercase; font-weight: 500; }
.ig-follow-btn { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 10px 22px; border-radius: 24px; transition: opacity 0.3s ease, transform 0.3s ease; }
.ig-follow-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media(min-width: 640px) { .ig-grid { grid-template-columns: repeat(6, 1fr); } }
.ig-tile { aspect-ratio: 1; border-radius: 12px; overflow: hidden; position: relative; background: var(--bg-warm); border: 1px solid var(--border); transition: transform 0.3s ease; }
.ig-tile:hover { transform: scale(1.04); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; }
.ig-tile-overlay { position: absolute; inset: 0; background: rgba(28,61,36,0.6); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.ig-tile:hover .ig-tile-overlay { opacity: 1; }
.ig-tile-overlay svg { color: #fff; width: 24px; height: 24px; }

/* ── PROFESSIONAL FOOTER ── */
.site-footer { background: var(--dark); color: rgba(250,248,244,0.75); padding: 80px 24px 0; border-top: 1px solid rgba(200,168,75,0.2); }
.footer-grid { max-width: 1240px; margin: 0 auto; display: grid; gap: 48px 40px; grid-template-columns: 1.6fr 1fr 1fr 1fr; padding-bottom: 64px; border-bottom: 1px solid rgba(250,248,244,0.08); }
@media(max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }
.footer-brand-name { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 500; color: #fff; line-height: 1.2; margin-bottom: 6px; }
.footer-brand-name em { color: var(--gold); font-style: italic; }
.footer-brand-tag { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: block; }
.footer-brand-desc { font-size: 0.9rem; font-weight: 300; line-height: 1.8; color: rgba(250,248,244,0.55); max-width: 280px; margin-bottom: 28px; }
.footer-socials { display: flex; gap: 14px; align-items: center; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(200,168,75,0.25); display: flex; align-items: center; justify-content: center; color: rgba(250,248,244,0.55); transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease; }
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); background: rgba(200,168,75,0.08); }
.footer-socials svg { width: 16px; height: 16px; }
.footer-col-title { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; display: flex; align-items: center; gap: 10px; }
.footer-col-title::before { content:''; width:20px; height:1.5px; background:var(--gold); display:block; flex-shrink:0; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.9rem; font-weight: 300; color: rgba(250,248,244,0.6); transition: color 0.25s ease, padding-left 0.25s ease; display: inline-block; }

/* ── Small helper classes used to remove inline styles ── */
.svg-full { width: 100%; height: 100%; display: block; }
.hero-frame--bg { background: linear-gradient(135deg, #1c3d24 0%, #2d5a3d 40%, #c8a84b 100%); }
.hero-img-fallback { opacity: 0.5; background: linear-gradient(135deg,#1c3d24,#c8a84b); }
.section-label--saffron { color: var(--saffron); }
.muted-note { color: #555; margin-top: 0.5rem; }
.footer-brand-name--spaced { margin-bottom: 8px; }
.logo-full-size { height: 44px; width: auto; }
/* Small utility helpers used by pages to remove inline styles */
.text-center { text-align: center; }
.mb-4rem { margin-bottom: 4rem; }
.mb-3rem { margin-bottom: 3rem; }
.mb-1rem { margin-bottom: 1rem; }
.break-word { word-break: break-all; }
.section--warm { background: var(--bg-warm); padding: 4rem 1rem; }
.section--compact { padding: 4rem 1rem; }
.questions-heading { font-family: var(--font-serif); font-size: 2rem; margin-bottom: 1rem; }
.questions-sub { margin-bottom: 2rem; color: rgba(255,255,255,0.8); }
.btn-row-center { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
.btn-email-white { color: white; border-color: white; }
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 18px; }
.footer-contact-item:last-child { margin-bottom: 0; }
.fci-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px; background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.2); display: flex; align-items: center; justify-content: center; color: var(--gold); }
.fci-icon svg { width: 14px; height: 14px; }
.fci-text { font-size: 0.84rem; font-weight: 300; color: rgba(250,248,244,0.6); line-height: 1.55; }
.fci-text a { color: rgba(250,248,244,0.6); transition: color 0.25s ease; }
.fci-text a:hover { color: var(--gold); }
.fci-label { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(200,168,75,0.6); display: block; margin-bottom: 2px; }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding: 22px 0 12px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; font-weight: 300; color: rgba(250,248,244,0.35); }
.footer-bottom p em { font-family: var(--font-serif); font-size: 0.95rem; color: rgba(200,168,75,0.55); }
.footer-credit { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(250,248,244,0.45) !important; }
.footer-credit strong { color: var(--gold); font-weight: 500; }
.footer-shloka { font-family: var(--font-deva); font-size: 0.9rem; color: rgba(200,168,75,0.4); letter-spacing: 0.04em; }
.footer-compliance { max-width: 1240px; margin: 0 auto; padding: 16px 0 24px; border-top: 1px solid rgba(250,248,244,0.06); font-size: 0.72rem; line-height: 1.6; color: rgba(250,248,244,0.4); font-weight: 300; }
.footer-compliance strong { color: rgba(200,168,75,0.7); font-weight: 500; }

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