:root {
  --chalk: #f1f2ec;
  --paper: #fbfcf8;
  --ink: #20302d;
  --ink-soft: #52625e;
  --ink-faint: #788681;
  --on-dark: #fff;
  --on-dark-soft: rgba(255, 255, 255, .72);
  --river: #2e5d63;
  --river-deep: #1f474d;
  --brick: #b64c3f;
  --brick-dark: #923b31;
  --line: #cbd2ca;
  --white: #fff;
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --type-micro: clamp(.625rem, .6rem + .1vw, .6875rem);
  --type-label: .75rem;
  --type-small: clamp(.875rem, .84rem + .14vw, .9375rem);
  --type-body: 1rem;
  --type-lede: clamp(1.125rem, 1.03rem + .4vw, 1.3125rem);
  --type-title: clamp(1.5rem, 1.2rem + 1.35vw, 2.25rem);
  --type-display: clamp(2.4375rem, 1.65rem + 3.55vw, 5.25rem);
  --type-monument: clamp(7.5rem, 13vw, 11.875rem);
  --shell: min(1280px, calc(100vw - 96px));
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: var(--type-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  color: inherit;
  font: inherit;
}

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

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

::selection {
  color: var(--on-dark);
  background: var(--river);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 12px 16px;
  color: var(--on-dark);
  background: var(--ink);
  transform: translateY(-150%);
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  background: color-mix(in srgb, var(--paper) 97%, transparent);
  transition: background-color 420ms ease, border-color 420ms ease, height 420ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 72px;
  border-color: color-mix(in srgb, var(--ink) 16%, transparent);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
}

.brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 68px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: var(--type-lede);
  font-weight: 500;
  letter-spacing: -.01em;
}

.brand-copy span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: var(--type-micro);
  letter-spacing: .05em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 34px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: .04em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  background: var(--brick);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  font-size: var(--type-label);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: min(920px, 100svh);
  padding: calc(var(--header-height) + 64px) 48px 48px;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(32, 48, 45, .11) 50%, transparent calc(50% + .5px)),
    var(--chalk);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
  background: var(--river);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
  right: 17%;
  bottom: 0;
  width: 1px;
  height: 68%;
  background: rgba(255, 255, 255, .34);
  transform: rotate(9deg);
  transform-origin: bottom;
}

.hero-slides {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(900px, 70vw);
  min-height: 470px;
  margin-top: 40px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.22, 1, .36, 1);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.eyebrow,
.section-index {
  margin: 0 0 28px;
  color: var(--ink-soft);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero-line {
  max-width: 820px;
  margin: 0 0 48px;
  font-family: var(--serif);
  font-size: var(--type-display);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .99;
}

.hero-number {
  position: absolute;
  top: -60px;
  left: -10px;
  color: var(--ink-faint);
  font-family: var(--serif);
  font-size: var(--type-monument);
  line-height: 1;
  pointer-events: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 13px 20px;
  border: 1px solid currentColor;
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color 320ms ease, background-color 320ms ease, border-color 320ms ease;
}

.button span,
.text-link span,
.section-link span,
.editorial-card a span,
.event-copy a span {
  font-size: var(--type-small);
  transition: transform 320ms ease;
}

.button:hover span,
.text-link:hover span,
.section-link:hover span,
.editorial-card a:hover span,
.event-copy a:hover span {
  transform: translate(3px, -3px);
}

.button-primary {
  color: var(--on-dark);
  border-color: var(--ink);
  background: var(--ink);
}

.button-primary:hover {
  border-color: var(--brick);
  background: var(--brick);
}

.hero-controls {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 48px;
  left: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.slide-tabs {
  display: flex;
  gap: 8px;
}

.slide-tab,
.pause-button {
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: 0;
  color: var(--ink-soft);
  background: transparent;
  cursor: pointer;
}

.slide-tab {
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: var(--type-micro);
  text-align: left;
}

.slide-tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--brick);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
}

.slide-tab.is-active {
  color: var(--ink);
}

.slide-tab.is-active::after {
  animation: slide-progress 7s linear forwards;
}

.hero.is-paused .slide-tab.is-active::after {
  animation-play-state: paused;
}

.pause-button {
  color: var(--on-dark);
  font-size: var(--type-micro);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-place {
  position: absolute;
  z-index: 2;
  top: 35%;
  right: 4.8%;
  display: grid;
  color: var(--on-dark);
  pointer-events: none;
}

.place-line {
  width: 78px;
  height: 1px;
  margin-bottom: 22px;
  background: rgba(255, 255, 255, .6);
}

.place-word {
  font-family: var(--serif);
  font-size: var(--type-display);
  letter-spacing: -.04em;
  line-height: 1;
  writing-mode: vertical-rl;
}

.place-mark {
  margin-top: 28px;
  font-size: var(--type-micro);
  letter-spacing: .13em;
  line-height: 1.7;
}

@keyframes slide-progress {
  to { transform: scaleX(1); }
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(64px, 8vw, 136px);
  align-items: center;
  padding-block: 152px;
}

.about-image {
  position: relative;
}

.about-image::before {
  position: absolute;
  z-index: -1;
  top: -24px;
  right: 22%;
  width: 100vw;
  height: calc(100% + 48px);
  background: var(--river);
  content: "";
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 50% 30%;
  filter: saturate(.82) contrast(1.03);
}

.portrait-caption {
  display: block;
  margin-top: 16px;
  color: var(--on-dark-soft);
  font-size: var(--type-micro);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-copy h1,
.section-heading h2,
.community h2,
.contact h2,
.newsletter h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.about-copy h1 {
  max-width: 720px;
  font-size: var(--type-display);
}

.about-copy .lede {
  margin: 40px 0 20px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: var(--type-lede);
  line-height: 1.45;
}

.about-copy > p:not(.eyebrow):not(.lede) {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--type-small);
  line-height: 1.85;
}

.text-link,
.section-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--ink);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-copy .text-link {
  margin-top: 32px;
}

.catalog-section {
  padding-block: 128px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.catalog-section-alt {
  background: var(--chalk);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}

.section-heading h2 {
  max-width: 840px;
  font-size: var(--type-display);
}

.section-heading .section-index {
  margin-bottom: 20px;
}

.section-intro {
  max-width: 560px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: var(--type-lede);
  line-height: 1.5;
}

.catalog-tools {
  display: grid;
  grid-template-columns: 220px minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: -16px 0 64px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-tools > label {
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.search-control {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  min-height: 52px;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--white);
}

.search-control:focus-within {
  border-color: var(--river);
  box-shadow: 0 0 0 1px var(--river);
}

.search-control svg {
  width: 20px;
  fill: none;
  stroke: var(--ink-soft);
  stroke-width: 1.5;
}

.search-control input {
  min-width: 0;
  height: 50px;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-control input::placeholder {
  color: var(--ink-faint);
}

.search-control button {
  min-height: 44px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-status {
  min-width: 142px;
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--type-label);
  text-align: right;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: -32px 0 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.search-results[hidden] {
  display: none;
}

.search-result-card {
  display: grid;
  min-height: 112px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-content: center;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: color 320ms ease, background-color 320ms ease;
}

.search-result-card:hover {
  color: var(--on-dark);
  background: var(--river);
}

.search-result-card small {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.search-result-card:hover small {
  color: var(--on-dark-soft);
}

.search-result-card strong {
  font-family: var(--serif);
  font-size: var(--type-lede);
  font-weight: 400;
  line-height: 1.25;
}

.search-result-card > span {
  font-size: var(--type-body);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: grid;
  min-height: 168px;
  grid-template-columns: 34px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 12px;
  padding: 28px 24px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: color 380ms ease, background-color 380ms ease;
}

.service-card::after {
  position: absolute;
  right: 18px;
  bottom: 14px;
  content: "↗";
  font-size: var(--type-label);
  opacity: 0;
  transform: translate(-4px, 4px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.service-card:hover {
  color: var(--on-dark);
  background: var(--river);
}

.service-card:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.service-card[hidden],
.course-card[hidden] {
  display: none;
}

.service-number,
.course-number {
  align-self: start;
  color: var(--ink-soft);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .1em;
}

.service-card:hover .service-number {
  color: var(--on-dark-soft);
}

.service-title {
  font-family: var(--serif);
  font-size: var(--type-lede);
  line-height: 1.25;
}

.service-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: saturate(.7);
  mix-blend-mode: multiply;
  transition: filter 380ms ease, transform 380ms ease;
}

.service-card:hover img {
  filter: saturate(.2) brightness(1.7);
  mix-blend-mode: screen;
  transform: scale(1.06);
}

.service-card.no-image {
  grid-template-columns: 34px minmax(0, 1fr) 72px;
}

.service-mark {
  display: block;
  width: 64px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-mark::after {
  display: block;
  width: 1px;
  height: 46px;
  margin: 8px auto;
  background: var(--line);
  content: "";
  transform: rotate(45deg);
}

.section-link {
  margin-top: 48px;
}

.pillars {
  padding-block: 128px;
  color: var(--on-dark);
  background: var(--ink);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.pillar-card {
  position: relative;
  min-height: 520px;
  padding: 32px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.pillar-card::after {
  position: absolute;
  inset: 0;
  background: var(--brick);
  content: "";
  opacity: 0;
  transform: translateY(100%);
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1), opacity 520ms ease;
}

.pillar-card:hover::after {
  opacity: .92;
  transform: translateY(0);
}

.pillar-card img {
  position: absolute;
  top: 12%;
  left: 12%;
  width: 76%;
  height: 58%;
  object-fit: contain;
  opacity: .52;
  filter: grayscale(1) contrast(.85) brightness(1.55);
}

.pillar-card > div {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 32px;
  left: 32px;
}

.pillar-number {
  margin: 0 0 12px;
  color: var(--on-dark-soft);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .12em;
}

.pillar-card h2 {
  min-height: 76px;
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: var(--type-title);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.15;
}

.pillar-card a,
.editorial-card a,
.event-copy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.courses {
  color: var(--on-dark);
  border-color: rgba(255, 255, 255, .18);
  background: var(--river-deep);
}

.courses .section-index {
  color: var(--on-dark-soft);
}

.courses .section-intro {
  color: var(--on-dark-soft);
}

.course-list {
  border-top: 1px solid rgba(255, 255, 255, .28);
}

.course-card {
  display: grid;
  min-height: 112px;
  grid-template-columns: 48px 72px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 24px;
  padding: 20px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .28);
  transition: color 380ms ease, background-color 380ms ease, padding 380ms ease;
}

.course-card:hover {
  padding-inline: 28px;
  color: var(--ink);
  background: var(--chalk);
}

.course-number {
  color: var(--on-dark-soft);
}

.course-card img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: grayscale(.3) brightness(1.3);
  mix-blend-mode: screen;
}

.course-card:hover img {
  filter: saturate(.7);
  mix-blend-mode: multiply;
}

.course-title {
  font-family: var(--serif);
  font-size: var(--type-lede);
  letter-spacing: -.015em;
  line-height: 1.3;
}

.course-arrow {
  justify-self: end;
  font-size: var(--type-lede);
}

.courses .section-link {
  border-color: rgba(255, 255, 255, .75);
}

.community {
  position: relative;
  padding-block: 128px;
  overflow: hidden;
  color: var(--on-dark);
  background: var(--brick-dark);
}

.community::before {
  position: absolute;
  top: -160px;
  right: 10%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  content: "";
}

.community-line {
  position: absolute;
  right: -10%;
  bottom: 25%;
  width: 70%;
  height: 1px;
  background: rgba(255, 255, 255, .25);
  transform: rotate(-8deg);
}

.community-inner {
  position: relative;
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 64px;
  align-items: end;
}

.community h2 {
  max-width: 920px;
  font-size: var(--type-display);
}

.button-light {
  justify-self: end;
  color: var(--on-dark);
}

.button-light:hover {
  color: var(--ink-soft);
  background: var(--white);
}

.explore,
.events {
  padding-block: 128px;
}

.simple-heading {
  grid-template-columns: 1fr;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.editorial-card {
  display: grid;
  min-height: 390px;
  grid-column: span 5;
  grid-template-rows: 120px 1fr;
  gap: 40px;
  padding: 40px;
  border: 1px solid var(--line);
  background: var(--chalk);
  transition: border-color 420ms ease, background-color 420ms ease, transform 420ms ease;
}

.editorial-card-wide {
  grid-column: span 7;
}

.editorial-card:hover {
  border-color: var(--river);
  background: var(--white);
  transform: translateY(-4px);
}

.editorial-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: saturate(.65);
  mix-blend-mode: multiply;
}

.editorial-card h3,
.event-card h3,
.story-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.editorial-card h3 {
  font-size: var(--type-title);
}

.editorial-card p {
  max-width: 560px;
  margin: 16px 0 24px;
  color: var(--ink-soft);
}

.visuals {
  padding-block: 128px;
  color: var(--on-dark);
  background: var(--ink);
}

.visuals .section-index {
  color: var(--on-dark-soft);
}

.visual-stage {
  display: grid;
  min-height: 500px;
  grid-template-columns: 8fr 4fr;
  border: 1px solid rgba(255, 255, 255, .26);
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255, 255, 255, .09) 47% 47.2%, transparent 47.2%),
    linear-gradient(35deg, rgba(46, 93, 99, .55), rgba(182, 76, 63, .18));
}

.visual-play {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 48px;
  border-right: 1px solid rgba(255, 255, 255, .26);
}

.visual-play > span:last-child {
  max-width: 100%;
  color: var(--on-dark-soft);
  font-size: var(--type-micro);
  overflow-wrap: anywhere;
}

.play-disc {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  transition: color 350ms ease, background-color 350ms ease, transform 350ms ease;
}

.play-disc svg {
  width: 32px;
  fill: currentColor;
}

.visual-play:hover .play-disc {
  color: var(--ink);
  background: var(--white);
  transform: scale(1.05);
}

.visual-links {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
}

.visual-links a {
  display: flex;
  min-height: 120px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .26);
  font-family: var(--serif);
  font-size: var(--type-title);
  line-height: 1.2;
  transition: color 350ms ease, background-color 350ms ease;
}

.visual-links a:last-child {
  border-bottom: 0;
}

.visual-links a:hover {
  color: var(--ink);
  background: var(--chalk);
}

.event-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 24px;
  align-items: stretch;
}

.event-card {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
  border: 1px solid var(--line);
  background: var(--chalk);
}

.event-card-small .missing-media {
  min-height: 280px;
}

.missing-media {
  position: relative;
  display: grid;
  min-height: 380px;
  place-items: center;
  overflow: hidden;
  color: var(--on-dark-soft);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .08) 0 28%, transparent 28% 70%, rgba(255, 255, 255, .08) 70%),
    var(--river);
}

.missing-media::before,
.missing-media::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  content: "";
}

.missing-media::before {
  width: 240px;
  height: 240px;
}

.missing-media::after {
  width: 340px;
  height: 340px;
}

.missing-media > span {
  font-family: var(--serif);
  font-size: var(--type-display);
  opacity: .7;
}

.event-card-large .missing-media {
  background-color: var(--brick-dark);
}

.event-copy {
  padding: 32px;
}

.event-copy h3 {
  margin-bottom: 28px;
  font-size: var(--type-title);
}

.event-card-small .event-copy h3 {
  color: var(--ink-soft);
  font-size: var(--type-title);
}

.stories {
  padding-block: 128px;
  background: var(--chalk);
}

.story-list {
  border-top: 1px solid var(--line);
}

.story-card {
  display: grid;
  min-height: 250px;
  grid-template-columns: 80px 240px minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.story-date {
  display: grid;
  align-self: start;
  padding-top: 12px;
  line-height: 1;
}

.story-date strong {
  font-family: var(--serif);
  font-size: var(--type-display);
  font-weight: 400;
}

.story-date span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.story-media {
  min-height: 180px;
}

.story-media > span {
  font-size: var(--type-display);
}

.story-media::before {
  width: 120px;
  height: 120px;
}

.story-media::after {
  width: 190px;
  height: 190px;
}

.story-card:nth-child(2) .story-media {
  background-color: var(--brick-dark);
}

.story-card:nth-child(3) .story-media {
  background-color: var(--river-deep);
}

.story-categories,
.comments {
  color: var(--ink-soft);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 760px;
  margin: 16px 0 26px;
  font-size: var(--type-title);
}

.comments {
  color: var(--ink-soft);
}

.contact {
  color: var(--on-dark);
  background: var(--river-deep);
}

.contact-top,
.newsletter {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
  align-items: end;
  padding-block: 112px;
}

.contact-top {
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.contact h2,
.newsletter h2 {
  font-size: var(--type-display);
}

.contact-links {
  display: grid;
}

.contact-links a {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  font-family: var(--serif);
  font-size: var(--type-lede);
}

.newsletter-form > label {
  display: block;
  margin-bottom: 12px;
  color: var(--on-dark-soft);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.newsletter-form > div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--white);
}

.newsletter-form input {
  min-width: 0;
  height: 64px;
  padding: 0 12px 0 0;
  border: 0;
  outline: 0;
  color: var(--on-dark);
  background: transparent;
  font-family: var(--serif);
  font-size: var(--type-title);
}

.newsletter-form input::placeholder {
  color: var(--on-dark-soft);
}

.newsletter-form button {
  min-width: 112px;
  min-height: 64px;
  padding: 0;
  border: 0;
  color: var(--on-dark);
  background: transparent;
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  cursor: pointer;
}

.form-status {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--on-dark-soft);
  font-size: var(--type-label);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 120px;
  padding: 32px 48px;
  color: var(--on-dark);
  background: var(--ink);
}

.footer-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-family: var(--serif);
  font-size: var(--type-lede);
}

.site-footer p {
  margin: 0;
  color: var(--on-dark-soft);
  font-size: var(--type-micro);
  text-align: center;
}

.back-top {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.reveal.will-reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1080px);
  }

  .site-header {
    padding-inline: 32px;
  }

  .brand-copy span {
    display: none;
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    padding-inline: 32px;
  }

  .hero-controls {
    right: 32px;
    left: 32px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-card {
    min-height: 430px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
    --shell: calc(100% - 48px);
  }

  .site-header {
    height: 72px;
    padding-inline: 24px;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 71px 0 auto;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 320ms ease, transform 320ms ease;
  }

  .site-header.is-menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 56px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: var(--type-lede);
    font-weight: 400;
    letter-spacing: -.01em;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding: 120px 24px 32px;
    background: var(--chalk);
  }

  .hero::before {
    width: 24%;
  }

  .hero-slides {
    width: 82%;
    min-height: 460px;
    margin-top: 0;
  }

  .hero-line {
    font-size: var(--type-display);
  }

  .hero-place {
    right: 3%;
  }

  .place-mark {
    display: none;
  }

  .hero-controls {
    right: 24px;
    bottom: 32px;
    left: 24px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 80px;
    padding-block: 112px;
  }

  .about-image {
    width: 70%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  .catalog-tools {
    grid-template-columns: 1fr auto;
  }

  .search-results {
    margin-top: -24px;
  }

  .catalog-tools > label {
    grid-column: 1 / -1;
  }

  .section-intro {
    max-width: 680px;
  }

  .catalog-section,
  .pillars,
  .explore,
  .visuals,
  .events,
  .stories,
  .community {
    padding-block: 96px;
  }

  .community-inner,
  .contact-top,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .button-light {
    justify-self: start;
  }

  .editorial-card,
  .editorial-card-wide {
    grid-column: span 6;
  }

  .visual-stage {
    grid-template-columns: 1fr;
  }

  .visual-play {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .26);
  }

  .visual-links {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }

  .visual-links a {
    border-right: 1px solid rgba(255, 255, 255, .26);
    border-bottom: 0;
  }

  .event-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-card {
    grid-template-columns: 64px 180px minmax(0, 1fr);
    gap: 24px;
  }

  .site-footer {
    padding-inline: 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    font-size: var(--type-small);
  }

  .brand img {
    width: 58px;
  }

  .brand-copy strong {
    font-size: var(--type-body);
  }

  .hero {
    min-height: 720px;
    height: 100svh;
    padding-inline: 16px;
  }

  .hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 18%;
    clip-path: polygon(0 42%, 100% 0, 100% 100%, 0 100%);
  }

  .hero::after {
    right: 38%;
    height: 22%;
  }

  .hero-slides {
    width: 100%;
    min-height: 500px;
  }

  .hero-line {
    max-width: 94%;
    margin-bottom: 36px;
    font-size: var(--type-display);
    line-height: 1.02;
  }

  .hero-number {
    top: -10px;
    font-size: var(--type-monument);
  }

  .hero-place {
    top: auto;
    right: 22px;
    bottom: 26px;
  }

  .place-line,
  .place-mark {
    display: none;
  }

  .place-word {
    font-size: var(--type-title);
    writing-mode: horizontal-tb;
  }

  .hero-controls {
    right: 16px;
    bottom: 24px;
    left: 16px;
  }

  .pause-button {
    margin-right: 108px;
    color: var(--ink-soft);
  }

  .about,
  .catalog-section,
  .pillars,
  .explore,
  .visuals,
  .events,
  .stories,
  .community {
    padding-block: 80px;
  }

  .about {
    gap: 64px;
  }

  .about-image {
    width: calc(100% - 28px);
  }

  .about-image::before {
    top: -16px;
    right: 18%;
    height: calc(100% + 32px);
  }

  .about-copy h1,
  .section-heading h2,
  .community h2,
  .contact h2,
  .newsletter h2 {
    font-size: var(--type-display);
  }

  .about-copy > p:not(.eyebrow):not(.lede) {
    font-size: var(--type-body);
    line-height: 1.75;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 44px;
  }

  .section-intro {
    font-size: var(--type-lede);
  }

  .catalog-tools {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 40px;
  }

  .search-results {
    grid-template-columns: 1fr;
    margin: -20px 0 40px;
  }

  .catalog-tools > label {
    grid-column: auto;
  }

  .search-status {
    text-align: left;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 126px;
    grid-template-columns: 28px minmax(0, 1fr) 60px;
    padding: 20px 16px;
  }

  .service-card img {
    width: 60px;
    height: 60px;
  }

  .service-title {
    font-size: var(--type-lede);
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 390px;
  }

  .course-card {
    grid-template-columns: 30px 52px minmax(0, 1fr) 20px;
    gap: 12px;
    padding: 18px 8px;
  }

  .course-card:hover {
    padding-inline: 12px;
  }

  .course-card img {
    width: 52px;
    height: 52px;
  }

  .course-title {
    font-size: var(--type-small);
    overflow-wrap: anywhere;
  }

  .community-inner {
    gap: 40px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .editorial-card,
  .editorial-card-wide {
    min-height: auto;
    grid-column: auto;
    gap: 28px;
    padding: 28px;
  }

  .visual-play {
    min-height: 300px;
    padding: 28px 16px;
  }

  .visual-links {
    grid-template-columns: 1fr;
  }

  .visual-links a {
    min-height: 128px;
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .26);
    font-size: var(--type-lede);
  }

  .event-grid {
    grid-template-columns: 1fr;
  }

  .event-card,
  .event-card-small .missing-media {
    min-height: 0;
  }

  .event-card .missing-media {
    min-height: 250px;
  }

  .story-card {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
  }

  .story-media {
    min-height: 200px;
  }

  .story-copy {
    grid-column: 2;
  }

  .story-date strong {
    font-size: var(--type-title);
  }

  .story-card h3 {
    font-size: var(--type-title);
  }

  .contact-top,
  .newsletter {
    gap: 48px;
    padding-block: 80px;
  }

  .contact-links a {
    font-size: var(--type-small);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .site-footer p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-controls,
  .catalog-tools,
  .back-top {
    display: none;
  }

  .hero {
    min-height: 600px;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Pass 2 — immersive motion and colour worlds */
.ambient-field {
  position: fixed;
  z-index: -2;
  inset: 0;
  background: var(--ambient, var(--chalk));
  transition: background-color 900ms cubic-bezier(.22, 1, .36, 1);
}

.page-grain {
  position: fixed;
  z-index: 900;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

main {
  position: relative;
  z-index: 1;
}

.site-header {
  backdrop-filter: none;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  box-shadow: 0 16px 48px rgba(32, 48, 45, .06);
}

.pillar-indicator {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: 24px;
  display: grid;
  width: 196px;
  padding: 14px;
  color: var(--on-dark);
  background: var(--ink);
  box-shadow: 0 20px 56px rgba(15, 30, 27, .18);
  opacity: 0;
  pointer-events: none;
  transform: translate(24px, -50%);
  transition: opacity 400ms ease, transform 500ms cubic-bezier(.22, 1, .36, 1);
}

.pillar-indicator.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.pillar-indicator-label {
  margin: 2px 10px 10px;
  color: var(--on-dark-soft);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pillar-indicator a {
  position: relative;
  display: grid;
  min-height: 44px;
  grid-template-columns: 28px 1fr;
  align-items: center;
  padding: 7px 10px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.pillar-indicator a::before {
  position: absolute;
  inset: 0;
  background: var(--brick);
  content: "";
  transform: translateX(-102%);
  transition: transform 480ms cubic-bezier(.22, 1, .36, 1);
}

.pillar-indicator a span,
.pillar-indicator a strong {
  position: relative;
  z-index: 1;
}

.pillar-indicator a span {
  font-size: var(--type-micro);
  letter-spacing: .08em;
}

.pillar-indicator a strong {
  font-family: var(--serif);
  font-size: var(--type-label);
  font-weight: 400;
  line-height: 1.1;
}

.pillar-indicator a[aria-current="true"]::before,
.pillar-indicator a:hover::before {
  transform: translateX(0);
}

.hero {
  isolation: isolate;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(32, 48, 45, .11) 50%, transparent calc(50% + .5px)),
    #dce7e2;
}

.hero::before {
  z-index: -1;
  width: 31%;
  background: var(--river);
  transition: background-color 900ms cubic-bezier(.22, 1, .36, 1), clip-path 900ms cubic-bezier(.22, 1, .36, 1);
}

.hero[data-active-slide="1"]::before {
  background: #9d574b;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 18% 100%);
}

.hero[data-active-slide="2"]::before {
  background: #536b5d;
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-art {
  position: absolute;
  z-index: 0;
  top: 16%;
  right: 4%;
  width: min(34vw, 500px);
  aspect-ratio: 1;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, var(--hero-parallax, 0), 0);
}

.hero-art::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .24);
  content: "";
}

.hero-art img {
  position: absolute;
  inset: -24%;
  width: 148%;
  height: 148%;
  object-fit: cover;
  mix-blend-mode: multiply;
  clip-path: inset(0 100% 0 0);
  transform: scale(1.08) translateX(-4%);
  transition: clip-path 900ms cubic-bezier(.77, 0, .18, 1), transform 1100ms cubic-bezier(.22, 1, .36, 1);
}

.hero-art img.is-active {
  z-index: 2;
  clip-path: inset(0 0 0 0);
  transform: scale(1) translateX(0);
}

.hero-art img[data-hero-art="0"] { object-position: 58% 48%; }
.hero-art img[data-hero-art="1"] { object-position: 68% 64%; }
.hero-art img[data-hero-art="2"] { object-position: 64% 48%; }

.hero-slides {
  width: min(940px, 68vw);
}

.hero-slide {
  opacity: 1;
  clip-path: inset(0 0 100% 0);
  transform: none;
  transition: clip-path 680ms cubic-bezier(.77, 0, .18, 1);
}

.hero-slide.is-active {
  clip-path: inset(0 0 0 0);
}

.hero-slide .eyebrow,
.hero-slide .button,
.hero-slide .hero-number {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(.22, 1, .36, 1);
}

.hero-slide.is-active .eyebrow,
.hero-slide.is-active .button,
.hero-slide.is-active .hero-number {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide.is-active .button { transition-delay: 460ms; }
.hero-slide.is-active .hero-number { transition-delay: 120ms; }

.hero-line {
  display: grid;
  max-width: 900px;
  gap: .03em;
  font-size: var(--type-display);
}

.hero-line > span {
  display: block;
  overflow: hidden;
}

.hero-line i {
  display: block;
  font-style: normal;
  transform: translateY(108%);
  transition: transform 760ms cubic-bezier(.22, 1, .36, 1);
}

.hero-slide.is-active .hero-line span:nth-child(1) i { transition-delay: 100ms; transform: translateY(0); }
.hero-slide.is-active .hero-line span:nth-child(2) i { transition-delay: 190ms; transform: translateY(0); }
.hero-slide.is-active .hero-line span:nth-child(3) i { transition-delay: 280ms; transform: translateY(0); }
.hero-slide.is-active .hero-line span:nth-child(4) i { transition-delay: 370ms; transform: translateY(0); }

.hero-place {
  transition: transform 900ms cubic-bezier(.22, 1, .36, 1);
}

.hero[data-active-slide="1"] .hero-place { transform: translateY(7vh); }
.hero[data-active-slide="2"] .hero-place { transform: translateY(-5vh); }

.place-word {
  transition: letter-spacing 900ms cubic-bezier(.22, 1, .36, 1);
}

.hero[data-active-slide="1"] .place-word { letter-spacing: .02em; }
.hero[data-active-slide="2"] .place-word { letter-spacing: -.08em; }

.about-image {
  overflow: visible;
}

.about-image img {
  clip-path: inset(0 var(--image-clip, 100%) 0 0);
  transform: translate3d(0, var(--portrait-parallax, 0), 0) scale(1.035);
  transform-origin: center;
}

.masked-heading {
  --heading-progress: 0;
}

.heading-line {
  display: block;
  overflow: hidden;
}

.heading-line-inner {
  display: block;
  transform: translateY(var(--line-shift, 112%));
  will-change: transform;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.scrub-image {
  clip-path: inset(0 var(--image-clip, 100%) 0 0);
  transform: scale(var(--image-scale, 1.06));
  transform-origin: center;
  will-change: clip-path, transform;
}

.service-card img.scrub-image,
.course-card img.scrub-image {
  transform: scale(var(--image-small-scale, .94));
}

.catalog-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.catalog-section::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--world-ground, var(--paper));
  content: "";
  clip-path: polygon(0 0, 100% 5vw, 100% 100%, 0 calc(100% - 5vw));
}

#meditation { --world-ground: #dce7e2; }
#mineral { --world-ground: #e2d5cc; }
#guidance { --world-ground: #d7dfd4; }
#reiki { --world-ground: #cedbdd; }

#courses {
  --world-ground: #173c41;
}

#courses::before {
  background:
    linear-gradient(90deg, rgba(23, 60, 65, .94), rgba(23, 60, 65, .86) 52%, rgba(23, 60, 65, .8)),
    url("/img/duotone/courses-background.jpg") center / cover no-repeat;
}

.catalog-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 0 64px;
  border-top: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
}

.catalog-stats p {
  display: grid;
  min-height: 148px;
  align-content: center;
  margin: 0;
  padding: 20px 24px;
  border-right: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
}

.catalog-stats strong {
  font-family: var(--serif);
  font-size: var(--type-display);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .9;
}

.catalog-stats span {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-card,
.course-card,
.editorial-card {
  position: relative;
  isolation: isolate;
}

.service-card::before,
.course-card::before,
.editorial-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--river);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
}

.service-card:hover,
.course-card:hover,
.editorial-card:hover {
  background: transparent;
}

.service-card:hover::before,
.course-card:hover::before,
.editorial-card:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.course-card::before {
  background: var(--chalk);
}

.service-card:hover img.scrub-image,
.course-card:hover img.scrub-image {
  transform: scale(1.08);
}

.editorial-card:hover {
  color: var(--on-dark);
}

.editorial-card:hover p {
  color: var(--on-dark-soft);
}

.pillars {
  position: relative;
  height: auto;
  padding: 0;
  background: var(--ink);
}

.pillar-stage {
  position: relative;
  top: 0;
  display: grid;
  height: 100svh;
  grid-template-rows: auto 1fr;
  align-content: center;
  padding-block: max(96px, 11vh) max(40px, 6vh);
  overflow: hidden;
}

.pillar-stage-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 24px;
  color: var(--on-dark-soft);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pillar-stage-heading strong {
  color: var(--on-dark-soft);
  font-weight: 700;
}

.pillar-grid {
  height: min(68vh, 620px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-card {
  min-height: 0;
  clip-path: inset(var(--card-clip, 100%) 0 0 0);
  transform: translateY(var(--card-y, 48px));
  will-change: clip-path, transform;
}

.pillar-card img {
  top: -8%;
  left: -22%;
  width: 144%;
  height: 82%;
  object-fit: cover;
  opacity: .62;
  filter: none;
  mix-blend-mode: luminosity;
  transform: translateY(var(--pillar-image-y, 0)) scale(1.1);
}

.pillar-card:nth-child(2) { background: #2b5459; }
.pillar-card:nth-child(3) { background: #394f43; }
.pillar-card:nth-child(4) { background: #703b35; }

.pillar-card h2 {
  min-height: 82px;
  font-size: var(--type-title);
}

.courses {
  position: relative;
  background: #173c41;
}

.text-link,
.section-link,
.pillar-card a,
.editorial-card a,
.event-copy a {
  position: relative;
  border-bottom: 0;
}

.text-link::after,
.section-link::after,
.pillar-card a::after,
.editorial-card a::after,
.event-copy a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.text-link:hover::after,
.section-link:hover::after,
.pillar-card a:hover::after,
.editorial-card a:hover::after,
.event-copy a:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

.search-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 180px;
  place-items: center;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .58);
  font-family: var(--serif);
  font-size: var(--type-title);
  text-align: center;
}

@media (max-width: 1180px) {
  .pillar-indicator {
    right: 12px;
    width: 52px;
  }

  .pillar-indicator-label,
  .pillar-indicator a strong {
    display: none;
  }

  .pillar-indicator a {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-inline: 0;
  }

  .pillar-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .page-grain { opacity: .025; }

  .pillar-indicator { display: none; }

  .hero-art {
    top: 22%;
    right: -16%;
    width: min(56vw, 430px);
    opacity: .25;
  }

  .hero-slides {
    z-index: 3;
  }

  .hero-line {
    font-size: var(--type-display);
  }

  .catalog-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillars {
    height: auto;
    padding-block: 96px;
  }

  .pillar-stage {
    position: relative;
    height: auto;
    padding-block: 0;
    overflow: visible;
  }

  .pillar-grid {
    height: auto;
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-card {
    min-height: 430px;
    clip-path: none;
    transform: none;
  }
}

@media (max-width: 640px) {
  .hero-art {
    top: auto;
    right: -18%;
    bottom: 6%;
    width: 80vw;
    opacity: .26;
  }

  .hero-line {
    gap: .05em;
    font-size: var(--type-display);
  }

  .hero-line > span {
    display: inline;
    overflow: visible;
  }

  .hero-line i {
    display: inline;
  }

  .catalog-stats {
    margin-bottom: 40px;
  }

  .catalog-stats p {
    min-height: 116px;
    padding: 16px;
  }

  .catalog-stats strong {
    font-size: var(--type-display);
  }

  .pillars {
    padding-block: 80px;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 420px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-field { transition: none; }
  .page-grain { display: none; }
  .hero-art,
  .about-image img,
  .scrub-image,
  .heading-line-inner,
  .pillar-card {
    clip-path: none !important;
    transform: none !important;
  }
  .hero-art img { display: none; }
  .hero-art img.is-active { display: block; clip-path: none; }
  .hero-slide { clip-path: inset(0 0 100% 0); }
  .hero-slide.is-active { clip-path: none; }
  .hero-slide.is-active .hero-line i { transform: none; }
  .pillar-indicator { display: none; }
  .pillars { height: auto; padding-block: 128px; }
  .pillar-stage { position: relative; height: auto; padding: 0; }
}

@media print {
  .ambient-field,
  .page-grain,
  .pillar-indicator,
  .hero-art,
  .catalog-stats,
  .pillar-stage-heading {
    display: none;
  }
  .pillars { height: auto; padding-block: 80px; }
  .pillar-stage { position: relative; height: auto; padding: 0; }
  .pillar-card { clip-path: none; transform: none; }
}

/* ── Fixes 2026-08-10 · verified in-browser ───────────────────────────
   1. Images carry width/height HTML attributes. Without `height:auto` the
      attribute wins over `aspect-ratio`, so the portrait rendered at its
      full 2304px natural height and pushed the About section to 2640px
      (3.2 viewports). This is the single biggest height bug on the page.
   2. Section padding trimmed — 152px top and bottom read as drift, not air.
   ─────────────────────────────────────────────────────────────────── */
img { height: auto; }

.about-image img {
  height: auto;
  max-height: 76vh;
}

.about {
  padding-top: clamp(72px, 9vh, 104px);
  padding-bottom: clamp(72px, 9vh, 104px);
  align-items: center;
}

.section-shell,
.catalog-section,
.stories,
.explore,
.visuals,
.events,
.contact,
.community {
  padding-top: clamp(64px, 8vh, 100px);
  padding-bottom: clamp(64px, 8vh, 100px);
}

/* the hero's incoming slide should not leave the stage blank while it wipes */
.hero-slide { transition-duration: 460ms; }
.hero-slide.is-active .hero-line span i { transition-duration: 520ms; }
.hero-slide.is-active .button { transition-delay: 260ms; }

/* Pass 4 supplies the equivalent 1.6-viewport travel through ScrollTrigger's
   pin spacing instead of a manual section height. */
.pillars { height: auto; }

/* ── Pass A · real typefaces ──────────────────────────────────────────
   The build was running on system stacks: Iowan Old Style (macOS only)
   and -apple-system. On Windows/Android most visitors saw a different,
   cheaper page. Fraunces + Archivo + JetBrains Mono are self-hosted in
   ./fonts/ — no CDN, no external request.
   ─────────────────────────────────────────────────────────────────── */
/* Fraunces is a variable face — set optical size so display type gets its
   high-contrast cut and body serif stays readable. */
h1, h2, .hero-line, blockquote {
  font-variation-settings: "opsz" var(--heading-opsz, 144), "wght" 400;
}
h3, h4, p, li { font-variation-settings: "opsz" 24; }

/* ── Pass A · metric corrections after the typeface swap ──────────────
   Fraunces has taller ascenders and deeper descenders than Iowan Old
   Style, so the masked line containers (overflow:hidden, sized to the
   old face) were shearing the caps and tails off the hero headline.
   ─────────────────────────────────────────────────────────────────── */
.hero-line span {
  line-height: 1.04;
  padding-block: 0 .1em;   /* descender room only — top padding threw the rhythm */
  overflow: hidden;
}
.hero-line i { display: block; will-change: transform; }

h1, h2, blockquote, .hero-line { line-height: 1.12; }

/* hierarchy: the stories heading was the largest type on the page, for the
   least commercial block. Services outrank the blog. */
.stories h2,
.stories .section-title {
  font-size: var(--type-title);
  max-width: 18ch;
}

/* Pass 3 follows below. Scroll-spy ownership lives in script.js. */

/* ── Pass 3 · cinematic layer ──────────────────────────────────── */
.ambient-field { transition: none; }

.opening-sequence {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  pointer-events: none;
  animation: opening-curtain 1.5s cubic-bezier(.77, 0, .18, 1) both;
}

.opening-mark {
  display: grid;
  width: 112px;
  height: 72px;
  place-items: center;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  animation: opening-mark-set 620ms cubic-bezier(.22, 1, .36, 1) 80ms both;
}

.opening-mark::before {
  color: var(--on-dark);
  content: "B";
  font-family: var(--serif);
  font-size: var(--type-title);
  font-variation-settings: "opsz" 96, "wght" 400;
  line-height: 1;
}

.opening-rule {
  position: absolute;
  top: calc(50% + 54px);
  left: 50%;
  width: min(240px, 46vw);
  height: 1px;
  background: var(--on-dark-soft);
  transform: translateX(-50%) scaleX(0);
  animation: opening-rule-set 520ms cubic-bezier(.22, 1, .36, 1) 360ms both;
}

@keyframes opening-mark-set { to { clip-path: inset(0 0 0 0); } }
@keyframes opening-rule-set { to { transform: translateX(-50%) scaleX(1); } }
@keyframes opening-curtain {
  0%, 62% { clip-path: inset(0 0 0 0); }
  100% { clip-path: inset(0 0 100% 0); visibility: hidden; }
}

.hero-slide.is-active .eyebrow,
.hero-slide.is-active .button,
.hero-slide.is-active .hero-number { opacity: 1; }

.is-opening .hero-slide.is-active .eyebrow {
  clip-path: inset(0 100% 0 0);
  animation: opening-mark-set 600ms cubic-bezier(.22, 1, .36, 1) 980ms both;
}

.is-opening .hero-slide.is-active .hero-line i {
  animation: opening-type-resolve 620ms cubic-bezier(.22, 1, .36, 1) 980ms both;
}
.is-opening .hero-slide.is-active .hero-line span:nth-child(2) i { animation-delay: 1050ms; }
.is-opening .hero-slide.is-active .hero-line span:nth-child(3) i { animation-delay: 1120ms; }
.is-opening .hero-slide.is-active .hero-line span:nth-child(4) i { animation-delay: 1190ms; }
.is-opening .hero-slide.is-active .button { transition-delay: 1260ms; }

@keyframes opening-type-resolve {
  from { transform: translateY(108%); }
  to { transform: translateY(0); }
}

[data-world] {
  position: relative;
  isolation: isolate;
}

.section-handoff {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -1px;
  left: 0;
  height: min(28vh, 280px);
  background: var(--handoff-color, transparent);
  clip-path: polygon(0 var(--handoff-left, 100%), 100% var(--handoff-right, 100%), 100% 100%, 0 100%);
  pointer-events: none;
  will-change: clip-path;
}

.about > :not(.section-handoff),
.catalog-section > .section-shell,
.community > :not(.section-handoff),
.explore > :not(.section-handoff),
.visuals > :not(.section-handoff),
.events > :not(.section-handoff),
.stories > :not(.section-handoff),
.contact > :not(.section-handoff) {
  position: relative;
  z-index: 1;
}

.pillars > .pillar-stage { z-index: 1; }

.masked-heading { --heading-opsz: 28; }
.heading-line-inner {
  font-variation-settings: "opsz" var(--heading-opsz, 144), "wght" 400;
}

.scrub-image {
  transform: translate3d(0, var(--image-parallax, 0), 0) scale(var(--image-scale, 1));
}

.service-card img.scrub-image,
.course-card img.scrub-image {
  transform: translate3d(0, var(--image-parallax-small, 0), 0) scale(var(--image-scale, 1));
}

.catalog-tools { overflow: visible; }
.search-control {
  width: 100%;
  max-width: 460px;
  transform-origin: left center;
  transition: max-width 560ms cubic-bezier(.22, 1, .36, 1), border-color 320ms ease, box-shadow 320ms ease;
}
.search-control:focus-within { max-width: 720px; }
.search-status { transform-origin: center; }
.search-status.is-ticking { animation: count-turn 360ms cubic-bezier(.22, 1, .36, 1); }
@keyframes count-turn {
  0% { clip-path: inset(0 0 100% 0); transform: translateY(8px); }
  100% { clip-path: inset(0 0 0 0); transform: translateY(0); }
}

.newsletter-form > div {
  position: relative;
  border-bottom-color: color-mix(in srgb, var(--on-dark) 36%, transparent);
}
.newsletter-form > div::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--on-dark);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1);
}
.newsletter-form:focus-within > div::after { transform: scaleX(1); }
.newsletter-form > label {
  transition: letter-spacing 420ms ease, transform 420ms cubic-bezier(.22, 1, .36, 1);
}
.newsletter-form:focus-within > label {
  letter-spacing: .18em;
  transform: translateY(-4px);
}

.button {
  transform: translate3d(var(--magnetic-x, 0), var(--magnetic-y, 0), 0);
  transition: transform 520ms cubic-bezier(.22, 1, .36, 1), color 320ms ease, background-color 320ms ease, border-color 320ms ease;
}

.cursor-orbit {
  position: fixed;
  z-index: 1400;
  top: 0;
  left: 0;
  display: grid;
  width: 10px;
  height: 10px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: width 260ms cubic-bezier(.22, 1, .36, 1), height 260ms cubic-bezier(.22, 1, .36, 1), background-color 260ms ease, border-color 260ms ease;
}
.cursor-orbit span {
  color: var(--ink);
  font-family: var(--mono);
  font-size: var(--type-micro);
  letter-spacing: .08em;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}
.cursor-orbit.is-image {
  width: 68px;
  height: 68px;
  border-color: var(--on-dark-soft);
  background: color-mix(in srgb, var(--paper) 16%, transparent);
}
.cursor-orbit.is-link {
  width: 58px;
  height: 58px;
  border-color: var(--ink);
  background: var(--paper);
}
.cursor-orbit.is-link span { opacity: 1; }

@media (hover: hover) and (pointer: fine) {
  html.has-cinematic-cursor,
  html.has-cinematic-cursor * { cursor: none !important; }
}

@media (min-width: 1181px) {
  .pillar-indicator {
    overflow: hidden;
  }
  .pillar-indicator.is-visible {
    transform: translate(calc(100% - 56px), -50%);
  }
  .pillar-indicator.is-visible a strong {
    opacity: 0;
    transition: opacity 240ms ease;
  }
  .pillar-indicator.is-visible:hover,
  .pillar-indicator.is-visible:focus-within {
    transform: translate(0, -50%);
  }
  .pillar-indicator.is-visible:hover a strong,
  .pillar-indicator.is-visible:focus-within a strong {
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .search-control,
  .search-control:focus-within { max-width: none; }
  .cursor-orbit { display: none; }
  html.has-cinematic-cursor,
  html.has-cinematic-cursor * { cursor: auto !important; }
}

@media (prefers-reduced-motion: reduce) {
  .opening-sequence,
  .section-handoff,
  .cursor-orbit { display: none; }
  .masked-heading,
  .heading-line-inner { --heading-opsz: 96; }
  .search-status.is-ticking,
  .is-opening .hero-slide.is-active .eyebrow,
  .is-opening .hero-slide.is-active .hero-line i {
    animation: none;
    clip-path: none;
  }
  .button { transform: none; }
}

/* ── Pass 3 correction · the ghost numeral ────────────────────────────
   At 260px, opacity ~1 and left:-10px it sat directly on top of the
   eyebrow and the first headline line, making both hard to read.
   It is a watermark, not a headline — it belongs behind and above.
   ─────────────────────────────────────────────────────────────────── */
.hero-number {
  font-size: var(--type-monument);
  opacity: .16;
  top: -104px;
  left: -18px;
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}
.hero-slide .eyebrow,
.hero-slide .hero-line,
.hero-slide .button { position: relative; z-index: 1; }
/* must match .hero-slide.is-active .hero-number (0,3,0) from the pass-2 reveal block */
.hero-slide.is-active .hero-number { opacity: .16; }

/* ── Pass 4 · Lenis + GSAP ScrollTrigger architecture ────────────────
   Lenis owns eased wheel input; ScrollTrigger owns every scroll-linked
   visual value. The pillar section's former CSS-sticky/260svh spacer is
   replaced by ScrollTrigger pinSpacing with the same effective distance. */
html.lenis,
html.lenis body { height: auto; }

.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

.pillars { height: auto; }
.pillar-stage { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .pillars { height: auto; }
  .pillar-stage { position: relative; }
}

/* ── Article & archive templates ──────────────────────────────────────
   ~22,800 of the site's pages use these. They must be fast and readable
   above all; the designed pages carry the brand.
   ─────────────────────────────────────────────────────────────────── */
main { display: block; }

.entry, .archive {
  max-width: 74ch;
  margin: 0 auto;
  padding: clamp(96px, 12vh, 150px) clamp(20px, 5vw, 40px) clamp(64px, 9vh, 110px);
}
.entry__head { margin-bottom: clamp(28px, 4vh, 44px); }
.entry h1, .archive h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.1; letter-spacing: -.022em; margin: 0 0 16px; text-wrap: balance;
}
.entry__meta {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
}
.entry__meta a { color: var(--brick); text-decoration: none; }
.entry__meta a:hover { text-decoration: underline; }

.entry__body { font-size: 1.02rem; line-height: 1.72; color: var(--ink); }
.entry__body p { margin: 0; }
.entry__body > * + * { margin-top: 1.15em; }   /* must follow the p reset or it loses */
.entry__body h2, .entry__body h3 {
  font-family: var(--serif); line-height: 1.18; margin-top: 1.9em; letter-spacing: -.015em;
}
.entry__body h2 { font-size: 1.5rem; }
.entry__body h3 { font-size: 1.22rem; }
.entry__body img { max-width: 100%; height: auto; margin: 1.6em 0; }
.entry__body a { color: var(--brick); text-underline-offset: 3px; }
.entry__body ul, .entry__body ol { padding-left: 1.3em; }
.entry__body li + li { margin-top: .5em; }
.entry__body blockquote {
  margin: 1.6em 0; padding-left: 1.2em; border-left: 2px solid var(--brick);
  font-family: var(--serif); font-size: 1.15rem; font-style: italic;
}

.entry__tags { list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  margin: clamp(38px, 5vh, 60px) 0 0; padding: 22px 0 0; border-top: 1px solid var(--line); }
.entry__tags a {
  display: block; font-family: var(--mono); font-size: 10.5px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-soft); text-decoration: none;
  padding: 5px 10px; border: 1px solid var(--line);
}
.entry__tags a:hover { color: var(--ink); border-color: var(--ink); }

.archive__count { font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 clamp(30px,4vh,48px); }
.archive__list { list-style: none; margin: 0; padding: 0; }
.archive__list li { padding: 26px 0; border-top: 1px solid var(--line); }
.archive__list h2 { font-family: var(--serif); font-size: 1.32rem; line-height: 1.24;
  margin: 0 0 8px; letter-spacing: -.015em; }
.archive__list a { color: inherit; text-decoration: none; }
.archive__list a:hover h2 { color: var(--brick); }
.archive__list time { font-family: var(--mono); font-size: 10.5px; letter-spacing: .12em;
  color: var(--ink-soft); }
.archive__list p { margin: 8px 0 0; color: var(--ink-soft); font-size: .94rem; line-height: 1.6; }

.pager { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: clamp(38px,5vh,60px); padding-top: 22px; border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.pager a { color: var(--ink); text-decoration: none; }
.pager a:hover { color: var(--brick); }
.pager span { color: var(--ink-soft); }

.site-footer { padding: 40px clamp(20px,5vw,40px); border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: var(--ink-soft); }
.brand span { display: block; font-size: 10px; opacity: .75; }

/* ══ Designed pages: the four pillars, the course index and the 34 service
      and course pages.  Everything below is additive — the article and
      archive templates above are untouched.
      ═══════════════════════════════════════════════════════════════════ */

/* Restore the footer the homepage designs, which the article-template
   override further up had flattened. */
.site-footer {
  padding: 32px 48px;
  border-top: 0;
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: var(--type-label);
  letter-spacing: normal;
}
.site-footer p a { border-bottom: 1px solid rgba(255, 255, 255, .32); }
.site-footer p a:hover { border-bottom-color: var(--white); }

.page { display: block; }

/* ── Masthead ─────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-block: calc(var(--header-height) + clamp(56px, 9vh, 104px)) clamp(72px, 10vh, 128px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(48px, 6vw, 112px);
  align-items: center;
}

.page-hero-number {
  position: absolute;
  z-index: 0;
  top: calc(var(--header-height) - 12px);
  right: calc((100vw - var(--shell)) / 2);
  color: var(--line);
  font-family: var(--serif);
  font-size: var(--type-monument);
  line-height: .82;
  pointer-events: none;
  user-select: none;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: var(--type-micro);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.crumbs a { border-bottom: 1px solid transparent; }
.crumbs a:hover { color: var(--ink); border-bottom-color: var(--brick); }

.page-hero .eyebrow { margin-bottom: 18px; }

.pillar-name {
  margin: 0 0 18px;
  color: var(--brick);
  font-family: var(--mono);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--serif);
  font-size: var(--type-display);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: 1;
  text-wrap: balance;
}

.page-lede {
  max-width: 62ch;
  margin-top: clamp(28px, 4vh, 40px);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: var(--type-lede);
  line-height: 1.5;
}

.page-lede + .page-lede { margin-top: 18px; }
.page-lede p { margin: 0; }

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  align-items: center;
  margin-top: clamp(32px, 5vh, 48px);
}

.page-hero-art { position: relative; margin: 0; }

.page-hero-art img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(.86) contrast(1.04);
}

.page-hero-art::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 62%;
  height: 58%;
  border: 1px solid var(--line);
  content: "";
}

.page-hero-art figcaption {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: var(--type-micro);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.page-place { color: var(--ink-faint); }

.page-hero-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  width: var(--shell);
  margin: clamp(48px, 6vh, 72px) auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: var(--type-micro);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── Bands ────────────────────────────────────────────────────────────── */
.band {
  padding-block: clamp(72px, 10vh, 128px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.band--alt { background: var(--chalk); }

.band--feature {
  color: var(--on-dark);
  border-top-color: transparent;
  background: var(--river-deep);
}

.band--intro { border-top: 0; padding-top: clamp(56px, 8vh, 96px); }

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(40px, 5vw, 96px);
  align-items: start;
}

.band-rail {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  display: grid;
  gap: 20px;
  align-self: start;
}

.band-rail .section-index { margin: 0; }

.band-eyebrow {
  margin: 0;
  max-width: 26ch;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: var(--type-small);
  font-style: italic;
  line-height: 1.5;
}

.band--feature .section-index,
.band--feature .band-eyebrow { color: var(--on-dark-soft); }

.band-art { display: grid; gap: 16px; margin-top: 12px; }

.band-art img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(.86) contrast(1.04);
}

.band-main h2 {
  max-width: 26ch;
  margin: 0 0 clamp(28px, 4vh, 44px);
  font-family: var(--serif);
  font-size: var(--type-title);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.band-intro {
  max-width: 60ch;
  margin: -12px 0 40px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: var(--type-lede);
  line-height: 1.5;
}

.band-body { max-width: 74ch; }
.band-body > * + * { margin-top: 1.25em; }
.band-body .button { margin-top: clamp(24px, 3vh, 36px); }

.band-body h3 {
  margin: clamp(32px, 4vh, 48px) 0 0;
  font-family: var(--serif);
  font-size: var(--type-lede);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.25;
}

.rich { color: var(--ink-soft); font-size: var(--type-small); line-height: 1.85; }
.rich > * + * { margin-top: 1.15em; }
.rich p { margin: 0; }
.rich strong { color: var(--ink); font-weight: 700; }
.rich a { color: var(--brick); border-bottom: 1px solid color-mix(in srgb, var(--brick) 40%, transparent); }
.rich a:hover { border-bottom-color: var(--brick); }
.rich ul, .rich ol { margin: 0; padding-left: 1.4em; }
.rich li + li { margin-top: .55em; }
.rich li::marker { color: var(--ink-faint); }
.rich ul ul, .rich ol ul, .rich ol ol { margin-top: .55em; }

.rich blockquote {
  margin: 0;
  padding-left: 20px;
  border-left: 2px solid var(--brick);
  font-family: var(--serif);
  font-size: var(--type-lede);
  font-style: italic;
  line-height: 1.45;
}

.rich table { width: 100%; border-collapse: collapse; font-size: var(--type-small); }
.rich th, .rich td { padding: 12px 14px; border: 1px solid var(--line); text-align: left; }

.band--feature .rich { color: var(--on-dark-soft); }
.band--feature .rich strong { color: var(--on-dark); }
.band--feature .rich a { color: var(--white); border-bottom-color: rgba(255, 255, 255, .5); }
.band--feature .rich li::marker { color: var(--on-dark-soft); }
.band--feature .band-body h3 { color: var(--on-dark); }
.band--feature .button-primary { color: var(--ink); border-color: var(--white); background: var(--white); }
.band--feature .button-primary:hover { color: var(--on-dark); border-color: var(--brick); background: var(--brick); }

/* ── Directory: a pillar's services ───────────────────────────────────── */
.index-list { list-style: none; margin: 0; padding: 0; }

.index-row { border-top: 1px solid var(--line); }
.index-row:last-child { border-bottom: 1px solid var(--line); }

.index-row > a {
  display: grid;
  grid-template-columns: 56px 132px minmax(0, 1fr) 32px;
  gap: clamp(16px, 2.4vw, 36px);
  align-items: start;
  padding: clamp(24px, 3.2vh, 40px) 0;
  transition: color 320ms ease;
}

.index-number {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: var(--type-micro);
  letter-spacing: .12em;
  padding-top: 6px;
}

.index-art {
  width: 132px;
  height: 132px;
  object-fit: cover;
  filter: saturate(.86) contrast(1.04);
  transition: filter 420ms ease, transform 620ms cubic-bezier(.22, 1, .36, 1);
}

.index-art--blank {
  display: block;
  border: 1px solid var(--line);
  background:
    linear-gradient(to bottom right, transparent calc(50% - 1px), var(--line) 50%, transparent calc(50% + 1px));
}

.index-copy { display: grid; gap: 10px; }

.index-title {
  font-family: var(--serif);
  font-size: var(--type-title);
  letter-spacing: -.03em;
  line-height: 1.1;
}

.index-sub {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: var(--type-micro);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.index-body {
  max-width: 68ch;
  color: var(--ink-soft);
  font-size: var(--type-small);
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.index-arrow {
  justify-self: end;
  padding-top: 4px;
  color: var(--ink-faint);
  font-size: var(--type-small);
  transition: transform 320ms ease, color 320ms ease;
}

.index-row > a:hover .index-title { color: var(--brick); }
.index-row > a:hover .index-arrow { color: var(--brick); transform: translate(3px, -3px); }
.index-row > a:hover .index-art { filter: saturate(1) contrast(1.06); transform: scale(1.03); }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list { margin-top: clamp(24px, 3vh, 36px); border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item > summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}

.faq-item > summary::-webkit-details-marker { display: none; }

.faq-number {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: var(--type-micro);
  letter-spacing: .12em;
}

.faq-question {
  font-family: var(--serif);
  font-size: var(--type-lede);
  letter-spacing: -.02em;
  line-height: 1.28;
  transition: color 320ms ease;
}

.faq-mark {
  position: relative;
  justify-self: end;
  width: 14px;
  height: 14px;
  align-self: center;
}

.faq-mark::before,
.faq-mark::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 320ms ease;
}

.faq-mark::after { transform: rotate(90deg); }
.faq-item[open] .faq-mark::after { transform: rotate(0deg); }
.faq-item[open] .faq-question { color: var(--brick); }
.faq-item > summary:hover .faq-question { color: var(--brick); }

.faq-answer {
  max-width: 68ch;
  padding: 0 0 26px 64px;
}

.faq-answer > * + * { margin-top: 1.1em; }

/* ── Testimonials ─────────────────────────────────────────────────────── */
.quote-wall { columns: 2; column-gap: clamp(24px, 3vw, 48px); }

.quote {
  break-inside: avoid;
  margin: 0 0 clamp(24px, 3vw, 40px);
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.quote blockquote {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: var(--type-small);
  font-style: italic;
  line-height: 1.7;
}

.quote figcaption {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: var(--type-micro);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-tail {
  column-span: all;
  max-width: 68ch;
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: var(--type-small);
  line-height: 1.8;
}

/* ── Connect ──────────────────────────────────────────────────────────── */
.band--connect { color: var(--on-dark); background: var(--brick-dark); border-top-color: transparent; }
.band--connect .section-index,
.band--connect .band-eyebrow { color: var(--on-dark-soft); }

.connect-lead {
  max-width: 60ch;
  margin: 0 0 clamp(28px, 4vh, 44px);
  color: var(--on-dark-soft);
  font-family: var(--serif);
  font-size: var(--type-lede);
  line-height: 1.5;
}

.connect-list { display: grid; }

.connect-item {
  display: grid;
  grid-template-columns: minmax(140px, 3fr) minmax(0, 9fr);
  gap: 16px clamp(20px, 3vw, 48px);
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, .28);
  transition: background-color 320ms ease;
}

.connect-list .connect-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, .28); }

.connect-label {
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.connect-label span { display: inline-block; transition: transform 320ms ease; }
.connect-item:hover .connect-label span { transform: translate(3px, -3px); }

.connect-name {
  grid-column: 2;
  font-family: var(--serif);
  font-size: var(--type-lede);
  line-height: 1.2;
}

.connect-body {
  grid-column: 2;
  max-width: 72ch;
  color: var(--on-dark-soft);
  font-size: var(--type-small);
  line-height: 1.8;
}

/* ── Journal ──────────────────────────────────────────────────────────── */
.journal-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.journal-list li { border-bottom: 1px solid var(--line); }

.journal-list li > a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
}

.journal-number {
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: var(--type-micro);
  letter-spacing: .12em;
}

.journal-title {
  font-family: var(--serif);
  font-size: var(--type-lede);
  letter-spacing: -.02em;
  line-height: 1.28;
  transition: color 320ms ease;
}

.journal-list li > a:hover .journal-title { color: var(--brick); }
.journal-more { border-bottom: 0 !important; padding-top: 24px; }

/* ── Related services ─────────────────────────────────────────────────── */
.band--related .service-grid { margin-bottom: 40px; }
.band--related .section-link { display: inline-flex; }

/* ── Other pillars ────────────────────────────────────────────────────── */
.band--pillars { background: var(--chalk); }
.band--pillars .section-heading { margin-bottom: clamp(40px, 5vh, 64px); }
.band--pillars .section-heading h2 { font-size: var(--type-title); }

.pillar-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.pillar-nav-card {
  position: relative;
  display: flex;
  min-height: 340px;
  align-items: flex-end;
  overflow: hidden;
  color: var(--on-dark);
  background: var(--ink);
}

.pillar-nav-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .48;
  filter: saturate(.7) contrast(1.05);
  transition: transform 720ms cubic-bezier(.22, 1, .36, 1), opacity 420ms ease;
}

.pillar-nav-card:hover img { transform: scale(1.05); opacity: .62; }

.pillar-nav-copy {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 28px;
}

.pillar-nav-copy strong {
  font-family: var(--serif);
  font-size: var(--type-title);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.05;
}

.pillar-nav-go {
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pillar-nav-go span { display: inline-block; transition: transform 320ms ease; }
.pillar-nav-card:hover .pillar-nav-go span { transform: translate(3px, -3px); }

/* ── Contact ──────────────────────────────────────────────────────────── */
.page-contact .contact-top { border-bottom: 0; }
.page-contact .contact-top h2 { max-width: 16ch; }
.contact-back { padding-bottom: clamp(72px, 9vh, 112px); }
.contact-back .button-light { justify-self: start; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1180px) {
  .page-hero-grid { gap: clamp(40px, 5vw, 72px); }
  .band-grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 40px; }
  .index-row > a { grid-template-columns: 44px 108px minmax(0, 1fr) 24px; }
  .index-art { width: 108px; height: 108px; }
}

@media (max-width: 900px) {
  .page-hero { padding-block: calc(var(--header-height) + 48px) 64px; }
  .page-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .page-hero-number { top: calc(var(--header-height) - 4px); right: 16px; font-size: clamp(5rem, 22vw, 8rem); }
  .page-hero h1 { max-width: none; }
  .page-hero-art { order: -1; max-width: 380px; }
  .page-hero-art img { aspect-ratio: 4 / 3; }
  .band { padding-block: 72px; }
  .band-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .band-rail { position: static; grid-auto-flow: row; }
  .band-art { grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); }
  .index-row > a { grid-template-columns: 36px minmax(0, 1fr) 20px; gap: 14px; }
  .index-art { grid-column: 2; width: 100%; max-width: 220px; height: auto; aspect-ratio: 1 / 1; }
  .index-copy { grid-column: 2; }
  .index-arrow { grid-row: 1; }
  .quote-wall { columns: 1; }
  .connect-item { grid-template-columns: minmax(0, 1fr); }
  .connect-name, .connect-body { grid-column: 1; }
  .faq-answer { padding-left: 0; }
}

@media (max-width: 640px) {
  .page-hero-meta { gap: 8px 20px; }
  .band-main h2 { max-width: none; }
  .faq-item > summary { grid-template-columns: 32px minmax(0, 1fr) 20px; gap: 12px; }
  .site-footer { padding: 28px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .index-art,
  .pillar-nav-card img,
  .index-arrow,
  .connect-label span,
  .pillar-nav-go span { transition: none; }
  .index-row > a:hover .index-art,
  .pillar-nav-card:hover img { transform: none; }
}

@media print {
  .page-hero-number, .page-hero-art, .band-art, .band--connect { display: none; }
  .band, .page-hero { padding-block: 24px; border-top: 0; background: none; }
  .band--feature { color: #000; background: none; }
  .faq-answer { padding-left: 0; }
}

.index-more {
  color: var(--ink);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.index-more span { display: inline-block; transition: transform 320ms ease; }
.index-row > a:hover .index-more { color: var(--brick); }
.index-row > a:hover .index-more span { transform: translate(3px, -3px); }

.faq-after { margin-top: clamp(28px, 4vh, 40px); }
.band--feature .faq-after { border-bottom-color: var(--white); }

.journal-list li > a { align-items: start; }
.journal-copy { display: grid; gap: 8px; }

.journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  color: var(--ink-faint);
  font-family: var(--mono);
  font-size: var(--type-micro);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.journal-list + .text-link { margin-top: clamp(28px, 4vh, 40px); }

.band--related .service-card { align-items: start; }
.band--related .service-number { grid-column: 1; grid-row: 1; }
.band--related .service-title { grid-column: 2; grid-row: 1; }
.band--related .service-card img,
.band--related .service-mark { grid-column: 3; grid-row: 1; }

.service-note {
  grid-column: 2 / 4;
  grid-row: 2;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: var(--type-small);
  line-height: 1.65;
  transition: color 380ms ease;
}

.service-card:hover .service-note { color: var(--on-dark-soft); }

.index-intro { margin-bottom: clamp(32px, 4vh, 48px); }

/* Fit-and-finish for the designed pages */
.page-hero-art::before { display: none; }

.band--related .service-grid { grid-template-columns: repeat(2, 1fr); }
.band--related .service-card { min-height: 150px; padding: 24px 20px; }

.page-contact .contact-top { padding-block: clamp(80px, 10vh, 112px) clamp(40px, 5vh, 56px); }
.contact-back { padding-bottom: clamp(64px, 8vh, 96px); }

@media (max-width: 900px) {
  .band--related .service-grid { grid-template-columns: minmax(0, 1fr); }
}

/* Masked line reveals must not crop descenders on the designed pages. */
.page .heading-line,
.page-contact .heading-line {
  padding-bottom: .16em;
  margin-bottom: -.16em;
}

.page-hero h1 { line-height: 1.04; }
.band-main h2 { line-height: 1.12; }

@media (max-width: 900px) {
  .page-hero-art { order: 0; }
}

/* ── Metaphysical causes · search ─────────────────────────────────────
   Client request 2026-08-11: a visitor types a condition and is taken to
   that condition's page. Built over the 58 existing pages rather than as
   new content, so nothing is invented.
   ─────────────────────────────────────────────────────────────────── */
.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; }

.mcause { background: var(--ink); color: var(--chalk);
  padding: clamp(72px,10vh,132px) clamp(20px,5vw,40px); }
.mcause__inner { max-width: 780px; margin: 0 auto; }
.mcause .eyebrow { color: var(--brick); margin-bottom: 18px; }
.mcause__title { font-family: var(--serif); font-size: clamp(1.9rem,4vw,3.1rem);
  line-height: 1.06; letter-spacing: -.024em; margin: 0 0 16px; color: var(--chalk); }
.mcause__lede { margin: 0 0 clamp(28px,4vh,40px); max-width: 56ch;
  color: color-mix(in srgb, var(--chalk) 74%, transparent); line-height: 1.65; }

.mcause__form { position: relative; }
.mcause__form input {
  width: 100%; padding: 18px 20px; font: inherit; font-size: 1.05rem;
  color: var(--chalk); background: transparent;
  border: 1px solid color-mix(in srgb, var(--chalk) 26%, transparent);
  border-radius: 0; transition: border-color .3s ease;
}
.mcause__form input::placeholder { color: color-mix(in srgb, var(--chalk) 42%, transparent); }
.mcause__form input:focus { outline: none; border-color: var(--brick); }
.mcause__status { margin: 10px 0 0; font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: color-mix(in srgb, var(--chalk) 52%, transparent); }

.mcause__results { list-style: none; margin: clamp(18px,3vh,28px) 0 0; padding: 0; }
.mcause__results li + li { border-top: 1px solid color-mix(in srgb, var(--chalk) 14%, transparent); }
.mcause__results a { display: grid; grid-template-columns: 1fr auto; gap: 4px 20px;
  align-items: baseline; padding: 16px 0; text-decoration: none; color: var(--chalk); }
.mcause__name { font-family: var(--serif); font-size: 1.2rem; letter-spacing: -.012em; }
.mcause__snip { grid-column: 1 / -1; font-size: .88rem; line-height: 1.55;
  color: color-mix(in srgb, var(--chalk) 62%, transparent); }
.mcause__go { font-family: var(--mono); font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--brick); white-space: nowrap; }
.mcause__results a:hover .mcause__name { color: var(--brick); }

.mcause__note { margin: clamp(26px,4vh,38px) 0 0; padding-top: 18px;
  border-top: 1px solid color-mix(in srgb, var(--chalk) 14%, transparent);
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: color-mix(in srgb, var(--chalk) 48%, transparent); }
