/* =====================================================================
   PRAKASAM TRUST — Design System  (award-level overhaul)
   ---------------------------------------------------------------------
   TABLE OF CONTENTS
   01 TOKENS          design tokens — colour, type, space, motion
   02 RESET / BASE    reset, body, base typography, grain
   03 TYPOGRAPHY      display/text utilities, labels, Kannada
   04 LAYOUT          wrap, section, rhythm, utilities
   05 MEDIA / IMAGERY aspect-ratio boxes + 6 photo treatments
   06 NAV             fixed header, mobile menu
   07 BUTTONS
   08 HERO            homepage hero
   09 MARQUEE
   10 SECTION HEAD    "Act I" headers
   11 CARDS / GRIDS   production cards, featured + archive grids
   12 IMPACT          oxblood numbers band
   13 STORY           editorial split
   14 EVENTS          event rows
   15 PILLARS         three doors
   16 PAGE HEAD       graphic interior headers
   17 TIMELINE
   18 PORTRAITS       founder + advisors
   19 PROGRAMS        learn / festivals alternating
   20 PROD DETAIL
   21 FORMS / CONTACT
   22 FOOTER
   23 MOTION          reveal engine, keyframes, view transitions, RM
   24 RESPONSIVE      mobile-first — sm480 md768 lg1024 xl1440
   ===================================================================== */

/* ===== 01 TOKENS ===================================================== */
:root {
  /* --- RAW PALETTE (never used directly in components) --- */
  --ink: #0a0908;   --ink-2: #14110f;  --ink-3: #1c1916;
  --curtain: #dc2217; --curtain-deep: #4a1418; --curtain-bright: #8f2730;
  --brass: #c9a961; --brass-bright: #e6c87e; --brass-deep: #8a7340;
  --cream: #f5efe0; --paper: #ebe3d0;  --paper-2: #e0d6bd;
  --ash: #6b6660;   --ash-light: #9a9389; --ash-dark: #322e29;
  --lime-spot: #d9e07a;          /* stage-gel accent — used sparingly */

  /* --- SEMANTIC ROLES (components use ONLY these) --- */
  --bg: var(--cream);            --bg-deep: var(--ink);
  --bg-raised: var(--paper);     --bg-stage: var(--curtain);
  --surface: var(--ink-2);
  --text: var(--ink);            --text-muted: var(--ash-dark);
  --text-faint: #5f5a53;
  --text-invert: var(--cream);
  --text-invert-muted: color-mix(in srgb, var(--cream) 74%, transparent);
  --accent: var(--curtain);              /* emphasis on light */
  --accent-on-dark: var(--brass-bright); /* emphasis on dark  */
  --gild: var(--brass);                  /* RESERVED — one hit per section */
  --line: color-mix(in srgb, var(--ink) 16%, transparent);
  --line-strong: color-mix(in srgb, var(--ink) 32%, transparent);
  --line-invert: color-mix(in srgb, var(--cream) 18%, transparent);
  --focus: var(--lime-spot);

  /* --- TYPE: families --- */
  --f-display: 'Fraunces', 'Times New Roman', serif;
  --f-body: 'Instrument Sans', system-ui, -apple-system, sans-serif;
  --f-voice: 'Instrument Serif', 'Times New Roman', serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
  --f-kn: 'Noto Serif Kannada', serif;

  /* --- TYPE: TEXT track (reading) --- */
  --fs-xs:   clamp(0.72rem, 0.70rem + 0.10vw, 0.78rem);
  --fs-sm:   clamp(0.90rem, 0.85rem + 0.10vw, 0.88rem);
  --fs-base: clamp(0.97rem, 0.94rem + 0.18vw, 1.08rem);
  --fs-lg:   clamp(1.14rem, 1.05rem + 0.40vw, 1.40rem);
  --fs-xl:   clamp(1.42rem, 1.20rem + 0.95vw, 2.05rem);

  /* --- TYPE: DISPLAY track (Fraunces, oversized) --- */
  --fd-s:   clamp(1.9rem, 1.45rem + 2.2vw, 3.2rem);
  --fd-m:   clamp(2.7rem, 1.85rem + 4.2vw, 5.6rem);
  --fd-l:   clamp(3.6rem, 2.20rem + 7.0vw, 8.4rem);
  --fd-xl:  clamp(3.6rem, 1.85rem + 9vw, 9.8rem);
  --fd-mega:clamp(7rem, 3rem + 22vw, 27rem);

  /* --- SPACE (4px base) --- */
  --s-3xs: 0.25rem; --s-2xs: 0.5rem; --s-xs: 0.75rem;
  --s-sm: 1rem; --s-md: 1.5rem; --s-lg: 2.5rem;
  --s-xl: 4rem; --s-2xl: 6rem; --s-3xl: 9rem; --s-4xl: 13rem;
  --section-y:   clamp(4rem, 8vw, 9rem);
  --section-y-l: clamp(5.5rem, 12vw, 13rem);

  /* --- LAYOUT --- */
  --max-w: 1500px;
  --max-w-prose: 40rem;
  --gutter: clamp(1.25rem, 4vw, 4rem);

  /* --- RATIOS --- */
  --ar-portrait: 4 / 5;
  --ar-frame: 1 / 1;
  --ar-wide: 16 / 9;

  /* --- MOTION --- */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
  --d-1: 0.25s; --d-2: 0.5s; --d-3: 0.9s;

  --focus-ring: 2px solid var(--focus);
}

/* ===== 02 RESET / BASE ============================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--f-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: 'kern', 'liga', 'ss01';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
::selection { background: var(--accent); color: var(--cream); }

/* film grain — global, faint, composited */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 9999;
  pointer-events: none; opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* focus + skip link */
:focus-visible { outline: var(--focus-ring); outline-offset: 3px; border-radius: 1px; }
:focus:not(:focus-visible) { outline: none; }
.skip-link {
  position: fixed; top: 0; left: 0; z-index: 10000;
  background: var(--ink); color: var(--cream);
  padding: var(--s-sm) var(--s-md); font-family: var(--f-mono);
  font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase;
  transform: translateY(-130%); transition: transform var(--d-1) var(--ease-out);
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ===== 03 TYPOGRAPHY ================================================ */
.fr-display { font-family: var(--f-display); font-weight: 380; font-variation-settings: 'opsz' 144, 'SOFT' 0; letter-spacing: -0.03em; line-height: 0.9; }
.fr-italic  { font-family: var(--f-display); font-style: italic; font-weight: 400; font-variation-settings: 'opsz' 144, 'SOFT' 100; }
.serif-it   { font-family: var(--f-voice); font-style: italic; }
.kannada    { font-family: var(--f-kn); font-weight: 500; line-height: 1.15; }

/* emphasis inside display headings */
.fr-display em, .display em, h1 em, h2 em {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--accent);
}

/* LABEL SYSTEM — four registers */
.label-index {
  font-family: var(--f-mono); font-size: var(--fs-xs);
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint);
}
.label-kicker {
  font-family: var(--f-voice); font-style: italic; font-size: var(--fs-lg);
  color: var(--accent); display: inline-flex; align-items: center; gap: 0.6rem;
}
.label-kicker::before { content: ''; width: 1.6rem; height: 1px; background: var(--accent); flex: none; }
.label-meta {
  font-family: var(--f-body); font-size: var(--fs-sm); font-weight: 500;
  color: var(--text-faint); display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.label-meta > * + *::before { content: '·'; margin-right: 0.5rem; color: var(--gild); }
.label-tag {
  font-family: var(--f-body); font-size: var(--fs-xs); font-weight: 500;
  padding: 0.3rem 0.7rem; border: 1px solid var(--line); border-radius: 999px;
  color: var(--text-muted);
}
.eyebrow { /* legacy alias → kicker */
  font-family: var(--f-voice); font-style: italic; font-size: var(--fs-lg);
  color: var(--accent); display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ''; width: 1.6rem; height: 1px; background: var(--accent); }

/* Kannada watermark — giant outlined graphic */
.kn-mark {
  font-family: var(--f-kn); font-weight: 700; line-height: 1;
  font-size: var(--fd-mega); color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--gild) 40%, transparent);
  position: absolute; pointer-events: none; user-select: none; z-index: 0;
}

/* ===== 04 LAYOUT ==================================================== */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-prose { max-width: 52rem; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }
.section--tight { padding: var(--s-xl) 0; }
.section--raised { background: var(--bg-raised); }
.section--on-dark { background: var(--bg-deep); color: var(--text-invert); }
.section--stage { background: var(--bg-stage); color: var(--text-invert); }
.hairline { height: 1px; background: var(--line); border: 0; margin: 0; }
.u-center { text-align: center; }
.stack-cta { text-align: center; margin-top: var(--s-xl); }
main { display: block; }

/* clip container for oversized type */
.clip { overflow: clip; }

/* ===== 05 MEDIA / IMAGERY =========================================== */
.media {
  position: relative; overflow: hidden; background: var(--ink-3);
  aspect-ratio: var(--ar, 4 / 5);
}
.media > img { width: 100%; height: 100%; object-fit: cover; }
.ar-portrait { --ar: 4 / 5; }
.ar-frame    { --ar: 1 / 1; }
.ar-wide     { --ar: 16 / 9; }

/* — treatment 1: duotone (ink↔curtain). default for production imagery — */
.img-duotone > img, img.img-duotone {
  filter: grayscale(1) contrast(1.15) brightness(1.05);
  transition: filter var(--d-3) var(--ease-out);
}
.img-duotone::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(150deg, var(--curtain-deep), color-mix(in srgb, var(--curtain) 40%, transparent));
  mix-blend-mode: screen; opacity: 0.55;
}
.img-duotone::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background: var(--ink); mix-blend-mode: multiply; opacity: 0.18;
}
/* — treatment 2: heavy grain / archival — */
.img-grain > img { filter: grayscale(0.7) contrast(1.1) blur(0.3px); opacity: 0.92; }
/* — treatment 3: blur field (behind type) — */
.img-blur-field > img { filter: blur(26px) brightness(0.58) saturate(0.85); transform: scale(1.18); }
/* — treatment 4: in-shape (proscenium arch) — */
.img-arch { border-radius: 48% 48% 4px 4px / 30% 30% 4px 4px; }
/* — treatment 5: type-over (dim mood bed) — */
.img-type-over > img { opacity: 0.4; filter: grayscale(0.5) brightness(0.7); }

/* ===== 06 NAV — minimal bar + full-screen overlay menu ============== */
/* A slim fixed bar (logo + trigger) sits on every page; the trigger opens a
   full-screen overlay: a numbered index, a contact column and a visual panel. */

/* --- the persistent bar --- */
/* .nav is only a state hook (.is-open, .nav--light); its two children — the
   bar and the overlay — are each independently fixed, so the bar's flex
   layout can never be affected by the overlay's content. */
.nav__bar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem var(--gutter);
  pointer-events: none;
  border-bottom: 1px solid transparent;
  transition: background var(--d-2) var(--ease-out),
              backdrop-filter var(--d-2) var(--ease-out),
              border-color var(--d-2) var(--ease-out);
}
.nav__bar > * { pointer-events: auto; }

/* dynamic background — fades in once the page is scrolled, so the logo and
   trigger stay legible over the light sections below a dark page-head */
.nav.is-scrolled:not(.is-open) .nav__bar {
  background: color-mix(in srgb, var(--ink) 88%, transparent);
  backdrop-filter: blur(15px) saturate(140%);
  -webkit-backdrop-filter: blur(15px) saturate(140%);
  border-bottom-color: var(--line-invert);
  pointer-events: auto;
}
.nav.is-scrolled .nav__logo,
.nav.is-scrolled .nav__trigger { color: var(--cream); }

.nav__logo { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); transition: color var(--d-1); }
.nav--light .nav__logo, .nav.is-open .nav__logo { color: var(--cream); }
.nav__logo-mark {
  width: 46px; height: 46px; flex: none;
  background: #fff; border-radius: 50%; overflow: hidden;
  display: grid; place-items: center;
}
.nav__logo-mark img { width: 100%; height: 100%; object-fit: cover; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-name { font-family: var(--f-display); font-weight: 500; font-size: 3rem; letter-spacing: -0.01em; }
.nav__logo-sub {
  font-family: var(--f-mono); font-size: 0.85rem; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.6; margin-top: 4px;
}

/* --- trigger button --- */
.nav__trigger { display: flex; align-items: center; gap: 0.7rem; color: var(--ink); transition: color var(--d-1); }
.nav--light .nav__trigger, .nav.is-open .nav__trigger { color: var(--cream); }
.nav__trigger-label { font-family: var(--f-mono); font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase; }
.nav__trigger-close { display: none; }
.nav.is-open .nav__trigger-menu { display: none; }
.nav.is-open .nav__trigger-close { display: inline; }
.nav__trigger-icon { position: relative; width: 26px; height: 14px; flex: none; }
.nav__trigger-icon span {
  position: absolute; left: 0; right: 0; height: 1.6px; background: currentColor;
  transition: transform var(--d-2) var(--ease-out);
}
.nav__trigger-icon span:nth-child(1) { top: 3px; }
.nav__trigger-icon span:nth-child(2) { bottom: 3px; }
.nav__trigger:hover .nav__trigger-icon span:nth-child(1) { transform: translateX(4px); }
.nav.is-open .nav__trigger-icon span:nth-child(1) { transform: translateY(3.2px) rotate(45deg); }
.nav.is-open .nav__trigger-icon span:nth-child(2) { transform: translateY(-3.2px) rotate(-45deg); }

/* --- the overlay --- */
.nav__overlay {
  position: fixed; inset: 0; z-index: 150;
  display: grid; grid-template-columns: 0.62fr 1fr;
  background: var(--ink); color: var(--cream);
  opacity: 0; visibility: hidden;
  transition: opacity var(--d-2) var(--ease-out), visibility 0s linear var(--d-2);
}
.nav.is-open .nav__overlay {
  opacity: 1; visibility: visible;
  transition: opacity var(--d-2) var(--ease-out), visibility 0s;
}

/* visual panel */
.nav__visual { position: relative; overflow: hidden; background: var(--ink-3); }
.nav__visual img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.5) brightness(0.6);
  transform: scale(1.14); transition: transform 1s var(--ease-out);
}
.nav.is-open .nav__visual img { transform: scale(1); }
.nav__visual::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(155deg, color-mix(in srgb, var(--curtain) 60%, transparent), transparent 58%),
    linear-gradient(0deg, color-mix(in srgb, var(--ink) 95%, transparent), transparent 62%);
}
.nav__visual-cap {
  position: absolute; inset: auto var(--gutter) 2.4rem var(--gutter); z-index: 1;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.nav__visual-kn { font-family: var(--f-kn); font-size: clamp(1.5rem, 1rem + 1.5vw, 2.5rem); line-height: 1.25; }
.nav__visual-line { font-family: var(--f-voice); font-style: italic; font-size: var(--fs-lg); color: var(--text-invert-muted); }

/* menu side */
.nav__menu {
  display: flex; flex-direction: column;
  padding: 6.4rem var(--gutter) 1.9rem;
  min-height: 0; overflow-y: auto;
}
.nav__menu-intro {
  display: flex; flex-direction: column; gap: 3px;
  font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--text-invert-muted);
  margin-bottom: 1.5rem;
}
.nav__menu-body {
  flex: 1 1 auto;
  display: grid; grid-template-columns: 1fr 15rem; gap: var(--s-2xl);
  align-items: start;
}

/* numbered index */
.nav__list { display: flex; flex-direction: column; }
.nav__menu-item {
  display: flex; align-items: center; gap: 1.3rem;
  padding: clamp(0.5rem, 0.95vw, 0.95rem) 0.2rem;
  border-top: 1px solid var(--line-invert);
  color: var(--cream);
}
.nav__list .nav__menu-item:last-child { border-bottom: 1px solid var(--line-invert); }
.nav__num {
  font-family: var(--f-mono); font-size: 0.76rem; letter-spacing: 0.04em;
  color: var(--text-invert-muted); transition: color var(--d-1);
}
.nav__label {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.55rem, 1rem + 1.6vw, 2.6rem); line-height: 1;
  letter-spacing: -0.02em;
  transition: transform var(--d-2) var(--ease-out), color var(--d-1);
}
.nav__arrow {
  margin-left: auto; font-size: 1.35rem; color: var(--accent-on-dark);
  opacity: 0; transform: translateX(-14px);
  transition: opacity var(--d-1), transform var(--d-2) var(--ease-out);
}
.nav__menu-item:hover .nav__label,
.nav__menu-item:focus-visible .nav__label { transform: translateX(13px); color: var(--accent-on-dark); }
.nav__menu-item:hover .nav__num,
.nav__menu-item:focus-visible .nav__num { color: var(--accent-on-dark); }
.nav__menu-item:hover .nav__arrow,
.nav__menu-item:focus-visible .nav__arrow { opacity: 1; transform: translateX(0); }
.nav__menu-item.is-active .nav__label,
.nav__menu-item.is-active .nav__num { color: var(--accent-on-dark); }
.nav__menu-item.is-active .nav__arrow { opacity: 1; transform: translateX(0); }

/* contact / meta column */
.nav__meta { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 0.3rem; }
.nav__meta-group {
  display: flex; flex-direction: column; gap: 0.3rem;
  font-family: var(--f-mono); font-size: 0.85rem; line-height: 1.5; color: var(--text-invert-muted);
}
.nav__meta-label {
  font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-on-dark); margin-bottom: 0.2rem;
}
.nav__meta-group a { transition: color var(--d-1); }
.nav__meta-group a:hover { color: var(--cream); }

/* footer strip */
.nav__menu-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-md); margin-top: 1.5rem; padding-top: 1.4rem;
  border-top: 1px solid var(--line-invert);
  font-family: var(--f-mono); font-size: 0.66rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--text-invert-muted);
}
.nav__foot-kn { font-family: var(--f-kn); font-size: 0.95rem; letter-spacing: 0; text-transform: none; }

/* entrance stagger */
.nav__menu-intro, .nav__menu-item, .nav__meta-group, .nav__menu-foot {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.nav.is-open .nav__menu-intro,
.nav.is-open .nav__menu-item,
.nav.is-open .nav__meta-group,
.nav.is-open .nav__menu-foot { opacity: 1; transform: none; }
.nav.is-open .nav__menu-item { transition-delay: calc(0.1s + var(--i) * 0.045s); }
.nav.is-open .nav__menu-foot { transition-delay: 0.5s; }

/* ===== 07 BUTTONS =================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.95rem 1.7rem; font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.01em; border-radius: 0;
  transition: transform var(--d-1) var(--ease-out), background var(--d-1), color var(--d-1);
}
.btn--primary { background: var(--gild); color: var(--ink); }
.btn--primary:hover { background: var(--brass-bright); transform: translateY(-3px); }
.btn--ink { background: var(--ink); color: var(--cream); }
.btn--ink:hover { background: var(--curtain); transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--cream); border: 1px solid var(--line-invert); }
.btn--ghost:hover { background: color-mix(in srgb, var(--cream) 10%, transparent); border-color: var(--cream); }
.btn--text {
  padding: 0.2rem 0; border-radius: 0; border-bottom: 1.5px solid currentColor;
  font-family: var(--f-voice); font-style: italic; font-size: 1.15rem; color: var(--accent);
}
.btn--text:hover { color: var(--curtain-bright); }
/* oxblood is illegible on dark backgrounds — switch the text link to brass */
.hero .btn--text,
.section--on-dark .btn--text,
.section--stage .btn--text,
.footer .btn--text { color: var(--accent-on-dark); }
.hero .btn--text:hover,
.section--on-dark .btn--text:hover,
.section--stage .btn--text:hover,
.footer .btn--text:hover { color: var(--cream); }
.btn__arrow { display: inline-block; transition: transform var(--d-1) var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(5px); }

/* ===== 08 HERO ====================================================== */
.hero {
  position: relative; min-height: 100svh; background: var(--ink);
  color: var(--cream); overflow: clip; display: flex; flex-direction: column;
  justify-content: flex-end; padding-top: 6rem;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 32%;
  opacity: 0.36; /*filter: blur(30px) brightness(0.6) saturate(0.85); */ transform: scale(1.2);
}
.hero__bg::before {
  content: ''; position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse 60% 48% at 50% 30%, color-mix(in srgb, var(--gild) 16%, transparent), transparent 62%),
    linear-gradient(180deg, color-mix(in srgb, var(--ink) 72%, transparent) 0%, color-mix(in srgb, var(--ink) 55%, transparent) 42%, var(--ink) 92%);
}
.hero__kn-mark {
  position: absolute; top: 7rem; z-index: 1;
  font-family: var(--f-kn); font-weight: 700; line-height: 0.9;
  font-size: clamp(4rem, 12.5vw, 15rem); color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--gild) 30%, #000);
  white-space: nowrap; pointer-events: none;
}
.hero__content {
  position: relative; z-index: 3; width: 100%;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--gutter) clamp(2.5rem, 5vw, 4.5rem);
}
.hero__title-kn {
  font-family: var(--f-kn); font-weight: 600;
  font-size: clamp(5rem, 6vw, 6rem); color: var(--gild);
  margin-bottom: 0.6rem; letter-spacing: 0.01em;
}
.hero__title {
  font-family: var(--f-display); font-weight: 360;
  font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: var(--fd-xl); line-height: 0.86; letter-spacing: -0.04em;
  margin-bottom: var(--s-md); max-width: 13ch;
}
.hero__title em {
  font-style: italic; font-weight: 400; color: var(--accent-on-dark);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.hero__title .word { display: inline-block; }
.hero__sub {
  max-width: 50rem; font-family: var(--f-voice); font-style: italic;
  font-size: var(--fs-xl); line-height: 1.4;
  color: var(--text-invert-muted); margin-bottom: var(--s-lg);
}
.hero__actions { display: flex; align-items: center; gap: var(--s-md); flex-wrap: wrap; margin-bottom: var(--s-xl); }
.hero__meta {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-md);
  border-top: 1px solid var(--line-invert); padding-top: var(--s-md);
}
.hero__meta-block { display: flex; flex-direction: column; gap: 0.3rem; }
.hero__meta-label {
  font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gild);
}
.hero__meta-value { font-family: var(--f-display); font-size: 1.05rem; line-height: 1.2; }
.hero__scroll {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-invert-muted); z-index: 3;
}

/* ===== 09 MARQUEE =================================================== */
.marquee {
  background: var(--ink); color: var(--cream); overflow: hidden;
  border-block: 1px solid var(--line-invert); padding: 0.9rem 0;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.marquee__track { display: flex; white-space: nowrap; width: max-content; animation: marquee 64s linear infinite; }
.marquee__track--rev { animation-direction: reverse; animation-duration: 78s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 1.5rem; padding: 0 1.6rem; color: var(--cream);
}
.marquee__track span::after { content: '·'; margin-left: 3.2rem; color: var(--line-invert); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== 10 SECTION HEAD ============================================== */
.section-head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: var(--s-lg);
  align-items: end; padding-bottom: var(--s-lg);
  border-bottom: 1px solid var(--line); margin-bottom: var(--s-xl);
}
.section--on-dark .section-head, .section--stage .section-head { border-color: var(--line-invert); }
.section-head__num { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-faint); }
.section--on-dark .section-head__num, .section--stage .section-head__num { color: var(--gild); }
.section-head__title {
  font-family: var(--f-display); font-weight: 380; font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: var(--fd-m); line-height: 0.92; letter-spacing: -0.03em; margin-top: 0.6rem;
}
.section-head__title em { color: var(--accent); }
.section--on-dark .section-head__title em, .section--stage .section-head__title em { color: var(--accent-on-dark); }
.section-head__intro {
  font-family: var(--f-voice); font-style: italic; font-size: var(--fs-lg);
  line-height: 1.5; color: #e6c980; max-width: 34rem;
}
.section--on-dark .section-head__intro, .section--stage .section-head__intro { color: var(--text-invert-muted); }

/* shared editorial heading */
.editorial-title {
  font-family: var(--f-display); font-weight: 380; font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: var(--fd-m); line-height: 0.95; letter-spacing: -0.03em;
}

/* ===== 11 CARDS / GRIDS ============================================= */
.production-card { position: relative; display: flex; flex-direction: column; gap: var(--s-sm); }
.production-card .media, .production-card__media {
  position: relative; overflow: hidden; background: var(--ink-3);
  aspect-ratio: var(--ar, 4 / 5); border: 1px solid var(--line);
}
.production-card__img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(0.9) brightness(1.3);
  transition: transform var(--d-3) var(--ease-out), filter var(--d-3) var(--ease-out);
}
.production-card__media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(155deg, var(--curtain-bright), color-mix(in srgb, var(--curtain) 50%, transparent));
  mix-blend-mode: screen; opacity: 0.6; transition: opacity var(--d-2);
}
.production-card:hover .production-card__img { transform: scale(1.05); filter: grayscale(0) contrast(1.05); }
.production-card:hover .production-card__media::after { opacity: 0; }
.production-card__year { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.production-card__title {
  font-family: var(--f-display); font-weight: 400; font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: var(--fd-s); line-height: 1; letter-spacing: -0.025em; margin-top: 0.3rem;
}
.production-card__kn { font-family: var(--f-kn); font-size: 1rem; color: var(--accent); margin-top: 0.25rem; }
.production-card__meta { margin-top: 0.5rem; font-family: var(--f-body); font-size: var(--fs-sm); color: var(--text-faint); display: flex; gap: 0.5rem; flex-wrap: wrap; }
.production-card__meta span + span::before { content: '·'; margin-right: 0.5rem; color: var(--gild); }

/* featured grid — deterministic */
.productions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-lg) var(--s-md); }
.production-card--lg { grid-column: 1 / -1; }
.production-card--lg .media, .production-card--lg .production-card__media { aspect-ratio: 16 / 9; }
.production-card--lg .production-card__title { font-size: var(--fd-m); }
.production-card--md:nth-of-type(3) { margin-top: clamp(0rem, 6vw, 5rem); }

/* archive grid — intrinsic, never fragile */
.prod-archive { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 17rem), 1fr)); gap: var(--s-lg) var(--s-md); }
.prod-archive .production-card .media, .prod-archive .production-card__media { aspect-ratio: 1 / 1; }

/* filter bar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: var(--s-md) 0; border-bottom: 1px solid var(--line); margin-bottom: var(--s-xl); }
.filter-chip {
  font-size: 0.84rem; padding: 0.5rem 1.05rem; border: 1px solid var(--line-strong);
  border-radius: 999px; color: var(--text); transition: background var(--d-1), color var(--d-1), border-color var(--d-1);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); box-shadow: 0 2px 0 var(--lime-spot); }

/* ===== 12 IMPACT (oxblood stage) ==================================== */
.impact { background: var(--bg-stage); color: var(--cream); padding: var(--section-y-l) 0; position: relative; overflow: clip; }
.impact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 60% at 50% 110%, var(--curtain-deep), transparent 70%); }
.impact .wrap { position: relative; z-index: 1; }
.impact__head {
  font-family: var(--f-voice); font-style: italic; font-size: var(--fs-xl);
  color: var(--brass-bright); max-width: 32rem; margin-bottom: var(--s-xl);
}
.impact__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-invert); }
.impact__cell { background: var(--curtain); padding: var(--s-lg) var(--s-md); position: relative; overflow: clip; }
.impact__num {
  font-family: var(--f-display); font-weight: 380; font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: clamp(3.6rem, 7vw, 6rem); line-height: 0.85; letter-spacing: -0.04em;
  color: var(--cream); display: block;
}
.impact__num sup { font-size: 0.32em; color: var(--brass-bright); vertical-align: super; }
.impact__label { margin-top: 0.7rem; font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-bright); }
.impact__desc { margin-top: 0.35rem; font-family: var(--f-voice); font-style: italic; font-size: var(--fs-sm); color: var(--text-invert-muted); }

/* ===== 13 STORY ===================================================== */
.story { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s-2xl); align-items: center; }
.story__art { position: relative; }
.story__art .media, .story__art > .img-arch { aspect-ratio: 4 / 5; }
.story__art img { width: 100%; height: 100%; object-fit: cover; }
.story__art-caption {
  position: absolute; bottom: -1.2rem; left: 1.2rem;
  background: var(--cream); color: var(--text-muted); padding: 0.5rem 0.9rem;
  font-family: var(--f-voice); font-style: italic; font-size: var(--fs-sm);
  border-left: 2px solid var(--gild);
}
.story__body { display: flex; flex-direction: column; gap: var(--s-md); }
.story__title {
  font-family: var(--f-display); font-weight: 380; font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: var(--fd-m); line-height: 0.95; letter-spacing: -0.03em;
}
.story__title em { color: var(--accent); }
.story__title .kannada { display: block; font-size: 0.42em; color: var(--accent); margin-top: 0.6rem; }
.story__lede { font-family: var(--f-voice); font-style: italic; font-size: var(--fs-xl); line-height: 1.4; color: var(--text-muted); }
.story__body p { color: var(--text-muted); line-height: 1.75; }
.story__sign { margin-top: 0.4rem; display: flex; gap: 0.8rem; align-items: center; font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.story__sign::before { content: ''; width: 2.4rem; height: 1px; background: var(--gild); }

/* ===== 14 EVENTS ==================================================== */
.events-list { border-top: 1px solid var(--line-invert); }
.section--on-dark .events-list { border-color: var(--line-invert); }
.event-row {
  display: grid; grid-template-columns: minmax(4.5rem, 6rem) 1.6fr 1fr auto;
  gap: var(--s-md); align-items: center; padding: var(--s-md) 0;
  border-bottom: 1px solid var(--line-invert); position: relative;
  overflow: hidden;
}
.event-row::after {
  content: '→'; position: absolute; right: 0.2rem; font-family: var(--f-display);
  font-size: 1.5rem; color: var(--gild); opacity: 0; transform: translateX(-12px);
  transition: opacity var(--d-2), transform var(--d-2) var(--ease-out);
}
.event-row > * { transition: transform var(--d-2) var(--ease-out); }
.event-row:hover > * { transform: translateX(0.7rem); }
.event-row:hover::after { opacity: 1; transform: translateX(0); }
.event-row__date { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-invert-muted); }
.event-row__date strong {
  display: block; font-family: var(--f-display); font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3rem); color: var(--accent-on-dark); letter-spacing: -0.03em; margin-bottom: 0.1rem;
}
.event-row__title { font-family: var(--f-display); font-weight: 400; font-size: var(--fd-s); line-height: 1.02; letter-spacing: -0.025em; }
.event-row__title em { color: var(--accent-on-dark); }
.event-row__meta { font-size: var(--fs-sm); color: var(--text-invert-muted); line-height: 1.4; }
.event-row__tag { justify-self: end; font-family: var(--f-body); font-size: var(--fs-xs); padding: 0.32rem 0.7rem; border: 1px solid var(--line-invert); border-radius: 999px; color: var(--text-invert-muted); }

/* ===== 15 PILLARS =================================================== */
.pillars { background: var(--ink); color: var(--cream); padding: var(--section-y) 0; }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-invert); }
.pillar {
  padding: var(--s-lg) var(--s-md); border-right: 1px solid var(--line-invert);
  border-bottom: 1px solid var(--line-invert); display: flex; flex-direction: column;
  gap: var(--s-sm); position: relative; overflow: hidden; transition: background var(--d-2);
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: color-mix(in srgb, var(--curtain) 32%, transparent); }
.pillar__num { font-family: var(--f-display); font-size: clamp(3rem, 5vw, 4.5rem); line-height: 0.8; color: var(--line-invert); }
.pillar__title { font-family: var(--f-display); font-weight: 400; font-size: var(--fd-s); line-height: 1; letter-spacing: -0.02em; }
.pillar__title em { color: var(--accent-on-dark); }
.pillar__kn { font-family: var(--f-kn); font-weight: 600; font-size: 1.3rem; color: var(--accent-on-dark); margin-top: 0.2rem; }
.pillar__body { color: var(--text-invert-muted); line-height: 1.65; font-size: var(--fs-sm); flex: 1; }
.pillar__link { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.88rem; color: var(--gild); border-bottom: 1px solid currentColor; padding-bottom: 0.2rem; align-self: flex-start; transition: gap var(--d-1); }
.pillar__link:hover { gap: 0.8rem; }

/* CTA strip */
.cta-strip { background: var(--curtain); color: var(--cream); text-align: center; padding: var(--section-y) var(--gutter); }
.cta-strip h2 { font-family: var(--f-display); font-weight: 380; font-size: var(--fd-m); line-height: 0.95; letter-spacing: -0.03em; margin-bottom: var(--s-md); }
.cta-strip h2 em { color: var(--accent-on-dark); }

/* ===== 16 PAGE HEAD (graphic) ======================================= */
.page-head {
  background: var(--ink); color: var(--cream); position: relative; overflow: clip;
  padding: clamp(8rem, 16vw, 12rem) 0 var(--s-2xl);
}
.page-head::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 60% at 78% 36%, color-mix(in srgb, var(--gild) 14%, transparent), transparent 62%);
}
.page-head__kn-mark {
  position: absolute; right: -1vw; bottom: -3rem; z-index: 0;
  font-family: var(--f-kn); font-weight: 700; line-height: 0.85;
  font-size: clamp(7rem, 22vw, 22rem); color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--gild) 22%, transparent);
  pointer-events: none; user-select: none;
}
.page-head .wrap { position: relative; z-index: 1; }
.page-head__crumb { font-family: var(--f-voice); font-style: italic; font-size: var(--fs-lg); color: var(--gild); margin-bottom: var(--s-md); display: inline-flex; align-items: center; gap: 0.6rem; }
.page-head__crumb::before { content: ''; width: 1.6rem; height: 1px; background: var(--gild); }
.page-head__title {
  font-family: var(--f-display); font-weight: 360; font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: var(--fd-l); line-height: 0.86; letter-spacing: -0.04em; margin-bottom: var(--s-md);
}
.page-head__title em { color: var(--accent-on-dark); }
.page-head__kn { font-family: var(--f-kn); font-weight: 600; font-size: clamp(1.6rem, 4vw, 3rem); color: var(--gild); margin-bottom: var(--s-md); }
.page-head__lede { font-family: var(--f-voice); font-style: italic; font-size: var(--fs-xl); max-width: 42rem; color: var(--text-invert-muted); line-height: 1.4; }

/* ===== 17 TIMELINE ================================================== */
.timeline { display: flex; flex-direction: column; gap: var(--s-xl); margin-top: var(--s-lg); }
.tl-item { display: grid; grid-template-columns: minmax(7rem, 12rem) 1fr; gap: var(--s-lg); align-items: start; padding-bottom: var(--s-xl); border-bottom: 1px solid var(--line); }
.tl-item:last-child { border-bottom: 0; }
.tl-year { font-family: var(--f-display); font-weight: 380; font-size: var(--fd-s); line-height: 0.9; letter-spacing: -0.03em; color: var(--accent); }
.tl-title { font-family: var(--f-display); font-weight: 400; font-size: var(--fs-xl); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 0.5rem; }
.tl-title em { color: var(--accent); }
.tl-body { color: var(--text-muted); line-height: 1.7; max-width: 38rem; }

/* ===== 18 PORTRAITS + TEAM ========================================== */
.portrait { position: relative; overflow: hidden; background: var(--ink-3); aspect-ratio: 1; }
.portrait img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(0.95) brightness(1.2); }
.portrait::after { content: ''; position: absolute; inset: 0; background: linear-gradient(150deg, var(--curtain), transparent 72%); mix-blend-mode: screen; opacity: 0.5; }
.portrait--arch { border-radius: 46% 46% 3px 3px / 28% 28% 3px 3px; }

/* Founder feature — small, sharp portrait; the name carries the section */
.founder { display: grid; grid-template-columns: 200px 1fr; gap: var(--s-2xl); align-items: start; }
.founder__aside { display: flex; flex-direction: column; gap: var(--s-sm); position: sticky; top: 7rem; }
.founder__aside .portrait { width: 156px; border-radius: 50%; box-shadow: 0 0 0 1px var(--line); }
.founder__aside .portrait--arch { border-radius: 46% 46% 3px 3px / 28% 28% 3px 3px; }
.founder__tag { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.founder__body > * + * { margin-top: var(--s-sm); }
.founder__body .story__title { margin-bottom: var(--s-2xs); }

/* Founder — large square screenprint portrait (team page only) */
.founder--lg { grid-template-columns: clamp(300px, 32vw, 400px) 1fr; }
.founder__media {
  position: relative; overflow: hidden; width: 100%;
  background: var(--ink); aspect-ratio: 1 / 1; border-top: 3px solid var(--gild);
}
.founder__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
@media (max-width: 900px) {
  .founder--lg { grid-template-columns: 1fr; }
  .founder--lg .founder__aside { position: static; flex-direction: column; align-items: stretch; }
}

/* Advisor features — large alternating editorial rows */
.advisor-features { display: flex; flex-direction: column; gap: clamp(2.5rem, 6vw, 7rem); }
.advisor-feature {
  display: grid;
  grid-template-columns: 1fr clamp(260px, 32vw, 400px);
  gap: clamp(var(--s-lg), 5vw, var(--s-2xl));
  align-items: center;
}
.advisor-feature:nth-child(even) { grid-template-columns: clamp(260px, 32vw, 400px) 1fr; }
.advisor-feature:nth-child(even) .advisor-feature__media { order: -1; }
.advisor-feature__media {
  position: relative; overflow: hidden; background: var(--ink);
  aspect-ratio: 1 / 1; border-top: 3px solid var(--gild);
}
.advisor-feature__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.advisor-feature__name { font-family: var(--f-display); font-weight: 380; font-size: var(--fd-m); line-height: 0.95; letter-spacing: -0.03em; }
.advisor-feature__role { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-top: var(--s-2xs); }
.advisor-feature__rule { width: 3rem; height: 2px; background: var(--gild); margin: var(--s-md) 0; }
.advisor-feature__bio { color: var(--text-muted); font-size: var(--fs-lg); line-height: 1.6; }
@media (max-width: 820px) {
  .advisor-feature, .advisor-feature:nth-child(even) { grid-template-columns: 1fr; gap: var(--s-md); }
  .advisor-feature:nth-child(even) .advisor-feature__media { order: 0; }
}

/* ===== 19 PROGRAMS ================================================== */
.program { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--s-2xl); align-items: center; padding: var(--s-2xl) 0; border-bottom: 1px solid var(--line); }
.program:first-of-type { border-top: 1px solid var(--line); }
.program:nth-child(even) .program__media { order: 2; }
.program__media { aspect-ratio: 16 / 11; position: relative; overflow: hidden; background: var(--ink-3); }
.program__media img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(0.9) brightness(1.3); }
.program__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(155deg, var(--curtain-bright), color-mix(in srgb, var(--curtain) 50%, transparent)); mix-blend-mode: screen; opacity: 0.6; }
.program__num { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.program__title { font-family: var(--f-display); font-weight: 380; font-size: var(--fd-s); line-height: 1; letter-spacing: -0.025em; margin: 0.5rem 0 0.3rem; }
.program__title em { color: var(--accent); }
.program__kn { font-family: var(--f-kn); font-weight: 600; color: var(--accent); font-size: 1.25rem; margin-bottom: var(--s-sm); }
.program__body { color: var(--text-muted); line-height: 1.7; margin-bottom: var(--s-md); }
.program__details { display: flex; gap: var(--s-lg); flex-wrap: wrap; margin-bottom: var(--s-md); }
.program__details > div { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
.program__details strong { display: block; font-family: var(--f-display); font-weight: 400; font-size: 1.1rem; letter-spacing: 0; text-transform: none; color: var(--text); margin-top: 0.25rem; }

/* alumni / support shared dark blocks */
.alumni, .support { display: grid; grid-template-columns: 1fr 1.3fr; gap: var(--s-2xl); align-items: center; }
.alumni__title, .support__title { font-family: var(--f-display); font-weight: 380; font-size: var(--fd-m); line-height: 0.95; letter-spacing: -0.03em; }
.alumni__title em, .support__title em { color: var(--accent-on-dark); }
.alumni p, .support p { color: var(--text-invert-muted); line-height: 1.75; font-size: var(--fs-base); }
.alumni p + p { margin-top: var(--s-sm); }

/* pull-quote */
.pull-quote { background: var(--ink); color: var(--cream); text-align: center; padding: var(--section-y-l) 0; }
.pull-quote__text { font-family: var(--f-display); font-style: italic; font-weight: 400; font-variation-settings: 'opsz' 144, 'SOFT' 100; font-size: var(--fd-s); line-height: 1.3; letter-spacing: -0.015em; }
.pull-quote__by { margin-top: var(--s-md); font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.18em; text-transform: uppercase; color: var(--gild); }

/* ===== 20 PROD DETAIL =============================================== */
.prod-hero { background: var(--ink); color: var(--cream); position: relative; overflow: clip; padding: clamp(8rem, 15vw, 11rem) 0 var(--s-2xl); }
.prod-hero__grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: var(--s-2xl); align-items: end; }
.prod-hero__back { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gild); margin-bottom: var(--s-lg); display: inline-block; }
.prod-hero__meta { display: flex; gap: var(--s-md); flex-wrap: wrap; font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-invert-muted); margin-bottom: var(--s-md); }
.prod-hero__kn { font-family: var(--f-kn); font-weight: 600; font-size: clamp(2.5rem, 7vw, 5.5rem); color: var(--gild); line-height: 1; margin-bottom: 0.4rem; }
.prod-hero__title { font-family: var(--f-display); font-weight: 360; font-size: var(--fd-l); line-height: 0.86; letter-spacing: -0.04em; }
.prod-hero__still { aspect-ratio: 4 / 5; position: relative; overflow: hidden; background: var(--ink-3); border: 1px solid var(--line-invert); }
.prod-hero__still img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(0.92) brightness(1.25); }
.prod-hero__still::after { content: ''; position: absolute; inset: 0; background: linear-gradient(155deg, var(--curtain-bright), color-mix(in srgb, var(--curtain) 50%, transparent)); mix-blend-mode: screen; opacity: 0.55; }
.prod-detail { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--s-2xl); }
.prod-detail__synopsis { font-family: var(--f-voice); font-style: italic; font-size: var(--fs-xl); line-height: 1.35; color: var(--accent); margin: var(--s-sm) 0 var(--s-md); }
.prod-detail p { color: var(--text-muted); line-height: 1.75; margin-bottom: var(--s-sm); }
.prod-credits { background: var(--paper); padding: var(--s-lg); border-top: 2px solid var(--gild); }
.prod-credits dl { display: grid; gap: var(--s-md); margin-top: var(--s-md); }
.prod-credits dt { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.25rem; }
.prod-credits dd { font-family: var(--f-display); font-size: 1.2rem; }

/* ===== 21 FORMS / CONTACT =========================================== */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: var(--s-2xl); }
.contact-info { display: flex; flex-direction: column; gap: var(--s-md); }
.contact-info__block { padding-bottom: var(--s-md); border-bottom: 1px solid var(--line); }
.contact-info__block:last-child { border-bottom: 0; }
.contact-info__label { font-family: var(--f-voice); font-style: italic; font-size: var(--fs-base); color: var(--accent); margin-bottom: 0.3rem; }
.contact-info__value { font-family: var(--f-display); font-size: 1.3rem; line-height: 1.3; }
.contact-info__value a:hover { color: var(--accent); }

.form { display: grid; gap: var(--s-md); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-md); }
.form__field { display: flex; flex-direction: column; gap: 0.35rem; }
.form__label { font-family: var(--f-voice); font-style: italic; font-size: var(--fs-base); color: var(--text-muted); }
.form__input, .form__textarea, .form__select {
  font-family: var(--f-body); font-size: 1rem; padding: 0.85rem 1rem;
  background: var(--cream); border: 1px solid var(--line-strong); border-radius: 0;
  color: var(--ink); transition: border-color var(--d-1), box-shadow var(--d-1);
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none; border-color: var(--focus);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lime-spot) 45%, transparent);
}
.form__textarea { min-height: 9rem; resize: vertical; }
.form__notice { font-family: var(--f-voice); font-style: italic; padding: var(--s-sm) var(--s-md); border-left: 3px solid var(--gild); background: color-mix(in srgb, var(--gild) 12%, transparent); color: var(--text-muted); }
.form__notice--success { border-left-color: #4a7a3c; background: color-mix(in srgb, var(--lime-spot) 22%, transparent); }
.form__notice--error { border-left-color: var(--curtain); background: color-mix(in srgb, var(--curtain) 12%, transparent); }

/* ===== 22 FOOTER ==================================================== */
.footer { background: var(--ink-2); color: var(--cream); padding: var(--s-2xl) 0 var(--s-md); position: relative; overflow: clip; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--s-xl); align-items: start; padding-bottom: var(--s-xl); border-bottom: 1px solid var(--line-invert); }
.footer__logo { width: 3.6rem; height: 3.6rem; border-radius: 50%; background: #fff; object-fit: cover; margin-bottom: var(--s-sm); }
.footer__brand-title { font-family: var(--f-display); font-weight: 400; font-size: var(--fd-s); line-height: 1; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.footer__brand-title em { color: var(--accent-on-dark); }
.footer__brand-kn { font-family: var(--f-kn); font-weight: 600; font-size: 1.5rem; color: var(--gild); margin-bottom: var(--s-sm); }
.footer__brand-desc { color: color-mix(in srgb, var(--cream) 86%, transparent); font-size: var(--fs-base); line-height: 1.6; max-width: 24rem; }
.footer__col h4 { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gild); margin-bottom: var(--s-sm); font-weight: 400; }
.footer__col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer__col a { font-size: var(--fs-base); color: color-mix(in srgb, var(--cream) 86%, transparent); transition: color var(--d-1); }
.footer__col a:hover { color: var(--accent-on-dark); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: var(--s-md); flex-wrap: wrap; padding-top: var(--s-md); font-family: var(--f-mono); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-invert-muted); }
.footer__social { display: flex; gap: 0.6rem; }
.footer__social a {
  display: grid; place-items: center; width: 3rem; height: 3rem;
  border-radius: 50%; border: 1px solid var(--line-invert);
  color: color-mix(in srgb, var(--cream) 86%, transparent);
  transition: background var(--d-1), color var(--d-1), border-color var(--d-1);
}
.footer__social a:hover { background: var(--accent-on-dark); color: var(--ink); border-color: transparent; }
.footer__social svg { width: 30px; height: 30px; }

/* ===== 23 MOTION ==================================================== */
/* reveal engine — JS adds .is-revealed; non-JS shows everything */
.js [data-reveal] { opacity: 0; will-change: transform, opacity; }
.js [data-reveal="up"]   { transform: translateY(34px); }
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal="clip"] { clip-path: inset(0 0 100% 0); transform: none; }
[data-reveal] {
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out), clip-path 0.9s var(--ease-out);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
}
[data-reveal].is-revealed { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }

/* hero entrance — word stagger */
@keyframes word-rise { from { opacity: 0; transform: translateY(0.5em) rotate(2deg); } to { opacity: 1; transform: none; } }
@keyframes soft-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes curtain { from { clip-path: inset(0 50% 0 50%); } to { clip-path: inset(0 0 0 0); } }
.hero__bg { animation: curtain 1.1s var(--ease-out) both; }
.hero__title .word { display: inline-block; animation: word-rise 0.9s var(--ease-out) both; animation-delay: calc(0.4s + var(--w, 0) * 0.08s); }
.hero__title-kn { animation: soft-rise 0.9s var(--ease-out) 0.25s both; }
.hero__sub { animation: soft-rise 0.9s var(--ease-out) 0.95s both; }
.hero__actions { animation: soft-rise 0.9s var(--ease-out) 1.1s both; }
.hero__meta { animation: soft-rise 0.9s var(--ease-out) 1.25s both; }

/* page enter */
@keyframes page-enter { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
main { animation: page-enter 0.55s var(--ease-out) both; }

/* scroll-driven parallax of display type (progressive enhancement) */
@supports (animation-timeline: view()) {
  @keyframes drift { from { transform: translateY(2.5rem); } to { transform: translateY(-2.5rem); } }
  .section-head__num, .page-head__kn-mark, .kn-mark {
    animation: drift linear both; animation-timeline: view(); animation-range: entry 0% exit 100%;
  }
}

/* cross-page transitions */
@view-transition { navigation: auto; }

/* count-up number placeholder */
[data-count] { font-variant-numeric: tabular-nums; }

/* tiered reduced motion — calm, not dead */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  [data-reveal] { transition: opacity 0.4s ease; }
  .hero__bg, .hero__title .word, .hero__title-kn, .hero__sub, .hero__actions, .hero__meta, main { animation: none !important; opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .marquee__track { animation: none !important; }
  .event-row:hover > *, .production-card:hover .production-card__img, .advisor:hover .portrait { transform: none !important; }
  .nav__overlay, .nav__visual img, .nav__menu-intro, .nav__menu-item, .nav__meta-group, .nav__menu-foot { transition: none !important; }
}

/* ===== 24 RESPONSIVE (mobile-first overrides) ======================== */
/* base CSS above targets the largest layout; these queries SIMPLIFY downward */

@media (max-width: 1024px) {  /* lg — overlay menu drops to one column */
  .nav__overlay { grid-template-columns: 1fr; }
  .nav__visual { display: none; }
  .nav__menu { padding-top: 5.4rem; }
  .nav__menu-body { grid-template-columns: 1fr; gap: var(--s-lg); }
  .nav__meta { flex-flow: row wrap; gap: var(--s-md) var(--s-2xl); }

  .prod-hero__grid { grid-template-columns: 1fr; }
  .prod-hero__still { max-width: 22rem; }
}

@media (max-width: 900px) {  /* md-ish — major two-col layouts collapse */
  .section-head { grid-template-columns: 1fr; gap: var(--s-md); }
  .story { grid-template-columns: 1fr; gap: var(--s-2xl); }
  .founder { grid-template-columns: 1fr; gap: var(--s-lg); }
  .founder__aside { position: static; flex-direction: row; align-items: center; gap: var(--s-md); }
  .founder__aside .portrait { width: 9rem; flex: none; }
  .program { grid-template-columns: 1fr; gap: var(--s-md); padding: var(--s-xl) 0; }
  .program:nth-child(even) .program__media { order: 0; }
  .prod-detail { grid-template-columns: 1fr; gap: var(--s-lg); }
  .alumni, .support { grid-template-columns: 1fr; gap: var(--s-md); }
  .impact__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .tl-item { grid-template-columns: 1fr; gap: var(--s-2xs); }
}

@media (max-width: 768px) {  /* md — phones/tablets */
  .productions-grid { grid-template-columns: 1fr; }
  .production-card--md:nth-of-type(3) { margin-top: 0; }
  .pillars__grid { grid-template-columns: 1fr; }
  .pillar { border-right: 0; }
  .hero__meta { grid-template-columns: 1fr 1fr; gap: var(--s-md); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--s-lg); }
  .form__row { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: minmax(3.5rem, 5rem) 1fr; }
  .event-row__meta, .event-row__tag { grid-column: 1 / -1; justify-self: start; }
  .event-row:hover > * { transform: none; }
  .event-row::after { display: none; }
}

@media (max-width: 480px) {  /* sm — small phones */
  .hero__meta { grid-template-columns: 1fr; }
  .marquee__track span { font-size: 1.2rem; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions { width: 100%; }
}

/* ===== 25 MEDIA — VIDEO + SOCIAL ==================================== */
/* featured video — facade beside text */
.video-feature { display: grid; grid-template-columns: 1.6fr 1fr; gap: var(--s-2xl); align-items: center; }
.video-feature__text { display: flex; flex-direction: column; gap: var(--s-sm); }

/* video grid */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg) var(--s-md); }
.video-card { display: flex; flex-direction: column; gap: var(--s-sm); }
.video-card__title { font-family: var(--f-display); font-weight: 400; font-size: var(--fd-s); line-height: 1.04; letter-spacing: -0.025em; }
.video-card__date { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }

/* click-to-play facade — a real <button> */
.video-facade {
  display: block; position: relative; width: 100%; aspect-ratio: 16 / 9;
  overflow: hidden; background: var(--ink-3); border: 1px solid var(--line);
  padding: 0; cursor: pointer;
}
.video-facade__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-3) var(--ease-out);
}
.video-facade::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 45%, color-mix(in srgb, var(--ink) 62%, transparent));
}
.video-facade__play {
  position: absolute; inset: 0; margin: auto; width: 4.6rem; height: 4.6rem;
  display: grid; place-items: center; border-radius: 50%;
  background: color-mix(in srgb, var(--ink) 62%, transparent);
  border: 1.5px solid var(--gild); color: var(--cream);
  transition: background var(--d-1), color var(--d-1), transform var(--d-1) var(--ease-out);
}
.video-facade__play svg { width: 1.5rem; height: 1.5rem; margin-left: 3px; }
.video-facade:hover .video-facade__img { transform: scale(1.05); }
.video-facade:hover .video-facade__play { background: var(--gild); color: var(--ink); transform: scale(1.08); }
.video-facade.is-playing .video-facade__play,
.video-facade.is-playing::after,
.video-facade.is-playing .video-facade__img { display: none; }
.video-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Instagram embed (LightWidget iframe) */
.insta-embed { width: 100%; border: 1px solid var(--line-invert); background: var(--ink-3); }
.insta-embed--light { border-color: var(--line); background: var(--paper); }
.insta-embed iframe { display: block; width: 100% !important; min-height: 540px; border: 0; }

/* homepage "Watch & follow" */
.watch-follow { display: grid; grid-template-columns: 1.5fr 1fr; gap: var(--s-2xl); align-items: start; }
.watch-follow__side { display: flex; flex-direction: column; gap: var(--s-md); }
.watch-follow .insta-embed iframe { min-height: 420px; }

/* graceful fallback block (feed/widget not configured) */
.media-fallback { text-align: center; padding: var(--s-xl) 0; }
.media-fallback p { color: var(--text-muted); max-width: 32rem; margin: 0 auto var(--s-md); }
.section--on-dark .media-fallback p { color: var(--text-invert-muted); }

@media (max-width: 900px) {
  .video-feature, .watch-follow { grid-template-columns: 1fr; gap: var(--s-lg); }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ===== 26 JOURNAL — blog cards + article ============================ */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-xl) var(--s-md); }
.post-card { display: flex; flex-direction: column; gap: var(--s-2xs); }
.post-card__media {
  aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink-3);
  border: 1px solid var(--line); margin-bottom: var(--s-2xs);
}
.post-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--d-3) var(--ease-out);
}
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__date { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); }
.post-card__title {
  font-family: var(--f-display); font-weight: 400; font-size: var(--fd-s);
  line-height: 1.05; letter-spacing: -0.025em; margin-top: 0.2rem;
  transition: color var(--d-1);
}
.post-card:hover .post-card__title { color: var(--accent); }
.post-card__excerpt {
  color: var(--text-muted); font-size: var(--fs-sm); line-height: 1.6; margin-top: 0.3rem;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* single-post header */
.post-hero {
  background: var(--ink); color: var(--cream); position: relative; overflow: clip;
  padding: clamp(8rem, 15vw, 11rem) 0 var(--s-xl);
}
.post-hero .wrap { position: relative; z-index: 1; }
.post-hero__back { font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.16em; text-transform: uppercase; color: var(--gild); display: inline-block; margin-bottom: var(--s-md); }
.post-hero__meta { display: flex; flex-wrap: wrap; gap: 0.5rem; font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-invert-muted); margin-bottom: var(--s-sm); }
.post-hero__meta > * + *::before { content: '·'; margin-right: 0.5rem; color: var(--gild); }
.post-hero__title {
  font-family: var(--f-display); font-weight: 380; font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: var(--fd-m); line-height: 0.98; letter-spacing: -0.03em; max-width: 20ch;
}

/* article body — scoped so raw Blogger HTML renders on-brand */
.post-body { font-size: var(--fs-lg); line-height: 1.75; color: var(--text-muted); }
.post-body > * + * { margin-top: var(--s-md); }
.post-body h1, .post-body h2, .post-body h3, .post-body h4 {
  font-family: var(--f-display); font-weight: 400; font-variation-settings: 'opsz' 72, 'SOFT' 0;
  color: var(--text); line-height: 1.1; letter-spacing: -0.02em;
  margin-top: var(--s-lg); margin-bottom: 0.2rem;
}
.post-body h1, .post-body h2 { font-size: var(--fs-xl); }
.post-body h2 em, .post-body h1 em { color: var(--accent); font-variation-settings: 'opsz' 72, 'SOFT' 100; }
.post-body h3, .post-body h4 { font-size: var(--fs-lg); }
.post-body p { margin-top: var(--s-md); }
.post-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.post-body a:hover { color: var(--curtain-bright); }
.post-body strong, .post-body b { color: var(--text); font-weight: 600; }
.post-body ul, .post-body ol { margin-top: var(--s-md); padding-left: 1.4rem; }
.post-body ul { list-style: disc; }
.post-body ol { list-style: decimal; }
.post-body li { margin-top: 0.4rem; }
.post-body blockquote {
  margin: var(--s-md) 0; padding: 0.4rem 0 0.4rem var(--s-md);
  border-left: 2px solid var(--gild); font-family: var(--f-voice); font-style: italic;
  font-size: var(--fs-xl); color: var(--text);
}
.post-body img {
  width: 100%; height: auto; margin: var(--s-md) 0;
  border: 1px solid var(--line); background: var(--ink-3);
}
.post-body iframe {
  width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; margin: var(--s-md) 0;
}
.post-body table { width: 100%; border-collapse: collapse; margin: var(--s-md) 0; font-size: var(--fs-base); }
.post-body th, .post-body td { border: 1px solid var(--line); padding: 0.5rem 0.7rem; text-align: left; }

.post-foot { margin-top: var(--s-xl); display: flex; flex-direction: column; gap: var(--s-sm); }
.post-foot__note { font-size: var(--fs-sm); color: var(--text-faint); }
.post-foot__note a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

/* ===== 27 TICKETS — booking page + menu CTA ========================= */
/* brass "Book tickets" button inside the overlay menu */
.nav__cta {
  display: inline-flex; align-items: center; gap: 0.55rem; align-self: flex-start;
  margin-bottom: 1.7rem; padding: 0.85rem 1.45rem;
  background: var(--gild); color: var(--ink);
  font-family: var(--f-body); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  border-radius: 999px; transition: background var(--d-1) ease;
}
.nav__cta:hover { background: var(--brass-bright); }
.nav__cta-arrow { transition: transform var(--d-1) var(--ease-out); }
.nav__cta:hover .nav__cta-arrow { transform: translateX(4px); }
.nav__cta.is-active { box-shadow: 0 0 0 3px color-mix(in srgb, var(--gild) 32%, transparent); }

/* how-it-works steps */
.book-steps { display: flex; flex-direction: column; margin-top: var(--s-lg); }
.book-step {
  display: grid; grid-template-columns: minmax(5rem, 8rem) 1fr; gap: var(--s-lg);
  align-items: start; padding: var(--s-lg) 0; border-top: 1px solid var(--line);
}
.book-step:last-child { border-bottom: 1px solid var(--line); }
.book-step__num {
  font-family: var(--f-display); font-weight: 380; font-size: var(--fd-s);
  line-height: 0.9; letter-spacing: -0.03em; color: var(--accent);
}
.book-step__title {
  font-family: var(--f-display); font-weight: 400; font-size: var(--fs-xl);
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 0.4rem;
}
.book-step__body { color: var(--text-muted); line-height: 1.7; max-width: 40rem; }
.book-step__body strong { color: var(--text); font-weight: 600; }

/* pay & confirm panel (on dark) */
.book-pay {
  display: grid; grid-template-columns: minmax(0, 0.8fr) 1fr;
  gap: var(--s-2xl); align-items: center;
}
.book-qr { display: flex; flex-direction: column; gap: var(--s-sm); align-items: flex-start; }
.book-qr__tile {
  width: 100%; max-width: 21rem; aspect-ratio: 1; border-radius: 4px;
  background: #fff; padding: 1.1rem; display: grid; place-items: center;
}
.book-qr__tile img { width: 100%; height: 100%; object-fit: contain; display: block; }
.book-qr__tile--empty {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.8rem; text-align: center; padding: 2rem;
  background: var(--ink-3); border: 1.5px dashed var(--line-invert);
}
.book-qr__mark {
  font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gild);
}
.book-qr__tile--empty p { color: var(--text-invert-muted); font-size: var(--fs-base); line-height: 1.65; }
.book-qr__cap {
  font-family: var(--f-mono); font-size: var(--fs-sm); letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-invert-muted);
}
.book-pay__body { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s-sm); }
.book-price { display: flex; align-items: baseline; gap: var(--s-md); flex-wrap: wrap; margin: 0.1rem 0 0.3rem; }
.book-price__amount {
  font-family: var(--f-display); font-weight: 380; font-variation-settings: 'opsz' 144;
  font-size: clamp(3.4rem, 7vw, 5.4rem); line-height: 0.85; letter-spacing: -0.04em;
  color: var(--cream);
}
.book-price__cur { font-size: 0.48em; color: var(--gild); margin-right: 0.04em; }
.book-price__note {
  font-family: var(--f-mono); font-size: var(--fs-sm); letter-spacing: 0.04em;
  color: var(--text-invert-muted); line-height: 1.7;
}
.book-pay__text { color: var(--text-invert-muted); line-height: 1.7; max-width: 32rem; }
.book-pay__actions { display: flex; flex-wrap: wrap; gap: var(--s-sm); margin-top: 0.3rem; }
.book-pay__hours {
  font-family: var(--f-mono); font-size: var(--fs-sm); letter-spacing: 0.04em;
  color: var(--text-invert-muted); margin-top: 0.3rem;
}
.book-pay__hours a { color: var(--gild); }

/* why book direct */
.book-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-xl) var(--s-lg); margin-top: var(--s-lg); }
.book-why__num {
  display: block; margin-bottom: var(--s-xs);
  font-family: var(--f-display); font-weight: 380; font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.8; letter-spacing: -0.03em; color: var(--line-strong);
}
.book-why__title {
  font-family: var(--f-display); font-weight: 400; font-size: var(--fs-xl);
  line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 0.45rem;
}
.book-why__body { color: var(--text-muted); line-height: 1.7; font-size: var(--fs-base); }

/* fine print */
.fineprint { border: 1px solid var(--line); background: var(--bg-raised); padding: var(--s-lg); }
.fineprint__title {
  font-family: var(--f-display); font-weight: 400; font-size: var(--fs-xl);
  letter-spacing: -0.02em; margin-bottom: var(--s-md);
}
.fineprint__list { display: flex; flex-direction: column; gap: var(--s-sm); }
.fineprint__list li {
  position: relative; padding-left: var(--s-md);
  color: var(--text-muted); line-height: 1.75; font-size: var(--fs-base);
}
.fineprint__list li::before {
  content: ''; position: absolute; left: 0; top: 0.6em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--gild);
}
.fineprint__list strong { color: var(--text); font-weight: 600; }
.fineprint__list a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.book-foot__line {
  font-family: var(--f-voice); font-style: italic; font-size: var(--fs-xl);
  color: var(--text-muted); margin-bottom: var(--s-md);
}

@media (max-width: 820px) {
  .book-pay { grid-template-columns: 1fr; gap: var(--s-lg); }
  .book-why { grid-template-columns: 1fr; gap: var(--s-lg); }
  .book-step { grid-template-columns: 1fr; gap: var(--s-2xs); padding: var(--s-md) 0; }
}
@media (max-width: 560px) {
  .book-pay__actions { width: 100%; }
  .book-pay__actions .btn { width: 100%; justify-content: center; }
}

/* ===== 28 EVENT DETAIL — feed-driven event page + clickable rows ==== */

/* When an event has a slug (FB feed), its row is rendered as <a> — keep it
   inline with the existing .event-row grid but make it click-affordant. */
a.event-row { color: inherit; text-decoration: none; }
.event-row--link { transition: background var(--d-1) ease; }
.event-row--link:hover,
.event-row--link:focus-visible {
  background: color-mix(in srgb, var(--cream) 7%, transparent);
  outline: none;
}

/* event detail page — slim dark page-head + poster-on-the-side layout
   (Facebook event covers are usually rich portrait posters — they're shown
    as content, at natural aspect ratio, never cropped.) */
.event-hero {
  position: relative; overflow: clip;
  background: var(--ink); color: var(--cream);
  padding: clamp(7rem, 14vw, 11rem) 0 var(--s-xl);
}
.event-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 55% 60% at 78% 36%,
    color-mix(in srgb, var(--gild) 14%, transparent), transparent 62%);
  pointer-events: none;
}
.event-hero .wrap { position: relative; z-index: 1; }
.event-hero .page-head__kn-mark { z-index: 0; }
.event-hero__back {
  display: inline-block; margin-bottom: var(--s-md);
  font-family: var(--f-voice); font-style: italic; font-size: var(--fs-lg);
  color: var(--text-invert-muted); transition: color var(--d-1);
}
.event-hero__back:hover { color: var(--gild); }
.event-hero__tag {
  display: inline-flex; align-items: center; gap: 0.55rem;
  margin-bottom: var(--s-sm);
  font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gild);
}
.event-hero__tag::before { content: ''; width: 1.4rem; height: 1px; background: var(--gild); }
.event-hero__title {
  font-family: var(--f-display); font-weight: 360; font-variation-settings: 'opsz' 144, 'SOFT' 0;
  font-size: var(--fd-l); line-height: 0.92; letter-spacing: -0.04em;
  max-width: 22ch;
}
.event-hero__title em { color: var(--accent-on-dark); }

/* main layout: poster on the left, details on the right */
.event-layout {
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: var(--s-2xl); align-items: start;
}
.event-layout--no-poster {
  grid-template-columns: 1fr; max-width: 44rem; margin: 0 auto;
}

/* the poster — natural aspect ratio, click opens the full image */
.event-poster {
  display: block; overflow: hidden;
  background: var(--ink-3);
  border: 1px solid var(--line);
  transition: transform var(--d-2) var(--ease-out), box-shadow var(--d-2);
}
.event-poster img {
  width: 100%; height: auto; display: block;
}
.event-poster:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px -16px rgba(0, 0, 0, 0.35);
}

.event-content { display: flex; flex-direction: column; gap: var(--s-lg); min-width: 0; }

/* meta block: 2-col within the content column; Where spans full width */
.event-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-md) var(--s-lg);
  padding-bottom: var(--s-lg); border-bottom: 1px solid var(--line);
}
.event-meta__cell { display: flex; flex-direction: column; gap: var(--s-2xs); min-width: 0; }
.event-meta__cell--wide { grid-column: 1 / -1; }
.event-meta__label {
  font-family: var(--f-mono); font-size: var(--fs-xs); letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-faint);
}
.event-meta__value {
  font-family: var(--f-display); font-weight: 400; font-size: var(--fs-xl);
  line-height: 1.2; letter-spacing: -0.02em; color: var(--text);
  margin: 0; word-break: break-word;
}

/* body */
.event-body { display: flex; flex-direction: column; gap: var(--s-md); }
.event-body p { color: var(--text-muted); line-height: 1.75; font-size: var(--fs-base); margin: 0; }

/* CTA row */
.event-cta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: var(--s-sm) var(--s-md); margin-top: var(--s-xs);
}

@media (max-width: 900px) {
  .event-layout { grid-template-columns: 1fr; gap: var(--s-lg); }
  .event-poster { max-width: 30rem; margin: 0 auto; }
  .event-hero__title { font-size: var(--fd-m); }
}
@media (max-width: 560px) {
  .event-meta { grid-template-columns: 1fr; gap: var(--s-md); }
  .event-cta { flex-direction: column; align-items: stretch; }
  .event-cta .btn { justify-content: center; }
}
