:root {
  --ink: #080808;
  --paper: #f3f0ea;
  --paper-deep: #e9e5dd;
  --paper-tint: rgba(8, 8, 8, 0.028);
  --white: #ffffff;
  --purple: #553268;
  --purple-light: #cbb7d5;
  --text: #161616;
  --muted: #625f59;
  --muted-dark: #9b9892;
  --line: rgba(8, 8, 8, 0.16);
  --line-light: rgba(255, 255, 255, 0.16);
  --shell: 1240px;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;

  --micro: clamp(0.68rem, 0.63rem + 0.18vw, 0.75rem);
  --small: clamp(0.8rem, 0.77rem + 0.14vw, 0.875rem);
  --body: clamp(0.94rem, 0.9rem + 0.2vw, 1.05rem);
  --lead: clamp(1.1rem, 0.98rem + 0.56vw, 1.4rem);
  --display-1: clamp(3.05rem, 8.1vw, 7.9rem);
  --display-2: clamp(2.7rem, 6.3vw, 6.1rem);
  --heading-3: clamp(1.28rem, 1.05rem + 0.9vw, 1.75rem);

  --section-pad: clamp(88px, 10.5vw, 158px);
  --rail: 68px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  min-width: 320px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  list-style: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 5px;
}

::selection {
  background: var(--purple);
  color: var(--white);
}

.shell {
  margin-inline: auto;
  max-width: var(--shell);
  padding-inline: clamp(20px, 4vw, 56px);
  width: 100%;
}

.skip-link {
  background: var(--white);
  color: var(--ink);
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  transition: top 160ms ease;
  z-index: 1000;
}

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

.scroll-progress {
  background: transparent;
  height: 2px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 600;
}

.scroll-progress span {
  background: var(--purple);
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
}

/* Header */

.site-header {
  left: 0;
  padding-top: 18px;
  position: fixed;
  right: 0;
  top: 0;
  transition: padding-top 260ms var(--ease);
  z-index: 500;
}

.site-header.scrolled {
  padding-top: 10px;
}

.nav {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(243, 240, 234, 0.82);
  border: 1px solid rgba(8, 8, 8, 0.12);
  border-radius: 999px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto 1fr;
  min-height: 62px;
  padding: 7px 8px 7px 20px;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.scrolled .nav {
  background: rgba(243, 240, 234, 0.94);
  border-color: rgba(8, 8, 8, 0.16);
  box-shadow: 0 10px 34px rgba(8, 8, 8, 0.07);
}

.wordmark {
  align-items: center;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 600;
  gap: 9px;
  justify-self: start;
  letter-spacing: -0.03em;
}

.wordmark i {
  background: var(--purple);
  border-radius: 50%;
  height: 6px;
  transition: transform 260ms var(--ease);
  width: 6px;
}

.wordmark:hover i {
  transform: scale(1.5);
}

.nav-links {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.6vw, 36px);
}

.nav-links a {
  color: var(--muted);
  font-size: var(--micro);
  font-weight: 500;
  padding-block: 4px;
  position: relative;
  transition: color 200ms ease;
  white-space: nowrap;
}

.nav-links a::after {
  background: var(--purple);
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 320ms var(--ease);
  width: 100%;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--ink);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  align-items: center;
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: var(--micro);
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  justify-self: end;
  padding: 14px 18px;
  transition:
    background 240ms ease,
    transform 240ms var(--ease);
}

.nav-contact:hover {
  background: var(--purple);
  transform: translateY(-1px);
}

.arrow {
  flex: 0 0 auto;
  height: 15px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 240ms var(--ease);
  width: 15px;
}

a:hover .arrow {
  transform: translate(2px, -2px);
}

/* Buttons and links */

.button,
.text-link {
  align-items: center;
  display: inline-flex;
  font-size: var(--small);
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.005em;
}

.button {
  border: 1px solid currentColor;
  border-radius: 999px;
  isolation: isolate;
  padding: 16px 24px;
  position: relative;
  transition:
    border-color 300ms ease,
    transform 300ms var(--ease);
}

.button::before {
  background: var(--purple);
  border-radius: inherit;
  content: "";
  inset: 0;
  position: absolute;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 420ms var(--ease);
  z-index: -1;
}

.button:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.button:hover::before {
  transform: scaleY(1);
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

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

.text-link {
  border-bottom: 1px solid var(--line);
  padding-block: 7px;
  position: relative;
}

.text-link::after {
  background: currentColor;
  bottom: -1px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 380ms var(--ease);
  width: 100%;
}

.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero */

.hero {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 100svh;
  padding-bottom: clamp(52px, 6.5vh, 80px);
  padding-top: clamp(106px, 12vh, 136px);
}

.status-line {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: var(--micro);
  font-weight: 500;
  gap: 11px;
  letter-spacing: 0.11em;
  margin-bottom: clamp(26px, 4vh, 48px);
  text-transform: uppercase;
}

.status-dot {
  background: var(--purple);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 50, 104, 0.12);
  flex: 0 0 auto;
  height: 7px;
  width: 7px;
}

.hero h1 {
  color: var(--ink);
  font-size: var(--display-1);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-wrap: balance;
}

.hero h1 em,
.statement em,
.credentials-intro h2 em,
.contact-inner h2 em {
  color: var(--purple);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.028em;
}

.hero-base {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(40px, 4.5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(230px, 282px);
  margin-top: clamp(36px, 4.5vh, 56px);
  padding-top: 26px;
}

.hero-intro {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 3.6vw, 44px);
}

.hero-intro > p {
  color: #4a4741;
  font-size: var(--lead);
  line-height: 1.6;
  max-width: 40ch;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
}

.hero-portrait {
  margin: 0;
}

.portrait-frame {
  background: var(--paper-deep);
  border-radius: 999px 999px 4px 4px;
  overflow: hidden;
  position: relative;
}

.portrait-frame img {
  aspect-ratio: 4 / 5;
  filter: saturate(0.88) contrast(1.03);
  height: 100%;
  object-fit: cover;
  transform: scale(1.24);
  transform-origin: 50% 30%;
  transition: transform 900ms var(--ease);
  width: 100%;
}

.hero-portrait:hover img {
  transform: scale(1.29);
}

.hero-portrait figcaption {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 18px 0 15px;
}

.hero-portrait figcaption div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-portrait figcaption span {
  color: var(--muted);
  font-size: var(--micro);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-portrait figcaption strong {
  font-size: var(--small);
  font-weight: 500;
}

.hero-portrait figcaption a {
  align-items: center;
  display: inline-flex;
  font-size: var(--small);
  gap: 7px;
  position: relative;
}

.hero-portrait figcaption a::after {
  background: currentColor;
  bottom: -2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 380ms var(--ease);
  width: 100%;
}

.hero-portrait figcaption a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Practice band */

.practice-band {
  background: var(--ink);
  color: var(--white);
}

.practice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.practice-list li {
  font-size: var(--micro);
  font-weight: 500;
  letter-spacing: 0.13em;
  padding: 22px clamp(10px, 1.6vw, 24px);
  position: relative;
  text-align: center;
  text-transform: uppercase;
}

.practice-list li:first-child {
  padding-left: 0;
}

.practice-list li:last-child {
  padding-right: 0;
}

.practice-list li + li::before {
  background: rgba(255, 255, 255, 0.28);
  content: "";
  height: 11px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

/* Section scaffolding */

.section {
  padding-block: var(--section-pad);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
  padding-block: var(--section-pad);
}

.section-label {
  align-items: baseline;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: var(--rail) 1fr;
  padding-top: 18px;
}

.section-label span {
  color: var(--purple);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1;
}

.section-label p {
  color: var(--muted);
  font-size: var(--micro);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label-light {
  border-top-color: var(--line-light);
}

.section-label-light span {
  color: var(--purple-light);
}

.section-label-light p {
  color: var(--muted-dark);
}

.column-label {
  color: var(--muted);
  font-size: var(--micro);
  font-weight: 500;
  letter-spacing: 0.13em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

/* Profile */

.profile-content {
  padding-top: clamp(52px, 7vw, 92px);
}

.statement {
  font-size: var(--display-2);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.96;
  max-width: 16ch;
}

.statement em {
  white-space: nowrap;
}

.profile-grid {
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  margin-top: clamp(56px, 7vw, 96px);
  padding-top: 28px;
}

.profile-grid p {
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.78;
}

.profile-grid .profile-lead {
  color: var(--text);
  font-size: var(--lead);
  line-height: 1.62;
}

.profile-facts {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(52px, 7vw, 88px);
}

.profile-facts article {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: space-between;
  min-height: 122px;
  padding: 24px 24px 26px 0;
}

.profile-facts article + article {
  border-left: 1px solid var(--line);
  padding-left: 26px;
}

.profile-facts span {
  color: var(--muted);
  font-size: var(--micro);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile-facts strong {
  font-size: var(--heading-3);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

/* Venture */

.venture-head {
  padding-top: clamp(48px, 6vw, 84px);
}

.venture-kicker {
  color: var(--muted-dark);
  font-size: var(--micro);
  letter-spacing: 0.13em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.venture-head h2 {
  font-size: clamp(4.4rem, 12.5vw, 12rem);
  font-weight: 500;
  letter-spacing: -0.062em;
  line-height: 0.82;
}

.venture-head h2 span {
  color: var(--purple-light);
}

.venture-grid {
  align-items: start;
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: clamp(48px, 6vw, 90px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  margin-top: clamp(56px, 7vw, 92px);
  padding-top: 26px;
}

.venture-description {
  color: #a8a5a0;
  font-size: var(--lead);
  line-height: 1.62;
  margin-bottom: clamp(30px, 4vw, 42px);
  max-width: 34ch;
}

.venture-model li {
  align-items: baseline;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 6px 32px;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 1fr);
  padding-block: 22px;
}

.venture-model li:first-child {
  padding-top: 0;
}

.venture-model h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.venture-model p {
  color: #a8a5a0;
  font-size: var(--small);
  line-height: 1.7;
}

/* Experience */

.section-heading {
  align-items: end;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.4fr);
  padding-block: clamp(52px, 7vw, 92px);
}

.section-heading h2 {
  font-size: var(--display-2);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.94;
}

.section-heading p {
  color: var(--muted);
  font-size: var(--small);
  line-height: 1.78;
}

.timeline {
  border-top: 1px solid var(--line);
}

.role {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: var(--rail) minmax(170px, 0.32fr) minmax(0, 1fr);
  isolation: isolate;
  padding-block: 34px;
  position: relative;
}

.role::after {
  background: var(--paper-tint);
  content: "";
  inset: 0 -20px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 320ms ease;
  z-index: -1;
}

.role:hover::after {
  opacity: 1;
}

.role-current::before {
  background: var(--purple);
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: -1px;
  width: var(--rail);
}

.role-number {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  transition: color 320ms ease;
}

.role:hover .role-number,
.role-current .role-number {
  color: var(--purple);
}

.role-company {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.role-company strong {
  font-size: var(--small);
  font-weight: 500;
}

.role-company span,
.role-heading time {
  color: var(--muted);
  font-size: var(--micro);
  letter-spacing: 0.02em;
}

.role-heading {
  align-items: baseline;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.role-heading h3 {
  font-size: var(--heading-3);
  font-weight: 500;
  letter-spacing: -0.032em;
}

.role-detail > p {
  color: var(--muted);
  font-size: var(--small);
  line-height: 1.74;
  margin-top: 14px;
  max-width: 62ch;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 18px;
}

.tag-row li {
  color: var(--muted);
  font-size: var(--micro);
  letter-spacing: 0.09em;
  padding-inline: 16px;
  text-transform: uppercase;
}

.tag-row li:first-child {
  padding-left: 0;
}

.tag-row li + li {
  border-left: 1px solid var(--line);
}

/* Credentials */

.credentials-section {
  background: var(--paper-deep);
}

.credentials-intro {
  align-items: end;
  display: grid;
  gap: clamp(28px, 5vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.42fr);
  padding-block: clamp(52px, 7vw, 92px);
}

.credentials-intro h2 {
  font-size: var(--display-2);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.94;
}

.credentials-intro p {
  color: var(--muted);
  font-size: var(--small);
  line-height: 1.78;
}

.credentials-layout {
  display: grid;
  gap: clamp(44px, 5vw, 80px);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.44fr);
}

.education-list article {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px 34px;
  grid-template-columns: 108px 1fr;
  padding-block: 26px;
}

.education-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.education-list article > span {
  color: var(--muted);
  font-size: var(--micro);
  letter-spacing: 0.06em;
  padding-top: 5px;
}

.education-list h3 {
  font-size: var(--heading-3);
  font-weight: 500;
  letter-spacing: -0.028em;
  line-height: 1.2;
}

.education-list article p {
  color: var(--muted);
  font-size: var(--small);
  margin-top: 8px;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability-list li {
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.1;
  padding-block: 15px;
}

/* Contact */

.contact-section {
  background: var(--purple);
  color: var(--white);
  padding-block: clamp(104px, 13vw, 180px);
}

.contact-label {
  color: var(--purple-light);
  font-size: var(--micro);
  font-weight: 500;
  letter-spacing: 0.13em;
  margin-bottom: clamp(44px, 7vw, 84px);
  text-transform: uppercase;
}

.contact-inner h2 {
  font-size: clamp(3.6rem, 9.4vw, 9.4rem);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.86;
}

.contact-inner h2 em {
  color: var(--white);
}

.contact-bottom {
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-top: clamp(60px, 8vw, 104px);
  padding-top: 28px;
}

.contact-bottom > p {
  color: #ded1e4;
  font-size: var(--small);
  line-height: 1.74;
  max-width: 40ch;
}

.contact-link {
  align-items: center;
  display: inline-flex;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  gap: 16px;
  line-height: 1.1;
  padding-bottom: 10px;
  position: relative;
}

.contact-link::before,
.contact-link::after {
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}

.contact-link::before {
  background: rgba(255, 255, 255, 0.42);
}

.contact-link::after {
  background: var(--white);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms var(--ease);
}

.contact-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-link .arrow {
  height: 22px;
  stroke-width: 1.35;
  width: 22px;
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: #8d8a85;
  padding-block: 32px;
}

.footer-inner {
  align-items: center;
  display: grid;
  font-size: var(--micro);
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 26px;
  justify-self: end;
}

.footer-links a {
  transition: color 200ms ease;
}

.footer-links a:hover {
  color: var(--white);
}

/* Reveal */

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 760ms ease,
    transform 760ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .venture-model li:nth-child(2),
.js .education-list article:nth-child(3),
.js .capability-list li:nth-child(2) {
  transition-delay: 70ms;
}

.js .venture-model li:nth-child(3),
.js .education-list article:nth-child(4),
.js .capability-list li:nth-child(3) {
  transition-delay: 140ms;
}

.js .capability-list li:nth-child(4) {
  transition-delay: 210ms;
}

.js .capability-list li:nth-child(5) {
  transition-delay: 280ms;
}

.js .capability-list li:nth-child(6) {
  transition-delay: 350ms;
}

@media (max-width: 1020px) {
  :root {
    --rail: 54px;
  }

  .hero {
    min-height: auto;
  }

  .hero-base {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 264px);
  }

  .hero-intro > p {
    max-width: 34ch;
  }

  .profile-grid {
    gap: 30px clamp(28px, 5vw, 56px);
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }

  .profile-grid .profile-lead {
    grid-column: 1;
  }

  .section-heading,
  .credentials-intro {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
  }

  .venture-grid,
  .credentials-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .venture-description {
    max-width: 48ch;
  }

  .venture-model {
    border-top: 1px solid var(--line-light);
  }

  .venture-model li,
  .venture-model li:first-child {
    grid-template-columns: minmax(0, 0.3fr) minmax(0, 1fr);
    padding-top: 22px;
  }

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

  .capability-list li:nth-child(-n + 2) {
    border-top: 0;
  }

  .capability-list li:nth-child(odd) {
    padding-right: 20px;
  }
}

/* The practice band holds one row down to 790px, where its five terms no
   longer fit. Switch to the centered, divider-free treatment at that point so
   a wrapped row never starts with an orphaned divider. */
@media (max-width: 800px) {
  .practice-list {
    justify-content: center;
    padding-block: 12px;
  }

  .practice-list li,
  .practice-list li:first-child,
  .practice-list li:last-child {
    padding: 8px 14px;
  }

  .practice-list li + li::before {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 10px;
  }

  .nav {
    gap: 12px;
    grid-template-columns: auto 1fr auto;
    min-height: 56px;
    padding-left: 16px;
  }

  .nav-links {
    gap: 16px;
    justify-content: center;
  }

  .nav-contact {
    padding: 12px 15px;
  }

  .hero {
    padding-top: 116px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 13.4vw, 5.4rem);
    letter-spacing: -0.045em;
  }

  .hero-base {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-intro > p {
    max-width: 100%;
  }

  .hero-portrait {
    max-width: 268px;
  }

  .statement {
    max-width: 100%;
  }

  .statement em {
    white-space: normal;
  }

  .profile-grid,
  .section-heading,
  .credentials-intro,
  .contact-bottom {
    grid-template-columns: minmax(0, 1fr);
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .profile-facts article {
    gap: 10px;
    min-height: auto;
    padding: 20px 0;
  }

  .profile-facts article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
  }

  .venture-model li {
    gap: 4px;
    grid-template-columns: minmax(0, 1fr);
  }

  .role {
    gap: 6px 18px;
    grid-template-columns: 34px minmax(0, 1fr);
    padding-block: 28px;
  }

  .role-current::before {
    width: 34px;
  }

  .role-company,
  .role-detail {
    grid-column: 2;
  }

  .role-company {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 10px;
    margin-bottom: 10px;
  }

  .role-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .capability-list li:nth-child(2) {
    border-top: 0;
  }

  .capability-list li:nth-child(odd) {
    padding-right: 0;
  }

  .tag-row {
    gap: 6px 22px;
  }

  .tag-row li,
  .tag-row li:first-child {
    padding-inline: 0;
  }

  .tag-row li + li {
    border-left: 0;
  }

  .contact-inner h2 {
    font-size: clamp(2.5rem, 11.4vw, 4.6rem);
    letter-spacing: -0.05em;
    line-height: 0.9;
  }

  .contact-bottom {
    align-items: start;
    gap: 34px;
  }

  .contact-link {
    justify-self: start;
  }

  .footer-inner {
    align-items: start;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-self: start;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
  .shell {
    padding-inline: 20px;
  }

  .nav {
    padding-left: 14px;
  }

  .nav-links {
    gap: clamp(12px, 4.4vw, 18px);
  }

  .nav-contact span {
    display: none;
  }

  .nav-contact {
    height: 42px;
    padding: 0;
    width: 42px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .button-dark {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .education-list article {
    gap: 12px;
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-delay: 0ms !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
