:root {
  --paper: #fbfaf7;
  --paper-soft: #f2efe9;
  --ink: #111111;
  --muted: #66625d;
  --line: rgba(17, 17, 17, 0.16);
  --red: #b42335;
  --white: #ffffff;
  --header-h: 68px;
  --shell: min(1240px, calc(100vw - 96px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
figure, h1, h2, h3, p { margin: 0; }
section, article, div { min-width: 0; }
[hidden] { display: none !important; }

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

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: minmax(164px, .8fr) auto minmax(132px, .8fr);
  align-items: stretch;
  height: var(--header-h);
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, .92);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  align-self: center;
  gap: 10px;
  width: max-content;
  line-height: 1;
}

.wordmark-main {
  font-family: "Songti SC", STSong, "Iowan Old Style", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.wordmark-sub {
  color: var(--muted);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.site-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.site-nav a {
  position: relative;
  display: grid;
  min-width: 62px;
  min-height: 44px;
  padding: 0 11px;
  place-items: center;
  color: #3f3d3a;
  font-size: .77rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color .25s var(--ease);
}

.site-nav a::after {
  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transition: transform .25s var(--ease);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.language-switch {
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-switch button {
  min-width: 42px;
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 700;
}

.language-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
}

.menu-toggle {
  display: none;
  min-width: 56px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: .74rem;
  font-weight: 700;
}

.menu-close-label { display: none; }
body.menu-open .menu-open-label { display: none; }
body.menu-open .menu-close-label { display: inline; }

main { min-height: calc(100svh - var(--header-h)); }

.route-page {
  animation: page-enter .5s var(--ease) both;
}

@keyframes page-enter {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}

.eyebrow {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.45;
  text-transform: uppercase;
}

.content-shell { width: var(--shell); margin-inline: auto; }

.home-hero {
  display: grid;
  grid-template-columns: minmax(480px, 46%) minmax(0, 54%);
  min-height: calc(100svh - var(--header-h));
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(32px, 5vw, 80px);
  background: var(--paper);
}

.hero-copy h1 {
  max-width: none;
  margin-top: 28px;
  font-family: "Songti SC", STSong, "Iowan Old Style", Georgia, serif;
  font-size: clamp(3.35rem, 5vw, 6rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .96;
}

.hero-copy h1 br { display: none; }
.hero-copy h1 > span { display: block; white-space: nowrap; }

html[data-lang="en"] .hero-copy h1 {
  max-width: 7em;
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
  font-size: clamp(3.25rem, 5.9vw, 6.5rem);
  letter-spacing: -.055em;
}

.hero-copy .accent { color: var(--red); }

.hero-english {
  max-width: 38rem;
  margin-top: 30px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.65;
}

.hero-summary {
  max-width: 33rem;
  margin-top: 20px;
  color: #373431;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}

.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--red); border-color: var(--red); }
.button-light { background: transparent; color: var(--ink); }
.button-light:hover { background: var(--ink); color: var(--white); }

.trust-line,
.trust-list {
  max-width: 36rem;
  margin-top: 38px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .75rem;
}

.trust-list {
  display: grid;
  gap: 0;
  margin-bottom: 0;
  padding-left: 0;
  counter-reset: trust;
  list-style: none;
}

.trust-list > * {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  padding-block: 9px;
  border-bottom: 1px solid rgba(17, 17, 17, .09);
  counter-increment: trust;
  line-height: 1.55;
}

.trust-list > *::before {
  color: var(--red);
  content: counter(trust, decimal-leading-zero);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.trust-list > *:last-child { border-bottom: 0; }

.hero-carousel {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: #d9d6d0;
}

.carousel-viewport {
  width: 100%;
  height: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.carousel-viewport::-webkit-scrollbar { display: none; }

.carousel-track {
  display: flex;
  height: 100%;
}

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  min-height: 680px;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.hero-slide::after {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(0, 0, 0, .58), transparent);
  content: "";
  pointer-events: none;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--slide-position, 50% 50%);
}

.hero-slide.preserve-frame { background: #111; }
.hero-slide.preserve-frame img { object-fit: contain; }

/* The clean derivative removes the venue lettering. A soft extension fills the frame while the full two-person photo remains visible. */
.hero-slide.maye-full-frame { background: #54413f; isolation: isolate; }
.hero-slide.maye-full-frame::before {
  position: absolute;
  z-index: 0;
  inset: -8%;
  background: url("../images/maye-stage-clean-crop-v06.jpg") center / cover;
  content: "";
  filter: blur(26px) brightness(.62);
  transform: scale(1.08);
}
.hero-slide.maye-full-frame img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

/* Keep wide two-person photographs complete without introducing hard black bars. */
.hero-slide.soft-full-frame { isolation: isolate; background: #6a625c; }
.hero-slide.soft-full-frame::before {
  position: absolute;
  z-index: 0;
  inset: -8%;
  background-position: center;
  background-size: cover;
  content: "";
  filter: blur(28px) brightness(.62);
  transform: scale(1.08);
}
.hero-slide.frame-ray::before { background-image: url("../images/ray-dalio-ppt-original-v05.png"); }
.hero-slide.frame-zhang::before { background-image: url("../images/carousel-zhang-hq-v05.jpg"); }
.hero-slide.soft-full-frame img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.hero-slide figcaption {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 3vw, 44px);
  bottom: 78px;
  left: clamp(20px, 3vw, 44px);
  display: flex;
  gap: 16px;
  align-items: baseline;
  color: var(--white);
  text-shadow: 0 1px 20px rgba(0, 0, 0, .5);
}

.hero-slide figcaption span { font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.hero-slide figcaption strong { font-size: clamp(1rem, 1.7vw, 1.4rem); font-weight: 600; }
.hero-slide figcaption .slide-copy {
  display: grid;
  max-width: min(560px, calc(100% - 70px));
  gap: 4px;
  letter-spacing: 0;
}
.hero-slide figcaption .slide-copy small {
  font-size: clamp(.72rem, 1vw, .9rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
}

.carousel-controls {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 3vw, 44px);
  bottom: 20px;
  left: clamp(20px, 3vw, 44px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  pointer-events: none;
}

.carousel-dots, .carousel-actions { display: flex; align-items: center; gap: 8px; pointer-events: auto; }

.carousel-dots button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button::before {
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  background: transparent;
  content: "";
  transition: width .25s var(--ease), border-radius .25s var(--ease), background .25s var(--ease);
}

.carousel-dots button[aria-current="true"]::before { width: 20px; border-radius: 999px; background: var(--white); }

.carousel-actions button {
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  background: rgba(17, 17, 17, .5);
  color: var(--white);
  cursor: pointer;
  place-items: center;
  backdrop-filter: blur(12px);
}

.carousel-actions button:hover { background: rgba(17, 17, 17, .85); }

.dialogue-index { border-top: 1px solid var(--line); }
.dialogue-index article {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: end;
  min-height: 210px;
  padding-block: 34px;
  border-bottom: 1px solid var(--line);
}
.dialogue-index article > span { align-self: start; color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.dialogue-index h2 { margin-top: 10px; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: clamp(3.4rem, 8vw, 8.5rem); font-weight: 400; letter-spacing: -.06em; line-height: .84; }

.dialogue-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dialogue-cards article { min-width: 0; }
.dialogue-cards figure { aspect-ratio: 4 / 3; overflow: hidden; background: #dedbd5; }
.dialogue-cards img { width: 100%; height: 100%; object-fit: cover; }
.dialogue-cards .preserve-dialogue { background: #111; }
.dialogue-cards .preserve-dialogue img { object-fit: contain; }
.dialogue-cards .portrait-dialogue { aspect-ratio: 4 / 5; }
.dialogue-cards article > span { display: block; margin-top: 16px; color: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .12em; }
.dialogue-cards h3 { margin-top: 6px; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: clamp(1.5rem, 2.4vw, 2.7rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.08; }
.featured-dialogue-cards + .dialogue-index { display: none; }
.chapter-cards { max-width: none; margin-top: 46px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.chapter-cards.two { max-width: none; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.chapter-cards figure { aspect-ratio: 3 / 2; }

.media-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 18px;
  width: 100%;
}

.media-gallery.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.media-gallery.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.media-gallery.wide > :first-child { grid-column: span 2; }

.semantic-title { text-wrap: balance; }
.semantic-chunk { display: inline-block; white-space: nowrap; word-break: keep-all; }
.semantic-title:not(.semantic-stack) .semantic-chunk + .semantic-chunk { margin-left: .18em; }
.semantic-stack > .semantic-chunk { display: block; margin-left: 0; }
html[data-lang="en"] .semantic-chunk { white-space: normal; word-break: normal; }

.gallery-card {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 13px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.gallery-card figure {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dedbd5;
}

.gallery-card figure::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  background: rgba(17, 17, 17, .48);
  color: var(--white);
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
  place-items: center;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

/* Dialogue cards use the image itself as the visual frame. */
.gallery-card > img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dedbd5;
}

.gallery-card.preserve > img,
.gallery-card.preserve-frame > img,
.gallery-card[data-fit="contain"] > img {
  object-fit: contain;
  background: #ebe8e2;
}

.gallery-card.portrait > img { aspect-ratio: 4 / 5; }

.gallery-card > span:not(.gallery-kicker),
.gallery-card > strong {
  display: block;
  padding-right: 10px;
  font-family: "Songti SC", STSong, "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.25;
}

html[data-lang="en"] .gallery-card > span:not(.gallery-kicker),
html[data-lang="en"] .gallery-card > strong {
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
}

.gallery-card:hover img { transform: scale(1.025); }
.gallery-card:focus-visible figure { outline: 2px solid var(--red); outline-offset: 4px; }

.gallery-card.preserve figure,
.gallery-card .preserve,
.gallery-card.preserve-frame figure,
.gallery-card .preserve-frame,
.gallery-card[data-fit="contain"] figure {
  background: #ebe8e2;
}

.gallery-card.preserve img,
.gallery-card .preserve img,
.gallery-card.preserve-frame img,
.gallery-card .preserve-frame img,
.gallery-card[data-fit="contain"] img {
  object-fit: contain;
}

.gallery-card figcaption,
.gallery-card .gallery-caption {
  display: grid;
  gap: 4px;
  padding-right: 10px;
}

.gallery-card figcaption span,
.gallery-card .gallery-kicker {
  color: var(--red);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.gallery-card figcaption strong,
.gallery-card .gallery-title {
  font-family: "Songti SC", STSong, "Iowan Old Style", Georgia, serif;
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.gallery-card .dialogue-card-copy { gap: 8px; }
.gallery-card .dialogue-card-copy small {
  color: var(--muted);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(.76rem, .9vw, .88rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

html[data-lang="en"] .gallery-card figcaption strong,
html[data-lang="en"] .gallery-card .gallery-title {
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
}

.media-lightbox {
  width: min(94vw, 1440px);
  max-width: none;
  max-height: 94svh;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #101010;
  color: var(--white);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .45);
}

.media-lightbox::backdrop {
  background: rgba(10, 10, 10, .84);
  backdrop-filter: blur(8px);
}

.media-lightbox[open] { display: grid; }

.lightbox-shell {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  max-height: 94svh;
}

.lightbox-figure {
  display: grid;
  min-height: 0;
  place-items: center;
  background: #101010;
}

.lightbox-image {
  width: 100%;
  height: auto;
  max-height: calc(94svh - 90px);
  object-fit: contain;
}

.lightbox-caption {
  min-height: 72px;
  padding: 18px 76px 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .86);
  font-size: .88rem;
  line-height: 1.55;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 50%;
  background: rgba(17, 17, 17, .64);
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  place-items: center;
  backdrop-filter: blur(10px);
}

.lightbox-close:hover { background: rgba(180, 35, 53, .9); }
body.lightbox-open { overflow: hidden; }

.home-sections { padding-block: 130px 0; }
.home-sections > section { margin-bottom: 150px; }

.home-reel { scroll-margin-top: calc(var(--header-h) + 22px); }

.reel-heading {
  display: grid;
  grid-template-columns: minmax(180px, .55fr) minmax(0, 1.45fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

.reel-heading > div:first-child { display: flex; gap: 22px; align-items: baseline; }

.reel-heading h2,
.section-heading-row h2 {
  font-family: "Songti SC", STSong, "Iowan Old Style", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1;
}

html[data-lang="en"] .reel-heading h2,
html[data-lang="en"] .section-heading-row h2 { font-family: "Iowan Old Style", Baskerville, Georgia, serif; }

.reel-heading > div:last-child > p { max-width: 50rem; margin-top: 22px; color: var(--muted); font-size: 1.05rem; }

.reel-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #dedbd5;
  object-fit: cover;
  object-position: 50% 44%;
}

.home-highlights { padding-block: 96px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }

.section-heading-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 36px;
  margin-bottom: 56px;
}

.section-heading-row h2 { margin-top: 14px; font-size: clamp(2.6rem, 4.5vw, 5rem); }

.highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.highlight-card figure { aspect-ratio: 4 / 3; overflow: hidden; background: #dedbd5; }
.highlight-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s var(--ease); }
.highlight-card .poster-frame,
.highlight-card .preserve-photo { background: #dedbd5; }
.highlight-card .poster-frame img,
.highlight-card .preserve-photo img { object-fit: cover; object-position: center; }
.highlight-card .poster-frame img { object-position: 58% 40%; }
.highlight-card .highlight-host-close img { object-position: 52% 34%; }
.highlight-card:hover img { transform: scale(1.025); }
.highlight-card > span { display: block; margin-top: 20px; color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.highlight-card h3 { margin-top: 8px; font-family: "Songti SC", STSong, Georgia, serif; font-size: clamp(1.45rem, 2vw, 2.25rem); font-weight: 600; letter-spacing: -.03em; line-height: 1.15; }
html[data-lang="en"] .highlight-card h3 { font-family: "Iowan Old Style", Georgia, serif; }

.home-intro {
  display: grid;
  grid-template-columns: 80px minmax(260px, .8fr) 1.4fr;
  gap: 36px;
  align-items: start;
}

.section-number, .book-index {
  color: var(--red);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
}

.home-intro > h2,
.text-spotlight > h2,
.home-cta h2,
.quiet-block h2 {
  font-family: "Songti SC", STSong, "Iowan Old Style", Georgia, serif;
  font-size: clamp(2.5rem, 4.5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.08;
}

html[data-lang="en"] .home-intro > h2,
html[data-lang="en"] .text-spotlight > h2,
html[data-lang="en"] .home-cta h2,
html[data-lang="en"] .quiet-block h2 { font-family: "Iowan Old Style", Baskerville, Georgia, serif; }

.feature-links { border-top: 1px solid var(--ink); }

.feature-links a {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  transition: color .2s var(--ease);
}

.feature-links a:hover { color: var(--red); }
.feature-kicker { color: var(--muted); font-size: .72rem; font-weight: 700; letter-spacing: .1em; }
.feature-links strong { font-size: clamp(1.15rem, 1.75vw, 1.65rem); font-weight: 500; line-height: 1.35; }

.editorial-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.editorial-feature.reverse { grid-template-columns: minmax(300px, .85fr) minmax(0, 1.15fr); }

.editorial-image {
  overflow: hidden;
  background: #dedbd5;
}

.portrait-frame { aspect-ratio: 4 / 5; }
.landscape-frame { aspect-ratio: 3 / 2; }

.editorial-image img,
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.honor-feature .editorial-image img { object-position: center 63%; }

.editorial-copy h2 {
  margin-top: 18px;
  font-family: "Songti SC", STSong, "Iowan Old Style", Georgia, serif;
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .98;
}

html[data-lang="en"] .editorial-copy h2 { font-family: "Iowan Old Style", Baskerville, Georgia, serif; }

.editorial-copy > p:not(.eyebrow) {
  max-width: 34rem;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 30px;
  border-bottom: 1px solid currentColor;
  color: var(--red);
  font-size: .86rem;
  font-weight: 700;
}

.text-link::after { margin-left: 10px; content: "→"; }
.text-link.external::after { content: "↗"; }

.text-spotlight {
  display: grid;
  grid-template-columns: 80px 160px 1fr;
  gap: 36px;
  align-items: start;
  padding-block: 90px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.text-spotlight h2 { display: grid; gap: 4px; font-size: clamp(3rem, 6.5vw, 7rem); }
.text-spotlight h2 span:nth-child(2) { color: var(--red); }
.text-spotlight .text-link { grid-column: 3; }

.home-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(54px, 8vw, 110px);
  background: var(--paper-soft);
}

.home-cta h2 { max-width: 10em; margin-top: 24px; }
.home-cta .button { margin-top: 36px; }
.home-cta.compact-cta { margin-top: 30px; }

.inner-page { padding-bottom: 140px; }

.page-hero {
  width: var(--shell);
  min-height: min(760px, calc(100svh - var(--header-h)));
  margin-inline: auto;
  padding-block: 80px;
}

.page-hero-split {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(380px, 1.05fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}

.page-title-block h1,
.page-hero-centered h1,
.contact-intro h1 {
  margin-top: 24px;
  font-family: "Songti SC", STSong, "Iowan Old Style", Georgia, serif;
  font-size: clamp(3.6rem, 7vw, 8rem);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: .98;
}

html[data-lang="en"] .page-title-block h1,
html[data-lang="en"] .page-hero-centered h1,
html[data-lang="en"] .contact-intro h1 { font-family: "Iowan Old Style", Baskerville, Georgia, serif; }

.page-title-block .about-title { font-size: clamp(3.4rem, 5.1vw, 5.2rem); }
.page-title-block .hosting-title { font-size: clamp(2.9rem, 4.2vw, 4.4rem); }
.about-title span,
.hosting-title span { display: block; white-space: nowrap; }
html[data-lang="en"] .page-title-block .about-title { font-size: clamp(2.7rem, 3.8vw, 3.9rem); }
html[data-lang="en"] .page-title-block .hosting-title { font-size: clamp(2.55rem, 3.6vw, 3.7rem); }

.page-title-block > p:not(.eyebrow) { margin-top: 28px; color: var(--muted); }
.page-hero-image { overflow: hidden; background: #ddd9d2; }
.page-hero-image img { object-position: center top; }

.page-hero-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1120px;
  text-align: center;
}

.page-hero-centered h1 { max-width: 10em; }
.dialogues-title { max-width: none !important; font-size: clamp(3.5rem, 5.8vw, 6.5rem) !important; }
.collaboration-title { max-width: none !important; font-size: clamp(3.5rem, 5.8vw, 6.5rem) !important; }
.route-page[data-route="watch"] .page-hero { min-height: min(560px, calc(100svh - var(--header-h))); }
.page-hero-centered .watch-title {
  max-width: none;
  font-size: clamp(2.7rem, 4vw, 4rem);
  letter-spacing: -.045em;
  line-height: 1.06;
  white-space: nowrap;
}
html[data-lang="en"] .page-hero-centered .watch-title { max-width: 18em; font-size: clamp(2.45rem, 3.4vw, 3.5rem); white-space: normal; }
.watch-title .watch-phrase { display: inline; }
.watch-title .watch-phrase + .watch-phrase { margin-left: .16em; }
.page-hero-centered > p:last-child { max-width: 46rem; margin-top: 24px; color: var(--muted); font-size: 1.1rem; }

.page-flow { display: grid; gap: 140px; }

.bio-block { max-width: 1050px; margin-inline: auto; }
.bio-block > p {
  max-width: 46em;
  line-height: 1.9;
}
.bio-block > p + p { margin-top: 28px; }
.bio-block > .lead { max-width: 34em; line-height: 1.58; }
.lead { font-family: "Songti SC", STSong, Georgia, serif; font-size: clamp(1.55rem, 2.7vw, 2.6rem); line-height: 1.48; }
html[data-lang="en"] .lead { font-family: "Iowan Old Style", Baskerville, Georgia, serif; }

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.credential-grid div { display: grid; gap: 28px; min-height: 156px; padding: 22px 22px 28px; border-right: 1px solid var(--line); }
.credential-grid div:last-child { border-right: 0; }
.credential-grid span { color: var(--red); font-size: .7rem; font-weight: 700; }
.credential-grid strong { align-self: end; font-size: .95rem; line-height: 1.4; }

.honors-feature { align-items: start; }
.honors-feature .editorial-copy h2 { font-size: clamp(2.8rem, 5vw, 5.6rem); }
.honors-timeline { margin-top: 42px; border-top: 1px solid var(--ink); }
.honors-timeline article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: start;
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
}
.honors-timeline span { color: var(--red); font-size: .72rem; font-weight: 800; letter-spacing: .08em; }
.honors-timeline strong { font-size: .95rem; line-height: 1.5; }

.quiet-block {
  padding: clamp(60px, 9vw, 130px) clamp(26px, 8vw, 110px);
  background: var(--paper-soft);
}

.quiet-block h2 { max-width: 12em; margin-top: 22px; font-size: clamp(2.7rem, 5vw, 5.6rem); }
.quiet-block > p:not(.eyebrow, .name-line) { max-width: 52rem; margin-top: 30px; color: var(--muted); font-size: 1.05rem; }

.portrait-stories {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px 34px;
}

.story-wide { grid-column: 1 / -1; }
.story figure { aspect-ratio: 4 / 3; overflow: hidden; background: #dedbd5; }
.story-wide figure { aspect-ratio: 2 / 1; }
.story figure img { width: 100%; height: 100%; object-fit: cover; }
.story .eyebrow { margin-top: 18px; }
.story h2 { margin-top: 7px; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: clamp(2.3rem, 4.5vw, 4.7rem); font-weight: 500; letter-spacing: -.04em; line-height: 1; }
.dialogue-program h2 { max-width: none; font-size: clamp(2.8rem, 4.8vw, 5.2rem); }

.featured-gallery .gallery-card > img { aspect-ratio: 4 / 3; object-fit: cover; background: #dedbd5; }
.chapter-gallery:not(.two-up) .gallery-card > img { aspect-ratio: 16 / 9; object-fit: cover; background: #dedbd5; }
.chapter-gallery .gallery-card.portrait > img { aspect-ratio: 16 / 9; object-fit: contain; background: #ebe8e2; }
.chapter-gallery.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.chapter-gallery.two-up .gallery-card > img { aspect-ratio: 4 / 5; object-fit: contain; background: #ebe8e2; }
.name-line { margin-top: 48px; color: var(--red); font-family: "Iowan Old Style", Georgia, serif; font-size: clamp(1.2rem, 2.1vw, 2rem); line-height: 1.55; }

.series-title h1 { color: var(--red); }
.season-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.season-tabs button {
  display: grid;
  min-height: 110px;
  padding: 18px 24px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.season-tabs button:last-child { border-right: 0; }
.season-tabs button span:first-child { color: var(--muted); font-size: .7rem; font-weight: 700; }
.season-tabs button span:last-child { align-self: end; font-size: 1.12rem; font-weight: 700; }
.season-tabs button[aria-selected="true"] { background: var(--ink); color: var(--white); }
.season-tabs button[aria-selected="true"] span:first-child { color: #e6b8be; }

.season-panel {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  min-height: 580px;
}

.season-panel > figure { display: grid; aspect-ratio: 4 / 3; overflow: hidden; place-items: center; background: #ebe8e2; }
.season-panel > figure img { display: block; width: 100%; height: 100%; object-fit: contain; }
.season-panel > .media-gallery,
.season-panel > .series-gallery,
.series-gallery {
  grid-column: 1 / -1;
  width: 100%;
}
.series-gallery { margin-top: 10px; }
.season-copy h2 { margin-top: 18px; font-family: "Songti SC", STSong, Georgia, serif; font-size: clamp(3.2rem, 6vw, 6rem); font-weight: 600; line-height: 1; }
html[data-lang="en"] .season-copy h2 { font-family: "Iowan Old Style", Baskerville, Georgia, serif; }
.season-copy > p:not(.eyebrow, .name-line, .season-quote) { margin-top: 28px; color: var(--muted); font-size: 1.06rem; }
.season-quote { margin-top: 24px; color: var(--red); font-size: clamp(1.6rem, 2.7vw, 2.6rem); font-weight: 600; }

.ai-season { grid-template-columns: 1fr; }
.ai-season .season-copy { max-width: 800px; }
.season-three-visual { width: 100%; overflow: hidden; background: #ebe8e2; }
.season-three-visual img { display: block; width: 100%; height: 100%; object-fit: contain; }
.portrait-gallery .gallery-card figure { aspect-ratio: 9 / 16; background: #ebe8e2; }
.portrait-gallery .gallery-card img { object-fit: contain; }
.media-gallery.s2-poster-gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sports-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sports-gallery .gallery-card > img {
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #ebe8e2;
}
.business-portrait-card > img { object-position: center 24%; }
.season-gallery:not(.portrait-gallery) .gallery-card figure,
.ai-program-gallery .gallery-card figure { aspect-ratio: 16 / 9; background: #dedbd5; }
.season-gallery:not(.portrait-gallery) .gallery-card img,
.ai-program-gallery .gallery-card img { object-fit: cover; }
.episode-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.episode-strip article { display: grid; gap: 12px; }
.episode-strip img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.episode-strip strong { font-size: 1rem; }

.hosting-hero .page-hero-image { aspect-ratio: 3 / 2; }
.wide-statement-image { width: 100%; aspect-ratio: 2.4 / 1; overflow: hidden; background: #ddd; }
.wide-statement-image img { width: 100%; height: 100%; object-fit: cover; }
.wide-statement-image { aspect-ratio: 3 / 2; }

.hosting-gallery,
.collaboration-gallery { width: 100%; }
.hosting-gallery .gallery-card figure,
.collaboration-gallery .gallery-card figure { aspect-ratio: 3 / 2; background: #dedbd5; }
.hosting-gallery .gallery-card img,
.collaboration-gallery .gallery-card img { object-fit: cover; }
.collaboration-poster-gallery .gallery-card figure { aspect-ratio: 9 / 16; padding: 10px; background: #ebe8e2; }
.collaboration-poster-gallery .gallery-card img { object-fit: contain; }
.collaboration-poster-gallery .poster-wide-source figure { padding: 0; }
.collaboration-poster-gallery .poster-wide-source img { object-fit: cover; object-position: center; }

.gallery-section,
.archive-section {
  display: grid;
  gap: 36px;
  padding-top: 44px;
  border-top: 1px solid var(--ink);
}

.archive-section > h2 {
  max-width: 13em;
  font-family: "Songti SC", STSong, "Iowan Old Style", Georgia, serif;
  font-size: clamp(2.5rem, 4.6vw, 5.15rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.06;
}

html[data-lang="en"] .archive-section > h2 {
  font-family: "Iowan Old Style", Baskerville, Georgia, serif;
}

.archive-section > p:not(.eyebrow) {
  max-width: 50rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.gallery-section-heading {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 28px;
  align-items: baseline;
}

.gallery-section-heading > span { color: var(--red); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.gallery-section-heading h2 {
  font-family: "Songti SC", STSong, "Iowan Old Style", Georgia, serif;
  font-size: clamp(2.15rem, 3.8vw, 4.25rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: 1.08;
}
html[data-lang="en"] .gallery-section-heading h2 { font-family: "Iowan Old Style", Baskerville, Georgia, serif; }

.editorial-list { border-top: 1px solid var(--ink); }
.editorial-list article {
  display: grid;
  grid-template-columns: 80px minmax(240px, .7fr) 1.3fr;
  gap: 36px;
  align-items: baseline;
  padding: 34px 0 42px;
  border-bottom: 1px solid var(--line);
}
.editorial-list article > span { color: var(--red); font-size: .72rem; font-weight: 700; }
.editorial-list h2 { font-family: "Songti SC", STSong, Georgia, serif; font-size: clamp(2rem, 3.5vw, 3.5rem); font-weight: 500; line-height: 1.1; }
html[data-lang="en"] .editorial-list h2 { font-family: "Iowan Old Style", Georgia, serif; }
.editorial-list p { color: var(--muted); }

.collaboration-list { border-top: 1px solid var(--ink); }
.collaboration-list article { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 44px 0 54px; border-bottom: 1px solid var(--line); }
.collaboration-list article > span { color: var(--red); font-size: .72rem; font-weight: 700; }
.collaboration-list h2 { font-family: "Songti SC", STSong, Georgia, serif; font-size: clamp(2.4rem, 4.3vw, 4.8rem); font-weight: 500; line-height: 1; }
html[data-lang="en"] .collaboration-list h2 { font-family: "Iowan Old Style", Georgia, serif; }
.collaboration-list p { max-width: 50rem; margin-top: 20px; color: var(--muted); font-size: 1.05rem; }

.watch-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 72px 24px; }
.watch-card { display: grid; align-content: start; }
.watch-card figure { aspect-ratio: 16 / 9; overflow: hidden; background: #ddd; }
.watch-card figure img { width: 100%; height: 100%; object-fit: cover; background: #dedbd5; }
.watch-card figure video { width: 100%; height: 100%; object-fit: cover; }
.watch-card .eyebrow { margin-top: 18px; }
.watch-card h2 { margin-top: 8px; font-family: "Songti SC", STSong, Georgia, serif; font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 500; line-height: 1; }
html[data-lang="en"] .watch-card h2 { font-family: "Iowan Old Style", Georgia, serif; }
.watch-card p:not(.eyebrow) { max-width: 36rem; margin-top: 16px; color: var(--muted); }
.featured-watch { grid-column: 1 / -1; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: clamp(36px, 5vw, 72px); align-items: center; }
.featured-watch figure { aspect-ratio: 16 / 9; }
.watch-feature-title { font-size: clamp(2.1rem, 3vw, 3rem) !important; white-space: nowrap; }
html[data-lang="en"] .watch-feature-title { white-space: normal; text-wrap: balance; }
.watch-card-centered { grid-column: 1 / -1; width: calc((100% - 24px) / 2); justify-self: center; }
.platforms { padding-top: 42px; border-top: 1px solid var(--ink); }
.platform-links, .social-links { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 24px; }
.platform-links a, .social-links a { display: inline-flex; min-height: 44px; align-items: center; border-bottom: 1px solid currentColor; font-size: .9rem; font-weight: 700; }
.platform-links a:hover, .social-links a:hover { color: var(--red); }

.books-hero { min-height: min(560px, calc(100svh - var(--header-h))); }
.books-hero h1 { max-width: none; font-size: clamp(3.4rem, 6vw, 6.5rem); line-height: 1.02; }
.book-list { border-top: 1px solid var(--ink); }
.book-list article { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 30px; padding: 58px 0 68px; border-bottom: 1px solid var(--line); }
.book-list article > div { max-width: 850px; }
.book-list h2 { margin-top: 12px; font-family: "Songti SC", STSong, Georgia, serif; font-size: clamp(2.7rem, 4.8vw, 5.25rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.06; }
html[data-lang="en"] .book-list h2 { font-family: "Iowan Old Style", Georgia, serif; }
.book-list p:not(.eyebrow) { max-width: 50rem; margin-top: 28px; color: var(--muted); font-size: 1.05rem; }
.book-list small { display: block; margin-top: 26px; color: var(--muted); }
.book-list article:has(.book-cover-card) { grid-template-columns: 90px minmax(190px, .32fr) minmax(0, .68fr); align-items: start; }
.book-cover-card { max-width: 290px; }

.book-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.book-grid article {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper-soft);
}
.book-grid .book-cover-card { width: 100%; max-width: none; }
.book-grid figure { display: grid; width: 100%; aspect-ratio: 4 / 5; overflow: hidden; padding: clamp(20px, 3vw, 34px); place-items: center; background: #e6e2dc; }
.book-grid img { width: 100%; height: 100%; object-fit: contain; }
.book-grid h2 { margin-top: 10px; font-size: clamp(2rem, 3vw, 3.6rem); line-height: 1.1; text-wrap: balance; }
.book-grid p:not(.eyebrow) { margin-top: 20px; color: var(--muted); line-height: 1.8; }
.book-grid small { display: block; margin-top: 22px; color: var(--muted); }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(440px, 1.1fr);
  gap: clamp(60px, 9vw, 140px);
  width: var(--shell);
  min-height: calc(100svh - var(--header-h));
  align-items: center;
  margin-inline: auto;
  padding-block: 90px;
}

.contact-intro h1 { max-width: 7em; }
.contact-intro > p:last-child { max-width: 32rem; margin-top: 28px; color: var(--muted); }

.contact-form { display: grid; gap: 24px; padding: clamp(28px, 5vw, 58px); border: 1px solid var(--line); background: var(--white); }
.contact-form label { display: grid; gap: 8px; }
.contact-form label > span { color: #34312e; font-size: .78rem; font-weight: 700; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form input:not([type="checkbox"]), .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid #8b8780;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-bottom-color: var(--red); box-shadow: 0 1px 0 var(--red); }
.contact-form textarea { resize: vertical; }
.contact-form .consent { grid-template-columns: 20px 1fr; align-items: start; gap: 12px; }
.contact-form .consent input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--red); }
.contact-form .consent span { color: var(--muted); font-size: .73rem; font-weight: 400; line-height: 1.6; }
.form-submit { width: max-content; cursor: pointer; }
.form-status { min-height: 1.6em; color: var(--red); font-size: .82rem; }
.social-section { padding: 78px 0; background: var(--paper-soft); }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 190px;
  padding: 44px 48px;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}
.footer-brand { display: inline-flex; align-items: baseline; gap: 10px; width: max-content; font-family: "Songti SC", STSong, Georgia, serif; font-size: 1.4rem; font-weight: 700; }
.footer-brand small { color: #aaa6a0; font-family: "Avenir Next", Avenir, sans-serif; font-size: .58rem; letter-spacing: .14em; }
.site-footer > p { color: #aaa6a0; font-size: .76rem; }
.site-footer > a:not(.footer-brand) { border-bottom: 1px solid currentColor; font-size: .8rem; font-weight: 700; }
.site-footer > small { grid-column: 1 / -1; color: #77736e; font-size: .66rem; }

@media (max-width: 1180px) {
  :root { --shell: min(1120px, calc(100vw - 64px)); }
  .site-header { grid-template-columns: 150px auto 120px; padding-inline: 22px; }
  .site-nav a { min-width: 54px; padding-inline: 8px; font-size: .72rem; }
  .home-hero { grid-template-columns: minmax(440px, 46%) minmax(0, 54%); }
  .hero-carousel, .hero-slide { min-height: 650px; }
  .home-intro { grid-template-columns: 60px .75fr 1.25fr; }
}

@media (max-width: 900px) {
  :root { --shell: calc(100vw - 42px); --header-h: 62px; }
  .site-header { grid-template-columns: 1fr auto; height: var(--header-h); padding-inline: 20px; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: -1;
    display: grid;
    grid-template-columns: 1fr;
    align-content: start;
    padding: 28px 22px 50px;
    overflow-y: auto;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  body.menu-open .site-nav { z-index: 90; opacity: 1; pointer-events: auto; transform: none; }
  .site-nav a { justify-items: start; min-height: 58px; padding: 0; border-bottom: 1px solid var(--line); font-family: "Songti SC", STSong, Georgia, serif; font-size: 1.35rem; }
  html[data-lang="en"] .site-nav a { font-family: "Iowan Old Style", Georgia, serif; }
  .site-nav a::after { display: none; }
  .header-actions { grid-column: 2; grid-row: 1; }
  .menu-toggle { display: block; }

  .home-hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 72px 28px 58px; }
  .hero-copy h1 { font-size: clamp(3.4rem, 11vw, 5.8rem); }
  html[data-lang="en"] .hero-copy h1 { font-size: clamp(3.2rem, 12vw, 5.8rem); }
  .hero-carousel { min-height: 0; height: 68svh; border-top: 1px solid var(--line); border-left: 0; }
  .hero-slide { min-height: 0; height: 68svh; }
  .home-sections { padding-top: 95px; }
  .home-sections > section { margin-bottom: 110px; }
  .home-intro { grid-template-columns: 50px 1fr; }
  .home-intro > h2 { grid-column: 2; }
  .feature-links { grid-column: 2; }
  .reel-heading { grid-template-columns: 1fr; gap: 24px; }
  .highlight-grid { grid-template-columns: 1fr 1fr; }
  .highlight-card:first-child { grid-column: 1 / -1; }
  .highlight-card:first-child figure { aspect-ratio: 16 / 9; }
  .editorial-feature, .editorial-feature.reverse { grid-template-columns: 1fr; gap: 44px; }
  .editorial-feature.reverse .editorial-copy { order: 2; }
  .text-spotlight { grid-template-columns: 50px 1fr; }
  .text-spotlight > .eyebrow { grid-column: 2; }
  .text-spotlight h2, .text-spotlight .text-link { grid-column: 2; }
  .dialogue-cards { grid-template-columns: 1fr 1fr; }
  .dialogue-cards article:first-child { grid-column: 1 / -1; }
  .dialogue-cards article:first-child figure { aspect-ratio: 16 / 9; }
  .chapter-cards { grid-template-columns: 1fr; }
  .chapter-cards article:first-child { grid-column: 1; }
  .chapter-cards article:first-child figure { aspect-ratio: 3 / 2; }
  .media-gallery,
  .media-gallery.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-gallery.s2-poster-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-gallery.sports-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .media-gallery.wide > :first-child { grid-column: span 2; }

  .page-hero { min-height: 0; padding-block: 74px 90px; }
  .page-hero-split { grid-template-columns: 1fr; gap: 54px; }
  .page-hero-image { width: min(620px, 100%); }
  .page-flow { gap: 100px; }
  .credential-grid { grid-template-columns: 1fr 1fr; }
  .credential-grid div:nth-child(2) { border-right: 0; }
  .credential-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .portrait-stories { gap: 50px 20px; }
  .season-panel { grid-template-columns: 1fr; min-height: 0; }
  .editorial-list article { grid-template-columns: 50px 1fr; gap: 18px; }
  .editorial-list p { grid-column: 2; }
  .featured-watch { grid-template-columns: 1fr; }
  .featured-watch figure { width: 100%; max-width: none; }
  .book-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; min-height: 0; padding-block: 80px; }
  .contact-intro h1 { max-width: 9em; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100vw - 32px); }
  body { font-size: 16px; }
  .site-header { padding-inline: 16px; }
  .wordmark-main { font-size: 1.18rem; }
  .wordmark-sub { display: none; }
  .language-switch button { min-width: 40px; min-height: 36px; }
  .header-actions { gap: 7px; }
  .menu-toggle { min-width: 46px; }

  .hero-copy { padding: 58px 18px 46px; }
  .hero-copy h1 { margin-top: 24px; font-size: clamp(2.9rem, 13.6vw, 4.3rem); }
  html[data-lang="en"] .hero-copy h1 { font-size: clamp(2.6rem, 13.2vw, 4rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .button { padding-inline: 14px; }
  .hero-carousel, .hero-slide { height: 62svh; min-height: 440px; }
  .hero-slide img { object-fit: cover; object-position: var(--mobile-slide-position, var(--slide-position, 50% 50%)); background: #d9d6d0; }
  .hero-slide.maye-full-frame img { object-fit: contain; object-position: center; background: transparent; }
  .hero-slide.soft-full-frame img { object-fit: contain; object-position: center; background: transparent; }
  .hero-slide figcaption { bottom: 84px; }
  .hero-slide figcaption strong { font-size: .96rem; }
  .hero-slide figcaption .slide-copy { max-width: calc(100% - 56px); }
  .hero-slide figcaption .slide-copy small { font-size: .7rem; }
  .carousel-controls { right: 14px; bottom: 14px; left: 14px; gap: 10px; }
  .carousel-dots { gap: 2px; }
  .carousel-dots button { width: 22px; }
  .carousel-actions { gap: 5px; }
  .carousel-actions button { width: 40px; height: 40px; }

  .home-sections { padding-top: 72px; }
  .home-sections > section { margin-bottom: 84px; }
  .home-intro { grid-template-columns: 1fr; gap: 20px; }
  .home-intro > h2, .feature-links { grid-column: 1; }
  .feature-links a { grid-template-columns: 1fr auto; gap: 8px; min-height: 118px; }
  .feature-kicker { grid-column: 1 / -1; }
  .feature-links strong { font-size: 1.1rem; }
  .reel-heading { margin-bottom: 26px; }
  .reel-heading > div:first-child { display: grid; gap: 6px; }
  .reel-heading h2, .section-heading-row h2 { font-size: clamp(2.55rem, 13vw, 4rem); }
  .reel-heading > div:last-child > p { font-size: .95rem; }
  .home-highlights { padding-block: 64px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 34px; }
  .highlight-grid { grid-template-columns: 1fr; gap: 46px; }
  .highlight-card:first-child { grid-column: 1; }
  .highlight-card:first-child figure, .highlight-card figure { aspect-ratio: 4 / 3; }
  .editorial-copy h2 { font-size: clamp(2.8rem, 14vw, 4.6rem); }
  .text-spotlight { grid-template-columns: 1fr; gap: 18px; padding-block: 56px; }
  .text-spotlight > .eyebrow, .text-spotlight h2, .text-spotlight .text-link { grid-column: 1; }
  .text-spotlight h2 { font-size: clamp(2.9rem, 14vw, 4.5rem); }
  .home-cta { padding: 46px 24px; }
  .home-cta h2, .quiet-block h2, .home-intro > h2 { font-size: clamp(2.45rem, 12vw, 4rem); }

  .inner-page { padding-bottom: 90px; }
  .page-hero { padding-block: 58px 72px; }
  .page-title-block h1, .page-hero-centered h1, .contact-intro h1 { font-size: clamp(2.45rem, 11vw, 3.4rem); line-height: 1.04; }
  .page-hero-centered .dialogues-title,
  .page-hero-centered .collaboration-title { font-size: clamp(1.9rem, 7.4vw, 2.3rem) !important; }
  .page-title-block .about-title { font-size: clamp(2.45rem, 12vw, 3rem); }
  .page-title-block .hosting-title { font-size: clamp(2.15rem, 10vw, 2.6rem); }
  .page-hero-centered .watch-title { font-size: clamp(2rem, 9vw, 2.45rem); white-space: normal; }
  .watch-title .watch-phrase { display: block; margin-left: 0 !important; white-space: nowrap; }
  html[data-lang="en"] .page-title-block .about-title { font-size: clamp(2.05rem, 9.3vw, 2.45rem); }
  html[data-lang="en"] .page-title-block .hosting-title { font-size: clamp(1.95rem, 8.8vw, 2.3rem); }
  html[data-lang="en"] .about-title span,
  html[data-lang="en"] .hosting-title span { white-space: normal; }
html[data-lang="en"] .page-hero-centered .watch-title { font-size: clamp(1.9rem, 8.7vw, 2.25rem); }
  html[data-lang="en"] .page-hero-centered .watch-title { max-width: calc(100vw - 44px); font-size: clamp(1.72rem, 7.25vw, 2.05rem); }
  html[data-lang="en"] .watch-title .watch-phrase { white-space: normal; }
  .page-flow { gap: 80px; }
  .lead { font-size: 1.45rem; }
  .bio-block > p { line-height: 1.82; }
  .bio-block > p + p { margin-top: 24px; }
  .credential-grid { grid-template-columns: 1fr; }
  .credential-grid div { min-height: 118px; border-right: 0; border-bottom: 1px solid var(--line); }
  .credential-grid div:last-child { border-bottom: 0; }
  .honors-timeline article { grid-template-columns: 72px 1fr; gap: 14px; }
  .portrait-stories { grid-template-columns: 1fr; }
  .story-wide { grid-column: 1; }
  .story-wide figure, .story figure { aspect-ratio: 4 / 3; }
  .dialogue-index article { grid-template-columns: 36px 1fr; min-height: 150px; gap: 16px; }
  .dialogue-index h2 { font-size: clamp(2.9rem, 15vw, 5rem); }
  .dialogue-cards, .chapter-cards.two { grid-template-columns: 1fr; gap: 36px; }
  .chapter-cards { grid-template-columns: 1fr; }
  .dialogue-cards article:first-child { grid-column: 1; }
  .dialogue-cards article:first-child figure, .dialogue-cards figure { aspect-ratio: 4 / 3; }
  .chapter-cards figure, .chapter-cards article:first-child figure { aspect-ratio: 3 / 2; }
  .chapter-cards .portrait-dialogue, .chapter-cards article:first-child .portrait-dialogue { aspect-ratio: 4 / 5; }
  .quiet-block { padding: 52px 22px; }
  .dialogue-program h2 { font-size: clamp(2.05rem, 9vw, 2.6rem); }
  .quiet-block > .semantic-title { font-size: clamp(2rem, 8.2vw, 2.4rem); }
  .dialogue-program > .semantic-title { font-size: clamp(1.9rem, 7.5vw, 2.35rem); }
  .semantic-title:not(.semantic-stack) .semantic-chunk { display: block; margin-left: 0; }
  html[data-lang="en"] .semantic-title .semantic-chunk { white-space: normal; }
  .archive-section > h2 { max-width: none; font-size: clamp(2.15rem, 9.4vw, 2.75rem); text-wrap: balance; }
  .archive-section > .semantic-title .semantic-chunk { white-space: normal; }

  .season-tabs { grid-template-columns: 1fr; }
  .season-tabs button { grid-template-columns: 38px 1fr; align-items: center; min-height: 64px; border-right: 0; border-bottom: 1px solid var(--line); }
  .season-tabs button:last-child { border-bottom: 0; }
  .season-tabs button span:last-child { align-self: auto; }
  .season-copy h2 { font-size: 3.5rem; }
  .episode-strip { grid-template-columns: 1fr; }

  .media-gallery,
  .media-gallery.two,
  .media-gallery.four { grid-template-columns: 1fr; gap: 38px; }
  .media-gallery.s2-poster-gallery,
  .media-gallery.sports-gallery { grid-template-columns: 1fr; }
  .media-gallery.wide > :first-child { grid-column: 1; }
  .gallery-card figure { aspect-ratio: 4 / 3; }
  .portrait-gallery .gallery-card figure { aspect-ratio: 9 / 16; }
  .season-gallery:not(.portrait-gallery) .gallery-card figure,
  .ai-program-gallery .gallery-card figure { aspect-ratio: 16 / 9; }
  .hosting-gallery .gallery-card figure,
  .collaboration-gallery .gallery-card figure { aspect-ratio: 3 / 2; }
  .hosting-gallery .gallery-card.preserve img,
  .collaboration-gallery .gallery-card.preserve img { object-fit: cover; }
  .collaboration-poster-gallery .gallery-card figure { aspect-ratio: 9 / 16; }
  .gallery-section { gap: 26px; padding-top: 34px; }
  .gallery-section-heading { grid-template-columns: 34px 1fr; gap: 14px; }
  .gallery-section-heading h2 { font-size: clamp(2rem, 10vw, 3rem); }

  .editorial-list article, .collaboration-list article, .book-list article,
  .book-list article:has(.book-cover-card) { grid-template-columns: 36px 1fr; gap: 16px; }
  .book-list article:has(.book-cover-card) .book-cover-card,
  .book-list article:has(.book-cover-card) > div { grid-column: 2; }
  .editorial-list p { grid-column: 2; }
  .collaboration-list h2 { font-size: clamp(2rem, 8.8vw, 2.35rem); }
  .book-list h2 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .watch-grid { grid-template-columns: 1fr; gap: 52px; }
  .featured-watch { grid-column: 1; }
  .watch-card-centered { grid-column: 1; width: 100%; }
  .watch-feature-title { font-size: clamp(2rem, 9vw, 2.45rem) !important; }
  .platform-links, .social-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; }

  .contact-layout { gap: 54px; padding-block: 64px; }
  .contact-form { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; }
  .social-section { padding-block: 58px; }

  .site-footer { grid-template-columns: 1fr; min-height: 0; padding: 44px 22px; }
  .site-footer > small { grid-column: 1; }

  .books-hero h1 { font-size: clamp(2.45rem, 11vw, 3.4rem); }
  .book-list h2 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
  .book-grid article { grid-template-columns: 1fr; padding: 22px; }
  .book-grid figure { width: 100%; }

  .media-lightbox { width: 100vw; height: 100svh; max-height: 100svh; }
  .lightbox-shell { height: 100svh; max-height: 100svh; }
  .lightbox-image { max-height: calc(100svh - 94px); }
  .lightbox-caption { min-height: 80px; padding: 16px 72px 18px 18px; }
  .lightbox-close { top: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}
