:root {
  --paper: #f3f0e9;
  --paper-deep: #e9e4da;
  --ink: #171a1f;
  --quiet: #6e706f;
  --line: #d2cdc3;
  --oxblood: #7b2d36;
  --blue: #1f3d53;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 4rem);
  --wide: 1240px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.opening-is-active { overflow: hidden; }
::selection { background: var(--oxblood); color: #fff; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button { font: inherit; }
.skip-link {
  position: fixed;
  z-index: 10000;
  top: .75rem;
  left: .75rem;
  padding: .65rem .9rem;
  background: var(--ink);
  color: var(--paper);
  font-size: .75rem;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: none; }
.wp-site-blocks { padding: 0; }
.wp-site-blocks > * { margin-block-start: 0; }
.section-shell {
  width: min(100%, calc(var(--wide) + 2 * var(--page-pad)));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}
.eyebrow,
.section-number,
.course-kicker {
  margin: 0;
  color: var(--quiet);
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding-block: .35rem;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, gap .25s ease;
}
.text-link:hover { color: var(--oxblood); gap: 1.65rem; }

/* Header */
.site-header {
  position: relative;
  z-index: 80;
  height: var(--header-height);
  margin: 0;
  border-bottom: 1px solid rgba(23, 26, 31, .14);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(18px);
}
.site-header__inner {
  position: relative;
  display: flex;
  width: min(100%, calc(var(--wide) + 2 * var(--page-pad)));
  height: 100%;
  align-items: center;
  justify-content: space-between;
  margin-inline: auto;
  padding-inline: var(--page-pad);
  gap: 2rem;
}
.site-brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: .8rem;
  color: var(--ink);
  font-size: .8rem;
  font-weight: 650;
  letter-spacing: -.01em;
  text-decoration: none;
}
.site-brand__monogram {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: .72rem;
  font-style: italic;
}
.primary-navigation { margin-left: auto; }
.wp-block-navigation__responsive-container-open,
.wp-block-navigation__responsive-container-close {
  padding: .35rem;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}
.primary-navigation .wp-block-navigation-item__content {
  position: relative;
  padding: .4rem .15rem;
  color: var(--ink);
  font-size: .74rem;
  font-weight: 550;
  text-decoration: none;
}
.primary-navigation .wp-block-navigation-item__content::after {
  position: absolute;
  right: .15rem;
  bottom: .15rem;
  left: .15rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.primary-navigation .wp-block-navigation-item__content:hover::after { transform: scaleX(1); transform-origin: left; }
.site-header__actions { display: flex; align-items: center; gap: .55rem; }
.header-icon,
.language-toggle {
  min-height: 2rem;
  padding: .35rem .7rem;
  border: 1px solid rgba(23, 26, 31, .36);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: .64rem;
  line-height: 1;
  transition: background .2s ease, color .2s ease;
}
.header-icon { width: 2rem; padding: 0; font-size: .75rem; }
.language-toggle { display: flex; gap: .3rem; text-transform: uppercase; }
.language-toggle span { color: var(--quiet); }
.header-icon:hover,
.language-toggle:hover { background: var(--ink); color: var(--paper); }
.language-toggle:hover span { color: inherit; }
.language-notice {
  position: absolute;
  top: calc(100% + .75rem);
  right: var(--page-pad);
  max-width: 19rem;
  padding: .75rem 1rem;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  font-size: .72rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-.4rem);
  transition: opacity .2s ease, transform .2s ease;
}
.language-notice.is-visible { opacity: 1; transform: none; }

/* Opening screen */
.opening-screen {
  position: fixed;
  z-index: 9999;
  inset: 0;
  overflow: hidden;
  background: #121418;
  color: #f6f1e8;
  opacity: 1;
  transition: opacity .6s cubic-bezier(.7, 0, .2, 1), visibility .6s;
}
.opening-screen[hidden] { display: none; }
.opening-screen.is-leaving { opacity: 0; visibility: hidden; }
.opening-screen__image,
.opening-screen__shade,
.opening-screen__grain { position: absolute; inset: 0; width: 100%; height: 100%; }
.opening-screen__image {
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1.2s ease, transform 7s cubic-bezier(.2, .7, .2, 1);
}
.opening-screen.is-ready .opening-screen__image { opacity: 1; transform: scale(1); }
.opening-screen__shade {
  background: linear-gradient(90deg, rgba(8, 10, 13, .62), rgba(8, 10, 13, .06) 64%), linear-gradient(0deg, rgba(8, 10, 13, .56), transparent 55%);
}
.opening-screen__grain {
  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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: .32;
  pointer-events: none;
}
.opening-screen__topline {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.65rem var(--page-pad);
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  font-size: .65rem;
  font-weight: 650;
  letter-spacing: .15em;
}
.opening-screen__skip {
  padding: .25rem 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.opening-screen__content {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: clamp(2rem, 6vw, 5rem);
  left: var(--page-pad);
  display: grid;
  grid-template-columns: minmax(3rem, 1fr) minmax(18rem, 760px) auto;
  align-items: end;
  gap: 3rem;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity .9s ease .3s, transform .9s ease .3s;
}
.opening-screen.is-ready .opening-screen__content { opacity: 1; transform: none; }
.opening-screen__index { align-self: start; margin: .8rem 0 0; font-size: .64rem; letter-spacing: .12em; }
.opening-screen blockquote { margin: 0; }
.opening-screen blockquote p {
  max-width: 15ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .96;
}
.opening-screen cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-size: .68rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.opening-screen cite:not(:empty)::before { content: "— "; }
.opening-screen__enter {
  display: flex;
  width: 8.5rem;
  height: 8.5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: .68rem;
  text-align: left;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.opening-screen__enter:hover { background: #f6f1e8; color: #121418; transform: rotate(-4deg); }

/* Home */
.home-main { overflow: hidden; }
.home-hero {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr);
  align-items: stretch;
  gap: clamp(2rem, 6vw, 6rem);
  padding-top: clamp(3.5rem, 8vh, 7rem);
  padding-bottom: clamp(3rem, 6vh, 5rem);
}
.home-hero__copy { display: flex; min-width: 0; flex-direction: column; justify-content: space-between; }
.home-hero__copy > .eyebrow { display: flex; justify-content: space-between; gap: 2rem; }
.home-hero h1 {
  margin: clamp(4rem, 11vh, 8rem) 0 4rem;
  font-family: var(--sans);
  font-size: clamp(5rem, 10.7vw, 10rem);
  font-weight: 530;
  letter-spacing: -.085em;
  line-height: .72;
}
.home-hero h1 em {
  padding-left: .57em;
  font-family: var(--serif);
  font-weight: 400;
}
.home-hero__intro { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2rem; }
.home-hero__intro > p { max-width: 32rem; margin: 0; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.42; }
.button-row { display: flex; flex-direction: column; align-items: stretch; gap: .8rem; }
.home-hero__figure { display: flex; min-height: 0; flex-direction: column; justify-content: center; }
.home-hero__figure svg { width: 100%; max-height: 66vh; }
.home-hero__caption { display: flex; justify-content: space-between; margin: .8rem 0 0; padding-top: .65rem; border-top: 1px solid var(--line); color: var(--quiet); font-size: .62rem; text-transform: uppercase; }
.manifesto {
  display: grid;
  grid-template-columns: 1fr minmax(0, 4fr);
  gap: 2rem;
  padding-top: clamp(6rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 12vw, 12rem);
  border-top: 1px solid var(--line);
}
.manifesto__text { max-width: 1020px; margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 5.6vw, 5.6rem); letter-spacing: -.045em; line-height: 1.02; }
.home-section { padding-top: clamp(5rem, 10vw, 9rem); padding-bottom: clamp(5rem, 10vw, 9rem); border-top: 1px solid var(--line); }
.section-header { display: grid; grid-template-columns: 1fr 2.2fr 1fr; align-items: end; gap: 2rem; margin-bottom: 5rem; }
.section-header h2,
.teaching-feature h2,
.writing-feature h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -.06em;
  line-height: .82;
}
.section-header > p:last-child { max-width: 15rem; margin: 0; color: var(--quiet); font-size: .78rem; line-height: 1.5; }
.interest-list { border-top: 1px solid var(--ink); }
.interest-row { display: grid; grid-template-columns: 1fr 2.2fr 1fr; gap: 2rem; align-items: baseline; padding: 1.45rem 0; border-bottom: 1px solid var(--line); }
.interest-row > p:first-child { color: var(--quiet); font-size: .63rem; }
.interest-row h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 3vw, 2.8rem); font-weight: 400; letter-spacing: -.035em; }
.interest-row > p:last-child { margin: 0; color: var(--quiet); font-size: .76rem; line-height: 1.55; }
.teaching-feature {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  min-height: 720px;
  padding-top: clamp(4rem, 8vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  background: var(--blue);
  color: #f2eee6;
}
.teaching-feature__title { display: flex; flex-direction: column; justify-content: space-between; }
.teaching-feature .section-number { color: rgba(255,255,255,.6); }
.teaching-feature__details { display: flex; flex-direction: column; justify-content: space-between; padding-left: clamp(2rem, 5vw, 5rem); border-left: 1px solid rgba(255,255,255,.28); }
.course-term { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 4rem); }
.teaching-feature__details > p:nth-child(2) { max-width: 27rem; color: rgba(255,255,255,.72); font-size: .9rem; }
.teaching-feature dl { margin: auto 0 3rem; }
.teaching-feature dl div { display: grid; grid-template-columns: 1fr 2fr; padding: .9rem 0; border-top: 1px solid rgba(255,255,255,.2); }
.teaching-feature dt { color: rgba(255,255,255,.55); font-size: .68rem; text-transform: uppercase; }
.teaching-feature dd { margin: 0; font-size: .78rem; }
.circle-link { display: flex; width: 9rem; height: 9rem; align-items: center; justify-content: space-between; align-self: end; padding: 1.2rem; border: 1px solid currentColor; border-radius: 50%; color: inherit; font-size: .7rem; line-height: 1.15; text-decoration: none; transition: background .25s ease, color .25s ease, transform .25s ease; }
.circle-link:hover { background: var(--paper); color: var(--blue); transform: rotate(-4deg); }
.section-header.compact { margin-bottom: 3rem; }
.section-header.compact .text-link { justify-self: end; }
.resource-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.resource-card { position: relative; display: flex; min-height: 340px; flex-direction: column; justify-content: space-between; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); background: var(--paper-deep); color: var(--ink); text-decoration: none; transition: transform .3s ease, background .3s ease; }
.resource-card:hover { transform: translateY(-.45rem); background: #ded8cd; }
.resource-card--dark { background: var(--oxblood); color: #f6f1e8; }
.resource-card--dark:hover { background: #68242d; }
.resource-card__type { font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; }
.resource-card strong { max-width: 10ch; font-family: var(--serif); font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.resource-card > span:nth-child(3) { max-width: 22rem; font-size: .78rem; opacity: .72; }
.resource-card i { position: absolute; top: 2rem; right: 2rem; font-size: 1.3rem; font-style: normal; }
.writing-feature { display: grid; grid-template-columns: 1fr 1.25fr; gap: clamp(3rem, 8vw, 8rem); padding-top: clamp(6rem, 12vw, 12rem); padding-bottom: clamp(6rem, 12vw, 12rem); border-top: 1px solid var(--line); }
.writing-feature .section-number { margin-bottom: 5rem; }
.writing-feature__columns { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--ink); }
.writing-column { position: relative; display: flex; min-height: 22rem; flex-direction: column; justify-content: space-between; padding: 1.2rem 1.6rem 1.6rem; border-bottom: 1px solid var(--ink); text-decoration: none; }
.writing-column + .writing-column { border-left: 1px solid var(--ink); }
.writing-column > span { font-size: .68rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.writing-column p { margin: auto 0; font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.3rem); letter-spacing: -.03em; line-height: 1.08; }
.writing-column i { align-self: end; font-size: 1.2rem; font-style: normal; transition: transform .25s ease; }
.writing-column:hover i { transform: translate(.25rem, -.25rem); }

/* Footer */
.site-footer { margin: 0; padding: 0; background: var(--ink); color: var(--paper); }
.site-footer__inner { display: grid; width: min(100%, calc(var(--wide) + 2 * var(--page-pad))); min-height: 500px; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-inline: auto; padding: clamp(4rem, 7vw, 7rem) var(--page-pad) 2rem; }
.site-footer .eyebrow { color: rgba(255,255,255,.48); }
.site-footer__statement { margin: 2rem 0 0; font-family: var(--serif); font-size: clamp(2.4rem, 4.8vw, 4.5rem); letter-spacing: -.05em; line-height: .9; }
.site-footer__nav { display: flex; flex-direction: column; gap: .7rem; }
.site-footer__nav a { width: fit-content; color: inherit; font-size: .76rem; text-decoration: none; }
.site-footer__nav a:hover { text-decoration: underline; }
.site-footer__meta { display: flex; flex-direction: column; justify-content: flex-end; color: rgba(255,255,255,.5); font-size: .64rem; }

/* Editorial inner pages */
.inner-page { min-height: 70vh; }
.editorial-heading { padding-top: clamp(5rem, 10vw, 10rem); padding-bottom: clamp(5rem, 10vw, 9rem); }
.editorial-heading h1,
.not-found h1 {
  margin: 3rem 0 0;
  font-size: clamp(4.1rem, 10.4vw, 10rem);
  font-weight: 520;
  letter-spacing: -.078em;
  line-height: .78;
}
.editorial-heading h1 em,
.not-found h1 em { padding-left: .55em; font-family: var(--serif); font-weight: 400; }
.editorial-heading__deck { max-width: 34rem; margin: 4rem 0 0 auto; font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.45; }
.supplemental-content:has(.wp-block-post-content:empty) { display: none; }
.supplemental-content { padding-top: 3rem; padding-bottom: 5rem; }
.page-heading { padding-top: 7rem; padding-bottom: 4rem; }
.page-heading h1 { margin-top: 2rem; font-family: var(--serif); font-size: clamp(4rem, 8vw, 7rem); }
.about-intro { display: grid; grid-template-columns: 1.2fr 1fr; gap: 8vw; padding-top: 5rem; padding-bottom: 8rem; border-top: 1px solid var(--ink); }
.about-intro__lead { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); letter-spacing: -.04em; line-height: 1.05; }
.about-intro__body { color: var(--quiet); font-size: .9rem; }
.about-facts { display: grid; grid-template-columns: repeat(3, 1fr); padding-bottom: 9rem; }
.about-facts article { min-height: 230px; padding: 1.5rem; border: 1px solid var(--line); }
.about-facts article + article { border-left: 0; }
.about-facts span { color: var(--quiet); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.about-facts strong { display: block; margin-top: 5rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1; }
.teaching-list { padding-top: 2rem; padding-bottom: 8rem; }
.teaching-list > .section-number { margin-bottom: 2rem; }
.teaching-entry { display: grid; grid-template-columns: 1fr 2fr 1fr auto; gap: 2rem; align-items: center; padding: 2rem 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); text-decoration: none; }
.teaching-entry__term,
.teaching-entry__status { color: var(--quiet); font-size: .72rem; }
.teaching-entry strong { display: block; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400; }
.teaching-entry small { font-size: .68rem; text-transform: uppercase; }
.teaching-entry i { font-size: 1.3rem; font-style: normal; }
.teaching-note { padding-bottom: 8rem; }
.teaching-note p { max-width: 30rem; margin-left: auto; color: var(--quiet); }
.resource-index { padding-bottom: 9rem; }
.resource-index article { display: grid; grid-template-columns: 1fr 3fr 1fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.resource-index article:last-child { border-bottom: 1px solid var(--line); }
.resource-index article > span,
.resource-index small { color: var(--quiet); font-size: .68rem; }
.resource-index h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
.resource-index p { margin: .6rem 0 0; color: var(--quiet); font-size: .8rem; }
.cv-list { padding-bottom: 10rem; }
.cv-list article { display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.cv-list article > span { color: var(--quiet); font-size: .68rem; text-transform: uppercase; }
.cv-list h2 { margin: 0; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 400; }
.cv-list p { color: var(--quiet); }
.contact-placeholder { display: flex; justify-content: space-between; margin-bottom: 9rem; padding-top: 1.5rem; padding-bottom: 1.5rem; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.contact-placeholder p { margin: 0; font-family: var(--serif); font-size: 1.4rem; }

/* Course */
.course-hero { position: relative; min-height: min(760px, calc(100vh - var(--header-height))); overflow: hidden; padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: 3rem; background: var(--blue); color: var(--paper); }
.course-hero::before { position: absolute; z-index: -1; inset: 0 50%; width: 100vw; background: var(--blue); content: ""; transform: translateX(-50%); }
.course-hero__meta,
.course-hero__bottom { display: flex; justify-content: space-between; gap: 2rem; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.course-hero h1 { margin: clamp(4rem, 8vh, 7rem) 0; font-family: var(--sans); font-size: clamp(5rem, 12vw, 11rem); font-weight: 520; letter-spacing: -.085em; line-height: .72; }
.course-hero h1 em { font-family: var(--serif); font-weight: 400; }
.course-hero__bottom { align-items: end; }
.course-hero__bottom p:last-child { max-width: 24rem; color: rgba(255,255,255,.67); letter-spacing: 0; line-height: 1.5; text-transform: none; }
.course-hero__mark { position: absolute; top: 8rem; right: var(--page-pad); width: min(28vw, 330px); opacity: .32; }
.course-hero__mark svg { width: 100%; fill: none; stroke: var(--paper); stroke-width: 1.3; }
.course-hero__mark circle { fill: var(--paper); stroke: none; }
.course-layout { display: grid; grid-template-columns: 1fr 3fr; gap: clamp(3rem, 8vw, 8rem); padding-top: 7rem; padding-bottom: 10rem; }
.course-sidebar { align-self: start; position: sticky; top: 2rem; }
.course-sidebar nav { display: flex; flex-direction: column; margin-top: 1.5rem; }
.course-sidebar a { padding: .6rem 0; color: var(--quiet); font-size: .75rem; text-decoration: none; }
.course-sidebar a:hover { color: var(--oxblood); }
.course-section { scroll-margin-top: 2rem; padding: 0 0 7rem; }
.course-section + .course-section { padding-top: 4rem; border-top: 1px solid var(--line); }
.course-section h2 { margin: 1.25rem 0 2.5rem; font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 400; letter-spacing: -.05em; }
.course-section > p:not(.course-kicker) { max-width: 45rem; font-family: var(--serif); font-size: 1.25rem; line-height: 1.55; }
.course-facts { margin-top: 3rem; }
.course-facts div { display: grid; grid-template-columns: 1fr 2fr; padding: 1rem 0; border-top: 1px solid var(--line); }
.course-facts div:last-child { border-bottom: 1px solid var(--line); }
.course-facts dt { color: var(--quiet); font-size: .68rem; text-transform: uppercase; }
.course-facts dd { margin: 0; font-size: .8rem; }
.announcement { display: grid; grid-template-columns: 1fr 3fr; gap: 2rem; padding: 1.4rem 0; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--line); }
.announcement time { color: var(--quiet); font-size: .68rem; text-transform: uppercase; }
.announcement p { margin: 0; font-family: var(--serif); font-size: 1.2rem; }
.empty-state { display: grid; min-height: 240px; place-items: center; border: 1px solid var(--line); color: var(--quiet); text-align: center; }
.empty-state span { font-family: var(--serif); font-size: 4rem; }
.empty-state p { margin-top: -3rem; font-size: .75rem; }

/* Blog and essays */
.blog-categories { display: flex; align-items: center; gap: 1.5rem; padding-bottom: 4rem; font-size: .72rem; }
.blog-categories span { color: var(--quiet); }
.blog-categories a { padding: .55rem .9rem; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; }
.post-index { width: min(100%, calc(var(--wide) + 2 * var(--page-pad))); margin-inline: auto; padding: 0 var(--page-pad) 10rem; }
.post-index__entry { display: grid; grid-template-columns: 1fr 3fr auto !important; gap: 2rem; padding: 2rem 0; border-top: 1px solid var(--line); }
.post-index__entry .wp-block-post-date { color: var(--quiet); font-size: .68rem; }
.post-index__entry h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
.post-index__entry h2 a { text-decoration: none; }
.post-index__entry .wp-block-post-excerpt { color: var(--quiet); font-size: .8rem; }
.post-index__arrow { font-size: 1.2rem; }
.essay-page { padding-top: 7rem; padding-bottom: 9rem; }
.essay-heading { padding-bottom: 4rem; }
.essay-heading h1 { max-width: 13ch; margin: 2rem 0; font-family: var(--serif); font-size: clamp(3.5rem, 8vw, 7.5rem); font-weight: 400; letter-spacing: -.055em; }
.essay-page > .wp-block-post-content { font-family: var(--serif); font-size: 1.13rem; line-height: 1.75; }
.not-found { min-height: 75vh; padding-top: 7rem; padding-bottom: 7rem; }
.not-found > p:not(.eyebrow) { font-family: var(--serif); font-size: 1.2rem; }

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .site-brand__name { display: none; }
  .site-header__inner { gap: .8rem; }
  .site-header__actions { margin-left: auto; }
  .primary-navigation { order: 3; margin-left: 0; }
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero__figure { width: min(70%, 560px); margin: 1rem auto 0; }
  .home-hero__copy > .eyebrow { flex-wrap: wrap; }
  .manifesto { grid-template-columns: 1fr 6fr; }
  .section-header,
  .interest-row { grid-template-columns: .5fr 2fr 1fr; }
  .teaching-feature { min-height: 620px; }
  .writing-feature { grid-template-columns: 1fr; }
  .writing-feature__columns { margin-left: 20%; }
  .site-footer__inner { grid-template-columns: 2fr 1fr; }
  .site-footer__meta { grid-column: 2; }
  .opening-screen__content { grid-template-columns: 1fr auto; }
  .opening-screen__index { display: none; }
  .course-layout { grid-template-columns: 1fr; }
  .course-sidebar { position: static; }
  .course-sidebar nav { flex-flow: row wrap; gap: .5rem 1.5rem; }
}

@media (max-width: 620px) {
  :root { --page-pad: 1.25rem; }
  .site-brand__monogram { width: 1.85rem; height: 1.85rem; }
  .header-icon { display: none; }
  .language-toggle { min-height: 1.85rem; padding-inline: .6rem; }
  .wp-block-navigation__responsive-container.is-menu-open {
    padding: 1.5rem var(--page-pad);
    background: var(--ink);
    color: var(--paper);
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content { color: var(--paper); font-family: var(--serif); font-size: 2.3rem; }
  .opening-screen__topline { padding-top: 1.25rem; }
  .opening-screen__shade { background: linear-gradient(0deg, rgba(7,9,12,.72), rgba(7,9,12,.05) 70%); }
  .opening-screen__content { bottom: 1.5rem; display: flex; flex-direction: column; align-items: flex-start; gap: 2rem; }
  .opening-screen blockquote p { max-width: 12ch; font-size: clamp(2.7rem, 13vw, 4.4rem); }
  .opening-screen__enter { width: 6.5rem; height: 6.5rem; margin-left: auto; }
  .home-hero { display: flex; flex-direction: column; padding-top: 3rem; padding-bottom: 4rem; }
  .home-hero h1 { margin: 4rem 0 3rem; font-size: clamp(4.5rem, 23vw, 6.8rem); }
  .home-hero__intro { grid-template-columns: 1fr; }
  .button-row { align-items: flex-start; }
  .home-hero__figure { width: 100%; order: -1; display: none; }
  .manifesto { display: block; padding-top: 5rem; padding-bottom: 5rem; }
  .manifesto .section-number { margin-bottom: 3rem; }
  .manifesto__text { font-size: 2.45rem; }
  .home-section { padding-top: 5rem; padding-bottom: 5rem; }
  .section-header { display: block; margin-bottom: 3rem; }
  .section-header h2 { margin: 2rem 0; font-size: 4rem; }
  .interest-row { grid-template-columns: 2.2rem 1fr; gap: .7rem; padding: 1.25rem 0; }
  .interest-row > p:last-child { grid-column: 2; }
  .teaching-feature { display: block; min-height: auto; padding-top: 4rem; padding-bottom: 4rem; }
  .teaching-feature h2 { margin: 4rem 0; font-size: 4.6rem; }
  .teaching-feature__details { padding: 2rem 0 0; border-top: 1px solid rgba(255,255,255,.28); border-left: 0; }
  .teaching-feature dl { margin: 3rem 0; }
  .circle-link { width: 7rem; height: 7rem; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: 280px; }
  .writing-feature { padding-top: 5rem; padding-bottom: 5rem; }
  .writing-feature .section-number { margin-bottom: 3rem; }
  .writing-feature h2 { font-size: 4rem; }
  .writing-feature__columns { grid-template-columns: 1fr; margin: 3rem 0 0; }
  .writing-column { min-height: 17rem; padding-inline: 0; }
  .writing-column + .writing-column { border-left: 0; }
  .site-footer__inner { min-height: 560px; grid-template-columns: 1fr 1fr; padding-top: 4rem; }
  .site-footer__lead { grid-column: 1 / -1; }
  .site-footer__statement { font-size: 2.9rem; }
  .site-footer__meta { grid-column: auto; }
  .editorial-heading { padding-top: 4rem; padding-bottom: 5rem; }
  .editorial-heading h1,
  .not-found h1 { margin-top: 2.5rem; font-size: clamp(4rem, 20vw, 6.2rem); }
  .editorial-heading__deck { margin-top: 3rem; }
  .about-intro { grid-template-columns: 1fr; gap: 2rem; padding-top: 4rem; padding-bottom: 5rem; }
  .about-facts { grid-template-columns: 1fr; padding-bottom: 6rem; }
  .about-facts article + article { border-top: 0; border-left: 1px solid var(--line); }
  .teaching-entry { grid-template-columns: 1fr auto; gap: .8rem; }
  .teaching-entry__term,
  .teaching-entry__status { grid-column: 1; }
  .teaching-entry i { grid-column: 2; grid-row: 1 / 4; }
  .resource-index article,
  .cv-list article { grid-template-columns: 2rem 1fr; gap: 1rem; }
  .resource-index small { grid-column: 2; }
  .course-hero { min-height: 640px; }
  .course-hero h1 { margin-top: 6rem; font-size: 5rem; }
  .course-hero__mark { top: 8.5rem; right: -2rem; width: 58vw; }
  .course-hero__bottom { display: block; }
  .course-hero__bottom p:last-child { margin-top: 2rem; }
  .course-layout { padding-top: 4rem; padding-bottom: 6rem; }
  .course-section { padding-bottom: 5rem; }
  .course-section h2 { font-size: 3.2rem; }
  .course-facts div,
  .announcement { grid-template-columns: 1fr; gap: .5rem; }
  .blog-categories { flex-wrap: wrap; }
  .post-index__entry { grid-template-columns: 1fr auto !important; }
  .post-index__entry > .wp-block-post-date { grid-column: 1; }
  .post-index__entry > .wp-block-group { grid-column: 1; }
  .post-index__arrow { grid-column: 2; grid-row: 1 / 3; }
}

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

/* --------------------------------------------------------------------------
   Version 0.2 — open, poetic day/night atmosphere
   -------------------------------------------------------------------------- */

html {
  --atmosphere-image: url("../images/atmosphere-day-sea.webp");
  --canvas: #f8f8f4;
  --surface: rgba(251, 250, 246, .96);
  --surface-soft: rgba(235, 246, 249, .95);
  --header-surface: rgba(247, 250, 248, .82);
  --header-ink: #102a37;
  --scene-ink: #0d3142;
  --scene-muted: rgba(13, 49, 66, .72);
  --scene-veil: linear-gradient(90deg, rgba(244, 250, 250, .78) 0%, rgba(242, 248, 247, .38) 47%, rgba(9, 56, 78, .06) 75%), linear-gradient(0deg, rgba(246, 249, 246, .48), transparent 44%);
  --teaching-surface: rgba(218, 239, 246, .96);
  --footer-surface: rgba(208, 235, 243, .96);
  --footer-ink: #102f3d;
  --accent: #167a9d;
  --oxblood: var(--accent);
  --soft-line: rgba(25, 76, 94, .2);
  color-scheme: light;
}

html[data-atmosphere="night"] {
  --atmosphere-image: url("../images/atmosphere-night-stars.webp");
  --canvas: #f4f5fa;
  --surface: rgba(248, 248, 252, .97);
  --surface-soft: rgba(231, 234, 248, .96);
  --header-surface: rgba(8, 14, 41, .84);
  --header-ink: #f7f6f2;
  --scene-ink: #fffdf7;
  --scene-muted: rgba(255, 253, 247, .75);
  --scene-veil: linear-gradient(90deg, rgba(4, 9, 31, .62) 0%, rgba(4, 9, 31, .18) 57%, rgba(4, 9, 31, .04) 78%), linear-gradient(0deg, rgba(4, 8, 28, .34), transparent 50%);
  --teaching-surface: rgba(226, 231, 248, .97);
  --footer-surface: #101738;
  --footer-ink: #f7f5ef;
  --accent: #557bd6;
  --soft-line: rgba(55, 70, 126, .2);
  color-scheme: dark;
}

body {
  background: var(--canvas);
  transition: background-color .6s ease, color .4s ease;
}

.site-header {
  border-color: color-mix(in srgb, var(--header-ink) 15%, transparent);
  background: var(--header-surface);
  color: var(--header-ink);
  transition: background-color .6s ease, color .4s ease, border-color .4s ease;
}

.site-brand,
.primary-navigation .wp-block-navigation-item__content,
.header-icon,
.language-toggle,
.atmosphere-toggle { color: var(--header-ink); }

.site-brand__monogram,
.header-icon,
.language-toggle,
.atmosphere-toggle { border-color: color-mix(in srgb, var(--header-ink) 36%, transparent); }

.site-header__actions { gap: .42rem; }

.atmosphere-toggle {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  gap: .38rem;
  padding: .35rem .72rem;
  border: 1px solid;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: .64rem;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease;
}

.atmosphere-toggle [data-atmosphere-icon] { font-size: .86rem; }

.header-icon:hover,
.language-toggle:hover,
.atmosphere-toggle:hover {
  background: var(--header-ink);
  color: var(--header-surface);
}

/* Hero becomes a full photographic atmosphere instead of a fixed discipline card. */
.home-hero.atmospheric-hero {
  position: relative;
  display: block;
  width: 100%;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  padding: 0;
  color: var(--scene-ink);
  isolation: isolate;
}

.atmospheric-hero__image,
.atmospheric-hero__veil {
  position: absolute;
  inset: 0;
}

.atmospheric-hero__image {
  z-index: -2;
  background-image: var(--atmosphere-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  transition: background-image .3s ease, filter .6s ease;
}

.atmospheric-hero__veil {
  z-index: -1;
  background: var(--scene-veil);
  transition: background .6s ease;
}

.atmospheric-hero__inner {
  display: flex;
  min-height: calc(100svh - var(--header-height));
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(1.5rem, 4vh, 3rem);
  padding-bottom: clamp(1.5rem, 4vh, 3rem);
}

.atmospheric-hero__meta,
.atmospheric-hero__poem {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: var(--scene-muted);
  font-size: .62rem;
  font-weight: 650;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.atmospheric-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(18rem, .72fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  margin-block: auto;
  padding-block: clamp(3rem, 8vh, 7rem);
}

.home-hero.atmospheric-hero h1 {
  margin: 0;
  color: inherit;
  font-family: var(--sans);
  font-size: clamp(5.2rem, 12.4vw, 11.8rem);
  font-weight: 540;
  letter-spacing: -.09em;
  line-height: .72;
  text-shadow: 0 1px 22px color-mix(in srgb, var(--canvas) 32%, transparent);
}

.home-hero.atmospheric-hero h1 em {
  padding-left: .5em;
  font-family: var(--serif);
  font-weight: 400;
}

.atmospheric-hero__intro {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 1px solid color-mix(in srgb, var(--scene-ink) 22%, transparent);
  background: color-mix(in srgb, var(--canvas) 66%, transparent);
  backdrop-filter: blur(18px) saturate(1.12);
}

html[data-atmosphere="night"] .atmospheric-hero__intro {
  background: rgba(8, 14, 42, .43);
}

.atmospheric-hero__intro > p {
  margin: 0 0 2rem;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.45;
}

.atmospheric-hero__intro .text-link { width: 100%; }
.atmospheric-hero__poem { align-items: end; }
.atmospheric-copy { font-family: var(--serif); font-size: .82rem; font-weight: 400; letter-spacing: .08em; text-transform: none; }
.atmospheric-copy--night { display: none; }
html[data-atmosphere="night"] .atmospheric-copy--day { display: none; }
html[data-atmosphere="night"] .atmospheric-copy--night { display: inline; }

.opening-screen[data-slide-mode="day"] blockquote p {
  max-width: none;
  font-family: var(--serif), "Songti SC", "Noto Serif CJK SC", serif;
  font-size: clamp(3rem, 5.5vw, 5.7rem);
  white-space: pre-line;
}

/* Lighter, more open home modules. */
.open-about {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: clamp(3rem, 8vw, 8rem);
  padding-top: clamp(7rem, 13vw, 13rem);
  padding-bottom: clamp(6rem, 11vw, 11rem);
  background: var(--surface);
}

.open-about::before,
.pathways::before,
.resource-home::before,
.math-blog-feature::before {
  position: absolute;
  z-index: -1;
  inset: 0 50%;
  width: 100vw;
  background: inherit;
  content: "";
  transform: translateX(-50%);
}

.open-about,
.pathways,
.resource-home,
.math-blog-feature { position: relative; isolation: isolate; }

.open-about__content h2 {
  margin: 0 0 4rem;
  font-family: var(--sans);
  font-size: clamp(4rem, 8.5vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -.075em;
  line-height: .8;
}

.open-about__content h2 em,
.resource-home h2 em,
.math-blog-feature h2 em { font-family: var(--serif); font-weight: 400; }

.open-about__lead {
  max-width: 23ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.7vw, 3.6rem);
  letter-spacing: -.035em;
  line-height: 1.08;
}

.open-about__body { max-width: 34rem; margin: 2.5rem 0 2rem auto; color: var(--quiet); font-size: .9rem; }
.open-about__content > .text-link { float: right; }

.pathways {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-bottom: clamp(6rem, 11vw, 10rem);
  background: var(--surface);
}

.pathway-card {
  min-height: 265px;
  padding: 1.5rem;
  border: 1px solid var(--soft-line);
  background: color-mix(in srgb, var(--surface-soft) 48%, transparent);
}

.pathway-card + .pathway-card { border-left: 0; }
.pathway-card > span { color: var(--quiet); font-size: .64rem; }
.pathway-card h3 { margin: 4rem 0 1.2rem; font-family: var(--serif); font-size: 2.3rem; font-weight: 400; }
.pathway-card p { max-width: 20rem; margin: 0; color: var(--quiet); font-size: .76rem; }

.teaching-feature {
  min-height: 520px;
  background: var(--teaching-surface);
  color: var(--ink);
  transition: background-color .6s ease;
}

.teaching-feature .section-number,
.teaching-feature__details > p:nth-child(2),
.teaching-feature dt { color: var(--quiet); }
.teaching-feature__details { border-color: var(--soft-line); }
.teaching-feature dl div { border-color: var(--soft-line); }
.teaching-feature h2 em { font-family: var(--serif); font-weight: 400; }
.teaching-feature .circle-link { border-color: var(--ink); color: var(--ink); }
.teaching-feature .circle-link:hover { background: var(--ink); color: var(--paper); }

.resource-home { background: var(--canvas); }
.resource-home .section-header { grid-template-columns: .75fr 2.4fr 1fr; }
.resource-grid.resource-grid--open { grid-template-columns: repeat(3, 1fr); }
.resource-grid--open .resource-card { min-height: 360px; }
.resource-card { border-color: var(--soft-line); background: rgba(226, 242, 246, .9); }
.resource-card:hover { background: rgba(209, 234, 241, .96); }
.resource-card--blue { background: #b9dce8; }
.resource-card--blue:hover { background: #a8d1df; }
.resource-card--light { background: rgba(247, 246, 238, .97); }
.resource-card--light:hover { background: #eaece4; }
.resource-grid--open .resource-card strong { max-width: 12ch; font-size: clamp(1.9rem, 3.1vw, 3.25rem); }

.math-blog-feature {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(3rem, 9vw, 9rem);
  padding-top: clamp(6rem, 12vw, 11rem);
  padding-bottom: clamp(6rem, 12vw, 11rem);
  background: var(--surface);
}

.math-blog-feature h2 { margin: 4rem 0 0; font-family: var(--sans); font-size: clamp(4rem, 7.7vw, 7.5rem); font-weight: 500; letter-spacing: -.075em; line-height: .8; }
.math-blog-feature__card { display: flex; min-height: 420px; flex-direction: column; justify-content: space-between; padding: clamp(1.5rem, 3vw, 2.6rem); border: 1px solid var(--soft-line); background: var(--surface-soft); }
.math-blog-feature__card > span { font-size: .65rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }
.math-blog-feature__card > p { max-width: 19ch; margin: auto 0; font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 3.1rem); letter-spacing: -.035em; line-height: 1.07; }
.math-blog-feature__card .circle-link { border-color: var(--ink); color: var(--ink); }
.math-blog-feature__card .circle-link:hover { background: var(--ink); color: var(--paper); }

/* Resources become an extensible WordPress collection. */
.resource-library-heading { padding-bottom: 2.2rem; }
.resource-library-heading h2 { margin: 1rem 0 0; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 5rem); font-weight: 400; }
.resource-library { padding-bottom: 9rem; }
.resource-library .wp-block-post-template { gap: 1rem; }
.resource-library__card { min-height: 290px; padding: 1.5rem !important; border: 1px solid var(--soft-line); background: var(--surface-soft); }
.resource-library__card h3 { margin: 3rem 0 1rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.resource-library__card h3 a { text-decoration: none; }
.resource-library__course,
.resource-library__type { color: var(--quiet); font-size: .65rem; text-transform: uppercase; }
.resource-library__card .wp-block-post-excerpt { color: var(--quiet); font-size: .78rem; }

/* Blog and footer are mathematics-only and less visually heavy. */
.post-index { border-top: 1px solid var(--soft-line); }
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--footer-surface);
  color: var(--footer-ink);
  transition: background-color .6s ease, color .4s ease;
}

html[data-atmosphere="night"] .site-footer::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(8, 13, 39, .42), rgba(8, 13, 39, .66)), var(--atmosphere-image);
  background-position: center;
  background-size: cover;
  content: "";
  opacity: .55;
}

.site-footer__inner { position: relative; min-height: 370px; padding-top: clamp(3.5rem, 6vw, 5.5rem); }
.site-footer .eyebrow,
.site-footer__meta { color: color-mix(in srgb, var(--footer-ink) 62%, transparent); }
.site-footer__statement { margin-top: 1.6rem; font-size: clamp(2.25rem, 4vw, 4rem); line-height: .92; }
.site-footer__statement em { font-weight: 400; }

/* Course pages inherit the same day/night sky while keeping their own clarity. */
.course-hero {
  min-height: 620px;
  background-color: #4d91aa;
  background-image: var(--atmosphere-image);
  background-position: center;
  background-size: cover;
  color: var(--scene-ink);
}
.course-hero::before {
  z-index: 0;
  background: var(--scene-veil);
}
.course-hero > * { position: relative; z-index: 1; }
.course-hero__mark { opacity: .42; }
.course-hero__bottom p:last-child { color: var(--scene-muted); }

@media (max-width: 900px) {
  .atmospheric-hero__content { grid-template-columns: 1.35fr .9fr; gap: 2rem; }
  .home-hero.atmospheric-hero h1 { font-size: clamp(5rem, 14vw, 8rem); }
  .open-about { grid-template-columns: .55fr 2fr; }
  .resource-grid.resource-grid--open { grid-template-columns: 1fr 1fr; }
  .resource-grid--open .resource-card:last-child { grid-column: 1 / -1; min-height: 270px; }
}

@media (max-width: 620px) {
  .atmosphere-toggle { width: 1.85rem; justify-content: center; padding: 0; }
  .atmosphere-toggle [data-atmosphere-label] { display: none; }
  .home-hero.atmospheric-hero { min-height: calc(100svh - var(--header-height)); }
  .atmospheric-hero__inner { min-height: calc(100svh - var(--header-height)); padding-top: 1.2rem; padding-bottom: 1.2rem; }
  .atmospheric-hero__meta span:last-child { display: none; }
  .atmospheric-hero__content { display: block; margin: auto 0; padding-block: 2rem; }
  .home-hero.atmospheric-hero h1 { font-size: clamp(4.2rem, 22vw, 6rem); }
  .atmospheric-hero__intro { margin-top: 3.5rem; padding: 1.2rem; }
  .atmospheric-hero__intro > p { margin-bottom: 1.4rem; font-size: 1.2rem; }
  .atmospheric-hero__poem > span:last-child { display: none; }
  .opening-screen[data-slide-mode="day"] blockquote p { width: 100%; max-width: none; font-size: 3.35rem; line-height: 1.08; white-space: pre-line; }
  .open-about { display: block; padding-top: 5.5rem; padding-bottom: 5rem; }
  .open-about__content h2 { margin: 2.5rem 0 3rem; font-size: 4.1rem; }
  .open-about__lead { font-size: 2.1rem; }
  .open-about__body { margin: 2rem 0; }
  .open-about__content > .text-link { float: none; }
  .pathways { grid-template-columns: 1fr; padding-bottom: 5.5rem; }
  .pathway-card { min-height: 210px; }
  .pathway-card + .pathway-card { border-top: 0; border-left: 1px solid var(--soft-line); }
  .pathway-card h3 { margin-top: 2.5rem; }
  .teaching-feature { min-height: auto; }
  .resource-home .section-header { display: block; }
  .resource-grid.resource-grid--open { grid-template-columns: 1fr; }
  .resource-grid--open .resource-card:last-child { grid-column: auto; min-height: 280px; }
  .math-blog-feature { display: block; padding-top: 5rem; padding-bottom: 5rem; }
  .math-blog-feature h2 { margin: 2.5rem 0 4rem; font-size: 4.2rem; }
  .math-blog-feature__card { min-height: 330px; }
  .resource-library .wp-block-post-template { grid-template-columns: 1fr; }
  .site-footer__inner { min-height: 470px; }
  .site-footer__statement { font-size: 2.65rem; }
  .course-hero { min-height: 620px; }
}
