@font-face {
  font-family: "Nunito Sans";
  src: url("fonts/NunitoSans-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  --ink: #07110f;
  --paper: #f2f1ec;
  --line: rgba(7, 17, 15, 0.24);
  --muted: #5b625f;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Nunito Sans", sans-serif;
  font-synthesis: none;
  font-size: 18px;
  line-height: 1.48;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-underline-offset: 4px; }
a:focus-visible { outline: 3px solid var(--ink); outline-offset: 4px; }
.skip {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10;
  padding: 12px 16px;
  color: var(--paper);
  background: var(--ink);
}
.skip:focus { top: 16px; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}
.brand { font-size: 27px; font-weight: 700; text-decoration: none; letter-spacing: -.04em; }
.language { min-width: 44px; min-height: 44px; display: grid; place-items: center; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
  min-height: min(calc(100svh - 72px), 760px);
  border-bottom: 1px solid var(--line);
}
.hero-copy { padding: clamp(48px, 8vw, 120px) clamp(20px, 6vw, 96px); }
.eyebrow { margin: 0 0 var(--space-5); font-size: 13px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(64px, 11vw, 168px);
  font-weight: 700;
  line-height: .82;
  letter-spacing: -.075em;
}
h1 .surname { white-space: nowrap; letter-spacing: -.02em; }
h1 .rn-gap { display: inline-block; margin-left: .045em; }
.role { max-width: 860px; margin: var(--space-5) 0 0; font-size: clamp(22px, 2.5vw, 38px); line-height: 1.18; letter-spacing: -.035em; text-wrap: balance; }
.portrait { min-height: 520px; border-left: 1px solid var(--line); background: var(--ink); overflow: hidden; }
.portrait img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 40%; filter: grayscale(1) contrast(1.08); }
.layout {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1.45fr);
  border-bottom: 1px solid var(--line);
}
.rail { padding: var(--space-5) clamp(20px, 4vw, 64px); border-right: 1px solid var(--line); }
.rail p { position: sticky; top: 32px; margin: 0; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.content { max-width: 970px; padding: var(--space-5) clamp(20px, 6vw, 96px) var(--space-6); }
.lead { margin: 0 0 var(--space-5); font-size: clamp(28px, 3.5vw, 52px); line-height: 1.13; letter-spacing: -.04em; text-wrap: pretty; }
.content p { max-width: 760px; margin: 0 0 var(--space-3); text-wrap: pretty; }
h2 { margin: 0 0 var(--space-4); font-size: clamp(40px, 6vw, 84px); font-weight: 500; line-height: .95; letter-spacing: -.055em; }
.credentials { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.credentials li { display: grid; grid-template-columns: minmax(170px, .42fr) 1fr; gap: var(--space-3); padding: 18px 0; border-bottom: 1px solid var(--line); }
.credentials strong { font-size: 14px; text-transform: uppercase; letter-spacing: .06em; }
.cta { color: var(--paper); background: var(--ink); }
.cta .layout { border: 0; }
.cta .rail { border-color: rgba(242,241,236,.35); }
.cta a { display: inline-flex; align-items: center; min-height: 52px; margin-top: var(--space-3); padding: 0 22px; border: 1px solid var(--paper); text-decoration: none; transition: color .2s ease, background .2s ease; }
.cta a:hover, .cta a:focus-visible { color: var(--ink); background: var(--paper); }
.footer { display: flex; justify-content: space-between; gap: 24px; padding: 28px clamp(20px, 4vw, 64px); font-size: 14px; }
@media (max-width: 760px) {
  body { font-size: 17px; }
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { min-height: 70svh; display: flex; flex-direction: column; justify-content: space-between; }
  .eyebrow { margin-bottom: var(--space-4); }
  .portrait { min-height: 70svh; border-left: 0; border-top: 1px solid var(--line); }
  .layout { grid-template-columns: 1fr; }
  .rail { padding-bottom: 0; border-right: 0; }
  .rail p { position: static; }
  .credentials li { grid-template-columns: 1fr; gap: 6px; }
  .footer { flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
