:root {
  --paper: #fbfbf8;
  --paper-soft: #f1f6f2;
  --paper-warm: #f8f0f3;
  --surface: rgba(255, 255, 255, 0.78);
  --ink: #17231f;
  --muted: #5b6762;
  --teal: #215f5c;
  --teal-dark: #133f3d;
  --sage: #c9d8cc;
  --plum: #70384f;
  --wine: #8a425a;
  --gold: #b98b5e;
  --line: rgba(23, 35, 31, 0.16);
  --line-strong: rgba(23, 35, 31, 0.24);
  --shadow: 0 24px 70px rgba(23, 35, 31, 0.14);
  --shadow-soft: 0 18px 48px rgba(23, 35, 31, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(23, 35, 31, 0.028) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, rgba(23, 35, 31, 0.02) 1px, transparent 1px) 0 0 / 44px 44px,
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  z-index: 10;
  width: auto;
  height: auto;
  clip: auto;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 54px);
  background: rgba(251, 251, 248, 0.9);
  border-bottom: 1px solid rgba(23, 35, 31, 0.08);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(23, 35, 31, 0.06);
}

.brand {
  display: grid;
  gap: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.brand span:first-child {
  color: var(--teal);
}

.brand::after {
  content: "";
  width: 42px;
  height: 2px;
  margin-top: 8px;
  background: linear-gradient(90deg, var(--teal), var(--wine), transparent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--teal-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(19, 63, 61, 0.08);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.1;
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-cta,
.button.primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 14px 28px rgba(19, 63, 61, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.52);
  color: var(--teal-dark);
}

.button:hover,
.button:focus,
.nav-cta:hover,
.nav-cta:focus {
  box-shadow: 0 16px 34px rgba(19, 63, 61, 0.16);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: stretch;
  min-height: calc(100vh - 76px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(241, 246, 242, 0.58)),
    var(--paper);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: clamp(20px, 5vw, 54px);
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(112, 56, 79, 0.26), transparent);
  z-index: -1;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(56px, 9vw, 110px) clamp(24px, 6vw, 74px);
}

.hero-copy::before {
  content: "";
  width: 86px;
  height: 5px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--teal), var(--wine), var(--gold));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 8.1em;
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 6.7vw, 6.6rem);
  line-height: 0.94;
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.7vw, 4.8rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-copy p {
  width: 100%;
  max-width: min(640px, 100%);
  margin-bottom: 20px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  line-height: 1.48;
}

.hero-copy .hero-subcopy {
  max-width: min(580px, 100%);
  margin-bottom: 34px;
  font-size: clamp(1rem, 1.25vw, 1.1rem);
  line-height: 1.62;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-media {
  position: relative;
  min-height: clamp(560px, calc(100vh - 76px), 780px);
  margin: 0;
  overflow: hidden;
  background: var(--paper-soft);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 22px 0 46px rgba(23, 35, 31, 0.14);
  pointer-events: none;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  gap: 14px;
  margin: clamp(18px, 3vw, 34px) auto 0;
  padding: 0 clamp(22px, 4vw, 42px);
}

.intro-band a {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 26px 28px;
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.intro-band a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 18px;
  left: 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--wine));
}

.intro-band a:hover,
.intro-band a:focus {
  border-color: rgba(33, 95, 92, 0.34);
  box-shadow: 0 24px 54px rgba(23, 35, 31, 0.12);
  transform: translateY(-2px);
}

.intro-band strong {
  color: var(--teal-dark);
  font-size: 1rem;
}

.intro-band span {
  color: var(--muted);
}

.section {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) clamp(22px, 4vw, 42px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-copy p:not(.section-label) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-section,
.speaking-section,
.letters-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.portrait-frame {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 0.56;
  justify-self: center;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 35, 31, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  object-position: 50% 43%;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credential-list span {
  padding: 8px 12px;
  border: 1px solid rgba(33, 95, 92, 0.22);
  background: rgba(255, 255, 255, 0.54);
  color: var(--teal-dark);
  font-size: 0.85rem;
  font-weight: 750;
}

.book-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  max-width: none;
  padding-right: max(clamp(22px, 4vw, 42px), calc((100vw - var(--max)) / 2 + 42px));
  padding-left: max(clamp(22px, 4vw, 42px), calc((100vw - var(--max)) / 2 + 42px));
  background:
    linear-gradient(135deg, rgba(201, 216, 204, 0.72), rgba(248, 240, 243, 0.78) 58%, rgba(251, 251, 248, 0.92)),
    var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.book-section::before {
  content: "A Letter to Our Daughters";
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2 + 42px));
  bottom: 26px;
  max-width: min(980px, 78vw);
  color: rgba(112, 56, 79, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  line-height: 0.9;
  pointer-events: none;
  text-align: right;
  z-index: 0;
}

.book-art {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 24px;
}

.book-section .section-copy {
  position: relative;
  z-index: 1;
}

.book-art::before {
  content: "";
  position: absolute;
  inset: 8px 28px 12px;
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 30px 76px rgba(23, 35, 31, 0.1);
  transform: rotate(-2.5deg);
}

.book-cover {
  position: relative;
  z-index: 1;
  width: min(320px, 72vw);
  height: auto;
  border-radius: 5px;
  box-shadow: 0 34px 74px rgba(23, 35, 31, 0.3);
  transform: rotate(1deg);
}

.book-credit {
  font-size: 0.94rem !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 38px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.media-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 44px rgba(23, 35, 31, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.media-card:hover {
  border-color: rgba(33, 95, 92, 0.28);
  box-shadow: 0 26px 58px rgba(23, 35, 31, 0.12);
  transform: translateY(-2px);
}

.media-card span {
  display: block;
  margin-bottom: 50px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-card p,
.topic-list {
  color: var(--muted);
}

.feature-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.feature-links > a,
.feature-links > article {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 24px 26px;
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 38px rgba(23, 35, 31, 0.07);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.feature-links > a::before,
.feature-links > article::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--teal), var(--wine));
  opacity: 0.8;
}

.feature-links > a:hover,
.feature-links > a:focus {
  border-color: rgba(33, 95, 92, 0.42);
  box-shadow: 0 24px 54px rgba(23, 35, 31, 0.11);
  transform: translateY(-2px);
}

.feature-links span {
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-links strong {
  color: var(--teal-dark);
  font-size: 1.08rem;
  line-height: 1.25;
}

.feature-links p {
  margin: 0;
  color: var(--muted);
}

.audio-feature audio {
  width: 100%;
  margin-top: 12px;
  accent-color: var(--teal);
}

.audio-feature .text-link {
  width: fit-content;
  min-height: 0;
  margin-top: 4px;
}

.wide-photo {
  position: relative;
  order: 2;
  aspect-ratio: 3 / 2;
  height: auto;
  margin: 0;
  padding: 10px;
  overflow: hidden;
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.wide-photo img {
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
  object-position: center;
}

.topic-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding-left: 20px;
}

.topic-list li::marker {
  color: var(--wine);
}

.letters-section {
  position: relative;
  align-items: start;
  max-width: none;
  padding-right: max(clamp(22px, 4vw, 42px), calc((100vw - var(--max)) / 2 + 42px));
  padding-left: max(clamp(22px, 4vw, 42px), calc((100vw - var(--max)) / 2 + 42px));
  background:
    linear-gradient(135deg, rgba(248, 240, 243, 0.92), rgba(241, 246, 242, 0.78)),
    var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.letters-section::before {
  content: "\201C";
  position: absolute;
  top: -18px;
  left: max(22px, calc((100vw - var(--max)) / 2 + 28px));
  color: rgba(112, 56, 79, 0.11);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(10rem, 22vw, 18rem);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.letters-section .section-copy,
.letters-section form {
  position: relative;
  z-index: 1;
}

form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(23, 35, 31, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 35, 31, 0.22);
  border-radius: var(--radius);
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 13px 14px;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--teal-dark) 50%),
    linear-gradient(135deg, var(--teal-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 42px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(33, 95, 92, 0.18);
  border-color: var(--teal);
}

.honeypot {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-section {
  align-items: start;
}

.thank-you-section {
  min-height: calc(100vh - 190px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.thank-you-section h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.thank-you-section p:not(.section-label) {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.1rem;
}

.cv-page {
  background:
    linear-gradient(180deg, rgba(241, 246, 242, 0.72), rgba(251, 251, 248, 0.96) 34%),
    var(--paper);
}

.cv-hero {
  position: relative;
  max-width: none;
  padding: clamp(72px, 9vw, 118px) max(clamp(22px, 4vw, 42px), calc((100vw - var(--max)) / 2 + 42px)) clamp(56px, 7vw, 88px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(201, 216, 204, 0.48) 54%, rgba(248, 240, 243, 0.74)),
    var(--paper-soft);
  overflow: hidden;
  isolation: isolate;
}

.cv-hero::after {
  content: "CV";
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2 + 42px));
  bottom: -18px;
  color: rgba(112, 56, 79, 0.09);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(8rem, 22vw, 19rem);
  line-height: 0.8;
  z-index: -1;
}

.cv-hero h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.2vw, 6.1rem);
}

.cv-hero p:not(.section-label) {
  max-width: 760px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.65vw, 1.38rem);
  line-height: 1.52;
}

.cv-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(30px, 5vw, 68px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 104px) clamp(22px, 4vw, 42px);
  align-items: start;
}

.cv-sidebar {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 18px;
}

.cv-sidebar-block,
.cv-section {
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(23, 35, 31, 0.07);
}

.cv-sidebar-block {
  padding: 24px;
}

.cv-sidebar-block h2,
.cv-section h2 {
  max-width: none;
  margin-bottom: 16px;
  color: var(--teal-dark);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.cv-sidebar-block p,
.cv-section p,
.cv-section li,
.cv-fact-list dd {
  color: var(--muted);
}

.cv-tag-list,
.cv-section ul {
  margin: 0;
  padding-left: 20px;
}

.cv-tag-list {
  display: grid;
  gap: 8px;
}

.cv-tag-list li::marker,
.cv-section li::marker {
  color: var(--wine);
}

.cv-fact-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.cv-fact-list div {
  display: grid;
  gap: 3px;
}

.cv-fact-list dt {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.32;
}

.cv-fact-list dd {
  margin: 0;
  line-height: 1.45;
}

.cv-main {
  display: grid;
  gap: 18px;
}

.cv-section {
  padding: clamp(24px, 4vw, 36px);
}

.cv-section > p:last-child,
.cv-section > ul:last-child,
.cv-entry:last-child,
.cv-columns ul:last-child {
  margin-bottom: 0;
}

.cv-entry {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.cv-entry + .cv-entry {
  margin-top: 22px;
}

.cv-entry-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 6px;
}

.cv-entry-head h3,
.cv-columns h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.cv-entry-head span {
  flex: 0 0 auto;
  color: var(--wine);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.35;
}

.cv-entry p {
  margin-bottom: 12px;
}

.cv-publication-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(20px, 5vw, 54px);
  background: var(--ink);
  color: white;
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ── Endorsements ──────────────────────────────────── */

.endorsements-section {
  position: relative;
  max-width: none;
  padding-right: max(clamp(22px, 4vw, 42px), calc((100vw - var(--max)) / 2 + 42px));
  padding-left: max(clamp(22px, 4vw, 42px), calc((100vw - var(--max)) / 2 + 42px));
  background:
    linear-gradient(180deg, rgba(241, 246, 242, 0.72), rgba(251, 251, 248, 0.96)),
    var(--paper-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.endorsements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 46px;
  align-items: start;
}

.endorsement-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 52px 34px 34px;
  border: 1px solid rgba(23, 35, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 56px rgba(23, 35, 31, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.endorsement-card:hover {
  border-color: rgba(112, 56, 79, 0.22);
  box-shadow: 0 30px 70px rgba(23, 35, 31, 0.12);
  transform: translateY(-2px);
}

.endorsement-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 28px;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  opacity: 0.22;
  pointer-events: none;
}

.endorsement-featured {
  grid-column: 1 / -1;
}

.endorsement-wide {
  grid-column: 1 / -1;
}

.endorsement-card p {
  margin-bottom: 1em;
  color: var(--ink);
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.68;
}

.endorsement-card p:last-of-type {
  margin-bottom: 0;
}

.endorsement-cite {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 3px;
  font-style: normal;
}

.endorsement-cite strong {
  color: var(--teal-dark);
  font-size: 0.95rem;
}

.endorsement-cite span {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .menu-button {
    display: inline-grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: transparent;
  }

  .menu-button span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--ink);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero,
  .about-section,
  .book-section,
  .speaking-section,
  .letters-section,
  .contact-section,
  .cv-layout,
  .cv-columns,
  .feature-links,
  .media-grid,
  .endorsements-grid {
    grid-template-columns: 1fr;
  }

  .endorsement-featured,
  .endorsement-wide {
    grid-column: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 68px;
  }

  .hero-media {
    min-height: auto;
    aspect-ratio: 3 / 2;
  }

  .intro-band {
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0;
    padding: 0;
    border-right: 0;
    border-left: 0;
  }

  .intro-band a {
    border-radius: 0;
    min-height: 0;
    border-right: 0;
    box-shadow: none;
  }

  .book-section::before {
    display: none;
  }

  .wide-photo {
    order: 0;
  }

  .portrait-frame,
  .wide-photo {
    width: min(100%, 680px);
    justify-self: start;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .cv-sidebar {
    position: static;
  }

  .cv-entry-head {
    display: grid;
    gap: 4px;
  }
}

@media (max-width: 640px) {
  h1 {
    max-width: 7.3em;
    font-size: clamp(3rem, 13.6vw, 3.75rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .hero-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-media {
    aspect-ratio: 4 / 3;
  }

  .hero-media::before {
    inset: 10px;
  }

  .book-art {
    padding: 10px 0 4px;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .button-row .button {
    width: 100%;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .portrait-frame {
    width: min(100%, 420px);
  }
}

@media print {
  body {
    background: white;
    color: #111;
    font-size: 11pt;
  }

  .site-header,
  .site-footer,
  .cv-hero-actions {
    display: none;
  }

  .cv-page,
  .cv-hero,
  .cv-sidebar-block,
  .cv-section {
    background: white;
    box-shadow: none;
  }

  .cv-hero {
    padding: 0 0 24px;
    border-bottom: 1px solid #999;
  }

  .cv-hero::after {
    display: none;
  }

  .cv-hero h1 {
    font-size: 30pt;
  }

  .cv-hero p:not(.section-label) {
    max-width: none;
    color: #333;
    font-size: 12pt;
  }

  .cv-layout {
    display: block;
    max-width: none;
    padding: 24px 0 0;
  }

  .cv-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 18px;
  }

  .cv-sidebar-block,
  .cv-section {
    break-inside: avoid;
    margin-bottom: 12px;
    padding: 16px;
    border-color: #ccc;
  }

  .cv-entry-head {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
