/* ==========================================================================
   साईंकाका वेबसाइट — साझा स्टाइलशीट (Shared stylesheet, all pages)
   Design source: Claude Design project "Kaka Website Pages"
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Noto+Serif+Devanagari:wght@400;500;600&family=Tiro+Devanagari+Hindi:ital@0;1&display=swap');

:root {
  --cream: #f7f0e3;
  --cream-deep: #f0e6d2;
  --ink: #2a1808;
  --ink-soft: #54402c;
  --accent: #a06b30;
  --accent-soft: rgba(160, 107, 48, 0.4);
  --accent-faint: rgba(160, 107, 48, 0.16);
  --gold: #f5d488;
  --footer-bg: #241505;
  --footer-text: rgba(247, 240, 227, 0.88);
  --footer-text-dim: rgba(247, 240, 227, 0.65);

  --font-dev: "Tiro Devanagari Hindi", "Noto Serif Devanagari", serif;
  --font-body: "Noto Serif Devanagari", "Tiro Devanagari Hindi", serif;
  --font-lat: "Cormorant Garamond", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  font-family: var(--font-dev);
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }

/* ---------- shared motion ---------- */
@keyframes cueLine { 0%, 100% { transform: scaleY(0.3); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes deeperFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.sk-lift { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.sk-lift:hover { box-shadow: 0 14px 36px -12px rgba(120, 75, 30, 0.28); transform: translateY(-3px); }
.sk-press:active { transform: scale(0.985); }
.sk-deeper { animation: deeperFade 0.5s ease 0.35s both; }

@media (prefers-reduced-motion: reduce) {
  .sk-lift, .sk-press, .sk-deeper { animation: none !important; transition: none !important; }
}

/* ==========================================================================
   Image placeholder — swap for a real <img> once photography/video stills
   are available. Keep the class name so future pages match this look.
   ========================================================================== */
.img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: repeating-linear-gradient(
    135deg, rgba(160,107,48,0.08), rgba(160,107,48,0.08) 10px,
    rgba(160,107,48,0.03) 10px, rgba(160,107,48,0.03) 20px
  );
  border: 1px dashed var(--accent-soft);
  color: var(--ink-soft);
  font-family: var(--font-dev);
  font-size: 14px;
  line-height: 1.6;
  padding: 16px;
}

/* ==========================================================================
   Site nav — used standalone on every page except Home (Home's hero carries
   its own transparent overlay nav, see .hero-nav below)
   ========================================================================== */
.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 60px;
  background: var(--cream);
  border-bottom: 1px solid var(--accent-faint);
}
.site-nav__brand img { height: 52px; width: auto; opacity: 0.95; }
.site-nav__items {
  display: flex; gap: 26px;
  font-family: var(--font-dev); font-size: 16.5px; color: var(--ink-soft);
  list-style: none; margin: 0; padding: 0;
}
.site-nav__items a {
  color: var(--ink-soft); padding-bottom: 3px; border-bottom: 1px solid transparent;
}
.site-nav__items a.active,
.site-nav__items a:hover { color: var(--ink); border-bottom-color: var(--accent); }
.site-nav__lang { display: flex; align-items: center; gap: 10px; }
.site-nav__lang button {
  font-family: var(--font-lat); font-size: 12px; letter-spacing: 0.14em;
  background: none; border: none; cursor: pointer; padding: 0 0 2px;
  color: rgba(84,64,44,0.5);
}
.site-nav__lang button[data-lang="hi"] {
  font-family: var(--font-dev); font-size: 14px; letter-spacing: normal;
}
.site-nav__lang button.active { color: var(--ink); border-bottom: 1px solid var(--ink); }
.site-nav__lang .dot { color: var(--accent-soft); font-size: 11px; }
.site-nav__burger { display: none; flex-direction: column; gap: 4px; margin-left: 10px; background: none; border: none; cursor: pointer; padding: 8px; }
.site-nav__burger span { width: 20px; height: 1.5px; background: var(--ink); display: block; }
.site-nav__actions { display: flex; align-items: center; }

.site-nav__mobile-panel {
  display: none; flex-direction: column; flex-basis: 100%;
  background: var(--cream); border-top: 1px solid var(--accent-faint);
  padding: 6px 22px 14px;
}
.site-nav__mobile-panel a {
  font-family: var(--font-dev); font-size: 17px; color: var(--ink-soft);
  padding: 13px 0; border-bottom: 1px solid var(--accent-faint);
}
.site-nav__mobile-panel a:last-child { border-bottom: none; }
.site-nav__mobile-panel a.active { color: var(--ink); }
.site-nav__mobile-panel.open { display: flex; }

@media (max-width: 900px) {
  .site-nav { padding: 14px 22px; flex-wrap: wrap; }
  .site-nav__items { display: none; }
  .site-nav__burger { display: flex; }
}
@media (min-width: 901px) {
  .site-nav__mobile-panel { display: none !important; }
}

/* ==========================================================================
   Nav dropdown groups — shared between .site-nav__items (inner pages) and
   .hero-nav__items (Home's overlay nav). Desktop opens on hover, focus, or a
   click/tap (for touch + keyboard); mobile uses .nav-mobile-group instead,
   an accordion nested inside .site-nav__mobile-panel.
   ========================================================================== */
.nav-group { position: relative; }
.site-nav__items .nav-group__trigger,
.hero-nav__items .nav-group__trigger {
  background: none; border: none; cursor: pointer; padding: 0; margin: 0;
  font: inherit; color: inherit; display: inline-flex; align-items: center; gap: 5px;
}
.site-nav__items .nav-group__trigger {
  color: var(--ink-soft); padding-bottom: 3px; border-bottom: 1px solid transparent;
}
.site-nav__items .nav-group.active .nav-group__trigger,
.site-nav__items .nav-group:hover .nav-group__trigger,
.site-nav__items .nav-group__trigger:hover { color: var(--ink); border-bottom-color: var(--accent); }
.hero-nav__items .nav-group__trigger:hover { opacity: 0.8; }
.nav-group__caret { font-size: 10px; opacity: 0.75; transition: transform 0.25s ease; margin-top: 1px; }
.nav-group:hover .nav-group__caret,
.nav-group.open .nav-group__caret { transform: rotate(180deg); }

/* invisible bridge so the pointer can travel from trigger to dropdown */
.nav-group::after { content: ''; position: absolute; left: -20px; right: -20px; top: 100%; height: 16px; }

.nav-group__dropdown {
  position: absolute; top: 100%; left: 50%; margin-top: 16px;
  transform: translateX(-50%) translateY(4px); min-width: 200px;
  /* Every header-band photo sits directly under the nav, so a fully see-through
     dropdown reads fine over the plain cream page but loses contrast over a
     busy or dark header image (e.g. Shabdavali's dark right-fill photo).
     A soft frosted-glass fill keeps the light "not a card" look while staying
     legible over any image underneath. */
  background: rgba(255, 253, 247, 0.82);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  box-shadow: 0 10px 28px -10px rgba(42,24,8,0.22);
  padding: 8px; text-align: center;
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; pointer-events: none; z-index: 40;
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}
.nav-group:hover .nav-group__dropdown,
.nav-group:focus-within .nav-group__dropdown,
.nav-group.open .nav-group__dropdown {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav-group__dropdown a {
  font-family: var(--font-dev); font-size: 15.5px; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 5px; white-space: nowrap; border-bottom: none;
}
.nav-group__dropdown a:hover { color: var(--ink); }
.nav-group__dropdown a.active { color: var(--accent); }

/* ---------- mobile submenu accordion ---------- */
.nav-mobile-group { border-bottom: 1px solid var(--accent-faint); }
.nav-mobile-group:last-child { border-bottom: none; }
.nav-mobile-group__trigger {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: none; border: none; cursor: pointer; text-align: right;
  font-family: var(--font-dev); font-size: 17px; color: var(--ink-soft); padding: 13px 0;
}
.nav-mobile-group.active .nav-mobile-group__trigger { color: var(--ink); }
.nav-mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.nav-mobile-group.open .nav-mobile-submenu { max-height: 260px; }
.nav-mobile-group.open .nav-group__caret { transform: rotate(180deg); }
.nav-mobile-submenu a {
  display: block; font-family: var(--font-body); font-weight: 500; font-size: 15.5px;
  color: var(--ink-soft); padding: 11px 0 11px 16px;
}
.nav-mobile-submenu a.active { color: var(--accent); }

/* ==========================================================================
   Inner-page header band (image + kicker + title), breadcrumbs, essay body
   — shared by About, Shri Vidya and future essay-style pages
   ========================================================================== */
.header-band { position: relative; height: 320px; overflow: hidden; background: var(--cream-deep); }
.header-band__image { position: absolute; inset: 0; }
.header-band__photo {
  width: 100%; height: 100%; object-fit: cover; object-position: 46% 26%;
}
/* Feet on wet sand (Start Here) — subject sits upper-right of frame */
.header-band__photo--feet { object-position: 60% 22%; }
/* Seated on rock, mountains behind (Q&A) — wide photo cropped short; band is
   proportionally wider than the photo, so cover only trims top/bottom
   (no side cropping). Keep the face in the visible slice. */
.header-band__photo--mountain { object-position: center 18%; }
/* Diya + meru on white background (Daily Practice) — subjects sit in the
   lower half of the frame, with empty space above; crop low to keep them
   in view instead of showing blank background. */
.header-band__photo--diya { object-position: center 64%; }
/* Book stack (Shabdavali) — a smaller product-style photo, not a wide banner.
   Pin it to the right at its own aspect ratio (no cropping) and fill the
   rest of the band with a solid tone instead of stretching it edge to edge. */
/* Silver paduka pair on white background (Contact) — a squarish, close-up
   photo far narrower than the band, so cover crops in tight from top/bottom
   only (image already spans full band width, no side cropping needed).
   Subject sits roughly mid-frame; bias slightly toward the top so the domed
   caps stay whole, trimming a little off the plain base-plate edges below. */
.header-band__photo--paduka { object-position: center 55%; }
/* Seated on dark rocks, seaside at dusk (Videos) — wide photo with a tall sky;
   band is proportionally wider than the photo, so cover trims top/bottom only
   (no side cropping). Crop low enough to keep the face/torso whole, trimming
   mainly the lower legs/feet rather than the sky above. */
.header-band__photo--seaside { object-position: center 59%; }
.header-band__image--right-fill { background: var(--footer-bg); display: flex; justify-content: flex-end; }
.header-band__photo-wrap { position: relative; height: 100%; display: inline-block; }
.header-band__photo--pack { height: 100%; width: auto; display: block; object-fit: cover; }
.header-band__photo-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 28%;
  background: linear-gradient(90deg, var(--footer-bg) 0%, rgba(36,21,5,0) 100%);
  pointer-events: none;
}
/* Young Bhagwan Nityananda (Lineage) — small archival photo (288×393), shown
   at its own aspect ratio (no upscaling, no cropping) pinned to the right,
   against a cream fill instead of the dark footer-bg used on Shabdavali. */
.header-band__photo--fit { height: 100%; width: auto; display: block; object-fit: cover; }
.header-band__image--right-fill-cream { background: var(--cream-deep); display: flex; justify-content: flex-end; }
.header-band__photo-wrap--cream::before {
  background: linear-gradient(90deg, var(--cream-deep) 0%, rgba(240,230,210,0) 100%);
}
/* On a light fill there's no photo behind the text, so drop the dark scrim
   and switch the kicker/title to ink tones instead of the cream/gold used
   over photographic bands. */
.header-band--on-cream .header-band__kicker { color: var(--accent); text-shadow: none; }
.header-band--on-cream h1 { color: var(--ink); text-shadow: none; }
/* Band is much wider than the source photo's aspect ratio, so cover crops in
   tight from the sides. Fade both edges into the band's own background
   colour instead of a hard crop line, so it reads as an intentional wide
   banner rather than an awkward zoom. */
.header-band__edge-fade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg,
    var(--cream-deep) 0%, rgba(240,230,210,0) 16%,
    rgba(240,230,210,0) 84%, var(--cream-deep) 100%);
}
.header-band__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(42,24,8,0) 30%, rgba(42,24,8,0.5) 100%);
}
.header-band__content { position: absolute; left: 60px; right: 60px; bottom: 34px; }
.header-band__kicker {
  font-family: var(--font-dev); font-size: 15px; color: var(--gold);
  margin-bottom: 8px; text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.header-band h1 {
  font-family: var(--font-dev); font-size: 46px; font-weight: 400; margin: 0;
  color: #fff8ec; line-height: 1.4; text-shadow: 0 2px 14px rgba(0,0,0,0.45);
}
@media (max-width: 900px) {
  .header-band { height: 230px; }
  .header-band__content { left: 24px; right: 24px; bottom: 22px; }
  .header-band__kicker { font-size: 13px; }
  .header-band h1 { font-size: 30px; }
}

.crumbs {
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
  font-family: var(--font-dev); font-size: 15px; color: var(--ink-soft);
  margin: 40px auto 6px; padding: 0 60px;
}
.crumbs__sep { color: var(--accent-soft); }
.crumbs__current { color: var(--accent); }
@media (max-width: 900px) { .crumbs { padding: 0 24px; margin-top: 30px; } }

.essay { max-width: 760px; margin: 0 auto; padding: 34px 60px 8px; }
.essay__placeholder {
  border: 1px dashed var(--accent-soft); background: rgba(160,107,48,0.05);
  border-radius: 6px; padding: 24px 26px;
  font-family: var(--font-dev); font-size: 16px; line-height: 1.85; color: var(--ink-soft);
}
.essay p {
  font-family: var(--font-body); font-weight: 500; font-size: 19px; line-height: 1.95;
  color: var(--ink-soft); margin: 0 0 28px; text-wrap: pretty;
}
.essay blockquote {
  margin: 40px 0; padding: 4px 0 4px 24px; border-left: 2px solid var(--accent);
  font-family: var(--font-dev); font-size: 22px; line-height: 1.85; color: var(--ink);
}
.essay-portrait {
  margin: 44px auto; width: 320px; max-width: 100%;
}
.essay-portrait img {
  width: 100%; height: 400px; object-fit: cover; object-position: center 12%;
  border-radius: 8px;
}
.essay-portrait figcaption {
  text-align: center; margin-top: 10px;
  font-family: var(--font-dev); font-size: 14.5px; color: var(--ink-soft); opacity: 0.8;
}
@media (max-width: 900px) {
  .essay { padding: 24px 24px 4px; }
  .essay p { font-size: 17.5px; }
  .essay blockquote { font-size: 19px; padding-left: 18px; margin: 30px 0; }
  .essay-portrait img { height: 340px; }
}

/* ==========================================================================
   Hero (Home page only) — photo + wavy quote + Sri Yantra + overlay nav
   ========================================================================== */
.hero {
  position: relative; width: 100%; overflow: hidden; background: var(--cream);
  height: 820px;
}
.hero-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  padding: 32px 60px;
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255, 248, 236, 0.92);
}
.hero-nav__brand img { height: 46px; width: auto; opacity: 0.95; }
.hero-nav__items { display: flex; gap: 36px; align-items: center; font-family: var(--font-dev); font-size: 15px; letter-spacing: 0.04em; }
.hero-nav__items a { color: inherit; }
.hero-nav__items a:hover { opacity: 0.8; }
.hero-nav__actions { display: flex; align-items: center; gap: 16px; }
/* Home's overlay nav has no cream background behind it, so the shared
   burger icon (dark ink lines, made for the cream .site-nav) needs to be
   recoloured light to stay visible over the dark hero photo. */
.hero-nav__burger { display: none; }
.hero-nav__burger span { background: rgba(255, 248, 236, 0.92); }
@media (max-width: 900px) { .hero-nav__burger { display: flex; } }
/* Mobile menu panel — reuses .site-nav__mobile-panel's list styling, but
   the hero's own nav is position:absolute inside an overflow:hidden,
   fixed-height hero, so a panel opening in normal flow would get clipped.
   Instead, when the burger is tapped we switch the whole hero-nav to
   position:fixed (see .hero-nav.menu-open below) so the panel can grow
   downward over the photo, unclipped, like a proper mobile drawer. */
.hero-nav__mobile-panel { background: var(--footer-bg); border-top: 1px solid rgba(247,240,227,0.14); }
.hero-nav__mobile-panel a { color: var(--footer-text); border-bottom-color: rgba(247,240,227,0.14); }
.hero-nav__mobile-panel a.active { color: #fff8ec; }
.hero-nav__mobile-panel .nav-mobile-group { border-bottom-color: rgba(247,240,227,0.14); }
.hero-nav__mobile-panel .nav-mobile-group__trigger { color: var(--footer-text); }
.hero-nav__mobile-panel .nav-mobile-submenu a { color: var(--footer-text-dim); }
/* The shared .nav-group__dropdown is a light frosted card, made for sitting
   over the light inner-page header bands — over the hero's dark photo (with
   the Sri Yantra artwork behind it) that reads as a pale rectangle pasted on
   top. Recolour it dark/translucent here to match the hero's own overlay
   nav instead. */
.hero-nav__items .nav-group__dropdown {
  background: rgba(20, 13, 4, 0.55);
  box-shadow: 0 10px 28px -10px rgba(0,0,0,0.4);
}
.hero-nav__items .nav-group__dropdown a {
  color: rgba(255,248,236,0.85);
}
.hero-nav__items .nav-group__dropdown a:hover,
.hero-nav__items .nav-group__dropdown a.active { color: #fff8ec; opacity: 1; }
.hero-nav__lang { display: flex; align-items: center; gap: 10px; font-family: var(--font-lat); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; }
.hero-nav__lang button { background: none; border: none; cursor: pointer; padding: 0 0 2px; color: rgba(255,248,236,0.5); }
.hero-nav__lang button[data-lang="hi"] { font-family: var(--font-dev); font-size: 14px; letter-spacing: 0.02em; text-transform: none; }
.hero-nav__lang button.active { color: rgba(255,248,236,0.92); border-bottom: 1px solid currentColor; }
.hero-nav__lang .dot { color: rgba(255,248,236,0.5); }

.hero-photo { position: absolute; top: 0; left: 0; right: 0; bottom: 0; height: 100%; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-photo::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.38) 78%, rgba(0,0,0,0.45) 100%);
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 78% 55%, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0) 55%);
}
.hero-photo-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 6%;
  background: linear-gradient(180deg, rgba(247,240,227,0) 0%, rgba(247,240,227,1) 100%);
}
.hero-yantra {
  position: absolute; left: 78%; top: 50%; transform: translate(-50%, -50%);
  width: 480px; height: 480px; opacity: 0.55; pointer-events: none;
  mix-blend-mode: screen; filter: drop-shadow(0 0 6px rgba(255,230,180,0.25));
}
/* Single centred block on the photo: quote text, then signature right below
   it — kept as one flex column so the signature always sits just under the
   text regardless of how many lines the quote wraps to in another language.
   top:50% matches the hero image's own vertical center, so the whole block
   sits concentric with the Sri Yantra rather than low/bottom-aligned. */
.hero-content {
  position: absolute; left: 56%; right: 0; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 32px;
}
.hero-quote {
  text-align: center; color: #fff5e0; padding: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,0.65), 0 1px 3px rgba(0,0,0,0.5);
}
.hero-quote__inner { display: inline-flex; align-items: center; justify-content: center; gap: 28px; }
.hero-quote h1 {
  margin: 0; font-family: var(--font-dev); font-size: 34px; font-weight: 400;
  line-height: 1.5; letter-spacing: 0.005em; color: #fff5e0; text-align: center;
}
.hero-quote-mark { flex-shrink: 0; opacity: 0.85; }
/* subtle wavy stagger per line, ported from the design's sine-wave offsets */
.hero-quote h1 div:nth-child(1) { transform: translateX(0px); }
.hero-quote h1 div:nth-child(2) { transform: translateX(4px); }
.hero-quote h1 div:nth-child(3) { transform: translateX(8px); }
.hero-quote h1 div:nth-child(4) { transform: translateX(-13px); }
@media (max-width: 900px) {
  .hero-quote h1 div:nth-child(1) { transform: translateX(0px); }
  .hero-quote h1 div:nth-child(2) { transform: translateX(2px); }
  .hero-quote h1 div:nth-child(3) { transform: translateX(5px); }
  .hero-quote h1 div:nth-child(4) { transform: translateX(-7px); }
}
.hero-signature {
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
/* light rule + light signature mark — this sits on the photo/yantra now,
   not the cream band, so it needs to read against a dark background */
.hero-signature__rule { width: 40px; height: 1px; background: rgba(255,248,236,0.5); }
.hero-signature__text {
  font-family: var(--font-dev); color: #fff5e0; font-size: 18px;
  font-style: italic; letter-spacing: 0.04em;
}
/* signature mark (image) just below the hero quote, over the photo — home
   page only. feMorphology dilate thickens the linework slightly since this
   is a raster asset, not live text; if it needs to be noticeably bolder
   than this, that's a redraw in Claude Design rather than something CSS can
   safely push further. */
.hero-signature__mark {
  height: 58px; width: auto;
  filter: url(#thicken-signature) drop-shadow(0 2px 10px rgba(0,0,0,0.35));
}
@media (max-width: 900px) {
  .hero-signature__mark { height: 40px; }
}

/* Home-only: hero nav without a brand mark in the header (see hero-signature above) */
.hero-nav--no-brand .hero-nav__spacer { display: block; width: 110px; }
@media (max-width: 900px) {
  .hero-nav--no-brand .hero-nav__spacer { width: 0; }
}
@media (max-width: 900px) {
  .hero { height: 700px; }
  .hero-nav { padding: 20px 22px; flex-wrap: wrap; }
  .hero-nav__items { display: none; }
  /* Opened via the burger: lifts the nav out of the hero's clipped,
     fixed-height box and pins it to the viewport so the drawer below it
     can expand freely over the photo instead of being cut off. */
  .hero-nav.menu-open { position: fixed; top: 0; background: var(--footer-bg); }
  .hero-nav__brand img { height: 34px; }
  .hero-photo img { object-position: 30% 35%; }
  .hero-photo::before { background: linear-gradient(180deg, rgba(0,0,0,0) 28%, rgba(0,0,0,0.34) 52%, rgba(0,0,0,0.46) 78%, rgba(0,0,0,0.34) 92%); }
  .hero-photo::after { background: radial-gradient(ellipse at 50% 55%, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0) 65%); }
  .hero-yantra { left: 50%; top: 50%; width: 360px; height: 360px; opacity: 0.45; }
  .hero-content { left: 0; right: 0; top: 50%; transform: translateY(-50%); padding: 0 24px; gap: 22px; }
  .hero-quote__inner { gap: 14px; }
  .hero-quote-mark { width: 30px; height: 30px; }
  .hero-quote h1 { font-size: 24px; }
  .hero-signature__rule { width: 24px; }
  .hero-signature__text { font-size: 14px; }
}

/* ==========================================================================
   Page sections shared across Home + inner pages
   ========================================================================== */
.section { padding: 88px 60px; }
.section--tight { padding-top: 72px; padding-bottom: 8px; }
.section--center { text-align: center; }
.section--deep { background: var(--cream-deep); }
.wrap { max-width: 1080px; margin: 0 auto; }
.wrap--narrow { max-width: 760px; }
.wrap--reading { max-width: 720px; }

.kicker { font-family: var(--font-dev); font-size: 15px; color: var(--accent); margin-bottom: 12px; }
.section h2 {
  font-family: var(--font-dev); font-size: 38px; font-weight: 400; color: var(--ink);
  margin: 0 0 20px; line-height: 1.5;
}
.section p.lede {
  font-family: var(--font-body); font-weight: 500; font-size: 19px; line-height: 1.95;
  color: var(--ink-soft); margin: 0 0 24px;
}
.text-link {
  font-family: var(--font-dev); font-size: 17px; color: var(--accent);
  border-bottom: 1px solid var(--accent-soft); padding-bottom: 2px; cursor: pointer;
  display: inline-block;
}

@media (max-width: 900px) {
  .section { padding: 56px 24px; }
  .section--tight { padding-top: 48px; padding-bottom: 8px; }
  .section h2 { font-size: 28px; }
  .section p.lede { font-size: 17px; }
  .text-link { font-size: 16px; }
}

/* Welcome line under the hero */
.welcome { padding: 96px 60px 16px; text-align: center; }
.welcome .kicker { margin-bottom: 18px; }
.welcome p {
  font-family: var(--font-body); font-weight: 500; font-size: 21px; line-height: 1.95;
  color: var(--ink-soft); max-width: 720px; margin: 0 auto;
}
@media (max-width: 900px) {
  .welcome { padding: 56px 26px 8px; }
  .welcome p { font-size: 17.5px; }
}

/* Entry-path cards */
.entry-grid { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); max-width: 1080px; margin: 0 auto; }
@media (max-width: 900px) { .entry-grid { grid-template-columns: 1fr; gap: 18px; } }

.card {
  background: #fffdf7; border: 1px solid var(--accent-faint); border-radius: 6px;
  padding: 34px 32px; box-shadow: 0 1px 3px rgba(80,50,20,0.05); cursor: pointer;
  display: block;
}
@media (max-width: 900px) { .card { padding: 26px 24px; } }
.card h3 {
  font-family: var(--font-dev); font-size: 24px; color: var(--ink); margin: 0 0 12px; line-height: 1.5; font-weight: 400;
}
.card p {
  font-family: var(--font-body); font-weight: 500; font-size: 17px; color: var(--ink-soft); line-height: 1.9; margin: 0;
}
.card .arrow { margin-top: 18px; color: var(--accent); font-size: 16px; }
@media (max-width: 900px) {
  .card h3 { font-size: 21px; }
  .card p { font-size: 16px; }
}

/* About teaser (image + text, two columns) */
.teaser-grid {
  display: grid; gap: 56px; align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  max-width: 1080px; margin: 0 auto;
}
.teaser-grid__image { position: relative; height: 420px; border-radius: 8px; overflow: hidden; }
.teaser-grid__photo { width: 100%; height: 100%; object-fit: cover; object-position: 30% 35%; }
.teaser-grid__image::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(270deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 65%);
}
@media (max-width: 900px) {
  .teaser-grid { grid-template-columns: minmax(0,1fr); gap: 26px; }
  .teaser-grid__image { height: 300px; }
}

/* Video cards */
.video-grid { display: grid; gap: 28px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 900px) { .video-grid { grid-template-columns: minmax(0,1fr); gap: 22px; } }

.video-card { cursor: pointer; border-radius: 8px; }
.video-card__thumb { position: relative; height: 190px; border-radius: 8px; overflow: hidden; }
.video-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-card__thumb::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0) 55%);
}
@media (max-width: 900px) { .video-card__thumb { height: 200px; } }
.video-card__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 54px; height: 54px; border-radius: 50%; pointer-events: none;
  background: rgba(36,21,5,0.72); display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.video-card__play span { color: var(--gold); font-size: 18px; margin-left: 4px; }
.video-card__body { padding: 16px 6px 4px; }
.video-card__title { font-family: var(--font-dev); font-size: 19.5px; color: var(--ink); line-height: 1.6; }
.video-card__meta { font-family: var(--font-body); font-weight: 500; font-size: 14.5px; color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 900px) { .video-card__title { font-size: 18.5px; } }

.ai-mention { text-align: center; margin: 60px 0 40px; }
.ai-mention + .ai-mention { margin-top: 0; }
.ai-mention a {
  font-family: var(--font-dev); font-size: 16px; color: var(--ink-soft);
  border-bottom: 1px dashed var(--accent-soft); padding-bottom: 2px;
}
@media (max-width: 900px) { .ai-mention { margin: 44px 0 32px; } .ai-mention a { font-size: 15px; } }

/* ==========================================================================
   Footer — shared on every page
   ========================================================================== */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 56px 60px 36px; }
.site-footer__grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 48px;
}
@media (max-width: 900px) {
  .site-footer { padding: 40px 24px 28px; }
  .site-footer__grid { display: flex; flex-direction: column; gap: 28px; }
}
.site-footer__brand { font-family: var(--font-dev); font-size: 22px; margin-bottom: 12px; }
.site-footer__tagline { font-family: var(--font-body); font-weight: 500; font-size: 15.5px; line-height: 1.9; color: var(--footer-text-dim); max-width: 340px; }
.site-footer__col-title { font-family: var(--font-dev); font-size: 17px; color: var(--gold); margin-bottom: 12px; }
.site-footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.site-footer__col li { font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--footer-text-dim); line-height: 1.8; }
.site-footer__bottom {
  margin-top: 44px; padding-top: 18px; border-top: 1px solid rgba(247,240,227,0.14);
  font-family: var(--font-dev); font-size: 13px; color: rgba(247,240,227,0.45);
}
@media (max-width: 900px) { .site-footer__bottom { margin-top: 32px; } }

/* ==========================================================================
   Start Here — question accordion
   ========================================================================== */
.qa-lead {
  text-align: center; font-family: var(--font-body); font-weight: 500; font-size: 18px;
  color: var(--ink-soft); line-height: 1.95; max-width: 800px; margin: 0 auto 40px;
}
.accordion { display: flex; flex-direction: column; gap: 16px; max-width: 800px; margin: 0 auto; }
.accordion__item {
  background: transparent; border: 1px solid var(--accent-faint); border-radius: 6px;
  overflow: hidden; transition: background 0.4s ease, border-color 0.4s ease;
}
.accordion__item.open { background: #fffdf7; border-color: var(--accent-soft); }
.accordion__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 30px; cursor: pointer; min-height: 44px;
  background: none; border: none; width: 100%; text-align: right;
  font-family: var(--font-dev); font-size: 23px; color: var(--ink);
}
.accordion__head span:first-child { text-align: left; }
.accordion__icon {
  color: var(--accent); font-size: 20px; flex-shrink: 0; margin-left: 16px;
  transition: transform 0.35s ease;
}
.accordion__item.open .accordion__icon { transform: rotate(45deg); }
.accordion__body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion__item.open .accordion__body { max-height: 600px; }
.accordion__body p {
  margin: 0; padding: 0 30px 30px; font-family: var(--font-body); font-weight: 500;
  font-size: 18.5px; line-height: 2; color: var(--ink-soft);
}
@media (max-width: 900px) {
  .qa-lead { font-size: 16.5px; margin-bottom: 30px; }
  .accordion__head { padding: 20px 20px; font-size: 19px; }
  .accordion__body p { padding: 0 20px 24px; font-size: 17px; }
}

/* ==========================================================================
   Q&A library — search, tag filters, grouped accordion
   ========================================================================== */
.qa-search { position: relative; max-width: 480px; margin: 0 auto 22px; }
.qa-search input {
  width: 100%; box-sizing: border-box; font-family: var(--font-dev); font-size: 17.5px;
  color: var(--ink); background: #fffdf7; border: 1px solid var(--accent-soft);
  border-radius: 100px; padding: 16px 52px 16px 28px; outline: none; min-height: 44px;
}
.qa-search__icon {
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  color: var(--accent); font-size: 17px; pointer-events: none;
}
.qa-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 800px; margin: 0 auto; }
.qa-tag {
  font-family: var(--font-dev); font-size: 15.5px; cursor: pointer; flex-shrink: 0;
  padding: 9px 18px; border-radius: 100px; min-height: 30px;
  border: 1px solid var(--accent-faint); background: transparent; color: var(--ink-soft);
  transition: all 0.3s ease;
}
.qa-tag.active { border-color: var(--accent); background: rgba(160,107,48,0.08); color: var(--ink); }
.qa-count {
  font-family: var(--font-body); font-weight: 500; font-size: 14px; color: rgba(84,64,44,0.7);
  text-align: center; margin: 26px 0 10px;
}
.qa-group { max-width: 800px; margin: 46px auto 0; }
.qa-group.hidden { display: none; }
.qa-group__head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.qa-group__head span:first-child { font-family: var(--font-dev); font-size: 23px; color: var(--ink); }
.qa-group__rule { flex: 1; height: 1px; background: var(--accent-faint); }
.qa-group__count { font-family: var(--font-body); font-weight: 500; font-size: 13.5px; color: var(--accent); }
.qa-item.hidden { display: none; }
.qa-empty {
  display: none; text-align: center; padding: 48px 0;
  font-family: var(--font-body); font-weight: 500; font-size: 16.5px; color: var(--ink-soft); line-height: 1.9;
}
.qa-empty.show { display: block; }
.qa-empty a {
  color: var(--accent); border-bottom: 1px dashed var(--accent-soft); padding-bottom: 2px;
}
.qa-cta {
  max-width: 800px; margin: 64px auto 0; padding: 38px 40px; border: 1px solid var(--accent-faint);
  border-radius: 6px; text-align: center; background: var(--cream-deep);
}
.qa-cta__title { font-family: var(--font-dev); font-size: 23px; color: var(--ink); margin-bottom: 12px; line-height: 1.6; }
.qa-cta p {
  font-family: var(--font-body); font-weight: 500; font-size: 17px; line-height: 1.9; color: var(--ink-soft);
  margin: 0 0 20px; max-width: 460px; margin-left: auto; margin-right: auto;
}
.qa-cta__btn {
  display: inline-block; font-family: var(--font-dev); font-size: 16.5px; color: var(--cream);
  background: var(--ink); border-radius: 100px; padding: 14px 32px; min-height: 44px; cursor: pointer;
}
@media (max-width: 900px) {
  .qa-group { margin-top: 34px; }
  .qa-group__head span:first-child { font-size: 20px; }
  .qa-cta { padding: 28px 24px; margin-top: 44px; }
  .qa-cta__title { font-size: 20px; }
}

/* ==========================================================================
   Contact page — message form + direct channels / locations
   ========================================================================== */
.contact-grid {
  display: grid; gap: 56px; max-width: 1060px; margin: 0 auto;
  padding: 56px 60px 100px; grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr);
  align-items: start;
}
.contact-heading { font-family: var(--font-dev); font-weight: 400; font-size: 30px; color: var(--ink); margin: 0 0 12px; line-height: 1.5; }
.contact-sub { font-family: var(--font-body); font-weight: 500; font-size: 17px; line-height: 1.9; color: var(--ink-soft); margin: 0 0 26px; text-wrap: pretty; }

.contact-field { display: block; margin-bottom: 18px; }
.contact-field span { display: block; font-family: var(--font-dev); font-size: 15.5px; color: var(--ink-soft); margin-bottom: 8px; }
.contact-field input, .contact-field textarea {
  width: 100%; box-sizing: border-box; font-family: var(--font-body); font-weight: 500; font-size: 16.5px;
  background: #fffdf7; border: 1px solid var(--accent-faint); border-radius: 6px; outline: none; color: var(--ink);
  padding: 15px 18px; min-height: 44px;
}
.contact-field textarea { line-height: 1.8; resize: vertical; }
.contact-field input:focus, .contact-field textarea:focus { border-color: var(--accent-soft); }

.contact-subjects { display: flex; gap: 8px; flex-wrap: wrap; }
.contact-subject {
  font-family: var(--font-dev); font-size: 15px; cursor: pointer; padding: 9px 16px;
  border-radius: 100px; min-height: 30px; border: 1px solid var(--accent-faint);
  background: #fffdf7; color: var(--ink-soft); transition: all 0.3s ease;
}
.contact-subject.active { border-color: var(--accent); background: rgba(160,107,48,0.08); color: var(--ink); }

.contact-submit {
  display: inline-flex; align-items: center; font-family: var(--font-dev); font-size: 17px;
  color: var(--cream); background: var(--ink); border: none; border-radius: 100px;
  padding: 15px 36px; cursor: pointer; min-height: 44px;
}
.contact-submit:active { transform: scale(0.985); }
.contact-form-note {
  font-family: var(--font-body); font-weight: 500; font-size: 14.5px; color: var(--accent);
  margin: 16px 0 0; line-height: 1.8;
}

.contact-side { display: flex; flex-direction: column; gap: 22px; }
.contact-channels, .contact-location {
  border: 1px solid var(--accent-faint); border-radius: 6px; padding: 28px 26px;
}
.contact-channels { background: #fffdf7; }
.contact-channels__label { font-family: var(--font-dev); font-size: 15px; color: var(--accent); margin-bottom: 16px; }
.contact-channel { margin-bottom: 16px; }
.contact-channel:last-child { margin-bottom: 0; }
.contact-channel__label { font-family: var(--font-body); font-weight: 500; font-size: 13.5px; color: rgba(84,64,44,0.65); margin-bottom: 4px; }
.contact-channel__value { font-family: var(--font-dev); font-size: 18px; color: var(--ink); }

.contact-location__head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.contact-location__country { font-family: var(--font-dev); font-size: 21px; color: var(--ink); }
.contact-location__city { font-family: var(--font-body); font-weight: 500; font-size: 14px; color: var(--accent); }
.contact-location__addr { font-family: var(--font-body); font-weight: 500; font-size: 16px; line-height: 1.95; color: var(--ink-soft); white-space: pre-line; }
.contact-location__note {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--accent-faint);
  font-family: var(--font-body); font-weight: 500; font-size: 14.5px; color: rgba(84,64,44,0.7); line-height: 1.7;
}
.contact-freenote { font-family: var(--font-body); font-weight: 500; font-size: 15.5px; line-height: 1.9; color: rgba(84,64,44,0.72); padding: 0 4px; margin: 0; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 34px; padding: 34px 22px 64px; }
  .contact-heading { font-size: 25px; }
  .contact-sub { font-size: 16px; }
}

/* ==========================================================================
   Daily Practice — stotra/aarti cards with expandable full text
   ========================================================================== */
.practice-list { display: flex; flex-direction: column; gap: 18px; max-width: 800px; margin: 0 auto; }
.practice-card {
  border: 1px solid var(--accent-faint); border-radius: 6px; overflow: hidden;
  background: transparent; transition: border-color 0.3s ease, background 0.3s ease;
}
.practice-card.open { background: #fffdf7; border-color: var(--accent-soft); }
.practice-card__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; gap: 16px; }
.practice-card__title { font-family: var(--font-dev); font-size: 21px; color: var(--ink); line-height: 1.5; }
.practice-card__note { font-family: var(--font-body); font-weight: 500; font-size: 14.5px; color: var(--ink-soft); margin-top: 4px; }
.practice-card__toggle {
  flex-shrink: 0; font-family: var(--font-dev); font-size: 15px; color: var(--accent);
  border: 1px solid var(--accent-soft); border-radius: 100px; padding: 9px 18px;
  background: none; cursor: pointer; white-space: nowrap; min-height: 30px; transition: background 0.3s ease;
}
.practice-card__toggle:hover { background: rgba(160,107,48,0.08); }
.practice-card__text { display: none; }
.practice-card__text.open { display: block; }
.practice-card__scroll {
  max-height: 480px; overflow-y: auto; padding: 0 26px 26px;
  font-family: var(--font-dev); font-size: 17px; line-height: 2; color: var(--ink-soft);
  white-space: pre-line;
}
.practice-card--pending { opacity: 0.7; }
.practice-card__pending-tag {
  font-family: var(--font-dev); font-size: 13.5px; color: var(--accent);
  border: 1px dashed var(--accent-soft); border-radius: 100px; padding: 7px 16px; flex-shrink: 0;
}
@media (max-width: 900px) {
  .practice-card__head { padding: 18px 20px; }
  .practice-card__title { font-size: 19px; }
  .practice-card__scroll { padding: 0 20px 20px; font-size: 16px; max-height: 400px; }
}

/* ==========================================================================
   Shabdavali — glossary with scroll-linked focus
   ========================================================================== */
.shabda-alpha {
  display: none; gap: 6px; overflow-x: auto; padding: 14px 2px 6px;
  font-family: var(--font-dev); font-size: 14.5px; color: var(--accent);
  max-width: 480px; margin: 0 auto;
}
.shabda-alpha__chip {
  border: 1px solid var(--accent-faint); border-radius: 100px; background: transparent;
  padding: 7px 14px; flex-shrink: 0; min-height: 30px; cursor: pointer; font-family: var(--font-dev); color: var(--accent);
}
.shabda-alpha__chip.active { border-color: var(--accent); background: rgba(160,107,48,0.08); }
.shabda-list { max-width: 800px; margin: 36px auto 0; display: flex; flex-direction: column; }
.shabda-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 26px;
  padding: 22px 28px; border-bottom: 1px solid var(--accent-faint);
  border-left: 2px solid transparent; cursor: pointer; transition: all 0.4s ease;
}
.shabda-row.focus { background: #fffdf7; border-left-color: var(--accent); padding: 28px; }
.shabda-row__word {
  font-family: var(--font-dev); font-size: 20px; color: var(--ink-soft); transition: all 0.4s ease;
}
.shabda-row.focus .shabda-row__word { font-size: 23px; color: var(--ink); }
.shabda-row__def {
  font-family: var(--font-body); font-weight: 500; font-size: 17px; line-height: 1.9;
  color: rgba(84,64,44,0.75); transition: color 0.4s ease;
}
.shabda-row.focus .shabda-row__def { color: var(--ink-soft); }
.shabda-row.hidden { display: none; }
.shabda-empty {
  display: none; text-align: center; padding: 40px;
  font-family: var(--font-body); font-weight: 500; font-size: 16px; color: var(--ink-soft);
}
.shabda-empty.show { display: block; }
@media (max-width: 900px) {
  .shabda-alpha { display: flex; }
  .shabda-list { margin-top: 16px; }
  .shabda-row { grid-template-columns: 1fr; gap: 6px; padding: 20px 16px; }
  .shabda-row.focus { padding: 20px 16px; }
  .shabda-row__word { font-size: 18px; }
  .shabda-row.focus .shabda-row__word { font-size: 20px; }
  .shabda-row__def { font-size: 16px; }

}

/* ==========================================================================
   Events page — upcoming/past tabs, empty states, reuses .qa-cta for the
   WhatsApp-signup block
   ========================================================================== */
.events-head { text-align: center; margin-bottom: 12px; }
.events-lead { margin-bottom: 26px; }
.events-tabs { display: flex; gap: 8px; justify-content: center; }
.events-tab {
  font-family: var(--font-dev); font-size: 15.5px; cursor: pointer;
  padding: 9px 18px; border-radius: 100px; min-height: 30px;
  border: 1px solid var(--accent-faint); background: transparent; color: var(--ink-soft);
  transition: all 0.3s ease;
}
.events-tab.active { border-color: var(--accent); background: rgba(160,107,48,0.08); color: var(--ink); }
.events-panel { max-width: 800px; margin: 40px auto 0; }
.events-panel.hidden { display: none; }
.events-empty {
  text-align: center; padding: 40px 20px; margin: 0;
  font-family: var(--font-body); font-weight: 500; font-size: 16.5px; line-height: 1.9; color: var(--ink-soft);
}
.events-month { margin-bottom: 42px; }
.events-month__head { display: flex; align-items: center; gap: 16px; margin-bottom: 10px; }
.events-month__head span:first-child { font-family: var(--font-dev); font-size: 19px; color: var(--accent); }
.events-month__rule { flex: 1; height: 1px; background: var(--accent-faint); }
.events-row {
  display: grid; grid-template-columns: 86px 1fr; gap: 26px; align-items: center;
  padding: 24px 6px; border-bottom: 1px solid var(--accent-faint);
}
.events-row__date { text-align: center; }
.events-row__info { min-width: 0; }
.events-row__day { font-family: var(--font-dev); font-size: 32px; color: var(--ink); line-height: 1.1; }
.events-row__wd { font-family: var(--font-body); font-weight: 500; font-size: 12.5px; color: rgba(84,64,44,0.65); margin-top: 4px; }
.events-row__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 7px; }
.events-row__title { font-family: var(--font-dev); font-size: 21px; color: var(--ink); line-height: 1.55; }
.events-row__tag {
  font-family: var(--font-body); font-weight: 500; font-size: 12px; color: var(--accent);
  border: 1px solid var(--accent-faint); border-radius: 100px; padding: 3px 10px;
}
.events-row__meta { font-family: var(--font-body); font-weight: 500; font-size: 16px; color: var(--ink-soft); line-height: 1.8; }
.events-cta { margin-top: 44px; }
@media (max-width: 900px) {
  .events-row { grid-template-columns: 58px 1fr; gap: 16px; padding: 20px 4px; }
  .events-row__day { font-size: 27px; }
  .events-row__title { font-size: 18.5px; }
  .events-row__meta { font-size: 15px; }
  .events-empty { padding: 30px 16px; font-size: 16px; }
}

/* ==========================================================================
   Shared "coming soon" placeholder — used by Ask Kaka (future AI feature)
   and अनुभव/Voices (real testimonials pending). Ask Kaka is reached only via
   the home page's ai-mention link, not the main nav (same pattern as Start
   Here / Daily Practice); Voices IS in the main nav (अनुभव).
   ========================================================================== */
.coming-soon-wrap { max-width: 620px; margin: 0 auto; padding: 130px 60px 150px; text-align: center; }
.coming-soon-icon { position: relative; width: 116px; height: 116px; margin: 0 auto 38px; }
.coming-soon-icon__ring { position: absolute; border-radius: 50%; }
.coming-soon-icon__ring--outer { inset: 0; border: 1px solid var(--accent-soft); }
.coming-soon-icon__ring--inner { inset: 18px; border: 1px solid var(--accent-faint); }
.coming-soon-icon__dot {
  position: absolute; left: 50%; top: 50%; width: 7px; height: 7px;
  margin: -3.5px 0 0 -3.5px; border-radius: 50%; background: var(--accent);
}
.coming-soon-kicker { font-family: var(--font-dev); font-size: 15px; color: var(--accent); margin-bottom: 18px; }
.coming-soon-title { font-family: var(--font-dev); font-weight: 400; font-size: 48px; color: var(--ink); margin: 0 0 24px; line-height: 1.45; }
.coming-soon-lead {
  font-family: var(--font-body); font-weight: 500; font-size: 19.5px; line-height: 1.95; color: var(--ink-soft);
  max-width: 580px; margin: 0 auto 40px; text-wrap: pretty;
}
.coming-soon-box {
  max-width: 520px; margin: 0 auto; position: relative; opacity: 0.55;
}
.coming-soon-box__placeholder {
  width: 100%; box-sizing: border-box; background: #fffdf7; border: 1px dashed var(--accent-soft);
  border-radius: 10px; padding: 24px 26px; text-align: left;
  font-family: var(--font-body); font-weight: 500; font-size: 17px; color: rgba(84,64,44,0.6); line-height: 1.8;
}
.coming-soon-box__arrow {
  position: absolute; right: 16px; bottom: 16px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-faint); display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 15px;
}
.coming-soon-tag { font-family: var(--font-dev); font-size: 16px; color: var(--accent); margin-top: 26px; letter-spacing: 0.02em; }
.coming-soon-divider { width: 40px; height: 1px; background: var(--accent-faint); margin: 62px auto; }
.coming-soon-note { font-family: var(--font-body); font-weight: 500; font-size: 17px; line-height: 1.9; color: var(--ink-soft); max-width: 480px; margin: 0 auto 18px; }
.coming-soon-links { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 8px; }
.coming-soon-link {
  font-family: var(--font-dev); font-size: 16px; color: var(--accent);
  border: 1px solid var(--accent-soft); border-radius: 100px; padding: 11px 22px;
  display: inline-flex; align-items: center; min-height: 44px;
}
@media (max-width: 900px) {
  .coming-soon-wrap { padding: 76px 26px 84px; }
  .coming-soon-icon { width: 92px; height: 92px; }
  .coming-soon-icon__ring--inner { inset: 14px; }
  .coming-soon-kicker { font-size: 14px; }
  .coming-soon-title { font-size: 32px; }
  .coming-soon-lead { font-size: 17px; }
  .coming-soon-box__placeholder { font-size: 16px; }
  .coming-soon-tag { font-size: 15px; }
  .coming-soon-divider { margin: 46px auto; }
  .coming-soon-note { font-size: 16px; }
  .coming-soon-link { font-size: 15px; }
}

/* ==========================================================================
   Lineage — Siddha Yoga intro + guru chain (Bade Baba → Baba Muktanand),
   closing with a link forward to the About page (साईंकाका)
   ========================================================================== */
.lineage-wrap { max-width: 900px; margin: 0 auto; padding: 34px 60px 100px; }

.lineage-intro { max-width: 700px; margin: 0 auto 64px; text-align: center; }
.lineage-intro__kicker { font-family: var(--font-dev); font-size: 15px; color: var(--accent); margin-bottom: 14px; }
.lineage-intro p {
  font-family: var(--font-body); font-weight: 500; font-size: 18px; line-height: 1.95;
  color: var(--ink-soft); margin: 0; text-wrap: pretty;
}

.lineage-chain { position: relative; padding-left: 40px; }
.lineage-line { position: absolute; left: 9px; top: 10px; bottom: 10px; width: 1px; background: var(--accent-faint); }
.lineage-item {
  position: relative; display: grid; grid-template-columns: 200px 1fr; gap: 36px; margin-bottom: 70px;
}
.lineage-item:last-child { margin-bottom: 0; }
.lineage-item__dot {
  position: absolute; left: -31px; top: 6px; width: 11px; height: 11px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--cream);
}
.lineage-item__photo { width: 200px; margin: 0; }
.lineage-item__photo img { width: 100%; height: 260px; object-fit: cover; object-position: center 15%; border-radius: 8px; }
.lineage-item__tag {
  font-family: var(--font-body); font-weight: 500; font-size: 13px; color: var(--accent);
  border: 1px solid var(--accent-faint); border-radius: 100px; padding: 4px 12px;
  display: inline-block; margin-bottom: 14px;
}
.lineage-item__name { font-family: var(--font-dev); font-weight: 400; font-size: 28px; color: var(--ink); margin: 0 0 20px; line-height: 1.5; }
.lineage-item__alt { font-family: var(--font-body); font-weight: 500; font-size: 16px; color: var(--ink-soft); }
.lineage-item__body p {
  font-family: var(--font-body); font-weight: 500; font-size: 17px; line-height: 1.95;
  color: var(--ink-soft); margin: 0 0 20px; text-wrap: pretty;
}
.lineage-item__body p:last-child { margin-bottom: 0; }

.lineage-continue {
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  margin-top: 64px; padding: 34px; border: 1px solid var(--accent-faint); border-radius: 8px;
  background: var(--cream-deep);
}
.lineage-continue__label { font-family: var(--font-body); font-weight: 500; font-size: 14.5px; color: var(--ink-soft); }
.lineage-continue__name { font-family: var(--font-dev); font-size: 24px; color: var(--accent); }

@media (max-width: 900px) {
  .lineage-wrap { padding: 24px 24px 64px; }
  .lineage-intro { margin-bottom: 44px; }
  .lineage-intro p { font-size: 16.5px; }
  .lineage-chain { padding-left: 0; }
  .lineage-line, .lineage-item__dot { display: none; }
  .lineage-item { grid-template-columns: 1fr; gap: 18px; margin-bottom: 48px; justify-items: center; text-align: center; }
  .lineage-item__photo { width: 160px; }
  .lineage-item__photo img { height: 208px; }
  .lineage-item__name { font-size: 23px; }
  .lineage-item__body p { font-size: 16px; text-align: left; }
  .lineage-continue { padding: 26px 22px; margin-top: 44px; }
}

/* ==========================================================================
   Videos page — channel CTA, topic jump-strip, per-topic .video-grid
   (the .video-grid/.video-card component itself is defined above, shared
   with the home page's "चयनित वीडियो" teaser)
   ========================================================================== */
.videos-cta-top {
  text-align: center; max-width: 680px; margin: 0 auto 52px; padding: 30px 34px;
  border: 1px solid var(--accent-faint); border-radius: 8px; background: var(--cream-deep);
}
.videos-cta-top__title { font-family: var(--font-dev); font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.videos-cta-top p { font-family: var(--font-body); font-weight: 500; font-size: 15.5px; color: var(--ink-soft); margin: 0 0 18px; }
.videos-cta-top__btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-dev); font-size: 16px;
  color: var(--cream); background: var(--ink); border-radius: 100px; padding: 13px 28px; min-height: 44px;
}

.videos-jump { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 960px; margin: 0 auto 56px; }
.videos-jump__item {
  font-family: var(--font-dev); font-size: 15px; padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--accent-faint); color: var(--ink-soft); transition: all 0.3s ease;
}
.videos-jump__item:hover { border-color: var(--accent); color: var(--ink); background: rgba(160,107,48,0.08); }

.videos-topic { max-width: 1080px; margin: 0 auto 64px; scroll-margin-top: 24px; }
.videos-topic__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.videos-topic__head h2 { font-family: var(--font-dev); font-weight: 400; font-size: 26px; color: var(--ink); margin: 0; }
.videos-topic__count { font-family: var(--font-body); font-weight: 500; font-size: 14px; color: var(--accent); }

.videos-cta-bottom { margin-top: 20px; }

@media (max-width: 900px) {
  .videos-cta-top { padding: 24px 22px; margin-bottom: 40px; }
  .videos-topic { margin-bottom: 48px; }
  .videos-topic__head h2 { font-size: 22px; }
}
