:root {
  --profile-ink: #111315;
  --profile-olive: #1a211c;
  --profile-olive-dim: #171d1a;
  --profile-ivory: #f3eee7;
  --profile-warm: #faf7f4;
  --profile-rose: #c89b93;
  --profile-wine: #6e1f32;
  --profile-stone: #8e8881;
  --profile-line-dark: rgba(17, 19, 21, .12);
  --profile-line-light: rgba(200, 155, 147, .18);
  --profile-ease: cubic-bezier(.16, 1, .3, 1);
}

body {
  background: var(--profile-ink);
  overflow-x: hidden;
}

@keyframes gradDrift {
  0%, 10% { background-position: 0% 45%; }
  28% { background-position: 48% 18%; }
  45%, 65% { background-position: 100% 50%; }
  82% { background-position: 42% 88%; }
  90%, 100% { background-position: 0% 45%; }
}

@keyframes glowPulse {
  0%, 100% { opacity: .06; }
  50% { opacity: .18; }
}

@keyframes glowPulseAlt {
  0%, 100% { opacity: .03; }
  40% { opacity: .13; }
  70% { opacity: .07; }
}

.profile-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 700;
  width: 100%;
  height: 2px;
  background: var(--profile-rose);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.person-profile {
  background: var(--profile-warm);
  color: var(--profile-ink);
  overflow: hidden;
}

.person-hero {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
  background: var(--profile-ink);
  color: var(--profile-ivory);
  overflow: hidden;
}

.person-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1410 0%, #162018 30%, #1e1018 65%, #0e1510 100%);
  background-size: 400% 400%;
  animation: gradDrift 14s ease-in-out infinite;
  will-change: background-position;
}

.person-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 19, 21, .97) 0%, rgba(17, 19, 21, .2) 55%, transparent 100%);
}

.person-hero-bg .glow-r {
  position: absolute;
  right: -60px;
  top: 40%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(200, 155, 147, .18) 0%, transparent 65%);
  filter: blur(80px);
  transform: translateY(-50%);
  animation: glowPulse 8s ease-in-out infinite;
}

.person-hero-bg .glow-l {
  position: absolute;
  left: 5%;
  top: 15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(ellipse at center, rgba(110, 31, 50, .15) 0%, transparent 70%);
  filter: blur(60px);
  animation: glowPulseAlt 11s ease-in-out 2.3s infinite;
}

.person-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: clamp(120px, 14vh, 180px) clamp(36px, 5vw, 82px) clamp(58px, 8vh, 96px);
}

.person-back {
  position: absolute;
  top: calc(var(--nav-h, 72px) + 34px);
  left: clamp(36px, 5vw, 82px);
  color: var(--profile-rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.person-back::before {
  content: '\2190';
  display: inline-block;
  margin-right: 10px;
  transition: transform 180ms ease-out;
}

.person-back:hover::before,
.person-back:focus-visible::before {
  transform: translateX(-4px);
}

.person-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
}

.person-kicker > span {
  width: 38px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--profile-rose);
  box-shadow: 0 0 12px rgba(200, 155, 147, .34);
}

.person-kicker p {
  margin: 0;
  color: var(--profile-rose);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.person-name {
  margin: 0;
  color: var(--profile-ivory);
  font-size: clamp(74px, 11vw, 156px);
  font-weight: 300;
  letter-spacing: -.035em;
  line-height: .82;
  text-wrap: balance;
}

.person-name-char {
  display: inline-block;
}

.person-role {
  margin: 24px 0 0;
  color: var(--profile-rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  line-height: 1.5;
  text-transform: uppercase;
}

.person-intro {
  max-width: 500px;
  margin: 26px 0 0;
  color: #bcb4ac;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  text-wrap: pretty;
}

.person-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(34px, 6vh, 64px) 0 0;
}

.person-hero-facts div {
  padding-top: 15px;
  border-top: 1px solid var(--profile-line-light);
}

.person-hero-facts dt {
  margin-bottom: 7px;
  color: var(--profile-stone);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.person-hero-facts dd {
  margin: 0;
  color: #ded8d1;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.45;
}

.person-hero-media {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 100dvh;
  margin: 0;
  background: var(--profile-olive);
  overflow: hidden;
}

.person-photo-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.person-photo-frame {
  clip-path: inset(0);
}

.person-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, .34), transparent 30%),
    linear-gradient(180deg, rgba(17, 19, 21, .08), transparent 55%, rgba(17, 19, 21, .18));
  pointer-events: none;
}

.person-photo-frame img {
  --profile-photo-scale: 1.015;
  --profile-photo-enter-scale: 1.075;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
  transform: scale(var(--profile-photo-scale));
  transform-origin: center bottom;
}

.person-hero-media figcaption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: rgba(250, 247, 244, .74);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.person-story,
.person-notes {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(52px, 9vw, 150px);
  max-width: 1380px;
  margin: 0 auto;
  padding: clamp(96px, 12vw, 168px) clamp(24px, 5vw, 72px);
}

.person-section-index {
  margin: 0 0 34px;
  color: var(--profile-wine);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
}

.person-story h2,
.person-section-head h2,
.person-notes h2,
.person-closing h2 {
  margin: 0;
  font-size: clamp(42px, 5.6vw, 78px);
  font-weight: 300;
  letter-spacing: -.025em;
  line-height: 1;
  text-wrap: balance;
}

.person-story h2 em,
.person-section-head h2 em,
.person-notes h2 em,
.person-closing h2 em {
  color: var(--profile-wine);
  font-style: italic;
}

.person-story-copy {
  max-width: 680px;
  padding-top: 58px;
}

.person-story-copy > p,
.person-notes-copy p {
  margin: 0 0 25px;
  color: #4d4741;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.88;
  text-wrap: pretty;
}

.person-story-copy .person-lead {
  color: var(--profile-ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.28;
}

.person-story--why {
  padding-bottom: clamp(72px, 9vw, 118px);
}

.person-story--background {
  padding-top: clamp(72px, 9vw, 118px);
  border-top: 1px solid var(--profile-line-dark);
}

.person-quote {
  margin: clamp(46px, 7vw, 88px) 0 0;
  padding: clamp(34px, 5vw, 58px) 0 0;
  border-top: 1px solid var(--profile-line-dark);
}

.person-quote p {
  margin: 0 0 24px;
  color: var(--profile-wine);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  letter-spacing: -.018em;
  line-height: 1.12;
}

.person-quote cite {
  color: #6b645e;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.person-practice {
  padding: clamp(92px, 11vw, 150px) clamp(24px, 5vw, 72px);
  background: var(--profile-olive);
  color: var(--profile-ivory);
}

.person-section-head,
.person-practice-list {
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

.person-section-head {
  margin-bottom: clamp(58px, 8vw, 102px);
}

.person-practice-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(42px, 6vw, 76px);
  padding-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--profile-line-light);
}

.person-practice-intro p {
  margin: 0;
  color: #b8b0a8;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  text-wrap: pretty;
}

.person-section-head .person-section-index {
  color: var(--profile-rose);
}

.person-section-head h2 em {
  color: var(--profile-rose);
}

.person-practice-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--profile-line-light);
  border-left: 1px solid var(--profile-line-light);
}

.person-practice-list article {
  min-height: 300px;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--profile-line-light);
  border-bottom: 1px solid var(--profile-line-light);
  transition: background 280ms ease, color 280ms ease;
}

.person-practice-list article:hover {
  background: rgba(200, 155, 147, .055);
}

.person-practice-list article > span {
  display: block;
  margin-bottom: 48px;
  color: var(--profile-rose);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .15em;
}

.person-practice-list h3 {
  margin: 0 0 18px;
  color: var(--profile-ivory);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 300;
  line-height: 1.1;
}

.person-practice-list p {
  margin: 0;
  color: #a9a19a;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  text-wrap: pretty;
}

.person-notes {
  align-items: end;
}

.person-notes-copy {
  max-width: 620px;
}

.person-notes-copy .person-authorship {
  color: var(--profile-ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.3;
}

.person-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 19px;
  border: 1px solid rgba(110, 31, 50, .42);
  color: var(--profile-wine);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 220ms var(--profile-ease), background 220ms ease, transform 140ms ease-out;
}

.person-text-link:hover {
  gap: 15px;
  background: rgba(110, 31, 50, .045);
}

.person-text-link:active,
.person-primary-link:active,
.person-secondary-link:active {
  transform: scale(.97);
}

.person-articles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--profile-line-dark);
  background: var(--profile-warm);
}

.person-articles a {
  min-height: 260px;
  padding: clamp(30px, 4vw, 52px);
  border-right: 1px solid var(--profile-line-dark);
  color: var(--profile-ink);
  text-decoration: none;
}

.person-articles a:last-child {
  border-right: 0;
}

.person-articles span {
  display: block;
  margin-bottom: 40px;
  color: #746d67;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.person-articles strong {
  display: block;
  font-size: clamp(25px, 2.5vw, 36px);
  font-weight: 300;
  line-height: 1.18;
}

.person-closing {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(520px, 68vh, 720px);
  padding: clamp(92px, 12vw, 160px) clamp(24px, 7vw, 104px);
  background: #3d0f1c;
  color: var(--profile-ivory);
  overflow: hidden;
  text-align: center;
}

.person-closing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0810 0%, #3d0f1c 30%, #6e1f32 55%, #4a1520 75%, #1a0810 100%);
  background-size: 400% 400%;
  animation: gradDrift 14s ease infinite;
}

.person-closing-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .3);
}

.person-closing-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
}

.person-closing-inner > p {
  margin: 0 0 26px;
  color: rgba(243, 238, 231, .65);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.person-closing h2 {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.person-closing h2 em {
  color: rgba(243, 238, 231, .76);
}

.person-closing-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.person-primary-link,
.person-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 140ms ease-out;
}

.person-primary-link {
  background: var(--profile-ivory);
  color: var(--profile-wine);
}

.person-primary-link:hover {
  background: var(--profile-warm);
}

.person-secondary-link {
  border: 1px solid rgba(243, 238, 231, .5);
  color: var(--profile-ivory);
}

.person-secondary-link:hover {
  border-color: var(--profile-ivory);
  background: rgba(243, 238, 231, .08);
}

.person-back:focus-visible,
.person-text-link:focus-visible,
.person-primary-link:focus-visible,
.person-secondary-link:focus-visible,
.person-articles a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.profile-motion-ready .person-name-char {
  opacity: 0;
  transform: translateY(.82em) rotate(4deg);
  transform-origin: left bottom;
  animation: person-name-reveal 1.15s var(--profile-ease) forwards;
  animation-delay: calc(260ms + var(--char-index) * 80ms);
}

@keyframes person-name-reveal {
  to { opacity: 1; transform: translateY(0) rotate(0); }
}

.profile-motion-ready .person-kicker,
.profile-motion-ready .person-role,
.profile-motion-ready .person-intro,
.profile-motion-ready .person-hero-facts {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(28px);
  transition: opacity .8s var(--profile-ease), transform 1s var(--profile-ease), filter .8s var(--profile-ease);
}

.profile-motion-ready.profile-loaded .person-kicker {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition-delay: .18s;
}

.profile-motion-ready.profile-loaded .person-role {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition-delay: .5s;
}

.profile-motion-ready.profile-loaded .person-intro {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition-delay: .64s;
}

.profile-motion-ready.profile-loaded .person-hero-facts {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition-delay: .78s;
}

.profile-word {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.profile-motion-preparing *,
.profile-motion-preparing *::before,
.profile-motion-preparing *::after {
  transition: none !important;
}

.profile-motion-ready [data-profile-words="ready"] .profile-word {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(1.05em) rotate(3deg);
  transform-origin: left bottom;
  transition:
    opacity .62s var(--profile-ease),
    transform .9s var(--profile-ease),
    filter .62s var(--profile-ease);
  transition-delay: calc(var(--word-index) * 48ms);
}

.profile-motion-ready [data-profile-words="ready"].profile-in-view .profile-word,
.profile-motion-ready .profile-in-view [data-profile-words="ready"] .profile-word {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) rotate(0);
}

.profile-motion-ready .person-story-heading,
.profile-motion-ready .person-section-head,
.profile-motion-ready .person-notes > :first-child {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity .7s var(--profile-ease), transform 1.05s var(--profile-ease);
}

.profile-motion-ready .person-story-copy > *,
.profile-motion-ready .person-practice-intro > *,
.profile-motion-ready .person-notes-copy,
.profile-motion-ready .person-closing-inner > * {
  opacity: 0;
  filter: blur(6px);
  transform: translateX(58px);
  transition: opacity .72s var(--profile-ease), transform 1s var(--profile-ease), filter .72s var(--profile-ease);
}

.profile-motion-ready .person-practice-list article,
.profile-motion-ready .person-articles a {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translateY(34px);
  transition:
    opacity .65s var(--profile-ease),
    transform .95s var(--profile-ease),
    clip-path 1s var(--profile-ease);
}

.profile-motion-ready .person-photo-frame {
  clip-path: inset(100% 0 0);
  transform: translateY(12%);
  transition:
    clip-path 1.25s var(--profile-ease),
    transform 1.25s var(--profile-ease);
}

.profile-motion-ready .person-photo-frame img {
  opacity: .55;
  filter: saturate(.78) contrast(.95);
  transform: translateY(8%) scale(var(--profile-photo-enter-scale));
  transition:
    opacity .8s var(--profile-ease) .08s,
    filter 1.1s var(--profile-ease) .08s,
    transform 1.45s var(--profile-ease) .04s;
}

.profile-motion-ready .person-hero-media.profile-in-view .person-photo-frame {
  clip-path: inset(0);
  transform: translateY(0);
}

.profile-motion-ready .person-hero-media.profile-in-view .person-photo-frame img {
  opacity: 1;
  filter: saturate(1) contrast(1);
  transform: translateY(0) scale(var(--profile-photo-scale));
}

.profile-motion-ready .profile-in-view,
.profile-motion-ready .person-story-heading.profile-in-view,
.profile-motion-ready .person-story-copy > .profile-in-view,
.profile-motion-ready .person-section-head.profile-in-view,
.profile-motion-ready .person-practice-intro > .profile-in-view,
.profile-motion-ready .person-practice-list article.profile-in-view,
.profile-motion-ready .person-notes > .profile-in-view,
.profile-motion-ready .person-articles a.profile-in-view,
.profile-motion-ready .person-closing-inner > .profile-in-view {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
}

.profile-motion-ready .person-practice-list article.profile-in-view,
.profile-motion-ready .person-articles a.profile-in-view {
  clip-path: inset(0);
}

.profile-motion-ready .person-practice-list article:nth-child(2),
.profile-motion-ready .person-articles a:nth-child(2) { transition-delay: 70ms; }
.profile-motion-ready .person-practice-list article:nth-child(3),
.profile-motion-ready .person-articles a:nth-child(3) { transition-delay: 140ms; }
.profile-motion-ready .person-practice-list article:nth-child(4) { transition-delay: 70ms; }
.profile-motion-ready .person-practice-list article:nth-child(5) { transition-delay: 140ms; }
.profile-motion-ready .person-practice-list article:nth-child(6) { transition-delay: 210ms; }

@media (max-width: 1080px) {
  .person-hero {
    grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
  }

  .person-hero-facts {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .person-hero-facts div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 14px;
  }

  .person-story,
  .person-notes {
    gap: 60px;
  }

  .person-practice-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

@media (max-width: 1100px) and (orientation: portrait) {
  .person-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .person-hero-copy {
    min-height: auto;
    padding: calc(var(--nav-h, 72px) + 108px) clamp(34px, 7vw, 72px) 76px;
  }

  .person-back {
    left: clamp(34px, 7vw, 72px);
  }

  .person-name {
    font-size: clamp(88px, 18vw, 132px);
  }

  .person-intro {
    max-width: 620px;
  }

  .person-hero-facts {
    max-width: 650px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .person-hero-facts div {
    display: block;
  }

  .person-hero-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .person-photo-frame img {
    object-position: center bottom;
    --profile-photo-scale: 1.015;
    --profile-photo-enter-scale: 1.075;
  }

  .person-story,
  .person-notes {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .person-story-copy {
    max-width: 760px;
    padding-top: 0;
  }
}

@media (max-width: 760px) {
  .person-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .person-hero-copy {
    min-height: 73dvh;
    padding: calc(var(--nav-h, 72px) + 92px) 24px 54px;
  }

  .person-back {
    top: calc(var(--nav-h, 72px) + 24px);
    left: 24px;
  }

  .person-name {
    font-size: clamp(70px, 25vw, 104px);
  }

  .person-intro {
    font-size: 15px;
  }

  .person-hero-facts {
    margin-top: 38px;
  }

  .person-hero-media {
    min-height: 76dvh;
  }

  .person-photo-frame img {
    --profile-photo-scale: 1.08;
    --profile-photo-enter-scale: 1.16;
    height: 100%;
    object-position: 50% 100%;
    transform-origin: center bottom;
  }

  .person-story,
  .person-notes {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 86px 24px;
  }

  .person-story-copy {
    padding-top: 0;
  }

  .person-story h2,
  .person-section-head h2,
  .person-notes h2,
  .person-closing h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .person-story-copy > p,
  .person-notes-copy p {
    font-size: 15px;
    line-height: 1.78;
  }

  .person-practice {
    padding: 84px 24px;
  }

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

  .person-practice-list article {
    min-height: 0;
    padding: 32px 24px 36px;
  }

  .person-practice-list article > span {
    margin-bottom: 28px;
  }

  .person-articles {
    grid-template-columns: 1fr;
  }

  .person-articles a {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--profile-line-dark);
  }

  .person-closing {
    padding: 88px 24px;
    min-height: 540px;
  }

  .profile-motion-ready .person-story-heading,
  .profile-motion-ready .person-section-head,
  .profile-motion-ready .person-notes > :first-child {
    transform: translateY(34px);
  }

  .profile-motion-ready .person-notes > :first-child {
    opacity: 1;
    transform: none;
  }

  .profile-motion-ready .person-story-copy > *,
  .profile-motion-ready .person-practice-intro > *,
  .profile-motion-ready .person-notes-copy,
  .profile-motion-ready .person-closing-inner > * {
    transform: translateY(30px);
  }

  .profile-motion-ready .person-notes > :first-child,
  .profile-motion-ready .person-notes-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .person-notes h2,
  .person-notes-copy,
  .person-notes-copy p {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .person-hero-facts div {
    grid-template-columns: 98px 1fr;
  }

  .person-closing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .person-primary-link,
  .person-secondary-link {
    width: 100%;
    text-align: center;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .person-hero {
    min-height: 760px;
  }

  .person-hero-media {
    min-height: 760px;
  }

  .person-hero-copy {
    padding-top: 150px;
    padding-bottom: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-progress {
    display: none;
  }

  .person-hero-bg .glow-r,
  .person-hero-bg .glow-l {
    animation: none;
  }

  .person-hero-bg,
  .person-closing-bg {
    animation: gradDrift 14s ease-in-out infinite;
  }

  .profile-motion-reduced .person-photo-frame {
    transform: translateY(7%);
    transition-duration: .95s;
  }

  .profile-motion-reduced .person-hero-media.profile-in-view .person-photo-frame {
    transform: translateY(0);
  }

  .profile-motion-reduced [data-profile-words="ready"] .profile-word {
    filter: none;
    transform: translateY(.7em) rotate(2deg);
    transition-duration: .55s, .75s, .01ms;
  }

  .profile-motion-reduced .person-story-copy > *,
  .profile-motion-reduced .person-practice-intro > *,
  .profile-motion-reduced .person-notes-copy,
  .profile-motion-reduced .person-closing-inner > * {
    filter: none;
  }
}
