:root {
  color-scheme: dark;
  --black: #070707;
  --ink: #0d0d0c;
  --paper: #f1ede4;
  --muted: #aba79f;
  --line: rgba(241, 237, 228, 0.18);
  --ember: #b96547;
  --ember-bright: #dc825f;
  --shell: min(1240px, calc(100vw - 64px));
  --serif: "Iowan Old Style", "Palatino Linotype", Baskerville, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --pointer-x: 64vw;
  --pointer-y: 18vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(90deg, rgba(255,255,255,.012) 1px, transparent 1px) 0 0 / 12.5vw 100%,
    var(--black);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(540px circle at var(--pointer-x) var(--pointer-y), rgba(184, 101, 70, .11), transparent 68%);
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }
section[id] { scroll-margin-top: 84px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: .75rem 1rem;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--black);
}
.skip-link:focus { transform: none; }

:focus-visible { outline: 2px solid var(--ember-bright); outline-offset: 4px; }
.section-shell { width: var(--shell); margin-inline: auto; }
.section-index, .eyebrow {
  margin: 0;
  color: var(--ember-bright);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(140px, .7fr) auto auto;
  align-items: center;
  gap: 2rem;
  height: 88px;
  padding-inline: max(32px, calc((100vw - 1400px) / 2));
  border-bottom: 1px solid transparent;
  transition: background .35s ease, border-color .35s ease, height .35s ease;
}
.site-header.is-scrolled {
  height: 70px;
  border-color: var(--line);
  background: rgba(7, 7, 7, .86);
  backdrop-filter: blur(18px);
}
.wordmark { width: 164px; height: 60px; overflow: hidden; }
.wordmark img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.4rem); }
.main-nav a {
  position: relative;
  color: #d7d2ca;
  font-size: .84rem;
  text-decoration: none;
}
.main-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 100%;
  bottom: -.3rem;
  height: 1px;
  background: var(--ember-bright);
  transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.header-cta, .price-options button {
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: .45rem 0;
  background: transparent;
  cursor: pointer;
  font-size: .83rem;
}
.header-cta { text-decoration: none; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(920px, 100svh);
  padding: 165px max(32px, calc((100vw - 1400px) / 2)) 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #070707 0%, rgba(7,7,7,.92) 32%, rgba(7,7,7,.2) 68%, #070707 100%),
    radial-gradient(circle at 71% 29%, rgba(255,238,208,.16), transparent 24%);
}
.hero::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, #070707 0%, rgba(7,7,7,.94) 34%, rgba(7,7,7,.34) 61%, rgba(7,7,7,.08) 100%);
}
.hero-light {
  position: absolute;
  z-index: -1;
  top: -22%;
  left: 50%;
  width: 32%;
  height: 130%;
  opacity: .26;
  transform: skewX(-9deg);
  transform-origin: top;
  background: linear-gradient(180deg, rgba(255,241,213,.35), rgba(255,241,213,.02) 70%);
  filter: blur(18px);
}
.hero-photo { position: absolute; z-index: -2; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55) contrast(1.08); }
.hero-photo-main {
  top: 0;
  right: 4%;
  width: min(43vw, 630px);
  height: 100%;
  opacity: .92;
  mask-image: linear-gradient(90deg, transparent 0, black 22%, black 86%, transparent 100%);
}
.hero-photo-main img { object-position: center 34%; }
.hero-photo-motion {
  right: -2%;
  bottom: 6%;
  width: min(33vw, 500px);
  height: 27%;
  opacity: .32;
  transform: rotate(-3deg);
  mask-image: radial-gradient(ellipse, black 30%, transparent 74%);
  animation: hoverScene 8s ease-in-out infinite;
}
.hero-copy { position: relative; z-index: 2; max-width: 790px; }
.hero-gallery {
  position: absolute;
  z-index: -2;
  top: 10%;
  left: 43%;
  right: -8%;
  height: 74%;
  overflow: hidden;
  opacity: .82;
  mask-image: linear-gradient(90deg, transparent 0, black 10%, black 90%, transparent 100%);
}
.hero-gallery .gallery-track { height: 100%; align-items: center; }
.hero-gallery .gallery-set { height: 100%; }
.hero-gallery figure {
  position: relative;
  width: clamp(230px, 20vw, 330px);
  height: min(62vh, 560px);
  margin: 0;
  overflow: hidden;
}
.hero-gallery figure.wide { width: clamp(350px, 34vw, 520px); height: min(43vh, 390px); }
.hero-gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.66) contrast(1.06); }
.hero-gallery figcaption {
  position: absolute;
  left: 1rem;
  bottom: .8rem;
  padding: .25rem .5rem;
  background: rgba(7,7,7,.72);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-gallery-toggle {
  position: absolute;
  z-index: 3;
  top: 118px;
  right: max(32px, calc((100vw - 1400px) / 2));
}
.hero h1 {
  margin: 1.4rem 0 1.8rem;
  max-width: 900px;
  font: 400 clamp(3.5rem, 7.8vw, 8rem)/.87 var(--serif);
  letter-spacing: -.055em;
}
.hero h1 em, .closing h2 em { color: var(--ember-bright); font-weight: 400; }
.hero-lead { max-width: 570px; margin: 0 0 2rem; color: #c4c0b9; font-size: clamp(1rem, 1.6vw, 1.25rem); }
.hero-actions { display: flex; align-items: center; gap: 2.2rem; }
.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 240px;
  min-height: 58px;
  border: 1px solid var(--ember-bright);
  padding: .8rem 1.15rem;
  background: var(--ember);
  cursor: pointer;
  color: #fffaf3;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.primary-action:hover { background: var(--paper); color: var(--black); transform: translateY(-2px); }
.text-link { text-underline-offset: .35rem; font-size: .88rem; }
.hero-note {
  position: absolute;
  left: max(32px, calc((100vw - 1400px) / 2));
  bottom: 38px;
  display: flex;
  gap: 1.5rem;
  color: #8f8a82;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-cue {
  position: absolute;
  right: max(32px, calc((100vw - 1400px) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: #8f8a82;
  font-size: .64rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scroll-cue i { display: block; width: 54px; height: 1px; background: var(--line); }

.manifest {
  position: relative;
  display: grid;
  grid-template-columns: .35fr 1.45fr .8fr;
  gap: 5vw;
  align-items: start;
  padding-block: clamp(7rem, 12vw, 12rem);
}
.manifest-mark {
  position: absolute;
  z-index: -1;
  left: -13vw;
  top: 2rem;
  width: 350px;
  opacity: .16;
  transform: rotate(-7deg);
}
.manifest-text h2, .course-heading h2, .process h2, .teachers h2, .gallery h2, .price h2, .about h2, .place h2 {
  margin: 0;
  font: 400 clamp(2.8rem, 5.6vw, 6rem)/.98 var(--serif);
  letter-spacing: -.045em;
}
.manifest-text h2 span { color: var(--ember-bright); }
.manifest-text > p { max-width: 750px; margin: 2rem 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.manifest blockquote { margin: 8rem 0 0; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.manifest blockquote p { margin: 0 0 1rem; font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }
.manifest cite { color: var(--muted); font-size: .72rem; font-style: normal; text-transform: uppercase; letter-spacing: .14em; }

.course-flow { position: relative; padding-block: 3rem 7rem; }
.course-heading { display: grid; grid-template-columns: .35fr 2.25fr; gap: 5vw; margin-bottom: 4rem; }
.course-heading h2 { font-size: clamp(2.8rem, 5.1vw, 5.5rem); }
.course-axis { position: absolute; z-index: -1; top: 10rem; bottom: 7rem; left: 50%; width: 1px; background: linear-gradient(transparent, var(--line) 15%, var(--line) 85%, transparent); }
.course-axis span { position: sticky; top: 50vh; display: block; width: 9px; height: 9px; margin-left: -4px; border-radius: 50%; background: var(--ember-bright); box-shadow: 0 0 35px 8px rgba(220,130,95,.34); }
.direction {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  min-height: 650px;
  padding-block: 4rem;
}
.direction-number { position: absolute; z-index: -1; top: 3%; left: 33%; color: rgba(255,255,255,.035); font: 400 22rem/1 var(--serif); }
.direction-copy { padding-inline: clamp(0rem, 3vw, 3rem); }
.direction-copy h3 { margin: 1rem 0 1.7rem; font: 400 clamp(2.8rem, 4.7vw, 5.3rem)/.95 var(--serif); letter-spacing: -.045em; }
.direction-drama .direction-copy h3 { font-size: clamp(2.35rem, 3.8vw, 4.25rem); }
.direction-copy > p:not(.eyebrow) { max-width: 560px; color: var(--muted); font-size: 1.05rem; }
.direction dl { margin: 3.3rem 0 0; }
.direction dl div { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; padding-block: 1rem; border-top: 1px solid var(--line); }
.direction dt { color: #7d7973; font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; }
.direction dd { margin: 0; font-family: var(--serif); font-size: 1.18rem; line-height: 1.3; }
.direction-visual { position: relative; margin: 0; }
.direction-visual img { width: 100%; height: 580px; object-fit: cover; filter: saturate(.65) contrast(1.05); }
.drama-visual { clip-path: polygon(10% 0, 100% 0, 93% 89%, 0 100%); }
.plastic-visual { clip-path: polygon(0 8%, 92% 0, 100% 93%, 8% 100%); }
.plastic-visual img { object-position: center; }
.direction-visual::after { position: absolute; inset: 0; content: ""; background: linear-gradient(155deg, transparent 45%, rgba(7,7,7,.38)); pointer-events: none; }
.direction-visual figcaption { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.direction-plastic .direction-number { left: auto; right: 35%; }

.modules { margin-top: 5rem; }
.module-line { display: grid; grid-template-columns: .8fr 1.4fr .65fr; gap: 3rem; align-items: baseline; padding: 2rem 0; border-top: 1px solid var(--line); }
.module-line h3 { margin: 0; font: 400 1.8rem/1.1 var(--serif); }
.module-line p { margin: 0; color: var(--muted); }
.module-line span { color: #d7d2ca; font-size: .82rem; text-align: right; }
.module-note { margin: 1rem 0 0 auto; max-width: 56%; color: #77736d; font-size: .78rem; }

.process { position: relative; padding-block: 7rem 9rem; }
.process-intro { display: grid; grid-template-columns: 1.4fr .6fr; gap: 7vw; align-items: end; margin: 2rem 0 6rem 17%; }
.process-intro p { margin: 0; color: var(--muted); }
.process-line { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.process-line::before { position: absolute; z-index: -1; top: 24px; left: 0; right: 0; height: 1px; content: ""; background: var(--line); }
.process-line li { display: grid; gap: .45rem; padding-right: 1rem; }
.process-line span { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: var(--black); color: var(--ember-bright); font-size: .68rem; }
.process-line strong { margin-top: 1.5rem; font: 400 1.45rem var(--serif); }
.process-line small { color: var(--muted); }
.process-photos { position: relative; height: 460px; margin-top: 5rem; }
.process-photos img { position: absolute; object-fit: cover; filter: saturate(.55); }
.process-photos img:first-child { left: 7%; top: 0; width: 34%; height: 90%; clip-path: polygon(0 8%, 100% 0, 92% 100%, 8% 92%); }
.process-photos img:nth-child(2) { right: 8%; top: 16%; width: 50%; height: 72%; clip-path: polygon(7% 0, 100% 9%, 91% 100%, 0 91%); }
.stage-glow { position: absolute; left: 43%; top: -20%; width: 4%; height: 135%; transform: rotate(-15deg); background: linear-gradient(rgba(255,236,203,.18), transparent); filter: blur(12px); }

.teachers { padding-block: 4rem 8rem; }
.teachers-heading { display: grid; grid-template-columns: 1.5fr .5fr; gap: 8vw; align-items: end; margin: 2rem 0 5rem 17%; }
.teachers-heading h2 { font-size: clamp(2.5rem, 4.8vw, 5.2rem); }
.teachers-heading p { margin: 0; color: var(--muted); }
.cast-list article { display: grid; grid-template-columns: 52px 72px .9fr 1.45fr .4fr; gap: 1.5rem; align-items: center; padding: 1.65rem 0; border-top: 1px solid var(--line); transition: padding-left .3s ease, color .3s ease; }
.cast-list article:hover { padding-left: 1rem; color: #fff; }
.cast-list article > span { color: var(--ember-bright); font-size: .7rem; }
.teacher-photo { width: 68px; height: 68px; border: 1px solid var(--line); border-radius: 50%; object-fit: cover; filter: saturate(.72) contrast(1.04); }
.cast-list h3 { margin: 0; font: 400 clamp(1.5rem, 2.3vw, 2.5rem)/1 var(--serif); }
.cast-list p { max-width: 620px; margin: 0; color: var(--muted); font-size: .9rem; }
.cast-list em { color: #817d76; font-size: .72rem; font-style: normal; text-align: right; text-transform: uppercase; letter-spacing: .12em; }
.cast-list .cast-secondary { opacity: .68; }

.gallery { overflow: hidden; padding-block: 4rem 8rem; }
.gallery-heading { display: grid; grid-template-columns: .35fr 1.7fr auto; gap: 5vw; align-items: end; margin-bottom: 4rem; }
.gallery-toggle { border: 0; border-bottom: 1px solid var(--line); padding: .4rem 0; background: none; cursor: pointer; color: var(--muted); font-size: .78rem; }
.gallery-track { display: flex; width: max-content; animation: galleryMove 48s linear infinite; }
.gallery-track.is-paused { animation-play-state: paused; }
.gallery-set { display: flex; align-items: center; gap: 18px; padding-right: 18px; }
.gallery figure { position: relative; width: clamp(230px, 23vw, 360px); height: clamp(370px, 42vw, 600px); margin: 0; overflow: hidden; }
.gallery figure.wide { width: clamp(350px, 42vw, 620px); height: clamp(270px, 31vw, 440px); }
.gallery img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.58) contrast(1.08); transition: transform .8s ease, filter .5s ease; }
.gallery figure:hover img { transform: scale(1.03); filter: saturate(.9); }
.gallery figcaption { position: absolute; left: 1rem; bottom: .8rem; padding: .25rem .5rem; background: rgba(7,7,7,.72); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }

.price { padding-block: 5rem 9rem; }
.price-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 8vw; align-items: end; margin: 2rem 0 6rem 17%; }
.price-heading p { margin: 0; color: var(--muted); }
.price-options { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.price-options article { padding: clamp(2rem, 5vw, 5rem); }
.price-options article + article { border-left: 1px solid var(--line); }
.price-options article > p { margin: 0 0 1.5rem; color: var(--ember-bright); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.price-options h3 { margin: 0; font: 400 clamp(2rem, 3.3vw, 3.5rem)/1 var(--serif); }
.price-options h3 span { color: var(--ember-bright); font-style: italic; }
.price-options strong { display: block; margin: 3rem 0 2rem; font: 400 clamp(3.2rem, 5vw, 5.2rem)/1 var(--serif); }
.price-options strong small { color: var(--muted); font: 400 .95rem var(--sans); }
.price-options ul { min-height: 120px; margin: 0 0 2rem; padding: 0; list-style: none; color: var(--muted); }
.price-options li { padding: .45rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.price-note { max-width: 650px; margin: 1.2rem 0 0 auto; color: #77736d; font-size: .78rem; }

.about { position: relative; display: grid; grid-template-columns: .25fr 1.05fr .75fr; gap: 5vw; align-items: center; padding-block: 6rem 9rem; }
.about-copy h2 { margin-bottom: 2rem; }
.about-copy p { max-width: 680px; color: var(--muted); }
.about-photo { position: relative; height: 620px; margin: 0; clip-path: polygon(9% 0, 100% 8%, 92% 100%, 0 91%); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.55); }
.about-signature { position: absolute; z-index: 2; right: 0; bottom: 3rem; width: 300px; opacity: .5; mix-blend-mode: screen; transform: rotate(6deg); }

.place { display: grid; grid-template-columns: .25fr .65fr 1.1fr; gap: 5vw; padding-block: 6rem 9rem; }
.place-heading h2 { font-size: clamp(2.8rem, 4.8vw, 5rem); }
.place-heading p { color: var(--muted); }
.place-map { position: relative; grid-column: 2 / 4; height: 280px; margin-top: 3rem; overflow: hidden; border-block: 1px solid var(--line); background: radial-gradient(circle at 30% 60%, rgba(185,101,71,.13), transparent 20%); }
.place-map::before, .place-map::after { position: absolute; content: ""; inset: 12% -8%; border: 1px solid rgba(255,255,255,.1); transform: rotate(-8deg); }
.place-map::after { inset: 28% -4%; transform: rotate(7deg); }
.map-river { position: absolute; left: -5%; right: -5%; top: 48%; height: 80px; border-block: 1px solid rgba(255,255,255,.16); transform: rotate(-4deg); }
.map-point { position: absolute; width: 16px; height: 16px; border: 3px solid var(--paper); border-radius: 50%; background: var(--ember); box-shadow: 0 0 0 10px rgba(185,101,71,.15); }
.map-point.rehearsal { left: 33%; top: 66%; }
.map-point.showing { right: 27%; top: 25%; }
.map-label { position: absolute; color: #cfcac2; font: 400 1.2rem var(--serif); }
.label-rehearsal { left: 36%; top: 68%; }
.label-showing { right: 30%; top: 17%; }
.place-list { grid-column: 2 / 4; display: grid; grid-template-columns: 1fr; margin-top: 3rem; }
.place-list article { padding: 2rem 0; border-top: 1px solid var(--line); }
.place-list article + article { padding-left: 0; border-left: 0; }
.place-list span { color: var(--ember-bright); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.place-list h3 { margin: .8rem 0 .2rem; font: 400 clamp(1.5rem, 2.3vw, 2.4rem) var(--serif); }
.place-list p { color: var(--muted); }
.place-list a { font-size: .82rem; text-underline-offset: .35rem; }

.closing { position: relative; isolation: isolate; min-height: 720px; overflow: hidden; border-top: 1px solid var(--line); }
.closing::before { position: absolute; z-index: -3; inset: 0; content: ""; background: linear-gradient(90deg, #070707 0 43%, transparent 72%), linear-gradient(0deg, #070707 0, transparent 45%); }
.closing-figure { position: absolute; z-index: -4; inset: 0 0 0 auto; width: 68%; height: 100%; object-fit: cover; object-position: center 25%; filter: saturate(.5) contrast(1.08); mask-image: linear-gradient(90deg, transparent, black 27%); }
.closing-light { position: absolute; z-index: -2; top: -30%; left: 52%; width: 14%; height: 150%; transform: rotate(-15deg); background: linear-gradient(rgba(255,236,201,.19), transparent 70%); filter: blur(18px); }
.closing-copy { width: var(--shell); margin-inline: auto; padding-top: 10rem; }
.closing h2 { margin: 1rem 0 2rem; font: 400 clamp(4rem, 7vw, 7.5rem)/.9 var(--serif); letter-spacing: -.05em; }
.closing-copy > p:not(.eyebrow):not(.demo-label) { max-width: 520px; color: var(--muted); }
.demo-label { max-width: 430px; margin-top: 1rem; color: #77736d; font-size: .72rem; }

.site-footer { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 3rem; align-items: center; width: var(--shell); margin-inline: auto; padding-block: 3rem 5rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.site-footer > img { width: 165px; }
.site-footer div { display: grid; gap: .3rem; }
.site-footer a { text-underline-offset: .3rem; }
.mobile-lead { display: none; }

.leader-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .7fr);
  align-items: center;
  min-height: min(920px, 100svh);
  padding: 130px max(32px, calc((100vw - 1400px) / 2)) 70px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.leader-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 72% 38%, rgba(185,101,71,.15), transparent 31%);
}
.leader-hero::after {
  position: absolute;
  z-index: -1;
  top: -20%;
  left: 56%;
  width: 15%;
  height: 145%;
  content: "";
  transform: rotate(-11deg);
  background: linear-gradient(rgba(255,239,213,.16), transparent 72%);
  filter: blur(18px);
}
.leader-hero-copy { position: relative; z-index: 2; max-width: 760px; }
.leader-hero h1 {
  margin: 1rem 0 2rem;
  font: 400 clamp(4.2rem, 8.5vw, 8.8rem)/.84 var(--serif);
  letter-spacing: -.06em;
}
.leader-hero h1 em { color: var(--ember-bright); font-weight: 400; }
.leader-hero-copy > p:last-child { max-width: 600px; color: var(--muted); font-size: clamp(1rem,1.45vw,1.2rem); }
.leader-portrait {
  position: relative;
  width: min(38vw, 590px);
  aspect-ratio: 1;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  transform: rotate(2.5deg);
  clip-path: polygon(6% 0, 100% 5%, 94% 100%, 0 94%);
}
.leader-portrait img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.68) contrast(1.06); }
.leader-side-note { position: absolute; right: max(32px, calc((100vw - 1400px) / 2)); bottom: 34px; margin: 0; color: #817d76; font-size: .65rem; letter-spacing: .13em; text-align: right; text-transform: uppercase; }

.leader-biography { display: grid; grid-template-columns: .25fr 1.15fr .7fr; gap: 5vw; align-items: start; padding-block: 8rem; }
.leader-bio-copy h2 { margin: 0 0 2rem; font: 400 clamp(3rem,5.4vw,5.7rem)/.92 var(--serif); letter-spacing: -.045em; }
.leader-bio-copy p { color: var(--muted); }
.leader-quote { margin: 7rem 0 0; padding: 2rem 0; border-block: 1px solid var(--line); }
.leader-quote p { margin: 0 0 1.5rem; font: 400 clamp(1.65rem,2.6vw,2.7rem)/1.15 var(--serif); }
.leader-quote cite { color: var(--ember-bright); font-size: .7rem; font-style: normal; letter-spacing: .14em; text-transform: uppercase; }

.leader-gallery { display: grid; grid-template-columns: 1.1fr .8fr 1fr .85fr; align-items: center; gap: 1.2rem; padding: 1rem max(20px, calc((100vw - 1540px) / 2)) 9rem; }
.leader-gallery figure { margin: 0; overflow: hidden; }
.leader-gallery figure:nth-child(1) { transform: translateY(2.5rem) rotate(-2deg); }
.leader-gallery figure:nth-child(2) { transform: translateY(-2rem) rotate(1.5deg); }
.leader-gallery figure:nth-child(3) { transform: translateY(3rem) rotate(-1deg); }
.leader-gallery figure:nth-child(4) { transform: translateY(-1rem) rotate(2deg); }
.leader-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; filter: saturate(.62) contrast(1.06); transition: filter .4s ease, transform .6s ease; }
.leader-gallery figure:hover img { filter: saturate(.95); transform: scale(1.025); }

.leader-closing { display: grid; grid-template-columns: .25fr 1.1fr .65fr; gap: 5vw; align-items: end; padding-block: 7rem 9rem; border-top: 1px solid var(--line); }
.leader-closing h2 { margin: 0; font: 400 clamp(3rem,5.3vw,5.6rem)/.92 var(--serif); letter-spacing: -.045em; }
.leader-closing > div p { margin: 0 0 2rem; color: var(--muted); }

.lead-dialog {
  width: min(620px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.18);
  padding: clamp(2rem, 6vw, 4rem);
  background: #11110f;
  color: var(--paper);
  box-shadow: 0 35px 100px rgba(0,0,0,.65);
}
.lead-dialog::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(7px); }
.dialog-close { position: absolute; top: 1rem; right: 1rem; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: none; cursor: pointer; font-size: 1.5rem; }
.lead-dialog h2 { margin: 1rem 0; font: 400 clamp(2.6rem, 7vw, 4.5rem)/.95 var(--serif); }
.lead-dialog > p:not(.eyebrow) { color: var(--muted); }
.lead-dialog form { display: grid; gap: 1rem; margin-top: 2rem; }
.lead-dialog label { display: grid; gap: .5rem; color: #a39f98; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.lead-dialog input, .lead-dialog select { width: 100%; min-height: 52px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: .65rem .2rem; background: transparent; color: var(--paper); font-size: 1rem; text-transform: none; letter-spacing: 0; }
.lead-dialog select { color-scheme: dark; }
.lead-dialog .primary-action { margin-top: 1rem; width: 100%; }
.form-status { min-height: 1.6em; margin: 0; color: var(--ember-bright); font-size: .82rem; }

[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(50px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.25,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes hoverScene { 0%,100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-10px); } }
@keyframes galleryMove { to { transform: translateX(-50%); } }

@media (max-width: 1000px) {
  :root { --shell: min(100% - 40px, 820px); }
  .site-header { height: 72px; padding-inline: 20px; grid-template-columns: 1fr auto; }
  .wordmark { width: 132px; height: 48px; }
  .header-cta { display: none; }
  .menu-toggle { display: grid; place-content: center; gap: 6px; width: 44px; height: 44px; border: 0; background: transparent; }
  .menu-toggle span:not(.sr-only) { width: 23px; height: 1px; background: var(--paper); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 71px 0 auto; display: grid; gap: 0; max-height: 0; overflow: hidden; background: rgba(7,7,7,.97); transition: max-height .3s ease; }
  .main-nav.is-open { max-height: 320px; border-bottom: 1px solid var(--line); }
  .main-nav a { padding: 1rem 20px; border-top: 1px solid var(--line); }
  .hero { padding-inline: 20px; min-height: 840px; }
  .hero-gallery { left: 34%; }
  .hero-copy { padding-top: 10vh; }
  .hero h1 { font-size: clamp(3.8rem, 10vw, 6.5rem); }
  .manifest { grid-template-columns: .25fr 1.75fr; }
  .manifest blockquote { grid-column: 2; margin-top: 2rem; }
  .course-heading { grid-template-columns: .25fr 1.75fr; }
  .direction { min-height: 600px; gap: 3rem; }
  .direction-visual img { height: 500px; }
  .process-intro, .teachers-heading, .price-heading { margin-left: 0; }
  .cast-list article { grid-template-columns: 42px 64px .8fr 1.35fr; }
  .teacher-photo { width: 60px; height: 60px; }
  .cast-list em { grid-column: 3; text-align: left; }
  .about { grid-template-columns: .2fr 1fr .8fr; }
  .about-photo { height: 570px; }
  .place { grid-template-columns: .2fr .8fr 1fr; }
  .leader-hero { grid-template-columns: .9fr .7fr; }
  .leader-biography { grid-template-columns: .2fr 1fr .8fr; }
  .leader-closing { grid-template-columns: .2fr 1fr .8fr; }
}

@media (max-width: 720px) {
  :root { --shell: calc(100% - 32px); }
  body { background-size: 25vw 100%; }
  .hero { min-height: min(760px, 100svh); padding: 96px 16px 74px; }
  .hero::before { background: #070707; }
  .hero::after { background: linear-gradient(180deg, rgba(7,7,7,.05) 0%, rgba(7,7,7,.2) 30%, #070707 55%); }
  .hero-gallery { top: 70px; left: 0; right: 0; height: 45%; opacity: .72; mask-image: linear-gradient(180deg, black 58%, transparent 100%); }
  .hero-gallery figure { width: 180px; height: 285px; }
  .hero-gallery figure.wide { width: 285px; height: 205px; }
  .hero-gallery-toggle { top: 84px; right: 16px; font-size: .68rem; }
  .hero-light { left: 50%; width: 42%; opacity: .18; }
  .hero-copy { padding-top: 24vh; }
  .hero h1 { margin: .65rem 0 1.15rem; font-size: clamp(2.8rem, 12.3vw, 3.8rem); }
  .hero-lead { margin-bottom: 1.35rem; font-size: .94rem; line-height: 1.5; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: .85rem; }
  .hero-note { left: 16px; right: 16px; bottom: 18px; justify-content: space-between; gap: .5rem; font-size: .54rem; }
  .scroll-cue { display: none; }
  .primary-action { min-width: 230px; }

  .manifest, .course-heading, .teachers-heading, .gallery-heading, .about, .place { display: block; }
  .manifest { padding-block: 6rem; }
  .manifest .section-index, .course-heading .section-index, .teachers > .section-index, .gallery-heading .section-index, .about > .section-index, .place > .section-index { margin-bottom: 1.5rem; }
  .manifest blockquote { margin-top: 3rem; }
  .manifest-mark { display: none; }
  .manifest-text h2, .course-heading h2, .process h2, .teachers h2, .gallery h2, .price h2, .about h2, .place h2 { font-size: clamp(2.75rem, 13vw, 4rem); }

  .course-flow { padding-block: 2rem 4rem; }
  .course-axis { display: none; }
  .course-heading { margin-bottom: 1rem; }
  .course-heading h2 { font-size: clamp(2.4rem, 10.7vw, 3.35rem); }
  .direction { display: flex; flex-direction: column; min-height: 0; padding-block: 3.5rem; gap: 2rem; }
  .direction-plastic .direction-visual { order: 2; }
  .direction-plastic .direction-copy { order: 1; }
  .direction-number { top: 0; left: auto; right: -1rem; font-size: 13rem; }
  .direction-copy { padding: 0; }
  .direction-copy h3 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .direction-drama .direction-copy h3 { font-size: clamp(2.3rem, 10.4vw, 3.25rem); }
  .direction-visual img { height: min(105vw, 470px); }
  .plastic-visual img { height: 72vw; }
  .direction dl div { grid-template-columns: 90px 1fr; }
  .modules { margin-top: 1rem; }
  .module-line { grid-template-columns: 1fr; gap: .8rem; }
  .module-line span { text-align: left; }
  .module-note { max-width: 100%; }

  .process { padding-block: 4rem 6rem; }
  .process-intro { display: block; margin: 1.5rem 0 4rem; }
  .process-intro p { margin-top: 1.5rem; }
  .process-line { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; }
  .process-line::before { display: none; }
  .process-line strong { margin-top: .7rem; }
  .process-photos { height: 350px; margin-top: 3rem; }
  .process-photos img:first-child { left: 0; width: 58%; height: 83%; }
  .process-photos img:nth-child(2) { right: 0; top: 38%; width: 63%; height: 58%; }

  .teachers { padding-block: 2rem 5rem; }
  .teachers-heading { margin: 1.5rem 0 3rem; }
  .teachers-heading h2 { font-size: clamp(2.35rem, 10.8vw, 3.35rem); }
  .teachers-heading p { margin-top: 1.5rem; }
  .cast-list article { display: grid; grid-template-columns: 24px 56px 1fr; gap: .7rem; padding: 1.2rem 0; }
  .teacher-photo { width: 52px; height: 52px; }
  .cast-list article > p, .cast-list article > em { grid-column: 3; }

  .gallery { padding-block: 2rem 5rem; }
  .gallery-heading { position: relative; margin-bottom: 2.5rem; }
  .gallery-toggle { position: absolute; right: 0; bottom: 0; }
  .gallery figure { width: 220px; height: 330px; }
  .gallery figure.wide { width: 320px; height: 230px; }

  .price { padding-block: 3rem 5rem; }
  .price-heading { display: block; margin: 1.5rem 0 3rem; }
  .price-heading p { margin-top: 1.5rem; }
  .price-options { grid-template-columns: 1fr; }
  .price-options article { padding: 2.5rem 0; }
  .price-options article + article { border-left: 0; border-top: 1px solid var(--line); }
  .price-options ul { min-height: 0; }
  .price-note { margin-top: 1rem; }

  .about { padding-block: 3rem 6rem; }
  .about-copy h2 { margin-top: 1.5rem; }
  .about-photo { height: 95vw; max-height: 500px; margin-top: 2.5rem; }
  .about-signature { right: -25%; bottom: 2rem; width: 230px; }

  .place { padding-block: 3rem 5rem; }
  .place-heading { margin-top: 1.5rem; }
  .place-map { height: 285px; margin-top: 2.5rem; }
  .map-point.rehearsal { left: 22%; }
  .label-rehearsal { left: 28%; }
  .map-point.showing { right: 18%; }
  .label-showing { right: 22%; }
  .place-list { grid-template-columns: 1fr; }
  .place-list article { padding: 2rem 0; }
  .place-list article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }

  .closing { min-height: 680px; }
  .closing::before { background: linear-gradient(0deg, #070707 22%, rgba(7,7,7,.55) 70%, #070707); }
  .closing-figure { width: 100%; height: 64%; mask-image: linear-gradient(180deg, black 60%, transparent); }
  .closing-copy { padding-top: 20rem; }
  .closing h2 { font-size: clamp(3.7rem, 17vw, 5.4rem); }
  .site-footer { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; padding-bottom: 7rem; }
  .site-footer > img { width: 135px; }
  .site-footer > a:last-child { text-align: right; }

  .leader-hero { display: block; min-height: 780px; padding: 116px 16px 80px; }
  .leader-hero-copy { position: relative; z-index: 2; padding-top: 47vw; }
  .leader-hero h1 { margin: .7rem 0 1.2rem; font-size: clamp(3.7rem,18vw,5.3rem); }
  .leader-hero-copy > p:last-child { font-size: .94rem; }
  .leader-portrait { position: absolute; top: 76px; right: -6%; z-index: 0; width: 78%; opacity: .68; mask-image: linear-gradient(180deg, black 65%, transparent); }
  .leader-side-note { display: none; }
  .leader-biography { display: block; padding-block: 5rem; }
  .leader-bio-copy { margin-top: 1.5rem; }
  .leader-bio-copy h2 { font-size: clamp(2.9rem,13vw,4rem); }
  .leader-quote { margin-top: 3rem; }
  .leader-gallery { grid-template-columns: 1fr 1fr; gap: .7rem; padding: 0 16px 6rem; }
  .leader-gallery figure:nth-child(n) { transform: none; }
  .leader-closing { display: block; padding-block: 5rem 7rem; }
  .leader-closing h2 { margin: 1.5rem 0 2rem; font-size: clamp(2.9rem,13vw,4rem); }

  .mobile-lead {
    position: fixed;
    z-index: 90;
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-between;
    min-height: 52px;
    border: 1px solid rgba(255,255,255,.22);
    padding: .85rem 1rem;
    background: rgba(185,101,71,.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 35px rgba(0,0,0,.35);
  }
  .mobile-lead.is-hidden { opacity: 0; pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .gallery-track { animation: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
