@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #f7f6f2;
  --ink: #232323;
  --accent: #e40044;
  --page-gutter: clamp(1.25rem, 4.2vw, 5rem);
  --ease: cubic-bezier(0.77, 0, 0.18, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

html {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  font-synthesis: none;
  scroll-behavior: smooth;
}

body {
  overflow: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
}

.intro {
  display: none;
}

.intro-seen .intro {
  display: none !important;
}

@media (min-width: 900px) {
  .js .intro {
    position: fixed;
    z-index: 200;
    inset: 0;
    display: block;
    overflow: hidden;
    background: #fff;
    opacity: 1;
    visibility: visible;
    transition:
      opacity 600ms linear,
      visibility 0s linear 600ms;
  }

  .intro.is-exiting {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .intro__canvas {
    display: block;
    width: 100%;
    height: 100%;
  }

  .intro__route {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
  }

  .intro__route--search {
    stroke: #8f8f8f;
    stroke-width: 0.9;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
    transition:
      opacity 750ms linear,
      stroke 700ms ease;
  }

  .intro.is-searching .intro__route--search {
    opacity: 1;
    animation: intro-route-search 4669ms linear both;
  }

  .intro.is-clearing .intro__route--search {
    opacity: 0;
    transition: opacity 600ms linear;
  }

  .intro__route--focus {
    stroke: #555;
    stroke-width: 1.2;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
    transition:
      opacity 300ms linear,
      stroke 650ms ease;
  }

  .intro.is-focusing .intro__route--focus {
    opacity: 1;
    animation: intro-route-focus 4600ms linear both;
  }

  .intro.is-merging .intro__route--focus {
    stroke: var(--accent);
  }

  .intro.is-clearing .intro__route--focus {
    opacity: 0;
    transition: opacity 1600ms linear;
  }

  .intro__marker {
    fill: #232323;
    stroke: none;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
    vector-effect: non-scaling-stroke;
    transition:
      fill 500ms ease,
      opacity 1100ms linear,
      transform 1100ms var(--ease);
  }

  .intro.is-running:not(.is-resolved) .intro__marker,
  .intro.is-running:not(.is-resolved) .intro__target {
    animation: intro-point-chaos calc(620ms + (var(--i) * 17ms)) ease-in-out
      calc(var(--i) * -67ms) infinite alternate;
  }

  .intro.is-running.is-shortlisted .intro__marker--survivor {
    animation: none;
    fill: #232323;
    opacity: 0.94;
    transform: scale(1.4);
    transition-delay: var(--focus-delay, 0ms);
  }

  .intro.is-resolved .intro__marker:not(.intro__marker--survivor) {
    animation: none;
    opacity: 0;
    transform: scale(0.35);
    transition-delay: calc(var(--i) * 9ms);
  }

  .intro.is-running.is-resolved .intro__marker--survivor {
    animation: none;
    fill: #232323;
    opacity: 0.96;
    transform: scale(1.18);
    transition-delay: 0ms;
  }

  .intro.is-running.is-clearing .intro__marker--survivor {
    opacity: 0;
    transform: scale(0.72);
    transition:
      opacity 600ms linear,
      transform 600ms var(--ease);
  }

  .intro__target {
    transform-box: fill-box;
    transform-origin: center;
  }

  .intro__target {
    fill: #4d4d4d;
    opacity: 0;
    transition:
      fill 500ms ease,
      opacity 500ms ease,
      transform 800ms var(--ease);
  }

  .intro.is-running.is-shortlisted .intro__target {
    animation: none;
    fill: var(--accent);
    opacity: 1;
    transform: scale(1.55);
    transition-delay: var(--focus-delay, 0ms);
  }

  .intro.is-running.is-targeted .intro__target,
  .intro.is-running.is-resolved .intro__target,
  .intro.is-running.is-marking .intro__target {
    animation: none;
    fill: var(--accent);
    opacity: 1;
    transform: scale(2);
    transition-delay: 0ms;
  }

  .intro.is-running.is-merging .intro__target {
    transform: scale(2.05);
  }

  .intro__brand-mark {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: 0;
    vector-effect: non-scaling-stroke;
  }

  .intro__brand-mark path {
    vector-effect: non-scaling-stroke;
  }

  .intro.is-searching .intro__brand-mark {
    opacity: 1;
    animation: intro-brand-mark 500ms linear 4669ms both;
  }

  .intro__compass {
    fill: var(--accent);
    opacity: 0;
    transform-box: fill-box;
    transform-origin: center;
  }

  .intro.is-orienting .intro__compass {
    animation: intro-compass 1800ms ease forwards;
  }

  .intro__skip {
    position: absolute;
    right: var(--page-gutter);
    bottom: clamp(1.5rem, 3vw, 2.75rem);
    padding: 0.35rem 0;
    border: 0;
    border-bottom: 1px solid transparent;
    background: transparent;
    color: #777;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.055em;
    cursor: pointer;
  }

  .intro__skip:hover,
  .intro__skip:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
  }

  body.intro-active .site-header,
  body.intro-active .site-footer,
  body.intro-active .slide-navigation,
  body.intro-active .timer {
    opacity: 0;
  }

  .site-header,
  .site-footer,
  .slide-navigation,
  .timer {
    transition:
      opacity 750ms ease,
      color 250ms ease;
  }

  body.intro-active .poster.is-active h1 span,
  body.intro-active .poster.is-active h2 span {
    opacity: 0;
    transform: translate3d(0, 0.42em, 0);
  }
}

@keyframes intro-route-search {
  0% {
    stroke-dashoffset: 1;
  }

  92.83% {
    stroke-dashoffset: 0.0558;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes intro-route-focus {
  0% {
    stroke-dashoffset: 1;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes intro-point-chaos {
  0% {
    opacity: 0.08;
    transform: scale(0.65);
  }
  38% {
    opacity: 0.72;
    transform: scale(1);
  }
  72% {
    opacity: 0.26;
    transform: scale(0.82);
  }
  100% {
    opacity: 0.88;
    transform: scale(1.08);
  }
}

@keyframes intro-brand-mark {
  0% {
    stroke-dashoffset: 1;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes intro-focus-in {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  55% {
    opacity: 1;
    transform: scale(1.55);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intro-compass {
  0%,
  100% {
    opacity: 0;
    transform: rotate(-8deg) scale(0.92);
  }

  14%,
  72% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2.75rem) var(--page-gutter);
  pointer-events: none;
}

.progress {
  position: fixed;
  bottom: clamp(1.3rem, 3vw, 2.75rem);
  left: var(--page-gutter);
  margin: 0;
  font-size: clamp(0.64rem, 0.75vw, 0.78rem);
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0.055em;
}

.wordmark {
  display: block;
  width: clamp(5.2rem, 6.8vw, 7rem);
  text-decoration: none;
  pointer-events: auto;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.logo--light {
  display: none;
}

.on-accent .logo--dark {
  display: none;
}

.on-accent .logo--light {
  display: block;
}

.on-accent .progress,
.on-accent .site-footer,
.on-accent .nav-zone,
.on-accent .timer {
  color: var(--paper);
}

.progress {
  font-variant-numeric: tabular-nums;
}

.profile-card {
  position: fixed;
  z-index: 80;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(18rem, 1.1fr);
  width: min(46rem, calc(100vw - 3rem));
  max-height: calc(100dvh - 3rem);
  overflow: auto;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 1.5rem 5rem rgb(35 35 35 / 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 1.25rem));
  transition:
    opacity 220ms ease,
    transform 500ms var(--ease);
}

.profile-card.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.profile-card__close {
  position: absolute;
  z-index: 2;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.profile-card__close:hover,
.profile-card__close:focus-visible {
  color: var(--accent);
}

.profile-card__portrait {
  width: 100%;
  height: 100%;
  min-height: 25rem;
  object-fit: cover;
  object-position: 50% 42%;
}

.profile-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.25rem, 5vw, 4.25rem);
}

.profile-card__eyebrow {
  margin: 0 0 1.25rem;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.profile-card h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  font-weight: 540;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.profile-card__degree {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.35;
}

.profile-card__text {
  margin: clamp(1.75rem, 4vh, 3rem) 0 clamp(1.35rem, 3vh, 2rem);
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  line-height: 1.5;
}

.profile-card__cta {
  margin: 0 0 0.75rem;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  font-weight: 650;
  line-height: 1.35;
}

.profile-card__phone {
  align-self: flex-start;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  font-weight: 550;
  text-decoration: none;
}

.profile-card__phone:hover,
.profile-card__phone:focus-visible {
  color: var(--accent);
}

.profile-card__footer {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
  margin-top: clamp(1.5rem, 3vh, 2.25rem);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.profile-card__footer a {
  color: inherit;
  text-decoration: none;
}

.profile-card__footer a:hover,
.profile-card__footer a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.profile-card__footer .intro-replay:hover,
.profile-card__footer .intro-replay:focus-visible {
  text-decoration: none;
}

.exhibition {
  width: 100%;
  height: 100%;
}

.poster-track {
  display: flex;
  width: 500%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 950ms var(--ease);
  will-change: transform;
}

.poster {
  width: 20%;
  height: 100%;
  flex: 0 0 20%;
  overflow: hidden;
  background: var(--paper);
}

.poster__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(6.5rem, 12vh, 9rem) var(--page-gutter) clamp(5rem, 9vh, 7rem);
}

.poster__number {
  display: none;
}

h1,
h2 {
  grid-column: 1 / 13;
  margin: 0;
  font-size: clamp(3.9rem, 8.35vw, 10rem);
  font-weight: 540;
  line-height: 0.89;
  letter-spacing: -0.045em;
}

.poster h1,
.poster h2 {
  letter-spacing: -0.04em;
}

h1 span,
h2 span {
  display: block;
  opacity: 0;
  transform: translate3d(0, 0.42em, 0);
  transition:
    opacity 600ms ease,
    transform 900ms var(--ease);
}

.poster.is-active h1 span,
.poster.is-active h2 span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

h1 span:nth-child(2),
h2 span:nth-child(2) {
  transition-delay: 90ms;
}

h1 span:nth-child(3),
h2 span:nth-child(3) {
  transition-delay: 180ms;
}

.poster:nth-child(2) h2 {
  font-size: clamp(3.4rem, 7.55vw, 9rem);
}

.poster:nth-child(3) h2 {
  grid-column: 2 / 13;
  font-size: clamp(3.5rem, 7.65vw, 9.2rem);
}

.poster--accent {
  background: var(--accent);
  color: var(--paper);
}

.poster--accent h2 {
  grid-column: 2 / 13;
  align-self: center;
  margin: 0;
  font-size: clamp(3.5rem, 6.65vw, 8rem);
}

.poster--contact .poster__inner > div {
  grid-column: 1 / 13;
}

.poster--contact h2 {
  font-size: clamp(3.7rem, 7.8vw, 9.4rem);
  line-height: 0.98;
}

.contact-link {
  position: relative;
  z-index: 30;
  display: inline-flex;
  gap: 0.8rem;
  align-items: baseline;
  margin-top: clamp(2rem, 5vh, 4rem);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  pointer-events: auto;
  transition: color 200ms ease, border-color 200ms ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--accent);
}

.contact-link:focus-visible,
.wordmark:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 6px;
}

.slide-navigation {
  position: fixed;
  z-index: 10;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  pointer-events: none;
}

.site-footer {
  position: fixed;
  z-index: 30;
  bottom: clamp(1.3rem, 3vw, 2.75rem);
  right: var(--page-gutter);
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.5vw, 1.5rem);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.site-footer a {
  padding: 0.35rem;
  text-decoration: none;
}

.site-footer > :not(.intro-replay) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.35rem);
  visibility: hidden;
  transition:
    opacity 280ms ease,
    transform 450ms var(--ease),
    visibility 0s linear 450ms;
}

.on-contact .site-footer > :not(.intro-replay) {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.intro-replay {
  display: grid;
  box-sizing: border-box;
  width: 1.15rem;
  height: 1.15rem;
  place-items: center;
  flex: 0 0 auto;
}

.intro-replay span {
  display: block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 220ms var(--ease);
}

.on-accent .intro-replay span {
  background: var(--paper);
}

.intro-replay:hover span,
.intro-replay:focus-visible span {
  transform: scale(1.55);
}

.intro-replay:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 0.18rem;
}

.profile-trigger {
  padding: 0.35rem;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  cursor: pointer;
}

.profile-trigger:hover,
.profile-trigger:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.nav-zone {
  position: relative;
  border: 0;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  pointer-events: auto;
}

.nav-zone:disabled {
  cursor: default;
  pointer-events: none;
}

.on-contact .nav-zone--previous {
  pointer-events: none;
}

.nav-zone span {
  position: fixed;
  bottom: clamp(1.3rem, 3vw, 2.75rem);
  opacity: 0;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  transition: opacity 180ms ease;
}

.nav-zone--previous span {
  left: calc(var(--page-gutter) + 4.4rem);
}

.nav-zone--next span {
  right: auto;
  left: calc(var(--page-gutter) + 4.4rem);
}

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

.on-contact .nav-zone--previous span {
  opacity: 1;
}

.nav-zone:focus-visible {
  outline: 0;
}

.timer {
  position: fixed;
  z-index: 25;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  pointer-events: none;
}

.timer span {
  display: block;
  width: 100%;
  height: 100%;
  background: currentColor;
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left;
}

.timer.is-running span {
  animation: timer 8s linear forwards;
}

@keyframes timer {
  to { transform: scaleX(1); }
}

.legal-page {
  min-height: 100%;
  overflow: auto;
}

.legal-page .site-footer {
  position: relative;
  right: auto;
  bottom: auto;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0 var(--page-gutter) clamp(2rem, 4vw, 3rem);
}

.legal-page .site-footer > :not(.intro-replay) {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.legal-page .site-footer .intro-replay {
  position: fixed;
  z-index: 30;
  right: var(--page-gutter);
  bottom: clamp(1.3rem, 3vw, 2.75rem);
}

.to-top {
  position: fixed;
  z-index: 30;
  left: var(--page-gutter);
  bottom: clamp(1.3rem, 3vw, 2.75rem);
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem;
  color: var(--ink);
  font-size: clamp(0.64rem, 0.75vw, 0.78rem);
  font-weight: 650;
  letter-spacing: 0.055em;
  text-decoration: none;
}

.to-top__label {
  opacity: 0;
  transform: translateX(-0.25rem);
  transition:
    opacity 180ms ease,
    transform 260ms var(--ease);
}

.to-top:hover .to-top__label,
.to-top:focus-visible .to-top__label {
  opacity: 1;
  transform: translateX(0);
}

.to-top:hover,
.to-top:focus-visible {
  color: var(--accent);
  text-decoration: none;
}

@media (min-width: 721px) {
  .imprint-content + .site-footer + .to-top {
    display: none;
  }
}

.legal-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: clamp(1.25rem, 3vw, 2.75rem) var(--page-gutter);
  background: var(--paper);
}

.legal-back {
  font-size: clamp(0.64rem, 0.75vw, 0.78rem);
  font-weight: 650;
  letter-spacing: 0.055em;
  text-decoration: none;
}

.legal-back:hover,
.legal-back:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.legal-grid a:hover,
.legal-grid a:focus-visible {
  color: var(--accent);
}

.legal-content {
  width: min(100%, 96rem);
  margin: 0 auto;
  padding: clamp(8.5rem, 18vh, 13rem) var(--page-gutter) 8rem;
}

.legal-kicker {
  margin: 0 0 1.25rem;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-content h1 {
  grid-column: auto;
  font-size: clamp(4.5rem, 11vw, 12rem);
}

.legal-notice {
  max-width: 44rem;
  margin: clamp(3rem, 7vh, 6rem) 0;
  padding-top: 1rem;
  border-top: 2px solid var(--accent);
  font-size: clamp(1.1rem, 1.7vw, 1.5rem);
  line-height: 1.4;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: 70rem;
}

.legal-grid section {
  border-top: 1px solid var(--ink);
  padding-top: 0.8rem;
}

.legal-grid h2 {
  margin: 0 0 1.25rem;
  font-size: 0.72rem;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-grid p {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.55;
}

.client-section {
  max-width: 70rem;
  margin-top: clamp(7rem, 15vh, 12rem);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 2px solid var(--ink);
}

.reference-content .client-section {
  width: 100%;
  max-width: 600px;
  margin-top: clamp(4rem, 9vh, 7rem);
}

.reference-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vh, 3rem);
}

.reference-heading p {
  width: 100%;
  max-width: 600px;
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.client-section h2 {
  max-width: 60rem;
  margin: 0 0 clamp(3rem, 7vh, 5rem);
  font-size: clamp(2.5rem, 5.4vw, 6.2rem);
  font-weight: 540;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.client-list {
  margin: 0;
  font-size: clamp(1.05rem, 1.65vw, 1.5rem);
  font-weight: 500;
  line-height: 1.65;
}

.client-name {
  white-space: nowrap;
}

.process-content {
  padding-bottom: clamp(7rem, 14vh, 12rem);
}

.process-steps {
  max-width: 76rem;
  margin-top: clamp(5rem, 12vh, 10rem);
}

.process-step {
  display: grid;
  grid-template-columns: minmax(2.5rem, 0.7fr) minmax(20rem, 6.3fr) minmax(15rem, 4fr);
  gap: clamp(1.5rem, 4vw, 4.5rem);
  align-items: start;
  padding: clamp(2.5rem, 6vh, 5rem) 0;
  border-top: 1px solid var(--ink);
}

.process-step__number {
  margin: 0.4rem 0 0;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.07em;
}

.process-step h2 {
  grid-column: auto;
  margin: 0;
  font-size: clamp(2.25rem, 4.7vw, 5.5rem);
  font-weight: 540;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.process-step__result {
  padding-top: 0.35rem;
}

.process-step__result > span {
  display: block;
  margin-bottom: clamp(1.25rem, 3vh, 2.25rem);
  color: var(--accent);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  line-height: 1;
}

.process-step__result p,
.process-step__result a {
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
}

.process-step__result a {
  display: inline-block;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
}

.process-step__result a:hover,
.process-step__result a:focus-visible {
  color: var(--accent);
}

.process-step__result .process-step__cta {
  margin-top: clamp(1.5rem, 3vh, 2.25rem);
  font-weight: 650;
}

.process-contact {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: minmax(16rem, 450px) minmax(16rem, 1fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: end;
  margin-top: clamp(2.5rem, 6vh, 5rem);
}

.process-contact img {
  display: block;
  width: 100%;
  height: min(36vw, 450px);
  max-height: 450px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 38%;
}

.process-contact__details {
  padding-top: clamp(1rem, 2vh, 1.5rem);
  border-top: 2px solid var(--accent);
}

.process-contact__label {
  margin: 0 0 clamp(1.5rem, 3vh, 2.5rem);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.process-contact h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  font-weight: 540;
  line-height: 1;
  letter-spacing: -0.04em;
}

.process-contact__degree {
  margin: 0;
  font-size: clamp(0.78rem, 1vw, 0.9rem);
  font-weight: 650;
  line-height: 1.4;
}

.process-contact__text {
  max-width: 31rem;
  margin: clamp(2rem, 4vh, 3rem) 0;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.45;
}

.process-contact__cta {
  margin: 0 0 0.85rem;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 650;
  line-height: 1.35;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.process-contact a {
  display: block;
  width: fit-content;
  margin-top: 0.45rem;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.4;
  text-decoration: none;
}

.process-contact a[href^="tel:"] {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 540;
  letter-spacing: -0.025em;
}

.process-contact a:hover,
.process-contact a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.process-step--final {
  border-bottom: 1px solid var(--ink);
}

@media (min-width: 721px) and (max-width: 980px) {
  .process-step {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .process-step h2,
  .process-step__result,
  .process-contact {
    grid-column: 2;
  }

  .process-step__result {
    max-width: 36rem;
  }

  .process-contact {
    grid-template-columns: minmax(13rem, 0.85fr) minmax(15rem, 1.15fr);
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .process-contact img {
    height: min(38vw, 450px);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 1.3rem;
  }

  .profile-card {
    grid-template-columns: 1fr;
    width: calc(100vw - 2rem);
    max-height: calc(100dvh - 2rem);
  }

  .profile-card__portrait {
    height: min(42vh, 22rem);
    min-height: 14rem;
    object-position: 50% 35%;
  }

  .profile-card__content {
    padding: 1.75rem;
  }

  .profile-card h2 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
  }

  .profile-card__text {
    margin: 1.35rem 0;
  }

  .poster__inner {
    align-items: center;
    padding-top: 6rem;
    padding-bottom: 4.5rem;
  }

  h1,
  h2,
  .poster:nth-child(2) h2,
  .poster:nth-child(3) h2 {
    grid-column: 1 / 13;
    font-size: clamp(3.1rem, 13.9vw, 6.1rem);
    line-height: 0.91;
    letter-spacing: -0.038em;
  }

  .poster:nth-child(2) h2 {
    font-size: clamp(2.8rem, 12.2vw, 5.4rem);
  }

  .poster:nth-child(3) h2 {
    font-size: clamp(2.75rem, 12vw, 5.2rem);
  }

  .poster--accent h2 {
    grid-column: 1 / 13;
    align-self: center;
    margin: 0;
    font-size: clamp(2.2rem, 9.4vw, 4.1rem);
  }

  .poster--contact h2 {
    font-size: clamp(2.75rem, 12vw, 5.2rem);
    line-height: 1;
  }

  .contact-link {
    max-width: 16rem;
    margin-top: 2rem;
    font-size: 0.96rem;
  }

  .nav-zone span {
    display: none;
  }

  .site-footer {
    right: var(--page-gutter);
    left: auto;
  }

  .legal-header {
    gap: 2rem;
  }

  .legal-back {
    max-width: 8rem;
    text-align: right;
  }

  .legal-content {
    padding-top: 7.5rem;
  }

  .legal-content h1 {
    font-size: clamp(3.5rem, 16.5vw, 6rem);
  }

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

  .client-section h2 {
    font-size: clamp(2.35rem, 10.5vw, 4.5rem);
    line-height: 1.02;
  }

  .reference-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reference-heading p {
    max-width: 24rem;
    margin: 0;
    font-size: clamp(1.1rem, 5.2vw, 1.45rem);
    line-height: 1.25;
  }

  .reference-content .client-section {
    margin-top: 4rem;
  }

  .client-list {
    font-size: clamp(0.82rem, 3.5vw, 1rem);
    line-height: 1.8;
  }

  .process-content h1 {
    font-size: clamp(3.7rem, 18vw, 6.5rem);
  }

  .process-steps {
    margin-top: 4.5rem;
  }

  .process-step {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    padding: 2.75rem 0;
  }

  .process-step__number {
    margin: 0;
  }

  .process-step h2 {
    min-width: 0;
    max-width: 100%;
    font-size: clamp(1.6rem, 8vw, 4rem);
    line-height: 1;
  }

  .process-step__result {
    width: 100%;
    max-width: none;
    padding-top: 0;
  }

  .process-step__result p {
    width: 100%;
    max-width: none;
  }

  .process-step__result > span {
    margin-bottom: 1rem;
  }

  .process-contact {
    grid-column: 1;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(2rem, 8vw, 3rem);
    margin-top: 1.5rem;
  }

  .process-contact img {
    width: min(100%, 450px);
    height: auto;
  }

  .process-contact__text {
    width: 100%;
    max-width: none;
  }

  .process-contact h3 {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }

  .process-contact a {
    overflow-wrap: anywhere;
    font-size: clamp(0.92rem, 4vw, 1.05rem);
  }

  .process-contact a[href^="tel:"] {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }
}

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

  .poster-track {
    transition-duration: 1ms;
  }

  h1 span,
  h2 span {
    transition-duration: 1ms;
    transition-delay: 0ms !important;
  }

  .timer {
    display: none;
  }

  .profile-card {
    transition-duration: 1ms;
  }
}
