/* ═══════════════════════════════════════
   JAGALI ARTSPACE — STYLE SYSTEM V13
   Core feature: Transparent nav on hero
   → Crisp white with shadow on scroll
═══════════════════════════════════════ */

:root {
  /* Dark palette */
  --dark-bg:    #100b07;
  --dark-bg2:   #1a120c;
  --dark-bg3:   #241810;
  --dark-text:  #f4ede3;
  --dark-muted: #b8a898;
  --dark-faint: #6a5a4e;

  /* Light palette */
  --light-bg:   #faf5ed;
  --light-bg2:  #f3ebe0;
  --light-text: #1e140e;
  --light-mid:  #6a5040;

  /* Brand */
  --gold:         #c49a52;
  --gold-bright:  #e4b96a;
  --gold-dim:     #7a5e2e;
  --gold-glow:    rgba(196,154,82,0.22);
  --maroon:       #8a2424;
  --maroon-light: #b03030;
  --maroon-dim:   #3d1010;

  /* Nav-specific */
  --nav-h: 96px;
  --nav-h-sm: 68px;
  --nav-text-on-hero: rgba(255,255,255,0.92);
  --nav-text-on-white: #1e140e;

  /* Fonts */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-ui:      'Josefin Sans', sans-serif;
  --f-script:  'Marck Script', cursive;
  --f-hand:    'Caveat', cursive;

  --ease:     cubic-bezier(0.23, 1, 0.32, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --pad:      6vw;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; -webkit-font-smoothing:antialiased; }
html { scroll-behavior:smooth; }
body { background:var(--dark-bg); color:var(--dark-text); font-family:var(--f-ui); overflow-x:hidden; }
::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--dark-bg); }
::-webkit-scrollbar-thumb { background:var(--gold-dim); border-radius:2px; }
a { text-decoration:none; }

/* ── CURSOR ── */
.cursor-dot, .cursor-ring { position:fixed; top:0; left:0; border-radius:50%; pointer-events:none; z-index:9999999; transform:translate(-50%,-50%); transition:opacity .3s; }
.cursor-dot { width:6px; height:6px; background:var(--gold); }
.cursor-ring { width:30px; height:30px; border:1px solid rgba(196,154,82,.45); transition:width .35s var(--ease), height .35s var(--ease), border-color .3s; }
body.cursor-hover .cursor-ring { width:50px; height:50px; border-color:var(--gold); }
@media (hover:none) { .cursor-dot, .cursor-ring { display:none; } }

/* ── SCROLL PROGRESS ── */
.scroll-progress { position:fixed; top:0; left:0; width:0; height:2px; background:linear-gradient(90deg, transparent, var(--gold), var(--gold-bright)); z-index:9999998; box-shadow:0 0 8px var(--gold); }

/* ── SIDE NAVIGATOR ── */
.side-nav { position:fixed; right:22px; top:50%; transform:translateY(-50%); z-index:90000; display:flex; flex-direction:column; align-items:center; gap:0; }
.sn-line { position:absolute; width:1px; height:100%; background:rgba(196,154,82,.12); left:50%; transform:translateX(-50%); z-index:-1; }
.sn-dots { display:flex; flex-direction:column; gap:16px; }
.sn-dot { width:7px; height:7px; border-radius:50%; background:transparent; border:1px solid rgba(196,154,82,.3); cursor:pointer; padding:0; position:relative; transition:all .4s var(--ease); }
.sn-dot::after { content:attr(data-label); position:absolute; right:16px; top:50%; transform:translateY(-50%); font-family:var(--f-ui); font-size:7px; letter-spacing:3px; color:var(--gold); white-space:nowrap; opacity:0; transition:opacity .3s; pointer-events:none; }
.sn-dot:hover::after { opacity:1; }
.sn-dot.active { background:var(--gold); border-color:var(--gold); box-shadow:0 0 10px var(--gold-glow); transform:scale(1.5); }
@media (max-width:900px) { .side-nav { display:none; } }

/* ── PRELOADER ── */
.preloader {
  position: fixed; inset: 0;
  background: #faf5ed;
  z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 1.4s var(--ease), visibility 1.4s;
  overflow: hidden;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Kolam background */
.pl-kolam-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  animation: plKolamSpin 40s linear infinite;
}
.pl-kolam-svg { width: min(90vw, 500px); height: min(90vw, 500px); }
@keyframes plKolamSpin { to { transform: rotate(360deg); } }

/* Corner rangoli */
.pl-corner { position: absolute; width: 90px; height: 90px; pointer-events: none; }
.pl-corner--tl { top: 0; left: 0; }
.pl-corner--tr { top: 0; right: 0; transform: scaleX(-1); }
.pl-corner--bl { bottom: 0; left: 0; transform: scaleY(-1); }
.pl-corner--br { bottom: 0; right: 0; transform: scale(-1); }

/* Diya */
.pl-diya {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  width: 36px;
  opacity: 0;
  animation: plFadeUp .8s var(--ease-out) 1s forwards;
  filter: drop-shadow(0 0 8px rgba(245,166,35,.5));
}
.pl-flame {
  transform-origin: 20px 42px;
  animation: flameDance 1.8s ease-in-out infinite;
}
.pl-flame-inner {
  transform-origin: 20px 40px;
  animation: flameDance 1.4s ease-in-out .2s infinite;
}
@keyframes flameDance {
  0%,100% { transform: scaleX(1) rotate(-2deg); }
  33% { transform: scaleX(0.85) rotate(3deg) scaleY(1.05); }
  66% { transform: scaleX(1.1) rotate(-1deg) scaleY(0.95); }
}

/* Inner content column */
.pl-inner {
  display: flex; flex-direction: column; align-items: center;
  position: relative; z-index: 2;
  padding: 0 20px;
}

/* OM glyph */
.pl-om {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  opacity: 0;
  margin-bottom: 20px;
  animation: plFadeUp .8s var(--ease-out) .1s forwards;
  letter-spacing: 2px;
  filter: drop-shadow(0 0 12px rgba(196,154,82,.4));
}

/* Video */
.pl-video-wrap {
  opacity: 0;
  animation: plFadeUp .9s var(--ease-out) .3s forwards;
}
.pl-fullvideo {
  display: block;
  max-width: min(480px, 86vw);
  max-height: min(480px, 50vh);
  width: auto; height: auto;
}

/* Lotus divider */
.pl-lotus-divider {
  width: min(200px, 80vw);
  margin: 20px auto 12px;
  opacity: 0;
  animation: plFadeUp .7s var(--ease-out) .55s forwards;
}
.pl-lotus-divider svg { width: 100%; display: block; }

/* Bottom */
.pl-bottom {
  text-align: center;
  opacity: 0;
  animation: plFadeUp .8s var(--ease-out) .65s forwards;
}
.pl-shloka {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 13px;
  color: #8a6a3e;
  display: block;
  margin-bottom: 6px;
  letter-spacing: 1px;
  font-style: italic;
}
.pl-bottom em {
  font-family: var(--f-script);
  font-size: 13px; color: #b8a898;
  display: block; margin-bottom: 18px; letter-spacing: 1px;
}
.pl-bar-wrap {
  width: 100px; height: 1px;
  background: rgba(196,154,82,.15);
  margin: 0 auto; overflow: hidden;
}
.pl-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  animation: fillBar 3.4s var(--ease-out) .5s forwards;
}

@keyframes fillBar { to { width: 100%; } }
@keyframes plFadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }

/* Mobile preloader */
@media (max-width: 480px) {
  .pl-om { font-size: 22px; margin-bottom: 12px; }
  .pl-fullvideo { max-width: 80vw; max-height: 40vh; }
  .pl-diya { width: 28px; bottom: 18px; }
  .pl-corner { width: 60px; height: 60px; }
}

/* ── IMAGE REVEAL ── */
.reveal-frame { position:fixed; width:270px; height:360px; pointer-events:none; z-index:99990; overflow:hidden; opacity:0; transform:scale(.92) translateY(12px); transition:opacity .4s var(--ease), transform .4s var(--ease); border:1px solid rgba(196,154,82,.14); }
.reveal-frame.active { opacity:1; transform:scale(1) translateY(0); }
.reveal-frame img { width:100%; height:100%; object-fit:cover; filter:sepia(.2) contrast(1.05); }
.reveal-shade { position:absolute; inset:0; background:linear-gradient(to top, rgba(10,6,3,.6), transparent); }

/* ── BACK TO TOP ── */
.back-to-top { position:fixed; bottom:32px; right:32px; z-index:10000; width:46px; height:46px; border-radius:50%; background:var(--dark-bg3); border:1px solid rgba(196,154,82,.28); color:var(--gold); cursor:pointer; display:flex; align-items:center; justify-content:center; opacity:0; transform:translateY(20px); transition:all .4s var(--ease); }
.back-to-top svg { width:18px; height:18px; }
.back-to-top.visible { opacity:1; transform:translateY(0); }
.back-to-top:hover { background:var(--gold); color:#000; }
@media (max-width:900px) { .back-to-top { bottom:18px; right:14px; width:40px; height:40px; } }

/* ═══════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════ */

.announcemtn {
  font-family: var(--f-display);
}

.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999997;
  height: 38px;
  background: var(--gold);
  color: #1a0e06;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.announce-bar.hidden { display: none; }
.announce-scroll {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: tickerMove 40s linear infinite;
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 300;
  padding-right: 60px;
}
.announce-bar:hover .announce-scroll { animation-play-state: paused; }
.ab-sep { opacity: .4; }
.ab-close { position:absolute; right:0; top:0; height:100%; width:50px; background:rgba(0,0,0,.08); border:none; color:#1a0e06; cursor:pointer; font-size:14px; transition:background .2s; flex-shrink:0; z-index:2; }
.ab-close:hover { background:rgba(0,0,0,.15); }
@keyframes tickerMove { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* ═══════════════════════════════════
   NAVIGATION — THE CENTREPIECE
   State 1: data-mode="transparent" = over hero
   State 2: data-mode="white"       = scrolled past hero
═══════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 38px; /* below announcement bar */
  left: 0; right: 0;
  height: var(--nav-h);
  z-index: 999996;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  transition: height .6s var(--ease), top .3s ease;
  pointer-events: none;
}
.site-nav.announce-gone { top: 0; }

/* background layer */
.nav-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: background .5s ease, backdrop-filter .5s ease, box-shadow .5s ease;
}

/* ── TRANSPARENT STATE (on hero) ── */
.site-nav[data-mode="transparent"] .nav-bg {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.site-nav[data-mode="transparent"] .nav-link span,
.site-nav[data-mode="transparent"] .nav-link em { color: var(--nav-text-on-hero); }
.site-nav[data-mode="transparent"] .nav-link b { background: rgba(255,255,255,.5); }
.site-nav[data-mode="transparent"] .brand-name { color: rgba(255, 196, 0, 0.9); }
.site-nav[data-mode="transparent"] .nav-time { color: rgba(255,255,255,.6); }
.site-nav[data-mode="transparent"] .nav-sep { background: rgba(255,255,255,.18); }
.site-nav[data-mode="transparent"] .audio-bars span { background: rgba(255,255,255,.7); }
.site-nav[data-mode="transparent"] .nav-cta { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.35); }
.site-nav[data-mode="transparent"] .nav-hamburger span { background: white; }
.site-nav[data-mode="transparent"] .brand-dark { display: none; }
.site-nav[data-mode="transparent"] .brand-light { display: block; }

/* ── WHITE STATE (scrolled) ── */
.site-nav[data-mode="white"] {
  height: var(--nav-h-sm);
}
.site-nav[data-mode="white"] .nav-bg {
  background: var(--light-bg);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 4px 24px rgba(0,0,0,.06);
}
.site-nav[data-mode="white"] .nav-link span,
.site-nav[data-mode="white"] .nav-link em { color: var(--nav-text-on-white); }
.site-nav[data-mode="white"] .nav-link b { background: var(--gold); }
.site-nav[data-mode="white"] .brand-name { color: Black; /* hidden by CSS below */}
.site-nav[data-mode="white"] .nav-time { color: var(--gold); }
.site-nav[data-mode="white"] .nav-sep { background: rgba(0,0,0,.12); }
.site-nav[data-mode="white"] .audio-bars span { background: var(--gold); }
.site-nav[data-mode="white"] .nav-cta { color: white; background: var(--gold); border-color: var(--gold); }
.site-nav[data-mode="white"] .nav-hamburger span { background: var(--dark-text); }
.site-nav[data-mode="white"] .brand-light { display: none; }
.site-nav[data-mode="white"] .brand-dark { display: block; filter:invert(1) sepia(.4) saturate(3) hue-rotate(360deg) brightness(.4); }

/* Brand */
.nav-brand { pointer-events:auto; display:flex; align-items:center; gap:10px; }
.brand-img { width:48px; height:auto; }
.brand-dark { display:none; }
.brand-light { display:block; }
.brand-name { font-family:var(--f-ui); font-size:12px; letter-spacing:6px; font-weight:200; transition:color .5s; }

/* Desktop nav links */
.nav-menu { pointer-events:auto; display:flex; list-style:none; gap:44px; }
.nav-menu li { opacity:0; }
.nav-link { display:block; position:relative; padding:8px 0;font-family: "Seaweed Script", cursive;}
.nav-link span { font-family:var(--f-ui); font-size:10px; letter-spacing:4px; font-weight:300; display:block; position:relative; z-index:1; transition:color .4s; font-family: "Seaweed Script", cursive; }
.nav-link em { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-style:normal; font-family:var(--f-ui); font-size:10px; letter-spacing:4px; font-weight:400; white-space:nowrap; clip-path:circle(0% at 50% 50%); transition:clip-path .5s var(--ease), color .4s; color:var(--gold); }
.nav-link:hover em { clip-path:circle(100% at 50% 50%); }
.nav-link b { position:absolute; bottom:2px; left:50%; width:0; height:1px; transform:translateX(-50%); transition:width .4s var(--ease); display:block; font-family: "Seaweed Script", cursive;}
.nav-link:hover b { width:100%; }

/* Right cluster */
.nav-right { pointer-events:auto; display:flex; align-items:center; gap:20px; }
.nav-time { font-family:var(--f-ui); font-size:9px; letter-spacing:1.5px; font-weight:200; transition:color .5s; }
.nav-sep { width:1px; height:18px; transition:background .5s; }
.audio-bars { display:flex; align-items:flex-end; gap:2px; height:18px; cursor:pointer; opacity:.5; transition:opacity .3s; }
.audio-bars:hover { opacity:1; }
.audio-bars span { width:2px; background:var(--gold); border-radius:1px; animation:audioPulse 1.4s infinite ease-in-out; }
.audio-bars span:nth-child(1){height:7px;animation-delay:0s}
.audio-bars span:nth-child(2){height:14px;animation-delay:.1s}
.audio-bars span:nth-child(3){height:9px;animation-delay:.2s}
.audio-bars span:nth-child(4){height:16px;animation-delay:.3s}
.audio-bars span:nth-child(5){height:7px;animation-delay:.15s}
@keyframes audioPulse { 0%,100%{transform:scaleY(1)} 50%{transform:scaleY(.3)} }
.nav-cta { font-family:var(--f-ui); font-size:9px; letter-spacing:3px; font-weight:300; padding:10px 24px; border:1px solid; transition:all .4s var(--ease); position:relative; overflow:hidden; }
.nav-cta::before { content:''; position:absolute; inset:0; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease); z-index:-1; }
.site-nav[data-mode="transparent"] .nav-cta:hover { background:var(--gold); border-color:var(--gold); color:#000; }
.site-nav[data-mode="white"] .nav-cta:hover::before { transform:scaleX(1); }

/* Hamburger */
.nav-hamburger { display:none; flex-direction:column; gap:6px; background:none; border:none; cursor:pointer; padding:6px; pointer-events:auto; }
.nav-hamburger span { width:26px; height:1px; display:block; transition:all .4s var(--ease); }
.nav-hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.nav-hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ── MOBILE FULLSCREEN OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999995;
  background: rgba(10,6,3,.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
  pointer-events: none;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.overlay-mandala { position:absolute; bottom:-80px; right:-80px; width:500px; height:500px; pointer-events:none; }
.overlay-mandala svg { width:100%; height:100%; }
.overlay-time { font-family:var(--f-ui); font-size:10px; letter-spacing:3px; color:var(--gold); opacity:.5; margin-bottom:44px; font-weight:200; }
.overlay-menu { list-style:none; text-align:center; }
.overlay-menu li { overflow:hidden; }
.om-link { display:flex; align-items:baseline; justify-content:center; gap:14px; padding:13px 0; color:rgba(244,237,227,.8); font-family:var(--f-ui); transition:color .3s; }
.om-link:hover { color:var(--gold); }
.om-num { font-size:8px; letter-spacing:2px; color:var(--gold); opacity:.5; }
.om-text { font-size:14px; letter-spacing:7px; font-weight:200; }
.overlay-socials { display:flex; gap:26px; margin-top:44px; }
.overlay-socials a { font-family:var(--f-ui); font-size:9px; letter-spacing:3px; color:var(--dark-faint); border-bottom:1px solid transparent; padding-bottom:2px; transition:all .3s; }
.overlay-socials a:hover { color:var(--gold); border-color:var(--gold); }
.overlay-close { position:absolute; top:28px; right:28px; background:none; border:none; color:var(--dark-muted); font-size:20px; cursor:pointer; }

/* ═══════════════════
   HERO
═══════════════════ */
.hero { position:relative; width:100%; height:100vh; min-height:700px; display:flex; align-items:center; justify-content:center; overflow:hidden; background:#080503; }
.hero-media { position:absolute; inset:0; z-index:1; }
.hero-media img { width:100%; height:100%; object-fit:cover; opacity:.8; animation:kenBurns 26s ease-in-out infinite alternate; }
@keyframes kenBurns { from{transform:scale(1)} to{transform:scale(1.1) translate(-1.5%,-1%)} }
.hero-grain { position:absolute; inset:0; z-index:2; opacity:.4; background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E"); pointer-events:none; }
.hero-vignette { position:absolute; inset:0; z-index:3; background:linear-gradient(to bottom, rgba(8,5,3,.75) 0%, transparent 25%, transparent 55%, rgba(8,5,3,.98) 100%), linear-gradient(to right, rgba(8,5,3,.35), transparent 45%); pointer-events:none; }

.hero-body { position:relative;top: 0px; right: 10px; z-index:5; text-align:center; padding:0 var(--pad); max-width:1050px; }
.hero-eyebrow { display:flex; align-items:center; justify-content:center; gap:18px; font-family:var(--f-ui); font-size:9px; letter-spacing:5px; color:var(--gold); font-weight:200; margin-bottom:26px; opacity:0; animation:fadeUp 1s var(--ease-out) 2s forwards; }
.ey-line { width:34px; height:1px; background:var(--gold); opacity:.5; }
.hero-title { font-family:var(--f-display); font-size:clamp(34px,5.2vw,74px); font-weight:300; line-height:1.1; color:var(--dark-text); margin-bottom:24px; opacity:0; animation:fadeUp 1.2s var(--ease-out) 2.2s forwards; }
.hero-typewriter{
  font-family:var(--f-hand);
  font-size:clamp(48px,7.2vw,104px);
  color:var(--gold);
  display:block;
  line-height:1.05;
  text-shadow:0 0 60px rgba(196,154,82,.28);
  min-height:1.1em;
  margin-left: -40px;
  white-space:nowrap;   /* keeps text in one line */
  max-width:none;       /* removes width limit */
}
.hero-sub { font-family:var(--f-ui); font-size:11px; letter-spacing:3px; color:rgba(244,237,227,.65); margin-bottom:48px; font-weight:200; opacity:0; animation:fadeUp 1s var(--ease-out) 2.4s forwards; }
.hero-btns { display:flex; align-items:center; justify-content:center; gap:26px; flex-wrap:wrap; opacity:0; animation:fadeUp 1s var(--ease-out) 2.6s forwards; }
.btn-hero-primary { display:inline-flex; align-items:center; gap:14px; color:var(--dark-text); font-family:var(--f-ui); font-size:10px; letter-spacing:3px; font-weight:300; transition:color .4s; }
.btn-hero-primary:hover { color:var(--gold); }
.btn-ring { width:42px; height:42px; border-radius:50%; border:1px solid rgba(196,154,82,.5); display:flex; align-items:center; justify-content:center; transition:all .5s var(--ease); flex-shrink:0; }
.btn-ring svg { width:18px; height:18px; transition:transform .5s var(--ease); }
.btn-hero-primary:hover .btn-ring { background:var(--gold); border-color:var(--gold); }
.btn-hero-primary:hover .btn-ring svg { stroke:#000; transform:rotate(360deg); }
.btn-hero-ghost { color:rgba(244,237,227,.7); font-family:var(--f-ui); font-size:10px; letter-spacing:3px; font-weight:200; border-bottom:1px solid rgba(196,154,82,.28); padding-bottom:3px; transition:all .3s; }
.btn-hero-ghost:hover { color:var(--gold); border-color:var(--gold); }

/* Scroll indicator */
.hero-scroll { position:absolute; bottom:52px; left:var(--pad); z-index:5; display:flex; flex-direction:column; align-items:center; gap:12px; opacity:0; animation:fadeIn 1s 3.2s forwards; transition:opacity .4s; }
.hero-scroll.hidden { opacity:0 !important; }
.scroll-mouse { width:24px; height:40px; border:1px solid rgba(196,154,82,.5); border-radius:12px; display:flex; justify-content:center; padding-top:7px; }
.scroll-ball { width:4px; height:8px; background:var(--gold); border-radius:2px; animation:scrollBounce 2.2s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100%{transform:translateY(0);opacity:1} 65%{transform:translateY(12px);opacity:0} 66%{transform:translateY(-2px);opacity:0} 80%{opacity:1} }
.scroll-label { display:flex; flex-direction:column; align-items:center; gap:6px; }
.scroll-label span { font-family:var(--f-ui); font-size:7px; letter-spacing:4px; color:var(--gold); opacity:.6; }
.scroll-chevrons { display:flex; flex-direction:column; align-items:center; gap:3px; }
.chev { width:8px; height:8px; border-right:1px solid rgba(196,154,82,.55); border-bottom:1px solid rgba(196,154,82,.55); transform:rotate(45deg); animation:chevFade 2s ease-in-out infinite; display:block; }
.chev:nth-child(2) { animation-delay:.2s; }
.chev:nth-child(3) { animation-delay:.4s; }
@keyframes chevFade { 0%,100%{opacity:.15} 50%{opacity:1} }

/* Edition badge */
.edition-badge { position:absolute; bottom:42px; right:var(--pad); z-index:5; width:88px; height:88px; display:flex; align-items:center; justify-content:center; opacity:0; animation:fadeIn 1s 3s forwards; }
.edition-badge svg { position:absolute; width:100%; height:100%; animation:spin 20s linear infinite; }
.badge-star { font-size:18px; color:var(--gold); z-index:2; }

/* Hero stats strip */
.hero-stats { position:absolute; bottom:0; left:0; right:0; z-index:5; display:flex; align-items:center; justify-content:center; gap:0; background:linear-gradient(to right, transparent, rgba(8,5,3,.75), transparent); padding:14px; opacity:0; animation:fadeIn 1s 3.4s forwards; }
.hst { display:flex; align-items:center; gap:8px; padding:0 28px; }
.hst-n { font-family:var(--f-display); font-size:22px; font-weight:600; color:var(--gold); line-height:1; }
.hst-l { font-family:var(--f-ui); font-size:8px; letter-spacing:3px; color:rgba(244,237,227,.55); font-weight:200; }
.hst-div { width:1px; height:22px; background:rgba(196,154,82,.18); }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

/* ─── TICKER ─── */
.music-icons-bg { position:absolute; inset:0; width:100%; height:100%; z-index:1; pointer-events:none; overflow:hidden; }
.music-icons-bg .mi { position:absolute; z-index:1; }
.music-icons-bg .mi img { display:block; animation:miFloat var(--mi-dur) ease-in-out var(--mi-delay) infinite; }
@keyframes miFloat { 0%,100% { transform:translateY(0) rotate(var(--mi-rot)); } 50% { transform:translateY(-30px) rotate(calc(var(--mi-rot) + 8deg)); } }

.ticker-bar { background:#07040200; background:var(--dark-bg); padding:16px 0; overflow:hidden; border-top:1px solid rgba(196,154,82,.08); border-bottom:1px solid rgba(196,154,82,.08); }
.ticker-track { display:inline-flex; align-items:center; white-space:nowrap; animation:tickerMove 42s linear infinite; }
.ticker-bar:hover .ticker-track { animation-play-state:paused; }
.ti { display:inline-flex; padding:0 32px; align-items:center; }

/* ─── LIGHT-BG BACKGROUND ICON PATTERN ─── */
.rangmanch-section {
  background-repeat: none ;
  background-size: 120px auto;
  background-blend-mode: multiply;
}

.rangmanch-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-repeat: none ;
  background-size: 720px auto;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

/* Ensure content inside sits above the icon overlay */
.about-inner,
.rm-inner {
  position: relative;
  z-index: 2;
}

/* ─── GURUS 2.0 ─── */
:root { --cw:#F9E8D6; --ws:#181919; --bu:#923929; --rs:#CD8745; }

.gurus2-section { position:relative; padding:120px var(--pad) 100px; background:var(--ws); overflow:hidden; }
.gurus2-warli-bg { position:absolute; inset:0; pointer-events:none; z-index:0; }
.gurus2-warli-bg svg { width:100%; height:100%; }
.gurus2-inner { position:relative; z-index:2; max-width:1280px; margin:0 auto; }
.gurus2-eyebrow { display:flex; align-items:center; gap:18px; margin-bottom:28px; }
.g2-rule { flex:1; height:1px; background:linear-gradient(90deg,transparent,rgba(205,135,69,.3)); display:block; }
.g2-rule:last-child { background:linear-gradient(90deg,rgba(205,135,69,.3),transparent); }
.gurus2-eyebrow .section-tag { color:var(--rs); border-color:rgba(205,135,69,.25); }
.gurus2-title { font-family:var(--f-display); font-size:clamp(42px,5.5vw,78px); font-weight:300; color:var(--cw); line-height:1.05; margin-bottom:14px; }
.gurus2-title em { color:var(--rs); font-style:italic; }
.gurus2-sub { font-family:var(--f-display); font-size:17px; color:rgba(249,232,214,.55); margin-bottom:72px; max-width:540px; line-height:1.7; }
.gurus2-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2px; }
.guru-card { position:relative; background:rgba(249,232,214,.04); border:1px solid rgba(249,232,214,.07); padding:40px 30px 30px; transition:all .45s var(--ease); overflow:hidden; cursor:pointer; }
.guru-card::before { content:''; position:absolute; inset:0; background:var(--bu); opacity:0; transition:opacity .45s var(--ease); z-index:0; }
.guru-card:hover::before { opacity:1; }
.guru-card:hover { border-color:var(--bu); transform:translateY(-6px); }
.guru-card > * { position:relative; z-index:1; }
.gc-featured { background:rgba(146,57,41,.12); border-color:rgba(146,57,41,.35); }
.gc-top { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:32px; }
.gc-index { font-family:var(--f-ui); font-size:9px; letter-spacing:3px; color:rgba(205,135,69,.35); font-weight:300; }
.gc-warli-icon { width:44px; height:58px; color:var(--rs); transition:color .3s, transform .4s var(--ease); }
.guru-card:hover .gc-warli-icon { color:var(--cw); transform:scale(1.12) rotate(-3deg); }
.gc-warli-icon svg { width:100%; height:100%; }
.gc-body { margin-bottom:28px; }
.gc-art-tag { font-family:var(--f-ui); font-size:7px; letter-spacing:4px; color:var(--rs); text-transform:uppercase; font-weight:300; display:block; margin-bottom:10px; transition:color .3s; }
.guru-card:hover .gc-art-tag { color:rgba(249,232,214,.7); }
.gc-body h3 { font-family:var(--f-display); font-size:clamp(18px,1.6vw,24px); font-weight:400; color:var(--cw); line-height:1.2; margin-bottom:7px; }
.gc-body p { font-family:var(--f-ui); font-size:8px; letter-spacing:2px; color:rgba(249,232,214,.4); font-weight:200; }
.guru-card:hover .gc-body p { color:rgba(249,232,214,.7); }
.gc-foot { display:flex; justify-content:space-between; align-items:center; padding-top:20px; border-top:1px solid rgba(249,232,214,.07); transition:border-color .3s; }
.guru-card:hover .gc-foot { border-color:rgba(249,232,214,.2); }
.gc-years { font-family:var(--f-ui); font-size:8px; letter-spacing:2px; color:rgba(249,232,214,.3); font-weight:200; }
.gc-link { font-family:var(--f-ui); font-size:8px; letter-spacing:2px; color:var(--rs); opacity:0; transition:opacity .3s; }
.guru-card:hover .gc-link { opacity:1; color:var(--cw); }
.gc-accent-line { position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--cw); transition:width .5s var(--ease); }
.guru-card:hover .gc-accent-line { width:100%; }

/* ─── UPCOMING RANGAMANCHA ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
  --citrine:    #E8D5A0;
  --citrine-lt: #F5EDD0;
  --citrine-dk: #C4A855;
  --umber:      #6B3A1F;
  --umber-lt:   #8B4F2A;
  --umber-dk:   #3E1E0A;
  --sienna:     #9e4218;
  --sienna-lt:  #C4763A;
  --sienna-dk:  #6B3318;
  --gold:       #C9952A;
  --gold-lt:    #E8C060;
  --gold-dk:    #8A6018;
  --ws:         #F2E8D4;
  --ease-silk:  cubic-bezier(0.45, 0.05, 0.10, 1.0);
  --ease-rise:  cubic-bezier(0.77, 0.00, 0.18, 1.0);
}
 
body { background: #F2E8D4; font-family: Georgia, serif; }
 
/* ══ THEATRE SHELL ══════════════════════════════════════════ */
#theatre {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
  background: var(--ws);
}
 
/* dark stage glow */
.t-atm {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% 110%, rgba(140,80,20,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 45% 28% at 18% 92%,  rgba(120,65,15,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 45% 28% at 82% 92%,  rgba(120,65,15,0.08) 0%, transparent 60%);
}
 
/* floor boards */
.t-floor {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(160,100,40,0.1) 100%);
  border-top: 1px solid rgba(180,110,40,0.15);
}
 
/* gold top bar */
.t-prosbar {
  position: absolute; top: 0; left: 0; right: 0;
  height: 10px; z-index: 70;
  background: linear-gradient(90deg,
    #8A6018 0%, #C9952A 18%, #E8C060 38%,
    #F8E890 50%, #E8C060 62%, #C9952A 82%, #8A6018 100%);
}
 
/* side pillars */
.t-pillar {
  position: absolute; top: 10px; bottom: 0;
  width: clamp(22px, 2.5vw, 36px); z-index: 60;
}
.t-pillar--l { left: 0; background: linear-gradient(90deg, #1A0505 0%, #3E0E0E 22%, #6A1A1A 46%, #8A2828 58%, #6A1A1A 72%, #3E0E0E 88%, #1A0505 100%); }
.t-pillar--r { right: 0; background: linear-gradient(90deg, #1A0505 0%, #3E0E0E 12%, #6A1A1A 28%, #8A2828 42%, #6A1A1A 54%, #3E0E0E 78%, #1A0505 100%); }
 
/* seam glow */
.t-seam {
  position: absolute; top: 10px; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 5px; z-index: 22; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(146,57,41,0) 0%, rgba(146,57,41,0.4) 22%,
    rgba(180,80,60,0.2) 50%, rgba(146,57,41,0.4) 78%,
    rgba(146,57,41,0) 100%);
  filter: blur(3px);
  transition: opacity 0.9s ease;
}
#theatre.open .t-seam { opacity: 0; }
 
/* ══ CANVAS CURTAIN ════════════════════════════════════════ */
#curtain-canvas {
  position: absolute;
  top: 10px; left: 0; right: 0; bottom: 0;
  width: 100%; height: calc(100% - 10px);
  z-index: 20;
  pointer-events: all;
  cursor: pointer;
  display: block;
}
#theatre.open #curtain-canvas { pointer-events: none; cursor: default; }

/* Pull UI */
.t-pull-ui {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 25;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22%;
  transition: opacity 0.6s ease;
}
#theatre.open .t-pull-ui { opacity: 0; }

.t-pull-ui--l,
.t-pull-ui--r {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.t-pull-rope { width: 2px; height: 54px; background: linear-gradient(180deg, rgba(190,150,55,0) 0%, rgba(190,150,55,0.65) 100%); }
.t-pull-knob {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #F0D070, #B8892E 55%, #7A5818);
  box-shadow: 0 2px 8px rgba(0,0,0,0.55);
  animation: knob-sway 3.2s ease-in-out infinite;
}
@keyframes knob-sway { 0%,100%{ transform:rotate(-5deg); } 50%{ transform:rotate(5deg); } }
.t-pull-label {
  font-family: 'Courier New', monospace;
  font-size: 8px; letter-spacing: 3px;
  color: rgba(200,160,60,0.7); text-transform: uppercase;
  white-space: nowrap; margin-top: 3px;
}
 
/* ══ VALANCE ═══════════════════════════════════════════════ */
.t-valance {
  position: absolute; top: 0;
  left: clamp(22px, 2.5vw, 36px);
  right: clamp(22px, 2.5vw, 36px);
  height: 120px; z-index: 45; pointer-events: none;
}
.t-valance-svg { position: absolute; top: 0; left: 0; width: 100%; height: 120px; display: block; }
.t-valance-badge {
  position: absolute; top: 50px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  font-family: 'Courier New', monospace;
  font-size: 7px; letter-spacing: 6px;
  color: var(--gold-lt); text-transform: uppercase; font-weight: 300;
  border: 1px solid rgba(200,160,60,0.45);
  padding: 5px 18px; background: rgba(70,30,8,0.88);
  white-space: nowrap;
}
.t-frill-screen {
  position: absolute; top: 108px; left: 0; right: 0;
  pointer-events: none; z-index: 46;
  display: flex; flex-direction: column; align-items: stretch;
}
/* Top flat band in maroon */
.t-frill-band {
  height: 18px;
  background: #923929;
  box-shadow: 0 1px 0 rgba(205,135,69,0.4), inset 0 -1px 0 rgba(0,0,0,0.15);
}
/* Scallop SVG row */
.t-frill-scallops {
  display: block; width: 100%; height: 28px;
  overflow: visible;
}
 
/* ══ STAGE CONTENT ═════════════════════════════════════════ */
.t-stage {
  position: absolute; inset: 0; z-index: 8;
  overflow-y: auto; overflow-x: hidden;
  padding: 138px 40px 60px;
 
  /* EVERYTHING CENTRED */
  display: flex;
  flex-direction: column;
  align-items: center;
 
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease 0.4s;
  scrollbar-width: thin;
  scrollbar-color: rgba(160,100,30,0.4) transparent;
}
#theatre.open .t-stage { opacity: 1; pointer-events: all; }
.t-stage::-webkit-scrollbar { width: 3px; }
.t-stage::-webkit-scrollbar-thumb { background: rgba(200,149,42,0.3); }
 
/* inner max-width column */
.t-inner {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
 
/* ── Section header ───────────────────────────────────── */
.t-header {
  text-align: center;
  margin-bottom: 32px;
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s var(--ease-rise) 0.6s;
  width: 100%;
}
#theatre.open .t-header { opacity: 1; transform: translateY(0); }
 
.t-eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 14px;
}
.t-rule { display: block; width: 48px; height: 1px; }
.t-rule--l { background: linear-gradient(90deg, transparent, rgba(140,70,20,0.45)); }
.t-rule--r { background: linear-gradient(90deg, rgba(140,70,20,0.45), transparent); }
.t-eyebrow-text {
  font-family: 'Courier New', monospace;
  font-size: 8px; letter-spacing: 5px;
  color: var(--sienna); text-transform: uppercase; font-weight: 300;
}
.t-title {
  font-size: clamp(36px, 5vw, 68px); font-weight: 300;
  color: var(--umber-dk); line-height: 1.05; margin-bottom: 10px;
}
.t-title em { color: var(--sienna); font-style: italic; }
.t-subtitle {
  font-size: 15px; color: rgba(80,40,12,0.65);
  line-height: 1.8; max-width: 420px; margin: 0 auto;
}
 
/* ── Ornamental divider ───────────────────────────────── */
.t-ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 24px 0; width: 100%;
  opacity: 0; transition: opacity 0.6s ease 0.9s;
}
#theatre.open .t-ornament { opacity: 1; }
.t-ornament-line { display: block; height: 1px; width: 80px; background: linear-gradient(90deg, transparent, rgba(140,70,20,0.4)); }
.t-ornament-line:last-child { background: linear-gradient(90deg, rgba(140,70,20,0.4), transparent); }
.t-ornament svg { width: 22px; height: 22px; }
 
/* ── Stats row ────────────────────────────────────────── */
.t-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; width: 100%; max-width: 700px;
  border: 1px solid rgba(160,100,30,0.3);
  background: rgba(200,160,90,0.12);
  padding: 22px 0; margin-bottom: 30px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.7s ease 0.85s, transform 0.7s var(--ease-rise) 0.85s;
}
#theatre.open .t-stats { opacity: 1; transform: translateY(0); }
.t-stat { display: flex; flex-direction: column; align-items: center; gap: 5px; flex: 1; }
.t-stat-n {
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 300;
  color: var(--sienna); line-height: 1;
}
.t-stat-l {
  font-family: 'Courier New', monospace;
  font-size: 7px; letter-spacing: 4px;
  color: rgba(100,55,15,0.55); text-transform: uppercase; font-weight: 300;
}
.t-sdiv { width: 1px; height: 46px; flex-shrink: 0; background: linear-gradient(180deg, transparent, rgba(200,149,42,0.3), transparent); }
 
/* ── Marquee ──────────────────────────────────────────── */
.t-marquee-wrap {
  overflow: hidden; width: 100%;
  border-top: 1px solid rgba(160,100,30,0.2);
  border-bottom: 1px solid rgba(160,100,30,0.2);
  padding: 10px 0; margin-bottom: 32px;
  opacity: 0; transition: opacity 0.6s ease 1.05s;
}
#theatre.open .t-marquee-wrap { opacity: 1; }
.t-marquee-wrap:hover .t-marquee-track { animation-play-state: paused; }
.t-marquee-track {
  display: flex; align-items: center; gap: 20px;
  width: max-content; white-space: nowrap;
  animation: t-mq 26s linear infinite;
}
@keyframes t-mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.t-marquee-track span {
  font-family: 'Courier New', monospace;
  font-size: 8px; letter-spacing: 3px;
  color: rgba(100,55,15,0.45); text-transform: uppercase; font-weight: 300;
}
.t-marquee-track b { color: var(--sienna-lt); font-size: 6px; font-weight: 400; letter-spacing: 0; }
 
/* ── Poster grid ──────────────────────────────────────── */
.t-posters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px; width: 100%; margin-bottom: 36px;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s ease 1.1s, transform 0.8s var(--ease-rise) 1.1s;
}
#theatre.open .t-posters { opacity: 1; transform: translateY(0); }
 
.t-poster {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4; background: #C8A878;
}
.t-poster--feat { grid-column: span 2; aspect-ratio: unset; }
 
/* image */
.t-poster-bg {
  position: absolute; inset: 0; z-index: 1;
  background: repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(245,237,208,0.025) 9px, rgba(245,237,208,0.025) 10px);
}
.t-poster-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; opacity: 0;
  transition: transform 0.7s var(--ease-rise), opacity 0.4s ease;
}
.t-poster-bg img[src]:not([src=""]) { opacity: 1; }
.t-poster:hover .t-poster-bg img { transform: scale(1.07); }
 
/* wash gradient */
.t-poster-wash {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,5,1,0.05) 0%, rgba(10,5,1,0.4) 52%, rgba(10,5,1,0.94) 100%);
}
 
/* date stamp */
.t-poster-date {
  position: absolute; top: 0; left: 0; z-index: 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 58px; padding: 12px 0 9px;
  background: var(--umber);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 50% 100%, 0 82%);
}
.t-pd-mon { font-family: 'Courier New', monospace; font-size: 7px; letter-spacing: 3px; color: rgba(245,237,208,0.72); font-weight: 300; }
.t-pd-day { font-size: 26px; font-weight: 300; color: var(--citrine-lt); line-height: 1; }
 
/* genre badge */
.t-poster-genre {
  position: absolute; top: 14px; right: 12px; z-index: 4;
  font-family: 'Courier New', monospace; font-size: 6px; letter-spacing: 4px;
  color: var(--citrine-lt); background: rgba(232,213,160,0.1);
  border: 1px solid rgba(232,213,160,0.22);
  padding: 4px 9px; text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.t-poster:hover .t-poster-genre { background: rgba(160,82,45,0.3); border-color: rgba(196,118,58,0.5); }
.t-poster-genre--gold { background: rgba(200,149,42,0.18); border-color: rgba(200,149,42,0.45); color: var(--gold-lt); }
 
/* always-visible foot — solid citrine-umber */
.t-poster-foot {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, transparent 0%, var(--sienna-dk) 22%, var(--umber) 100%);
  transform: translateY(0);
  transition: transform 0.45s var(--ease-rise);
}
.t-poster:hover .t-poster-foot { transform: translateY(-108px); }
.t-poster--feat:hover .t-poster-foot { transform: translateY(-122px); }
.t-poster-foot h3 {
  font-size: clamp(17px, 1.9vw, 24px); font-weight: 300;
  color: var(--citrine-lt); line-height: 1.15; margin-bottom: 5px;
}
.t-poster--feat .t-poster-foot h3 { font-size: clamp(22px, 2.8vw, 34px); }
.t-poster-foot h3 em { color: var(--gold-lt); font-style: italic; }
.t-poster-loc {
  font-family: 'Courier New', monospace;
  font-size: 7px; letter-spacing: 2px; color: rgba(232,213,160,0.52);
}
 
/* reveal panel — solid burnt umber */
.t-poster-reveal {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 18px 18px 20px;
  background: linear-gradient(180deg, transparent 0%, var(--umber) 10%, var(--umber-dk) 100%);
  transform: translateY(100%);
  transition: transform 0.48s var(--ease-rise);
}
.t-poster:hover .t-poster-reveal { transform: translateY(0); }
.t-poster-reveal p { font-size: 13px; color: rgba(232,213,160,0.65); line-height: 1.7; margin-bottom: 12px; }
.t-poster-avail {
  display: block; font-family: 'Courier New', monospace;
  font-size: 7px; letter-spacing: 3px; color: var(--sienna-lt);
  text-transform: uppercase; margin-bottom: 12px;
}
.t-avail-open { color: rgba(100,195,120,0.88); }
.t-avail-sold { color: rgba(200,149,42,0.7); }
.t-poster-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Courier New', monospace;
  font-size: 7px; letter-spacing: 3px;
  color: var(--citrine-lt); background: var(--umber);
  padding: 10px 16px; text-decoration: none; text-transform: uppercase;
  transition: background 0.3s ease; border: none; cursor: pointer;
}
.t-poster-btn svg { width: 16px; height: auto; transition: transform 0.3s ease; }
.t-poster-btn:hover { background: var(--sienna-dk); }
.t-poster-btn:hover svg { transform: translateX(4px); }
.t-poster-btn--ol {
  background: transparent;
  border: 1px solid rgba(232,213,160,0.28); color: var(--citrine-lt);
}
.t-poster-btn--ol:hover { background: rgba(232,213,160,0.08); border-color: rgba(232,213,160,0.5); }
 
/* inset glow on hover */
.t-poster::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(200,149,42,0);
  transition: box-shadow 0.4s ease; z-index: 6; pointer-events: none;
}
.t-poster:hover::after { box-shadow: inset 0 0 0 1px rgba(200,149,42,0.45); }
 
/* ── Extra event rows ────────────────────────────────── */
.t-events {
  width: 100%; margin-bottom: 36px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.7s ease 1.25s, transform 0.7s var(--ease-rise) 1.25s;
}
#theatre.open .t-events { opacity: 1; transform: translateY(0); }
 
.t-events-label {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 24px;
}
 
.t-erow {
  display: grid;
  grid-template-columns: 64px 1px 1fr auto;
  align-items: center; gap: 0 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(160,100,30,0.18);
  transition: background 0.3s ease;
}
.t-erow:first-of-type { border-top: 1px solid rgba(160,100,30,0.18); }
.t-erow:hover { background: rgba(200,160,90,0.1); }
 
.t-erow-date { display: flex; flex-direction: column; align-items: center; gap: 1px; flex-shrink: 0; }
.t-erow-mon { font-family: 'Courier New', monospace; font-size: 7px; letter-spacing: 3px; color: var(--sienna-lt); font-weight: 300; }
.t-erow-day { font-size: 38px; font-weight: 300; color: var(--citrine-lt); line-height: 1; }
 
.t-erow-sep {
  width: 1px; align-self: stretch; flex-shrink: 0;
  background: linear-gradient(180deg, transparent, rgba(200,149,42,0.32) 30%, rgba(200,149,42,0.32) 70%, transparent);
}
 
.t-erow-body { min-width: 0; }
.t-erow-tag {
  display: inline-block;
  font-family: 'Courier New', monospace; font-size: 6px; letter-spacing: 4px;
  color: var(--citrine-lt); background: var(--umber);
  padding: 3px 8px; margin-bottom: 9px; font-weight: 400; text-transform: uppercase;
}
.t-erow-tag--gold { background: var(--sienna-dk); color: var(--gold-lt); }
.t-erow-body h4 {
  font-size: clamp(16px, 1.9vw, 23px); font-weight: 300;
  color: var(--umber-dk); line-height: 1.2; margin-bottom: 6px;
}
.t-erow-body h4 em { color: var(--sienna); font-style: italic; }
.t-erow-body p { font-size: 13px; color: rgba(60,25,8,0.55); line-height: 1.7; max-width: 500px; }
 
.t-erow-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; flex-shrink: 0; padding-left: 16px; }
.t-erow-venue { font-family: 'Courier New', monospace; font-size: 7px; letter-spacing: 2px; color: rgba(80,40,12,0.45); white-space: nowrap; }
.t-erow-cta {
  font-family: 'Courier New', monospace; font-size: 7px; letter-spacing: 3px;
  color: var(--umber-dk); border: 1px solid rgba(107,58,31,0.35);
  padding: 9px 16px; text-decoration: none; white-space: nowrap; text-transform: uppercase;
  transition: all 0.3s ease;
}
.t-erow-cta:hover { background: var(--umber); border-color: var(--umber); color: var(--citrine-lt); }
.t-erow-cta--gold { color: var(--gold-lt); border-color: rgba(200,149,42,0.38); background: rgba(200,149,42,0.08); }
.t-erow-cta--gold:hover { background: var(--gold); border-color: var(--gold); color: #120800; }
 
/* ── Photo mosaic ────────────────────────────────────── */
.t-mosaic-label {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 20px; width: 100%;
  opacity: 0; transition: opacity 0.6s ease 1.4s;
}
#theatre.open .t-mosaic-label { opacity: 1; }
 
.t-mosaic-wrap {
  overflow-x: auto; overflow-y: visible;
  width: 100%; cursor: grab;
  scrollbar-width: thin; scrollbar-color: rgba(160,100,30,0.4) transparent;
  padding-bottom: 12px; margin-bottom: 40px;
  opacity: 0; transition: opacity 0.7s ease 1.5s;
}
#theatre.open .t-mosaic-wrap { opacity: 1; }
.t-mosaic-wrap:active { cursor: grabbing; }
.t-mosaic-wrap::-webkit-scrollbar { height: 3px; }
.t-mosaic-wrap::-webkit-scrollbar-thumb { background: rgba(200,149,42,0.3); border-radius: 2px; }
 
.t-mosaic {
  display: flex; align-items: flex-end; gap: 4px;
  width: max-content; padding: 8px 0 4px;
}
 
.t-tile {
  position: relative; overflow: hidden; flex-shrink: 0;
  width: 130px; height: 160px;
  background: rgba(160,100,40,0.12);
  border: 1px solid rgba(160,100,40,0.18);
  cursor: pointer;
  transition: width 0.45s var(--ease-rise), height 0.45s var(--ease-rise), border-color 0.3s ease;
}
.t-tile:hover { width: 255px; height: 295px; border-color: rgba(160,100,30,0.55); z-index: 10; }
.t-tile--tall { height: 200px; }
.t-tile--tall:hover { height: 355px; }
.t-tile--wide { width: 175px; }
.t-tile--wide:hover { width: 315px; }
 
.t-tile::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(-45deg, transparent, transparent 9px, rgba(100,55,15,0.04) 9px, rgba(100,55,15,0.04) 10px);
}
.t-tile img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0; transition: transform 0.5s ease, opacity 0.4s ease; }
.t-tile img[src]:not([src=""]) { opacity: 1; }
.t-tile:hover img { transform: scale(1.05); }
.t-tile::after {
  content: ''; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg, transparent 48%, rgba(8,4,1,0.85) 100%);
  opacity: 0; transition: opacity 0.35s ease;
}
.t-tile:hover::after { opacity: 1; }
.t-tile-lbl {
  position: absolute; bottom: 10px; left: 12px; right: 12px; z-index: 3;
  font-family: 'Courier New', monospace; font-size: 7px; letter-spacing: 2px;
  color: rgba(245,237,208,0.92); text-transform: uppercase;
  opacity: 0; transform: translateY(5px);
  transition: opacity 0.3s ease 0.12s, transform 0.3s ease 0.12s;
  pointer-events: none;
}
.t-tile:hover .t-tile-lbl { opacity: 1; transform: translateY(0); }
 
/* ── View all ────────────────────────────────────────── */
.t-view-all {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; width: 100%;
  margin-bottom: 24px;
  opacity: 0; transition: opacity 0.6s ease 1.6s;
}
#theatre.open .t-view-all { opacity: 1; }
.t-view-all a {
  font-family: 'Courier New', monospace; font-size: 8px; letter-spacing: 5px;
  color: rgba(80,40,12,0.45); text-decoration: none; text-transform: uppercase;
  transition: color 0.3s ease; display: flex; align-items: center; gap: 20px;
}
.t-view-all a:hover { color: var(--sienna); }
 
/* ══ VALANCE (override z so it stays above content) ════ */
.t-valance { z-index: 45; }

@media (max-width:1100px) { .gurus2-grid { grid-template-columns:repeat(2,1fr); } }
@media (max-width:768px) {
  .gurus2-grid { grid-template-columns:1fr; }
  .rangam-header { flex-direction:column; align-items:flex-start; }
  .rangam-season-badge { text-align:left; border-right:none; border-left:2px solid var(--bu); padding-right:0; padding-left:18px; }
  .rm2-show { flex-wrap:wrap; }
  .rm2-day { font-size:38px; }
  .rm2-divider-v, .rm2-warli-accent { display:none; }
  .rm2-cta-btn { margin-left:0; margin-top:16px; }
  .rm2-meta { flex-direction:column; gap:8px; }
}

/* ─── ABOUT ─── */
.about-section { position:relative; padding:140px var(--pad); background:var(--light-bg); overflow:hidden; }
.about-canvas { position:absolute; inset:0; width:100%; height:100%; z-index:1; pointer-events:none; }
.wari-bg { position:absolute; top:0; right:0; width:min(600px,80%); z-index:1; pointer-events:none; animation:spin 100s linear infinite, wariFadeIn 2s ease 0.5s forwards, wariFloat 8s ease-in-out infinite; opacity:0; }
.about-inner { position:relative; z-index:3; display:grid; grid-template-columns:1.2fr 1fr; gap:100px; align-items:center; max-width:1300px; margin:0 auto; }
.section-tag { display:inline-block; font-family:var(--f-ui); font-size:9px; letter-spacing:5px; font-weight:300; color:var(--maroon); text-transform:uppercase; margin-bottom:16px; }
.section-tag.light { color:var(--gold-bright); }
.about-h2 { font-family:var(--f-display); font-size:clamp(30px,3.8vw,52px); font-weight:300; color:var(--light-text); line-height:1.2; }
.about-script { font-family:var(--f-script); font-size:clamp(32px,3.6vw,52px); color:var(--maroon); display:block; margin:12px 0 24px; }
.about-body { font-family:var(--f-display); font-size:17px; color:var(--light-mid); line-height:1.8; max-width:500px; margin-bottom:36px; }
.about-actions { display:flex; gap:20px; flex-wrap:wrap; align-items:center; }
.btn-maroon { background:var(--maroon); color:white; font-family:var(--f-ui); font-size:9px; letter-spacing:3px; padding:13px 28px; font-weight:300; transition:background .3s; }
.btn-maroon:hover { background:var(--maroon-light); }
.btn-ghost-maroon { color:var(--maroon); font-family:var(--f-ui); font-size:9px; letter-spacing:3px; font-weight:300; border-bottom:1px solid rgba(138,36,36,.3); padding-bottom:3px; transition:all .3s; }
.btn-ghost-maroon:hover { border-color:var(--maroon); }
@keyframes wariFadeIn { to { opacity: 1; } }
@keyframes wariFloat { 0%, 100% { top:0; } 50% { top:calc(100% - 600px); } }




/* stat cards grid */
.about-right { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.stat-card { background:white; padding:28px 24px; border:1px solid rgba(196,154,82,.12); position:relative; transition:transform .4s var(--ease), box-shadow .4s; }
.stat-card:hover { transform:translateY(-4px); box-shadow:0 12px 32px rgba(0,0,0,.07); }
.sc-num { font-family:var(--f-display); font-size:52px; font-weight:600; color:var(--maroon); line-height:1; display:block; }
.sc-num::after { content:'+'; font-size:28px; }
.sc-label { font-family:var(--f-ui); font-size:8px; letter-spacing:3px; color:var(--light-mid); display:block; margin-top:6px; text-transform:uppercase; }
.sc-bar { position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--gold); transition:width .8s var(--ease); }
.stat-card:hover .sc-bar, .stat-card.counted .sc-bar { width:100%; }

/* ─── AWARDS STRIP ─── */
.awards-strip { background:var(--dark-bg3); padding:28px var(--pad); border-top:1px solid rgba(196,154,82,.08); border-bottom:1px solid rgba(196,154,82,.08); overflow:hidden; }
.aw-inner { display:flex; align-items:center; gap:36px; max-width:1400px; margin:0 auto; flex-wrap:wrap; justify-content:center; }
.aw-label { font-family:var(--f-ui); font-size:8px; letter-spacing:5px; color:var(--gold); opacity:.5; font-weight:300; white-space:nowrap; }
.aw-item { display:flex; align-items:center; gap:12px; }
.aw-icon { font-size:18px; }
.aw-item strong { font-family:var(--f-ui); font-size:10px; letter-spacing:1px; color:var(--dark-text); font-weight:300; display:block; }
.aw-item span { font-family:var(--f-ui); font-size:8px; letter-spacing:2px; color:var(--dark-faint); font-weight:200; display:block; }
.aw-sep { width:1px; height:32px; background:rgba(196,154,82,.1); }
@media (max-width:800px) { .aw-sep { display:none; } .aw-inner { gap:20px; } }

/* ═══════════════════════════════════
   KALA PARAMPARA — BENTO GRID
═══════════════════════════════════ */
.kala-section { padding:120px var(--pad) 80px; background:radial-gradient(circle at 50% 10%, #231910, var(--dark-bg) 70%); }
.kala-head { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:end; margin-bottom:60px; max-width:1400px; margin-left:auto; margin-right:auto; }
.kala-title { font-family:var(--f-display); font-size:clamp(52px,6vw,90px); font-weight:300; color:var(--dark-text); line-height:.95; }
.kala-title em { color:var(--gold); font-style:italic; }
.kala-head p { font-family:var(--f-display); font-size:17px; color:var(--dark-muted); line-height:1.75; max-width:400px; margin-bottom:22px; }
.kala-icons { display:flex; gap:14px; }

/* Bento grid */
.kb-grid {
  display: grid;
  grid-template-columns: 2fr 1.1fr 1fr;
  grid-template-rows: 360px 280px;
  gap: 10px;
  max-width: 1400px;
  margin: 0 auto;
}
.kb-c1 { grid-column:1; grid-row:1; }
.kb-c2 { grid-column:2; grid-row:1/3; }
.kb-c3 { grid-column:3; grid-row:1; }
.kb-c4 { grid-column:1; grid-row:2; }
.kb-c5 { grid-column:3; grid-row:2; }

.kb-card { position:relative; overflow:hidden; cursor:pointer; background:var(--dark-bg2); }
.kb-img { position:absolute; inset:0; overflow:hidden; }
.kb-img img { width:100%; height:100%; object-fit:cover; filter:brightness(.82) sepia(.15); transition:transform 1.4s var(--ease-out), filter .6s ease; }
.kb-card:hover .kb-img img { transform:scale(1.07); filter:brightness(.9) sepia(0); }
.kb-info { position:absolute; bottom:0; left:0; right:0; padding:26px; background:linear-gradient(to top, rgba(8,4,2,.93), transparent); z-index:2; transition:transform .5s var(--ease); }
.kb-card:hover .kb-info { transform:translateY(-8px); }
.kb-n { font-family:var(--f-ui); font-size:9px; letter-spacing:3px; color:var(--gold); font-weight:300; display:block; margin-bottom:5px; }
.kb-info h3 { font-family:var(--f-display); font-size:clamp(18px,2vw,28px); font-weight:300; color:var(--dark-text); line-height:1.15; margin-bottom:3px; }
.kb-info p { font-family:var(--f-script); font-size:14px; color:var(--dark-muted); }
.kb-tag { font-family:var(--f-ui); font-size:8px; letter-spacing:3px; color:rgba(196,154,82,.45); font-weight:200; display:block; margin-top:7px; }
.kb-reveal { position:absolute; inset:0; background:rgba(16,10,6,.9); display:flex; flex-direction:column; justify-content:center; padding:30px; opacity:0; transform:translateY(10px); transition:opacity .4s var(--ease), transform .4s var(--ease); z-index:3; border:1px solid rgba(196,154,82,.13); }
.kb-card:hover .kb-reveal { opacity:1; transform:translateY(0); }
.kb-reveal p { font-family:var(--f-display); font-size:15px; color:var(--dark-muted); line-height:1.7; margin-bottom:18px; }
.kb-more { color:var(--gold); font-family:var(--f-ui); font-size:9px; letter-spacing:3px; border-bottom:1px solid rgba(196,154,82,.28); padding-bottom:2px; display:inline-block; transition:border-color .3s; }
.kb-more:hover { border-color:var(--gold); }

/* --- Variables (add to your :root if not already there) --- */
:root {
  --gold: #c49a52;
  --f-display: 'Georgia', serif;
  --f-ui: 'Helvetica Neue', Arial, sans-serif;
  --dark-bg: #0a0705;
  --dark-text: #f0e8d8;
  --dark-muted: rgba(240,232,216,0.55);
  --slide-h: 420px;
}
 
/* --- Carousel wrap --- */
.kmc-wrap {
  position: relative;
  overflow: hidden;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  cursor: grab;
}
.kmc-wrap.dragging { cursor: grabbing; }
 
.kmc-track {
  display: flex;
  will-change: transform;
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}
.kmc-track.no-transition { transition: none; }
 
/* --- Slides --- */
.kmc-slide {
  min-width: 100%;
  height: var(--slide-h);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
 
.kmc-slide .slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
 
.kmc-slide .slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.42) sepia(0.15);
  transform: scale(1.06);
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.kmc-slide.active .slide-bg img { transform: scale(1.0); }
 
.slide-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,4,2,0.97) 0%,
    rgba(8,4,2,0.5) 40%,
    rgba(8,4,2,0.1) 75%,
    transparent 100%
  );
}
 
/* --- Slide info (animates in on active) --- */
.kmc-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px 24px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s,
              opacity 0.55s ease 0.1s;
}
.kmc-slide.active .kmc-info {
  transform: translateY(0);
  opacity: 1;
}
 
.kmc-info-num {
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
}
.kmc-info h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--dark-text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.kmc-info p {
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--dark-muted);
  font-weight: 200;
  text-transform: uppercase;
}
 
/* --- Bottom bar: dots + counter + hint --- */
.kmc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 10px;
  background: var(--dark-bg);
}
 
.kmc-progress {
  display: flex;
  align-items: center;
  gap: 6px;
}
 
.kmc-dot {
  height: 2px;
  width: 18px;
  background: rgba(196,154,82,0.22);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
  border: none;
  outline: none;
}
.kmc-dot.active {
  background: var(--gold);
  width: 36px;
}
 
.kmc-counter {
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--dark-muted);
  font-weight: 300;
}
 
.kmc-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  animation: hintFade 3s ease 1.5s forwards;
}
@keyframes hintFade {
  0%   { opacity: 0.4; }
  60%  { opacity: 0.4; }
  100% { opacity: 0; pointer-events: none; }
}
.kmc-hint svg { width: 36px; }
.kmc-hint span {
  font-family: var(--f-ui);
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--dark-muted);
  text-transform: uppercase;
}
 
/* --- Pills --- */
.art-pills-wrap {
  background: var(--dark-bg);
  padding: 20px 0 24px;
  border-top: 1px solid rgba(196,154,82,0.08);
}
 
.art-pills-label {
  font-family: var(--f-ui);
  font-size: 8px;
  letter-spacing: 4px;
  color: rgba(196,154,82,0.45);
  text-transform: uppercase;
  padding: 0 24px 12px;
}
 
.art-pills {
  display: flex;
  gap: 8px;
  padding: 4px 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.art-pills::-webkit-scrollbar { display: none; }
 
.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 2px;
  border: 1px solid rgba(196,154,82,0.2);
  background: rgba(196,154,82,0.03);
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 2.5px;
  color: rgba(240,232,216,0.55);
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.pill::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(196,154,82,0.35);
  transition: background 0.25s ease;
  flex-shrink: 0;
}
.pill:hover {
  border-color: rgba(196,154,82,0.55);
  color: var(--dark-text);
  background: rgba(196,154,82,0.07);
}
.pill:hover::before { background: var(--gold); }
.pill.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,82,0.1);
}
.pill.active::before { background: var(--gold); }
 
/* --- Responsive: show carousel only on mobile --- */
@media (max-width: 991px) {
  .kb-grid { display: none; }
  .kmc-wrap { display: block; }
}
/* Art pills */
.art-pills { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; max-width:820px; margin:56px auto 0; }
.pill { font-family:var(--f-ui); font-size:9px; letter-spacing:4px; color:var(--dark-muted); border:1px solid rgba(196,154,82,.16); padding:9px 20px; text-transform:uppercase; transition:all .3s var(--ease); cursor:default; }
.pill:hover { border-color:var(--gold); color:var(--gold); background:rgba(196,154,82,.05); }

/* ─── SLIDESHOW ─── */
.slideshow-section { width:100%; height:72vh; min-height:500px; position:relative; overflow:hidden; background:#060402; }
.ss-track { display:flex; width:400%; height:100%; transition:transform 1.4s cubic-bezier(0.76,0,.24,1); }
.ss-slide { width:25%; height:100%; position:relative; }
.ss-slide img { width:100%; height:100%; object-fit:cover; filter:brightness(.82) sepia(.08); transition:filter .5s; }
.ss-slide:hover img { filter:brightness(.99) sepia(0); }
.ss-info { position:absolute; bottom:70px; left:56px; z-index:5; }
.ss-info span { font-family:var(--f-ui); font-size:9px; letter-spacing:4px; color:var(--gold); display:block; margin-bottom:9px; font-weight:300; }
.ss-info h3 { font-family:var(--f-display); font-size:clamp(22px,2.8vw,38px); font-weight:300; color:var(--dark-text); }
.ss-controls { position:absolute; bottom:28px; right:48px; z-index:10; display:flex; gap:12px; align-items:center; }
.ss-prog { width:80px; height:1px; background:rgba(196,154,82,.18); overflow:hidden; }
.ss-fill { height:100%; width:0; background:var(--gold); transition:width .1s linear; }
.ss-count { font-family:var(--f-ui); font-size:10px; letter-spacing:2px; color:var(--gold); min-width:38px; text-align:center; }
.ss-btn { background:transparent; border:1px solid rgba(196,154,82,.22); color:var(--dark-muted); padding:10px 15px; font-family:var(--f-ui); font-size:11px; cursor:pointer; transition:all .3s; }
.ss-btn:hover { border-color:var(--gold); color:var(--gold); }

/* ─── RANGMANCH ─── */
.rangmanch-section { position:relative; background:var(--light-bg); padding:160px 0; overflow:hidden; }
.rangmanch-section .rm-bg-lines, .rangmanch-section .rm-vignette, .rangmanch-section .rm-inner { position:relative; z-index:2; }
.rm-bg-lines { position:absolute; inset:0; background:repeating-linear-gradient(135deg, transparent, transparent 50px, rgba(196,154,82,.04) 50px, rgba(196,154,82,.04) 51px); animation:bgShift 100s linear infinite; pointer-events:none; }
.rm-vignette { position:absolute; inset:0; background:radial-gradient(ellipse at center, transparent 30%, rgba(250,245,237,.85) 85%); pointer-events:none; }
@keyframes bgShift { from{transform:translate(0,0)} to{transform:translate(51px,51px)} }
.rm-inner { max-width:1500px; margin:0 auto; padding:0 var(--pad); display:flex; gap:80px; align-items:flex-start; position:relative; z-index:2; }
.rm-content { flex:0 0 52%; }
.rm-header { margin-bottom:52px; }
.rm-eyebrow { display:flex; align-items:center; gap:14px; margin-bottom:18px; }
.rm-line { width:34px; height:1px; background:var(--maroon); }
.rm-eyebrow span { font-family:var(--f-ui); font-size:9px; letter-spacing:5px; color:var(--maroon); font-weight:300; }
.rm-header h2 { font-family:var(--f-display); font-size:clamp(40px,5vw,72px); font-weight:300; color:var(--light-text); margin-bottom:18px; }
.rm-header h2 em { color:var(--gold); font-style:italic; }
.rm-header p { font-family:var(--f-display); font-size:16px; color:var(--light-mid); line-height:1.7; }
.rm-cards { border-left:1px solid rgba(196,154,82,.15); padding-left:4px; }
.rm-card { position:relative; padding:44px 0 44px 52px; transition:transform .5s var(--ease); cursor:default; }
.rm-card::before { content:''; position:absolute; left:-5px; top:56px; width:10px; height:10px; background:var(--gold); border-radius:50%; transition:all .5s; }
.rm-card:hover { transform:translateX(12px); }
.rm-card:hover::before { background:var(--maroon); box-shadow:0 0 0 5px rgba(138,36,36,.1); transform:scale(1.4); }
.rm-num { position:absolute; left:-72px; top:46px; font-family:var(--f-ui); font-size:9px; color:rgba(196,154,82,.2); letter-spacing:1px; }
.rm-date { font-family:var(--f-ui); font-size:9px; letter-spacing:3px; color:var(--gold); display:block; margin-bottom:8px; font-weight:300; }
.rm-card h3 { font-family:var(--f-display); font-size:clamp(22px,2.6vw,34px); font-weight:300; color:var(--light-text); margin-bottom:10px; }
.rm-card p { font-family:var(--f-display); font-size:15px; color:var(--light-mid); line-height:1.75; }
.rm-foot { display:flex; justify-content:space-between; align-items:center; margin-top:20px; padding-top:14px; border-top:1px dashed rgba(196,154,82,.18); }
.rm-foot span { font-family:var(--f-ui); font-size:10px; color:var(--light-mid); }
.rm-btn { color:var(--maroon); font-family:var(--f-ui); font-size:9px; letter-spacing:2px; border-bottom:1px solid transparent; padding-bottom:2px; transition:border-color .3s; font-weight:300; }
.rm-btn:hover { border-color:var(--maroon); }
.rm-masks { flex:0 0 44%; position:sticky; top:14%; height:600px; }
.mask-canvas { position:relative; width:100%; height:100%; }
.mask-item { position:absolute; transition:transform .3s ease-out; }
.mask-item img { width:100%; height:auto; }
.p1{width:208px;top:-10%;left:2%;z-index:6} .p2{width:258px;top:1%;right:2%;z-index:4} .p3{width:228px;top:34%;left:-3%;z-index:7} .p4{width:180px;top:50%;right:12%;z-index:3} .p5{width:218px;top:95%;left:3%;z-index:8} .p6{width:128px;top:95%;right:8%;z-index:5} .p7{width:158px;top:156%;left:10%;z-index:2} .p8{width:258px;top:154%;left:50%;z-index:9}
.geo-ring { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:375px; height:375px; border:1px solid rgba(196,154,82,.12); border-radius:50%; }
.geo-ring.geo-inner { width:235px; height:235px; border-style:dashed; animation:spin 40s linear infinite reverse; }

/* ─── WORKSHOPS ─── */
.workshops-section { padding:130px var(--pad); background:var(--dark-bg2); }
.ws-header { text-align:center; margin-bottom:68px; }
.ws-header h2 { font-family:var(--f-display); font-size:clamp(36px,4.5vw,64px); font-weight:300; color:var(--dark-text); margin-bottom:14px; }
.ws-header h2 em { color:var(--gold); font-style:italic; }
.ws-header p { font-family:var(--f-display); font-size:16px; color:var(--dark-muted); max-width:480px; margin:0 auto; line-height:1.7; }
.ws-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; max-width:1300px; margin:0 auto; }
.ws-card { background:var(--dark-bg3); border:1px solid rgba(196,154,82,.1); overflow:hidden; transition:transform .4s var(--ease), box-shadow .4s; position:relative; }
.ws-card:hover { transform:translateY(-6px); box-shadow:0 20px 48px rgba(0,0,0,.3); border-color:rgba(196,154,82,.22); }
.ws-featured { border-color:rgba(196,154,82,.28); }
.ws-badge-label { position:absolute; top:14px; right:14px; z-index:10; font-family:var(--f-ui); font-size:7px; letter-spacing:3px; background:var(--gold); color:#000; padding:5px 10px; font-weight:400; }
.ws-img { height:220px; overflow:hidden; }
.ws-img img { width:100%; height:100%; object-fit:cover; filter:brightness(.5) sepia(.1); transition:filter .5s, transform .8s var(--ease); }
.ws-card:hover .ws-img img { filter:brightness(.7) sepia(0); transform:scale(1.04); }
.ws-body { padding:28px; }
.ws-level { font-family:var(--f-ui); font-size:8px; letter-spacing:3px; color:var(--gold); font-weight:300; display:block; margin-bottom:10px; }
.ws-body h3 { font-family:var(--f-display); font-size:22px; font-weight:300; color:var(--dark-text); margin-bottom:10px; }
.ws-body p { font-family:var(--f-display); font-size:14px; color:var(--dark-muted); line-height:1.7; margin-bottom:18px; }
.ws-meta { display:flex; gap:16px; margin-bottom:22px; }
.ws-meta span { font-family:var(--f-ui); font-size:9px; color:var(--dark-faint); letter-spacing:1px; }
.ws-btn { display:inline-block; color:var(--gold); font-family:var(--f-ui); font-size:9px; letter-spacing:3px; border-bottom:1px solid rgba(196,154,82,.3); padding-bottom:3px; transition:border-color .3s; }
.ws-btn:hover { border-color:var(--gold); }
.ws-note { text-align:center; margin-top:40px; font-family:var(--f-ui); font-size:10px; color:var(--dark-faint); letter-spacing:1px; }
.ws-note a { color:var(--gold); }

/* ─── REVIEWS ─── */
.reviews-section { padding:130px var(--pad); background:var(--dark-bg); }
.rev-header { text-align:center; margin-bottom:68px; }
.rev-header h2 { font-family:var(--f-display); font-size:clamp(36px,4.5vw,64px); font-weight:300; color:var(--dark-text); }
.rev-header h2 em { color:var(--gold); font-style:italic; }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; max-width:1300px; margin:0 auto; }
.review-card { padding:44px 36px; border:1px solid rgba(196,154,82,.16); background:rgba(255,255,255,.02); transition:all .5s var(--ease); position:relative; overflow:hidden; }
.review-card::after { content:''; position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--gold); transition:width .6s var(--ease); }
.review-card:hover { transform:translateY(-5px); border-color:rgba(196,154,82,.32); }
.review-card:hover::after { width:100%; }
.rc-featured { border-color:rgba(196,154,82,.32); background:rgba(196,154,82,.04); }
.rc-quote { font-family:var(--f-display); font-size:72px; line-height:.6; display:block; margin-bottom:22px; color:rgba(196,154,82,.25); }
.review-card p { font-family:var(--f-display); font-size:16px; color:var(--dark-muted); line-height:1.75; font-style:italic; margin-bottom:28px; }
.rc-who { display:flex; align-items:center; gap:13px; }
.rc-av { width:36px; height:36px; border-radius:50%; background:rgba(196,154,82,.1); border:1px solid rgba(196,154,82,.25); display:flex; align-items:center; justify-content:center; font-family:var(--f-display); font-size:15px; color:var(--gold); flex-shrink:0; }
.rc-who strong { font-family:var(--f-ui); font-size:10px; letter-spacing:2px; color:var(--dark-text); display:block; margin-bottom:3px; font-weight:300; }
.rc-who span { font-family:var(--f-ui); font-size:8px; color:var(--dark-faint); letter-spacing:1px; display:block; }

/* ─── THE LINEAGE SHOWCASE ─── */
:root {
  --maroon: #8a2424;
  --gold-dim: #b59b6d;
  --cream-light: #fdfaf7;
  --text-dark: #1a1a1a;
  --text-mid: #555;
  --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ══════════════════════════════════════════════════════
   GURUS SECTION — PARAMPARA LINEAGE — AWARD-WINNING REDESIGN
══════════════════════════════════════════════════════ */

.gurus-section {
  position: relative;
  background: linear-gradient(160deg, #0f0a06 0%, #1a0d0d 40%, #120a0a 100%);
  padding: 120px 0 0;
  overflow: hidden;
}

/* ambient particle canvas */
.gurus-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* background mandala */
.gurus-mandala-bg {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 60vw;
  max-width: 700px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}
.gurus-mandala-bg svg { width: 100%; height: auto; }

/* ── Header ── */
.gurus-header {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 70px;
}

.gurus-title {
  font-family: var(--f-display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 300;
  color: var(--dark-text);
  line-height: 1.0;
  margin: 16px 0 0;
}
.gurus-title em {
  font-style: italic;
  color: var(--gold);
}

.gurus-header-right {
  max-width: 480px;
  flex-shrink: 0;
}
.gurus-header-right p {
  font-size: 15px;
  color: rgba(249,232,214,.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* nav pills */
.gurus-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gpill {
  background: transparent;
  border: 1px solid rgba(196,154,82,.25);
  color: rgba(249,232,214,.5);
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  cursor: pointer;
  transition: all .4s var(--ease);
}
.gpill:hover, .gpill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0d0303;
  letter-spacing: 2.5px;
}

/* ── Stage (two-column layout) ── */
.gurus-stage {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 5%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: start;
}

/* ── Guru List (accordion) ── */
.gurus-list {
  display: flex;
  flex-direction: column;
}

.guru-item {
  position: relative;
  border-top: 1px solid rgba(196,154,82,.12);
  overflow: hidden;
  cursor: pointer;
  transition: background .5s var(--ease);
}
.guru-item:last-child { border-bottom: 1px solid rgba(196,154,82,.12); }

/* accent bar */
.gi-accent-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--maroon));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .5s var(--ease);
}
.guru-item.active .gi-accent-bar,
.guru-item:hover .gi-accent-bar {
  transform: scaleY(1);
}

.gi-inner {
  padding: 30px 30px 30px 42px;
  position: relative;
  z-index: 2;
}

.gi-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.gi-num {
  font-family: var(--f-ui);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold-dim);
}
.gi-tags { display: flex; gap: 8px; }
.gi-discipline {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(196,154,82,.1);
  padding: 3px 10px;
  border-radius: 30px;
}
.gi-exp {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(249,232,214,.4);
  border: 1px solid rgba(249,232,214,.12);
  padding: 3px 10px;
  border-radius: 30px;
}

.gi-name {
  font-family: var(--f-display);
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 300;
  color: var(--dark-text);
  margin: 0 0 4px;
  transition: color .4s var(--ease);
}
.guru-item.active .gi-name,
.guru-item:hover .gi-name { color: var(--gold); }

.gi-role {
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(249,232,214,.45);
  text-transform: uppercase;
  margin-bottom: 0;
}

/* expandable body */
.gi-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .7s cubic-bezier(.4,0,.2,1), opacity .5s ease;
  opacity: 0;
}
.guru-item.active .gi-body {
  max-height: 400px;
  opacity: 1;
  padding-top: 20px;
}

.gi-body p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(249,232,214,.65);
  max-width: 560px;
  margin-bottom: 28px;
}

.gi-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 28px;
}
.gis-item { display: flex; flex-direction: column; }
.gis-n {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.gis-l {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(249,232,214,.4);
  margin-top: 4px;
}

.gi-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark-bg);
  background: var(--gold);
  padding: 11px 24px;
  text-decoration: none;
  transition: all .4s var(--ease);
  border-radius: 2px;
  margin-bottom: 8px;
}
.gi-cta:hover {
  background: var(--gold-bright);
  transform: translateX(4px);
}

/* warli figure overlay in each card */
.gi-warli {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 150px;
  pointer-events: none;
}
.guru-item.hover{
  width: 200px;
}

/* warli arm animations */
@keyframes warliArmSwing {
  0%, 100% { transform-origin: 40px 38px; transform: rotate(0deg); }
  50% { transform-origin: 40px 38px; transform: rotate(8deg); }
}
.guru-item.active .warli-arm-l { animation: warliArmSwing 2s ease-in-out infinite; }
.guru-item.active .warli-arm-r { animation: warliArmSwing 2s ease-in-out infinite reverse; }

/* hover glow on list item */
.guru-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(196,154,82,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.guru-item.active::after,
.guru-item:hover::after { opacity: 1; }

/* ── Spotlight Panel ── */
.gurus-spotlight {
  position: sticky;
  top: 100px;
  padding-left: 50px;
}

.gs-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(196,154,82,.2);
}

/* photo bg */
.gs-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 30%, #3d1010 0%, #1a0505 60%, #0d0202 100%);
}

/* pulsing spotlight beam */
.gs-spotlight-beam {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 140%;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,154,82,.22) 0%, transparent 70%);
  animation: beamPulse 4s ease-in-out infinite;
}
@keyframes beamPulse {
  0%, 100% { opacity: .7; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.15); }
}

/* silhouette */
.gs-silhouette {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.gs-dancer-svg {
  width: 60%;
  height: 80%;
  animation: dancerSway 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(196,154,82,.25));
}
@keyframes dancerSway {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  33% { transform: rotate(1.5deg) translateY(-6px); }
  66% { transform: rotate(-0.8deg) translateY(-2px); }
}

/* raga rings */
.gs-raga-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196,154,82,.18);
  pointer-events: none;
  animation: ringExpand 5s ease-out infinite;
}
.gs-rr1 { width: 120px; height: 120px; top: 50%; left: 50%; margin: -60px 0 0 -60px; animation-delay: 0s; }
.gs-rr2 { width: 200px; height: 200px; top: 50%; left: 50%; margin: -100px 0 0 -100px; animation-delay: 1.5s; }
.gs-rr3 { width: 300px; height: 300px; top: 50%; left: 50%; margin: -150px 0 0 -150px; animation-delay: 3s; }
@keyframes ringExpand {
  0% { opacity: 0.6; transform: scale(.7); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* info overlay */
.gs-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(to top, rgba(13,3,3,.95) 0%, rgba(13,3,3,.8) 50%, transparent 100%);
  z-index: 5;
}
.gso-discipline {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
  transition: all .5s ease;
}
.gso-name {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--dark-text);
  line-height: 1.1;
  margin-bottom: 4px;
  transition: all .5s ease;
}
.gso-role {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(249,232,214,.5);
  transition: all .5s ease;
}

/* tala rhythm strip */
.gs-tala-strip {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(196,154,82,.12);
  border-bottom: 1px solid rgba(196,154,82,.12);
  margin: 0 0 20px;
}
.tala-beat {
  flex: 1;
  height: 3px;
  background: rgba(196,154,82,.15);
  border-radius: 2px;
  transition: background .3s ease, height .3s ease;
}
.tala-beat.active {
  background: var(--gold);
  height: 8px;
  box-shadow: 0 0 8px rgba(196,154,82,.5);
}
@keyframes talaAnimate {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.6); }
}
.tala-beat.active { animation: talaAnimate 1s ease-in-out infinite; }
.tala-beat.active:nth-child(4) { animation-delay: .15s; }
.tala-beat.active:nth-child(6) { animation-delay: .3s; }
.tala-beat.active:nth-child(9) { animation-delay: .45s; }
.tala-beat.active:nth-child(12) { animation-delay: .6s; }
.tala-beat.active:nth-child(14) { animation-delay: .75s; }

/* quote */
.gs-quote {
  position: relative;
  padding: 0;
}
.gs-quote-mark {
  font-family: var(--f-display);
  font-size: 40px;
  color: var(--gold);
  opacity: .4;
  line-height: 1;
  display: block;
  margin-bottom: -10px;
}
.gs-quote p {
  font-family: var(--f-display);
  font-size: 15px;
  font-style: italic;
  color: rgba(249,232,214,.7);
  line-height: 1.7;
  margin: 0 0 10px;
  transition: all .5s ease;
}
.gs-quote-attr {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dim);
  transition: all .5s ease;
}

/* ── Footer strip ── */
.gurus-footer-strip {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  border-top: 1px solid rgba(196,154,82,.15);
  background: var(--dark-bg3);
}
.gfs-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: stretch;
}
.gfs-sep {
  width: 1px;
  background: rgba(196,154,82,.12);
  margin: 0;
}
.gfs-guru {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 32px 24px;
  cursor: pointer;
  transition: background .4s ease;
}
.gfs-guru:hover { background: rgba(196,154,82,.05); }
.gfs-num {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold-dim);
  font-family: var(--f-ui);
}
.gfs-name {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--dark-text);
  flex: 1;
}
.gfs-art {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(249,232,214,.35);
}
.gfs-dot {
  color: var(--gold);
  opacity: .4;
  font-size: 10px;
}

/* ── Scroll-in animations ── */
.gurus-section .gurus-header,
.gurus-section .gurus-stage {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.gurus-section.in-view .gurus-header { opacity: 1; transform: none; }
.gurus-section.in-view .gurus-stage { opacity: 1; transform: none; transition-delay: .2s; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .gurus-stage { grid-template-columns: 1fr; }
  .gurus-spotlight { position: static; padding-left: 0; margin-top: 60px; }
  .gs-frame { max-height: 380px; }
}
@media (max-width: 768px) {
  .gurus-header { flex-direction: column; align-items: flex-start; }
  .gurus-header-right { max-width: 100%; }
  .gfs-inner { flex-wrap: wrap; }
  .gfs-guru { flex: 0 0 50%; }
  .gfs-sep:nth-child(4) { display: none; }
  .gi-warli { display: none; }
  .gi-inner { padding: 22px 20px; }
  .gurus-nav-pills { display: none; }
}

/* ─── PRESS ─── */
.press-section { padding:100px var(--pad); background:var(--dark-bg3); }
.press-inner { max-width:1300px; margin:0 auto; display:grid; grid-template-columns:1fr 2fr; gap:100px; align-items:center; }
.press-left h2 { font-family:var(--f-display); font-size:clamp(36px,4.5vw,62px); font-weight:300; color:var(--dark-text); }
.press-left h2 em { color:var(--gold); font-style:italic; }
.press-right { display:flex; flex-direction:column; gap:0; }
.press-item { padding:28px 0; border-bottom:1px solid rgba(196,154,82,.1); }
.press-item:first-child { border-top:1px solid rgba(196,154,82,.1); }
.press-pub { font-family:var(--f-ui); font-size:10px; letter-spacing:4px; color:var(--gold); margin-bottom:9px; font-weight:300; }
.press-item p { font-family:var(--f-display); font-size:16px; color:var(--dark-muted); font-style:italic; line-height:1.65; margin-bottom:8px; }
.press-item span { font-family:var(--f-ui); font-size:8px; letter-spacing:2px; color:var(--dark-faint); }

/* ─── NEWSLETTER ─── */
.newsletter-section { position:relative; padding:120px var(--pad); background:var(--dark-bg); overflow:hidden; text-align:center; }
.nl-bg-mandala { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:600px; pointer-events:none; z-index:1; }
.nl-bg-mandala svg { width:100%; height:100%; animation:spin 120s linear infinite; }
.nl-inner { position:relative; z-index:2; max-width:560px; margin:0 auto; }
.nl-inner h2 { font-family:var(--f-display); font-size:clamp(36px,4.5vw,60px); font-weight:300; color:var(--dark-text); margin-bottom:14px; }
.nl-inner p { font-family:var(--f-display); font-size:16px; color:var(--dark-muted); line-height:1.7; margin-bottom:36px; }
.nl-form { display:flex; gap:0; border:1px solid rgba(196,154,82,.22); }
.nl-input { flex:1; background:transparent; border:none; padding:14px 20px; font-family:var(--f-ui); font-size:11px; letter-spacing:2px; color:var(--dark-text); outline:none; }
.nl-input::placeholder { color:var(--dark-faint); }
.nl-btn { background:var(--gold); color:#000; border:none; padding:14px 28px; font-family:var(--f-ui); font-size:9px; letter-spacing:3px; cursor:pointer; white-space:nowrap; font-weight:400; transition:background .3s; flex-shrink:0; }
.nl-btn:hover { background:var(--gold-bright); }
.nl-note { font-family:var(--f-ui); font-size:8px; letter-spacing:2px; color:var(--dark-faint); display:block; margin-top:16px; }

/* ─── CONTACT ─── */
.contact-section { padding:130px var(--pad); background:var(--dark-bg2); }
.contact-inner { display:grid; grid-template-columns:1fr 1fr; gap:100px; max-width:1300px; margin:0 auto; align-items:center; }
.contact-left h2 { font-family:var(--f-display); font-size:clamp(32px,3.8vw,58px); font-weight:300; color:var(--dark-text); line-height:1.1; margin-bottom:20px; }
.contact-left h2 em { color:var(--gold); font-style:italic; display:block; }
.contact-left p { font-family:var(--f-display); font-size:16px; color:var(--dark-muted); line-height:1.75; margin-bottom:34px; }
.contact-links { display:flex; flex-direction:column; gap:10px; margin-bottom:34px; }
.ct-link { font-family:var(--f-ui); font-size:11px; letter-spacing:2px; color:var(--gold); font-weight:300; transition:color .3s; }
.ct-link:hover { color:var(--gold-bright); }
.contact-offices { display:flex; gap:28px; flex-wrap:wrap; }
.co-item { display:flex; flex-direction:column; gap:3px; }
.co-city { font-family:var(--f-display); font-size:16px; color:var(--dark-text); }
.co-item span:last-child { font-family:var(--f-ui); font-size:8px; letter-spacing:2px; color:var(--dark-faint); }
.contact-form { display:flex; flex-direction:column; gap:18px; }
.cf-group { position:relative; }
.cf-input { width:100%; background:transparent; border:none; border-bottom:1px solid rgba(196,154,82,.14); padding:14px 0; font-family:var(--f-ui); font-size:11px; letter-spacing:2px; color:var(--dark-text); font-weight:200; outline:none; resize:none; transition:border-color .3s; appearance:none; }
.cf-select { color:var(--dark-faint); cursor:pointer; }
.cf-select option { background:var(--dark-bg2); color:var(--dark-text); }
.cf-input::placeholder { color:var(--dark-faint); }
.cf-input:focus { border-bottom-color:var(--gold); }
.cf-line { position:absolute; bottom:0; left:0; width:0; height:1px; background:var(--gold); transition:width .4s var(--ease); display:block; }
.cf-input:focus ~ .cf-line { width:100%; }
.cf-submit { align-self:flex-start; background:transparent; border:1px solid rgba(196,154,82,.3); color:var(--dark-text); font-family:var(--f-ui); font-size:9px; letter-spacing:3px; padding:14px 36px; cursor:pointer; transition:all .4s var(--ease); font-weight:300; position:relative; overflow:hidden; margin-top:8px; }
.cf-submit::before { content:''; position:absolute; inset:0; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .4s var(--ease); z-index:0; }
.cf-submit:hover { border-color:var(--gold); color:#000; }
.cf-submit:hover::before { transform:scaleX(1); }
.cf-txt { position:relative; z-index:1; }

/* ─── FOOTER ─── */
.site-footer { background:#060402; border-top:1px solid rgba(196,154,82,.16); padding:80px var(--pad) 36px; }
.ft-top { display:grid; grid-template-columns:1.4fr 2fr; gap:80px; margin-bottom:56px; padding-bottom:52px; border-bottom:1px solid rgba(196,154,82,.07); }
.ft-name { font-family:var(--f-script); font-size:38px; color:var(--gold); display:block; margin-bottom:6px; }
.ft-brand p { font-family:var(--f-display); font-size:14px; font-style:italic; color:var(--dark-faint); margin-bottom:26px; }
.ft-socials { display:flex; gap:16px; flex-wrap:wrap; }
.ft-soc { font-family:var(--f-ui); font-size:9px; letter-spacing:3px; color:var(--dark-muted); border-bottom:1px solid transparent; padding-bottom:2px; transition:all .3s; }
.ft-soc:hover { color:var(--gold); border-color:var(--gold); }
.ft-cols { display:grid; grid-template-columns:repeat(3,1fr); gap:36px; }
.ft-col h5 { font-family:var(--f-ui); font-size:8px; letter-spacing:4px; color:var(--gold); font-weight:300; margin-bottom:16px; text-transform:uppercase; }
.ft-col a, .ft-col p { display:block; font-family:var(--f-ui); font-size:11px; color:var(--dark-faint); margin-bottom:9px; letter-spacing:1px; font-weight:200; transition:color .3s; }
.ft-col a:hover { color:var(--dark-muted); }
.ft-bottom { display:flex; justify-content:space-between; align-items:center; font-family:var(--f-ui); font-size:8px; letter-spacing:2px; color:var(--dark-faint); font-weight:200; }
.ft-dev { color:rgba(196,154,82,.25); font-size: 20px;}

/* ═════════════ LEGACY BREAKPOINTS (desktop-only adjustments kept) ═════════════ */
@media (max-width:1200px) {
  .kb-grid { grid-template-columns:1fr 1fr; grid-template-rows:320px 320px; }
  .kb-c1{grid-column:1;grid-row:1} .kb-c2{grid-column:2;grid-row:1/3} .kb-c3{grid-column:1;grid-row:2} .kb-c4{display:none} .kb-c5{display:none}
  .about-inner { gap:60px; }
}

@media (max-width:991px) {
  .kb-grid { display:none; } .kmc-wrap { display:block; }
  .kala-head { grid-template-columns:1fr; gap:28px; }
  .about-inner { grid-template-columns:1fr; gap:50px; }
  .about-right { grid-template-columns:repeat(2,1fr); }
  .rm-inner { flex-direction:column; } .rm-masks { display:none; }
  .reviews-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .ws-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .contact-inner { grid-template-columns:1fr; gap:50px; }
  .ft-top { grid-template-columns:1fr; gap:44px; }
  .press-inner { grid-template-columns:1fr; gap:44px; }
}

@media (max-width:900px) {
  :root { --nav-h:80px; }
  .hero-title { font-size:clamp(30px,8vw,50px); }
  .hero-typewriter { font-size:clamp(42px,11vw,70px); }
  .hero-btns { flex-direction:column; gap:16px; }
  .hero-scroll { left:50%; transform:translateX(-50%); }
  .edition-badge { display:none; }
  .ss-info { left:28px; bottom:52px; }
  .ss-controls { right:18px; }
  .ft-cols { grid-template-columns:1fr 1fr; }
  .ft-bottom { flex-direction:column; gap:8px; text-align:center; }
}

@media (max-width:800px) { .aw-sep { display:none; } .aw-inner { gap:20px; } }

@media (max-width:768px) {
  .gurus-header { flex-direction:column; align-items:flex-start; }
  .gurus-header-right { max-width:100%; }
  .gfs-inner { flex-wrap:wrap; }
  .gfs-guru { flex:0 0 50%; }
  .gfs-sep:nth-child(4) { display:none; }
  .gi-warli { display:none; }
  .gi-inner { padding:22px 20px; }
  .gurus-nav-pills { display:none; }
  .rangam-header { flex-direction:column; align-items:flex-start; }
  .rangam-season-badge { text-align:left; border-right:none; border-left:2px solid var(--bu); padding-right:0; padding-left:18px; }
  .rm2-show { flex-wrap:wrap; }
  .rm2-day { font-size:38px; }
  .rm2-divider-v, .rm2-warli-accent { display:none; }
  .rm2-cta-btn { margin-left:0; margin-top:16px; }
  .rm2-meta { flex-direction:column; gap:8px; }
  .gurus2-grid { grid-template-columns:1fr; }
}

@media (max-width:1100px) { .gurus2-grid { grid-template-columns:repeat(2,1fr); } }

@media (max-width:1100px) {
  .gurus-stage { grid-template-columns: 1fr; }
  .gurus-spotlight { position: static; padding-left: 0; margin-top: 60px; }
  .gs-frame { max-height: 380px; }
}

@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}
/* ── INTEREST POPUP ── */
.jp-overlay{position:fixed;inset:0;z-index:9999990;background:rgba(10,6,3,.82);backdrop-filter:blur(6px);display:flex;align-items:center;justify-content:center;padding:20px;opacity:0;visibility:hidden;transition:opacity .5s var(--ease),visibility .5s}
.jp-overlay.active{opacity:1;visibility:visible}
.jp-modal{position:relative;display:flex;max-width:860px;width:100%;max-height:90vh;background:var(--dark-bg2);border:1px solid rgba(196,154,82,.18);overflow:hidden;transform:translateY(32px) scale(.97);transition:transform .5s var(--ease);box-shadow:0 40px 100px rgba(0,0,0,.7)}
.jp-overlay.active .jp-modal{transform:translateY(0) scale(1)}
.jp-close{position:absolute;top:18px;right:20px;z-index:10;background:none;border:none;color:var(--dark-faint);font-size:14px;cursor:pointer;padding:6px;transition:color .2s}
.jp-close:hover{color:var(--gold)}
.jp-left{width:220px;flex-shrink:0;background:linear-gradient(160deg,#1a0808 0%,#2d1010 50%,#1a0a04 100%);border-right:1px solid rgba(196,154,82,.12);display:flex;flex-direction:column;align-items:center;justify-content:center;padding:40px 24px;text-align:center;position:relative;overflow:hidden}
.jp-left-mandala{position:absolute;inset:-20px;display:flex;align-items:center;justify-content:center}
.jp-left-mandala svg{width:100%;height:100%}
.jp-left-tag{font-family:var(--f-ui);font-size:7px;letter-spacing:3px;color:var(--gold-dim);margin-bottom:18px;position:relative}
.jp-left-title{font-family:var(--f-display);font-size:38px;font-weight:300;color:var(--dark-text);line-height:1.1;margin-bottom:12px;position:relative}
.jp-left-title em{color:var(--gold);font-style:italic}
.jp-left-sub{font-family:var(--f-ui);font-size:8px;letter-spacing:2.5px;color:var(--dark-faint);margin-bottom:28px;position:relative}
.jp-left-icons{display:flex;gap:12px;align-items:center;position:relative}
.jp-right{flex:1;padding:44px 40px 36px;overflow-y:auto;display:flex;flex-direction:column;gap:0}
.jp-eyebrow{display:flex;align-items:center;gap:10px;font-family:var(--f-ui);font-size:8px;letter-spacing:4px;color:var(--gold);margin-bottom:18px}
.jp-rule{flex:1;height:1px;background:linear-gradient(90deg,transparent,rgba(196,154,82,.3))}
.jp-rule:last-child{background:linear-gradient(90deg,rgba(196,154,82,.3),transparent)}
.jp-title{font-family:var(--f-display);font-size:34px;font-weight:300;color:var(--dark-text);line-height:1.15;margin-bottom:14px}
.jp-title em{color:var(--gold);font-style:italic}
.jp-body{font-family:var(--f-display);font-size:15px;color:var(--dark-muted);line-height:1.75;margin-bottom:18px}
.jp-perks{list-style:none;display:flex;flex-direction:column;gap:7px;margin-bottom:24px}
.jp-perks li{font-family:var(--f-ui);font-size:10px;letter-spacing:1px;color:var(--dark-muted);display:flex;align-items:center;gap:8px}
.jp-perk-dot{color:var(--gold);font-size:8px}
.jp-form{display:flex;flex-direction:column;gap:16px}
.jp-field-wrap{position:relative}
.jp-input{width:100%;background:transparent;border:none;border-bottom:1px solid rgba(196,154,82,.2);color:var(--dark-text);font-family:var(--f-ui);font-size:11px;letter-spacing:1.5px;padding:10px 0;outline:none;transition:border-color .3s}
.jp-input::placeholder{color:var(--dark-faint)}
.jp-input:focus{border-color:var(--gold)}
.jp-field-line{position:absolute;bottom:0;left:0;width:0;height:1px;background:var(--gold);transition:width .4s var(--ease)}
.jp-input:focus~.jp-field-line{width:100%}
.jp-interests{display:flex;flex-direction:column;gap:10px}
.jp-int-label{font-family:var(--f-ui);font-size:8px;letter-spacing:3px;color:var(--dark-faint)}
.jp-int-pills{display:flex;flex-wrap:wrap;gap:7px}
.jp-pill{font-family:var(--f-ui);font-size:8px;letter-spacing:2px;color:var(--dark-muted);border:1px solid rgba(196,154,82,.18);background:transparent;padding:6px 14px;cursor:pointer;transition:all .25s var(--ease)}
.jp-pill:hover{border-color:var(--gold);color:var(--gold)}
.jp-pill.selected{background:rgba(196,154,82,.12);border-color:var(--gold);color:var(--gold)}
.jp-submit{align-self:flex-start;background:var(--maroon);border:1px solid rgba(196,154,82,.25);color:var(--dark-text);font-family:var(--f-ui);font-size:9px;letter-spacing:3px;padding:14px 32px;cursor:pointer;transition:all .35s var(--ease);position:relative;overflow:hidden}
.jp-submit::before{content:'';position:absolute;inset:0;background:var(--gold);transform:translateX(-100%);transition:transform .4s var(--ease)}
.jp-submit:hover::before{transform:translateX(0)}
.jp-submit:hover{color:#000}
.jp-submit-txt{position:relative;z-index:1}
.jp-success{display:none;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:14px;padding:20px 0}
.jp-success.active{display:flex}
.jp-success-icon{font-size:28px;color:var(--gold);animation:jpPulse 2s ease infinite}
.jp-success h3{font-family:var(--f-display);font-size:26px;font-weight:300;color:var(--dark-text)}
.jp-success p{font-family:var(--f-display);font-size:15px;color:var(--dark-muted);line-height:1.7;max-width:320px}
.jp-note{font-family:var(--f-ui);font-size:8px;letter-spacing:1.5px;color:var(--dark-faint);margin-top:14px}
@keyframes jpPulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(1.15)}}
@media(max-width:640px){.jp-left{display:none}.jp-right{padding:40px 24px 28px}.jp-title{font-size:26px}.jp-modal{max-height:95vh}}

/* ═══════════════════════════════════════════════
   MOBILE-FIRST: Each section gets a unique feel
   Breakpoint: ≤ 768px
═══════════════════════════════════════════════ */

/* ─── GLOBAL MOBILE ─── */
@media (max-width: 768px) {
  :root { --pad: 22px; }
  body { touch-action: pan-y; overscroll-behavior-y: none; }

  /* ── HERO: Cinematic fullscreen with bottom-anchored content ── */
  .hero { min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end; }
  .hero-body {
    padding: 0 var(--pad) 100px;
    text-align: left;
    background: linear-gradient(to top, rgba(5,3,1,.88) 0%, rgba(5,3,1,.4) 60%, transparent 100%);
    padding-top: 60px;
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
  .hero-eyebrow {
    font-size: 8px;
    letter-spacing: 2.5px;
    margin-bottom: 16px;
    justify-content: flex-start;
    gap: 10px;
  }
  .ey-line { width: 20px; }
  .hero-title {
    font-size: clamp(30px, 8.5vw, 44px);
    line-height: 1.1;
    margin-bottom: 14px;
    text-align: left;
  }
  .hero-typewriter { font-size: clamp(22px, 6vw, 34px); display: block; width: 100%; max-width: 100%; margin-left: 0; }
  .hero-sub {
    font-size: 9px;
    letter-spacing: 2px;
    color: rgba(244,237,227,.5);
    margin-bottom: 28px;
    display: block;
  }
  .hero-btns {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }
  .btn-hero-primary, .btn-hero-ghost {
    font-size: 9px;
    letter-spacing: 2px;
    padding: 12px 20px;
  }
  /* Hero stats: thin gold strip, horizontal scroll */
  .hero-stats {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 14px var(--pad);
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    background: rgba(5,3,1,.65);
    border-top: 1px solid rgba(196,154,82,.15);
  }
  .hero-stats::-webkit-scrollbar { display: none; }
  .hero-stats .hst { flex: 0 0 auto; padding: 0 18px; min-width: 70px; }
  .hst-n { font-size: 16px !important; }
  .hst-l { font-size: 7px !important; letter-spacing: 2px; }
  .hero-scroll { left: var(--pad); transform: none; }
  .edition-badge { display: none; }

  /* ── TICKER: hidden, replaced by about intro ── */
  .ticker-bar { padding: 10px 0; }

  /* ── ABOUT: Editorial split — text heavy, full bleed bg ── */
  .about-section {
    padding: 70px var(--pad) 60px;
    background: var(--light-bg);
  }
  .about-inner {
    grid-template-columns: 1fr !important;
    gap: 0;
  }
  .about-left { position: relative; padding-bottom: 48px; }
  .about-left::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--maroon);
    margin-top: 36px;
  }
  .about-h2 { font-size: clamp(28px, 7.5vw, 40px); }
  .about-script { font-size: clamp(26px, 7vw, 38px); }
  .about-body { font-size: 14px; line-height: 1.85; max-width: none; }
  .about-actions { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .btn-maroon, .btn-ghost-maroon { font-size: 8px; padding: 11px 20px; }
  .about-right { display: none; } /* stat cards hidden — they show in their own section */
  /* Stat cards: compact row under about */
  .about-section .about-right { display: none; }

  /* ── AWARDS STRIP: horizontal scroll ── */
  .awards-strip { padding: 20px var(--pad); overflow-x: auto; }
  .aw-inner { flex-wrap: nowrap; gap: 24px; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; }
  .aw-sep { display: none; }
  .aw-label { display: none; }
  .aw-item { flex-shrink: 0; }

  /* ── KALA SECTION: Carousel-only, full bleed dark ── */
  .kala-section { padding: 56px 0 0; }
  .kala-head {
    grid-template-columns: 1fr !important;
    gap: 12px;
    padding: 0 var(--pad);
    margin-bottom: 28px;
  }
  .kala-title { font-size: clamp(44px, 12vw, 64px); }
  .kala-head p { font-size: 13px; max-width: none; margin-bottom: 0; }
  .kala-icons { display: none; }
  .kb-grid { display: none !important; }
  .kmc-section { display: block; }
  .kmc-slide { height: 72vw; max-height: 400px; min-height: 260px; }
  .kmc-info h3 { font-size: 24px; }
  /* art pills: horizontal scroll, no wrap */
  .art-pills-wrap { padding: 16px 0 20px; }
  .art-pills {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    padding: 4px var(--pad) 4px;
    gap: 8px;
    justify-content: flex-start !important;
    max-width: none !important;
    margin: 0 !important;
  }
  .pill { flex-shrink: 0; font-size: 8px; padding: 7px 14px; letter-spacing: 2px; }

  /* ── SLIDESHOW: taller on mobile, overlaid controls ── */
  .slideshow-section { height: 56vw; min-height: 240px; max-height: 380px; }
  .ss-info { left: var(--pad); bottom: 52px; }
  .ss-info h3 { font-size: clamp(18px, 5vw, 26px); }
  .ss-controls { right: var(--pad); bottom: 14px; gap: 8px; }
  .ss-prog { width: 48px; }

  /* ── THEATRE / RANGMANCH: simplified event list ── */
  #theatre { height: auto; min-height: 400px; }
  .t-stage { padding: 110px var(--pad) 40px; }
  .t-title { font-size: clamp(28px, 8vw, 40px); }
  .t-subtitle { font-size: 13px; }
  /* Stats: 2x2 grid */
  .t-stats { flex-wrap: wrap; padding: 14px 0; }
  .t-stat { flex: 0 0 50%; padding: 10px 0; border-bottom: 1px solid rgba(160,100,30,.1); }
  .t-stat:nth-child(n+5) { border-bottom: none; }
  .t-sdiv { display: none; }
  /* Poster grid: single column */
  .t-posters { grid-template-columns: 1fr !important; gap: 3px; }
  .t-poster--feat { grid-column: span 1 !important; }
  .t-poster { aspect-ratio: 16/9 !important; }
  /* Event rows: hide venue column */
  .t-erow { grid-template-columns: 52px 1px 1fr; gap: 0 14px; padding: 18px 0; }
  .t-erow-right { display: none; }
  /* mosaic: smaller tiles */
  .t-tile { width: 100px !important; height: 130px !important; }
  .t-tile--tall { height: 160px !important; }
  .t-tile--wide { width: 140px !important; }

  /* ── WORKSHOPS: horizontal swipe cards ── */
  .workshops-section {
    padding: 60px 0 50px;
    overflow: hidden;
  }
  .ws-header { padding: 0 var(--pad); margin-bottom: 36px; text-align: left; }
  .ws-header h2 { font-size: clamp(28px, 7.5vw, 40px); }
  .ws-header p { font-size: 13px; max-width: none; margin: 0; }
  .ws-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    gap: 16px;
    padding: 4px var(--pad) 20px;
    max-width: none !important;
    margin: 0 !important;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }
  .ws-grid::-webkit-scrollbar { display: none; }
  .ws-card {
    flex: 0 0 76vw;
    max-width: 300px;
    scroll-snap-align: start;
  }
  .ws-img { height: 180px; }
  .ws-body { padding: 20px; }
  .ws-body h3 { font-size: 18px; }
  .ws-body p { font-size: 12px; }
  .ws-note { padding: 0 var(--pad); font-size: 9px; margin-top: 20px; }

  /* ── REVIEWS / VOICES: large stacked testimonials ── */
  .reviews-section {
    padding: 70px 0 60px;
    background: var(--dark-bg);
  }
  .rev-header { padding: 0 var(--pad); margin-bottom: 40px; text-align: left; }
  .rev-header h2 { font-size: clamp(28px, 7.5vw, 40px); }
  .reviews-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    max-width: none !important;
    margin: 0 !important;
  }
  .review-card {
    padding: 32px var(--pad);
    border: none;
    border-bottom: 1px solid rgba(196,154,82,.1);
    background: transparent !important;
    transform: none !important;
  }
  .review-card:first-child { border-top: 1px solid rgba(196,154,82,.1); }
  .rc-quote { font-size: 52px; margin-bottom: 14px; }
  .review-card p { font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
  .rc-featured { background: rgba(196,154,82,.04) !important; }

  /* ── GURUS SECTION: mobile portrait card stack ── */
  .gurus-section { padding: 60px 0 0; }
  .gurus-mandala-bg { display: none; }
  .gurus-canvas { display: none; } /* too expensive on mobile */
  .gurus-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 0 var(--pad);
    margin-bottom: 36px;
    gap: 16px;
  }
  .gurus-title { font-size: clamp(36px, 10vw, 52px); margin-top: 8px; }
  .gurus-header-right p { font-size: 13px; margin-bottom: 16px; }
  .gurus-nav-pills { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; gap: 8px; }
  .gurus-nav-pills::-webkit-scrollbar { display: none; }
  .gpill { font-size: 8px; padding: 6px 14px; letter-spacing: 1.5px; flex-shrink: 0; }

  /* Stack: hide spotlight panel, show all cards in a column */
  .gurus-stage {
    grid-template-columns: 1fr !important;
    padding: 0;
  }
  .gurus-spotlight { display: none !important; }
  .gurus-list { gap: 0; }

  /* Guru cards: portrait style with photo thumbnail */
  .guru-item {
    border-top: 1px solid rgba(196,154,82,.1);
    background: transparent;
    cursor: pointer;
  }
  .guru-item:last-child { border-bottom: 1px solid rgba(196,154,82,.1); }
  .gi-inner { padding: 24px var(--pad); }
  .gi-top { gap: 10px; margin-bottom: 8px; }
  .gi-name { font-size: clamp(22px, 5.5vw, 30px); }
  .gi-role { font-size: 10px; }

  /* Photo: show on mobile as circular avatar beside name */
  .gi-warli {
    display: block !important;
    position: absolute;
    right: var(--pad);
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(196,154,82,.3);
    flex-shrink: 0;
  }
  .gi-warli img { width: 100%; height: 100%; object-fit: cover; }
  .gi-inner { padding-right: calc(var(--pad) + 80px); } /* make room for photo */

  /* Expanded body: always show briefly */
  .gi-body p { font-size: 13px; max-width: none; margin-bottom: 18px; }
  .gi-stats { gap: 20px; flex-wrap: wrap; }
  .gis-n { font-size: 22px; }

  /* Footer strip: 2-col wrap */
  .gurus-footer-strip { margin-top: 40px; }
  .gfs-inner { flex-wrap: wrap; }
  .gfs-guru { flex: 0 0 50%; padding: 20px 16px; gap: 10px; }
  .gfs-sep { display: none; }
  .gfs-name { font-size: 14px; }

  /* ── PRESS: full-bleed stacked ── */
  .press-section { padding: 60px var(--pad); }
  .press-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .press-left h2 { font-size: clamp(28px, 7.5vw, 40px); }
  .press-item { padding: 20px 0; }
  .press-item p { font-size: 14px; }

  /* ── NEWSLETTER: minimal dark card ── */
  .newsletter-section {
    padding: 70px var(--pad);
    background: var(--dark-bg);
  }
  .nl-bg-mandala { width: 300px; height: 300px; }
  .nl-inner h2 { font-size: clamp(26px, 7vw, 36px); }
  .nl-inner p { font-size: 14px; margin-bottom: 28px; }
  .nl-form {
    flex-direction: column;
    gap: 0;
    border: none;
  }
  .nl-input {
    width: 100%;
    border: 1px solid rgba(196,154,82,.22);
    padding: 14px 16px;
    margin-bottom: 2px;
  }
  .nl-btn {
    width: 100%;
    padding: 14px;
    letter-spacing: 3px;
  }

  /* ── CONTACT: Clean stacked form ── */
  .contact-section { padding: 70px var(--pad) 60px; background: var(--dark-bg2); }
  .contact-inner {
    grid-template-columns: 1fr !important;
    gap: 44px;
  }
  .contact-left h2 { font-size: clamp(26px, 7vw, 36px); }
  .contact-left p { font-size: 14px; }
  .contact-offices { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .co-city { font-size: 14px; }
  .cf-submit { width: 100%; align-self: stretch; text-align: center; }

  /* ── FOOTER: Brand-first condensed layout ── */
  .site-footer { padding: 52px var(--pad) 28px; }
  .ft-top {
    grid-template-columns: 1fr !important;
    gap: 36px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .ft-name { font-size: 32px; }
  .ft-cols { grid-template-columns: 1fr 1fr !important; gap: 24px; }
  .ft-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* ── POPUP: slide up from bottom ── */
  .jp-overlay { padding: 0; align-items: flex-end; }
  .jp-modal { max-height: 88vh; border-radius: 0; width: 100%; max-width: 100%; }
  .jp-left { display: none; }
  .jp-right { padding: 32px var(--pad) 24px; }
  .jp-title { font-size: 24px; }
  .jp-submit { width: 100%; align-self: stretch; justify-content: center; }

  /* ── PERFORMANCE: disable expensive animations ── */
  #jsHeroImg { transform: none !important; }
  .wari-bg { animation: wariFadeIn 2s ease 0.5s forwards !important; }
  .audio-bars span { animation: none; }
  .nav-overlay, .jp-overlay { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .site-nav[data-mode="white"] .nav-bg { backdrop-filter: none; -webkit-backdrop-filter: none; }

  /* ── GPU COMPOSITING HINTS ── */
  .hero-media img, .kmc-track, .reveal-frame { will-change: transform; }
  .about-section, .kala-section, .newsletter-section, .contact-section, .site-footer { contain: layout style; }

  /* ── ANNOUNCE BAR: hidden on mobile ── */
  .announce-bar { display: none; }
  .site-nav { top: 0 !important; }
  .nav-right .nav-time, .nav-right .nav-sep, .nav-right .nav-cta { display: none; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── 480px and below: tighten up further ── */
@media (max-width: 480px) {
  .hero-title { font-size: clamp(26px, 7.5vw, 36px); }
  .ws-card { flex: 0 0 88vw; }
  .gfs-guru { flex: 0 0 100%; }
  .gfs-sep { display: none; }
  .t-stat { flex: 0 0 50%; }
  .review-card p { font-size: 14px; }
  .kmc-slide { height: 78vw; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ══════════════════════════════════════
   ENHANCED MOBILE POLISH
   Additional improvements for <768px
══════════════════════════════════════ */
@media (max-width: 768px) {
  /* Better hamburger hit area */
  .nav-hamburger { padding: 10px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }

  /* Nav brand tighter on mobile */
  .brand-img { width: 36px; }
  .nav-brand { gap: 7px; }

  /* Overlay menu items bigger tap targets */
  .om-link { padding: 16px 0; min-height: 52px; }
  .om-text { font-size: 16px; letter-spacing: 6px; }

  /* Hero — fix bottom-aligned content always visible */
  .hero { justify-content: flex-end; }
  .hero-body { width: 100%; padding-bottom: 80px; margin-top: -600px; }

  /* Buttons stacked, full-width friendly */
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 16px; }
  .btn-hero-ghost { padding: 4px 0; font-size: 10px; }

  /* Hero stats: always show, scrollable */
  .hero-stats {
    position: absolute; bottom: 0; left: 0; right: 0;
    display: flex !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 12px 16px;
    background: rgba(5,3,1,.72);
    border-top: 1px solid rgba(196,154,82,.14);
    gap: 0;
  }
  .hero-stats::-webkit-scrollbar { display: none; }
  .hero-stats .hst { flex: 0 0 auto; padding: 0 18px; text-align: center; }
  .hst-div { width: 1px; background: rgba(196,154,82,.2); flex-shrink: 0; align-self: stretch; margin: 2px 0; display: block; }

  /* Newsletter form: full width, better sizing */
  .nl-input { font-size: 14px; padding: 15px 16px; }
  .nl-btn { font-size: 10px; padding: 15px; letter-spacing: 2px; }

  /* Contact form inputs bigger for thumb */
  .cf-input { font-size: 15px; padding: 14px 0; }
  .cf-submit { min-height: 52px; font-size: 10px; letter-spacing: 3px; }

  /* Footer cleaner */
  .ft-brand p { font-size: 13px; }
  .ft-socials { flex-wrap: wrap; gap: 16px; }

  /* Back to top: bigger touch target */
  .back-to-top { width: 48px; height: 48px; bottom: 20px; right: 16px; }

  /* Popup bottom sheet — add safe area inset */
  .jp-modal { padding-bottom: env(safe-area-inset-bottom, 0); }
  .jp-right { padding: 28px 20px 24px; }

  /* Section tags & headings — consistent spacing */
  .section-tag { font-size: 8px; letter-spacing: 3px; margin-bottom: 12px; }
}

/* Safe area on notched phones */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 768px) {
    .site-footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }
    .hero-stats { padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  }
}
/* ═══════════════════════════════════════════════
   JAGALI ARTSPACE — ADDITIONS V14
   • Art font for paragraphs (subtle Eczar)
   • Kolam side/bottom preloader panels
   • Jagali art top/bottom preloader strips
   • Curtain overlay
   • About wari transparent on mobile
   • Workshop auto-scroll carousel
   • About stats row
   • WhatsApp workshop button
═══════════════════════════════════════════════ */

/* ── ART FONT for body paragraphs — subtle, not intrusive ── */
:root {
  --f-art: 'Eczar', 'Cormorant Garamond', Georgia, serif;
}

/* Apply Eczar subtly to paragraphs across the site */
.about-body,
.ws-body p,
.review-card p,
.jp-body,
.gurus-header-right p,
.kala-hr p,
.gi-body p,
.contact-left p,
.nl-inner p,
.t-poster-reveal p,
.t-erow-body p {
  font-family: var(--f-art);
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.01em;
}

/* ── PRELOADER: Kolam Side Panels ── */
.pl-kolam-side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  display: flex;
  align-items: stretch;
  pointer-events: none;
  opacity: 0;
  animation: plFadeUp 1s var(--ease-out) 0.4s forwards;
}
.pl-kolam-side--left  { left: 0; }
.pl-kolam-side--right { right: 0; transform: scaleX(-1); }
.pl-kolam-side svg { width: 100%; height: 100%; }

/* ── PRELOADER: Kolam Bottom Panel ── */
.pl-kolam-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  opacity: 0;
  animation: plFadeUp 1s var(--ease-out) 0.5s forwards;
}
.pl-kolam-bottom svg { width: 100%; height: 100%; }

/* ── PRELOADER: Jagali Art Top Strip ── */
.pl-jagali-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
  opacity: 0;
  animation: plFadeUp 0.9s var(--ease-out) 0.2s forwards;
}
.pl-jagali-top svg { width: 100%; height: 60px; }

/* ── PRELOADER: Jagali Art Bottom Strip ── */
.pl-jagali-bottom {
  position: absolute;
  bottom: 80px; /* sits above kolam bottom */
  left: 0;
  right: 0;
  height: 60px;
  pointer-events: none;
  opacity: 0;
  animation: plFadeUp 0.9s var(--ease-out) 0.3s forwards;
}
.pl-jagali-bottom svg { width: 100%; height: 60px; }

/* ══════════════════════════════════════════
   SITE CURTAIN — cloth physics, no top/sides
══════════════════════════════════════════ */
.site-curtain {
  position: fixed;
  inset: 0;
  z-index: 999998;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.site-curtain.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}
.sc-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  pointer-events: all;
  cursor: pointer;
  display: block;
}
.site-curtain.opened .sc-canvas { pointer-events: none; }

/* Pull UI */
.sc-pull-ui {
  position: absolute;
  inset: 0;
  z-index: 25;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22%;
  transition: opacity 0.6s ease;
}
.site-curtain.opened .sc-pull-ui { opacity: 0; }
.sc-pull--l, .sc-pull--r {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.sc-rope {
  width: 2px; height: 54px;
  background: linear-gradient(180deg, rgba(190,150,55,0) 0%, rgba(190,150,55,0.65) 100%);
}
.sc-knob {
  width: 14px; height: 14px; border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #F0D070, #B8892E 55%, #7A5818);
  box-shadow: 0 2px 8px rgba(0,0,0,0.55);
  animation: scKnobSway 3.2s ease-in-out infinite;
}
@keyframes scKnobSway { 0%,100% { transform: rotate(-5deg); } 50% { transform: rotate(5deg); } }
.sc-pull-label {
  font-family: 'Courier New', monospace;
  font-size: 8px; letter-spacing: 3px;
  color: rgba(200,160,60,0.7);
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 3px;
}

/* ── ABOUT: wari transparent on mobile ── */
@media (max-width: 768px) {
  .wari-bg {
    opacity: 0.08 !important;
  }
}

/* ── ABOUT: stats row ── */
.about-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 28px 0 32px;
  flex-wrap: wrap;
}
.ab-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ab-stat-n {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.ab-stat-l {
  font-family: var(--f-ui);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--dark-muted);
  text-transform: uppercase;
}
.ab-stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(196,154,82,0.2);
  flex-shrink: 0;
}

/* ── WORKSHOPS: carousel (no stacking) ── */
.workshops-section {
  padding: 100px 0;
  background: var(--dark-bg2);
  overflow: hidden;
}
.ws-header {
  padding: 0 var(--pad);
  margin-bottom: 48px;
}

.ws-carousel-wrap {
  position: relative;
  overflow: hidden;
  cursor: grab;
  padding: 0 var(--pad);
}
.ws-carousel-wrap:active { cursor: grabbing; }

.ws-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
  /* Remove old grid, always a row */
}

/* Force cards to fixed width — never stack */
.ws-carousel-track .ws-card {
  flex: 0 0 340px;
  min-width: 340px;
  max-width: 340px;
}

/* Arrow buttons */
.ws-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(196,154,82,0.12);
  border: 1px solid rgba(196,154,82,0.3);
  color: var(--gold);
  font-size: 22px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.ws-arrow:hover {
  background: var(--gold);
  color: #000;
}
.ws-arrow--prev { left: 8px; }
.ws-arrow--next { right: 8px; }

/* Workshop price badge */
.ws-price {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-top: 4px;
}

/* WhatsApp enroll button */
.ws-btn-wa {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
}
.ws-btn-wa:hover {
  background: #1ebe5a !important;
}

/* Mobile: show 1.2 cards for "peek" effect */
@media (max-width: 768px) {
  .ws-carousel-track .ws-card {
    flex: 0 0 82vw;
    min-width: 82vw;
    max-width: 82vw;
  }
  .ws-arrow { display: none; }
  .ws-carousel-wrap { padding: 0 16px; }
}

/* ── REVIEWS: expand to show more cards ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}