/* Fiona Wu. One stylesheet, no framework.
   Two moods: the stage (night) for the hero, the videos and the footer,
   and the page (paper) for everything you read. */

@font-face {
  font-family: "Newsreader";
  src: url("/fonts/newsreader-roman.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Newsreader";
  src: url("/fonts/newsreader-italic.woff2") format("woff2");
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Hanken Grotesk";
  src: url("/fonts/hanken-grotesk.woff2") format("woff2");
  font-weight: 400 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f3f3f0;
  --paper-2: #e7e6e1;
  --ink: #1b1814;
  --ink-2: #57524c;
  --rule: rgb(27 24 20 / 0.16);
  --night: #140c08;
  --night-ink: #efe9e2;
  --night-ink-2: #b3a89d;
  --night-rule: rgb(239 233 226 / 0.16);
  --accent: #7d1f2a;
  --accent-soft: #e0a79f;

  --serif: "Newsreader", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Hanken Grotesk", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --gutter: clamp(20px, 4.5vw, 64px);
  --max: 1400px;
  --section: clamp(96px, 12vw, 184px);
  --col-gap: clamp(20px, 3vw, 48px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.0625rem, 0.98rem + 0.35vw, 1.25rem);
  font-optical-sizing: auto;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: normal;
  hanging-punctuation: first;
}

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

figure,
blockquote {
  margin: 0;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  font-weight: 400;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

em,
cite {
  font-style: italic;
}

sup {
  font-size: 0.62em;
  line-height: 0;
  vertical-align: 0.55em;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

::selection {
  background: var(--accent);
  color: var(--paper);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

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

.skip-link {
  position: absolute;
  left: var(--gutter);
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.875rem;
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}

/* Small functional type: navigation, labels, captions. */
.site-nav,
.lang-switch,
.menu-toggle,
.credit,
.facts dt,
.video-composer,
.text-link,
.privacy-note,
.channel-label,
figcaption,
.site-footer .footer-meta {
  font-family: var(--sans);
}

/* ---------- Header ---------- */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding: clamp(20px, 3vw, 36px) var(--gutter);
  color: var(--night-ink);
}

.wordmark {
  font-size: 1.3rem;
  letter-spacing: 0.005em;
  text-decoration: none;
  margin-right: auto;
}

.site-nav ul {
  display: flex;
  gap: clamp(1.25rem, 2.4vw, 2.5rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a,
.lang-switch {
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding-block: 6px;
  background: linear-gradient(currentColor, currentColor) 0 100% / 0 1px no-repeat;
  transition: background-size 0.4s var(--ease);
}
.site-nav a:hover,
.lang-switch:hover {
  background-size: 100% 1px;
}

.lang-switch {
  padding-left: 1.5rem;
  border-left: 1px solid var(--night-rule);
  background-position: 1.5rem 100%;
}
.lang-switch:hover {
  background-size: calc(100% - 1.5rem) 1px;
}

.menu-toggle {
  display: none;
}

/* ---------- Hero: the stage ---------- */

.hero {
  position: relative;
  isolation: isolate;
  min-height: max(660px, 100svh);
  background: var(--night);
  color: var(--night-ink);
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: 64%;
  z-index: -1;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 36% 28%;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--night) 0%, rgb(20 12 8 / 0.7) 16%, rgb(20 12 8 / 0) 42%),
    linear-gradient(0deg, var(--night) 0%, rgb(20 12 8 / 0) 34%);
}

.hero-inner {
  min-height: inherit;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(120px, 16vh, 180px) var(--gutter) clamp(24px, 3.5vw, 48px);
  max-width: calc(var(--max) + 2 * var(--gutter));
  margin-inline: auto;
}

.hero-text {
  grid-row: 1;
  align-self: center;
  max-width: 27rem;
}

.hero-role {
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  font-weight: 300;
  line-height: 1.1;
}

.hero-line {
  margin-top: 0.6rem;
  font-size: clamp(1.1rem, 1.3vw, 1.25rem);
  line-height: 1.45;
  color: var(--night-ink-2);
  max-width: 22rem;
}

.hero-quote {
  margin-top: clamp(2rem, 4vh, 3rem);
  padding-top: 1.25rem;
  border-top: 1px solid var(--night-rule);
}
.hero-quote blockquote p {
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--night-ink);
}
.hero-quote figcaption {
  margin-top: 0.8rem;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--night-ink-2);
}
.hero-quote cite {
  font-style: normal;
}
.hero-quote cite::before {
  content: "— ";
}

.hero-name {
  grid-row: 2;
  margin: 0;
  font-weight: 300;
  font-size: clamp(4.5rem, 20.5vw, 21rem);
  line-height: 0.8;
  letter-spacing: -0.045em;
  white-space: nowrap;
  font-variation-settings: "opsz" 72;
  margin-left: -0.04em;
}

.js .hero-photo img {
  animation: lights-up 2.2s var(--ease) both;
}
.js .hero-name span {
  display: inline-block;
  animation: rise 1.2s var(--ease) both;
}
.js .hero-name span + span {
  animation-delay: 0.12s;
}
.js .hero-text {
  animation: fade 1.2s 0.35s var(--ease) both;
}

@keyframes lights-up {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(0.18em);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---------- Shared section parts ---------- */

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

.section-title {
  font-weight: 300;
  font-size: clamp(3rem, 8.5vw, 7.75rem);
  line-height: 0.92;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 72;
  margin-bottom: clamp(36px, 5vw, 80px);
}
.section-title--sub {
  font-size: clamp(2.25rem, 4.6vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.lede {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  font-weight: 350;
  line-height: 1.3;
  letter-spacing: -0.008em;
}

.prose p + p {
  margin-top: 1.05em;
}

figcaption {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--ink-2);
}

.credit {
  letter-spacing: 0.02em;
}

.text-link {
  display: inline-flex;
  gap: 0.5em;
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
}
.text-link span {
  transition: transform 0.4s var(--ease);
}
.text-link:hover span {
  transform: translate(3px, 0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Biography ---------- */

.bio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
  align-items: start;
}
.bio .section-title {
  grid-column: 1 / -1;
}
.bio-lede {
  grid-column: 6 / span 7;
  grid-row: 2;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.bio-photo {
  grid-column: 1 / span 4;
  grid-row: 2 / span 3;
  position: sticky;
  top: 40px;
}
.bio-photo img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 30%;
  width: 100%;
}
.bio-body {
  grid-column: 6 / span 6;
  grid-row: 3;
}
.bio-body p {
  max-width: 36em;
}
.bio-facts {
  grid-column: 6 / span 7;
  grid-row: 4;
  margin-top: clamp(56px, 6vw, 96px);
}

.facts-title {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.facts {
  margin: 0;
  border-bottom: 1px solid var(--rule);
}
.facts div {
  display: grid;
  grid-template-columns: minmax(10rem, 15rem) 1fr;
  gap: 1rem 2rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  align-items: baseline;
}
.facts dt {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.facts dd {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ---------- The question ---------- */

.question {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  background: var(--paper-2);
  min-height: min(92vh, 980px);
}
.question-photo {
  position: relative;
  overflow: hidden;
}
.question-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 45% 25%;
}
.question-text {
  align-self: center;
  padding: var(--section) var(--gutter) var(--section) clamp(40px, 7vw, 128px);
  max-width: 54rem;
}
.question-intro {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-2);
}
.question-q {
  margin-top: 1.25rem;
  font-size: clamp(2.5rem, 5.4vw, 5.25rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.028em;
  font-variation-settings: "opsz" 72;
  text-wrap: balance;
}
.question-body {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  max-width: 30em;
}
.question-coda {
  margin-top: 1.5rem;
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  line-height: 1.3;
  color: var(--accent);
}

/* ---------- Listen: back to the stage ---------- */

.listen {
  background: var(--night);
  color: var(--night-ink);
  padding-bottom: var(--section);
}
.listen figcaption,
.listen .video-detail,
.listen .privacy-note {
  color: var(--night-ink-2);
}

.listen-band {
  position: relative;
  height: clamp(300px, 50vw, 760px);
  overflow: hidden;
}
.listen-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 60%;
}
.listen-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, var(--night) 0%, rgb(20 12 8 / 0.55) 34%, rgb(20 12 8 / 0) 70%),
    linear-gradient(180deg, rgb(20 12 8 / 0.35) 0%, rgb(20 12 8 / 0) 22%);
}

.listen-head {
  position: relative;
  z-index: 1;
  margin-top: clamp(-190px, -11vw, -64px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 96px);
}
.listen-head .section-title {
  grid-column: 1 / span 7;
  margin-bottom: 0;
}
.listen-head .lede {
  grid-column: 8 / span 5;
  color: var(--night-ink-2);
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.5rem);
  padding-bottom: 0.6rem;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}
.video-play {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: var(--night-ink);
  cursor: pointer;
}
.video-play img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.92);
  transition:
    transform 1.2s var(--ease),
    filter 0.6s var(--ease);
}
.video-play:hover img,
.video-play:focus-visible img {
  transform: scale(1.025);
  filter: brightness(0.95) saturate(1);
}
.video-play:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 4px;
}
.play-mark {
  position: absolute;
  left: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  width: clamp(44px, 4.2vw, 64px);
  transition: transform 0.5s var(--ease);
}
.video-play:hover .play-mark {
  transform: scale(1.08);
}
.play-mark svg {
  display: block;
  width: 100%;
  height: auto;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-composer {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--night-ink-2);
}
.video-work {
  margin-top: 0.45rem;
  font-size: clamp(1.2rem, 1.1rem + 0.35vw, 1.4rem);
  line-height: 1.25;
}
.video-detail {
  margin-top: 0.5rem;
  font-size: 0.98rem;
  line-height: 1.45;
}
.video-meta {
  margin-top: 1.1rem;
}

.video--featured {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
  align-items: end;
}
.video--featured .video-frame {
  grid-column: 1 / span 8;
}
.video--featured .video-meta {
  grid-column: 9 / span 4;
  margin: 0;
}
.video--featured .video-work {
  font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.4rem);
  font-weight: 350;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 64px) var(--col-gap);
  margin-top: clamp(72px, 9vw, 128px);
}

.listen-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem 2rem;
  margin-top: clamp(64px, 7vw, 104px);
  padding-top: 1.5rem;
  border-top: 1px solid var(--night-rule);
}
.privacy-note {
  font-size: 0.8125rem;
}

/* ---------- Teaching ---------- */

.teaching-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
  align-items: start;
}
.teaching .section-title {
  grid-column: 1 / -1;
}
.teaching-text {
  grid-column: 1 / span 5;
  grid-row: 2;
}
.teaching-text p + p {
  margin-top: 1.5rem;
  max-width: 30em;
}
.teaching-lesson {
  grid-column: 7 / span 6;
  grid-row: 2;
}
.teaching-lesson img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.voices {
  margin-top: clamp(96px, 11vw, 168px);
}
.voices-title {
  font-size: clamp(1.5rem, 1.2rem + 0.9vw, 2rem);
  font-weight: 350;
  padding-bottom: 1.25rem;
  margin-bottom: clamp(32px, 4vw, 56px);
  border-bottom: 1px solid var(--rule);
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(40px, 5vw, 64px) var(--col-gap);
}
.voice blockquote p {
  font-size: 1.12rem;
  line-height: 1.55;
}
.voice blockquote[lang="en"] p::before {
  content: "\201C";
}
.voice blockquote[lang="en"] p::after {
  content: "\201D";
}
.voice blockquote[lang="fr"] p::before {
  content: "\00AB\00A0";
}
.voice blockquote[lang="fr"] p::after {
  content: "\00A0\00BB";
}
.voice blockquote p::before {
  margin-left: -0.45em;
}
.voice figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--accent);
  width: fit-content;
  min-width: 3rem;
}
.voice-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
}
.voice-role {
  font-size: 0.8125rem;
}

/* ---------- Talks ---------- */

.talks {
  background: var(--paper-2);
}
.talks-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
  align-items: center;
}
.talks-photo {
  grid-column: 1 / span 6;
}
.talks-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.talks-text {
  grid-column: 8 / span 5;
}
.talks-text .lede {
  font-size: clamp(1.25rem, 1rem + 0.7vw, 1.6rem);
}
.talks-text p + p {
  margin-top: 1.25rem;
}
.talks-invite {
  color: var(--ink-2);
}
.talks-invite a {
  color: var(--accent);
  white-space: nowrap;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
  align-items: end;
}
.contact-photo {
  grid-column: 1 / span 4;
}
.contact-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 20%;
}
.contact-text {
  grid-column: 6 / span 7;
}
.contact-text .section-title {
  margin-bottom: 1.5rem;
}
.contact-via {
  margin-top: 0.75rem;
  color: var(--ink-2);
}

.channels {
  list-style: none;
  margin: clamp(32px, 4vw, 56px) 0 0;
  padding: 0;
  border-bottom: 1px solid var(--rule);
}
.channels a {
  display: grid;
  grid-template-columns: 8.5rem 1fr auto;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
}
.channel-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.channel-handle {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2.1rem);
  font-weight: 350;
  line-height: 1.15;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
  overflow-wrap: anywhere;
}
.channel-arrow {
  font-family: var(--sans);
  transition: transform 0.4s var(--ease);
}
.channels a:hover .channel-handle {
  color: var(--accent);
}
.channels a:hover .channel-arrow {
  transform: translate(3px, -3px);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--night);
  color: var(--night-ink);
  padding: clamp(72px, 9vw, 128px) 0 clamp(32px, 4vw, 48px);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--col-gap);
  row-gap: 56px;
  align-items: end;
}
.bach-figure {
  grid-column: 1 / span 6;
}
.bach {
  display: block;
  width: min(100%, 420px);
  height: auto;
  color: rgb(239 233 226 / 0.5);
}
.bach-notes {
  fill: var(--accent-soft);
}
.bach-figure figcaption {
  margin-top: 1.5rem;
  max-width: 30rem;
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--night-ink-2);
}
.js .bach-note {
  opacity: 0;
  transition: opacity 0.7s var(--ease);
  transition-delay: calc(var(--i) * 0.38s + 0.2s);
}
.js .bach-figure.is-visible .bach-note {
  opacity: 1;
}

.footer-meta {
  grid-column: 8 / span 5;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--night-ink-2);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}
.footer-links a {
  color: var(--night-ink);
  text-decoration: none;
  border-bottom: 1px solid var(--night-rule);
  padding-bottom: 2px;
}
.footer-links a:hover {
  border-bottom-color: currentColor;
}

/* ---------- Tablet and phone ---------- */

@media (max-width: 1080px) {
  .site-nav ul {
    gap: 1.25rem;
  }
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .voices-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 899px) {
  .site-header {
    gap: 1.25rem;
    align-items: center;
  }
  .menu-toggle {
    display: block;
    padding: 6px 0;
    border: 0;
    background: none;
    color: inherit;
    font-size: 0.8125rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }
  .lang-switch {
    position: relative;
    z-index: 2;
    padding-left: 0;
    border-left: 0;
    background-position: 0 100%;
  }
  .lang-switch:hover {
    background-size: 100% 1px;
  }
  .wordmark {
    position: relative;
    z-index: 2;
  }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    padding: 96px var(--gutter) 56px;
    background: var(--night);
    visibility: hidden;
    opacity: 0;
    transition:
      opacity 0.35s var(--ease),
      visibility 0s linear 0.35s;
  }
  .menu-open .site-nav {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.35s var(--ease);
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }
  .site-nav a {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 11vw, 3.5rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    text-transform: none;
    line-height: 1.15;
  }
  .menu-open .site-header {
    position: fixed;
  }
  .menu-open body {
    overflow: hidden;
  }

  .hero {
    min-height: 0;
  }
  .hero-photo {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 88svh;
    z-index: 0;
  }
  .hero-photo img {
    object-position: 34% 30%;
  }
  .hero-photo::after {
    background:
      linear-gradient(0deg, var(--night) 0%, rgb(20 12 8 / 0.6) 18%, rgb(20 12 8 / 0) 46%),
      linear-gradient(180deg, rgb(20 12 8 / 0.55) 0%, rgb(20 12 8 / 0) 20%);
  }
  .hero-inner {
    display: flex;
    flex-direction: column;
    min-height: 0;
    position: relative;
    z-index: 1;
    margin-top: -31vw;
    padding: 0 var(--gutter) 64px;
  }
  .hero-name {
    font-size: 31vw;
    line-height: 0.78;
    white-space: normal;
  }
  .hero-name span {
    display: block;
  }
  .hero-text {
    margin-top: 40px;
    max-width: 34rem;
  }

  .bio-grid,
  .teaching-grid,
  .talks-grid,
  .contact-grid,
  .footer-grid,
  .listen-head,
  .video--featured {
    display: block;
  }
  .bio-photo {
    position: static;
    margin: 0 0 40px;
    max-width: 420px;
  }
  .bio-lede {
    margin-bottom: 40px;
  }
  .bio-facts {
    margin-top: 56px;
  }
  .facts div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .question {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .question-photo {
    aspect-ratio: 4 / 5;
    max-height: 80svh;
  }
  .question-text {
    padding: 72px var(--gutter) 96px;
  }

  .listen-head .lede {
    margin-top: 1.25rem;
  }
  .video--featured .video-meta {
    margin-top: 1.1rem;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }

  .teaching-text {
    margin-bottom: 40px;
  }
  .voices-grid {
    grid-template-columns: 1fr;
  }

  .talks-text {
    margin-top: 40px;
  }

  .contact-photo {
    max-width: 320px;
    margin-bottom: 48px;
  }
  .channels a {
    grid-template-columns: 1fr auto;
    row-gap: 0.1rem;
  }
  .channel-label {
    grid-column: 1 / -1;
  }

  .footer-meta {
    margin-top: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal,
  .js .bach-note {
    opacity: 1;
    transform: none;
  }
}
