@font-face {
  font-family: "Space Grotesk";
  src: url("./fonts/SpaceGrotesk-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("./fonts/SpaceGrotesk-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

/* Dark Blueprint Mode. Canonical tokens: docs/BRAND_GUIDE.md */
:root {
  --bg: #0d1b2a;
  --surface: #142640;
  --surface-2: #1a2d52;
  --surface-3: #1e3158;
  --edge: #1e3158;
  --edge-strong: #2a3f66;
  --ink: #e8e8e8;
  --ink-soft: #a8b8d9;
  --ink-muted: #64748b;
  --navy: #1b3a72;
  --navy-light: #3d5a9c;
  --navy-lighter: #7894c5;
  --amber: #f5a623;
  --shell: 1160px;
  --display: "Space Grotesk", system-ui, sans-serif;
  --body: "Satoshi", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    linear-gradient(rgba(120, 148, 197, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 148, 197, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

button {
  font: inherit;
}

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

p,
h1,
h2,
h3,
dl,
dd {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  letter-spacing: -0.035em;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  color: var(--bg);
  background: var(--amber);
  transform: translateY(-160%);
}

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

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--edge);
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(12px);
}

.nav-shell {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--edge-strong);
  border-radius: 8px;
  color: var(--ink-soft);
  background: var(--surface);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.contact-links a,
.site-footer a {
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

.site-nav a:hover,
.contact-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: clamp(56px, 8vw, 112px);
  align-items: center;
  padding-block: 80px 88px;
}

.eyebrow,
.mono-label,
.capability-number,
.work-index {
  color: var(--ink-muted);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(44px, 5.6vw, 70px);
  font-weight: 500;
  line-height: 1.01;
}

.hero-lead {
  max-width: 720px;
  margin-top: 32px;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 22px);
  line-height: 1.55;
}

.hero-lead strong {
  font-weight: 500;
}

.hero-now {
  max-width: 680px;
  margin-top: 22px;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 150ms ease,
    background-color 150ms ease,
    border-color 150ms ease,
    transform 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--bg);
  background: var(--amber);
  border-color: var(--amber);
}

.button-primary:hover {
  background: #d8890c;
  border-color: #d8890c;
}

.button-secondary {
  color: var(--ink);
  background: rgba(20, 38, 64, 0.45);
  border-color: var(--edge-strong);
}

.button-secondary:hover {
  background: var(--surface);
  border-color: var(--ink-muted);
}

.button-compact {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 13px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.contact-links a {
  text-decoration: underline;
  text-decoration-color: var(--edge-strong);
  text-underline-offset: 4px;
}

.signal-panel {
  padding: 28px;
  border: 1px solid var(--edge-strong);
  border-radius: 8px;
  background: rgba(20, 38, 64, 0.78);
}

.profile-row {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 20px;
  align-items: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--edge);
}

.avatar {
  width: 104px;
  height: 104px;
  object-fit: cover;
  border: 1px solid var(--edge-strong);
  border-radius: 8px;
  filter: saturate(0.9);
}

.profile-row > div > p:nth-child(2) {
  margin-top: 7px;
  font-family: var(--display);
  font-weight: 500;
}

.availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--ink-soft);
  font-size: 13px;
}

.availability span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--navy-lighter);
  box-shadow: 0 0 0 4px rgba(120, 148, 197, 0.1);
}

.proof-list > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: baseline;
  padding-block: 20px;
  border-bottom: 1px solid var(--edge);
}

.proof-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.proof-list dt {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.proof-list dd {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  padding-block: 84px;
  border-top: 1px solid var(--edge);
}

.section-heading {
  max-width: 660px;
}

.section-heading h2 {
  margin-top: 13px;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.08;
}

.capability-list {
  margin-top: 58px;
  border-top: 1px solid var(--edge-strong);
}

.capability {
  display: grid;
  grid-template-columns: 70px minmax(220px, 0.55fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: baseline;
  padding-block: 30px;
  border-bottom: 1px solid var(--edge);
}

.capability h3 {
  font-size: 24px;
  font-weight: 500;
}

.capability > p:last-child {
  color: var(--ink-soft);
}

.now-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.now-copy {
  padding-top: 29px;
  border-top: 1px solid var(--edge-strong);
}

.now-copy p {
  color: var(--ink-soft);
  font-size: 19px;
}

.now-copy p + p {
  margin-top: 22px;
}

.services-heading {
  margin-bottom: 52px;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--edge-strong);
  border-bottom: 1px solid var(--edge-strong);
}

.service {
  min-height: 270px;
  padding: 32px 40px 36px 0;
}

.service + .service {
  padding-left: 40px;
  border-left: 1px solid var(--edge);
}

.service h3 {
  max-width: 390px;
  margin-top: 17px;
  font-size: 29px;
  font-weight: 500;
  line-height: 1.15;
}

.service > p:last-child {
  max-width: 470px;
  margin-top: 20px;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  text-underline-offset: 5px;
}

.booking-link {
  margin-top: 28px;
}

.work-list {
  margin-top: 48px;
  border-top: 1px solid var(--edge-strong);
}

.work-item {
  min-height: 132px;
  display: grid;
  grid-template-columns: 58px 1fr 36px;
  gap: 28px;
  align-items: center;
  padding: 24px 14px 24px 0;
  border-bottom: 1px solid var(--edge);
  border-radius: 8px;
  text-decoration: none;
  transition:
    background-color 150ms ease,
    padding-inline 150ms ease;
}

a.work-item:hover {
  padding-inline: 14px;
  background: var(--surface);
}

.work-item strong {
  display: block;
  margin-top: 8px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.work-copy > span {
  display: block;
  max-width: 820px;
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 15px;
}

.work-meta {
  display: block;
  color: var(--ink-muted);
  font-family: var(--display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.work-arrow {
  color: var(--ink-soft);
  font-family: var(--display);
  text-align: right;
}

.experience-list {
  margin-top: 48px;
  border-top: 1px solid var(--edge-strong);
}

.experience-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 34px;
  padding-block: 28px;
  border-bottom: 1px solid var(--edge);
}

.experience-item time {
  color: var(--ink-muted);
  font-family: var(--display);
  font-size: 13px;
}

.experience-item h3 {
  max-width: 700px;
  margin-top: 9px;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.2;
}

.experience-item > div > p:last-child {
  max-width: 780px;
  margin-top: 12px;
  color: var(--ink-soft);
}

.experience-link {
  margin-top: 28px;
}

.focus-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.85fr);
  gap: clamp(56px, 9vw, 130px);
  align-items: start;
}

.focus-copy,
.contact-copy {
  padding-top: 28px;
  border-top: 1px solid var(--edge-strong);
}

.focus-copy p,
.contact-copy > p {
  color: var(--ink-soft);
  font-size: 18px;
}

.focus-copy p + p {
  margin-top: 20px;
}

.contact-section {
  padding-block: 76px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.site-footer {
  border-top: 1px solid var(--edge);
  background: var(--bg);
}

.footer-layout {
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-layout > p {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
}

.footer-layout > div {
  display: flex;
  gap: 22px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

/* CV */

.cv-page {
  background-image: none;
}

.cv-site-header {
  position: sticky;
  top: 0;
}

.cv-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--edge);
  border-radius: 9px;
  background: rgba(13, 27, 42, 0.86);
}

.language-option {
  display: inline-flex;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 7px;
  border-radius: 6px;
  color: var(--ink-muted);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
}

.language-option:hover {
  background: rgba(26, 45, 82, 0.68);
  color: var(--ink);
}

.language-option[aria-current="page"] {
  background: var(--surface-2);
  color: var(--ink);
}

.language-flag {
  display: block;
  width: 20px;
  height: 15px;
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.cv {
  padding-block: 72px 100px;
}

.cv-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--edge-strong);
}

.cv-intro h1 {
  max-width: 780px;
  margin-top: 12px;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.cv-title {
  margin-top: 18px;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 19px;
}

.cv-intro__proof {
  padding: 24px 0 24px 28px;
  border-left: 1px solid var(--edge-strong);
}

.cv-intro__proof strong,
.cv-intro__proof span {
  display: block;
}

.cv-intro__proof strong {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.cv-intro__proof span {
  max-width: 240px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
}

.cv-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  padding-block: 18px;
  border-bottom: 1px solid var(--edge);
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
}

.cv-contact a {
  text-decoration-color: var(--edge-strong);
  text-underline-offset: 3px;
}

.cv-summary {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 40px;
  padding-block: 42px;
  border-bottom: 1px solid var(--edge);
}

.cv h2 {
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cv-summary p {
  max-width: 860px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.72;
}

.cv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 64px;
  padding-top: 46px;
}

.cv-section + .cv-section {
  margin-top: 48px;
}

.cv-role {
  padding-block: 26px;
  border-bottom: 1px solid var(--edge);
}

.cv-role:first-of-type {
  padding-top: 22px;
}

.cv-role header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.cv-role h3,
.cv-education h3 {
  font-size: 20px;
  font-weight: 500;
}

.cv-role header p {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 15px;
}

.cv-role time {
  flex: none;
  color: var(--ink-muted);
  font-family: var(--display);
  font-size: 13px;
}

.cv-role ul {
  margin: 17px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.cv-role li + li {
  margin-top: 9px;
}

.cv-role a {
  color: var(--ink);
  text-decoration-color: var(--edge-strong);
  text-underline-offset: 3px;
}

.cv-product {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--edge);
}

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

.cv-product h4 {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
}

.cv-product__heading p {
  color: var(--ink-muted);
  font-family: var(--display);
  font-size: 12px;
  text-align: right;
}

.cv-sidebar {
  padding-left: 32px;
  border-left: 1px solid var(--edge);
}

.selected-work {
  display: grid;
  gap: 0;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.selected-work li {
  border-bottom: 1px solid var(--edge);
}

.selected-work a {
  display: block;
  padding-block: 13px;
  text-decoration: none;
}

.selected-work strong,
.selected-work span {
  display: block;
}

.selected-work strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 500;
}

.selected-work span {
  margin-top: 2px;
  color: var(--ink-muted);
  font-size: 12px;
}

.selected-work a:hover strong {
  color: var(--amber);
}

.cv-education {
  margin-top: 20px;
}

.cv-education h3 {
  font-size: 16px;
}

.cv-education p,
.cv-note {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 14px;
}

.cv-note {
  margin-top: 16px;
}

.language-list {
  margin-top: 18px;
}

.language-list > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 9px;
  border-bottom: 1px solid var(--edge);
  font-size: 14px;
}

.language-list dd {
  color: var(--ink-muted);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 60px;
    padding-block: 72px 84px;
  }

  .signal-panel {
    max-width: 620px;
  }

  .capability {
    grid-template-columns: 54px minmax(180px, 0.55fr) minmax(240px, 1fr);
    gap: 20px;
  }

  .now-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .focus-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .experience-item {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .cv-intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cv-intro__proof {
    max-width: 360px;
    padding: 0;
    border-left: 0;
  }

  .cv-intro__proof span {
    max-width: 300px;
  }

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

  .cv-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: 36px 0 0;
    border-top: 1px solid var(--edge);
    border-left: 0;
  }

  .cv-sidebar .cv-section + .cv-section {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
    background-size: 32px 32px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .nav-shell {
    min-height: 66px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a:nth-child(1),
  .site-nav a:nth-child(2) {
    display: none;
  }

  .hero {
    gap: 48px;
    padding-block: 58px 70px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 60px);
  }

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

  .button {
    width: 100%;
  }

  .signal-panel {
    padding: 22px;
  }

  .profile-row {
    grid-template-columns: 82px 1fr;
  }

  .avatar {
    width: 82px;
    height: 82px;
  }

  .proof-list > div {
    grid-template-columns: 84px 1fr;
  }

  .section {
    padding-block: 70px;
  }

  .capability {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .capability > p:last-child {
    grid-column: 2;
  }

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

  .service {
    min-height: auto;
    padding: 28px 0 34px;
  }

  .service + .service {
    padding-left: 0;
    border-top: 1px solid var(--edge);
    border-left: 0;
  }

  .work-item {
    grid-template-columns: 38px 1fr 24px;
    gap: 12px;
    padding-right: 0;
  }

  .work-item strong {
    font-size: 19px;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .experience-item h3 {
    font-size: 21px;
  }

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

  .contact-actions .text-link {
    justify-content: center;
  }

  .footer-layout {
    min-height: 150px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }

  .cv-site-header {
    position: relative;
  }

  .cv-site-header .brand-lockup > span:last-child {
    display: none;
  }

  .cv-actions {
    flex: 1;
    justify-content: flex-end;
  }

  .cv-actions .button {
    width: auto;
  }

  .cv-actions .button-secondary {
    display: none;
  }

  .language-option {
    min-width: 34px;
    padding: 7px;
  }

  .language-code {
    display: none;
  }

  .cv {
    padding-block: 54px 80px;
  }

  .cv-intro h1 {
    font-size: 43px;
  }

  .cv-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cv-summary p {
    font-size: 17px;
  }

  .cv-grid {
    gap: 48px;
  }

  .cv-sidebar {
    grid-template-columns: 1fr;
  }

  .cv-sidebar .cv-section + .cv-section {
    margin-top: 10px;
  }

  .cv-role header {
    flex-direction: column;
    gap: 7px;
  }

  .cv-product__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .cv-product__heading p {
    text-align: left;
  }
}

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

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

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

  :root {
    --ink: #0b1624;
    --ink-soft: #26384f;
    --ink-muted: #526174;
    --edge: rgba(11, 22, 36, 0.2);
    --edge-strong: rgba(11, 22, 36, 0.38);
  }

  body,
  .cv-page {
    color: var(--ink);
    background: #fff;
    font-size: 9.5pt;
    line-height: 1.42;
  }

  .cv-site-header,
  .skip-link {
    display: none;
  }

  .cv.shell {
    width: 100%;
    padding: 0;
  }

  .cv-intro {
    grid-template-columns: 1fr 130px;
    gap: 20px;
    padding-bottom: 16px;
  }

  .cv-intro h1 {
    font-size: 27pt;
  }

  .cv-title {
    margin-top: 7px;
    font-size: 11pt;
  }

  .cv-intro__proof {
    padding-left: 14px;
    border-left: 1px solid var(--edge);
  }

  .cv-intro__proof strong {
    font-size: 29pt;
  }

  .cv-intro__proof span {
    margin-top: 6px;
    font-size: 7.6pt;
    line-height: 1.35;
  }

  .cv-contact {
    gap: 3px 12px;
    padding-block: 8px;
    font-size: 8pt;
  }

  .cv-summary {
    grid-template-columns: 95px 1fr;
    gap: 16px;
    padding-block: 14px;
  }

  .cv-summary p {
    font-size: 9.5pt;
  }

  .cv-grid {
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 24px;
    padding-top: 16px;
  }

  .cv h2 {
    font-size: 8pt;
  }

  .cv-role {
    break-inside: avoid;
    padding-block: 10px;
  }

  .cv-role--products {
    break-inside: auto;
  }

  .cv-role:first-of-type {
    padding-top: 8px;
  }

  .cv-role h3 {
    font-size: 11pt;
  }

  .cv-role header p,
  .cv-role time {
    font-size: 8pt;
  }

  .cv-role ul {
    margin-top: 7px;
    padding-left: 14px;
  }

  .cv-role li + li {
    margin-top: 2px;
  }

  .cv-product {
    break-inside: avoid;
    margin-top: 7px;
    padding-top: 7px;
  }

  .cv-product h4 {
    font-size: 9pt;
  }

  .cv-product__heading p {
    font-size: 7.5pt;
  }

  .cv-sidebar {
    display: block;
    padding-left: 16px;
    border-top: 0;
    border-left: 1px solid var(--edge);
  }

  .cv-sidebar .cv-section + .cv-section,
  .cv-section + .cv-section {
    margin-top: 18px;
  }

  .selected-work,
  .language-list {
    margin-top: 8px;
  }

  .language-list > div {
    padding-block: 3px;
    font-size: 8pt;
  }

  .selected-work a {
    padding-block: 5px;
  }

  .selected-work strong {
    font-size: 8pt;
  }

  .selected-work span {
    font-size: 7pt;
  }

  .cv-education {
    margin-top: 8px;
  }

  .cv-education h3 {
    font-size: 9pt;
  }

  .cv-education p,
  .cv-note {
    font-size: 8pt;
  }

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