:root {
  color-scheme: light;
  --black: #10100f;
  --black-soft: #181816;
  --paper: #eeeae1;
  --paper-light: #f8f5ee;
  --white: #fffdf8;
  --ink: #171613;
  --ink-2: #65615a;
  --muted: #918c82;
  --yellow: #ffd84a;
  --yellow-deep: #f8b91e;
  --burgundy: #702823;
  --green: #2f7455;
  --warning: #a66b1f;
  --error: #b84035;
  --line: rgba(24, 22, 18, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --display: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --body: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --max: 1280px;
  --header: 72px;
  --page-gutter: 24px;
  --section-space: clamp(104px, 9vw, 140px);
  --grid-gap: clamp(56px, 6.25vw, 88px);
  --card-pad: clamp(20px, 2vw, 30px);
  --text-body: 15px;
  --text-small: 12px;
  --text-label: 10px;
  --title-section: clamp(52px, 5.3vw, 80px);
  --title-editorial: clamp(46px, 4.5vw, 64px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

section[id], h1[id], h2[id] { scroll-margin-top: calc(var(--header) + 24px); }

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open { overflow: hidden; }

button,
input,
textarea { font: inherit; }

button,
a {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

button { border: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }

h1,
h2,
h3,
p,
figure,
dl,
dd { margin-top: 0; }

h1,
h2,
h3 { text-wrap: balance; }
p { text-wrap: pretty; overflow-wrap: anywhere; }

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 500;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.page-shell {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max));
  margin-inline: auto;
}

.section { padding-block: var(--section-space); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 12px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: background-color 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(16, 16, 15, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  width: fit-content;
  display: inline-block;
  color: #fff;
}

.brand-lockup {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.footer-brand .brand-lockup { width: min(100%, 300px); }

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
  font-weight: 600;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { transform: scaleX(1); }

.quiet-cta {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.quiet-cta:hover { border-color: #fff; background: #fff; color: var(--ink); }

.menu-button,
.mobile-nav { display: none; }

.brand-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--black);
  color: #fff;
}

.hero-media,
.hero-overlay,
.hero-grain { position: absolute; inset: 0; }

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: opacity 240ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-media img.is-changing { opacity: 0.18; transform: scale(1.04); }

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 9, 8, 0.95) 0%, rgba(9, 9, 8, 0.73) 36%, rgba(9, 9, 8, 0.17) 72%),
    linear-gradient(0deg, rgba(9, 9, 8, 0.92) 0%, transparent 38%, rgba(9, 9, 8, 0.2) 100%);
}

.hero-grain {
  opacity: 0.13;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.32'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-block: calc(var(--header) + 80px) 148px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.14em;
}

.hero-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 216, 74, 0.14);
}

.brand-hero h1 {
  max-width: 800px;
  margin-bottom: 55px;
  font-family: var(--display);
  font-size: clamp(74px, 8vw, 126px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-bottom {
  max-width: 710px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-bottom > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 14px;
}

.hero-links { display: grid; gap: 10px; }

.line-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 720;
}

.line-link span { transition: transform 180ms ease; }
.line-link:hover span { transform: translate(3px, 2px); }
.line-link-light { color: #fff; }
.line-link.muted { color: rgba(255, 255, 255, 0.48); }

.scene-switcher {
  position: absolute;
  z-index: 3;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 36px;
  width: min(600px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.scene-hint {
  grid-column: 1 / -1;
  margin: 0;
  padding: 9px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-small);
  letter-spacing: 0.04em;
}

.scene-switcher button {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 1px;
  padding: 10px 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.54);
  cursor: pointer;
  text-align: left;
  transition: color 180ms ease, background-color 180ms ease;
}

.scene-switcher button span { font-family: var(--mono); font-size: var(--text-label); }
.scene-switcher button strong { font-size: 15px; line-height: 1.35; }
.scene-switcher button small { font-family: var(--mono); font-size: var(--text-label); font-weight: 500; letter-spacing: .06em; opacity: .7; }
.scene-switcher button:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.scene-switcher button[aria-pressed="true"] { color: var(--ink); background: var(--yellow); }

.scene-switcher > .scene-caption {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.scene-switcher > .scene-caption i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

.brand-ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--yellow);
}

.brand-ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 48px;
  padding-inline: 20px;
  animation: ticker 24s linear infinite;
}

.brand-ticker span { font-family: var(--mono); font-size: var(--text-label); letter-spacing: 0.13em; }
.brand-ticker i { font-style: normal; font-size: 8px; }

@keyframes ticker { to { transform: translateX(-50%); } }

.section-label {
  position: relative;
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 0;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.section-label::before {
  content: attr(data-index);
  color: var(--burgundy);
  font-family: var(--display);
  font-size: 64px;
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .9;
}

.section-label::after {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 32px;
  height: 3px;
  background: var(--yellow-deep);
}

.section-label span,
.tiny-label {
  font-family: var(--mono);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: 0.13em;
}

.section-label p { display: grid; gap: 3px; margin-bottom: 0; }
.section-label p strong { color: var(--ink); font-size: 16px; line-height: 1.45; }
.section-label p small { color: var(--muted); font-size: var(--text-small); line-height: 1.55; }
.section-label.compact { max-width: 330px; margin-bottom: 38px; }

.manifesto {
  min-height: min(1080px, 100svh);
  padding-bottom: clamp(72px, 7vw, 108px);
  background: var(--paper-light);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, .68fr);
  gap: var(--grid-gap);
}

.manifesto-copy h2,
.editorial-heading h2,
.people-copy h2,
.method-title-block h2,
.journal-heading h2,
.brand-close h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: var(--title-section);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.07;
}

.manifesto-copy h2 em {
  color: var(--burgundy);
  font-style: normal;
}

.manifesto-lead {
  max-width: 780px;
  display: grid;
  gap: 16px;
  margin: 48px 0 38px;
}

.manifesto-lead p { margin: 0; }

.manifesto-summary {
  max-width: 720px;
  font-family: var(--body);
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 520;
  line-height: 1.8;
}

.manifesto-detail {
  max-width: 760px;
  padding-left: 18px;
  border-left: 2px solid var(--burgundy);
  color: var(--ink-2);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.9;
}

.brand-facts {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 42px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.brand-facts > div {
  min-height: 148px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-facts span {
  color: var(--burgundy);
  font-family: var(--mono);
  font-size: var(--text-label);
  font-weight: 700;
  letter-spacing: .08em;
}

.brand-facts strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(19px, 1.55vw, 25px);
  line-height: 1.25;
}

.brand-facts small {
  margin-top: 8px;
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.5;
}

.brand-pillars {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-left: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-pillars > div {
  min-height: 142px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-pillars span { color: var(--burgundy); font-family: var(--mono); font-size: var(--text-label); }
.brand-pillars strong { margin-top: auto; font-family: var(--display); font-size: 22px; }
.brand-pillars small { margin-top: 7px; color: var(--muted); font-size: var(--text-small); line-height: 1.5; }

.manifesto-principle {
  max-width: 760px;
  margin: 42px 0 0;
}

.manifesto-principle p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--ink-2);
  font-size: var(--text-body);
  line-height: 1.85;
}

.path-balance {
  max-width: 760px;
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 2px;
  margin: 56px 0 0;
}

.path-balance > div {
  min-height: 150px;
  display: grid;
  align-content: end;
  padding: 24px;
  background: var(--yellow);
}

.path-balance > div:last-child { background: var(--burgundy); color: #fff; }
.path-balance strong { font-family: var(--display); font-size: 44px; line-height: 1; }
.path-balance span { margin-top: 14px; font-size: 15px; font-weight: 750; }
.path-balance small { margin-top: 2px; font-size: 11px; opacity: .65; }
.path-balance p {
  max-width: 210px;
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.55;
  opacity: .72;
}

.brand-archive {
  width: 100%;
  margin-top: clamp(82px, 8vw, 118px);
}

.brand-archive-head {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  padding: 18px clamp(20px, 2.5vw, 32px);
  background: #11110f;
  color: #fff;
}

.brand-archive-head > .tiny-label,
.honor-archive header .tiny-label { margin: 4px 0 0; color: var(--burgundy); }

.brand-archive-head > .tiny-label {
  flex: 0 0 auto;
  margin: 0;
  color: var(--yellow);
}

.brand-archive-head h3,
.honor-archive h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 620;
  letter-spacing: -.035em;
  line-height: 1.08;
  scroll-margin-top: calc(var(--header) + 24px);
}

.brand-archive-head h3 {
  font-size: clamp(27px, 2.5vw, 36px);
  font-weight: 560;
  letter-spacing: 0;
}

.brand-archive-head > div {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-archive-head > div > p {
  margin: 0;
  color: rgba(255,255,255,.52);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  white-space: nowrap;
}

.archive-showcase {
  margin-top: 0;
  border: 1px solid var(--ink);
  border-top: 0;
  background: var(--paper-light);
}

.archive-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--ink);
  background: var(--paper-light);
}

.archive-tabs button {
  min-width: 0;
  min-height: 64px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px clamp(14px, 1.6vw, 22px);
  border-right: 1px solid var(--line);
  background: var(--paper-light);
  color: var(--ink-2);
  cursor: pointer;
  text-align: left;
  transition: background-color 180ms ease, color 180ms ease;
}

.archive-tabs button:last-child { border-right: 0; }
.archive-tabs button:hover { color: var(--burgundy); }
.archive-tabs button.is-active { background: #11110f; color: #fff; }
.archive-tabs button span { font-family: var(--display); font-size: clamp(17px, 1.6vw, 23px); font-weight: 620; line-height: 1.2; }
.archive-tabs button small { font-family: var(--mono); font-size: 8px; line-height: 1.2; letter-spacing: .11em; opacity: .62; }
.archive-tabs button.is-active small { color: var(--yellow); opacity: 1; }
.archive-tabs button:focus-visible { outline: 2px solid var(--yellow); outline-offset: -5px; }

.archive-panel {
  min-height: clamp(460px, 45vw, 590px);
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  background: #11110f;
}

.archive-panel[hidden] { display: none; }
.archive-panel.is-entering { animation: archivePanelIn 320ms cubic-bezier(.22,1,.36,1); }

@keyframes archivePanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.archive-visual {
  position: relative;
  min-width: 0;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
  background: #090908;
}

.archive-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.82));
  pointer-events: none;
}

.archive-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 320ms ease, transform 560ms cubic-bezier(.22,1,.36,1), visibility 320ms ease;
}

.archive-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.archive-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--archive-position, center);
}

.archive-slide--top {
  --archive-position: center top;
}

.archive-slide--poster {
  --archive-position: center 22%;
}

.archive-panel--creators {
  min-height: 0;
  display: block;
  padding: clamp(24px, 3vw, 42px);
  background: var(--paper-light);
  color: var(--ink);
}

.creator-feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 3.5vw, 52px);
}

.creator-feature {
  min-width: 0;
  margin: 0;
}

.creator-feature--student figure {
  position: relative;
  min-height: 0;
  height: auto;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #11110f;
}

.creator-feature--student .archive-slide {
  background: #11110f;
}

.creator-feature--student img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center 42%;
}

.creator-feature--student figcaption {
  position: absolute;
  inset: auto 20px 18px;
  display: grid;
  gap: 5px;
  padding-top: 80px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.74));
  color: #fff;
}

.creator-feature--student figcaption small,
.creator-feature--event header .tiny-label,
.creator-directory .tiny-label {
  color: var(--yellow);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
}

.creator-feature--student figcaption strong {
  font-family: var(--display);
  font-size: clamp(27px, 2.8vw, 40px);
  font-weight: 600;
}

.creator-feature--event {
  display: grid;
  grid-template-rows: auto 1fr;
  border-top: 1px solid var(--ink);
}

.creator-feature--event header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 18px;
}

.creator-feature--event header p { margin: 0; }
.creator-feature--event header > div { text-align: right; }
.creator-feature--event h4 { margin: 0; font-family: var(--display); font-size: clamp(25px, 2.6vw, 38px); font-weight: 600; }
.creator-feature--event header > div p { margin-top: 5px; color: var(--muted); font-size: 12px; }

.creator-event-gallery {
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: #11110f;
}

.creator-event-gallery figure {
  min-width: 0;
  height: 440px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: #080807;
}

.creator-event-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.creator-directory {
  display: grid;
  grid-template-columns: minmax(170px, .28fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 42px);
  margin-top: clamp(28px, 3vw, 42px);
  padding-top: 20px;
  border-top: 1px solid var(--ink);
}

.creator-directory--side {
  min-height: 0;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: clamp(22px, 2.7vw, 36px);
  margin-top: 0;
  padding: clamp(22px, 2.6vw, 36px) 0 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.creator-directory.creator-directory--side header {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 18px;
  align-items: end;
  padding-inline: 2px;
}

.creator-directory.creator-directory--side header .tiny-label { grid-column: 1 / -1; }
.creator-directory.creator-directory--side header strong { line-height: 1; }
.creator-directory.creator-directory--side header > small {
  color: var(--muted);
  font-family: var(--body);
  font-size: 10px;
  line-height: 1.2;
}

.creator-directory.creator-directory--side ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  border-top: 1px solid var(--line);
}

.creator-directory.creator-directory--side li {
  min-height: 0;
  display: flex;
  align-items: center;
  margin: 0;
  padding: clamp(13px, 1.35vw, 19px) clamp(10px, 1.2vw, 18px) clamp(13px, 1.35vw, 19px) 2px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.15;
}

.creator-directory.creator-directory--side li:nth-child(even) {
  padding-right: 2px;
  padding-left: clamp(14px, 1.7vw, 24px);
  border-left: 1px solid var(--line);
}

.creator-directory.creator-directory--side li:not(:last-child)::after { content: none; }

.creator-video-archive {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 2vw, 28px);
  margin-top: clamp(34px, 4vw, 58px);
  padding-top: clamp(22px, 2.4vw, 34px);
  border-top: 1px solid var(--ink);
}

.creator-video-archive > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.creator-video-archive > header .tiny-label { color: var(--burgundy); }
.creator-video-archive h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 600;
  line-height: 1;
}

.creator-video-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.creator-video-card { min-width: 0; background: var(--paper-light); }
.creator-video-card .performance-frame { aspect-ratio: 16 / 10; }
.creator-video-card > div { min-height: 90px; padding: 17px 19px 19px; }
.creator-video-card h5 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 600;
  line-height: 1.25;
}
.creator-video-card p { margin: 7px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }

.archive-panel--activities {
  min-height: 0;
  display: block;
  padding: clamp(24px, 3vw, 42px);
  background: var(--paper-light);
  color: var(--ink);
}

.campus-dynamic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.campus-dynamic-card { min-width: 0; background: var(--paper-light); }
.campus-dynamic-card > header {
  min-height: 152px;
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: 18px 20px 20px;
}
.campus-dynamic-card > header p { margin: 0; }
.campus-dynamic-card > header > div { display: flex; align-items: end; justify-content: space-between; gap: 18px; text-align: left; }
.campus-dynamic-card > header h4 { margin: 0; font-family: var(--display); font-size: clamp(23px, 2.2vw, 33px); font-weight: 600; }
.campus-dynamic-card > header > div p { max-width: 150px; color: var(--muted); font-size: 11px; text-align: right; }
.campus-dynamic-card > header .tiny-label { color: var(--burgundy); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }
.campus-dynamic-media { aspect-ratio: 3 / 2; margin: 0; overflow: hidden; background: #11110f; }
.campus-dynamic-media img { width: 100%; height: 100%; object-fit: cover; }
.campus-dynamic-card--workshop > header h4 { word-break: keep-all; }

.campus-salon-carousel { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: #11110f; }
.campus-salon-track { position: absolute; inset: 0; }
.campus-salon-track figure { position: absolute; inset: 0; margin: 0; opacity: 0; visibility: hidden; transition: opacity 320ms ease, visibility 320ms ease; }
.campus-salon-track figure.is-active { opacity: 1; visibility: visible; }
.campus-salon-track img { width: 100%; height: 100%; object-fit: cover; }
.campus-salon-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 46px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(8,8,8,.62);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, color 180ms ease;
}
.campus-salon-arrow:hover { background: var(--yellow); color: var(--ink); }
.campus-salon-arrow:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.campus-salon-arrow--prev { left: 14px; }
.campus-salon-arrow--next { right: 14px; }
.campus-salon-count {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  margin: 0;
  padding: 8px 10px;
  background: rgba(8,8,8,.72);
  color: #fff;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}
.campus-salon-count i { color: var(--yellow); font-style: normal; }

.campus-dynamic-more {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--line);
}
.campus-dynamic-more article { min-width: 0; background: var(--paper-light); }
.campus-mini-carousel,
.campus-mini-media {
  position: relative;
  height: clamp(210px, 20vw, 270px);
  margin: 0;
  overflow: hidden;
  background: #11110f;
}
.campus-mini-track { position: absolute; inset: 0; }
.campus-mini-track figure {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms ease;
}
.campus-mini-track figure::before {
  position: absolute;
  inset: -20px;
  background: var(--campus-slide-image) center / cover no-repeat;
  content: "";
  filter: blur(18px);
  opacity: .4;
  transform: scale(1.08);
}
.campus-mini-track figure.is-active { opacity: 1; visibility: visible; }
.campus-mini-track img,
.campus-mini-media img { width: 100%; height: 100%; }
.campus-mini-track img { position: relative; z-index: 1; object-fit: contain; }
.campus-mini-media--cover img { object-fit: cover; object-position: center 44%; }
.campus-mini-media--poster { background: #f2d765; }
.campus-mini-media--poster img { object-fit: contain; }
.campus-mini-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 38px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(8,8,8,.66);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease, color 180ms ease;
}
.campus-mini-arrow:hover { background: var(--yellow); color: var(--ink); }
.campus-mini-arrow:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.campus-mini-arrow--prev { left: 10px; }
.campus-mini-arrow--next { right: 10px; }
.campus-mini-count {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 7px 9px;
  background: rgba(8,8,8,.72);
  color: #fff;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
}
.campus-mini-count i { color: var(--yellow); font-style: normal; }
.campus-dynamic-more > article > div { min-height: 138px; padding: 17px 18px 20px; }
.campus-dynamic-more > article > .campus-mini-carousel { min-height: 0; padding: 0; }
.campus-dynamic-more small { color: var(--burgundy); font-family: var(--mono); font-size: 7px; letter-spacing: .11em; }
.campus-dynamic-more h5 { margin: 19px 0 6px; font-family: var(--display); font-size: clamp(19px, 1.7vw, 25px); font-weight: 600; line-height: 1.25; }
.campus-dynamic-more p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.65; }

.archive-panel--mentor-works {
  min-height: 0;
  display: block;
  padding: clamp(24px, 3vw, 42px);
  background: #11110f;
  color: #fff;
}

.mentor-works-head {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: end;
  padding: 0 0 clamp(22px, 2.6vw, 34px);
  border-bottom: 1px solid rgba(255,255,255,.3);
}

.mentor-works-head .tiny-label { margin: 0 0 15px; color: var(--yellow); }
.mentor-works-head h4 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(31px, 3.2vw, 46px);
  font-weight: 560;
  line-height: 1;
}
.mentor-works-head > p {
  max-width: 430px;
  justify-self: end;
  margin: 0;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  line-height: 1.7;
  text-align: right;
}

.mentor-works-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(22px, 2.6vw, 34px);
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.28);
}

.mentor-work-card { color: var(--ink); }
.mentor-work-card .performance-frame { aspect-ratio: 16 / 9; }
.mentor-work-card > div { min-height: 104px; display: block; padding: 18px; }
.mentor-work-card h3 { font-size: clamp(18px, 1.7vw, 25px); line-height: 1.2; }
.mentor-work-card p { margin-top: 8px; text-align: left; }

@media (min-width: 1440px) {
  .mentor-works-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.activity-archive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
  gap: clamp(20px, 2.6vw, 34px);
}

.activity-record {
  min-width: 0;
  border-top: 1px solid var(--ink);
}

.activity-record > header {
  min-height: 104px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.activity-record > header p { margin: 0; }
.activity-record > header > div { text-align: right; }
.activity-record > header h4 { margin: 0; font-family: var(--display); font-size: clamp(24px, 2.25vw, 34px); font-weight: 600; }
.activity-record > header > div p { margin-top: 5px; color: var(--muted); font-size: 12px; }
.activity-record > header .tiny-label { color: var(--burgundy); font-family: var(--mono); font-size: 8px; letter-spacing: .12em; }

.archive-panel--activities .creator-event-gallery { height: 460px; }
.archive-panel--activities .creator-event-gallery figure { height: 100%; }

.campus-event-gallery {
  height: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: minmax(0, 1fr) minmax(180px, .72fr);
  gap: 10px;
  padding: 14px;
  background: #11110f;
}

.campus-event-gallery figure { position: relative; min-width: 0; min-height: 0; margin: 0; overflow: hidden; background: #080807; }
.campus-event-gallery__main { grid-column: 1 / -1; }
.campus-event-gallery__video { grid-column: 1 / -1; }
.campus-event-gallery img { width: 100%; height: 100%; object-fit: cover; }
.campus-event-gallery__main img { object-fit: contain; }
.campus-event-gallery video { width: 100%; height: 100%; display: block; object-fit: contain; background: #080807; }
.campus-event-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 22px 12px 8px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  color: #fff;
  font-size: 10px;
  line-height: 1.4;
}

.campus-event-gallery__main figcaption,
.campus-event-gallery__video figcaption {
  inset: 10px auto auto 10px;
  padding: 6px 9px;
  background: rgba(0,0,0,.7);
}

.creator-directory header { display: grid; align-content: start; gap: 14px; }
.creator-directory header strong { font-family: var(--display); font-size: clamp(21px, 2vw, 29px); font-weight: 600; }
.creator-directory ul { display: flex; flex-wrap: wrap; gap: 0; margin: 0; padding: 0; list-style: none; }
.creator-directory li { margin: 0 14px 12px 0; font-family: var(--display); font-size: clamp(18px, 1.75vw, 25px); }
.creator-directory li:not(:last-child)::after { content: "／"; margin-left: 14px; color: var(--line); font-size: .65em; }
.creator-directory li small { margin-left: 5px; color: var(--muted); font-family: var(--mono); font-size: 7px; }

.archive-slide--contained { background: #151512; }
.archive-slide--contained img { object-fit: contain; padding: clamp(28px, 6vw, 78px); }

.archive-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 52px;
  height: 60px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.58);
  background: rgba(9,9,8,.62);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(7px);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.archive-arrow--prev { left: 16px; }
.archive-arrow--next { right: 16px; }
.archive-arrow span { font-family: var(--mono); font-size: 21px; line-height: 1; }
.archive-arrow:hover { border-color: var(--yellow); background: var(--yellow); color: var(--ink); }
.archive-arrow:focus-visible { outline: 2px solid var(--yellow); outline-offset: 4px; }

.archive-slide-count {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(9,9,8,.58);
  color: #fff;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
  backdrop-filter: blur(7px);
}

.archive-slide-count i { color: rgba(255,255,255,.45); font-style: normal; }
.archive-slide-count span:last-child { color: rgba(255,255,255,.58); }

.archive-visual figcaption {
  position: absolute;
  z-index: 3;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.archive-visual figcaption > span { display: grid; gap: 6px; }
.archive-visual figcaption b { color: var(--yellow); font: inherit; }
.archive-visual figcaption small { color: rgba(255,255,255,.82); font-size: inherit; }
.archive-visual figcaption a {
  max-width: 48%;
  color: rgba(255,255,255,.64);
  font-size: 7px;
  line-height: 1.45;
  text-align: right;
  text-decoration: none;
}
.archive-visual figcaption a:hover { color: var(--yellow); }
.archive-visual figcaption a[hidden] { display: none; }

.archive-credits {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3.4vw, 48px);
  background: var(--paper-light);
  color: var(--ink);
}

.archive-credits > .tiny-label { margin: 0; color: var(--burgundy); }
.archive-credits h4 {
  max-width: 420px;
  margin: clamp(30px, 5vw, 70px) 0 18px;
  font-family: var(--display);
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.08;
}
.archive-relation,
.archive-public-lead { max-width: 460px; margin: 0; color: var(--ink-2); font-size: 12px; line-height: 1.8; }
.archive-credits ul {
  display: flex;
  flex-wrap: wrap;
  align-content: end;
  gap: 0;
  margin: auto 0 0;
  padding: 30px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.archive-credits li { display: inline-flex; align-items: baseline; margin: 0 11px 10px 0; font-family: var(--display); font-size: clamp(18px, 1.8vw, 25px); line-height: 1.2; }
.archive-credits li:not(:last-child)::after { content: "／"; margin-left: 11px; color: var(--line); font-family: var(--body); font-size: .65em; }
.archive-credits li small { margin-left: 5px; color: var(--muted); font-family: var(--mono); font-size: 7px; letter-spacing: .05em; }
.archive-credits--students { justify-content: center; }
.archive-credits--students ul { margin: 0; padding: 0; border-top: 0; align-content: center; }
.archive-credits--students li { margin-right: 15px; margin-bottom: 18px; font-size: clamp(24px, 2.5vw, 38px); }
.archive-credits--students li:not(:last-child)::after { margin-left: 15px; }
.archive-public-copy { background: var(--yellow); }
.archive-public-copy h4 { margin-top: auto; }
.archive-public-lead { color: rgba(17,17,16,.75); font-size: var(--text-body); line-height: 1.9; }

.archive-panel--directory,
.archive-panel--public {
  min-height: 0;
  grid-template-columns: minmax(250px, .86fr) minmax(0, 1.64fr);
  background: var(--paper-light);
}

.archive-panel--public {
  grid-template-columns: minmax(280px, .96fr) minmax(0, 1.54fr);
  background: #11110f;
}

.archive-directory-intro {
  position: relative;
  min-width: 0;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.4vw, 46px);
  background: #11110f;
  color: #fff;
  overflow: hidden;
}

.archive-directory-intro::after {
  content: "VOICE";
  position: absolute;
  right: -15px;
  bottom: 54px;
  color: rgba(255,255,255,.035);
  font-family: var(--display);
  font-size: clamp(76px, 8vw, 118px);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .8;
  pointer-events: none;
}

.archive-directory-intro .tiny-label { margin: 0; color: var(--yellow); }
.archive-directory-intro > div {
  position: relative;
  z-index: 1;
  margin: auto 0;
}
.archive-directory-intro > div > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255,255,255,.46);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
}
.archive-directory-intro h4 {
  max-width: 340px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(31px, 3.15vw, 46px);
  font-weight: 560;
  letter-spacing: -.04em;
  line-height: 1.12;
}
.archive-directory-intro > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}
.archive-directory-intro > ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.archive-directory-intro > ul li {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: 9px;
  letter-spacing: .08em;
}

.archive-credits--directory {
  min-height: 0;
  display: flex;
  padding: clamp(28px, 3.4vw, 44px);
}
.archive-name-wall-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink);
}
.archive-name-wall-head strong {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 620;
  letter-spacing: -.025em;
}
.archive-credits--directory ul {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  column-gap: clamp(24px, 3vw, 48px);
  row-gap: 0;
  margin: 18px 0 0;
  padding: 0;
  border: 0;
}
.archive-credits--directory li {
  min-height: 62px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(21px, 1.8vw, 29px);
  transition: color 180ms ease, padding-left 180ms ease;
}
.archive-credits--directory li:hover { padding-left: 8px; color: var(--burgundy); }
.archive-credits--directory li:not(:last-child)::after { content: none; }
.archive-credits--directory li small {
  display: inline;
  margin-left: 8px;
  color: var(--muted);
  font-size: 7px;
  letter-spacing: .08em;
}

.archive-panel--artists {
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
}

.archive-credits--artists {
  padding: clamp(26px, 3vw, 42px);
}

.archive-credits--artists > .tiny-label {
  color: var(--burgundy);
}

.archive-credits--artists h4 {
  margin: clamp(22px, 3vw, 38px) 0 12px;
  font-size: clamp(29px, 2.8vw, 42px);
}

.archive-credits--artists .archive-relation {
  margin-bottom: clamp(22px, 3vw, 34px);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.archive-credits--artists .archive-name-wall-head {
  padding-bottom: 13px;
}

.archive-credits--artists ul {
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  margin-top: 0;
}

.archive-credits--artists li {
  min-height: 52px;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
  padding: 8px 0;
  font-size: clamp(18px, 1.4vw, 22px);
}

.archive-credits--artists li::before {
  content: attr(data-index);
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .08em;
}

.archive-credits--artists li > span {
  grid-column: 2;
  grid-row: 1;
  line-height: 1.08;
}

.archive-credits--artists li > small {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  margin: 4px 0 0;
  padding: 0;
  line-height: 1.3;
  text-align: left;
}

.archive-credits--artists li button {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  grid-template-rows: auto auto;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease;
}

.archive-credits--artists li button span {
  grid-column: 1;
  grid-row: 1;
  line-height: 1.08;
}

.archive-credits--artists li button small {
  grid-column: 1;
  grid-row: 2;
  justify-self: start;
  margin: 4px 0 0;
  padding: 0;
  line-height: 1.3;
  text-align: left;
}

.archive-credits--artists li button::after {
  content: "↗";
  grid-column: 2;
  grid-row: 1 / 3;
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.archive-credits--artists li button:hover,
.archive-credits--artists li button.is-active {
  color: var(--burgundy);
}

.archive-credits--artists li button:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 5px;
}

@media (min-width: 1281px) {
  .archive-credits--artists ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(52px, auto));
    grid-auto-flow: column;
    column-gap: clamp(26px, 2.4vw, 42px);
  }

  .archive-credits--artists li {
    grid-template-columns: 28px minmax(0, 1fr);
  }
}

.archive-public-cover {
  min-width: 0;
  min-height: 410px;
  margin: 0;
  overflow: hidden;
  background: #11110f;
}
.archive-public-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center top;
}
.archive-panel--public .archive-public-copy {
  min-height: 410px;
  justify-content: flex-start;
  padding: clamp(30px, 5vw, 70px);
  background: #11110f;
  color: #fff;
}
.archive-panel--public .archive-public-copy > .tiny-label {
  margin: 0;
  color: var(--yellow);
}
.archive-panel--public .archive-public-copy h4 {
  max-width: 480px;
  margin: clamp(38px, 5vw, 68px) 0 0;
  color: #fff;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.08;
}
.archive-public-records {
  display: grid;
  gap: 0;
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.28);
}
.archive-panel--public .archive-public-lead {
  max-width: 660px;
  margin: 0;
  padding: 18px 0;
  color: rgba(255,255,255,.82);
  font-family: var(--body);
  font-size: clamp(14px, 1.35vw, 19px);
  line-height: 1.7;
}
.archive-panel--public .archive-public-lead + .archive-public-lead {
  border-top: 1px solid rgba(255,255,255,.16);
}
.archive-note { margin: auto 0 0; padding-top: 20px; border-top: 1px solid rgba(17,17,16,.25); color: rgba(17,17,16,.55); font-family: var(--mono); font-size: 8px; letter-spacing: .04em; }

.honor-archive { margin-top: clamp(84px, 9vw, 126px); }

.honor-archive > header {
  margin-bottom: 30px;
  padding-top: 16px;
  border-top: 1px solid var(--ink);
}

.honor-archive h3 { margin-top: 18px; }

.honor-grid {
  border-top: 1px solid var(--ink);
}

.honor-card {
  min-width: 0;
  display: block;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.honor-card figure {
  min-height: 154px;
  display: grid;
  grid-template-columns: clamp(130px, 16vw, 190px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 3.5vw, 48px);
  margin: 0;
  padding: 18px 0;
}

.honor-thumb {
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(17,17,16,.14);
  border-radius: 7px;
  background: #e9e4d9;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.42);
}

.honor-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 8px;
  border-radius: 5px;
  filter: saturate(.76) contrast(.96);
  transition: filter 260ms ease, transform 360ms cubic-bezier(.22,1,.36,1);
}

.honor-card:hover .honor-thumb img { filter: saturate(1) contrast(1); transform: scale(1.025); }

.honor-card figcaption {
  min-width: 0;
}

.honor-card figcaption small {
  color: var(--burgundy);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
}

.honor-card figcaption strong {
  display: block;
  margin-top: 14px;
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.honor-card figcaption p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: var(--text-small);
  line-height: 1.6;
}

.honor-link-text {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
  white-space: nowrap;
}

.honor-link-text i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--body);
  font-size: 13px;
  font-style: normal;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.honor-card:hover .honor-link-text i {
  border-color: var(--yellow);
  background: var(--yellow);
}

.honor-card:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 5px;
}

@media (min-width: 1081px) {
  .manifesto-grid {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: clamp(58px, 5.5vw, 78px);
  }

  .manifesto-copy {
    width: 100%;
    max-width: 860px;
  }

  .manifesto-lead,
  .brand-facts,
  .brand-pillars,
  .manifesto-principle,
  .path-balance,
  .brand-archive {
    width: 100%;
    max-width: none;
  }

  .manifesto-lead {
    margin: clamp(34px, 3vw, 44px) 0 34px;
  }

  .manifesto-principle {
    margin-top: 36px;
  }

  .path-balance {
    margin-top: 48px;
  }
}

@media (min-width: 761px) and (max-width: 1280px) {
  .hero-content { padding-bottom: 250px; }
  .hero-bottom {
    width: calc(50% - 22px);
    max-width: 560px;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-links {
    grid-template-columns: repeat(2, max-content);
    gap: 28px;
  }
  .scene-switcher {
    width: min(560px, calc(50% - 22px));
  }
}

.live-section { background: var(--black); color: #fff; }
.live-heading { display: grid; grid-template-columns: 155px minmax(240px,.42fr) minmax(420px,.58fr); gap: clamp(30px,4vw,62px); align-items: start; margin-bottom: clamp(38px,4vw,54px); padding-top: 14px; border-top: 1px solid rgba(255,255,255,.42); }
.live-heading > span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .1em; }
.live-heading h2 { margin: 0; font-family: var(--display); font-size: clamp(32px,3vw,43px); font-weight: 520; line-height: 1.08; }
.live-heading > div > p { margin: 10px 0 0; color: rgba(255,255,255,.55); font-size: 11px; }
.live-heading ul { min-height: 82px; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin: 0; padding: 0; border-left: 1px solid rgba(255,255,255,.2); list-style: none; }
.live-heading li { display: grid; align-content: start; gap: 4px; padding: 0 18px; border-right: 1px solid rgba(255,255,255,.2); }
.live-heading li small { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); }
.live-heading li strong { margin-top: 12px; font-family: var(--mono); font-size: 11px; letter-spacing: .08em; }
.live-heading li span { color: rgba(255,255,255,.48); font-size: 10px; }

.editorial-heading {
  display: grid;
  grid-template-columns: minmax(220px, .32fr) minmax(0, .68fr);
  gap: var(--grid-gap);
  align-items: start;
  margin-bottom: clamp(56px, 6vw, 80px);
}

.editorial-heading h2 {
  max-width: 780px;
  font-size: var(--title-editorial);
}

.editorial-label {
  min-height: 190px;
  display: grid;
  align-content: start;
  padding-top: 16px;
  border-top: 1px solid currentColor;
}

.editorial-label > span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .1em; }
.editorial-label > strong { margin-top: 33px; font-family: var(--display); font-size: clamp(27px, 2.4vw, 36px); line-height: 1.15; }
.editorial-label > p { max-width: 270px; margin: 15px 0 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.7; }

.featured-work {
  display: grid;
  grid-template-columns: minmax(360px, 0.84fr) minmax(0, 1.16fr);
  min-height: 650px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.work-art {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 216, 74, 0.55) 48.2% 48.6%, transparent 48.8%),
    var(--burgundy);
}

.work-art::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.record-disc {
  width: min(54%, 300px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: repeating-radial-gradient(circle, #111 0 2px, #1c1c1a 3px 6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.34);
  animation: discSpin 14s linear infinite paused;
}

.featured-work.is-playing .record-disc { animation-play-state: running; }

@keyframes discSpin { to { transform: rotate(360deg); } }

.record-disc i {
  width: 32%;
  aspect-ratio: 1;
  border: 8px solid var(--yellow);
  border-radius: 50%;
  background: var(--burgundy);
}

.work-art-mark {
  position: absolute;
  top: 38px;
  left: 38px;
  font-family: var(--display);
  font-size: 38px;
  font-weight: 800;
}

.work-art > p {
  position: absolute;
  right: 38px;
  bottom: 34px;
  margin-bottom: 0;
  font-family: var(--mono);
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-align: right;
}

.work-content {
  display: flex;
  flex-direction: column;
  padding: 44px 0 36px clamp(40px, 5vw, 70px);
}

.work-meta { display: flex; justify-content: space-between; gap: 20px; color: rgba(255, 255, 255, 0.52); font-family: var(--mono); font-size: var(--text-label); letter-spacing: 0.1em; }

.work-content h3 {
  margin: auto 0 26px;
  font-family: var(--display);
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.12;
}

.work-content > p { max-width: 640px; margin-bottom: 40px; color: rgba(255, 255, 255, 0.66); font-size: 14px; }

.player {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 46px;
  padding-block: 22px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.play-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.play-button:hover { transform: scale(1.06); background: #ffe47d; }
.play-button:active { transform: scale(0.96); }

.play-icon {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid var(--ink);
}

.play-button[aria-pressed="true"] .play-icon {
  width: 10px;
  height: 11px;
  margin-left: 0;
  border: 0;
  border-left: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
}

.player-main { min-width: 0; }
.player-title { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 11px; color: rgba(255, 255, 255, 0.64); font-size: 11px; }
.player-title time { font-family: var(--mono); font-variant-numeric: tabular-nums; }

.player-track { position: relative; height: 2px; overflow: hidden; margin-bottom: 15px; background: rgba(255, 255, 255, 0.18); }
.player-track i { position: absolute; inset: 0 auto 0 0; width: 0%; background: var(--yellow); transition: width 100ms linear; }

.mini-wave { height: 26px; display: flex; align-items: center; gap: 5px; }
.mini-wave i { width: 2px; height: var(--h, 40%); background: rgba(255, 255, 255, 0.28); }
.mini-wave i:nth-child(2n) { --h: 76%; }
.mini-wave i:nth-child(3n) { --h: 52%; }
.featured-work.is-playing .mini-wave i { background: var(--yellow); animation: miniWave 700ms ease-in-out infinite alternate; }
.featured-work.is-playing .mini-wave i:nth-child(2n) { animation-delay: -220ms; }

@keyframes miniWave { from { transform: scaleY(0.5); } to { transform: scaleY(1.08); } }

.archive-row { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--line-light); }
.archive-row article { min-height: 220px; display: flex; flex-direction: column; padding: var(--card-pad); border-right: 1px solid var(--line-light); }
.archive-row article:last-child { border-right: 0; }
.archive-row span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); letter-spacing: 0.1em; }
.archive-row h3 { margin: auto 0 5px; font-family: var(--display); font-size: 25px; }
.archive-row p { margin-bottom: 0; color: rgba(255, 255, 255, 0.55); font-size: var(--text-small); }

.people-section {
  padding-top: clamp(44px, 4vw, 60px);
  background: var(--paper-light);
}

.people-content { display: grid; grid-template-columns: minmax(220px, .32fr) minmax(0, .68fr); gap: var(--grid-gap); }
.people-copy { min-width: 0; }
.founder-profile { display: grid; grid-template-columns: minmax(230px, .42fr) minmax(0, .58fr); gap: clamp(34px, 4vw, 58px); align-items: start; }
.founder-portrait { position: relative; min-width: 0; aspect-ratio: 1 / 1.05; margin: 0; overflow: hidden; background: var(--black); }
.founder-portrait > img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: contrast(1.03); transition: transform 700ms cubic-bezier(.22,1,.36,1); }
.founder-portrait:hover > img { transform: scale(1.025); }
.founder-portrait figcaption { position: absolute; inset: auto 0 0; display: flex; align-items: end; justify-content: space-between; gap: 20px; padding: 38px 16px 14px; background: linear-gradient(transparent, rgba(10,10,10,.82)); color: #fff; }
.founder-portrait figcaption span { color: rgba(255,255,255,.62); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .1em; }
.founder-portrait figcaption strong { font-family: var(--display); font-size: 17px; font-weight: 500; }
.founder-main { padding-top: 2px; }
.founder-main > .tiny-label { margin-bottom: 17px; color: var(--burgundy); }
.founder-main h2 { max-width: 640px; font-size: clamp(43px, 4.2vw, 66px); }
.founder-role { margin: 18px 0 0; color: var(--ink-2); font-size: 13px; font-weight: 650; }
.founder-main blockquote { position: relative; margin: clamp(34px, 4vw, 54px) 0 28px; padding: 0 0 0 24px; border-left: 4px solid var(--yellow-deep); font-family: var(--display); font-size: clamp(21px, 2vw, 29px); line-height: 1.55; }
.founder-bio { max-width: 700px; margin-bottom: 33px; color: var(--ink-2); font-size: 14px; line-height: 1.9; }
.founder-focus { margin: 0; border-top: 1px solid var(--line); }
.founder-focus div { display: grid; grid-template-columns: 84px 1fr; gap: 18px; padding-block: 12px; border-bottom: 1px solid var(--line); }
.founder-focus dt { color: var(--burgundy); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .08em; }
.founder-focus dd { margin: 0; font-size: 12px; font-weight: 650; }

/* 24–27 inch desktop: keep the mentor introduction as one composed spread. */
@media (min-width: 1081px) {
  .people-content {
    grid-template-columns: 1fr;
    gap: clamp(36px, 3.5vw, 52px);
  }

  .people-section .section-label {
    grid-template-columns: 82px minmax(0, 1fr) auto;
    column-gap: clamp(24px, 3vw, 42px);
    row-gap: 0;
    align-items: center;
    padding: 14px 0 16px;
  }

  .people-section .section-label::before {
    grid-column: 1;
    grid-row: 1;
    font-size: 54px;
  }

  .people-section .section-label > span {
    grid-column: 2;
    grid-row: 1;
  }

  .people-section .section-label > p {
    grid-column: 3;
    grid-row: 1;
    justify-items: end;
    text-align: right;
  }

  .founder-profile {
    grid-template-columns: minmax(410px, .46fr) minmax(0, .54fr);
    gap: clamp(52px, 6vw, 84px);
    align-items: start;
  }

  .founder-portrait {
    min-height: 0;
    aspect-ratio: 1 / 1.05;
  }

  .founder-main {
    max-width: 680px;
    padding: 4px 0 2px;
  }

  .founder-main h2 {
    font-size: clamp(52px, 4vw, 64px);
  }

  .founder-main blockquote {
    margin-top: clamp(30px, 3.2vw, 44px);
  }

  .people-section .credentials-head {
    margin-top: clamp(56px, 5vw, 72px);
  }
}

.credentials-head { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-top: clamp(70px, 7vw, 96px); padding-top: 16px; border-top: 1px solid var(--line); }
.credentials-head span { color: var(--burgundy); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .11em; }
.credentials-head h3 { margin: 7px 0 0; font-family: var(--display); font-size: clamp(28px, 2.7vw, 40px); font-weight: 550; }
.credential-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.credential-card { min-width: 0; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.22); }
.credential-visual { display: grid; place-items: center; aspect-ratio: 4 / 3; overflow: hidden; padding: 15px; border-bottom: 1px solid var(--line); background: #ebe8e0; }
.credential-visual img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform 300ms ease; }
.credential-card:hover .credential-visual img { transform: scale(1.025); }
.credential-copy { min-height: 148px; display: flex; flex-direction: column; padding: 17px; }
.credential-copy small { color: var(--burgundy); font-family: var(--mono); font-size: 9px; font-style: normal; letter-spacing: .08em; }
.credential-copy strong { margin-top: auto; font-family: var(--display); font-size: 19px; line-height: 1.25; }
.credential-copy em { margin-top: 6px; color: var(--muted); font-size: 11px; font-style: normal; }
.honors-list { display: grid; grid-template-columns: 1fr 1fr; margin-top: 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.honors-list > div { min-height: 145px; display: flex; flex-direction: column; padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.honors-list span { color: var(--burgundy); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .1em; }
.honors-list strong { margin-top: auto; font-family: var(--display); font-size: 21px; }
.honors-list p { margin: 4px 0 0; color: var(--muted); font-size: 11px; }

.team-band { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: clamp(88px, 9vw, 130px); padding: 15px 0 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.team-band span { color: var(--burgundy); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .11em; }
.team-band strong { font-family: var(--display); font-size: 20px; font-weight: 560; }
.teacher-roster { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; margin-top: 28px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.teacher-card { min-width: 0; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.18); }
.teacher-portrait { position: relative; aspect-ratio: 1 / 1; margin: 0; overflow: hidden; border-bottom: 1px solid var(--line); background: var(--black); }
.teacher-portrait > img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transform: scale(1.11); transform-origin: center top; filter: contrast(1.04); transition: transform 500ms cubic-bezier(.22,1,.36,1); }
.teacher-card:hover .teacher-portrait > img { transform: scale(1.14); }
.teacher-portrait figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; align-items: end; gap: 20px; padding: 70px 18px 16px; background: linear-gradient(transparent, rgba(10,10,10,.94)); color: #fff; }
.teacher-portrait figcaption span { color: rgba(255,255,255,.6); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .1em; }
.teacher-portrait figcaption strong { font-family: var(--display); font-size: 22px; font-weight: 520; }
.teacher-card-body { min-height: 430px; display: flex; flex-direction: column; padding: clamp(22px, 2.4vw, 32px); }
.teacher-card-body > .tiny-label { margin: 0 0 18px; color: var(--burgundy); }
.teacher-card-body h4 { display: flex; justify-content: space-between; gap: 20px; align-items: baseline; margin: 0; font-family: var(--display); font-size: clamp(29px, 2.6vw, 38px); font-weight: 520; }
.teacher-card-body h4 small { color: var(--muted); font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .08em; }
.teacher-role { margin: 8px 0 0; color: var(--ink-2); font-size: 12px; font-weight: 650; }
.teacher-evidence-list { display: grid; margin-top: auto; padding-top: 32px; }
.teacher-evidence { min-width: 0; display: grid; grid-template-columns: 74px minmax(0, 1fr) auto; gap: 14px; align-items: center; min-height: 82px; padding: 10px 0; border-top: 1px solid var(--line); }
.teacher-evidence-thumb { width: 74px; height: 56px; display: grid; place-items: center; overflow: hidden; background: #e9e6de; }
.teacher-evidence-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform 220ms ease; }
.teacher-evidence-thumb img.is-rotated { width: 52px; height: 72px; transform: rotate(90deg); }
.teacher-evidence:hover .teacher-evidence-thumb img:not(.is-rotated) { transform: scale(1.04); }
.teacher-evidence > span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; }
.teacher-evidence small { color: var(--burgundy); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.teacher-evidence strong { margin-top: 3px; font-family: var(--display); font-size: 15px; font-weight: 560; line-height: 1.25; }
.teacher-evidence em { margin-top: 3px; overflow: hidden; color: var(--muted); font-size: 9px; font-style: normal; line-height: 1.45; }
.teacher-evidence > i { color: var(--burgundy); font-size: 14px; font-style: normal; transition: transform 180ms ease; }
.teacher-evidence:hover > i { transform: translate(3px,-3px); }

.international-mentor { display: grid; grid-template-columns: minmax(280px, .43fr) minmax(0, .57fr); margin-top: 30px; overflow: hidden; background: var(--black); color: #fff; }
.international-portrait { position: relative; min-height: 660px; margin: 0; overflow: hidden; background: #25272a; }
.international-portrait > img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 600ms cubic-bezier(.22,1,.36,1); }
.international-mentor:hover .international-portrait > img { transform: scale(1.025); }
.international-portrait figcaption { position: absolute; inset: auto 0 0; display: flex; justify-content: space-between; gap: 20px; align-items: end; padding: 90px 20px 18px; background: linear-gradient(transparent, rgba(10,10,10,.92)); }
.international-portrait figcaption span { color: rgba(255,255,255,.58); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .09em; }
.international-portrait figcaption strong { font-family: var(--display); font-size: 21px; font-weight: 520; }
.international-copy { min-width: 0; display: flex; flex-direction: column; padding: clamp(30px, 4vw, 54px); border-left: 1px solid var(--line-light); }
.international-meta { display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.5); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .08em; }
.international-meta > span { color: var(--yellow); }
.international-copy h3 { margin: clamp(54px, 6vw, 82px) 0 6px; font-family: var(--display); font-size: clamp(44px, 4.6vw, 66px); font-weight: 500; line-height: 1; }
.international-role { margin: 0; color: var(--yellow); font-size: 13px; font-weight: 680; }
.international-bio { max-width: 650px; margin: 27px 0 32px; color: rgba(255,255,255,.64); font-size: 12px; line-height: 1.95; }
.international-focus { margin: 0; border-top: 1px solid var(--line-light); }
.international-focus > div { display: grid; grid-template-columns: 120px 1fr; gap: 22px; padding: 14px 0; border-bottom: 1px solid var(--line-light); }
.international-focus dt { color: rgba(255,255,255,.48); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }
.international-focus dd { margin: 0; color: #fff; font-size: 12px; font-weight: 650; }
.international-focus dd small { display: block; margin-top: 2px; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 400; }
.international-links { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 26px; align-items: end; margin-top: auto; padding-top: 30px; }
.international-links > a:first-child { min-width: 0; display: grid; grid-template-columns: 64px minmax(0,1fr) auto; gap: 14px; align-items: center; }
.international-proof { width: 64px; height: 78px; display: grid; place-items: center; overflow: hidden; background: #ede9df; }
.international-proof img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.international-links > a:first-child > span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; }
.international-links small { color: var(--yellow); font-family: var(--mono); font-size: 8px; letter-spacing: .08em; }
.international-links strong { margin-top: 4px; font-family: var(--display); font-size: 15px; font-weight: 520; line-height: 1.25; }
.international-links i { color: var(--yellow); font-style: normal; }
.official-source { padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.4); color: rgba(255,255,255,.72); font-size: 10px; white-space: nowrap; }
.official-source span { color: var(--yellow); }

.space-section { background: #0d0d0c; color: #fff; }
.space-heading { display: grid; grid-template-columns: 180px 280px minmax(0,1fr); gap: 30px; align-items: center; margin-bottom: clamp(34px,4vw,50px); padding-top: 14px; border-top: 1px solid rgba(255,255,255,.5); }
.space-heading > span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .1em; }
.space-heading h2 { margin: 0; font-family: var(--display); font-size: 30px; font-weight: 520; line-height: 1.2; }
.space-heading > p { margin: 0; color: rgba(255,255,255,.5); font-size: 11px; text-align: right; }
.space-gallery { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); grid-auto-rows: 60px; gap: 8px; }
.space-shot { position: relative; min-width: 0; min-height: 0; overflow: hidden; padding: 0; border: 0; background: #181817; color: #fff; cursor: zoom-in; text-align: left; }
.space-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.76)); pointer-events: none; }
.space-shot img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.03); transition: transform 650ms cubic-bezier(.22,1,.36,1), filter 350ms ease; }
.space-shot:hover img { transform: scale(1.025); filter: saturate(1) contrast(1.03); }
.space-shot:focus-visible { z-index: 3; outline: 2px solid var(--yellow); outline-offset: 3px; }
.space-shot > span { position: absolute; z-index: 2; right: 18px; bottom: 16px; left: 18px; display: flex; justify-content: space-between; gap: 22px; align-items: end; }
.space-shot small { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .08em; }
.space-shot strong { font-family: var(--display); font-size: 18px; font-weight: 520; }
.space-shot--room { grid-column: 1 / 9; grid-row: span 6; }
.space-shot--recording { grid-column: 9 / 13; grid-row: span 6; }
.space-shot--recording img { object-position: 64% center; }
.space-shot--brand { grid-column: 1 / 5; grid-row: span 3; }
.space-shot--stage { grid-column: 5 / 9; grid-row: span 3; }
.space-shot--live-one { grid-column: 9 / 13; grid-row: span 3; }
.space-shot--live-two { grid-column: 1 / 7; grid-row: span 5; }
.space-shot--live-one img { object-position: 62% center; }
.space-shot--live-two img { object-position: 40% center; }
.space-shot--live-three { grid-column: 7 / 13; grid-row: span 5; }
.space-shot--live-three img { object-position: center; }

.space-lightbox { width: 100vw; height: 100dvh; max-width: none; max-height: none; margin: 0; padding: clamp(20px,3vw,42px); border: 0; background: #080808; color: #fff; overflow: hidden; }
.space-lightbox::backdrop { background: rgba(0,0,0,.92); backdrop-filter: blur(8px); }
.space-lightbox[open] { animation: dialogIn 220ms cubic-bezier(.22,1,.36,1); }
.space-lightbox figure { width: 100%; height: 100%; display: grid; grid-template-rows: minmax(0,1fr) auto; gap: 16px; margin: 0; }
.space-lightbox figure > img { width: 100%; height: 100%; object-fit: contain; }
.space-lightbox figcaption { display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.76); font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }
.space-lightbox figcaption small { color: rgba(255,255,255,.4); font: inherit; }
.space-lightbox-close { position: fixed; z-index: 3; top: 18px; right: 18px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(8,8,8,.64); color: #fff; cursor: pointer; font-size: 25px; }

.method-section { background: var(--burgundy); color: #fff; }
.method-header { display: grid; grid-template-columns: 1fr; gap: clamp(34px, 4vw, 52px); margin-bottom: clamp(54px, 6vw, 78px); }
.method-signature { display: flex; justify-content: space-between; gap: 24px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.36); }
.method-signature span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .13em; }
.method-signature small { color: rgba(255,255,255,.65); font-size: var(--text-small); }
.method-title-block { display: grid; grid-template-columns: minmax(430px, .62fr) minmax(280px, .38fr); gap: clamp(44px, 6vw, 92px); align-items: end; }
.method-title-block h2 { max-width: 760px; font-size: clamp(52px, 4.4vw, 68px); line-height: 1.06; }
.method-intro { max-width: 470px; margin: 0 0 4px; padding-left: clamp(22px, 2.4vw, 34px); border-left: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.9; }
.method-columns { display: grid; grid-template-columns: minmax(0, .44fr) minmax(0, .56fr); gap: clamp(55px, 6vw, 92px); align-items: start; }
.method-column-head { display: flex; justify-content: space-between; gap: 24px; align-items: center; min-height: 43px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.34); }
.method-column-head span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .11em; }
.method-column-head small { color: rgba(255,255,255,.48); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .04em; }
.method-systems { border-top: 0; }
.method-systems > div { min-height: 175px; display: grid; grid-template-columns: minmax(118px,.34fr) minmax(0,.66fr); gap: 24px; align-items: center; padding-block: 20px; border-bottom: 1px solid rgba(255,255,255,.22); }
.method-systems > div > span { display: grid; gap: 8px; }
.method-systems strong { color: var(--yellow); font-family: var(--mono); font-size: 22px; letter-spacing: -.03em; }
.method-systems small { max-width: 130px; color: rgba(255,255,255,.52); font-family: var(--mono); font-size: var(--text-label); line-height: 1.45; }
.method-systems p { margin: 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.8; }
.method-list { margin: 0; padding: 0; list-style: none; }
.method-list li { display: grid; grid-template-columns: 44px minmax(0,1fr) auto; gap: 20px; align-items: start; min-height: 128px; padding-block: 24px; border-bottom: 1px solid rgba(255,255,255,.22); }
.method-list > li > span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); }
.method-list h3 { margin-bottom: 7px; font-family: var(--display); font-size: 31px; line-height: 1.1; }
.method-list p { max-width: 520px; margin-bottom: 0; color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.75; }
.method-list small { color: rgba(255,255,255,.52); font-family: var(--mono); font-size: var(--text-label); }

.course-section { background: var(--paper-light); }
.course-heading { display: grid; grid-template-columns: minmax(230px,.34fr) minmax(0,.66fr); gap: var(--grid-gap); align-items: start; }
.course-index,
.course-intro { padding-top: 13px; border-top: 1px solid var(--line); }
.course-index > span { color: var(--burgundy); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .11em; }
.course-index > strong { display: block; margin-top: 34px; font-family: var(--display); font-size: 29px; font-weight: 540; }
.course-index > p { margin: 8px 0 0; color: var(--muted); font-size: 11px; }
.course-intro .tiny-label { margin: 0; color: var(--burgundy); }
.course-intro h2 { max-width: 760px; margin: 25px 0 0; font-family: var(--display); font-size: clamp(46px,5vw,70px); font-weight: 520; letter-spacing: -.025em; line-height: 1.08; }
.course-intro > p:last-child { max-width: 610px; margin: 28px 0 0; color: var(--ink-2); font-size: 13px; line-height: 1.9; }
.course-catalog { display: grid; grid-template-columns: minmax(270px,.34fr) minmax(0,.66fr); margin-top: clamp(55px,6vw,80px); border: 1px solid var(--line); }
.course-tabs { border-right: 1px solid var(--line); }
.course-tab { position: relative; width: 100%; min-height: 160px; display: grid; grid-template-columns: 1fr auto; align-content: center; gap: 5px 20px; padding: 24px 28px; border-bottom: 1px solid var(--line); background: var(--paper-light); color: var(--ink); cursor: pointer; text-align: left; transition: background-color 180ms ease, color 180ms ease; }
.course-tab:last-child { border-bottom: 0; }
.course-tab > span { color: var(--burgundy); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .1em; }
.course-tab > strong { grid-column: 1; font-family: var(--display); font-size: 28px; font-weight: 540; line-height: 1.2; }
.course-tab > small { grid-column: 1; color: var(--muted); font-size: 11px; }
.course-tab > i { grid-column: 2; grid-row: 1 / 4; align-self: center; color: rgba(112,40,35,.2); font-family: var(--display); font-size: 62px; font-style: normal; line-height: 1; }
.course-tab:hover { background: #f2ede3; }
.course-tab.is-active { background: var(--yellow); color: var(--ink); }
.course-tab.is-active > span,
.course-tab.is-active > small { color: rgba(23,22,19,.66); }
.course-tab.is-active > i { color: rgba(23,22,19,.16); }
.course-panels { min-width: 0; background: var(--paper); }
.course-panel { min-height: 480px; display: flex; flex-direction: column; padding: clamp(28px,3vw,44px); }
.course-panel-head > span { color: var(--burgundy); font-family: var(--mono); font-size: var(--text-label); line-height: 1.6; letter-spacing: .04em; }
.course-panel-head h3 { max-width: 720px; margin: 34px 0 44px; font-family: var(--display); font-size: clamp(34px,3.4vw,48px); font-weight: 520; line-height: 1.18; }
.course-syllabus { display: grid; grid-template-columns: 1fr 1fr; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.course-syllabus li { min-height: 58px; display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; border-bottom: 1px solid var(--line); font-size: 12px; }
.course-syllabus li:nth-child(odd) { padding-right: 22px; border-right: 1px solid var(--line); }
.course-syllabus li:nth-child(even) { padding-left: 22px; }
.course-syllabus b { color: var(--burgundy); font-family: var(--mono); font-size: 9px; }
.course-panel-foot { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 35px; align-items: end; margin-top: auto; padding-top: 34px; }
.course-panel-foot p { max-width: 500px; margin: 0; color: var(--ink-2); font-size: 12px; }
.course-panel-foot p span { display: block; margin-bottom: 7px; color: var(--burgundy); font-family: var(--mono); font-size: 9px; letter-spacing: .09em; }
.course-panel-foot button { min-height: 46px; display: inline-flex; align-items: center; gap: 34px; padding: 0 17px; border: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; font-size: 11px; font-weight: 700; transition: background-color 180ms ease, color 180ms ease, transform 180ms ease; }
.course-panel-foot button:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }
.course-panel-foot button i { font-style: normal; }
.course-note { margin: 18px 0 0; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .04em; text-align: right; }

.faq-section { background: var(--black-soft); color: #fff; }
.faq-grid { display: grid; grid-template-columns: minmax(270px, .38fr) minmax(0, .62fr); gap: var(--grid-gap); }
.faq-heading { position: sticky; top: 120px; align-self: start; }
.faq-heading > .tiny-label { margin-bottom: 22px; color: var(--yellow); }
.faq-heading h2 { display: grid; gap: 4px; margin: 0; font-family: var(--display); font-size: clamp(40px, 3.3vw, 58px); font-weight: 600; letter-spacing: -.04em; line-height: 1.08; }
.faq-heading h2 span { white-space: nowrap; }
.faq-heading > p:last-child { max-width: 430px; margin: 34px 0 0; color: rgba(255,255,255,.58); font-size: 13px; }
.faq-list { border-top: 1px solid rgba(255,255,255,.24); }
.faq-group-label { display: flex; justify-content: space-between; gap: 20px; margin: 0; padding: 13px 0 12px; border-bottom: 1px solid rgba(255,255,255,.24); color: rgba(255,255,255,.5); font-size: 11px; }
.faq-group-label span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .08em; }
.faq-group-label.secondary { margin-top: 34px; border-top: 1px solid rgba(255,255,255,.24); }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.24); }
.faq-item summary { min-height: 102px; display: grid; grid-template-columns: 44px minmax(0, 1fr) 30px; gap: 18px; align-items: center; padding-block: 20px; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); }
.faq-item summary > strong { font-family: var(--display); font-size: clamp(20px, 2vw, 28px); font-weight: 500; line-height: 1.35; }
.faq-item summary > i { position: relative; width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.faq-item summary > i::before,
.faq-item summary > i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1px; background: #fff; transform: translate(-50%, -50%); transition: transform 180ms ease; }
.faq-item summary > i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary > i { border-color: var(--yellow); background: var(--yellow); }
.faq-item[open] summary > i::before,
.faq-item[open] summary > i::after { background: var(--ink); }
.faq-item[open] summary > i::after { transform: translate(-50%, -50%) rotate(0); }
.faq-item > div { padding: 0 48px 32px 62px; }
.faq-item > div p { max-width: 680px; margin: 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.95; }

.performance-section {
  padding-top: clamp(44px, 4vw, 60px);
  padding-bottom: clamp(56px, 5vw, 72px);
  background: var(--paper-light);
}
.performance-heading { margin-bottom: clamp(34px,4vw,50px); }
.performance-heading .editorial-label { color: var(--ink); }
.performance-heading .editorial-label { min-height: 0; grid-template-columns: 180px 230px minmax(0,1fr); align-items: center; padding-top: 14px; }
.performance-heading .editorial-label > span { color: var(--burgundy); }
.performance-heading .editorial-label > strong { margin-top: 0; }
.performance-heading .editorial-label > p { max-width: none; margin: 0; color: var(--ink-2); text-align: right; }
.performance-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.performance-card { min-width: 0; background: var(--paper-light); }
.performance-card--featured { grid-column: 1 / -1; }
.performance-frame { position: relative; aspect-ratio: 16 / 9; margin: 0; overflow: hidden; background: var(--black); }
.performance-card--featured .performance-frame { aspect-ratio: 16 / 7; }
.performance-frame::after { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(8,8,8,.02), transparent 55%, rgba(8,8,8,.7)); transition: opacity 220ms ease; }
.performance-video-backdrop { position: absolute; z-index: 0; inset: -8%; width: 116%; height: 116%; object-fit: cover; filter: blur(24px) saturate(.72) brightness(.48); transform: scale(1.03); }
.performance-video { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; background: transparent; filter: saturate(.82) contrast(1.04); }
.performance-video--portrait { object-fit: contain; }
.performance-frame.is-playing::after,
.performance-frame.is-playing .performance-play,
.performance-frame.is-playing figcaption { opacity: 0; visibility: hidden; }
.performance-frame figcaption { position: absolute; z-index: 2; inset: auto 0 0; display: flex; justify-content: space-between; gap: 22px; padding: 20px; color: rgba(255,255,255,.68); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .08em; }
.performance-frame figcaption > span { color: var(--yellow); }
.performance-play { position: absolute; z-index: 3; top: 50%; left: 50%; width: 78px; height: 78px; display: grid; place-items: center; gap: 0; border: 1px solid rgba(255,255,255,.78); border-radius: 50%; background: rgba(8,8,8,.1); color: #fff; cursor: pointer; transform: translate(-50%,-50%); backdrop-filter: blur(7px); transition: width 220ms ease, height 220ms ease, background-color 220ms ease, opacity 180ms ease, visibility 180ms ease; }
.performance-play:hover { width: 86px; height: 86px; background: rgba(8,8,8,.46); }
.performance-play i { width: 0; height: 0; margin-left: 4px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid #fff; }
.performance-play span { position: absolute; top: calc(100% + 10px); font-family: var(--mono); font-size: 8px; letter-spacing: .14em; }
.performance-card > div { min-height: 118px; display: flex; justify-content: space-between; gap: 30px; align-items: end; padding: 20px; }
.performance-card h3 { margin: 0; font-family: var(--display); font-size: clamp(24px,2.4vw,34px); font-weight: 540; }
.performance-card p { max-width: 270px; margin: 0; color: var(--muted); font-size: 10px; text-align: right; }
.performance-more { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 26px; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.performance-more span { color: var(--burgundy); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .09em; }
.performance-more strong { font-family: var(--display); font-size: 18px; font-weight: 540; }
.performance-more b { color: var(--burgundy); font-weight: inherit; }

.voice-class-section { background: var(--burgundy); color: #fff; }
.voice-class-heading { display: grid; grid-template-columns: minmax(230px,.34fr) minmax(0,.66fr); gap: var(--grid-gap); align-items: start; }
.voice-class-index,
.voice-class-intro { padding-top: 13px; border-top: 1px solid rgba(255,255,255,.48); }
.voice-class-index > span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .1em; }
.voice-class-index > strong { display: block; margin-top: 34px; font-family: var(--display); font-size: 28px; font-weight: 520; }
.voice-class-index > p { margin: 8px 0 0; color: rgba(255,255,255,.56); font-size: 11px; }
.voice-class-intro .tiny-label { margin: 0; color: var(--yellow); }
.voice-class-intro h2 { max-width: 760px; margin: 25px 0 0; font-family: var(--display); font-size: clamp(45px,5.1vw,72px); font-weight: 520; letter-spacing: -.025em; line-height: 1.08; }
.voice-class-intro > p:last-child { max-width: 650px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.9; }
.doctorvox-partnership { display: grid; grid-template-columns: minmax(280px,.34fr) minmax(0,.46fr) minmax(160px,.2fr); min-height: 260px; margin-top: clamp(52px,5vw,70px); border: 1px solid rgba(255,255,255,.34); background: rgba(39,13,11,.18); }
.doctorvox-partnership > div { min-width: 0; padding: 28px; }
.doctorvox-brand,
.doctorvox-authorization { border-right: 1px solid rgba(255,255,255,.25); }
.doctorvox-brand { display: flex; flex-direction: column; }
.doctorvox-brand > span,
.doctorvox-authorization > span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); font-weight: 700; letter-spacing: .1em; }
.doctorvox-wordmark { display: flex; align-items: flex-start; margin: auto 0 0; font-family: Arial, Helvetica, sans-serif; font-size: clamp(52px,4.5vw,76px); letter-spacing: -.075em; line-height: .86; }
.doctorvox-wordmark b { font-weight: 300; }
.doctorvox-wordmark strong { font-weight: 820; }
.doctorvox-wordmark sup { margin: -.1em 0 0 .22em; font-size: 11px; letter-spacing: 0; }
.doctorvox-brand > small { margin-top: 13px; color: rgba(255,255,255,.58); font-family: var(--mono); font-size: 9px; letter-spacing: .16em; }
.doctorvox-authorization { display: flex; flex-direction: column; }
.doctorvox-authorization h3 { margin: auto 0 13px; font-family: var(--display); font-size: clamp(29px,2.6vw,39px); font-weight: 520; line-height: 1.14; }
.doctorvox-authorization p { margin: 0; color: rgba(255,255,255,.64); font-size: 11px; line-height: 1.85; }
.doctorvox-proof { position: relative; min-width: 0; min-height: 258px; padding: 0; overflow: hidden; border: 0; background: #ece8dd; color: var(--ink); cursor: zoom-in; text-align: left; }
.doctorvox-proof::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(10,10,10,.62)); pointer-events: none; }
.doctorvox-proof img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.82) contrast(1.02); transition: transform 500ms cubic-bezier(.22,1,.36,1); }
.doctorvox-proof:hover img { transform: scale(1.035); }
.doctorvox-proof > span { position: absolute; z-index: 1; right: 18px; bottom: 17px; left: 18px; display: flex; justify-content: space-between; gap: 14px; color: #fff; font-family: var(--mono); font-size: 9px; font-weight: 700; letter-spacing: .07em; }
.doctorvox-proof i { color: var(--yellow); font-style: normal; }
.voice-class-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 24px; border-top: 1px solid rgba(255,255,255,.28); border-left: 1px solid rgba(255,255,255,.28); }
.voice-class-grid article { min-height: 250px; display: flex; flex-direction: column; padding: 24px; border-right: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
.voice-class-grid article > span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .09em; }
.voice-class-grid h3 { margin: auto 0 15px; font-family: var(--display); font-size: 29px; font-weight: 520; }
.voice-class-grid p { margin: 0; color: rgba(255,255,255,.62); font-size: 11px; line-height: 1.85; }
.voice-class-footer { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 70px; align-items: end; padding: 34px 0 30px; border-bottom: 1px solid rgba(255,255,255,.28); }
.voice-class-footer > div { max-width: 760px; }
.voice-class-footer strong { font-family: var(--display); font-size: 22px; font-weight: 520; }
.voice-class-footer p { margin: 12px 0 6px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.75; }
.voice-class-footer small { color: rgba(255,255,255,.45); font-size: 9px; line-height: 1.7; }
.voice-class-cta { min-height: 48px; display: inline-flex; align-items: center; gap: 30px; padding: 0 18px; border: 1px solid var(--yellow); border-radius: 8px; background: var(--yellow); color: var(--ink); cursor: pointer; font-size: 12px; font-weight: 720; transition: transform 180ms ease, background-color 180ms ease, color 180ms ease; }
.voice-class-cta:hover { transform: translateY(-2px); background: transparent; color: var(--yellow); }
.voice-class-sources { display: grid; grid-template-columns: auto repeat(4,minmax(0,1fr)); gap: 18px; align-items: center; padding-top: 18px; color: rgba(255,255,255,.44); font-family: var(--mono); font-size: 8px; letter-spacing: .05em; }
.voice-class-sources > span { color: var(--yellow); }
.voice-class-sources a { padding-left: 22px; border-left: 1px solid rgba(255,255,255,.2); transition: color 180ms ease; }
.voice-class-sources a:hover { color: #fff; }

.journal-section { background: var(--black); color: #fff; }
.journal-heading { margin-bottom: clamp(48px, 5vw, 68px); }
.journal-heading > div { max-width: 820px; }
.journal-heading .tiny-label { margin-bottom: 20px; color: var(--yellow); }
.journal-evidence { display: grid; grid-template-columns: auto 1fr auto 1fr auto; gap: 18px; align-items: center; margin-bottom: 18px; padding: 13px 16px; border: 1px solid var(--line-light); color: rgba(255,255,255,.58); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .06em; }
.journal-evidence i { height: 1px; overflow: hidden; background: rgba(255,255,255,.2); color: transparent; }
.journal-evidence span:first-child { color: var(--yellow); }
.journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.journal-grid article { min-height: 500px; display: flex; flex-direction: column; padding: clamp(22px,2.5vw,34px); border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.journal-card-top { display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,.5); font-family: var(--mono); font-size: var(--text-label); }
.journal-card-top > span { color: var(--yellow); }
.journal-card-top small { color: inherit; font: inherit; text-align: right; }
.journal-grid h3 { margin: clamp(66px,7vw,100px) 0 20px; font-family: var(--display); font-size: clamp(27px,2.4vw,35px); font-weight: 520; line-height: 1.28; }
.journal-grid .method-article > p { margin: 0 0 28px; color: rgba(255,255,255,.62); font-size: 12px; line-height: 1.9; }
.journal-grid .journal-source { width: 100%; display: flex; justify-content: space-between; gap: 20px; align-items: end; margin-top: auto; padding-top: 17px; border-top: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.72); font-size: 10px; line-height: 1.65; }
.journal-source b { display: block; margin-bottom: 3px; color: var(--yellow); font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: .08em; }
.journal-source small { color: rgba(255,255,255,.45); font-size: 9px; }
.journal-source > i { flex: 0 0 auto; color: var(--yellow); font-style: normal; font-size: 15px; transition: transform 180ms ease; }
.journal-source:hover > i { transform: translate(3px,-3px); }
.journal-disclaimer { margin: 16px 0 0; color: rgba(255,255,255,.4); font-size: 10px; line-height: 1.7; }

.brand-close { position: relative; overflow: hidden; padding-block: var(--section-space); background: var(--yellow); }
.brand-close-inner { position: relative; z-index: 2; }
.brand-close-inner > p { margin-bottom: 30px; font-family: var(--mono); font-size: var(--text-label); letter-spacing: .12em; }
.brand-close h2 { max-width: 870px; }
.brand-close-inner > div { max-width: 640px; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; margin-top: 55px; margin-left: auto; padding-top: 22px; border-top: 1px solid rgba(24,22,18,.28); }
.brand-close-inner > div p { margin-bottom: 0; color: rgba(24,22,18,.7); font-size: 13px; }
.close-button { min-height: 46px; display: inline-flex; align-items: center; gap: 22px; padding: 0 17px; border: 1px solid var(--ink); border-radius: 8px; background: var(--ink); color: #fff; cursor: pointer; font-size: 12px; font-weight: 720; transition: transform 180ms ease, background-color 180ms ease, color 180ms ease; }
.close-button:hover { transform: translateY(-2px); background: transparent; color: var(--ink); }
.close-lines i { position: absolute; border: 1px solid rgba(24,22,18,.11); border-radius: 50%; }
.close-lines i:nth-child(1) { width: 520px; height: 520px; right: -220px; top: -260px; }
.close-lines i:nth-child(2) { width: 410px; height: 410px; right: -165px; top: -205px; }
.close-lines i:nth-child(3) { width: 300px; height: 300px; right: -110px; top: -150px; }
.close-lines i:nth-child(4) { width: 190px; height: 190px; right: -55px; top: -95px; }
.close-lines i:nth-child(5) { width: 80px; height: 80px; right: 0; top: -40px; background: var(--ink); }

.site-footer { padding-block: 58px; background: var(--black); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .65fr .65fr; gap: 70px; }
.footer-brand { margin-bottom: 18px; }
.footer-grid > div:first-child > p { max-width: 420px; margin-bottom: 0; color: rgba(255,255,255,.54); font-size: var(--text-small); }
.footer-grid nav { display: grid; align-content: start; gap: 10px; color: rgba(255,255,255,.7); font-size: var(--text-small); }
.footer-grid nav a:hover { color: var(--yellow); }
.footer-contact { display: grid; justify-items: end; align-content: start; gap: 8px; margin: 0; color: rgba(255,255,255,.58); font-style: normal; text-align: right; }
.footer-contact > span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .1em; }
.footer-contact > a { color: #fff; font-family: var(--display); font-size: 25px; line-height: 1.2; }
.footer-contact > a:hover { color: var(--yellow); }
.footer-contact p { margin: 6px 0 0; font-size: var(--text-small); line-height: 1.7; }
.footer-contact small { color: rgba(255,255,255,.43); font-family: var(--mono); font-size: var(--text-label); }
.footer-contact > .footer-map { margin-top: 4px; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.32); color: rgba(255,255,255,.78); font-family: inherit; font-size: 11px; }
.footer-contact > .footer-map:hover { border-color: var(--yellow); color: var(--yellow); }
.footer-social { display: grid; grid-template-columns: 1fr 1fr 1fr; margin-top: 48px; border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.footer-social-intro { display: grid; align-content: center; justify-items: start; padding: 24px 28px 24px 0; }
.footer-social-intro > span, .footer-social-account span { color: var(--yellow); font-family: var(--mono); font-size: var(--text-label); letter-spacing: .1em; }
.footer-social-intro > strong { margin-top: 12px; font-family: var(--display); font-size: 24px; font-weight: 520; }
.footer-social-intro > small { margin-top: 5px; color: rgba(255,255,255,.45); font-size: 10px; }
.footer-social-account { display: grid; grid-template-columns: 112px minmax(0,1fr); gap: 20px; align-items: center; padding: 22px 0 22px 28px; border-left: 1px solid rgba(255,255,255,.16); transition: background-color 180ms ease; }
.footer-social-account:hover { background: rgba(255,255,255,.04); }
.footer-social-account:focus-visible { outline: 2px solid var(--yellow); outline-offset: -2px; }
.footer-social-account > img { width: 112px; height: 112px; object-fit: cover; background: #fff; }
.footer-social-account > div { min-width: 0; display: grid; align-content: center; }
.footer-social-account strong { margin-top: 16px; font-size: 13px; line-height: 1.45; }
.footer-social-account small { margin-top: 4px; color: rgba(255,255,255,.48); font-family: var(--mono); font-size: 9px; }
.footer-legal { display: flex; justify-content: space-between; gap: 24px; margin-top: 44px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.38); font-family: var(--mono); font-size: 9px; letter-spacing: .04em; }
.footer-legal > div { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.footer-legal button { padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; font: inherit; letter-spacing: inherit; }
.footer-legal a:hover, .footer-legal button:hover { color: var(--yellow); }
.gongan-beian { display: inline-flex; gap: 6px; align-items: center; }
.gongan-beian img { width: 14px; height: auto; flex: 0 0 auto; }

.consult-dialog, .privacy-dialog {
  width: min(720px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 0;
  border-radius: 18px;
  background: var(--paper-light);
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(0,0,0,.36);
}

.consult-dialog::backdrop, .privacy-dialog::backdrop { background: rgba(8,8,7,.78); backdrop-filter: blur(9px); }
.consult-dialog[open], .privacy-dialog[open] { animation: dialogIn 240ms cubic-bezier(.22,1,.36,1); }
@keyframes dialogIn { from { opacity: 0; transform: translateY(18px) scale(.985); } to { opacity: 1; transform: none; } }

.consult-dialog form { padding: 34px; }
.dialog-head { display: flex; justify-content: space-between; gap: 25px; margin-bottom: 30px; }
.dialog-head p { margin-bottom: 8px; color: var(--burgundy); font-family: var(--mono); font-size: var(--text-label); }
.dialog-head h2 { max-width: 530px; margin-bottom: 0; font-family: var(--display); font-size: 38px; line-height: 1.18; }
.dialog-head > button { width: 42px; height: 42px; flex: 0 0 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-size: 24px; }
.dialog-note { margin-bottom: 8px; padding: 12px 14px; border-left: 3px solid var(--yellow-deep); background: rgba(255,216,74,.15); color: var(--ink-2); font-size: var(--text-small); }
.dialog-note strong { display: block; margin-bottom: 2px; color: var(--ink); }
.dialog-prototype { margin: 0 0 22px; color: var(--muted); font-size: 10px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.consult-dialog [data-consult-fields] > label, .consult-dialog .field-row > label { display: grid; gap: 7px; margin-bottom: 17px; font-size: var(--text-small); font-weight: 700; }
.consult-dialog input[type="text"], .consult-dialog input[type="tel"], .consult-dialog textarea { width: 100%; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--ink); }
.consult-dialog input[type="text"], .consult-dialog input[type="tel"] { min-height: 52px; padding: 0 13px; }
.consult-dialog textarea { min-height: 110px; padding: 12px 13px; resize: vertical; }
.consult-dialog input::placeholder, .consult-dialog textarea::placeholder { color: #9a968f; }
.consult-dialog .form-trap { position: absolute; left: -10000px; width: 1px; height: 1px; margin: 0; overflow: hidden; }
.privacy { display: flex; align-items: flex-start; gap: 9px; margin: 5px 0 20px; color: var(--ink-2); cursor: pointer; font-size: var(--text-small); }
.privacy input { width: 17px; height: 17px; flex: 0 0 17px; margin-top: 2px; accent-color: var(--ink); }
.privacy label { cursor: pointer; }
.privacy button { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--burgundy); cursor: pointer; font: inherit; }
.form-error { margin-bottom: 14px; color: var(--error); font-size: var(--text-small); }
.dialog-submit { width: 100%; min-height: 52px; display: flex; justify-content: space-between; align-items: center; padding: 0 16px; border-radius: 8px; background: var(--ink); color: #fff; cursor: pointer; font-weight: 720; }
.dialog-submit:disabled { cursor: wait; opacity: .6; }
.dialog-success { padding-block: 25px 12px; text-align: center; }
.dialog-success > span { width: 66px; height: 66px; display: grid; place-items: center; margin: 0 auto 20px; border-radius: 50%; background: rgba(47,116,85,.12); color: var(--green); font-size: 25px; }
.dialog-success h3 { margin-bottom: 10px; font-family: var(--display); font-size: 30px; }
.dialog-success p { max-width: 480px; margin: 0 auto 25px; color: var(--ink-2); font-size: var(--text-small); }
.dialog-success button { min-height: 43px; padding: 0 25px; border-radius: 8px; background: var(--ink); color: #fff; cursor: pointer; }

.privacy-dialog { width: min(660px, calc(100% - 32px)); }
.privacy-dialog > article { padding: 34px; }
.privacy-dialog .dialog-head { margin-bottom: 22px; }
.privacy-lead { max-width: 540px; margin-bottom: 25px; color: var(--ink-2); font-size: 13px; line-height: 1.8; }
.privacy-sections { border-top: 1px solid var(--line); }
.privacy-sections section { display: grid; grid-template-columns: 125px minmax(0,1fr); gap: 24px; padding-block: 17px; border-bottom: 1px solid var(--line); }
.privacy-sections h3 { margin: 0; font-family: var(--display); font-size: 18px; line-height: 1.5; }
.privacy-sections p { margin: 0; color: var(--ink-2); font-size: 12px; line-height: 1.8; }
.privacy-sections a { color: var(--burgundy); border-bottom: 1px solid currentColor; }
.privacy-date { margin: 17px 0 0; color: var(--muted); font-family: var(--mono); font-size: 9px; }
.privacy-confirm { width: 100%; min-height: 48px; margin-top: 22px; border-radius: 8px; background: var(--ink); color: #fff; cursor: pointer; font-weight: 720; }

.noscript { position: fixed; z-index: 500; right: 12px; bottom: 12px; max-width: 410px; padding: 11px; background: var(--yellow); color: var(--ink); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 380ms ease, transform 380ms cubic-bezier(.22,1,.36,1); }
.reveal.is-visible, .no-js .reveal { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .brand-hero h1 { font-size: clamp(70px, 10vw, 108px); }
  .scene-switcher { width: min(520px, calc(100% - 48px)); }
  .manifesto-grid, .editorial-heading { grid-template-columns: minmax(190px, .32fr) minmax(0, .68fr); gap: 55px; }
  .brand-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-archive-head { gap: 20px; }
  .people-content { grid-template-columns: 1fr; gap: 42px; }
  .live-heading { grid-template-columns: 120px minmax(0,1fr); gap: 24px 38px; }
  .live-heading ul { grid-column: 2; }
  .featured-work { grid-template-columns: .9fr 1.1fr; }
  .work-content { padding-left: 45px; }
  .space-heading { grid-template-columns: 150px 240px minmax(0,1fr); gap: 24px; }
  .voice-class-heading { gap: 55px; }
  .course-heading { gap: 55px; }
  .method-header { gap: 40px; }
  .method-columns { gap: 55px; }
  .journal-grid { grid-template-columns: 1.1fr .9fr; }
  .journal-card:last-child { grid-column: 1 / -1; min-height: 380px; }
  .journal-card:last-child h3 { margin-top: 62px; }
}

@media (max-width: 760px) {
  :root { --header: 64px; --page-gutter: 16px; --section-space: 84px; --grid-gap: 42px; --card-pad: 20px; }
  .page-shell { width: min(calc(100% - 32px), var(--max)); }
  .section { padding-block: var(--section-space); }

  .site-header { grid-template-columns: 1fr auto; padding: calc(10px + env(safe-area-inset-top)) max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left)); }
  .desktop-nav, .quiet-cta { display: none; }
  .site-header .brand-lockup { width: 150px; }

  .menu-button { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.06); cursor: pointer; }
  .menu-button span { width: 17px; height: 1px; background: #fff; transition: transform 180ms ease; }
  .menu-button[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .mobile-nav { position: absolute; top: calc(100% + 6px); left: 12px; right: 12px; display: grid; padding: 13px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: #181816; box-shadow: 0 24px 60px rgba(0,0,0,.35); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 10px; color: rgba(255,255,255,.72); font-size: 13px; }
  .mobile-nav button { min-height: 44px; margin-top: 8px; border-radius: 8px; background: var(--yellow); color: var(--ink); font-weight: 700; }

  .brand-hero { min-height: 920px; align-items: flex-start; }
  .hero-media img { object-position: 63% center; }
  .hero-overlay { background: linear-gradient(180deg, rgba(9,9,8,.4), rgba(9,9,8,.8) 52%, #090908 86%); }
  .hero-content { padding-block: calc(var(--header) + 75px) 250px; }
  .hero-kicker { margin-bottom: 28px; font-size: 10px; }
  .brand-hero h1 { font-size: clamp(60px, 18vw, 82px); line-height: .98; }
  .hero-bottom { grid-template-columns: 1fr; gap: 26px; margin-top: 20px; }
  .hero-links { grid-template-columns: 1fr 1fr; }

  .scene-switcher { right: 16px; bottom: 28px; width: calc(100% - 32px); }
  .scene-hint { padding-inline: 9px; font-size: 10px; }
  .scene-switcher button { min-height: 68px; padding-inline: 9px; }
  .scene-switcher button span { font-size: 10px; }
  .scene-switcher button strong { font-size: 12px; }
  .scene-switcher button small { font-size: 10px; }
  .scene-switcher > .scene-caption { min-height: 48px; margin-top: 7px; font-size: 12px; }

  .brand-ticker > div { animation-duration: 18s; }

  .manifesto-grid, .editorial-heading, .people-content, .faq-grid, .journal-heading { grid-template-columns: 1fr; gap: 42px; }
  .section-label,
  .section-label.compact {
    min-height: 0;
    max-width: none;
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
    row-gap: 3px;
    margin-bottom: 0;
    padding-top: 13px;
  }
  .section-label::before { grid-row: 1 / 3; font-size: 45px; }
  .section-label > span { align-self: end; }
  .section-label p { align-self: start; }
  .section-label p strong { font-size: 14px; }
  .section-label p small { font-size: 11px; }
  .manifesto-copy h2, .editorial-heading h2, .people-copy h2, .method-title-block h2, .journal-heading h2, .brand-close h2 { font-size: clamp(38px, 11vw, 46px); }
  .manifesto-lead {
    margin-block: 34px;
    gap: 14px;
  }
  .manifesto-summary { font-size: 17px; line-height: 1.85; }
  .manifesto-detail { padding-left: 14px; font-size: 13px; line-height: 1.85; }
  .brand-facts { grid-template-columns: 1fr 1fr; margin-bottom: 32px; }
  .brand-facts > div { min-height: 122px; padding: 15px; }
  .brand-facts strong { font-size: 20px; }
  .brand-pillars { grid-template-columns: 1fr; margin-left: 0; }
  .brand-pillars > div { min-height: 112px; }
  .manifesto-principle { margin-left: 0; }
  .path-balance { grid-template-columns: 7fr 3fr; margin-top: 38px; }
  .path-balance > div { min-height: 130px; padding: 16px; }
  .path-balance strong { font-size: 34px; }
  .path-balance span { font-size: 12px; }
  .path-balance small { font-size: 10px; }
  .path-balance p { margin-top: 9px; font-size: 9px; line-height: 1.45; }
  .brand-archive { margin-top: 70px; }
  .brand-archive-head { min-height: 0; align-items: flex-start; gap: 12px; padding: 16px 18px; }
  .brand-archive-head > .tiny-label { margin-top: 6px; }
  .brand-archive-head > div { display: grid; gap: 5px; }
  .brand-archive-head h3 { font-size: 27px; }
  .brand-archive-head > div > p { font-size: 7px; white-space: normal; }
  .archive-tabs button { min-height: 68px; padding: 10px 8px; }
  .archive-tabs button span { font-size: 12px; line-height: 1.25; white-space: normal; word-break: keep-all; }
  .archive-tabs button small { font-size: 6px; }
  .archive-tabs {
    grid-template-columns: repeat(4, minmax(132px, 1fr));
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .archive-tabs::-webkit-scrollbar { display: none; }
  .archive-tabs button { scroll-snap-align: start; }
  .archive-panel { min-height: 0; grid-template-columns: 1fr; }
  .archive-directory-intro {
    min-height: 260px;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
  }
  .archive-directory-intro > div { margin: 36px 0 28px; }
  .archive-directory-intro h4 { font-size: 34px; }
  .archive-directory-intro::after { right: -8px; bottom: 70px; font-size: 82px; }
  .archive-credits--directory { min-height: 0; padding: 24px 18px 28px; }
  .archive-name-wall-head { padding-bottom: 14px; }
  .archive-name-wall-head strong { font-size: 21px; }
  .archive-credits--directory ul { grid-template-columns: 1fr 1fr; column-gap: 18px; margin-top: 12px; padding: 0; }
  .archive-credits--directory li {
    min-height: 58px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
    font-size: clamp(18px, 5.6vw, 23px);
  }
  .archive-credits--directory li small { display: none; }
  .archive-panel--artists { grid-template-columns: 1fr; }
  .archive-panel--artists .archive-visual { aspect-ratio: 4 / 5; }
  .archive-panel--creators { padding: 18px; }
  .creator-feature-grid { grid-template-columns: 1fr; }
  .creator-feature--student figure { height: auto; aspect-ratio: 4 / 5; }
  .creator-feature--student img { min-height: 0; }
  .creator-feature--event header { align-items: start; flex-direction: column; }
  .creator-feature--event header > div { text-align: left; }
  .creator-event-gallery { grid-template-columns: repeat(3, minmax(190px, 1fr)); overflow-x: auto; scroll-snap-type: x mandatory; }
  .creator-event-gallery figure { height: 370px; scroll-snap-align: start; }
  .creator-directory { grid-template-columns: 1fr; gap: 18px; }
  .creator-directory--side { min-height: 0; margin-top: 0; padding: 22px 0 0; border-bottom: 0; }
  .creator-directory.creator-directory--side header { grid-template-columns: 1fr; }
  .creator-directory.creator-directory--side header > small { display: none; }
  .creator-directory.creator-directory--side li { min-height: 58px; padding-block: 12px; font-size: clamp(17px, 5vw, 21px); }
  .creator-directory.creator-directory--side li:nth-child(even) { padding-left: 14px; }
  .creator-video-archive { gap: 20px; margin-top: 38px; }
  .creator-video-archive > header { align-items: start; flex-direction: column; gap: 10px; }
  .creator-video-grid { grid-template-columns: 1fr; }
  .creator-video-card .performance-frame { aspect-ratio: 16 / 10; }
  .archive-panel--activities { padding: 18px; }
  .campus-dynamic-grid { grid-template-columns: 1fr; }
  .campus-dynamic-card > header { min-height: 112px; }
  .campus-dynamic-card > header > div { align-items: start; }
  .campus-dynamic-card > header > div p { font-size: 10px; }
  .campus-dynamic-media,
  .campus-salon-carousel { aspect-ratio: 3 / 2; }
  .campus-salon-arrow { width: 42px; height: 50px; }
  .campus-salon-arrow--prev { left: 10px; }
  .campus-salon-arrow--next { right: 10px; }
  .campus-dynamic-more { grid-template-columns: 1fr; }
  .campus-mini-carousel,
  .campus-mini-media { height: auto; aspect-ratio: 4 / 3; }
  .archive-panel--mentor-works { padding: 24px 18px 18px; }
  .mentor-works-head { grid-template-columns: 1fr; gap: 14px; align-items: start; }
  .mentor-works-head > p { justify-self: start; text-align: left; }
  .mentor-works-grid { grid-template-columns: 1fr; }
  .mentor-work-card > div { min-height: 92px; }
  .activity-archive-grid { grid-template-columns: 1fr; }
  .activity-record > header { min-height: 0; align-items: start; flex-direction: column; }
  .activity-record > header > div { text-align: left; }
  .archive-panel--activities .creator-event-gallery { height: 390px; }
  .campus-event-gallery { height: 430px; }
  .archive-credits--artists { min-height: 0; padding: 28px 18px; }
  .archive-credits--artists h4 { margin-top: 28px; font-size: 32px; }
  .archive-credits--artists .archive-relation { margin-bottom: 24px; }
  .archive-credits--artists ul { grid-template-columns: 1fr; }
  .archive-credits--artists li {
    min-height: 56px;
    grid-template-columns: 26px minmax(0, 1fr);
    align-items: center;
    font-size: clamp(17px, 5vw, 22px);
  }
  .archive-credits--artists li small { display: block; margin: 0; font-size: 7px; line-height: 1.4; }
  .archive-credits--artists li button {
    grid-template-columns: minmax(0, 1fr);
  }
  .archive-credits--artists li button::after { display: none; }
  .archive-public-cover { min-height: 0; aspect-ratio: 3 / 4; }
  .archive-panel--public .archive-public-copy { min-height: 330px; padding: 30px 20px; }
  .archive-panel--public .archive-public-copy h4 { margin-top: 36px; font-size: 30px; }
  .archive-panel--public .archive-public-lead { padding: 16px 0; font-size: 14px; }
  .archive-visual { min-height: 0; aspect-ratio: 16 / 10; }
  .archive-visual figcaption { left: 15px; right: 15px; bottom: 14px; }
  .archive-arrow { width: 42px; height: 50px; }
  .archive-arrow--prev { left: 8px; }
  .archive-arrow--next { right: 8px; }
  .archive-slide-count { top: 10px; right: 10px; }
  .archive-slide--contained img { padding: 30px; }
  .archive-credits { min-height: 440px; padding: 24px 18px; }
  .archive-credits h4 { margin: 34px 0 16px; font-size: 34px; }
  .archive-credits ul { margin-top: 42px; padding-top: 22px; }
  .archive-credits li { font-size: 20px; }
  .archive-credits--students { min-height: 310px; }
  .archive-credits--students ul { margin: 0; padding: 0; }
  .archive-credits--students li { margin-right: 12px; margin-bottom: 14px; font-size: 25px; }
  .archive-credits--students li:not(:last-child)::after { margin-left: 12px; }
  .archive-public-copy h4 { margin-top: 70px; }
  .honor-archive { margin-top: 76px; }
  .honor-card figure { min-height: 0; grid-template-columns: 92px minmax(0, 1fr) 34px; gap: 15px; padding: 14px 0; }
  .honor-card figcaption small { font-size: 6px; }
  .honor-card figcaption strong { margin-top: 8px; font-size: 19px; }
  .honor-card figcaption p { margin-top: 5px; font-size: 10px; line-height: 1.45; }
  .honor-link-text { font-size: 0; gap: 0; }
  .honor-link-text i { width: 32px; height: 32px; }

  .editorial-heading { margin-bottom: 45px; }
  .live-heading { grid-template-columns: 1fr; gap: 22px; margin-bottom: 34px; }
  .live-heading h2 { font-size: 35px; }
  .live-heading ul { grid-column: auto; min-height: 76px; }
  .live-heading li { padding-inline: 12px; }
  .editorial-label { min-height: 0; grid-template-columns: 82px 1fr; column-gap: 18px; padding-top: 12px; }
  .editorial-label > span { grid-row: 1 / 3; align-self: start; padding-top: 4px; font-size: 10px; }
  .editorial-label > strong { margin-top: 0; font-size: 28px; }
  .editorial-label > p { max-width: none; margin-top: 7px; }
  .featured-work { grid-template-columns: 1fr; min-height: 0; }
  .work-art { min-height: 410px; }
  .work-content { padding: 34px 0; }
  .work-meta { display: grid; }
  .work-content h3 { margin: 55px 0 22px; font-size: 38px; }
  .archive-row { grid-template-columns: 1fr; }
  .archive-row article { min-height: 160px; border-right: 0; border-bottom: 1px solid var(--line-light); }

  .founder-profile { grid-template-columns: 1fr; gap: 32px; }
  .founder-portrait { max-width: none; }
  .founder-main h2 { font-size: clamp(40px, 12vw, 50px); }
  .founder-main blockquote { margin-top: 34px; padding-left: 18px; font-size: 22px; }
  .founder-focus div { grid-template-columns: 74px 1fr; gap: 12px; }
  .credentials-head { display: block; margin-top: 64px; }
  .credential-grid { grid-template-columns: 1fr; }
  .credential-card { display: grid; grid-template-columns: minmax(130px, .9fr) minmax(0, 1.1fr); }
  .credential-visual { aspect-ratio: 4 / 3; border-right: 1px solid var(--line); border-bottom: 0; padding: 10px; }
  .credential-copy { min-height: 132px; padding: 15px; }
  .credential-copy strong { font-size: 17px; }
  .honors-list { grid-template-columns: 1fr; }
  .honors-list > div { min-height: 125px; }
  .team-band { margin-top: 78px; }
  .team-band strong { font-size: 17px; }
  .teacher-roster { grid-template-columns: 1fr; margin-top: 27px; }
  .teacher-card-body { min-height: 0; padding: 22px 18px 24px; }
  .teacher-evidence-list { margin-top: 38px; padding-top: 0; }
  .teacher-evidence { grid-template-columns: 64px minmax(0,1fr) auto; gap: 12px; }
  .teacher-evidence-thumb { width: 64px; height: 50px; }
  .teacher-evidence-thumb img.is-rotated { width: 46px; height: 62px; }
  .international-mentor { grid-template-columns: 1fr; margin-top: 24px; }
  .international-portrait { min-height: 0; aspect-ratio: 1 / 1; }
  .international-copy { padding: 26px 18px 28px; border-top: 1px solid var(--line-light); border-left: 0; }
  .international-meta { display: grid; gap: 5px; }
  .international-copy h3 { margin-top: 46px; font-size: 44px; }
  .international-focus > div { grid-template-columns: 1fr; gap: 5px; }
  .international-links { grid-template-columns: 1fr; gap: 24px; margin-top: 32px; }
  .official-source { width: fit-content; }

  .space-heading { grid-template-columns: 82px minmax(0,1fr); gap: 7px 18px; align-items: start; margin-bottom: 30px; padding-top: 12px; }
  .space-heading > span { grid-row: 1 / 3; padding-top: 5px; }
  .space-heading h2 { grid-column: 2; font-size: 27px; }
  .space-heading > p { grid-column: 2; font-size: 10px; text-align: left; }
  .space-gallery { grid-template-columns: repeat(2,minmax(0,1fr)); grid-auto-rows: 120px; gap: 6px; }
  .space-shot--room { grid-column: 1 / -1; grid-row: span 2; }
  .space-shot--recording { grid-column: 1; grid-row: span 2; }
  .space-shot--brand { grid-column: 2; grid-row: span 1; }
  .space-shot--stage { grid-column: 2; grid-row: span 1; }
  .space-shot--live-one, .space-shot--live-two, .space-shot--live-three { grid-column: 1 / -1; grid-row: span 2; }
  .space-shot > span { right: 12px; bottom: 11px; left: 12px; }
  .space-shot strong { font-size: 15px; }
  .space-lightbox { padding: 68px 14px 18px; }
  .space-lightbox figcaption { display: grid; gap: 5px; }

  .method-header { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .method-signature { align-items: center; }
  .method-title-block { grid-template-columns: 1fr; gap: 24px; }
  .method-title-block h2 { font-size: 40px; }
  .method-intro { padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.24); border-left: 0; font-size: 12px; }
  .method-columns { grid-template-columns: 1fr; gap: 50px; }
  .method-column-head { min-height: 40px; }
  .method-systems > div { grid-template-columns: 102px minmax(0,1fr); gap: 16px; min-height: 0; padding-block: 17px; }
  .method-systems strong { font-size: 19px; }
  .method-systems p { font-size: 11px; }
  .method-list li { grid-template-columns: 36px 1fr; }
  .method-list small { grid-column: 2; }

  .course-heading { grid-template-columns: 1fr; gap: 28px; }
  .course-index > strong { margin-top: 26px; font-size: 25px; }
  .course-intro h2 { margin-top: 22px; font-size: 40px; }
  .course-intro > p:last-child { font-size: 11px; }
  .course-catalog { grid-template-columns: 1fr; margin-top: 42px; }
  .course-tabs { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-right: 0; border-bottom: 1px solid var(--line); overflow-x: auto; }
  .course-tab { min-height: 126px; display: flex; flex-direction: column; gap: 4px; justify-content: center; padding: 16px 13px; border-right: 1px solid var(--line); border-bottom: 0; }
  .course-tab:last-child { border-right: 0; }
  .course-tab > span { font-size: 8px; }
  .course-tab > strong { font-size: 21px; }
  .course-tab > small { font-size: 9px; line-height: 1.45; }
  .course-tab > i { display: none; }
  .course-panel { min-height: 520px; padding: 24px 18px; }
  .course-panel-head h3 { margin: 27px 0 34px; font-size: 34px; }
  .course-syllabus { grid-template-columns: 1fr; }
  .course-syllabus li:nth-child(odd),
  .course-syllabus li:nth-child(even) { padding-inline: 0; border-right: 0; }
  .course-panel-foot { grid-template-columns: 1fr; gap: 22px; padding-top: 28px; }
  .course-panel-foot button { width: 100%; justify-content: space-between; }
  .course-note { text-align: left; }

  .faq-grid, .faq-heading, .faq-list { min-width: 0; }
  .faq-heading { position: static; }
  .faq-heading h2 { font-size: 45px; }
  .faq-heading h2 span { white-space: normal; }
  .faq-heading > p:last-child { margin-top: 25px; }
  .faq-item summary { min-height: 92px; grid-template-columns: 30px minmax(0, 1fr) 28px; gap: 12px; }
  .faq-item summary > strong { font-size: 20px; }
  .faq-item > div { padding: 0 0 28px 42px; }
  .faq-item > div p { font-size: 13px; }

  .performance-heading { margin-bottom: 30px; }
  .performance-heading .editorial-label { grid-template-columns: 82px minmax(0,1fr); align-items: start; padding-top: 12px; }
  .performance-heading .editorial-label > span { grid-row: 1 / 3; }
  .performance-heading .editorial-label > strong { grid-column: 2; }
  .performance-heading .editorial-label > p { grid-column: 2; margin-top: 7px; text-align: left; }
  .performance-grid { grid-template-columns: 1fr; }
  .performance-card--featured { grid-column: auto; }
  .performance-card--featured .performance-frame, .performance-frame { aspect-ratio: 16 / 10; }
  .performance-card > div { display: block; min-height: 100px; }
  .performance-card p { margin-top: 6px; text-align: left; }
  .performance-more { align-items: flex-start; }
  .performance-more strong { max-width: 180px; text-align: right; }
  .performance-play { width: 66px; height: 66px; }

  .voice-class-heading { grid-template-columns: 1fr; gap: 28px; }
  .voice-class-index > strong { margin-top: 26px; font-size: 25px; }
  .voice-class-intro h2 { margin-top: 22px; font-size: 40px; }
  .voice-class-intro > p:last-child { font-size: 11px; }
  .doctorvox-partnership { grid-template-columns: 1fr; margin-top: 44px; }
  .doctorvox-brand,
  .doctorvox-authorization { min-height: 215px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.25); }
  .doctorvox-partnership > div { padding: 23px; }
  .doctorvox-wordmark { font-size: 58px; }
  .doctorvox-proof { min-height: 260px; }
  .voice-class-grid { grid-template-columns: 1fr; margin-top: 18px; }
  .voice-class-grid article { min-height: 205px; }
  .voice-class-grid h3 { font-size: 27px; }
  .voice-class-footer { grid-template-columns: 1fr; gap: 24px; padding-block: 28px; }
  .voice-class-cta { width: 100%; justify-content: space-between; }
  .voice-class-sources { grid-template-columns: 1fr; gap: 12px; }
  .voice-class-sources a { padding: 12px 0 0; border-top: 1px solid rgba(255,255,255,.18); border-left: 0; }

  .journal-grid { grid-template-columns: 1fr; }
  .journal-grid article, .journal-card:last-child { grid-column: auto; min-height: 410px; }
  .journal-evidence { grid-template-columns: auto 1fr auto 1fr auto; gap: 8px; padding: 12px; font-size: 8px; }
  .journal-grid h3, .journal-card:last-child h3 { margin-top: 56px; }

  .brand-close { padding-block: 90px; }
  .brand-close-inner > div { grid-template-columns: 1fr; gap: 25px; margin-top: 38px; }
  .close-button { width: 100%; justify-content: space-between; }

  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-contact { justify-items: start; text-align: left; }
  .footer-social { grid-template-columns: 1fr; margin-top: 38px; }
  .footer-social-intro { padding: 22px 0; }
  .footer-social-account { grid-template-columns: 96px minmax(0,1fr); gap: 18px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.16); border-left: 0; }
  .footer-social-account > img { width: 96px; height: 96px; }
  .footer-social-account strong { margin-top: 12px; }
  .footer-legal { flex-direction: column; gap: 12px; margin-top: 34px; }
  .footer-legal > div { justify-content: space-between; }

  .consult-dialog, .privacy-dialog { width: 100%; max-width: none; max-height: calc(100dvh - 16px); margin: auto 0 0; border-radius: 20px 20px 0 0; }
  .consult-dialog[open], .privacy-dialog[open] { animation-name: sheetIn; }
  @keyframes sheetIn { from { opacity: 0; transform: translateY(100%); } to { opacity: 1; transform: none; } }
  .consult-dialog form { padding: 24px max(18px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left)); }
  .privacy-dialog > article { padding: 24px max(18px, env(safe-area-inset-right)) max(20px, env(safe-area-inset-bottom)) max(18px, env(safe-area-inset-left)); }
  .dialog-head h2 { font-size: 31px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .privacy-sections section { grid-template-columns: 1fr; gap: 5px; }
}

@media (max-width: 360px) {
  .archive-tabs button {
    min-height: 68px;
    padding: 8px 3px;
    text-align: center;
  }
  .archive-tabs button span {
    font-size: 9px;
    line-height: 1.15;
    white-space: normal;
  }
  .archive-tabs button small { font-size: 5px; }
  .archive-credits--directory ul { grid-template-columns: 1fr; }
  .archive-credits--directory li { min-height: 54px; }
  .honor-card figure { grid-template-columns: 72px minmax(0, 1fr) 28px; gap: 10px; padding: 12px 0; }
  .honor-card figcaption small { font-size: 5px; }
  .honor-card figcaption strong { font-size: 16px; line-height: 1.3; }
  .honor-card figcaption p { font-size: 9px; }
  .honor-link-text i { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .brand-ticker > div { transform: none; }
}
