/* ════════════════════════════════════════════════════════════════
   YOUSUF ALI KHAN · The Living Art of Tabla · Masala Edition
   A garden of rhythm: banana leaf green, sand, turmeric, chilli,
   cardamom, clove, saffron. Nature and spice, not neon.
   ════════════════════════════════════════════════════════════════ */

:root {
  --leaf-deep: #14291c;   /* banana leaf at dusk */
  --leaf:      #24402a;   /* cardamom green */
  --moss:      #6b8f5f;
  --sand:      #f4eedd;   /* river sand */
  --sand-2:    #f0e8d2;
  --ink:       #2c2014;   /* wet earth */
  --clove:     #1c1208;
  --turmeric:  #e2a72e;
  --saffron:   #f0b13e;
  --chili:     #c2451e;
  --maroon:    #6e2012;   /* dried chilli */
  --clay:      #b06a3b;
  --cream-y:   #f1e6c8;   /* haldi cream, the home light */
  --ink-warm:  #3a2a14;
  --bg: var(--cream-y);
  --fg: var(--ink-warm);
  --ease-out: cubic-bezier(.22,.9,.28,1);
}

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

/* NOTE: scroll-behavior must stay auto. CSS smooth scrolling fights
   GSAP ScrollToPlugin and silently kills anchor button scrolls. */
html { scroll-behavior: auto; }
html, body { overscroll-behavior-y: none; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color .9s var(--ease-out), color .9s var(--ease-out);
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--turmeric); color: var(--ink); }

/* no scrolling while the curtain is up */
body.veiled { overflow: hidden; height: 100svh; }

/* every screen is a discrete slide, anchored just under the nav so
   tall content never overflows and gets pushed off-screen */
.slide {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: clamp(4.8rem, 8vh, 6.4rem) clamp(1.5rem, 6vw, 6rem) clamp(1.6rem, 4vh, 2.6rem);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

em { font-style: italic; }
.dev { font-family: "Tiro Devanagari Hindi", serif; }

/* ── shared type ─────────────────────────────────────────────── */
.kicker {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--chili); font-weight: 500; margin-bottom: 1.2rem;
}
.kicker-gold { color: var(--turmeric); }

.display {
  font-family: "Fraunces", serif;
  font-weight: 360;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin-bottom: 1.4rem;
}
.display em { font-weight: 430; color: var(--turmeric); }
.story .display em, .learn .display em, .contact .display em { color: var(--chili); }

.lede {
  max-width: 38rem; font-size: clamp(1rem, 1.4vw, 1.15rem);
  opacity: .85; margin-bottom: 2rem;
}
.lede .album { color: var(--chili); font-family: "Fraunces", serif; }

/* paisley / leaf ornaments above headings */
.orn {
  width: 44px; height: 44px; color: var(--moss);
  display: block; margin-bottom: 1rem; opacity: .85;
}
.contact .orn { margin-inline: auto; }

/* ── buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: .95rem 2.1rem; border-radius: 999px;
  font-size: .8rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  transition: transform .35s var(--ease-out), background .35s, color .35s, border-color .35s, box-shadow .35s;
  will-change: transform;
}
.btn-gold  { background: var(--turmeric); color: var(--clove); }
.btn-gold:hover  { background: var(--sand); box-shadow: 0 10px 40px rgba(226,167,46,.35); }
.btn-spice { background: var(--chili); color: var(--sand); }
.btn-spice:hover { background: var(--maroon); box-shadow: 0 10px 40px rgba(194,69,30,.35); }
.btn-ghost { border: 1px solid currentColor; opacity: .9; }
.btn-ghost:hover { background: var(--fg); color: var(--bg); opacity: 1; }

/* ── entry veil ──────────────────────────────────────────────── */
#veil {
  position: fixed; inset: 0; z-index: 200;
  background:
    radial-gradient(90% 70% at 12% 88%, rgba(107,143,95,.16) 0%, transparent 55%),
    radial-gradient(90% 70% at 88% 12%, rgba(194,69,30,.10) 0%, transparent 55%),
    radial-gradient(120% 120% at 50% 30%, #f7efd9 0%, #f1e6c8 60%, #e7d7ab 100%);
  color: var(--ink-warm);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.veil-inner { padding: 2rem; }
.veil-ring {
  width: 110px; height: 110px; margin: 0 auto 2rem; border-radius: 50%;
  border: 1px solid rgba(226,167,46,.55);
  display: flex; align-items: center; justify-content: center;
  animation: veilpulse 2.4s ease-in-out infinite;
}
.veil-logo { width: 62px; height: 62px; object-fit: contain; }
@keyframes veilpulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(226,167,46,.28); }
  50%     { box-shadow: 0 0 0 26px rgba(226,167,46,0); }
}
.veil-kicker { font-size: .7rem; letter-spacing: .4em; text-transform: uppercase; color: var(--chili); margin-bottom: .8rem; }
.veil-name { font-family: "Fraunces", serif; font-weight: 380; font-size: clamp(2.6rem, 7vw, 4.8rem); line-height: 1.05; }
.veil-name em { color: var(--chili); }
.veil-line { opacity: .7; margin: 1.4rem 0 2.2rem; font-size: .95rem; }
.veil-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── grain + cursor + progress ───────────────────────────────── */
.grain {
  position: fixed; inset: -50%; z-index: 120; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 7s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 25% { transform: translate(-3%,2%); }
  50% { transform: translate(2%,-3%); } 75% { transform: translate(-2%,-2%); }
}

.cursor, .cursor-dot { position: fixed; top: 0; left: 0; z-index: 150; pointer-events: none; border-radius: 50%; display: none; }
.cursor { width: 36px; height: 36px; border: 1px solid var(--chili); transition: width .25s, height .25s, opacity .25s; opacity: .65; }
.cursor-dot { width: 5px; height: 5px; background: var(--chili); }
.cursor.is-active { width: 64px; height: 64px; opacity: 1; }
@media (hover: hover) and (pointer: fine) { .cursor, .cursor-dot { display: block; } }

#progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 140; background: linear-gradient(90deg, var(--chili), var(--turmeric), var(--moss)); }

/* ── nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: transform .45s var(--ease-out), background .45s, backdrop-filter .45s;
}
.nav.is-scrolled { backdrop-filter: blur(14px); background: color-mix(in srgb, var(--bg) 72%, transparent); }
.nav.is-hidden { transform: translateY(-110%); }
.nav-brand { font-family: "Fraunces", serif; font-size: 1.05rem; font-weight: 420; letter-spacing: .02em; }
.nav-brand em { color: var(--chili); }
.nav-links { display: flex; gap: 1.7rem; align-items: center; }
.nav-links a {
  font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; font-weight: 500;
  opacity: .8; position: relative; padding: .3rem 0; transition: opacity .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--chili); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-out);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
/* scrollspy: where you are right now */
.nav-links a.is-now { opacity: 1; color: var(--chili); }
.nav-links a.is-now::after { transform: scaleX(1); }
.nav-links .nav-cta.is-now { background: var(--chili); color: var(--sand); }
.nav-links .nav-cta {
  border: 1px solid var(--chili); color: var(--chili);
  border-radius: 999px; padding: .45rem 1.2rem; opacity: 1;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--chili); color: var(--sand); }
.nav-tools { display: flex; align-items: center; gap: 1rem; }

.sound-toggle { display: flex; align-items: flex-end; gap: 3px; height: 18px; padding: 2px; }
.sound-toggle .sbar {
  width: 3px; background: var(--chili); border-radius: 2px; height: 6px;
  animation: eq 1s ease-in-out infinite;
}
.sound-toggle .sbar:nth-child(2) { animation-delay: .15s; }
.sound-toggle .sbar:nth-child(3) { animation-delay: .35s; }
.sound-toggle .sbar:nth-child(4) { animation-delay: .55s; }
@keyframes eq { 0%,100% { height: 5px; } 50% { height: 16px; } }
body[data-muted="true"] .sound-toggle .sbar { animation: none; height: 4px; opacity: .45; }

/* clearly visible labelled menu button */
.burger {
  display: none; align-items: center; gap: .55rem;
  padding: .55rem 1.05rem; border-radius: 999px;
  background: var(--chili); color: var(--sand);
  box-shadow: 0 6px 18px rgba(194,69,30,.35);
}
.burger .b-bars { display: flex; flex-direction: column; gap: 4px; }
.burger .b-bars span { width: 16px; height: 2px; border-radius: 2px; background: var(--sand); }
.burger .b-label { font-size: .68rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }

/* mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 160; padding: 5.5rem 2rem 2rem;
  background: rgba(13,26,17,.86); backdrop-filter: blur(22px);
  color: var(--sand);
  display: flex; flex-direction: column; justify-content: space-between;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-out);
}
.menu.is-open { opacity: 1; pointer-events: auto; }
.menu-close { position: absolute; top: 1.3rem; right: 1.5rem; font-size: 1.3rem; color: var(--turmeric); }
.menu-links { display: flex; flex-direction: column; gap: 1.3rem; }
.menu-links a {
  font-family: "Fraunces", serif; font-size: clamp(1.7rem, 6.5vw, 2.5rem); font-weight: 380;
  display: flex; align-items: baseline; gap: 1rem;
  opacity: 0; transform: translateY(24px);
}
.menu-links a small { font-family: "Outfit", sans-serif; font-size: .7rem; letter-spacing: .3em; color: var(--turmeric); }
.menu-foot { font-family: "Tiro Devanagari Hindi", serif; color: var(--turmeric); opacity: .6; font-size: 1.2rem; text-align: center; }

/* ── hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
#drumfield { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-content { position: relative; z-index: 2; padding: 0 1.5rem; max-width: 60rem; }
.hero-kicker { font-size: .72rem; letter-spacing: .42em; text-transform: uppercase; color: var(--chili); margin-bottom: 1.6rem; }
.hero-title {
  font-family: "Fraunces", serif; font-weight: 340;
  font-size: clamp(3.4rem, 13vw, 9.5rem);
  line-height: .96; letter-spacing: -.015em; margin-bottom: 1.6rem;
}
.hero-title em { font-weight: 440; color: var(--chili); }
.hero-title .char { display: inline-block; }
.hero-sub { max-width: 34rem; margin: 0 auto 2.4rem; opacity: .82; font-size: clamp(.98rem, 1.4vw, 1.12rem); }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-bols { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-bols span {
  position: absolute; left: var(--x); top: var(--y);
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: clamp(1.4rem, 3vw, 2.4rem); color: var(--clay); opacity: .3;
  animation: drift 7s ease-in-out var(--d) infinite;
}
@keyframes drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-26px); } }

.hero-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .7rem;
}
.cue-text {
  font-size: .82rem; letter-spacing: .42em; text-transform: uppercase;
  font-weight: 600; color: var(--chili); opacity: .95;
  animation: cuefade 1.8s ease-in-out infinite;
}
@keyframes cuefade { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.cue-pulse {
  width: 2px; height: 66px; border-radius: 2px;
  background: linear-gradient(var(--chili), rgba(207,74,31,0));
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }
.hero-hint { position: absolute; bottom: 2.4rem; right: 2.2rem; z-index: 2; font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; opacity: .4; }

/* ── story ───────────────────────────────────────────────────── */
.story-head {
  min-height: 100svh; display: flex; flex-direction: column; justify-content: center;
  padding: 5.5rem clamp(1.5rem, 6vw, 6rem) 2.5rem; max-width: 70rem;
}
.story-more { margin-top: .4rem; }

/* ── play ────────────────────────────────────────────────────── */
.play-head { max-width: 70rem; margin-bottom: clamp(1.4rem, 3.5vh, 2.4rem); }
.play-head .lede { margin-bottom: 0; }

.tabla-stage {
  display: flex; justify-content: center; align-items: flex-end;
  gap: clamp(1.2rem, 5vw, 4rem); margin-bottom: 1.6rem; flex-wrap: wrap;
}
.drum-wrap { text-align: center; }
.drum {
  width: clamp(140px, 28vh, 300px); max-width: 34vw; height: auto; cursor: pointer;
  filter: drop-shadow(0 24px 50px rgba(0,0,0,.55));
  transition: transform .2s var(--ease-out);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
#bayan { width: clamp(160px, 32vh, 340px); max-width: 38vw; }
.drum:active { transform: scale(.985); }
.drum-name { margin-top: .9rem; font-family: "Fraunces", serif; font-size: 1.15rem; color: var(--turmeric); }
.drum-name span { display: block; font-family: "Outfit", sans-serif; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; opacity: .55; margin-top: .3rem; color: var(--sand); }

.bol-fly {
  position: fixed; z-index: 90; pointer-events: none;
  font-family: "Tiro Devanagari Hindi", serif; font-size: 2rem; color: var(--turmeric);
  text-shadow: 0 2px 18px rgba(226,167,46,.5);
}
.bol-fly small { display: block; font-family: "Outfit", sans-serif; font-size: .6rem; letter-spacing: .3em; text-transform: uppercase; text-align: center; }

.bol-chips { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-bottom: 1rem; }
.chip {
  display: flex; align-items: center; gap: .55rem;
  border: 1px solid rgba(226,167,46,.4); border-radius: 999px;
  padding: .55rem 1.15rem; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sand); transition: background .25s, transform .25s, border-color .25s;
}
.chip .dev { font-size: 1.05rem; color: var(--turmeric); text-transform: none; letter-spacing: 0; }
.chip:hover, .chip.is-hit { background: rgba(226,167,46,.14); border-color: var(--turmeric); transform: translateY(-2px); }


/* taal machine, its own slide */
.taal { max-width: 72rem; margin: 0 auto; width: 100%; }
.taal-head { max-width: 44rem; margin-bottom: 1rem; }
.taal-head .taal-title { margin-bottom: .6rem; }
.taal-title { font-family: "Fraunces", serif; font-weight: 400; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.taal-title em { color: var(--turmeric); }
.taal-lede { opacity: .8; font-size: .98rem; }

.taal-picker { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: .9rem; }
.taal-tab {
  border: 1px solid rgba(226,167,46,.4); border-radius: 999px;
  padding: .55rem 1.3rem; font-size: .78rem; letter-spacing: .16em; text-transform: uppercase;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.taal-tab b { color: var(--turmeric); margin-left: .3rem; font-weight: 600; }
.taal-tab:hover { border-color: var(--turmeric); transform: translateY(-2px); }
.taal-tab.is-on { background: var(--turmeric); color: var(--clove); border-color: var(--turmeric); }
.taal-tab.is-on b { color: var(--maroon); }
.taal-note { font-size: .88rem; font-style: italic; font-family: "Fraunces", serif; opacity: .75; margin-bottom: 1.4rem; }

.taal-body { display: flex; gap: clamp(2rem, 6vw, 5rem); align-items: center; flex-wrap: wrap; justify-content: center; }
.taal-wheel-wrap { position: relative; width: min(74vw, 340px, 48vh); }
#taalWheel { width: 100%; height: auto; display: block; }
.taal-center {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; pointer-events: none;
}
.taal-bol-dev { font-family: "Tiro Devanagari Hindi", serif; font-size: clamp(2.4rem, 6.4vw, 3.6rem); color: var(--turmeric); line-height: 1; }
.taal-bol-rom { font-size: .7rem; letter-spacing: .34em; text-transform: uppercase; opacity: .6; margin-top: .5rem; }

.taal-controls { display: flex; flex-direction: column; gap: 1.6rem; min-width: min(86vw, 300px); }
.taal-playbtn { text-align: center; }
.tempo span { display: block; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; opacity: .75; margin-bottom: .6rem; }
.tempo b { color: var(--turmeric); }
.tempo input[type="range"] {
  width: 100%; appearance: none; -webkit-appearance: none; height: 2px;
  background: rgba(226,167,46,.35); border-radius: 2px; outline: none;
}
.tempo input::-webkit-slider-thumb {
  appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--turmeric); border: 3px solid var(--clove); box-shadow: 0 0 0 1px var(--turmeric);
  cursor: pointer;
}
.tempo input::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--turmeric); border: 2px solid var(--clove); cursor: pointer;
}
.taal-legend { font-size: .78rem; opacity: .6; }
.taal-legend b { color: var(--turmeric); font-weight: 500; }

/* ── learn ───────────────────────────────────────────────────── */
.learn-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
  max-width: 76rem; margin: 0 auto; width: 100%;
}
.learn-points { list-style: none; margin: 0 0 2.2rem; display: grid; gap: .85rem; }
.learn-points li { padding-left: 1.6rem; position: relative; font-size: .98rem; opacity: .9; }
.learn-points li::before { content: "◆"; position: absolute; left: 0; top: .15em; color: var(--clay); font-size: .7rem; }
.learn-points b { font-weight: 500; color: var(--chili); }

.learn-photo, .schools-photo { border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 26px 60px rgba(44,32,20,.18); }
.learn-photo img, .schools-photo img { aspect-ratio: 4 / 5; max-height: 56vh; object-fit: cover; width: 100%; transition: transform 1.2s var(--ease-out); }
.learn-photo:hover img { transform: scale(1.04); }
.learn-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 1.4rem .9rem;
  background: linear-gradient(transparent, rgba(20,41,28,.8));
  color: var(--sand); font-family: "Fraunces", serif; font-style: italic; font-size: 1rem;
}

.formats-head { max-width: 76rem; margin: 0 auto 2rem; width: 100%; }
.formats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; max-width: 76rem; margin: 0 auto; width: 100%; }
.format-card {
  background: rgba(255,252,243,.75); border: 1px solid rgba(107,143,95,.35); border-radius: 18px;
  padding: 1.8rem 1.5rem;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.format-card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(44,32,20,.13); }
.f-num { font-family: "Fraunces", serif; color: var(--clay); font-size: .95rem; display: block; margin-bottom: 1rem; }
.format-card h3 { font-family: "Fraunces", serif; font-weight: 450; font-size: 1.25rem; margin-bottom: .6rem; }
.format-card p { font-size: .9rem; opacity: .8; }

/* ── schools + workshop hour ─────────────────────────────────── */
.schools-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
  max-width: 72rem; margin: 0 auto; width: 100%;
}
.schools .display em, .workshop .display em { color: var(--saffron); }
.schools-photo img { aspect-ratio: 4 / 3; max-height: 56vh; }

.workshop-inner { max-width: 64rem; margin: 0 auto; width: 100%; }
.schools-quote {
  border-left: 2px solid var(--saffron); padding: .4rem 0 .4rem 1.6rem; margin: .6rem 0 2rem;
  max-width: 44rem;
}
.schools-quote p { font-family: "Fraunces", serif; font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.4; margin-bottom: .8rem; }
.schools-quote cite { font-style: normal; font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; opacity: .6; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem 1.6rem; }
.step span { font-family: "Fraunces", serif; color: var(--saffron); display: block; margin-bottom: .4rem; }
.step h3 { font-family: "Fraunces", serif; font-weight: 450; font-size: 1.1rem; margin-bottom: .35rem; }
.step p { font-size: .87rem; opacity: .75; }

/* ── stages ──────────────────────────────────────────────────── */
.stages { text-align: center; overflow: hidden; }
.stages.slide { padding-left: 0; padding-right: 0; }
.stages-head { padding: 0 clamp(1.5rem, 6vw, 6rem); margin-bottom: 1.1rem; }

.venues { display: grid; gap: .2rem; margin-bottom: 1.3rem; }
.venue-line { display: flex; white-space: nowrap; width: max-content; }
.venue-line span {
  font-family: "Fraunces", serif; font-weight: 340;
  font-size: clamp(1.4rem, 3.4vw, 2.6rem); line-height: 1.12;
  color: transparent; -webkit-text-stroke: 1px rgba(244,238,221,.5);
  padding-right: 1rem;
}
.venue-alt span { color: var(--turmeric); -webkit-text-stroke: 0; opacity: .92; }

.stages-photo { margin: 0 auto 1rem; padding: 0 1.5rem; }
.stages-photo img { border-radius: 18px; box-shadow: 0 24px 60px rgba(0,0,0,.5); max-height: 26vh; width: auto; margin: 0 auto; }
.stages-photo figcaption { font-family: "Fraunces", serif; font-style: italic; opacity: .7; margin-top: .7rem; font-size: .95rem; }
.stages-cta { display: flex; flex-direction: column; align-items: center; gap: .9rem; padding: 0 1.5rem; }
.stages-cta p { max-width: 38rem; opacity: .8; font-size: .92rem; }

/* ── contact ─────────────────────────────────────────────────── */
.contact { text-align: center; }
.contact .lede { margin-inline: auto; }
.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; max-width: 72rem; margin: 2.5rem auto 0; }
.path-card {
  background: rgba(255,252,243,.8); border: 1px solid rgba(107,143,95,.4); border-radius: 20px;
  padding: 2.4rem 1.8rem; text-align: left; display: flex; flex-direction: column; gap: .7rem;
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.path-card:hover { transform: translateY(-10px); box-shadow: 0 26px 56px rgba(44,32,20,.15); border-color: var(--chili); }
.path-card .dev { font-size: 2rem; color: var(--chili); line-height: 1; }
.path-card h3 { font-family: "Fraunces", serif; font-weight: 450; font-size: 1.35rem; }
.path-card p { font-size: .92rem; opacity: .8; flex: 1; }
.path-go { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--chili); font-weight: 500; }

/* ── footer ──────────────────────────────────────────────────── */
.footer { border-top: 1px solid rgba(107,143,95,.4); padding: 0 1.5rem 6rem; text-align: center; }
.garland {
  height: 18px; margin-bottom: 2.6rem;
  background:
    radial-gradient(circle at 9px 7px, var(--saffron) 4.5px, transparent 5.5px) repeat-x,
    radial-gradient(circle at 18px 13px, var(--chili) 3px, transparent 4px) repeat-x;
  background-size: 18px 18px, 36px 18px;
  opacity: .8;
}
.footer-name { font-family: "Fraunces", serif; font-size: 1.5rem; font-weight: 420; }
.footer-name em { color: var(--chili); }
.footer-tag { font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; opacity: .6; margin: .6rem 0 1.4rem; }
.footer-social { display: flex; gap: 1.6rem; justify-content: center; margin-bottom: 1.4rem; }
.footer-social a { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; opacity: .7; border-bottom: 1px solid transparent; transition: opacity .3s, border-color .3s; }
.footer-social a:hover { opacity: 1; border-color: var(--chili); }
.footer-copy { font-size: .75rem; opacity: .5; }

/* ── reveals (JS adds .in) ───────────────────────────────────── */
.reveal-up { opacity: 0; transform: translateY(46px); }

/* ── responsive ──────────────────────────────────────────────── */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .burger { display: flex; }

  .learn-grid, .schools-grid { grid-template-columns: 1fr; }
  .schools-photo img { aspect-ratio: 16 / 10; }
  .steps { grid-template-columns: 1fr 1fr; }
  .formats { grid-template-columns: 1fr 1fr; }
  .paths { grid-template-columns: 1fr; max-width: 30rem; }
  .hero-hint { display: none; }
}
/* ── phones: compress every slide so it fits one screen, no overflow ── */
@media (max-width: 600px) {
  .slide { padding: 4.2rem 1.3rem 1.3rem; }
  .story-head { padding: 4.2rem 1.3rem 1.3rem; }

  .display { font-size: clamp(1.85rem, 8.5vw, 2.3rem); margin-bottom: .7rem; }
  .lede { font-size: .9rem; line-height: 1.5; margin-bottom: 1rem; }
  .kicker { margin-bottom: .6rem; font-size: .64rem; }
  .orn { width: 32px; height: 32px; margin-bottom: .55rem; }

  /* play */
  .play-head { margin-bottom: .9rem; }
  .tabla-stage { gap: .9rem; margin-bottom: .9rem; }
  .drum { width: clamp(116px, 30vw, 150px); }
  #bayan { width: clamp(128px, 33vw, 165px); }
  .drum-name { font-size: .98rem; margin-top: .55rem; }
  .drum-name span { font-size: .58rem; }
  .bol-chips { gap: .4rem; margin-bottom: 0; }
  .chip { padding: .38rem .8rem; font-size: .7rem; }
  .chip .dev { font-size: .95rem; }

  /* taal */
  .taal-head { margin-bottom: .7rem; }
  .taal-title { font-size: clamp(1.5rem, 6vw, 1.9rem); margin-bottom: .5rem; }
  .taal-lede { font-size: .86rem; }
  .taal-picker { gap: .4rem; margin-bottom: .6rem; }
  .taal-tab { padding: .42rem 1rem; font-size: .7rem; }
  .taal-note { margin-bottom: .9rem; font-size: .8rem; }
  .taal-body { gap: 1.1rem; }
  .taal-wheel-wrap { width: min(56vw, 210px); }
  .taal-bol-dev { font-size: 2rem; }
  .taal-controls { gap: 1rem; }

  /* learn: the decorative photo would push it over one screen, so on
     phones the slide is the copy alone */
  .learn-photo { display: none; }
  .learn-points { gap: .5rem; margin-bottom: 1.3rem; }
  .learn-points li { font-size: .9rem; }

  /* formats + steps: two columns keep the cards on one screen */
  .formats { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .formats-head { margin-bottom: 1.2rem; }
  .format-card { padding: 1.05rem 1rem; }
  .format-card h3 { font-size: 1.02rem; margin-bottom: .35rem; }
  .format-card p { font-size: .8rem; }
  .f-num { margin-bottom: .5rem; }

  /* schools */
  .schools-grid { gap: 1.1rem; }
  .schools-photo img { aspect-ratio: 16 / 10; max-height: 28vh; }

  /* workshop */
  .schools-quote { margin: .3rem 0 1.1rem; padding-left: 1.1rem; }
  .schools-quote p { font-size: 1.02rem; }
  .steps { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .step h3 { font-size: .98rem; }
  .step p { font-size: .78rem; }

  /* stages */
  .venue-line span { font-size: clamp(1.25rem, 6vw, 1.8rem); }
  .venues { margin-bottom: 1rem; }
  .stages-photo img { max-height: 22vh; }
  .stages-cta { gap: .7rem; }
  .stages-cta p { font-size: .86rem; }

  /* jazzy: three across keeps the six dishes to two rows */
  .jz-cover { width: 58px; height: 58px; margin-bottom: .8rem; font-size: 1.4rem; }
  .jz-grid { grid-template-columns: repeat(3, 1fr); gap: 1.3rem .5rem; margin-top: 1.3rem; }
  .jz-track { gap: .55rem; }
  .jz-btn { width: 76px; height: 76px; }
  .jz-ico { border-width: 9px 0 9px 15px; margin-left: 4px; }
  .jz-eq i { width: 3px; height: 11px; }
  .jz-name { font-size: .78rem; }
  .jz-no { font-size: .54rem; margin-bottom: .12rem; }

  /* contact: compact cards so all three doors fit */
  .paths { gap: .7rem; margin-top: 1.3rem; }
  .path-card { padding: 1rem 1.1rem; gap: .35rem; }
  .path-card .dev { font-size: 1.4rem; }
  .path-card h3 { font-size: 1.08rem; }
  .path-card p { font-size: .82rem; }
}

/* ════════════════════════════════════════════════════════════════
   JAZZY MASALA · album page
   ════════════════════════════════════════════════════════════════ */
.jazzy { text-align: center; }
.jazzy .lede { margin-inline: auto; margin-bottom: 0; }
.jz-cover {
  position: relative; width: 84px; height: 84px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 120% at 50% 26%, rgba(74,53,33,.96), rgba(20,14,9,.97) 72%);
  box-shadow: 0 16px 38px -16px rgba(0,0,0,.7), inset 0 1px 0 rgba(255,236,196,.08);
  font-family: "Tiro Devanagari Hindi", serif; font-size: 1.7rem; color: var(--saffron); isolation: isolate;
}
.jz-cover::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%; z-index: -1;
  background: conic-gradient(from 0deg, rgba(226,167,46,0) 0%, var(--saffron) 16%, var(--chili) 40%, rgba(226,167,46,0) 62%, rgba(226,167,46,0) 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2.5px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2.5px));
  opacity: .7; animation: jzspin 12s linear infinite;
}
.jz-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem 1.4rem;
  max-width: 56rem; margin: 2.4rem auto 0; width: 100%;
}
.jz-track { display: flex; flex-direction: column; align-items: center; gap: 1rem; position: relative; }

/* a dark glass disc with a rotating spectral halo; the play mark dissolves
   into a live equalizer while the track plays */
.jz-btn {
  position: relative; width: 108px; height: 108px; border-radius: 50%; border: 0; cursor: pointer;
  background: radial-gradient(120% 120% at 50% 26%, rgba(74,53,33,.96), rgba(20,14,9,.97) 70%);
  display: flex; align-items: center; justify-content: center; isolation: isolate;
  box-shadow: 0 18px 44px -16px rgba(0,0,0,.75), inset 0 1px 0 rgba(255,236,196,.08), inset 0 -12px 26px rgba(0,0,0,.55);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
/* the spectral halo: a thin conic gradient masked into a ring, always turning */
.jz-btn::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%; z-index: -1;
  background: conic-gradient(from 0deg, rgba(226,167,46,0) 0%, var(--saffron) 16%, var(--chili) 40%, rgba(226,167,46,0) 62%, rgba(226,167,46,0) 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2.5px));
          mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2.5px));
  opacity: .6; transition: opacity .4s;
  animation: jzspin 9s linear infinite;
}
/* soft warm glow, off until the track cooks */
.jz-btn::after {
  content: ""; position: absolute; inset: -20px; border-radius: 50%; z-index: -2;
  background: radial-gradient(circle, rgba(226,69,30,.42), rgba(226,167,46,.14) 46%, transparent 70%);
  opacity: 0; transition: opacity .5s;
}
.jz-btn:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 28px 56px -18px rgba(0,0,0,.8), 0 0 28px -6px rgba(226,167,46,.5); }
.jz-btn:hover::before { opacity: 1; }
.jz-btn:active { transform: scale(.97); }

.jz-track.playing .jz-btn { box-shadow: 0 22px 56px -16px rgba(226,69,30,.5), inset 0 1px 0 rgba(255,236,196,.1); }
.jz-track.playing .jz-btn::before { opacity: 1; animation-duration: 3.4s; }
.jz-track.playing .jz-btn::after { opacity: 1; animation: jzpulse 2.4s ease-in-out infinite; }
@keyframes jzspin { to { transform: rotate(360deg); } }
@keyframes jzpulse { 0%,100% { transform: scale(.9); opacity: .5; } 50% { transform: scale(1.1); opacity: 1; } }

/* the play triangle, shown when idle */
.jz-ico {
  width: 0; height: 0; margin-left: 5px;
  border-style: solid; border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--saffron);
  filter: drop-shadow(0 2px 6px rgba(226,167,46,.45));
  transition: opacity .25s, transform .25s;
}
.jz-track.playing .jz-ico { opacity: 0; transform: scale(.4); }

/* the live equalizer, shown while playing (sits centred in the disc) */
.jz-eq { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 4px; opacity: 0; transition: opacity .3s; }
.jz-eq i { width: 4px; height: 13px; border-radius: 3px; background: linear-gradient(180deg, var(--saffron), var(--chili)); transform: scaleY(.4); }
.jz-track.playing .jz-eq { opacity: 1; }
.jz-track.playing .jz-eq i { animation: jzbar 1s ease-in-out infinite; }
.jz-eq i:nth-child(1) { animation-delay: -.85s; animation-duration: 1.1s; }
.jz-eq i:nth-child(2) { animation-delay: -.35s; animation-duration: .85s; }
.jz-eq i:nth-child(3) { animation-delay: -.6s;  animation-duration: 1.25s; }
.jz-eq i:nth-child(4) { animation-delay: -.15s; animation-duration: .95s; }
.jz-eq i:nth-child(5) { animation-delay: -.5s;  animation-duration: 1.05s; }
@keyframes jzbar { 0%,100% { transform: scaleY(.35); } 50% { transform: scaleY(1.6); } }

.jz-name { font-family: "Fraunces", serif; font-size: 1.1rem; font-weight: 440; }
.jz-no { font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; opacity: .55; display: block; margin-bottom: .25rem; }
.jz-note-fly {
  position: fixed; z-index: 90; pointer-events: none;
  font-size: 1.3rem; color: var(--turmeric);
  text-shadow: 0 2px 14px rgba(226,167,46,.6);
}

/* ── reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .reveal-up { opacity: 1; transform: none; }
}
