/* ==========================================================================
   Leela School of Performing Arts — staging prototype stylesheet
   Palette per vividus-brand-color-direction.md (jewel on white):
   peacock #136F7B · gold #B08918 · crimson #9E1B32 · ink #262626 · white
   Branded house: one system, per-door accent (KDC crimson/gold,
   Fit & Groove peacock, Sangeet Sync gold/rose).
   Prototype-grade — Vividus owns the final visual identity.
   ========================================================================== */

:root {
  --peacock: #136F7B;
  --peacock-soft: #EAF4F5;
  --gold: #B08918;
  --gold-soft: #F8F2E2;
  --crimson: #9E1B32;
  --crimson-soft: #F9EDEF;
  --rose: #C4527A;
  --ink: #262626;
  --ink-soft: #5c5652;
  --ground: #FFFFFF;
  --cream: #FFF4EC;        /* Palette B — dawn tint (was #FBF8F2 cream) */
  --copper: #B85C38;       /* Palette B — utility accent: kickers, rules, tokens */
  --line: #EFE2D6;
  --accent: var(--crimson);
  --accent-soft: var(--crimson-soft);
  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --sans: "Jost", "Avenir Next", "Segoe UI", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ground);
  -webkit-font-smoothing: antialiased;
}

/* Per-door accents (branded house: one system, three accents) */
body.door-kdc     { --accent: var(--crimson); --accent-soft: var(--crimson-soft); }
body.door-groove  { --accent: var(--peacock); --accent-soft: var(--peacock-soft); }
body.door-sangeet { --accent: var(--gold);    --accent-soft: var(--gold-soft); }

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
}

h1 { font-size: clamp(2.05rem, 6.2vw, 3.9rem); letter-spacing: .01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: .75rem; }
h3 { font-size: 1.35rem; margin-bottom: .4rem; }

p + p { margin-top: 1em; }

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

img { max-width: 100%; display: block; }

/* ---------- staging ribbon ---------- */

.proto-ribbon {
  background: var(--ink);
  color: #f5efe2;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  padding: .45rem 1rem;
}
.proto-ribbon strong { color: #e9c766; font-weight: 500; }

/* ---------- header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: .9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.wordmark { line-height: 1.1; }
.wordmark .logo-img { height: 96px; width: auto; display: block; }
.wordmark a { color: var(--ink); text-decoration: none; }
.wordmark .name {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: .02em;
  display: block;
  white-space: nowrap;
}
.wordmark .tagline {
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--copper);
  display: block;
  margin-top: .1rem;
}

.site-nav { margin-left: auto; display: flex; align-items: center; gap: .8rem; }
.site-nav a {
  color: var(--ink-soft);
  font-size: .76rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: .2rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--ink); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--copper); }

.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .68rem 1.5rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none !important;
  transition: filter .15s ease;
}
.btn:hover { filter: brightness(1.12); }
.btn.btn-ghost {
  background: transparent;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
}
.site-nav .btn { padding: .5rem .85rem; font-size: .76rem; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 1.3rem;
  line-height: 1;
  padding: .35rem .6rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 1200px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.4rem 1.4rem;
    gap: .9rem;
  }
  .site-nav.open { display: flex; }
}

@media (max-width: 480px) {
  .wordmark .logo-img { height: 62px; }
  .wordmark .name { font-size: 1.02rem; }
  .wordmark .tagline { font-size: .58rem; }
  .header-inner { gap: .8rem; padding: .8rem 1rem; }
}

/* ---------- layout ---------- */

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.4rem; }
.narrow { max-width: 780px; }

section { padding: 4.2rem 0; }
section.tight { padding: 2.6rem 0; }
section.tinted { background: var(--cream); }
section.accent-tint { background: var(--accent-soft); }

.kicker {
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.lede { font-size: 1.2rem; line-height: 1.75; color: var(--ink-soft); }

.rule {
  width: 64px;
  height: 2px;
  background: var(--copper);
  border: 0;
  margin: 1.6rem 0;
}

/* ---------- hero ---------- */

.hero { padding: 5.5rem 0 4.5rem; }
.hero .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--accent);
  margin: .8rem 0 1.6rem;
}
.hero .lede { max-width: 720px; }
.hero .cta-row { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) { .hero-split { grid-template-columns: 1fr; } }

/* ---------- cards / grids ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.grid-1 { display: grid; grid-template-columns: 1fr; max-width: 560px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.door-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--door, var(--copper));
  padding: 2rem 1.8rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.door-card.kdc     { --door: var(--crimson); }
.door-card.groove  { --door: var(--peacock); }
.door-card.sangeet { --door: var(--gold); }
.door-card .door-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--door);
  margin-bottom: .8rem;
}
.door-card p { flex: 1; color: var(--ink-soft); }
.door-card .card-cta { margin-top: 1.4rem; }
.door-card .card-cta a { color: var(--door); font-size: .9rem; letter-spacing: .05em; text-transform: uppercase; }

.panel {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.8rem;
}

/* ---------- home triptych (v2) ----------
   Show-not-tell: three visual door-cards let a prospect SEE their path
   and self-select at a glance, before reading. Prose follows, trimmed,
   as the subordinate line — cover leads, book follows. */

.hero.compact { padding: 3.4rem 0 3rem; }

.triptych { padding-top: 3.2rem; }

.door-visual {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--door, var(--copper));
  color: var(--ink);
  text-decoration: none;
  transition: box-shadow .18s ease, transform .18s ease;
}
.door-visual:hover {
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(38,38,38,.13);
  transform: translateY(-3px);
}
.door-visual.kdc     { --door: var(--crimson); }
.door-visual.groove  { --door: var(--peacock); }
.door-visual.sangeet { --door: var(--gold); }

.door-visual .door-img {
  border: 0;
  border-bottom: 1px solid var(--line);
  aspect-ratio: 4 / 3;
}

.door-visual-text {
  padding: 1.4rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.door-visual-text h3 { margin-bottom: .1rem; }
.door-visual-text .door-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--door);
  margin-bottom: .6rem;
}
.door-visual-text .door-line { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.door-visual-text .door-go {
  margin-top: 1.2rem;
  color: var(--door);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.door-visual:hover .door-go { text-decoration: underline; text-underline-offset: 3px; }

.triptych-prose {
  max-width: 820px;
  margin: 2.6rem auto 0;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ---------- placeholder media discipline ----------
   Every image on this prototype is unverified archive/illustration media.
   The overlay is mandatory — never present placeholder media as final. */

.ph-media {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--line);
}
.ph-media img { width: 100%; height: 100%; object-fit: cover; }
.ph-media::before {
  content: "PLACEHOLDER";
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(38,38,38,.85);
  color: #f2c94c;
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
  padding: .28rem .8rem .28rem .95rem;
  border-left: 3px solid #f2c94c;
  z-index: 2;
  pointer-events: none;
}
.ph-media::after {
  content: attr(data-ph-note);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(38,38,38,.85));
  color: #f5efe2;
  font-size: .72rem;
  letter-spacing: .04em;
  padding: 2rem .9rem .55rem;
  z-index: 2;
  pointer-events: none;
}
.ph-media.tall { aspect-ratio: 3 / 4; }
.ph-media.wide { aspect-ratio: 16 / 9; }
.ph-media.square { aspect-ratio: 1 / 1; }
.ph-media.standard { aspect-ratio: 4 / 3; }

/* Placeholder tokens carried verbatim from the content draft — visible by design */
.token {
  display: block;
  background: #FDF6E3;
  border: 1px dashed var(--copper);
  border-left: 4px solid var(--copper);
  color: #6e5a1d;
  font-size: .88rem;
  line-height: 1.55;
  padding: .8rem 1rem;
  margin: 1.2rem 0;
}
.token::before {
  content: "OPEN ITEM — awaiting Indira";
  display: block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: .25rem;
}
.token.inline {
  display: inline-block;
  padding: .1rem .55rem;
  margin: 0 .15rem;
  border-left-width: 1px;
  vertical-align: baseline;
}
.token.inline::before { content: none; }

/* Assumptions-ledger tags [A1] etc. — traceability, kept visible on the prototype */
.atag {
  display: inline-block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--peacock);
  background: var(--peacock-soft);
  border: 1px solid #cfe4e6;
  border-radius: 10px;
  padding: 0 .5rem;
  vertical-align: super;
  line-height: 1.5;
}

/* ---------- content blocks ---------- */

blockquote.voice {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  border-left: 3px solid var(--copper);
  padding-left: 1.4rem;
  margin: 1.8rem 0;
}
blockquote.voice cite { display: block; font-family: var(--sans); font-style: normal; font-size: .85rem; color: var(--ink-soft); margin-top: .7rem; }

.list-clean { list-style: none; }
.list-clean li {
  padding: .55rem 0 .55rem 1.5rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 7px; height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
}

.fact-row { display: flex; flex-wrap: wrap; gap: 2.5rem; margin-top: 1.5rem; }
.fact-row .fact { min-width: 150px; }
.fact-row .fact .num { font-family: var(--serif); font-size: 2.1rem; color: var(--accent); line-height: 1.1; }
.fact-row .fact .lbl { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

.town {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: #fff;
  padding: 1.8rem;
  margin-bottom: 1.6rem;
}
.town h3 { display: flex; flex-wrap: wrap; gap: .7rem; align-items: baseline; }
.town h3 .town-note { font-family: var(--sans); font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

.sched { list-style: none; margin-top: 1rem; }
.sched li { padding: .5rem 0; border-top: 1px dotted var(--line); font-size: .98rem; }
.sched li strong { font-weight: 500; }

/* ---------- form ---------- */

.book-form { max-width: 680px; }
.book-form fieldset {
  border: 1px solid var(--line);
  padding: 1.4rem 1.6rem 1.6rem;
  margin-bottom: 1.6rem;
  background: #fff;
}
.book-form legend {
  font-family: var(--serif);
  font-size: 1.2rem;
  padding: 0 .6rem;
}
.book-form label.choice {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  padding: .5rem 0;
  cursor: pointer;
}
.book-form input[type="radio"] { margin-top: .4rem; accent-color: var(--accent); }
.book-form .field { margin-bottom: 1.1rem; }
.book-form .field label { display: block; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .3rem; }
.book-form input[type="text"], .book-form input[type="tel"] {
  width: 100%;
  padding: .7rem .8rem;
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #fff;
}
.book-form input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

.form-proto-note {
  display: none;
  margin-top: 1.2rem;
  background: var(--peacock-soft);
  border: 1px solid var(--peacock);
  color: #0d4f58;
  padding: 1rem 1.2rem;
  font-size: .95rem;
}
.form-proto-note.show { display: block; }

/* ---------- watercolor art system (Home FINAL, 2026-07-07) ----------
   Chosen illustration art presented clean — one consistent frame family,
   no PLACEHOLDER overlays. Honest program-status notes live as small
   text footnotes (.art-note), not image badges. */

.art-media {
  margin: 0;
  background: #FDFCF8;
  border: 1px solid var(--line);
}
.art-media img { width: 100%; display: block; object-fit: cover; }
.art-media.landscape img { aspect-ratio: 4 / 3; }
.art-media.portrait img { aspect-ratio: 3 / 4; object-position: center 18%; }
.art-media figcaption.art-credit {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: right;
  padding: .45rem .7rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

/* Triptych door art — one shared aspect so three source styles read as a family */
.door-visual .art-media.door-img { border: 0; border-bottom: 1px solid var(--line); }
.door-visual .art-media.door-img img { aspect-ratio: 4 / 5; }

.art-note {
  font-size: .74rem;
  font-style: italic;
  color: var(--ink-soft);
  margin-top: .7rem;
}
.door-visual-text .art-note + .door-go { margin-top: .7rem; }

/* Inner-page watercolor pass (2026-07-07): full-figure art crops center,
   not the head-weighted crop tuned for the guru portrait */
.art-media.portrait.full-figure img { object-position: center; }

/* Text-forward hero (no hero image by decision, 2026-07-07) */
.hero.text-only { padding: 4.6rem 0 4rem; text-align: center; }
.hero.text-only .wrap { max-width: 900px; }
.hero.text-only .cta-row { justify-content: center; }
.hero .sub .bar {
  color: var(--copper);
  font-style: normal;
  font-weight: 400;
  margin: 0 .55em;
}
.hero-prose {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.22rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 760px;
  margin: 1.5rem auto 0;
}

/* Full-width watercolor divider band (title art as accent, not a hero) */
.divider-art {
  /* Eight dancers, not four: the artwork is placed beside its own mirror image, so the
     troupe reads as one symmetrical line rather than a small motif adrift in white space.
     Band ground is sampled from the artwork's own paper (#EEE7D4) so the images dissolve
     into the band instead of sitting in visible rectangles. */
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #EEE7D4;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.divider-art img {
  /* `cover` on a short fixed band was slicing the dancers' heads off (Sonya, 2026-07-13).
     Height-driven + width:auto shows each artwork whole. The negative margin pulls the two
     halves together so their paper margins overlap instead of opening a gap at the centre. */
  height: clamp(190px, 23vw, 300px);
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  margin-inline: 0;
}
.divider-art img.mirror { transform: scaleX(-1); }

/* Guru: portrait left, text right; stacks on mobile */
.guru-split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 3rem;
  align-items: center;
}
.guru-portrait { max-width: 420px; }
@media (max-width: 860px) {
  .guru-split { grid-template-columns: 1fr; }
  .guru-portrait { margin: 0 auto; }
}

/* Booking moment: text + namaste art */
.book-split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}
@media (max-width: 860px) { .book-split { grid-template-columns: 1fr; } }

.school-line {
  margin-top: 1.8rem;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

/* ---------- Media & News gallery scaffold (2026-07-07) ----------
   Empty frames awaiting Indira's REAL photos and videos. Deliberately
   NOT filled with the illustrative watercolors — the gallery exists for
   real media only, so every slot stays visibly empty until supplied. */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .gallery-grid { grid-template-columns: 1fr; } }

.media-slot {
  margin: 0;
  border: 1px dashed var(--copper);
  background:
    linear-gradient(160deg, rgba(19,111,123,.05), rgba(176,137,24,.08) 55%, rgba(158,27,50,.05)),
    var(--cream);
  display: flex;
  flex-direction: column;
}
.media-slot .slot-frame {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: 1rem;
  text-align: center;
}
.media-slot.video .slot-frame { aspect-ratio: 16 / 9; }
.media-slot .slot-glyph {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--copper);
}
.media-slot .slot-status {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.media-slot figcaption {
  border-top: 1px dashed var(--copper);
  background: rgba(255,255,255,.65);
  font-size: .78rem;
  font-style: italic;
  color: var(--ink-soft);
  padding: .55rem .8rem;
}
.media-slot.video { grid-column: span 2; }
@media (max-width: 560px) { .media-slot.video { grid-column: auto; } }

/* News/press placeholder list — empty slots, no outlets or links invented */
.press-pending { list-style: none; }
.press-pending li {
  border: 1px dashed var(--line);
  border-left: 4px dashed var(--copper);
  background: var(--cream);
  padding: .9rem 1.1rem;
  margin-bottom: .9rem;
  color: var(--ink-soft);
  font-size: .95rem;
}
.press-pending li .press-slot-label {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: .15rem;
}

/* ---------- Legacy: awards register (2026-07-12 recovered-content integration) ----------
   All 19 dated awards (2008–2023), corroborated across BOTH recovered site
   generations + Indira's confirmation. Two quiet columns; the year leads. */

.awards-list { list-style: none; margin-top: 1.6rem; columns: 2; column-gap: 3rem; }
@media (max-width: 760px) { .awards-list { columns: 1; } }
.awards-list li {
  break-inside: avoid;
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: .6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  color: var(--ink-soft);
}
.awards-list .yr {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--accent);
  flex: 0 0 3.2ch;
}

/* Graduate wall — real recovered Rangapravesam portraits (consent confirmed 2026-07-10) */
.grad-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  margin-top: 1.8rem;
}
@media (max-width: 1000px) { .grad-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .grad-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 430px)  { .grad-grid { grid-template-columns: 1fr; } }
.grad-card { margin: 0; border: 1px solid var(--line); background: #fff; min-width: 0; }
.grad-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.grad-card figcaption {
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: .98rem;
  text-align: center;
  color: var(--ink);
  padding: .55rem .6rem;
  background: #fff;
}

/* ---------- Coming-soon scaffolds (Indira's 2026-07-10 new asks) ----------
   NEW ≠ live: same dashed-gold "pending" vocabulary as the media slots,
   with an explicit COMING badge. Never styled as a running offering. */

.coming-card {
  position: relative;
  border: 1px dashed var(--copper);
  border-left: 4px solid var(--copper);
  background: var(--cream);
  padding: 1.8rem 1.8rem 1.6rem;
  min-width: 0;
}
.coming-card::before {
  content: "COMING — details pending";
  display: inline-block;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--copper);
  padding: .2rem .7rem;
  margin-bottom: 1rem;
}
.coming-card h3 { margin-bottom: .3rem; }
.coming-card .coming-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  margin-bottom: .7rem;
}
.coming-card p { color: var(--ink-soft); font-size: .96rem; }

/* Aspirational-reach strip (advertise-to areas — NOT current class locations) */
.reach-list { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.reach-list span {
  border: 1px dashed var(--copper);
  background: #fff;
  color: var(--ink-soft);
  font-size: .85rem;
  letter-spacing: .05em;
  padding: .3rem .9rem;
  border-radius: 2px;
}

/* ---------- Home contemporary pass (2026-07-12 — Indira's directive) ----------
   "Contemporary, welcoming to our target audience; legacy-based material
   finds a different place." The parent deciding in 20 seconds is the
   protagonist: the free first class surfaces at the door, the practical
   locations rise, and credibility subordinates to ONE quiet section —
   a short lede + a small proof line — instead of a museum wall.
   Nothing legacy was deleted: the full record lives on legacy.html. */

.hero .free-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.32rem;
  color: var(--accent);
  margin-top: 1.4rem;
}
.hero .free-line + .cta-row { margin-top: 1.1rem; }

.guru-portrait.compact { max-width: 320px; }

.proof-line {
  margin-top: 1.6rem;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 2.1;
}
.proof-line .sep { color: var(--copper); margin: 0 .7em; }

.links-row { margin-top: 1.3rem; display: flex; flex-wrap: wrap; gap: 2rem; }

/* ---------- mobile rhythm pass (2026-07-12 — Indira: mobile wasn't optimized) ---------- */
@media (max-width: 560px) {
  section { padding: 3rem 0; }
  section.tight { padding: 2rem 0; }
  .hero { padding: 3.6rem 0 3rem; }
  .hero.text-only { padding: 3.4rem 0 3rem; }
  .hero-split, .guru-split, .book-split { gap: 1.8rem; }
  .fact-row { gap: 1.4rem; }
  .lede { font-size: 1.12rem; }
  .town { padding: 1.4rem 1.2rem; }
  .panel { padding: 1.4rem 1.2rem; }
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  color: #cfc8bd;
  padding: 3.2rem 0 2.4rem;
  font-size: .92rem;
  margin-top: 2rem;
}
.site-footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 800px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: .8rem;
}
.site-footer a { color: #e9c766; }
.site-footer ul { list-style: none; }
.site-footer li { padding: .2rem 0; }
.site-footer .fine {
  border-top: 1px solid #3d3d3d;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  font-size: .78rem;
  color: #8f8a82;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.social-pending { color: #8f8a82; }
.social-pending em { font-size: .78rem; }

/* THE SCHOOL — image left, three small location maps right (2026-07-07) */
.school-split { align-items: start; }
.school-locations h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--ink);
}
.map-stack { display: flex; flex-direction: column; gap: .7rem; }
.map-loc { display: flex; flex-direction: column; }
.map-loc iframe {
  width: 100%;
  height: 78px;
  border: 1px solid var(--line);
  display: block;
  filter: saturate(.9);
}
.map-label {
  font-size: .72rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
  padding: .3rem 0 0;
}
.map-label em { font-style: italic; color: #b08918; }
.school-locations .school-line { text-align: left; margin-top: 1.1rem; font-size: 1rem; }
@media (max-width: 900px) { .map-loc iframe { height: 110px; } }

/* Media gallery — REAL school photos (Media page only; 2026-07-07) */
.media-photo { margin: 0; border: 1px solid var(--line); background: #fff; }
.media-photo img { width: 100%; display: block; aspect-ratio: 4 / 3; object-fit: cover; }
.media-photo figcaption {
  border-top: 1px solid var(--line);
  font-size: .78rem;
  font-style: italic;
  color: var(--ink-soft);
  padding: .55rem .8rem;
}
.recognition-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 1.6rem; }
@media (max-width: 700px) { .recognition-row { grid-template-columns: 1fr; } }

/* ---- Render fix, 2026-07-07 (Sonya: door images oversized + mobile overflow) ---- */
/* Root cause: figure .door-img had aspect-ratio 4/3 while its <img> had 4/5 with no
   clipping, and grid/flex items lacked min-width:0 — so images could not shrink and
   forced horizontal overflow on tablet/phone. One consistent image box fixes all widths. */
html, body { overflow-x: hidden; max-width: 100%; }
h1, h2, h3, p, .door-line, .lede { overflow-wrap: break-word; }

.door-visual { min-width: 0; overflow: hidden; }
.door-visual .art-media.door-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.door-visual .art-media.door-img img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;   /* override the conflicting 4/5 */
  object-fit: contain;
  object-position: center center;
  background: #fff;
  display: block;
}

/* Figure-height parity across the triptych (Sonya, 2026-07-13): the Sangeet art is
   the reference — a wide composition with modest figure height. The KDC and Fit &
   Groove sources are single large figures, so they read far taller in the same box.
   Scale each source so the DANCERS land at a comparable height, not the canvases. */
.door-visual.kdc    .door-img img { transform: scale(0.80); }
.door-visual.groove .door-img img { transform: scale(0.86); }
.door-visual.sangeet .door-img img { transform: scale(1.06); }

/* Any grid/flex media child can shrink (belt-and-suspenders against overflow) */
.grid-3 > *, .grid-2 > * { min-width: 0; }
.art-media img { max-width: 100%; }

/* Door cards stack cleanly and keep a sensible crop height on phones */
@media (max-width: 900px) {
  .door-visual .art-media.door-img { aspect-ratio: 16 / 10; }
}
@media (max-width: 560px) {
  .door-visual .art-media.door-img { aspect-ratio: 3 / 2; }
}

/* ---------- Class Manager prep pass (2026-07-15) ----------
   /book choose-your-class page + policy pages (privacy/terms/media-release).
   Buttons carry {{CM_LINK_*}} swap-tokens and stay inert (main.js) until the
   Class Manager account exists. Prototype-grade — Vividus owns final button art. */

.consent-line {
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 0 0 1.4rem;
  line-height: 1.6;
}

.site-footer .fine .policy-links a { color: #cfc8bd; }
.site-footer .fine .policy-links a:hover { color: #e9c766; }

.policy-body h2 { margin-top: 2.6rem; font-size: 1.45rem; }
.policy-body h2:first-of-type { margin-top: 0; }
.policy-body ul { margin: .8rem 0 .8rem 1.3rem; }
.policy-body li { padding: .2rem 0; color: var(--ink-soft); }
.policy-body p { color: var(--ink-soft); }
.policy-updated {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.6rem;
}

/* Criteria table — "How to choose a Kuchipudi school" (KDC Academy).
   Comparison is against the CRITERIA, never against named competitors: the source was a
   self-ranking "Top 10" listicle on the client's own domain, which burns trust the moment
   a parent notices whose site she is on. The buyer's checklist is the honest asset inside it. */
.table-scroll { overflow-x: auto; margin-top: 2rem; }
table.criteria { width: 100%; border-collapse: collapse; font-size: .95rem; min-width: 640px; }
table.criteria th {
  text-align: left; font-family: 'Jost', sans-serif; font-weight: 500;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--copper); padding: 0 1.2rem .8rem 0; border-bottom: 1px solid var(--accent);
}
table.criteria td { padding: 1.25rem 1.2rem 1.25rem 0; border-bottom: 1px solid var(--line); vertical-align: top; }
table.criteria td:first-child { width: 26%; }
table.criteria td:nth-child(2) { width: 32%; color: var(--ink-soft); font-style: italic; }
table.criteria tr:last-child td { border-bottom: 0; }
