/* ============================================================
   redesign.css — Quiet authority, human presence, evidence in motion
   Loaded after enhance.css; intentionally limited to visual overrides.
   ============================================================ */

:root {
  --rd-ink: #0d1b2a;
  --rd-ink-deep: #060e18;
  --rd-ink-soft: #14253a;
  --rd-ivory: #f5f0e8;
  --rd-paper: #fffdf8;
  --rd-oxblood: #9b1d20;
  --rd-oxblood-dark: #741417;
  --rd-gold: #c9a84c;
  --rd-gold-light: #ead89c;
  --rd-text-on-dark: #f8f9fa;
  --rd-muted-on-dark: #b8c4d3;
  --rd-text-on-light: #16202b;
  --rd-muted-on-light: #5d574f;
  --rd-line-dark: rgba(234, 216, 156, 0.22);
  --rd-line-light: rgba(13, 27, 42, 0.14);
  --rd-shadow-soft: 0 18px 54px rgba(6, 14, 24, 0.1);
  --rd-shadow-dark: 0 24px 70px rgba(0, 0, 0, 0.28);
  --rd-radius-sm: 8px;
  --rd-radius: 14px;
  --rd-radius-lg: 28px;
  --rd-section-space: clamp(4.75rem, 8vw, 8.5rem);

  /* One serif + one sans. Both UI and body now share Inter. */
  --font-ui: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html,
body {
  overflow-x: clip;
}

html {
  scroll-padding-top: 84px;
}

body {
  color: var(--rd-text-on-dark);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

body::after {
  opacity: 0.016;
}

p,
li {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

/* ============================================================
   Global hierarchy, contrast, and interaction discipline
   ============================================================ */

.section,
.pathways-section,
.featured-impact,
.selected-work,
.speaking-preview,
.collaboration-cta {
  padding-block: var(--rd-section-space);
}

.section-header {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-title,
.cv-section-title {
  letter-spacing: -0.025em;
}

.section-subtitle {
  max-width: 64ch;
  line-height: 1.75;
}

.section-deep,
.featured-impact,
.speaking-preview,
.collaboration-cta {
  color: var(--rd-text-on-dark);
}

.section-warm,
.section-philosophy,
.pathways-section,
.selected-work,
.proof-strip {
  color: var(--rd-text-on-light);
}

/* Gold/white carry information on dark; oxblood carries it on warm. */
.section-deep .section-eyebrow,
.section-deep .section-link,
.featured-impact .section-eyebrow,
.featured-impact .section-link,
.speaking-preview .section-eyebrow,
.speaking-preview .section-link,
.collaboration-cta .section-eyebrow,
.inner-hero .section-eyebrow,
.impact-hero .section-eyebrow,
.impact-hero .hero-credentials {
  color: var(--rd-gold-light);
}

.section-warm .section-eyebrow,
.section-philosophy .section-eyebrow,
.pathways-section .section-eyebrow,
.selected-work .section-eyebrow,
.proof-strip .section-eyebrow,
.section-warm .research-focus-number,
.section-warm .rfc-note {
  color: var(--rd-oxblood);
}

.section-deep .btn-ghost,
.featured-impact .btn-ghost,
.speaking-preview .btn-ghost,
.collaboration-cta .btn-ghost,
.section-cta-block .btn-ghost,
.error-page .btn-ghost,
.impact-hero .btn-ghost,
.inner-hero .btn-ghost {
  color: var(--rd-gold-light);
  border-color: rgba(234, 216, 156, 0.74);
}

.section-deep .btn-ghost:hover,
.featured-impact .btn-ghost:hover,
.speaking-preview .btn-ghost:hover,
.collaboration-cta .btn-ghost:hover,
.section-cta-block .btn-ghost:hover,
.error-page .btn-ghost:hover,
.impact-hero .btn-ghost:hover,
.inner-hero .btn-ghost:hover {
  color: var(--rd-ink);
  background: var(--rd-gold-light);
  border-color: var(--rd-gold-light);
}

.section-warm .btn-ghost,
.section-philosophy .btn-ghost,
.pathways-section .btn-ghost,
.selected-work .btn-ghost,
.proof-strip .btn-ghost {
  color: var(--rd-oxblood-dark);
  border-color: var(--rd-oxblood);
}

.btn,
.nav-links a,
.nav-linkedin,
.section-link,
.phc-link,
.pub-doi,
.filter-pill,
.cv-toc-link,
.video-play,
.back-to-top,
.nav-drawer-links a,
.nav-drawer-footer a,
.pathway-card a,
.impact-card a,
.work-card a,
.bio-details summary,
.bio-details > summary {
  min-height: 44px;
}

.btn {
  border-radius: 999px;
  padding-inline: 1.6rem;
  letter-spacing: 0.055em;
  text-transform: none;
  transform: none !important;
}

.btn-primary {
  background: var(--rd-oxblood);
  border-color: var(--rd-oxblood);
  color: #fff;
}

.btn-primary:hover {
  background: var(--rd-oxblood-dark);
  border-color: var(--rd-oxblood-dark);
  box-shadow: 0 8px 24px rgba(116, 20, 23, 0.24);
}

.btn-gold,
.collaboration-cta .btn-primary {
  background: var(--rd-gold);
  border-color: var(--rd-gold);
  color: var(--rd-ink);
}

.btn-gold:hover,
.collaboration-cta .btn-primary:hover {
  background: var(--rd-gold-light);
  border-color: var(--rd-gold-light);
  color: var(--rd-ink);
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.2);
}

.btn::after {
  display: none !important;
}

.pub-actions {
  display: inline-flex;
  align-items: center;
  margin-left: 0.55rem;
  vertical-align: middle;
}

.copy-citation {
  min-height: 44px;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(13, 27, 42, 0.22);
  border-radius: 999px;
  color: var(--rd-oxblood-dark);
  background: rgba(255, 255, 255, 0.62);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
}

.copy-citation:hover {
  border-color: var(--rd-oxblood);
  background: #fff;
}

.citation-manual-copy {
  display: block;
  width: 100%;
  min-height: 6rem;
  margin-top: 0.85rem;
  padding: 0.8rem;
  border: 1px solid rgba(13, 27, 42, 0.24);
  border-radius: 0.6rem;
  color: var(--rd-ink);
  background: #fff;
  font: 0.84rem/1.5 var(--font-ui);
  resize: vertical;
}

.citation-manual-copy:focus {
  outline: 3px solid var(--rd-focus);
  outline-offset: 3px;
}

.discipline-card,
.card--warm {
  transform: none !important;
}

.discipline-card:hover,
.card--warm:hover {
  transform: translateY(-2px) !important;
}

.hero-bg,
.inner-hero-bg {
  animation: none !important;
}

.hero-bg-img {
  transform: none !important;
}

.quote-word {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

/* ============================================================
   Navigation and mobile drawer
   ============================================================ */

.nav {
  padding-block: 1rem;
  background: linear-gradient(to bottom, rgba(6, 14, 24, 0.84) 0%, rgba(6, 14, 24, 0.56) 62%, rgba(6, 14, 24, 0.12) 100%);
}

.nav-brand,
.nav-links a,
.nav-linkedin {
  text-shadow: 0 1px 9px rgba(6, 14, 24, 0.72);
}

.nav.scrolled {
  padding-block: 0.65rem;
  background: rgba(6, 14, 24, 0.92);
  border-bottom: 1px solid rgba(234, 216, 156, 0.14);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.nav-links a,
.nav-linkedin {
  font-size: 0.7rem;
  letter-spacing: 0.065em;
}

.nav-linkedin {
  border-radius: 999px;
}

.nav-drawer {
  height: 100vh;
  min-height: 100vh;
  padding:
    max(4.75rem, calc(env(safe-area-inset-top) + 3.5rem))
    max(1.5rem, env(safe-area-inset-right))
    max(2rem, env(safe-area-inset-bottom))
    max(1.5rem, env(safe-area-inset-left));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 85% 12%, rgba(155, 29, 32, 0.16), transparent 34%),
    var(--rd-ink-deep);
}

@supports (height: 100svh) {
  .nav-drawer {
    height: 100svh;
    min-height: 100svh;
  }
}

.nav-drawer > nav {
  width: min(100%, 620px);
  margin-block: auto;
}

.nav-drawer-close {
  top: max(0.8rem, env(safe-area-inset-top));
  right: max(0.8rem, env(safe-area-inset-right));
}

.nav-drawer-links {
  gap: 0.2rem;
}

.nav-drawer-links a {
  display: flex;
  align-items: center;
  padding-block: 0.35rem;
  font-size: clamp(1.55rem, 7vw, 2.6rem);
}

/* ============================================================
   Impact hero
   ============================================================ */

.impact-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: clamp(6.25rem, 9vw, 7.5rem) 0 clamp(3rem, 5vw, 4rem);
  overflow: hidden;
  color: var(--rd-text-on-dark);
  background:
    linear-gradient(90deg, rgba(6, 14, 24, 0.72) 0%, rgba(6, 14, 24, 0.43) 48%, rgba(6, 14, 24, 0.1) 100%),
    linear-gradient(to top, rgba(6, 14, 24, 0.3), transparent 60%),
    url('../img/abstract-hero-warm-v2.webp') 58% center / cover no-repeat,
    #183b55;
}

@supports (min-height: 100svh) {
  .impact-hero {
    min-height: 100svh;
  }
}

.impact-hero::before {
  content: '';
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(rgba(234, 216, 156, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(234, 216, 156, 0.09) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 4%, #000 58%, #000);
}

.impact-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  width: min(52vw, 760px);
  aspect-ratio: 1;
  top: 48%;
  right: -14%;
  transform: translateY(-50%);
  border: 1px solid rgba(234, 216, 156, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(234, 216, 156, 0.025),
    0 0 0 144px rgba(155, 29, 32, 0.025);
  opacity: 0.45;
}

.impact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
}

.impact-copy {
  max-width: 760px;
}

.impact-copy .section-eyebrow,
.impact-copy .hero-credentials,
.impact-copy > p:first-child {
  margin-bottom: 1rem;
  color: var(--rd-gold-light);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.impact-copy h1 {
  max-width: 15ch;
  margin-bottom: 1.35rem;
  color: var(--rd-text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.4vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

.impact-copy h1 em {
  color: var(--rd-gold-light);
  font-weight: 400;
}

.impact-copy > p:not(:first-child),
.impact-copy .hero-role,
.impact-copy .impact-lead,
.impact-copy .impact-lede,
.impact-copy .lead {
  max-width: 60ch;
  color: var(--rd-muted-on-dark);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.impact-copy .impact-lede {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.9);
}

.impact-copy .impact-role {
  margin-top: 1.2rem;
  font-size: 0.9rem;
}

.impact-copy .impact-role strong {
  color: var(--rd-text-on-dark);
  font-weight: 650;
}

.impact-copy .hero-actions,
.impact-copy .impact-actions,
.impact-copy .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-start;
  margin-top: 2rem;
}

.impact-visual {
  position: relative;
  min-height: 500px;
  aspect-ratio: auto;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  overflow: hidden;
  border: 1px solid rgba(234, 216, 156, 0.26);
  border-radius: min(3vw, var(--rd-radius-lg));
  background:
    radial-gradient(circle at 68% 28%, rgba(234, 216, 156, 0.26), transparent 21%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.09), transparent 44%),
    linear-gradient(145deg, rgba(18, 43, 61, 0.76), rgba(45, 24, 31, 0.66));
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
  backdrop-filter: blur(12px) saturate(1.08);
  box-shadow: 0 20px 60px rgba(6, 14, 24, 0.18);
}

.impact-visual > * {
  position: relative;
  z-index: 1;
}

.impact-visual::before {
  content: '';
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(234, 216, 156, 0.36);
  border-radius: 50% 50% 48% 52% / 58% 44% 56% 42%;
  transform: rotate(-8deg);
  box-shadow:
    0 0 0 28px rgba(234, 216, 156, 0.035),
    0 0 0 76px rgba(155, 29, 32, 0.035);
  pointer-events: none;
  opacity: 0.38;
}

.impact-visual::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--rd-gold), transparent);
  box-shadow:
    0 -72px 0 rgba(234, 216, 156, 0.12),
    0 -144px 0 rgba(234, 216, 156, 0.07);
  pointer-events: none;
  opacity: 0.38;
}

.impact-focus-list {
  display: flex;
  flex-direction: column;
  margin-top: clamp(1.25rem, 3vw, 2.25rem);
  border-top: 1px solid var(--rd-line-dark);
}

.impact-focus-list li {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: start;
  padding-block: clamp(1rem, 2vw, 1.35rem);
  border-bottom: 1px solid var(--rd-line-dark);
}

.impact-focus-number {
  width: 0.52rem;
  height: 0.52rem;
  margin-top: 0.42rem;
  overflow: hidden;
  border-radius: 50%;
  color: transparent;
  background: var(--rd-gold-light);
  box-shadow: 0 0 0 5px rgba(234, 216, 156, 0.1);
  font-size: 0;
}

.impact-focus-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--rd-text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.25;
}

.impact-focus-list li span:not(.impact-focus-number) {
  display: block;
  color: var(--rd-muted-on-dark);
  font-size: 0.82rem;
  line-height: 1.55;
}

.impact-visual img,
.impact-visual picture,
.impact-visual picture img {
  width: 100%;
  height: 100%;
}

.impact-visual img,
.impact-visual picture img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}

.impact-visual:has(img)::before {
  z-index: 2;
  inset: 0;
  border: 0;
  border-radius: 0;
  transform: none;
  box-shadow: none;
  background: linear-gradient(to top, rgba(6, 14, 24, 0.72), transparent 52%);
  pointer-events: none;
}

.impact-visual figcaption,
.impact-visual .impact-visual-caption,
.impact-visual .visual-caption {
  position: absolute;
  z-index: 3;
  left: clamp(1.25rem, 3vw, 2rem);
  right: clamp(1.25rem, 3vw, 2rem);
  bottom: clamp(1.25rem, 3vw, 2rem);
  color: var(--rd-text-on-dark);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ============================================================
   Proof strip
   ============================================================ */

.proof-strip {
  position: relative;
  padding-block: clamp(1.75rem, 4vw, 3.25rem);
  border-top: 4px solid var(--rd-oxblood);
  border-bottom: 1px solid var(--rd-line-light);
  background: var(--rd-ivory);
}

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

.proof-item {
  min-width: 0;
  padding: 0.45rem clamp(1rem, 3vw, 2rem);
  border-right: 1px solid var(--rd-line-light);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-item strong,
.proof-item b,
.proof-item .proof-value {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--rd-oxblood-dark);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
}

.proof-item span,
.proof-item p,
.proof-item .proof-label {
  display: block;
  color: var(--rd-muted-on-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.45;
  text-transform: uppercase;
}

/* ============================================================
   Pathways: four disciplines, one practice
   ============================================================ */

.pathways-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(155, 29, 32, 0.06), transparent 28%),
    var(--rd-ivory);
}

.pathways-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

.pathway-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  overflow: hidden;
  color: var(--rd-text-on-light);
  border: 1px solid var(--rd-line-light);
  border-top: 3px solid var(--rd-oxblood);
  border-radius: var(--rd-radius);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pathway-card::after {
  content: attr(data-number);
  position: absolute;
  right: -0.05em;
  bottom: -0.28em;
  color: rgba(13, 27, 42, 0.035);
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.pathway-card:hover,
.pathway-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(155, 29, 32, 0.36);
  box-shadow: var(--rd-shadow-soft);
}

.pathway-card h3 {
  margin-bottom: 0.8rem;
  color: var(--rd-text-on-light);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 600;
  line-height: 1.15;
}

.pathway-card p {
  color: var(--rd-muted-on-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.pathway-kicker {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--rd-oxblood-dark);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pathway-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--rd-oxblood-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.pathway-card a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--rd-oxblood-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ============================================================
   Featured impact
   ============================================================ */

.featured-impact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(201, 168, 76, 0.1), transparent 24%),
    linear-gradient(155deg, var(--rd-ink-deep), var(--rd-ink) 62%, #101d2d);
}

.featured-impact::after {
  content: '';
  position: absolute;
  right: -15vw;
  bottom: -28vw;
  width: 58vw;
  aspect-ratio: 1;
  border: 1px solid rgba(234, 216, 156, 0.09);
  border-radius: 50%;
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.75rem);
}

.impact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(1.6rem, 3vw, 2.35rem);
  overflow: hidden;
  border: 1px solid rgba(184, 196, 211, 0.17);
  border-radius: var(--rd-radius);
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.035) inset;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.impact-card::before {
  content: '';
  width: 42px;
  height: 2px;
  margin-bottom: 1.75rem;
  background: var(--rd-gold);
}

.impact-card:hover,
.impact-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(234, 216, 156, 0.42);
  background: rgba(255, 255, 255, 0.055);
}

.impact-card h3 {
  margin-bottom: 0.75rem;
  color: var(--rd-text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  font-weight: 600;
  line-height: 1.12;
}

.impact-card p {
  color: var(--rd-muted-on-dark);
  font-size: 0.92rem;
  line-height: 1.72;
}

.impact-card .impact-card-kicker {
  margin-bottom: 0.8rem;
  color: var(--rd-gold-light);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.impact-card .impact-card-subtitle {
  margin-bottom: 1rem;
  color: var(--rd-text-on-dark);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.55;
}

.impact-card .impact-card-proof {
  margin-top: 1.1rem;
  padding-top: 1rem;
  color: var(--rd-gold-light);
  border-top: 1px solid var(--rd-line-dark);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.6;
}

.impact-card .impact-result,
.impact-card .card-meta,
.impact-card .impact-meta,
.impact-card .badge {
  margin-top: 1rem;
  color: var(--rd-gold-light);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.impact-card a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.25rem;
  color: var(--rd-gold-light);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ============================================================
   Selected work
   ============================================================ */

.selected-work {
  background: var(--rd-paper);
}

.selected-work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.75rem);
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  padding: clamp(1.5rem, 3vw, 2.15rem);
  color: var(--rd-text-on-light);
  border: 1px solid var(--rd-line-light);
  border-radius: var(--rd-radius);
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.work-card:hover,
.work-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(155, 29, 32, 0.34);
  box-shadow: var(--rd-shadow-soft);
}

.work-card .work-type,
.work-card .work-meta,
.work-card .card-meta,
.work-card .pub-journal,
.work-card > p:first-child {
  margin-bottom: 1rem;
  color: var(--rd-oxblood-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.work-card h3,
.work-card .pub-title {
  margin-bottom: 0.85rem;
  color: var(--rd-text-on-light);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.28;
}

.work-card p:not(:first-child) {
  color: var(--rd-muted-on-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.work-card a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--rd-oxblood-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.selected-work-grid + .text-center {
  margin-top: clamp(2rem, 4vw, 3rem);
}

/* ============================================================
   Speaking preview and collaboration CTA
   ============================================================ */

.speaking-preview {
  position: relative;
  background:
    linear-gradient(90deg, rgba(155, 29, 32, 0.12), transparent 42%),
    var(--rd-ink-soft);
}

.speaking-preview .speaking-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.speaking-preview h2 {
  margin-bottom: 1rem;
  color: var(--rd-text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.speaking-preview p {
  max-width: 58ch;
  color: var(--rd-muted-on-dark);
  line-height: 1.75;
}

.speaking-preview-copy {
  margin-bottom: 1.75rem;
}

.speaking-preview ul,
.speaking-preview ol,
.speaking-preview .speaking-list {
  border-top: 1px solid var(--rd-line-dark);
}

.speaking-preview li,
.speaking-preview .speaking-item {
  padding-block: 1.15rem;
  color: var(--rd-text-on-dark);
  border-bottom: 1px solid var(--rd-line-dark);
}

.speaking-preview li span,
.speaking-preview li small,
.speaking-preview .speaking-meta {
  display: block;
  margin-top: 0.35rem;
  color: var(--rd-gold-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.collaboration-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.13), transparent 32%),
    var(--rd-ink-deep);
}

.collaboration-cta::before,
.collaboration-cta::after {
  content: '';
  position: absolute;
  top: 50%;
  width: min(36vw, 480px);
  aspect-ratio: 1;
  border: 1px solid rgba(234, 216, 156, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
}

.collaboration-cta::before {
  left: -22vw;
}

.collaboration-cta::after {
  right: -22vw;
}

.collaboration-cta > .container,
.collaboration-cta .cta-inner,
.collaboration-cta .collaboration-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-inline: auto;
}

.collaboration-cta h2 {
  margin-bottom: 1.1rem;
  color: var(--rd-text-on-dark);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.collaboration-cta p {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--rd-muted-on-dark);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75;
}

.collaboration-cta .cta-actions,
.collaboration-cta .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-top: 2rem;
}

.collaboration-cta-inner > .btn {
  margin-top: 2rem;
}

.clinical-boundary {
  max-width: 66ch;
  margin: clamp(2rem, 5vw, 3.25rem) auto 0;
  padding: 1rem 1.15rem;
  color: var(--rd-muted-on-dark);
  border: 1px solid rgba(184, 196, 211, 0.2);
  border-radius: var(--rd-radius-sm);
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.75rem;
  line-height: 1.65;
  text-align: left;
}

.clinical-boundary strong {
  color: var(--rd-text-on-dark);
}

/* ============================================================
   About-page biography and credo
   ============================================================ */

.bio-summary {
  max-width: none;
}

.bio-summary-grid,
.bio-summary-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(2.5rem, 7vw, 6.5rem);
  align-items: start;
}

.bio-summary-copy,
.bio-summary-grid > div:first-child {
  max-width: 68ch;
}

.bio-summary-copy > p:not(.section-eyebrow),
.bio-summary-grid > div:first-child > p:not(.section-eyebrow) {
  color: var(--rd-muted-on-dark);
  line-height: 1.8;
}

.section-warm .bio-summary-copy > p:not(.section-eyebrow),
.section-warm .bio-summary-grid > div:first-child > p:not(.section-eyebrow) {
  color: var(--rd-muted-on-light);
}

.bio-summary-copy p + p,
.bio-summary-grid > div:first-child p + p {
  margin-top: 1.1rem;
}

.bio-credential-list {
  border-top: 1px solid var(--rd-line-light);
}

.bio-credential-list > div {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--rd-line-light);
}

.bio-credential-list dt {
  color: var(--rd-oxblood-dark);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
}

.bio-credential-list dd {
  color: var(--rd-muted-on-light);
  font-size: 0.82rem;
  line-height: 1.5;
}

.bio-summary-facts {
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(184, 196, 211, 0.17);
  border-radius: var(--rd-radius);
  background: rgba(255, 255, 255, 0.035);
}

.bio-summary-facts dl > div {
  padding-block: 0.85rem;
  border-bottom: 1px solid var(--rd-line-dark);
}

.bio-summary-facts dl > div:first-child {
  padding-top: 0;
}

.bio-summary-facts dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bio-summary-facts dt {
  margin-bottom: 0.25rem;
  color: var(--rd-gold-light);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bio-summary-facts dd {
  color: var(--rd-text-on-dark);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.45;
}

.bio-details,
.bio-details details {
  margin-top: 2rem;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.bio-details > summary,
.bio-details details > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
  color: var(--rd-gold-light);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  list-style: none;
  cursor: pointer;
}

.section-warm .bio-details > summary,
.section-warm .bio-details details > summary,
.bio-details.bio-details--light > summary {
  color: var(--rd-oxblood-dark);
}

.bio-details > summary::-webkit-details-marker,
.bio-details details > summary::-webkit-details-marker {
  display: none;
}

.bio-details > summary::after,
.bio-details details > summary::after {
  content: '+';
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 400;
}

.bio-details[open] > summary::after,
.bio-details details[open] > summary::after {
  content: '−';
}

.bio-details > :not(summary),
.bio-details details > :not(summary) {
  margin-bottom: 1.25rem;
}

.bio-details-content {
  max-width: 78ch;
  padding-bottom: 0.25rem;
}

.bio-details-content p {
  color: var(--rd-muted-on-dark);
  line-height: 1.82;
}

.bio-details-content p + p {
  margin-top: 1.1rem;
}

.personal-credo {
  position: relative;
  max-width: none;
  margin: 0;
  overflow: hidden;
  color: var(--rd-text-on-light);
  border-left: 0;
  background:
    radial-gradient(circle at 95% 0%, rgba(155, 29, 32, 0.06), transparent 26%),
    var(--rd-paper);
  box-shadow: none;
}

.personal-credo::before {
  content: '';
  position: absolute;
  top: -18rem;
  right: -12rem;
  width: 36rem;
  aspect-ratio: 1;
  border: 1px solid rgba(155, 29, 32, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.personal-credo-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--rd-line-light);
  border-bottom: 1px solid var(--rd-line-light);
}

.personal-credo-grid::before {
  content: '';
  position: absolute;
  top: clamp(1.5rem, 3vw, 2.5rem);
  bottom: clamp(1.5rem, 3vw, 2.5rem);
  left: calc(41% - 1px);
  width: 3px;
  background: var(--rd-oxblood);
  opacity: 0.9;
}

.personal-credo-copy {
  padding-left: clamp(1.5rem, 4vw, 3.5rem);
}

.personal-credo-copy p {
  color: var(--rd-muted-on-light);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.85;
}

.personal-credo-copy p:first-child {
  color: var(--rd-text-on-light);
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.65;
}

.personal-credo-copy p + p {
  margin-top: 1.25rem;
}

/* Personal passages restore the human voice that shaped the original site. */
.personal-guiding-quote {
  padding: clamp(3.75rem, 7vw, 5.75rem) 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(155, 29, 32, 0.07), transparent 26%),
    linear-gradient(135deg, #fbf6ec 0%, #f3e5d1 100%);
}

.personal-guiding-quote::after {
  content: '“';
  position: absolute;
  right: clamp(1rem, 8vw, 8rem);
  bottom: -0.22em;
  color: var(--rd-oxblood);
  font-family: var(--font-display);
  font-size: clamp(10rem, 22vw, 22rem);
  line-height: 1;
  opacity: 0.045;
  pointer-events: none;
}

.personal-guiding-quote .philosophy-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.personal-guiding-quote .quote-context {
  margin-bottom: 1.2rem;
  color: var(--rd-oxblood);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.personal-guiding-quote .philosophy-accent {
  width: 52px;
  height: 3px;
  margin-bottom: 1.8rem;
}

.personal-guiding-quote .philosophy-quote {
  max-width: 34ch;
  margin-inline: auto;
  color: var(--rd-text-on-light);
  font-size: clamp(1.35rem, 2.65vw, 2.15rem);
  line-height: 1.55;
}

.personal-guiding-quote .philosophy-cite {
  color: var(--rd-muted-on-light);
}

/* ============================================================
   Existing inner-page visual treatment: abstract now, photo-ready later
   ============================================================ */

.inner-hero {
  min-height: min(54rem, 62vh);
  background:
    radial-gradient(circle at 75% 22%, rgba(234, 216, 156, 0.2), transparent 32%),
    linear-gradient(145deg, #15364e, #6a4f47);
}

.inner-hero-img {
  opacity: 0.72;
  filter: saturate(0.92) contrast(0.98) brightness(1.04);
}

.inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 14, 24, 0.7) 0%, rgba(6, 14, 24, 0.34) 52%, rgba(6, 14, 24, 0.07) 100%),
    linear-gradient(to top, rgba(6, 14, 24, 0.38), transparent 64%);
}

.inner-hero-title {
  max-width: 12ch;
  font-weight: 600;
  letter-spacing: -0.04em;
}

/* Add .photo-ready to reveal authentic replacement photography. */
.inner-hero.photo-ready .inner-hero-img,
.impact-visual.photo-ready img,
.impact-visual--photo img {
  opacity: 1;
  filter: saturate(0.78) contrast(1.03);
}

/* ============================================================
   Responsive composition
   ============================================================ */

@media (max-width: 1023px) {
  .impact-hero {
    min-height: auto;
  }

  @supports (min-height: 100svh) {
    .impact-hero {
      min-height: 100svh;
    }
  }

  .impact-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 2.5rem;
  }

  .impact-visual {
    min-height: 440px;
  }

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

  .impact-grid,
  .selected-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-card:last-child,
  .work-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: 280px;
  }

  .pathway-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    min-height: 240px;
  }
}

@media (max-width: 767px) {
  :root {
    --rd-section-space: clamp(4rem, 15vw, 5.75rem);
  }

  html {
    scroll-padding-top: 72px;
  }

  .container {
    padding-inline: max(1.2rem, env(safe-area-inset-left));
  }

  .impact-hero {
    align-items: flex-start;
    padding-top: max(7rem, calc(env(safe-area-inset-top) + 6rem));
  }

  .impact-hero::before {
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, transparent, #000 30%, #000);
  }

  .impact-hero::after {
    width: 90vw;
    top: auto;
    right: -44%;
    bottom: -5%;
    transform: none;
  }

  .impact-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .impact-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.7rem, 12vw, 4rem);
  }

  .impact-visual {
    width: 100%;
    min-height: 0;
    aspect-ratio: auto;
    border-radius: var(--rd-radius);
  }

  .impact-visual:has(img) {
    aspect-ratio: 16 / 11;
  }

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

  .proof-item {
    padding: 1rem;
    border-bottom: 1px solid var(--rd-line-light);
  }

  .proof-item:nth-child(2n) {
    border-right: 0;
  }

  .proof-item:first-child {
    padding-left: 1rem;
  }

  .proof-item:last-child {
    padding-right: 1rem;
    border-bottom: 0;
  }

  .proof-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .impact-grid,
  .selected-work-grid {
    grid-template-columns: 1fr;
  }

  .impact-card:last-child,
  .work-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .impact-card,
  .work-card {
    min-height: 290px;
  }

  .speaking-preview .speaking-preview-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bio-summary-grid,
  .bio-summary-layout,
  .personal-credo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .personal-credo-grid::before {
    display: none;
  }

  .personal-credo-copy {
    padding-top: 2rem;
    padding-left: 0;
    border-top: 3px solid var(--rd-oxblood);
  }

  .inner-hero {
    min-height: 54vh;
    padding-bottom: 3rem;
  }

  .personal-credo {
    padding-inline: 0;
  }
}

@media (max-width: 540px) {
  .filter-bar {
    align-items: stretch;
  }

  .filter-search {
    flex-basis: 100%;
    width: 100%;
    max-width: none;
    font-size: 1rem;
  }

  .filter-pills {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0.2rem 0 0.55rem;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .filter-pill {
    flex: 0 0 auto;
    min-height: 44px;
    scroll-snap-align: start;
  }

  .impact-copy .hero-actions,
  .impact-copy .impact-actions,
  .impact-copy .cta-actions,
  .collaboration-cta .cta-actions,
  .collaboration-cta .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .impact-copy .btn,
  .collaboration-cta .btn {
    width: 100%;
    justify-content: center;
  }

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

  .pathway-card:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .pathway-card {
    min-height: 240px;
  }

  .proof-item strong,
  .proof-item b,
  .proof-item .proof-value {
    font-size: 1.25rem;
  }
}

@media (max-height: 620px) and (orientation: landscape) {
  .nav-drawer {
    padding-top: max(3.5rem, calc(env(safe-area-inset-top) + 3rem));
  }

  .nav-drawer > nav {
    margin-block: 0;
  }

  .nav-drawer-links a {
    min-height: 40px;
    font-size: clamp(1.25rem, 5.5vh, 1.8rem);
  }

  .nav-drawer-footer {
    margin-top: 1rem;
    padding-top: 1rem;
  }
}

/* ============================================================
   Reduced motion: the information remains; decoration rests.
   ============================================================ */

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

  .impact-card:hover,
  .impact-card:focus-within,
  .work-card:hover,
  .work-card:focus-within,
  .pathway-card:hover,
  .pathway-card:focus-within,
  .discipline-card:hover,
  .card--warm:hover {
    transform: none !important;
  }
}

/* Forced colors retain hierarchy and operability. */
@media (forced-colors: active) {
  .impact-visual,
  .pathway-card,
  .impact-card,
  .work-card,
  .personal-credo {
    border: 1px solid CanvasText;
    box-shadow: none;
  }

  .impact-card::before,
  .proof-strip {
    border-color: Highlight;
  }
}
