﻿* {
  box-sizing: border-box;
}
:root {
  --ink: #1d2427;
  --muted: #5d696c;
  --line: #d8ddd9;
  --paper: #fbfaf7;
  --white: #ffffff;
  --mist: #eef3f1;
  --warm: #f4eee5;
  --blue: #e9f0f3;
  --sage: #607a73;
  --deep: #253938;
  --red: #9d2c2b;
  --gold: #c3932e;
  --shadow: 0 24px 70px rgba(29, 36, 39, .12);
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.62;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 221, 217, .92);
  background: rgba(251, 250, 247, .94);
  backdrop-filter: blur(18px);
}
.nav-inner,
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  font-weight: 800;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
  font-size: .92rem;
  color: var(--muted);
}
.nav-links a {
  padding: 10px 11px;
  border-radius: 4px;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--mist);
  color: var(--ink);
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
}
.nav-toggle-bars {
  display: grid;
  gap: 5px;
  width: 20px;
}
.nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}
.nav.nav-open .nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav.nav-open .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}
.nav.nav-open .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--mist), var(--paper));
}
.hero-inner {
  min-height: min(720px, calc(100vh - 72px));
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .92fr);
  gap: 58px;
  align-items: center;
  padding: 82px 0 70px;
}
.hero-copy {
  max-width: 680px;
}
.hero-image {
  max-width: 610px;
  justify-self: end;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: var(--white);
}
.hero-image img {
  width: 100%;
  height: auto;
}
.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.01em;
}
h1 {
  font-size: clamp(2.85rem, 6vw, 5.45rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(2.15rem, 4vw, 4.15rem);
  font-weight: 800;
}
h3 {
  font-size: 1.18rem;
}
p {
  margin: 0;
}
.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
}
.hero .lead {
  margin-top: 24px;
  max-width: 620px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
}
.btn-primary {
  color: var(--white);
  background: var(--sage);
}
.btn-primary:hover {
  background: var(--deep);
}
.btn-outline {
  color: var(--deep);
  border-color: var(--line);
  background: var(--white);
}
.section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.white {
  background: var(--white);
}
.warm {
  background: var(--warm);
}
.blue {
  background: var(--blue);
}
.profile-band {
  background: var(--blue);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.deep {
  color: var(--white);
  background: var(--deep);
}
.deep .lead,
.deep p,
.deep .section-kicker {
  color: rgba(255, 255, 255, .78);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 42px;
}
.section-head-stacked {
  display: block;
  max-width: 820px;
}
.section-head-stacked .lead {
  margin-top: 24px;
}
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}
.link-band {
  padding: 78px 0 88px;
}
.feature-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  position: relative;
  display: grid;
  min-height: 285px;
  padding: 28px;
  border: 1px solid rgba(96, 122, 115, .28);
  border-radius: 6px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 18px 50px rgba(29, 36, 39, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 6px 6px 0 0;
  background: var(--sage);
}
.feature-card:nth-child(2)::before {
  background: var(--red);
}
.feature-card:nth-child(3)::before {
  background: var(--deep);
}
.feature-card:nth-child(4)::before {
  background: var(--gold);
}
.feature-card:nth-child(5)::before {
  background: #4f7890;
}
.feature-card:nth-child(6)::before {
  background: #8f4961;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 122, 115, .5);
  box-shadow: 0 24px 70px rgba(29, 36, 39, .12);
}
.feature-card .section-kicker {
  margin: 18px 0 0;
}
.feature-card strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.12;
}
.feature-card span:not(.section-kicker) {
  margin-top: 18px;
  color: var(--muted);
}
.feature-card em {
  align-self: end;
  margin-top: 30px;
  color: var(--deep);
  font-style: normal;
  font-weight: 800;
}
.feature-card em::after {
  content: " ->";
}
.media-links {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.media-feature {
  min-height: 310px;
  background: rgba(255, 255, 255, .92);
}
.media-feature .source-logo {
  margin-top: 12px;
  width: fit-content;
}
.media-feature .date {
  margin-top: 20px;
}
.deep .media-feature .section-kicker,
.deep .media-feature .date {
  color: var(--red);
}
.deep .media-feature span:not(.section-kicker):not(.date) {
  color: var(--muted);
}
.vita-feature-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.vita-feature {
  min-height: 300px;
  background: rgba(255, 255, 255, .86);
}
.white .vita-feature {
  background: var(--paper);
}
.vita-feature span:not(.section-kicker) {
  color: var(--muted);
}
.vita-feature .section-kicker {
  color: var(--red);
}
.vita-program .vita-feature {
  min-height: 275px;
  background: var(--paper);
  box-shadow: 0 20px 58px rgba(29, 36, 39, .07);
}
.vita-memory .text-stack {
  max-width: 720px;
}
.memory-visual {
  overflow: hidden;
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(29, 36, 39, .12);
}
.memory-visual img {
  width: 100%;
  height: auto;
}
.memory-visual p {
  padding: 20px 24px;
  color: var(--muted);
  font-weight: 700;
}
.profile-table {
  border: 1px solid rgba(96, 122, 115, .24);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 70px rgba(29, 36, 39, .08);
}
.profile-table article {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 38px;
  padding: 30px 34px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .92);
}
.profile-table article:last-child {
  border-bottom: 0;
}
.profile-table article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--sage);
}
.profile-table article:nth-child(even) {
  background: rgba(251, 250, 247, .92);
}
.profile-table article:nth-child(2)::before,
.profile-table article:nth-child(5)::before {
  background: var(--red);
}
.profile-table article:nth-child(3)::before,
.profile-table article:nth-child(6)::before {
  background: var(--deep);
}
.profile-table article:nth-child(4)::before {
  background: var(--gold);
}
.profile-table time {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(157, 44, 43, .16);
  border-radius: 4px;
  color: var(--red);
  background: rgba(157, 44, 43, .07);
  font-weight: 800;
  line-height: 1.2;
}
.profile-table h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.62rem);
}
.profile-table p {
  max-width: 860px;
  margin-top: 10px;
  color: var(--muted);
}
.publication-list {
  display: grid;
  gap: 22px;
}
.publication-list article {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(96, 122, 115, .28);
  border-radius: 6px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 70px rgba(29, 36, 39, .08);
}
.publication-list img {
  width: 185px;
  max-height: 255px;
  justify-self: center;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 18px 44px rgba(29, 36, 39, .18);
  background: var(--white);
}
.publication-list time {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 4px;
  color: var(--red);
  background: rgba(157, 44, 43, .07);
  font-weight: 800;
}
.publication-list h3 {
  margin-top: 14px;
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
}
.publication-list p {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
}
.text-stack > * + * {
  margin-top: 18px;
}
li {
  color: var(--muted);
}
.source-logo {
  display: inline-flex;
  align-items: center;
  min-height: 56px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}
.source-logo-dark {
  background: #003d7f;
}
.source-logo-transparent {
  background: transparent;
  border-color: transparent;
  padding-left: 0;
  padding-right: 0;
}
.source-logo-wide {
  width: 260px;
  padding: 10px 14px;
}
.source-logo img {
  width: auto;
  max-width: 190px;
  max-height: 42px;
  object-fit: contain;
}
.source-logo-wide img {
  display: block;
  width: 230px;
  height: auto;
  max-width: none;
  max-height: none;
}
.image-card {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: var(--white);
}
.image-card img {
  width: 100%;
  height: auto;
}
.portrait img {
  height: auto;
  object-position: center 18%;
}
.vita-hero {
  padding: 86px 0 92px;
  background: linear-gradient(180deg, var(--white), var(--paper));
}
.vita-hero .grid-2 {
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1fr);
  gap: 76px;
}
.vita-hero .image-card {
  max-width: 520px;
  justify-self: end;
}
.vita-hero h1 {
  max-width: 650px;
  font-size: clamp(2.85rem, 5vw, 5rem);
}
.vita-hero .lead {
  max-width: 620px;
}
.vita-career,
.vita-program,
.vita-memory,
.vita-books-section,
.vita-awards {
  padding: 88px 0;
}
.vita-career .section-head-stacked,
.vita-program .section-head-stacked,
.vita-books-section .section-head-stacked,
.vita-awards .section-head-stacked {
  max-width: 760px;
  margin-bottom: 36px;
}
.vita-career h2,
.vita-program h2,
.vita-books-section h2,
.vita-awards h2,
.vita-memory h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.55rem);
}
.vita-career {
  background: #e7f0f1;
}
.vita-program {
  background: var(--white);
}
.vita-memory {
  background: linear-gradient(180deg, #e9f0f3, #f4eee5);
}
.vita-books-section {
  background: var(--white);
}
.vita-awards {
  background: var(--warm);
}
.memory-deep-hero {
  padding: 92px 0 98px;
}
.memory-deep-hero .grid-2 {
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: center;
}
.memory-deep-hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}
.memory-deep-hero .lead {
  max-width: 700px;
}
.memory-hero-image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .28);
}
.memory-hero-image img {
  width: 100%;
  height: auto;
}
.memory-opening,
.memory-day,
.memory-people,
.memory-impact {
  padding: 88px 0;
}
.memory-opening {
  border-bottom: 1px solid var(--line);
}
.memory-editorial {
  max-width: 860px;
}
.memory-editorial h2,
.memory-day h2,
.memory-people h2,
.memory-impact h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.55rem);
}
.memory-editorial .text-stack {
  margin-top: 26px;
}
.memory-editorial .lead {
  max-width: 820px;
}
.memory-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}
.memory-stat-grid article {
  min-height: 170px;
  padding: 28px;
  border: 1px solid rgba(96, 122, 115, .24);
  border-top: 5px solid var(--sage);
  border-radius: 6px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 20px 60px rgba(29, 36, 39, .08);
}
.memory-stat-grid article:nth-child(2) {
  border-top-color: var(--red);
}
.memory-stat-grid article:nth-child(3) {
  border-top-color: var(--deep);
}
.memory-stat-grid strong {
  display: block;
  color: var(--ink);
  font-size: clamp(2.4rem, 4vw, 4.1rem);
  line-height: 1;
}
.memory-stat-grid span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.05rem;
}
.memory-day {
  background: #e7f0f1;
}
.memory-day .section-head-stacked,
.memory-impact .section-head-stacked {
  max-width: 820px;
  margin-bottom: 38px;
}
.memory-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.memory-path article {
  position: relative;
  min-height: 310px;
  padding: 32px 30px;
  border: 1px solid rgba(96, 122, 115, .28);
  border-radius: 6px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 60px rgba(29, 36, 39, .09);
}
.memory-path article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--sage);
}
.memory-path article:nth-child(2)::before {
  background: var(--red);
}
.memory-path article:nth-child(3)::before {
  background: var(--deep);
}
.memory-path time {
  display: inline-block;
  color: var(--red);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.memory-path h3 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
}
.memory-path p {
  margin-top: 18px;
  color: var(--muted);
}
.memory-people {
  background: var(--white);
}
.memory-people .grid-2 {
  align-items: center;
}
.memory-people .memory-visual {
  max-width: 620px;
}
.memory-impact {
  background: var(--warm);
}
.media-hero {
  padding: 92px 0 98px;
}
.media-hero .grid-2 {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 70px;
  align-items: center;
}
.media-hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}
.media-hero .lead {
  max-width: 720px;
}
.media-hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
}
.media-hero-panel span {
  min-height: 118px;
  display: flex;
  align-items: end;
  padding: 20px;
  border-top: 5px solid var(--sage);
  border-radius: 5px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  font-weight: 800;
}
.media-hero-panel span:nth-child(2) {
  border-top-color: var(--red);
}
.media-hero-panel span:nth-child(3) {
  border-top-color: var(--gold);
}
.media-hero-panel span:nth-child(4) {
  border-top-color: #4f7890;
}
.media-book,
.media-history,
.media-conversation {
  padding: 88px 0;
}
.media-book h2,
.media-history h2,
.media-conversation h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.55rem);
}
.media-book {
  background: #e7f0f1;
}
.media-book .section-head-stacked,
.media-history .section-head-stacked,
.media-conversation .section-head-stacked {
  max-width: 820px;
  margin-bottom: 38px;
}
.media-list {
  display: grid;
  gap: 24px;
}
.media-list article {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 230px;
  padding: 30px 34px;
  border: 1px solid rgba(96, 122, 115, .24);
  border-radius: 6px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 26px 76px rgba(29, 36, 39, .1);
}
.media-list.compact article {
  min-height: 210px;
}
.media-source {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 132px;
  min-height: 132px;
  border-radius: 5px;
  background: var(--paper);
}
.media-source img {
  max-width: 130px;
  max-height: 58px;
  object-fit: contain;
}
.media-source-bayern2 {
  background: var(--paper);
}
.media-source-bayern2 img {
  width: 150px;
  max-width: none;
  max-height: none;
}
.media-source-hr-info img {
  width: 150px;
  max-width: none;
  max-height: none;
}
.media-source-fill {
  overflow: hidden;
  padding: 0;
  border-radius: 5px;
  background: transparent;
}
.media-source-fill img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: inherit;
  object-fit: cover;
}
.media-list h3 {
  margin-top: 10px;
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}
.media-list p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
}
.media-history {
  background: var(--white);
}
.media-history .feature-card em a {
  color: inherit;
  text-decoration: none;
}
.media-conversation {
  background: var(--warm);
}
.contact-form {
  display: grid;
  gap: 12px;
  padding: 30px 34px;
  border: 1px solid rgba(96, 122, 115, .24);
  border-left: 6px solid var(--red);
  border-radius: 6px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 70px rgba(29, 36, 39, .1);
}
.contact-form span {
  margin-bottom: 8px;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-form label {
  color: var(--deep);
  font-size: .86rem;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--sage);
  outline: 3px solid rgba(96, 122, 115, .16);
}
.contact-form button {
  width: fit-content;
  margin-top: 8px;
  border: 0;
  cursor: pointer;
}
.dates-table {
  border: 0;
  border-radius: 6px;
  box-shadow: 0 28px 78px rgba(29, 36, 39, .11);
}
.dates-table article {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .95);
}
.dates-table article:nth-child(even) {
  background: rgba(251, 250, 247, .95);
}
.dates-table article::before {
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--sage);
}
.dates-table article:nth-child(2)::before {
  background: var(--red);
}
.dates-table article:nth-child(3)::before {
  background: var(--deep);
}
.dates-table time {
  width: 100%;
  min-height: 100%;
  padding: 28px 30px;
  border: 0;
  color: var(--sage);
  background: transparent;
  font-size: 1rem;
  letter-spacing: .02em;
}
.dates-table article:nth-child(2) time {
  color: var(--red);
}
.dates-table article:nth-child(3) time {
  color: var(--deep);
}
.dates-table article > div {
  padding: 28px 34px;
}
.dates-table h3 {
  font-size: clamp(1.32rem, 1.75vw, 1.7rem);
}
.contact-simple,
.dates-simple {
  min-height: calc(100vh - 82px);
  padding: 92px 0;
}
.contact-simple h1,
.dates-simple h1 {
  max-width: 720px;
  font-size: clamp(2.15rem, 3.45vw, 3.6rem);
}
.contact-simple .lead,
.dates-simple .lead {
  max-width: 650px;
}
.contact-simple {
  min-height: auto;
  padding: 92px 0 82px;
}
.contact-simple-head {
  max-width: 760px;
}
.contact-info-section {
  padding: 78px 0;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
  gap: 28px;
  align-items: start;
}
.contact-info-card {
  min-height: 230px;
  padding: 30px 34px;
  border: 1px solid rgba(96, 122, 115, .24);
  border-top: 5px solid var(--sage);
  border-radius: 6px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 24px 70px rgba(29, 36, 39, .08);
}
.contact-info-card:nth-child(2) {
  border-top-color: rgb(114, 86, 27);
}
.contact-direct {
  max-width: none;
}
.contact-direct a {
  display: block;
  margin-top: 10px;
  color: var(--deep);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 800;
  line-height: 1.14;
  text-decoration: none;
  overflow-wrap: anywhere;
}
.contact-direct p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 16px;
  color: var(--muted);
}
.contact-address-line {
  max-width: none;
}
.contact-address-line p:not(.section-kicker) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  line-height: 1.65;
}
.contact-form-section {
  padding-top: 78px;
}
.contact-form-wrap {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, .9fr);
  gap: 58px;
  align-items: start;
}
.contact-form-head h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
}
.contact-form-head .lead {
  max-width: 560px;
}
.contact-form-standalone {
  margin: 0;
}
.dates-simple-head {
  max-width: 760px;
  margin-bottom: 36px;
}
.dates-note {
  max-width: 760px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid rgba(96, 122, 115, .26);
}
.dates-cta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.dates-note p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
}
.dates-note strong {
  color: var(--deep);
}
.error-page {
  min-height: calc(100vh - 148px);
  display: grid;
  align-items: center;
  background: linear-gradient(180deg, var(--blue), var(--paper));
}
.error-inner {
  max-width: 820px;
}
.error-inner h1 {
  max-width: 760px;
}
.error-inner .lead {
  max-width: 680px;
}
.legal-page {
  background: var(--paper);
}
.legal-hero {
  padding: 88px 0 58px;
  background: var(--warm);
}
.legal-hero .wrap,
.legal-content {
  max-width: 900px;
}
.legal-hero h1 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.45vw, 3.6rem);
}
.legal-content {
  display: grid;
  gap: 38px;
  padding: 74px 0 94px;
}
.legal-block {
  padding-top: 30px;
  border-top: 1px solid rgba(96, 122, 115, .26);
}
.legal-block:first-child {
  padding-top: 0;
  border-top: 0;
}
.legal-block h2 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
}
.legal-block h3 {
  margin: 24px 0 8px;
}
.legal-block p,
.legal-block li {
  color: var(--muted);
}
.legal-block p + p,
.legal-block ul + p,
.legal-block p + ul {
  margin-top: 14px;
}
.legal-block ul {
  margin: 14px 0 0;
  padding-left: 1.2em;
}
.footer a {
  color: inherit;
}
.footer a:hover {
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.aos-ready [data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .62s ease, transform .62s ease;
  transition-delay: var(--aos-delay, 0ms);
  will-change: opacity, transform;
}
.aos-ready [data-aos="fade"] {
  transform: none;
}
.aos-ready [data-aos].aos-visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(216, 221, 217, .92);
  border-radius: 4px;
  color: var(--white);
  background: var(--deep);
  box-shadow: 0 16px 44px rgba(29, 36, 39, .22);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .18s ease, transform .18s ease, background .18s ease;
}
.scroll-top:hover {
  background: var(--sage);
}
.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.scroll-top.is-over-footer {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}
.book-cover {
  width: min(100%, 330px);
  justify-self: center;
  box-shadow: 0 24px 60px rgba(29, 36, 39, .22);
}
.chapter-list {
  display: grid;
  gap: 16px;
}
.chapter {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}
.chapter strong {
  color: var(--red);
}
.date {
  color: var(--red);
  font-weight: 800;
}
.teaser-quote {
  padding: 18px 20px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, .62);
}
.teaser-quote p {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.3;
}
.teaser-quote span {
  display: block;
  margin-top: 6px;
  color: var(--red);
  font-weight: 800;
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  padding: 34px;
  overflow: auto;
  background: rgba(20, 28, 29, .92);
}
.modal:target {
  display: block;
}
.modal-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}
.modal-bar {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 12px 0 18px;
  color: var(--white);
  background: rgba(20, 28, 29, .92);
}
.modal-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 4px;
  color: var(--white);
  font-weight: 800;
}
.reader-pages {
  display: grid;
  gap: 18px;
}
.reader-pages img {
  width: min(100%, 980px);
  margin: 0 auto;
  border-radius: 4px;
  background: var(--white);
  box-shadow: 0 20px 80px rgba(0, 0, 0, .35);
}
.footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--paper);
  font-size: .92rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.vita-career .profile-table,
.vita-awards .profile-table {
  border: 0;
  border-radius: 6px;
  box-shadow: 0 28px 78px rgba(29, 36, 39, .11);
}
.vita-career .profile-table article,
.vita-awards .profile-table article {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.vita-career .profile-table article::before,
.vita-awards .profile-table article::before {
  inset: 0 auto 0 210px;
  width: 1px;
  background: var(--line);
}
.vita-career .profile-table time,
.vita-awards .profile-table time {
  width: 100%;
  min-height: 100%;
  padding: 28px 30px;
  border: 0;
  border-radius: 0;
  color: var(--deep);
  background: transparent;
  font-size: 1rem;
  letter-spacing: .02em;
}
.vita-career .profile-table article:nth-child(2) time,
.vita-career .profile-table article:nth-child(5) time,
.vita-awards .profile-table article:nth-child(2) time,
.vita-awards .profile-table article:nth-child(5) time {
  color: var(--deep);
  background: transparent;
}
.vita-career .profile-table article:nth-child(3) time,
.vita-career .profile-table article:nth-child(6) time,
.vita-awards .profile-table article:nth-child(3) time,
.vita-awards .profile-table article:nth-child(6) time {
  color: var(--red);
  background: transparent;
}
.vita-career .profile-table article:nth-child(4) time,
.vita-awards .profile-table article:nth-child(4) time {
  color: #72561b;
  background: transparent;
}
.vita-career .profile-table article,
.vita-awards .profile-table article {
  background: rgba(255, 255, 255, .95);
}
.vita-career .profile-table article:nth-child(even),
.vita-awards .profile-table article:nth-child(even) {
  background: rgba(251, 250, 247, .95);
}
.vita-career .profile-table article::before,
.vita-awards .profile-table article::before {
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--sage);
}
.vita-career .profile-table article:nth-child(2)::before,
.vita-awards .profile-table article:nth-child(2)::before {
  background: var(--deep);
}
.vita-career .profile-table article:nth-child(3)::before,
.vita-awards .profile-table article:nth-child(3)::before {
  background: var(--red);
}
.vita-career .profile-table article:nth-child(4)::before,
.vita-awards .profile-table article:nth-child(4)::before {
  background: var(--gold);
}
.vita-career .profile-table article:nth-child(5)::before,
.vita-awards .profile-table article:nth-child(5)::before {
  background: #4f7890;
}
.vita-career .profile-table article:nth-child(6)::before,
.vita-awards .profile-table article:nth-child(6)::before {
  background: #8f4961;
}
.vita-career .profile-table article:nth-child(1) time,
.vita-awards .profile-table article:nth-child(1) time {
  color: var(--sage);
}
.vita-career .profile-table article:nth-child(2) time,
.vita-awards .profile-table article:nth-child(2) time {
  color: var(--deep);
}
.vita-career .profile-table article:nth-child(5) time,
.vita-awards .profile-table article:nth-child(5) time {
  color: #4f7890;
}
.vita-career .profile-table article:nth-child(6) time,
.vita-awards .profile-table article:nth-child(6) time {
  color: #8f4961;
}
.vita-career .profile-table article > div,
.vita-awards .profile-table article > div {
  padding: 28px 34px;
}
.vita-career .profile-table h3,
.vita-awards .profile-table h3 {
  font-size: clamp(1.32rem, 1.75vw, 1.7rem);
}
.vita-career .profile-table p,
.vita-awards .profile-table p {
  max-width: 900px;
  font-size: 1rem;
}
.vita-books-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.vita-books-section .publication-list {
  gap: 26px;
}
.vita-books-section .publication-list article {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 36px;
  min-height: 270px;
  padding: 28px 34px;
  overflow: visible;
  border-color: rgba(96, 122, 115, .22);
  background: var(--paper);
  box-shadow: 0 22px 62px rgba(29, 36, 39, .08);
}
.vita-books-section .publication-list article:nth-child(2) {
  background: var(--paper);
}
.vita-books-section .publication-list img {
  align-self: center;
  width: 170px;
  max-height: 270px;
  margin: 0 auto;
  box-shadow: 0 18px 44px rgba(29, 36, 39, .18);
}
.vita-books-section .publication-list article > div {
  align-self: center;
  padding: 0;
}
.vita-books-section .publication-list h3 {
  max-width: 720px;
  font-size: clamp(2.15rem, 3.2vw, 3.3rem);
}
.vita-books-section .publication-list p {
  max-width: 760px;
  font-size: 1.08rem;
}

@media (max-width: 1180px) {
.nav-inner {
    position: relative;
    min-height: 68px;
    align-items: center;
    flex-direction: row;
    padding: 12px 0;
    gap: 16px;
  }
.nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
.nav-links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(216, 221, 217, .92);
    border-radius: 6px;
    background: rgba(251, 250, 247, .98);
    box-shadow: 0 24px 70px rgba(29, 36, 39, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease;
  }
.nav.nav-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
.nav-links a {
    padding: 12px 14px;
  }
}

@media (max-width: 960px) {
.hero-inner,
.section-head,
.grid-2,
.vita-hero .grid-2 {
    grid-template-columns: 1fr;
  }
.memory-deep-hero .grid-2 {
    grid-template-columns: 1fr;
    gap: 42px;
  }
.media-hero .grid-2 {
    grid-template-columns: 1fr;
    gap: 42px;
  }
.hero-image {
    justify-self: start;
  }
.vita-hero .image-card {
    justify-self: start;
  }
.feature-links,
.vita-feature-links,
.memory-stat-grid,
.memory-path {
    grid-template-columns: 1fr 1fr;
  }
.media-list article {
    grid-template-columns: 170px minmax(0, 1fr);
  }
.contact-info-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
.contact-form-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
.nav-inner,
.wrap {
    width: min(100% - 28px, 1180px);
  }
.section {
    padding: 68px 0;
  }
.hero-inner {
    min-height: auto;
    padding: 54px 0 56px;
  }
.feature-links,
.vita-feature-links,
.memory-stat-grid,
.memory-path,
.chapter,
.profile-table article,
.publication-list article {
    grid-template-columns: 1fr;
  }
.feature-card {
    min-height: 0;
  }
.memory-deep-hero {
    padding: 68px 0;
  }
.memory-hero-image img {
    min-height: 0;
  }
.memory-path article,
.memory-stat-grid article {
    min-height: 0;
  }
.media-hero {
    padding: 68px 0;
  }
.media-hero-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }
.media-hero-panel span {
    min-height: 80px;
  }
.media-list article {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 22px;
  }
.media-source {
    height: 98px;
    min-height: 98px;
    justify-content: flex-start;
    padding: 18px;
  }
.contact-simple,
.dates-simple {
    padding: 68px 0;
  }
.contact-form {
    padding: 24px 22px;
  }
.publication-list img {
    width: 130px;
  }
.vita-career .profile-table article,
.vita-awards .profile-table article,
.dates-table article,
.vita-books-section .publication-list article {
    grid-template-columns: 1fr;
  }
.vita-career .profile-table article::before,
.vita-awards .profile-table article::before,
.dates-table article::before {
    display: none;
  }
.vita-career .profile-table time,
.vita-awards .profile-table time,
.dates-table time {
    min-height: 0;
    padding: 16px 22px;
  }
.vita-career .profile-table article > div,
.vita-awards .profile-table article > div,
.dates-table article > div,
.vita-books-section .publication-list article > div {
    padding: 24px 22px;
  }
.vita-books-section .publication-list article,
.vita-books-section .publication-list article:nth-child(2) {
    background: var(--paper);
  }
.vita-books-section .publication-list img {
    width: 150px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .aos-ready [data-aos] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .scroll-top {
    transition: none;
  }
}
