:root {
  color-scheme: light;
  --navy-950: #06101f;
  --navy-900: #0a1729;
  --navy-800: #12243b;
  --navy-700: #203854;
  --ink: #152033;
  --slate: #5c6675;
  --muted: #5f6875;
  --paper: #f7f5ef;
  --cream: #eee8dc;
  --white: #ffffff;
  --gold: #cda75e;
  --gold-light: #e7ce98;
  --line: #d9d5cb;
  --shadow: 0 26px 70px rgba(7, 18, 34, 0.14);
  --shell: min(1180px, calc(100vw - 64px));
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--gold-light);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
}

.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.brand-seal {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(231, 206, 152, 0.7);
  color: var(--gold-light);
  font-size: 19px;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
}

.desktop-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-light);
}

.header-cta {
  padding: 11px 18px;
  border: 1px solid rgba(231, 206, 152, 0.54);
  color: var(--gold-light);
  font-size: 13px;
  transition: background 160ms ease, color 160ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--navy-950);
  background: var(--gold-light);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 1000px;
  padding: 176px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 9%, rgba(205, 167, 94, 0.12), transparent 28%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 60%, #10253d);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0 0 0 52%;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to left, black, transparent);
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: 5%;
  top: 180px;
  border: 1px solid rgba(205, 167, 94, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(205, 167, 94, 0.025), 0 0 0 140px rgba(205, 167, 94, 0.018);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(390px, 0.88fr);
  align-items: center;
  gap: 84px;
}

.eyebrow {
  color: #8b6c35;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

.hero h1 {
  margin-top: 28px;
  font-size: clamp(66px, 6vw, 92px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-lead {
  margin-top: 34px;
  color: #f5efe2;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 500;
}

.hero-description {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  color: var(--navy-950);
  background: var(--gold-light);
}

.button-gold:hover,
.button-gold:focus-visible {
  background: #f0dbad;
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.02);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.hero-proof span:nth-child(2) {
  width: 28px;
  height: 1px;
  background: rgba(231, 206, 152, 0.48);
}

.portrait-card {
  position: relative;
  width: min(100%, 470px);
  justify-self: end;
  padding: 16px 16px 0;
  border: 1px solid rgba(231, 206, 152, 0.36);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #85838c;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  filter: saturate(0.8) contrast(1.03);
}

.portrait-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 16, 31, 0.42), transparent 38%);
  pointer-events: none;
}

.portrait-card figcaption {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.portrait-card figcaption span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.portrait-card figcaption small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.portrait-mark {
  position: absolute;
  right: -22px;
  bottom: 86px;
  width: 68px;
  height: 94px;
  display: grid;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.role-strip {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.role-strip div {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.role-strip div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.role-strip small {
  color: var(--gold-light);
  font-size: 11px;
}

.role-strip span {
  font-size: 15px;
  letter-spacing: 0.04em;
}

.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.section-heading.compact h2 {
  font-size: 42px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: end;
  gap: 80px;
}

.split-heading > p {
  color: var(--slate);
  font-size: 16px;
  line-height: 1.85;
}

.evidence {
  padding: 118px 0 130px;
  background: var(--paper);
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.evidence-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.evidence-card:hover,
.evidence-card:focus-visible {
  position: relative;
  z-index: 2;
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.evidence-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.evidence-card.featured {
  color: var(--white);
  background: var(--navy-900);
}

.card-number {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.evidence-card p {
  margin-top: 54px;
  color: var(--muted);
  font-size: 12px;
}

.evidence-card.featured p {
  color: rgba(255, 255, 255, 0.55);
}

.evidence-card h3 {
  margin-top: 12px;
  font-size: 21px;
  line-height: 1.45;
}

.card-link {
  margin-top: auto;
  color: var(--slate);
  font-size: 12px;
}

.evidence-card.featured .card-link {
  color: var(--gold-light);
}

.future-external-link small {
  margin-top: 10px;
  color: #8b6c35;
  font-size: 10px;
  line-height: 1.5;
}

.credentials-panel {
  display: grid;
  grid-template-columns: 0.54fr 2.46fr;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.credentials-heading {
  align-self: center;
}

.credentials-heading p {
  font-size: 17px;
  font-weight: 700;
}

.credentials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.credentials-list article {
  min-height: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4px 18px;
  border-left: 1px solid var(--line);
}

.credentials-list small {
  color: #8b6c35;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.credentials-list strong {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.45;
}

.credentials-list span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.about {
  padding: 148px 0;
  color: var(--white);
  background: var(--navy-900);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 120px;
}

.sticky-heading {
  align-self: start;
}

.about-intro {
  color: rgba(255, 255, 255, 0.78);
  font-size: 24px;
  line-height: 1.8;
}

.about-statement {
  position: relative;
  margin-top: 64px;
  padding: 42px 0 42px 46px;
  border-left: 1px solid var(--gold);
}

.about-statement > span {
  position: absolute;
  left: 44px;
  top: -12px;
  color: rgba(231, 206, 152, 0.2);
  font-size: 96px;
  line-height: 1;
}

.about-statement p {
  position: relative;
  z-index: 1;
  color: var(--gold-light);
  font-size: 21px;
  line-height: 1.9;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.12);
}

.principles div {
  min-height: 178px;
  padding: 28px 24px;
  background: var(--navy-900);
}

.principles strong {
  color: var(--gold-light);
  font-size: 22px;
}

.principles p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.7;
}

.practice,
.courses,
.works {
  padding: 140px 0;
}

.practice {
  background: var(--paper);
}

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

.practice-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
}

.practice-index {
  position: absolute;
  top: 34px;
  right: 34px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.card-cream .practice-index {
  color: rgba(21, 32, 51, 0.38);
}

.practice-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
}

.practice-card .card-kicker {
  margin-top: 92px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.practice-card h3 {
  margin-top: 16px;
  font-size: 27px;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.practice-card > p:not(.card-kicker) {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.68;
}

.practice-card a {
  margin-top: auto;
  padding-top: 36px;
  border-top: 1px solid currentColor;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.75;
}

.card-blue {
  color: var(--white);
  background: var(--navy-700);
}

.card-cream {
  color: var(--ink);
  background: var(--cream);
}

.card-dark {
  color: var(--white);
  background: var(--navy-950);
}

.courses {
  background: var(--cream);
}

.course-list {
  margin-top: 52px;
  border-top: 1px solid #cfc7b8;
}

.teaching-scene {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  margin-top: 70px;
  background: var(--navy-800);
}

.teaching-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 16, 31, 0.72), rgba(6, 16, 31, 0.02) 70%);
}

.teaching-scene img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: 50% 48%;
  filter: saturate(0.86) contrast(1.04);
}

.teaching-scene figcaption {
  position: absolute;
  z-index: 1;
  left: 54px;
  bottom: 48px;
  display: grid;
  gap: 12px;
  color: var(--white);
}

.teaching-scene figcaption small {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.teaching-scene figcaption strong {
  font-size: 32px;
}

.teaching-scene figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.course-row {
  min-height: 136px;
  display: grid;
  grid-template-columns: 72px 1.05fr 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #cfc7b8;
  transition: padding 180ms ease, background 180ms ease;
}

.course-row:hover,
.course-row:focus-visible {
  padding-inline: 20px;
  background: rgba(255, 255, 255, 0.42);
}

.course-row:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.course-row > span {
  color: #8b6c35;
  font-size: 11px;
}

.course-row h3 {
  font-size: 24px;
}

.course-row p {
  color: var(--slate);
  font-size: 14px;
  line-height: 1.6;
}

.course-row strong {
  color: #8b6c35;
  font-size: 11px;
  white-space: nowrap;
}

.course-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.delivery-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.delivery-line span {
  padding: 10px 16px;
  border: 1px solid #cfc7b8;
  color: var(--slate);
  font-size: 12px;
}

.works {
  background: var(--paper);
}

.works-library {
  margin-top: 70px;
}

.works-subhead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}

.works-subhead .card-kicker {
  color: #8b6c35;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.works-subhead h3 {
  margin-top: 12px;
  font-size: 28px;
}

.works-subhead > span {
  color: var(--muted);
  font-size: 12px;
}

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

.published-books article {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 98px 1fr;
  align-items: center;
  gap: 22px;
  min-height: 190px;
  padding: 22px;
  background: var(--white);
}

.published-books article:nth-child(n + 4) {
  grid-column: span 3;
}

.published-cover {
  position: relative;
  width: 98px;
  height: 140px;
  overflow: hidden;
  background: #eef0f2;
  box-shadow: 8px 10px 24px rgba(7, 18, 34, 0.14);
}

.published-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.published-cover-crop-right img {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: fill;
}

.published-book-copy span {
  color: #8b6c35;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.published-book-copy h3 {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.5;
}

.published-book-copy p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.works-secondary {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  margin-top: 22px;
}

.contribution-card,
.forthcoming-card {
  min-height: 214px;
  display: grid;
  align-items: center;
  padding: 24px;
}

.contribution-card {
  grid-template-columns: 98px 1fr;
  gap: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contribution-cover {
  position: relative;
  width: 98px;
  height: 140px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 12px 16px 32px rgba(7, 18, 34, 0.12);
}

.contribution-cover img {
  position: absolute;
  left: 50%;
  top: 0;
  width: 155%;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

.forthcoming-card {
  color: var(--white);
  background: var(--navy-800);
}

.secondary-work-copy > span {
  color: #8b6c35;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.forthcoming-card .secondary-work-copy > span {
  color: var(--gold-light);
}

.secondary-work-copy h3 {
  margin-top: 18px;
  font-size: 21px;
  line-height: 1.45;
}

.secondary-work-copy p {
  margin-top: 18px;
  color: var(--slate);
  font-size: 12px;
  line-height: 1.85;
}

.forthcoming-card .secondary-work-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.secondary-work-copy small {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
}

.forthcoming-card .secondary-work-copy small {
  color: rgba(255, 255, 255, 0.46);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  color: var(--white);
  background: var(--navy-950);
}

.contact-orbit {
  position: absolute;
  width: 720px;
  height: 720px;
  right: -300px;
  top: -260px;
  border: 1px solid rgba(231, 206, 152, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(231, 206, 152, 0.02), 0 0 0 160px rgba(231, 206, 152, 0.012);
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 120px;
}

.contact h2 {
  margin-top: 22px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.26;
  letter-spacing: -0.05em;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 17px;
  line-height: 1.9;
}

.contact-options {
  display: grid;
  gap: 0;
  margin: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-options span {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.contact-copy > small {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #030a14;
}

.footer-inner {
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 24px 80px;
}

.footer-inner strong {
  color: var(--white);
  font-size: 16px;
}

.footer-inner p {
  margin-top: 7px;
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 28px;
  font-size: 12px;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.4);
}

.footer-note {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
}

.footer-disclaimer {
  padding: 0 0 32px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  line-height: 1.7;
}

.button-disabled,
.button-disabled:hover,
.button-disabled:focus-visible {
  cursor: default;
  transform: none;
}

@media (max-width: 1060px) {
  :root {
    --shell: min(100% - 48px, 900px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 13px;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    right: 0;
    top: 50px;
    width: 200px;
    display: grid;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 12px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr 0.8fr;
    gap: 44px;
  }

  .hero h1 {
    font-size: 64px;
  }

  .role-strip {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin-top: 74px;
  }

  .role-strip div {
    min-height: 92px;
    padding: 0 16px;
  }

  .about-layout,
  .contact-layout {
    gap: 72px;
  }

  .credentials-panel {
    grid-template-columns: 1fr;
  }

  .principles,
  .published-books {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .published-books article,
  .published-books article:nth-child(n + 4) {
    grid-column: auto;
  }

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

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

  .works-secondary {
    grid-template-columns: 1fr;
  }
}

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

  .header-inner {
    min-height: 82px;
  }

  .brand-seal {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .portrait-card {
    width: calc(100% - 22px);
    justify-self: start;
    margin-top: 24px;
  }

  .portrait-mark {
    right: -18px;
  }

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

  .evidence,
  .about,
  .practice,
  .courses,
  .works,
  .contact {
    padding: 96px 0;
  }

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

  .evidence-card {
    min-height: 220px;
  }

  .credentials-panel {
    gap: 24px;
    padding: 26px 24px;
  }

  .credentials-list {
    grid-template-columns: 1fr;
  }

  .credentials-list article {
    min-height: auto;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-layout,
  .split-heading,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .course-row {
    grid-template-columns: 42px 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .teaching-scene,
  .teaching-scene img {
    height: 360px;
    min-height: 360px;
  }

  .teaching-scene figcaption {
    left: 24px;
    bottom: 26px;
  }

  .teaching-scene figcaption strong {
    font-size: 26px;
  }

  .course-row p {
    grid-column: 2;
  }

  .course-row strong {
    grid-column: 2;
  }

  .works-subhead {
    align-items: start;
    flex-direction: column;
    gap: 14px;
  }

  .published-books {
    grid-template-columns: 1fr;
  }

  .published-books article {
    grid-template-columns: 76px 1fr;
    gap: 18px;
    padding: 18px;
  }

  .published-cover {
    width: 76px;
    height: 108px;
  }

  .contribution-card,
  .forthcoming-card {
    min-height: auto;
    padding: 24px;
  }

  .contribution-card {
    grid-template-columns: 108px 1fr;
    gap: 20px;
  }

  .contribution-cover {
    width: 108px;
  }

  .published-book-copy h3 {
    font-size: 17px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 48px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
