:root {
  --ink: #14201f;
  --muted: #536260;
  --paper: #fbfaf7;
  --panel: #ffffff;
  --panel-soft: #fffdf8;
  --line: #dfe5df;
  --charcoal: #101817;
  --teal: #0d7c73;
  --teal-dark: #075e58;
  --amber: #c98324;
  --amber-readable: #8a5208;
  --coral: #9f3f2f;
  --shadow: 0 20px 60px rgba(16, 24, 23, 0.14);
  --shadow-soft: 0 10px 28px rgba(16, 24, 23, 0.04);
  --shadow-panel: 0 14px 34px rgba(16, 24, 23, 0.05);
  --soft-teal: #eaf2ee;
  --warm-panel: #fffdf8;
  --max: 1180px;
  --radius: 8px;
  --transition: 0.2s ease;
  --panel-border: 1px solid var(--line);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0, var(--paper) 18rem),
    var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

main,
section,
article,
div,
dl,
ul {
  min-width: 0;
}

p,
li,
dt,
dd,
h1,
h2,
h3,
a,
span {
  overflow-wrap: anywhere;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: #f8fbf8;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.site-header[data-elevated="true"] {
  background: rgba(251, 250, 247, 0.94);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(20, 32, 31, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 720;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  align-items: center;
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
  opacity: 0.86;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  display: grid;
  align-items: start;
  overflow: hidden;
  background: var(--charcoal);
  color: #ffffff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 14, 13, 0.92) 0%, rgba(8, 14, 13, 0.76) 40%, rgba(8, 14, 13, 0.32) 100%),
    linear-gradient(0deg, rgba(8, 14, 13, 0.78) 0%, rgba(8, 14, 13, 0) 46%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  min-width: 0;
  margin: 0 auto;
  padding: calc(72px + 1rem) 0 2rem 1.5rem;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(72px + 1rem);
  bottom: 1.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--amber), rgba(255, 255, 255, 0.08));
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--amber-readable);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.band .eyebrow {
  color: var(--amber);
}

.hero h1 {
  max-width: min(100%, 860px);
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 560;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-role {
  max-width: 640px;
  margin: 0.55rem 0 0;
  color: #ffffff;
  font-size: clamp(0.94rem, 1.35vw, 1.12rem);
  font-weight: 650;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-actions {
  margin-top: 0.9rem;
}

.hero-actions .button {
  min-height: 38px;
  padding: 0.52rem 0.78rem;
  font-size: 0.88rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 740;
  text-decoration: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible,
.nav a:focus-visible {
  outline: 3px solid rgba(13, 124, 115, 0.35);
  outline-offset: 2px;
}

.button-primary {
  background: var(--teal);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-dark);
}

.button-secondary {
  border: 1px solid currentColor;
  color: inherit;
}

.intro-section,
.section,
.band-content,
.contact-section,
.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: 5.5rem 0 4.75rem;
}

.intro {
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.intro p {
  margin: 0;
}

.intro p + p {
  margin-top: 1.4rem;
}

.intro-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.profile-photo {
  width: min(100%, 240px);
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(16, 24, 23, 0.12);
}

.quick-facts {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.quick-facts div {
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
}

.quick-facts dt {
  color: var(--teal-dark);
  font-size: 1.08rem;
  font-weight: 780;
}

.quick-facts dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.profile-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.1rem clamp(1.5rem, 4vw, 3rem);
}

.profile-copy p {
  margin: 0;
  font-size: 1.02rem;
}

.profile-copy p:first-child {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.28;
}

.profile-copy p:nth-child(2),
.profile-copy p:nth-child(3) {
  padding-top: 0.25rem;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  color: var(--muted);
}

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

.feature-card {
  min-height: 260px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel) 0%, var(--warm-panel) 100%);
  box-shadow: var(--shadow-soft);
}

.feature-card p {
  margin: auto 0 0;
}

.card-index {
  color: var(--coral);
  font-weight: 780;
  margin-bottom: 2.4rem;
}

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

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

.impact-card {
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 24, 23, 0.05);
  overflow: hidden;
}

.impact-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--amber));
}

.impact-card::before {
  content: attr(data-impact);
  align-self: flex-start;
  margin-bottom: 1.6rem;
  padding: 0.28rem 0.5rem;
  color: var(--teal-dark);
  background: var(--soft-teal);
  border: 1px solid #d7e5de;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.impact-card span {
  color: var(--coral);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 780;
  line-height: 0.95;
}

.impact-card h3 {
  margin-top: 1.2rem;
}

.impact-card p {
  margin: auto 0 0;
}

.impact-stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.5rem;
}

.impact-stories article {
  padding: 1.4rem;
  background: linear-gradient(180deg, var(--panel) 0%, var(--warm-panel) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
}

.impact-stories span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.impact-stories h3 {
  margin-bottom: 0.85rem;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.impact-stories dl {
  margin: 0;
}

.impact-stories div {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.impact-stories dt {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 780;
  text-transform: uppercase;
}

.impact-stories dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.tech-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tech-strip span {
  padding: 0.45rem 0.65rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

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

.research-grid {
  display: grid;
  gap: 1rem;
}

.research-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  color: inherit;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.research-card[open] {
  box-shadow: var(--shadow-panel);
}

.research-card:not([open]) {
  min-height: 0;
}

.research-card-wide {
  grid-column: 1 / -1;
}

.research-service-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 1.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.research-service-panel article + article {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.research-service-panel h3 {
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.research-service-panel p {
  margin: 0;
}

.research-card h3 {
  color: var(--ink);
  margin-bottom: 0.85rem;
}

.research-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.research-card summary::-webkit-details-marker {
  display: none;
}

.research-card summary::after {
  content: "+";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: var(--teal-dark);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
}

.research-card[open] summary::after {
  content: "-";
}

.research-card summary span {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 780;
}

.research-card summary small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.86rem;
}

.research-card p,
.research-card li {
  color: var(--muted);
}

.research-card p {
  margin: 0;
}

.research-card ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.research-card strong {
  color: var(--teal-dark);
}

.band {
  background:
    linear-gradient(135deg, rgba(13, 124, 115, 0.22), rgba(201, 131, 36, 0.12)),
    var(--charcoal);
  color: #ffffff;
  margin: 4rem 0;
}

.band-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: 5rem 0;
}

.band h2,
.band h3 {
  color: #ffffff;
}

.band p {
  color: rgba(255, 255, 255, 0.72);
}

.strength-list {
  display: grid;
  gap: 1.25rem;
}

.strength-list div {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.strength-list p,
.principles p {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 6vw, 5rem);
}

.experience-section {
  border-bottom: 1px solid var(--line);
}

.experience-grid {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding-left: 1.75rem;
}

.experience-grid::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 1px;
  background: var(--line);
}

.experience-grid article {
  position: relative;
  padding: 1.25rem 1.35rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.experience-grid article::before {
  content: "";
  position: absolute;
  left: -1.65rem;
  top: 1.45rem;
  width: 11px;
  height: 11px;
  background: var(--paper);
  border: 3px solid var(--teal);
  border-radius: 999px;
}

.experience-current,
.experience-mckesson {
  border-color: rgba(13, 124, 115, 0.32);
}

.experience-current {
  background: linear-gradient(180deg, #ffffff 0%, #f1f7f4 100%);
}

.experience-current::after,
.experience-mckesson::after {
  content: "McKesson";
  position: absolute;
  right: 1rem;
  top: 1rem;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.experience-grid span {
  color: var(--coral);
  font-size: 0.86rem;
  font-weight: 780;
  text-transform: uppercase;
}

.experience-grid h3 {
  margin: 0.75rem 0 0.65rem;
}

.experience-grid ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1.05rem;
}

.experience-grid li {
  color: var(--muted);
}

.credential-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.credential-strip div {
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.credential-strip span {
  color: var(--teal-dark);
  font-weight: 780;
}

.credential-strip p {
  margin: 0.35rem 0 0;
}

.principles {
  display: grid;
  gap: 1rem;
}

.principles article {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

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

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

.advisory-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  background: linear-gradient(180deg, var(--panel) 0%, var(--warm-panel) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.advisory-grid span {
  margin-bottom: 2rem;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 780;
  text-transform: uppercase;
}

.advisory-grid h3 {
  margin-bottom: 0.75rem;
}

.advisory-grid p {
  margin: auto 0 0;
}

.advisory-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding: 1.4rem;
  background:
    linear-gradient(135deg, rgba(13, 124, 115, 0.12), rgba(201, 131, 36, 0.1)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.advisory-cta h3 {
  margin: 0 0 0.45rem;
}

.advisory-cta p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.insights-section {
  border-bottom: 1px solid var(--line);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.insights-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, rgba(234, 242, 238, 0.72) 0%, rgba(255, 255, 255, 0.9) 100%),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-panel);
}

.insights-grid span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 780;
  text-transform: uppercase;
}

.insights-grid h3 {
  margin: 1.1rem 0 0.75rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.insights-grid p {
  margin: 0;
  color: var(--muted);
}

.insights-grid a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 1.35rem;
  color: var(--teal-dark);
  font-weight: 760;
  text-decoration: none;
}

.insights-grid a::after {
  content: "->";
  margin-left: 0.45rem;
}

.insights-grid a:hover,
.insights-grid a:focus-visible {
  text-decoration: underline;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(280px, 520px);
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: clamp(2rem, 5vw, 3rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(234, 242, 238, 0.85)),
    var(--soft-teal);
  border: 1px solid #d7e5de;
  border-radius: var(--radius);
}

.contact-section h2 {
  max-width: 680px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.contact-section .contact-actions {
  max-width: 520px;
}

.site-footer {
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: center;
    flex-wrap: wrap;
    min-height: 72px;
  }

  .hero-content {
    padding: calc(110px + 1rem) 0 2rem 1.5rem;
  }

  .hero-content::before {
    top: calc(110px + 1rem);
  }

  .nav {
    flex-basis: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5rem;
    overflow-x: auto;
    padding-top: 0.75rem;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0.4rem 0.62rem;
    background: rgba(8, 14, 13, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    font-size: 0.84rem;
    font-weight: 700;
  }

  .site-header[data-elevated="true"] .nav a {
    background: rgba(255, 255, 255, 0.68);
    border-color: var(--line);
  }

  .hero {
    min-height: 100svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 14, 13, 0.9) 0%, rgba(8, 14, 13, 0.72) 100%),
      linear-gradient(0deg, rgba(8, 14, 13, 0.74) 0%, rgba(8, 14, 13, 0) 50%);
  }

  .intro-section,
  .band-content,
  .profile-copy,
  .split,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .insights-grid article {
    min-height: 0;
  }

  .impact-stories {
    grid-template-columns: 1fr;
  }

  .credential-strip {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    padding-left: 1.25rem;
  }

  .experience-grid article::before {
    left: -1.15rem;
  }

  .research-service-panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .research-service-panel article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 1.25rem;
    padding-left: 0;
  }

  .contact-section {
    align-items: start;
  }

  .advisory-cta {
    grid-template-columns: 1fr;
  }

  .advisory-cta .button {
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.65rem 0.75rem;
  }

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

  .brand {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 1.25rem));
    padding: 7rem 0 1.55rem 1rem;
  }

  .hero-content::before {
    top: 7rem;
    bottom: 1.2rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
    line-height: 1.12;
  }

  .hero-role {
    font-size: clamp(0.94rem, 3.65vw, 1.05rem);
    line-height: 1.34;
  }

  .hero-actions {
    gap: 0.45rem;
    margin-top: 0.65rem;
  }

  .hero-actions .button {
    width: auto;
    min-height: 34px;
    padding: 0.42rem 0.55rem;
    font-size: 0.76rem;
  }

  .hero-actions .button-secondary[href*="linkedin"] {
    display: none;
  }

  .nav {
    gap: 0.35rem;
  }

  .nav a {
    min-height: 32px;
    padding: 0.32rem 0.45rem;
    font-size: 0.78rem;
  }

  .profile-photo {
    width: 176px;
  }

  .intro-section,
  .section {
    padding: 3.25rem 0;
  }

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

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

  .impact-card {
    min-height: 0;
  }

  .impact-card::before {
    margin-bottom: 1rem;
  }

  .impact-card span {
    font-size: clamp(1.95rem, 11vw, 2.8rem);
  }

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

  .feature-card {
    min-height: 230px;
  }

  .advisory-grid article {
    min-height: 0;
  }

  .insights-grid h3 {
    font-size: 1.22rem;
  }

  .advisory-grid span {
    margin-bottom: 1.1rem;
  }

  .advisory-cta .button {
    width: 100%;
  }

  .band {
    margin: 2rem 0;
  }

  .band-content {
    padding: 3.5rem 0;
  }

  .button {
    width: 100%;
  }
}
