:root {
  --background: #f4f0e6;
  --foreground: #0a1222;
  --primary: #0a1222;
  --primary-foreground: #ffffff;
  --secondary: #dfff4f;
  --accent: #3b55d9;
  --destructive: #c72c41;
  --paper: #f4f0e6;
  --ink: #0a1222;
  --lime: #dfff4f;
  --blue: #3b55d9;
  --coral: #ff7059;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  background: var(--paper);
  color: var(--ink);
  margin: 0;
  font-family: Aptos, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.print-cv {
  display: none;
}

.skip-link {
  z-index: 100;
  background: var(--lime);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 800;
  position: fixed;
  top: 1rem;
  left: 1rem;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  z-index: 20;
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(12px);
  background: #f4f0e6f0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5rem;
  padding: 0 4vw;
  position: relative;
}

.wordmark {
  letter-spacing: -0.08em;
  width: max-content;
  font-size: 1.5rem;
  font-weight: 950;
  text-decoration: none;
}

.wordmark span {
  color: var(--blue);
}

.site-header nav {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  gap: clamp(1rem, 2.6vw, 2.5rem);
  font-size: 0.78rem;
  font-weight: 800;
  display: flex;
}

.site-header nav a {
  text-underline-offset: 0.35rem;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.header-actions {
  justify-self: end;
  align-items: center;
  gap: 0.6rem;
  display: flex;
}

.print-button,
.social-button,
.primary-action {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
}

.print-button,
.social-button {
  border: 2px solid var(--ink);
  min-height: 2.6rem;
  padding: 0.35rem 0.8rem;
  color: var(--ink);
  background: transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
}

.social-button {
  aspect-ratio: 1;
  padding-inline: 0;
  width: 2.6rem;
}

.print-button:hover,
.print-button:focus-visible,
.social-button:hover,
.social-button:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.print-button svg {
  width: 1rem;
  height: 1rem;
}

.social-mark {
  background: var(--ink);
  color: var(--paper);
  border-radius: 0.18rem;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  place-items: center;
  font-size: 0.62rem;
  font-weight: 950;
  line-height: 1;
  display: grid;
}

.social-button:hover .social-mark,
.social-button:focus-visible .social-mark {
  background: var(--paper);
  color: var(--ink);
}

.social-button span:not(.social-mark) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.hero {
  border-bottom: 2px solid var(--ink);
  grid-template-columns: minmax(0, 1.5fr) minmax(20rem, 0.7fr);
  min-height: calc(100vh - 5rem);
  display: grid;
}

.hero-copy {
  background-image: radial-gradient(var(--ink) 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem, 8vw, 8rem) 5vw;
  display: flex;
}

.eyebrow,
.panel-label,
.section-kicker,
.credential-type {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
}

.eyebrow {
  background: var(--lime);
  width: max-content;
  max-width: 100%;
  margin: 0 0 2rem;
  padding: 0.45rem 0.75rem;
}

.hero h1 {
  letter-spacing: -0.085em;
  margin: 0;
  font-size: clamp(4.4rem, 10vw, 9.7rem);
  font-weight: 950;
  line-height: 0.76;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: clamp(1.5px, 0.18vw, 3px) var(--ink);
  display: block;
}

.hero-summary {
  max-width: 44rem;
  margin: clamp(2.25rem, 5vw, 4.5rem) 0 0;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  font-weight: 600;
  line-height: 1.35;
}

.hero-actions {
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-top: 2.25rem;
  display: flex;
}

.primary-action {
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  min-height: 3.25rem;
  padding: 0.7rem 1.5rem;
  box-shadow: 4px 4px 0 var(--blue);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 850;
}

.primary-action:hover,
.primary-action:focus-visible {
  background: var(--blue);
  box-shadow: 4px 4px 0 var(--ink);
}

.primary-action svg,
.location svg {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.location {
  align-items: center;
  gap: 0.5rem;
  max-width: 22rem;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
}

.hero-panel {
  background: var(--ink);
  color: var(--white);
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 4vw, 4.5rem);
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  pointer-events: none;
  border: 1px solid #ffffff42;
  position: absolute;
  inset: 1.25rem;
}

.signal {
  aspect-ratio: 1;
  width: clamp(10rem, 18vw, 18rem);
  position: absolute;
  top: clamp(2rem, 5vw, 5rem);
  right: clamp(1.5rem, 4vw, 4rem);
  transform: rotate(-18deg);
}

.signal span {
  border: clamp(0.7rem, 1.1vw, 1.25rem) solid var(--lime);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.signal span:first-child { width: 36%; height: 36%; }
.signal span:nth-child(2) { width: 68%; height: 68%; }
.signal span:nth-child(3) { width: 100%; height: 100%; }

.panel-label,
.panel-statement,
.panel-list {
  z-index: 1;
  position: relative;
}

.panel-label {
  color: var(--lime);
  margin: 0 0 1.25rem;
}

.panel-statement {
  letter-spacing: -0.04em;
  margin: 0;
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  font-weight: 800;
  line-height: 1.06;
}

.panel-list {
  gap: 0.7rem;
  margin-top: 2rem;
  display: grid;
}

.panel-list span {
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 750;
  display: flex;
}

.panel-list svg {
  width: 1rem;
  height: 1rem;
  color: var(--coral);
}

.impact-strip {
  border-bottom: 2px solid var(--ink);
  background: var(--lime);
  grid-template-columns: repeat(4, 1fr);
  display: grid;
}

.impact-strip article {
  border-right: 2px solid var(--ink);
  min-height: 11rem;
  padding: 2rem clamp(1.25rem, 2.5vw, 2.75rem);
}

.impact-strip article:last-child {
  border-right: 0;
}

.impact-strip strong {
  letter-spacing: -0.07em;
  font-size: clamp(2rem, 3.3vw, 4rem);
  font-weight: 950;
  line-height: 1;
  display: block;
}

.impact-strip p {
  max-width: 16rem;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.35;
}

.section-wrap {
  border-bottom: 2px solid var(--ink);
  padding: clamp(4.5rem, 9vw, 9rem) 5vw;
}

.section-kicker {
  border-bottom: 2px solid;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 6vw, 6rem);
  padding-bottom: 0.85rem;
  display: flex;
}

.section-kicker.light {
  color: var(--white);
}

.about-grid,
.experience-layout,
.skills-layout,
.toolkit {
  grid-template-columns: minmax(18rem, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 9rem);
  display: grid;
}

.about h2,
.experience h2,
.skills h2,
.credentials h2,
.closing h2,
.work h2,
.video-showcase h2 {
  letter-spacing: -0.075em;
  margin: 0;
  font-size: clamp(3rem, 6.6vw, 7.5rem);
  font-weight: 950;
  line-height: 0.9;
}

.about-copy {
  align-self: end;
}

.about-copy > p {
  margin: 0 0 1.4rem;
  font-size: clamp(1.1rem, 1.65vw, 1.45rem);
  line-height: 1.55;
}

.principles,
.skills-list {
  flex-wrap: wrap;
  gap: 0.75rem;
  display: flex;
}

.principles {
  margin-top: 2rem;
}

.principles span,
.skills-list span {
  border: 2px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.principles span {
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.86rem;
  display: inline-flex;
}

.principles svg {
  width: 0.9rem;
  height: 0.9rem;
}

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

.work-heading,
.video-heading {
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  display: flex;
}

.work-heading p,
.video-heading p {
  max-width: 31rem;
  margin: 0;
  font-size: 1.1rem;
}

.work-heading p {
  color: #bec6d5;
}

.work-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 6rem);
  display: grid;
}

.work-card {
  border: 2px solid var(--white);
  min-height: 31rem;
  color: var(--ink);
  flex-direction: column;
  padding: clamp(1.75rem, 4vw, 4rem);
  display: flex;
}

.work-card.lime { background: var(--lime); }
.work-card.blue { background: var(--blue); color: var(--white); }
.work-card.coral { background: var(--coral); }
.work-card.paper { background: var(--paper); }

.card-topline {
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  font-weight: 900;
  display: flex;
}

.card-topline svg {
  width: 2rem;
  height: 2rem;
}

.work-card h3 {
  letter-spacing: -0.065em;
  max-width: 28rem;
  margin: auto 0 1.4rem;
  font-size: clamp(2rem, 3.7vw, 4.25rem);
  font-weight: 950;
  line-height: 0.95;
}

.work-card > p {
  max-width: 37rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.work-card > strong {
  letter-spacing: 0.035em;
  text-transform: uppercase;
  border-top: 2px solid;
  margin-top: 2rem;
  padding-top: 1rem;
  font-size: 0.88rem;
  display: block;
}

.work blockquote {
  border-left: clamp(0.65rem, 1vw, 1rem) solid var(--coral);
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  margin: clamp(4rem, 8vw, 8rem) 0 0;
  padding-left: clamp(1.5rem, 4vw, 4rem);
  display: grid;
}

.work blockquote p {
  letter-spacing: -0.055em;
  max-width: 54rem;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 5.5rem);
  font-style: italic;
  line-height: 1;
}

.work blockquote cite {
  color: #bec6d5;
  max-width: 14rem;
  font-size: 0.83rem;
  font-style: normal;
}

.video-showcase {
  background: var(--coral);
}

.video-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(3rem, 6vw, 6rem);
  display: grid;
}

.video-frame {
  aspect-ratio: 16 / 9;
  border: 2px solid var(--ink);
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--paper);
  position: relative;
  overflow: hidden;
}

.video-frame iframe {
  border: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  color: var(--white);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  background-image:
    linear-gradient(#ffffff0f 1px, transparent 1px),
    linear-gradient(90deg, #ffffff0f 1px, transparent 1px);
  background-size: 34px 34px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
}

.play-mark {
  aspect-ratio: 1;
  border: 3px solid var(--lime);
  width: clamp(4rem, 7vw, 6rem);
  color: var(--lime);
  border-radius: 50%;
  place-items: center;
  display: grid;
}

.play-mark svg {
  fill: currentColor;
  width: 38%;
  height: 38%;
}

.video-caption {
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
  display: grid;
}

.video-caption > span {
  font-size: 0.78rem;
  font-weight: 900;
}

.video-caption h3 {
  letter-spacing: -0.055em;
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  font-weight: 950;
  line-height: 1;
}

.video-caption p,
.experience-intro p,
.skills-layout > div:first-child > p {
  margin: 0.75rem 0 0;
}

.video-caption p {
  line-height: 1.45;
}

.experience-intro p,
.skills-layout > div:first-child > p {
  max-width: 30rem;
  margin-top: 2rem;
  font-size: 1.15rem;
}

.timeline {
  border-top: 2px solid var(--ink);
}

.timeline article {
  border-bottom: 1px solid #0a122259;
  grid-template-columns: 10rem 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  display: grid;
}

.timeline .period {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 900;
}

.timeline h3 {
  letter-spacing: -0.045em;
  margin: 0;
  font-size: clamp(1.6rem, 2.7vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
}

.organisation {
  color: #364156;
  margin: 0.35rem 0 1.25rem;
  font-weight: 800;
}

.description {
  color: #30394a;
  max-width: 43rem;
  margin: 0;
}

.skills {
  background: var(--blue);
  color: var(--white);
}

.skills-list {
  align-content: flex-start;
}

.skills-list span {
  padding: 0.75rem 1rem;
}

.toolkit {
  border-top: 2px solid var(--white);
  margin-top: clamp(4rem, 8vw, 8rem);
  padding-top: 2rem;
}

.toolkit > p {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 900;
}

.toolkit > div {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 2rem;
  display: grid;
}

.toolkit span {
  font-weight: 750;
}

.credentials h2 {
  max-width: 65rem;
}

.credentials-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: clamp(3rem, 6vw, 6rem);
  display: grid;
}

.credentials-grid article {
  border: 2px solid var(--ink);
  padding: clamp(1.75rem, 4vw, 4rem);
}

.credential-type {
  color: var(--blue);
  margin: 0 0 4rem;
}

.credentials-grid h3 {
  letter-spacing: -0.05em;
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
}

.credentials-grid h3 + p {
  margin: 1rem 0 0;
  font-weight: 750;
}

.small-list {
  color: #3e4655;
  border-top: 1px solid #0a122273;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  display: grid;
}

.award-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  display: grid;
}

.award-crest {
  clip-path: polygon(50% 0, 90% 12%, 100% 38%, 86% 82%, 50% 100%, 14% 82%, 0 38%, 10% 12%);
  background: var(--ink);
  color: var(--white);
  text-align: center;
  min-height: 18rem;
  padding: clamp(2.25rem, 4vw, 3.25rem) 1.4rem 3.7rem;
  position: relative;
  display: grid;
  align-content: center;
}

.award-crest:nth-child(2) {
  background: var(--blue);
}

.award-crest:nth-child(3) {
  background: var(--coral);
  color: var(--ink);
}

.award-crest:nth-child(4) {
  background: var(--lime);
  color: var(--ink);
}

.award-crest::before {
  content: "";
  clip-path: inherit;
  pointer-events: none;
  border: 2px solid currentColor;
  opacity: 0.35;
  position: absolute;
  inset: 0.8rem;
}

.award-year {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 950;
}

.award-crest h3 {
  letter-spacing: -0.04em;
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2.25rem);
  font-weight: 950;
  line-height: 0.98;
}

.award-crest p:last-child {
  margin: 1rem auto 0;
  max-width: 14rem;
  font-size: 0.9rem;
  line-height: 1.35;
}

.closing {
  background: var(--lime);
  text-align: center;
  padding: clamp(5rem, 11vw, 12rem) 5vw;
}

.closing > p {
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 1.75rem;
  font-size: 0.8rem;
  font-weight: 900;
}

.closing h2 {
  max-width: 80rem;
  margin-inline: auto;
}

.closing a {
  border-bottom: 2px solid var(--ink);
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-bottom: 0.25rem;
  font-weight: 850;
  text-decoration: none;
  display: inline-flex;
}

.closing a:hover svg,
.closing a:focus-visible svg {
  transform: translate(0.2rem, -0.2rem);
}

.closing a svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.16s;
}

footer {
  background: var(--ink);
  color: var(--white);
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 5vw;
  font-size: 0.82rem;
  font-weight: 750;
  display: flex;
}

@media (width <= 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

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

  .hero-panel {
    min-height: 36rem;
  }

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

  .impact-strip article:nth-child(2) {
    border-right: 0;
  }

  .impact-strip article:nth-child(-n + 2) {
    border-bottom: 2px solid var(--ink);
  }

  .about-grid,
  .experience-layout,
  .skills-layout,
  .toolkit,
  .work-heading,
  .video-heading,
  .work blockquote {
    grid-template-columns: 1fr;
    display: grid;
  }

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

  .work-card {
    min-height: 27rem;
  }

}

@media (width <= 640px) {
  .site-header {
    min-height: 4.25rem;
    padding-inline: 1.25rem;
  }

  .print-button {
    padding-inline: 0.8rem;
  }

  .hero-copy,
  .hero-panel,
  .section-wrap,
  .closing {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    min-height: calc(100svh - 4.25rem);
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 22vw, 6.8rem);
  }

  .hero-summary {
    font-size: 1.2rem;
  }

  .hero-panel {
    min-height: 33rem;
    padding-top: 13rem;
  }

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

  .impact-strip article {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
    min-height: auto;
  }

  .impact-strip article:last-child {
    border-bottom: 0;
  }

  .section-kicker {
    margin-bottom: 3rem;
  }

  .about h2,
  .experience h2,
  .skills h2,
  .credentials h2,
  .closing h2,
  .work h2,
  .video-showcase h2 {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .work-heading,
  .video-heading {
    align-items: start;
  }

  .work-card {
    min-height: 30rem;
    padding: 1.5rem;
  }

  .work-card h3 {
    font-size: 2.45rem;
  }

  .video-frame {
    box-shadow: 5px 5px 0 var(--paper);
  }

  .timeline article,
  .toolkit > div,
  .award-grid,
  .credentials-grid {
    grid-template-columns: 1fr;
  }

  .timeline article {
    gap: 1rem;
  }

  .credential-type {
    margin-bottom: 3rem;
  }

  footer {
    flex-direction: column;
    padding-inline: 1.25rem;
  }
}

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

  *,
  ::before,
  ::after {
    transition-duration: 0.01ms !important;
  }
}

@media print {
  @page {
    size: A4;
    margin: 9mm;
  }

  html,
  body {
    background: #ffffff;
  }

  body {
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 8.6pt;
    line-height: 1.24;
  }

  .site-shell {
    min-height: 0;
    overflow: visible;
  }

  .site-header,
  .skip-link,
  main,
  footer {
    display: none !important;
  }

  .print-cv {
    color: #000000;
    background: #ffffff;
    display: block;
  }

  .print-page {
    break-after: page;
  }

  .print-page:last-child {
    break-after: auto;
  }

  .print-cv-header {
    border-bottom: 1.6pt solid #000000;
    justify-content: space-between;
    gap: 8mm;
    margin-bottom: 3mm;
    padding-bottom: 2.6mm;
    display: flex;
  }

  .print-cv-header h1 {
    letter-spacing: 0;
    margin: 0;
    font-size: 22pt;
    font-weight: 900;
    line-height: 0.95;
  }

  .print-cv-header p,
  .print-cv-header address {
    margin: 1.4mm 0 0;
    font-size: 8.6pt;
    font-style: normal;
    line-height: 1.25;
  }

  .print-cv-header address {
    text-align: right;
  }

  .print-section {
    break-inside: avoid;
    margin: 0 0 3mm;
  }

  .print-section h2 {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 0.8pt solid #000000;
    margin: 0 0 1.6mm;
    padding-bottom: 0.7mm;
    font-size: 9.4pt;
    font-weight: 900;
    line-height: 1.1;
  }

  .print-section h3 {
    margin: 0;
    font-size: 8.9pt;
    font-weight: 800;
    line-height: 1.18;
  }

  .print-section h3 span {
    font-weight: 600;
  }

  .print-section p {
    margin: 0 0 1.4mm;
  }

  .print-section ul {
    margin: 1mm 0 0 4.2mm;
    padding: 0;
  }

  .print-section li {
    margin: 0 0 0.65mm;
    padding-left: 0.5mm;
  }

  .print-skills {
    columns: 2;
    column-gap: 8mm;
  }

  .print-impact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2mm;
    display: grid;
  }

  .print-impact-grid div {
    border: 0.8pt solid #000000;
    padding: 1.4mm;
  }

  .print-impact-grid strong {
    font-size: 13pt;
    font-weight: 900;
    line-height: 1;
    display: block;
  }

  .print-impact-grid span {
    margin-top: 0.9mm;
    display: block;
  }

  .print-role {
    break-inside: avoid;
    margin-bottom: 2.5mm;
  }

  .print-role.compact {
    margin-bottom: 2mm;
  }

  .print-two-col {
    grid-template-columns: 1fr 1fr;
    gap: 6mm;
    display: grid;
  }

  .print-awards {
    columns: 2;
    column-gap: 8mm;
  }
}
