@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("/assets/fonts/newsreader-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("/assets/fonts/newsreader-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --paper: #f3efe7;
  --paper-deep: #ebe4d9;
  --ink: #0b2b2d;
  --ink-soft: #385456;
  --ink-faint: rgba(11, 43, 45, 0.17);
  --ink-hairline: rgba(11, 43, 45, 0.25);
  --coral: #cb6f58;
  --coral-action: #a9523f;
  --coral-soft: #dda38f;
  --teal: #557f7b;
  --teal-deep: #3f6967;
  --focus: #a84631;
  --serif: "Newsreader", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  --page-max: 1680px;
  --gutter: clamp(1.25rem, 4.3vw, 5.5rem);
  --section-space: clamp(6.5rem, 11vw, 11rem);
  --header-height: 6.5rem;
  --motion-fast: 180ms;
  --motion-base: 420ms;
  --motion-slow: 900ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-emphasis: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  min-width: 20rem;
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  overflow-x: clip;
  background-color: var(--paper);
  background-image: url("/assets/paper-texture.svg");
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
}

body::selection,
body *::selection {
  background: var(--coral-soft);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.28em;
}

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

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 5px;
}

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

p,
h1,
h2,
h3 {
  margin-block-start: 0;
}

.sr-only {
  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: 1000;
  inset-block-start: 0.75rem;
  inset-inline-start: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.875rem;
  transform: translateY(-150%);
  transition: transform var(--motion-fast) ease;
}

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

.site-intro {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: none;
  place-items: stretch;
  overflow: hidden;
  background: #fbf8f1;
  opacity: 1;
  isolation: isolate;
  transition: opacity 320ms ease;
}

.intro-pending .site-intro {
  display: grid;
}

body.intro-lock {
  overflow: hidden;
}

.site-intro.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.site-intro__media {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
}

.site-intro__skip {
  position: absolute;
  z-index: 1;
  inset-block-start: max(1rem, env(safe-area-inset-top));
  inset-inline-end: max(1rem, env(safe-area-inset-right));
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.9rem 0.65rem 1rem;
  border: 1px solid var(--ink-hairline);
  border-radius: 0;
  background: rgba(243, 239, 231, 0.86);
  color: var(--ink);
  cursor: pointer;
  font: 600 0.75rem/1 var(--sans);
  letter-spacing: 0.055em;
  backdrop-filter: blur(10px);
  transition:
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease;
}

.site-intro__skip .arrow-icon {
  width: 1rem;
  transition: transform var(--motion-fast) var(--ease-out);
}

.site-intro__skip:is(:hover, :focus-visible) {
  border-color: var(--ink);
  background: var(--paper);
}

.site-intro__skip:is(:hover, :focus-visible) .arrow-icon {
  transform: translateX(0.16rem);
}

.page-gutter {
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    background-color var(--motion-base) ease,
    border-color var(--motion-base) ease,
    height var(--motion-base) var(--ease-out);
}

.site-header[data-scrolled="true"] {
  height: 5rem;
  border-color: var(--ink-faint);
  background-color: rgba(243, 239, 231, 0.93);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(13rem, 1fr) auto auto;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  height: 100%;
}

.wordmark {
  width: fit-content;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 1.8vw, 2rem);
  font-weight: 450;
  line-height: 1;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.8rem, 3vw, 3.75rem);
  align-items: center;
}

.desktop-nav a,
.mobile-menu__panel a {
  position: relative;
  font-size: 0.85rem;
  font-weight: 550;
  letter-spacing: -0.015em;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  inset: auto 0 -0.5rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--motion-base) var(--ease-out);
}

.desktop-nav a:is(:hover, :focus-visible)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 0.42rem;
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.language-switch a,
.language-switch span[aria-current] {
  min-width: 1.6rem;
  min-height: 2.75rem;
  display: inline-grid;
  place-items: center;
  text-decoration: none;
}

.language-switch a {
  color: var(--ink-soft);
}

.language-switch a:is(:hover, :focus-visible) {
  color: var(--coral);
}

.language-switch__divider {
  color: var(--ink-hairline);
}

.mobile-menu {
  display: none;
}

.section-mark {
  display: block;
  width: 2.7rem;
  height: 1px;
  margin-block: clamp(1.5rem, 2.5vw, 2.5rem);
  background: var(--ink);
}

.section-title {
  max-width: 13ch;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.25vw, 7rem);
  font-weight: 380;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  transition: transform var(--motion-base) var(--ease-out);
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  min-height: 4.2rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
}

.button--primary {
  min-width: 15.25rem;
  padding-inline: 2rem;
  background: var(--coral-action);
  color: #fffaf3;
  box-shadow: 0 1rem 2.2rem rgba(80, 37, 28, 0.12);
  transition:
    background-color var(--motion-base) ease,
    color var(--motion-base) ease,
    transform var(--motion-base) var(--ease-out),
    box-shadow var(--motion-base) ease;
}

.button--primary:is(:hover, :focus-visible) {
  background: var(--ink);
  box-shadow: 0 1.25rem 2.8rem rgba(11, 43, 45, 0.18);
  transform: translateY(-2px);
}

.button--primary:is(:hover, :focus-visible) .arrow-icon,
.text-link:is(:hover, :focus-visible) .arrow-icon {
  transform: translateX(0.35rem);
}

.text-link {
  position: relative;
  justify-content: flex-start;
  min-width: auto;
  padding-inline: 0;
  color: var(--ink);
}

.text-link::after {
  position: absolute;
  inset: auto 0 0.7rem;
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform var(--motion-base) var(--ease-out);
}

.text-link:is(:hover, :focus-visible)::after {
  transform: scaleX(0.72);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(26rem, 0.75fr);
  min-height: max(52rem, 100svh);
  overflow: clip;
  padding-top: clamp(10rem, 16vh, 12rem);
  padding-bottom: clamp(5rem, 8vh, 7rem);
  border-bottom: 1px solid var(--ink-faint);
  isolation: isolate;
}

.hero__copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 50rem;
}

.hero__identity {
  margin-bottom: 0.4rem;
  font-family: var(--serif);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.hero__name,
.hero__profession {
  margin: 0;
  font-size: clamp(3.25rem, 5.2vw, 5.85rem);
  font-weight: 400;
}

.hero__profession {
  color: var(--teal-deep);
}

.hero__title {
  max-width: 10.6em;
  margin-bottom: clamp(1.4rem, 2.5vw, 2.3rem);
  font-family: var(--serif);
  font-size: clamp(4.15rem, 5.35vw, 6.5rem);
  font-weight: 370;
  line-height: 0.88;
  letter-spacing: -0.058em;
}

.hero__support {
  max-width: 42rem;
  margin-bottom: 2.15rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.2vw, 1.24rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero__visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: visible;
}

.hero-orb,
.shape,
.contact-orb {
  position: absolute;
  background-color: var(--orb-color);
  background-image: url("/assets/orb-texture.svg");
  background-blend-mode: soft-light;
  box-shadow: inset 0 0 4rem rgba(255, 255, 255, 0.2);
}

.hero-orb {
  width: clamp(18rem, 27vw, 31rem);
  aspect-ratio: 1;
  border-radius: 50%;
}

.hero-orb--coral {
  --orb-color: var(--coral-soft);
  top: 3%;
  left: -5%;
  opacity: 0.82;
}

.hero-orb--teal {
  --orb-color: var(--teal);
  right: calc(var(--gutter) * -1.2);
  bottom: 1%;
  opacity: 0.92;
}

.hero-signal {
  position: absolute;
  inset: 6% -16% 0 -4%;
  width: 124%;
  height: 90%;
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.25;
}

.hero-signal path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw-signal 1.8s 0.45s var(--ease-emphasis) forwards;
}

.hero__visual-caption {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 14rem;
  margin: 0;
  padding-top: 1.2rem;
  color: var(--ink-soft);
  font-size: 0.61rem;
  font-weight: 650;
  line-height: 1.8;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.hero__visual-caption::before {
  position: absolute;
  inset: 0 auto auto 0;
  width: 2.4rem;
  height: 1px;
  background: var(--ink);
  content: "";
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  inset: auto 50% 2.4rem auto;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  text-decoration: none;
  transform: translateX(50%);
}

.scroll-cue span {
  width: 0.75rem;
  height: 0.75rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(45deg) translate(-0.18rem, -0.18rem);
}

@keyframes draw-signal {
  to {
    stroke-dashoffset: 0;
  }
}

.signature {
  --signature-progress: 1;
  --signature-stage-one: 1;
  --signature-stage-two: 1;
  --signature-stage-three: 1;
  position: relative;
  min-height: 155svh;
  border-bottom: 1px solid var(--ink-faint);
}

.signature__sticky {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(22rem, 0.74fr) minmax(38rem, 1.26fr);
  gap: clamp(3rem, 6vw, 8rem);
  align-items: center;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 3rem;
  overflow: hidden;
}

.signature__copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.signature__copy p {
  max-width: 31rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.15vw, 1.2rem);
  line-height: 1.75;
}

.signature__scene {
  position: relative;
  height: min(33rem, 62vh);
}

.signature-path {
  position: absolute;
  z-index: 1;
  inset: 12% -2% auto;
  width: 104%;
  height: 42%;
  overflow: visible;
  fill: none;
  stroke-width: 1.4;
}

.signature-path__base {
  stroke: var(--ink-faint);
}

.signature-path__draw {
  stroke: var(--ink);
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.signature-path--mobile {
  display: none;
}

.signature-stage {
  position: absolute;
  z-index: 2;
  top: 18%;
  width: 12rem;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity var(--motion-slow) ease,
    transform var(--motion-slow) var(--ease-out);
}

.signature-stage--separate {
  left: 1%;
  opacity: var(--signature-stage-one);
}

.signature-stage--dialogue {
  left: 40%;
  opacity: var(--signature-stage-two);
}

.signature-stage--balance {
  right: 0;
  opacity: var(--signature-stage-three);
}

.signature-stage__shapes {
  position: relative;
  width: 100%;
  height: 10rem;
}

.shape {
  --orb-color: var(--teal);
  top: 0;
  width: 8.75rem;
  height: 8.75rem;
  border-radius: 50%;
}

.shape--coral {
  --orb-color: var(--coral);
  left: 0;
  opacity: 0.82;
}

.shape--teal {
  --orb-color: var(--teal);
  right: 0;
  opacity: 0.84;
  mix-blend-mode: multiply;
}

.signature-stage--separate .shape {
  width: 4.5rem;
  height: 8.75rem;
}

.signature-stage--separate .shape--coral {
  border-radius: 8.75rem 0 0 8.75rem;
}

.signature-stage--separate .shape--teal {
  border-radius: 0 8.75rem 8.75rem 0;
  mix-blend-mode: normal;
}

.signature-stage--dialogue .shape--coral {
  left: 0.8rem;
  opacity: 0.45;
}

.signature-stage--dialogue .shape--teal {
  right: 0.8rem;
  opacity: 0.58;
}

.signature-stage--balance .shape--coral {
  left: 0.25rem;
  opacity: 0.84;
}

.signature-stage--balance .shape--teal {
  right: 0.25rem;
  opacity: 0.9;
}

.signature-stage__label {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-top: 1.1rem;
  color: var(--ink-soft);
  font-size: 0.61rem;
  font-weight: 650;
  line-height: 1.6;
  letter-spacing: 0.24em;
  text-align: center;
  text-transform: uppercase;
}

.signature-stage__label span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-weight: 450;
  letter-spacing: 0.08em;
}

.is-enhanced .signature-path__draw {
  stroke-dashoffset: calc(1 - var(--signature-progress));
}

.is-enhanced .signature-stage {
  transform: translateY(calc((1 - var(--signature-progress)) * 1.25rem)) scale(calc(0.96 + var(--signature-progress) * 0.04));
}

.areas {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  border-bottom: 1px solid var(--ink-faint);
}

.areas__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.55fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.areas__heading .section-mark {
  grid-column: 1 / -1;
  margin: 0;
}

.areas__heading .section-title {
  max-width: 12ch;
}

.areas__heading p {
  max-width: 34rem;
  margin: 0 0 0.35rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--ink-hairline);
  border-left: 1px solid var(--ink-hairline);
}

.area-card {
  display: flex;
  min-height: 31rem;
  padding: clamp(2rem, 4vw, 4.5rem);
  flex-direction: column;
  border-right: 1px solid var(--ink-hairline);
  border-bottom: 1px solid var(--ink-hairline);
}

.area-card__top {
  display: flex;
  min-height: 8rem;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.area-card__number,
.service-area__number {
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: 0.04em;
}

.area-card h3 {
  max-width: 15ch;
  margin: 0 0 1.3rem;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 3.6vw, 4.2rem);
  font-weight: 390;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.area-card > p {
  max-width: 37rem;
  margin: 0 0 1.8rem;
  color: var(--ink-soft);
  line-height: 1.72;
}

.area-card__link {
  width: fit-content;
  margin-top: auto;
  gap: 1rem;
  font-size: 0.88rem;
}

.area-card__link::after {
  bottom: 0.5rem;
}

.area-motion {
  width: min(15rem, 58%);
  height: auto;
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.area-motion__shape--a,
.area-motion__meeting,
.area-motion__dots circle:nth-child(-n + 3) {
  fill: var(--coral);
  stroke: none;
}

.area-motion__shape--b,
.area-motion__dots circle:nth-child(n + 4) {
  fill: var(--teal);
  stroke: none;
}

.area-motion__meeting {
  fill: var(--ink);
}

.area-motion__line,
.area-motion__threads {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.area-motion--family .area-motion__shape--a,
.area-motion--family .area-motion__shape--b {
  animation: family-settle 7.2s var(--ease-emphasis) infinite;
}

.area-motion--family .area-motion__shape--b {
  animation-direction: reverse;
}

.area-motion--family .area-motion__line {
  animation: line-breathe 7.2s ease-in-out infinite;
}

.area-motion__boundary--a {
  animation: boundaries-order 7.8s var(--ease-emphasis) infinite;
}

.area-motion__boundary--b {
  opacity: 0.72;
  animation: rules-order 7.8s var(--ease-emphasis) infinite;
}

.area-motion__frame {
  opacity: 0.22;
}

.area-motion__block {
  fill: none;
}

.area-motion__block--a {
  stroke: var(--coral);
  animation: business-align-a 7.4s var(--ease-emphasis) infinite;
}

.area-motion__block--b {
  stroke: var(--teal);
  animation: business-align-b 7.4s var(--ease-emphasis) infinite;
}

.area-motion__pin--a {
  fill: var(--coral);
  stroke: none;
}

.area-motion__pin--b {
  fill: var(--teal);
  stroke: none;
}

.area-motion--relations .area-motion__threads {
  opacity: 0.78;
  animation: line-breathe 8s ease-in-out infinite;
}

.area-motion--relations .area-motion__dots circle:nth-child(2),
.area-motion--relations .area-motion__dots circle:nth-child(5) {
  animation: dot-calm 8s var(--ease-emphasis) infinite;
}

@keyframes family-settle {
  0%,
  16% {
    transform: translateY(-9px);
  }
  42%,
  78% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-9px);
  }
}

@keyframes line-breathe {
  0%,
  14% {
    stroke-dashoffset: 0.18;
    opacity: 0.5;
  }
  40%,
  82% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0.18;
    opacity: 0.5;
  }
}

@keyframes boundaries-order {
  0%,
  16% {
    transform: skewY(7deg);
  }
  42%,
  82% {
    transform: skewY(0);
  }
  100% {
    transform: skewY(7deg);
  }
}

@keyframes rules-order {
  0%,
  16% {
    transform: translateX(-8px) scaleX(0.82);
  }
  42%,
  82% {
    transform: translateX(0) scaleX(1);
  }
  100% {
    transform: translateX(-8px) scaleX(0.82);
  }
}

@keyframes business-align-a {
  0%,
  16% {
    transform: translateY(-21px);
  }
  44%,
  82% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-21px);
  }
}

@keyframes business-align-b {
  0%,
  16% {
    transform: translateY(19px);
  }
  44%,
  82% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(19px);
  }
}

@keyframes dot-calm {
  0%,
  16% {
    transform: translateY(10px);
  }
  44%,
  82% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

.services-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(26rem, 0.88fr) minmax(30rem, 1.12fr);
  min-height: 45rem;
  overflow: hidden;
  padding-top: calc(var(--header-height) + clamp(6rem, 10vw, 10rem));
  padding-bottom: clamp(5rem, 8vw, 8rem);
  border-bottom: 1px solid var(--ink-faint);
}

.services-hero__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 47rem;
}

.services-hero__title {
  max-width: 11ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  font-weight: 380;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.services-hero__copy > p {
  max-width: 43rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.68;
}

.services-hero__visual {
  position: relative;
  min-height: 28rem;
}

.services-orb {
  position: absolute;
  width: clamp(18rem, 25vw, 28rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--orb-color);
  background-image: url("/assets/orb-texture.svg");
  background-blend-mode: soft-light;
}

.services-orb--coral {
  --orb-color: var(--coral-soft);
  top: 2%;
  left: 3%;
  opacity: 0.72;
}

.services-orb--teal {
  --orb-color: var(--teal);
  right: calc(var(--gutter) * -1.3);
  bottom: -4%;
  opacity: 0.88;
}

.services-hero__visual svg {
  position: absolute;
  z-index: 2;
  inset: 0 -12% auto -6%;
  width: 120%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.15;
}

.services-areas {
  padding-inline: 0;
}

.service-area {
  display: grid;
  grid-template-columns: 5rem minmax(34rem, 1fr) minmax(17rem, 0.56fr);
  gap: clamp(2rem, 5vw, 6rem);
  min-height: 46rem;
  padding: clamp(5rem, 9vw, 9rem) var(--gutter);
  border-bottom: 1px solid var(--ink-faint);
}

.service-area__number {
  padding-top: 0.75rem;
}

.service-area__content {
  max-width: 62rem;
}

.service-area__term {
  margin: 0 0 1.25rem;
  color: var(--coral-action);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.22em;
  line-height: 1.45;
  text-transform: uppercase;
}

.service-area__content h2 {
  margin: 0 0 1.8rem;
  font-family: var(--serif);
  font-size: clamp(3.25rem, 5.7vw, 6.5rem);
  font-weight: 380;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.service-area__intro {
  max-width: 43rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.17rem);
  line-height: 1.75;
}

.service-subareas {
  padding: 0;
  margin: clamp(2.8rem, 5vw, 4.5rem) 0 0;
  border-top: 1px solid var(--ink-hairline);
  list-style: none;
}

.service-subarea {
  display: grid;
  grid-template-columns: 2rem minmax(10rem, 0.55fr) minmax(19rem, 1fr);
  gap: 1.25rem;
  padding: 1.35rem 0;
  align-items: start;
  border-bottom: 1px solid var(--ink-hairline);
}

.service-subarea__signal {
  position: relative;
  display: block;
  width: 1.4rem;
  height: 1.2rem;
  margin-top: 0.12rem;
}

.service-subarea__signal::before {
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 1.15rem;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: width var(--motion-fast) var(--ease-out);
}

.service-subarea__signal span {
  position: absolute;
  top: 0.31rem;
  left: 1.05rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--coral-action);
  transition: transform var(--motion-fast) var(--ease-out);
}

.service-subarea h3 {
  margin: 0;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  font-weight: 700;
  line-height: 1.45;
  transition: transform var(--motion-fast) var(--ease-out);
}

.service-subarea p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.65;
}

@media (hover: hover) {
  .service-subarea:hover .service-subarea__signal::before {
    width: 1.6rem;
  }

  .service-subarea:hover .service-subarea__signal span {
    transform: translateX(0.45rem);
  }

  .service-subarea:hover h3 {
    transform: translateX(0.18rem);
  }
}

.service-area__visual {
  position: sticky;
  top: calc(var(--header-height) + 4rem);
  align-self: start;
  padding-top: 8rem;
}

.service-area__visual .area-motion {
  width: 100%;
}

.services-contact {
  display: flex;
  min-height: 32rem;
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(5rem, 8vw, 8rem);
  justify-content: space-between;
  align-items: center;
  gap: clamp(3rem, 8vw, 10rem);
  border-bottom: 1px solid var(--ink-faint);
}

.services-contact .section-title {
  max-width: 12ch;
  font-size: clamp(3.3rem, 5.4vw, 6rem);
}

.services-contact p {
  max-width: 41rem;
  margin: 1.75rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.services-contact .button {
  flex: 0 0 auto;
}

.process,
.principles,
.contact {
  position: relative;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  border-bottom: 1px solid var(--ink-faint);
}

.process {
  min-height: 58rem;
}

.process__heading {
  max-width: 65rem;
}

.process__heading .section-title {
  max-width: 12ch;
}

.process-list,
.principles-list {
  padding: 0;
  list-style: none;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(4rem, 8vw, 7.5rem) 0 0;
}

.process-step {
  min-height: 17rem;
  padding: 0 clamp(2rem, 4vw, 5rem);
  border-left: 1px solid var(--ink-hairline);
}

.process-step:first-child {
  padding-left: 0;
  border-left: 0;
}

.process-step:last-child {
  padding-right: 0;
}

.process-step__number {
  display: block;
  margin-bottom: 1.9rem;
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: clamp(3.6rem, 5vw, 5.8rem);
  font-weight: 380;
  line-height: 1;
  letter-spacing: -0.04em;
}

.process-step__number::after {
  display: block;
  width: 2.4rem;
  height: 1px;
  margin-top: 1.2rem;
  background: var(--ink);
  content: "";
}

.process-step h3 {
  margin-bottom: 1.15rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.55vw, 2.75rem);
  font-weight: 420;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.process-step p {
  max-width: 27rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.process-line {
  position: relative;
  height: 8rem;
  margin-top: clamp(2.5rem, 5vw, 5rem);
}

.process-line svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.2;
}

.process-line path {
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
}

.is-enhanced .process-line:not([data-reveal-state="visible"]) path {
  stroke-dashoffset: 1;
}

.is-enhanced .process-line[data-reveal-state="visible"] path {
  transition: stroke-dashoffset 1.4s var(--ease-emphasis);
}

.process-line__point {
  position: absolute;
  z-index: 2;
  top: calc(50% - 0.26rem);
  width: 0.52rem;
  height: 0.52rem;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.process-line__point--start {
  left: 0;
}

.process-line__point--end {
  right: 0;
}

.principles {
  min-height: 57rem;
  overflow: hidden;
}

.principles::after {
  position: absolute;
  z-index: -1;
  top: -11rem;
  right: -9rem;
  width: clamp(18rem, 28vw, 31rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--coral-soft);
  background-image: url("/assets/orb-texture.svg");
  background-blend-mode: soft-light;
  content: "";
  opacity: 0.2;
}

.principles__intro {
  max-width: 76rem;
}

.principles__intro .section-mark {
  margin-top: 0;
}

.principles__intro .section-title {
  max-width: 17ch;
}

.principles__intro > p {
  max-width: 66rem;
  margin: clamp(1.8rem, 3vw, 3rem) 0 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.principles-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(4rem, 7vw, 7rem) 0 0;
}

.principle {
  min-height: 16rem;
  padding-inline: clamp(2rem, 4vw, 5rem);
  border-left: 1px solid var(--ink-hairline);
}

.principle:first-child {
  padding-left: 0;
  border-left: 0;
}

.principle:last-child {
  padding-right: 0;
}

.principle__rail {
  display: flex;
  gap: 1.1rem;
  align-items: center;
  margin-bottom: 2.1rem;
  font-family: var(--serif);
  font-size: 1.7rem;
}

.principle__rail::after {
  height: 1px;
  flex: 1;
  background: var(--ink-hairline);
  content: "";
}

.principle__dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--ink);
}

.principle:first-child .principle__dot {
  background: var(--coral-action);
}

.principle:last-child .principle__dot {
  background: var(--teal);
}

.principle h3 {
  margin-bottom: 1.35rem;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4vw, 4.7rem);
  font-weight: 380;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.principle p {
  max-width: 25rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.principles-wave {
  height: 6rem;
  margin-top: 1.5rem;
}

.principles-wave svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.15;
}

.contact {
  display: grid;
  grid-template-columns: minmax(26rem, 0.82fr) minmax(34rem, 1.18fr);
  gap: clamp(3rem, 7vw, 9rem);
  align-items: center;
  min-height: 54rem;
  overflow: hidden;
}

.contact__copy {
  position: relative;
  z-index: 3;
}

.contact__copy .section-title {
  max-width: 8.5ch;
}

.contact__body {
  max-width: 42rem;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.65;
}

.contact-status {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.8rem;
  align-items: center;
  max-width: 46rem;
}

.contact-status > span {
  display: grid;
  min-height: 3.1rem;
  padding-inline: 1.6rem;
  place-items: center;
  border-inline: 1px solid var(--ink);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.contact-status p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.contact__visual {
  position: relative;
  min-height: 34rem;
}

.contact-orb {
  --orb-color: var(--teal);
  top: 8%;
  width: clamp(18rem, 27vw, 30rem);
  aspect-ratio: 1;
  border-radius: 50%;
}

.contact-orb--coral {
  --orb-color: var(--coral-soft);
  left: -5%;
  opacity: 0.78;
}

.contact-orb--teal {
  --orb-color: var(--teal);
  right: calc(var(--gutter) * -1.55);
  top: 28%;
  opacity: 0.9;
}

.contact__visual svg {
  position: absolute;
  z-index: 2;
  inset: 0 -15% auto -6%;
  width: 120%;
  height: 80%;
  overflow: visible;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.2;
}

.site-footer {
  display: flex;
  min-height: 7.5rem;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.site-footer > p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.15rem;
}

.is-enhanced [data-reveal] {
  transition:
    clip-path var(--motion-slow) var(--ease-out),
    opacity var(--motion-slow) ease,
    transform var(--motion-slow) var(--ease-out);
}

.is-enhanced [data-reveal-state="pending"][data-reveal="mask"] {
  clip-path: inset(0 0 100% 0);
  transform: translateY(1.4rem);
}

.is-enhanced [data-reveal-state="pending"][data-reveal="fade"] {
  opacity: 0;
  transform: translateY(1.25rem);
}

.is-enhanced [data-reveal-state="pending"][data-reveal="line"] {
  opacity: 0.45;
}

.is-enhanced [data-reveal-state="visible"] {
  clip-path: inset(0);
  opacity: 1;
  transform: none;
}

@media (max-width: 75rem) {
  :root {
    --header-height: 5.5rem;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
  }

  .desktop-nav {
    gap: 1.8rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.02fr) minmax(24rem, 0.98fr);
  }

  .hero__title {
    font-size: clamp(4rem, 7vw, 6rem);
  }

  .signature__sticky {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(30rem, 1.2fr);
    gap: 3rem;
  }

  .signature-stage {
    width: 10rem;
  }

  .shape {
    width: 7.5rem;
    height: 7.5rem;
  }

  .signature-stage--separate .shape {
    width: 3.8rem;
    height: 7.5rem;
  }

  .area-card {
    min-height: 29rem;
    padding: 2.5rem;
  }

  .service-area {
    grid-template-columns: 3.5rem minmax(22rem, 1fr) minmax(16rem, 0.62fr);
    gap: 2rem;
  }
}

@media (max-width: 61.99rem) {
  .desktop-nav {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 0.8rem;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    display: grid;
    width: 2.75rem;
    height: 2.75rem;
    cursor: pointer;
    list-style: none;
    place-items: center;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .menu-icon {
    width: 1.7rem;
    height: 1.25rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.25;
    transition: transform var(--motion-base) var(--ease-out);
  }

  .mobile-menu[open] .menu-icon {
    transform: rotate(90deg);
  }

  .mobile-menu__panel {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    display: grid;
    width: min(18rem, calc(100vw - 2 * var(--gutter)));
    border: 1px solid var(--ink-hairline);
    background: var(--paper);
    box-shadow: 0 1.2rem 3rem rgba(11, 43, 45, 0.12);
  }

  .mobile-menu__panel a {
    display: flex;
    min-height: 3.4rem;
    padding-inline: 1.2rem;
    align-items: center;
    border-bottom: 1px solid var(--ink-faint);
  }

  .mobile-menu__panel a:last-child {
    border-bottom: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.72fr);
  }

  .hero__name,
  .hero__profession {
    font-size: clamp(3.1rem, 7vw, 4.6rem);
  }

  .hero__title {
    font-size: clamp(3.9rem, 8vw, 5.3rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .signature {
    min-height: auto;
  }

  .signature__sticky {
    position: relative;
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: var(--section-space);
    padding-bottom: var(--section-space);
    overflow: visible;
  }

  .signature__copy {
    max-width: 44rem;
  }

  .signature__scene {
    height: 31rem;
  }

  .areas__heading {
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.55fr);
    gap: 3rem;
  }

  .area-card {
    min-height: 30rem;
  }

  .services-hero {
    grid-template-columns: minmax(22rem, 0.92fr) minmax(22rem, 1.08fr);
  }

  .service-area {
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .service-area__visual {
    position: static;
    grid-column: 2;
    width: min(24rem, 68%);
    margin-top: 2rem;
    padding-top: 0;
  }

  .process-list,
  .principles-list {
    gap: 3rem 0;
  }

  .process-step,
  .principle {
    padding-inline: 2rem;
  }

  .process-step h3 {
    font-size: clamp(1.65rem, 3vw, 2.2rem);
  }

  .principle h3 {
    font-size: clamp(2.4rem, 5vw, 3.7rem);
  }

  .contact {
    grid-template-columns: minmax(22rem, 0.9fr) minmax(22rem, 1.1fr);
    gap: 2rem;
  }
}

@media (max-width: 47.99rem) {
  :root {
    --gutter: clamp(1.15rem, 5.6vw, 2rem);
    --section-space: clamp(5.8rem, 20vw, 8rem);
    --header-height: 4.75rem;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 1rem);
  }

  .site-intro__media {
    width: 165%;
    justify-self: center;
  }

  .site-header[data-scrolled="true"] {
    height: 4.5rem;
  }

  .wordmark {
    font-size: 1.42rem;
  }

  .language-switch--header {
    font-size: 0.68rem;
  }

  .language-switch a,
  .language-switch span[aria-current] {
    min-height: 2.75rem;
  }

  .section-title {
    max-width: 11ch;
    font-size: clamp(3.2rem, 14vw, 4.7rem);
    line-height: 0.94;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.25rem);
    padding-bottom: 5.5rem;
  }

  .hero__copy {
    padding-top: 10.5rem;
  }

  .hero__identity {
    margin-bottom: 0;
  }

  .hero__name,
  .hero__profession {
    font-size: clamp(3.1rem, 15vw, 4.15rem);
  }

  .hero__title {
    max-width: 7.5ch;
    font-size: clamp(3.7rem, 17.2vw, 5rem);
    line-height: 0.89;
  }

  html[lang="en"] .hero__title {
    max-width: 100%;
    font-size: clamp(3.3rem, 14vw, 4.4rem);
  }

  .hero__support {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero__actions {
    width: 100%;
    gap: 0.6rem;
  }

  .button--primary {
    width: 100%;
  }

  .text-link {
    min-height: 3.75rem;
  }

  .text-link::after {
    bottom: 0.55rem;
  }

  .hero__visual {
    position: absolute;
    z-index: 1;
    inset: var(--header-height) calc(var(--gutter) * -1) auto 32%;
    height: 24rem;
    pointer-events: none;
  }

  .hero-orb {
    width: 14rem;
  }

  .hero-orb--coral {
    top: -1rem;
    left: 5%;
  }

  .hero-orb--teal {
    right: -5rem;
    bottom: -6.5rem;
  }

  .hero-signal {
    inset: -2rem -25% 0 -12%;
    width: 136%;
    height: 112%;
    stroke-width: 1.05;
  }

  .hero__visual-caption,
  .scroll-cue {
    display: none;
  }

  .signature__sticky {
    gap: 3.5rem;
  }

  .signature__copy p {
    font-size: 1rem;
  }

  .signature__scene {
    height: 46rem;
  }

  .signature-path--desktop {
    display: none;
  }

  .signature-path--mobile {
    display: block;
    inset: 0 auto 0 1rem;
    width: 11rem;
    height: 100%;
  }

  .signature-stage {
    top: auto;
    right: auto;
    left: 0;
    display: grid;
    grid-template-columns: 9rem minmax(0, 1fr);
    gap: 1.2rem;
    align-items: center;
    width: 100%;
    min-height: 11rem;
  }

  .signature-stage--separate {
    top: 0;
  }

  .signature-stage--dialogue {
    top: 16.5rem;
  }

  .signature-stage--balance {
    top: 33rem;
  }

  .signature-stage__shapes {
    width: 9rem;
    height: 8rem;
  }

  .shape {
    width: 6.8rem;
    height: 6.8rem;
  }

  .signature-stage--separate .shape {
    width: 3.1rem;
    height: 6.8rem;
  }

  .signature-stage__label {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 0.35rem;
    padding: 0;
    text-align: left;
  }

  .signature-stage__label::before {
    width: 2rem;
    height: 1px;
    margin-bottom: 0.35rem;
    background: var(--ink);
    content: "";
  }

  .areas__heading {
    display: block;
    margin-bottom: 3.75rem;
  }

  .areas__heading .section-mark {
    margin-bottom: 2rem;
  }

  .areas__heading .section-title {
    max-width: 10ch;
    margin-bottom: 2rem;
  }

  .area-grid {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .area-card {
    min-height: auto;
    padding: 2.5rem 0 3.5rem;
    border-right: 0;
  }

  .area-card + .area-card {
    padding-top: 3.5rem;
  }

  .area-card__top {
    min-height: 7rem;
  }

  .area-card h3 {
    font-size: clamp(2.7rem, 12vw, 3.75rem);
  }

  .area-motion {
    width: min(13rem, 64%);
  }

  .services-hero {
    display: block;
    min-height: 43rem;
    padding-top: calc(var(--header-height) + 8rem);
  }

  .services-hero__title {
    max-width: 8ch;
    font-size: clamp(4rem, 18vw, 5.5rem);
  }

  html[lang="en"] .services-hero__title {
    max-width: 10ch;
    font-size: clamp(3.8rem, 16vw, 5rem);
  }

  .services-hero__copy {
    position: relative;
    z-index: 3;
  }

  .services-hero__visual {
    position: absolute;
    z-index: 1;
    inset: var(--header-height) 0 auto 38%;
    min-height: 22rem;
    pointer-events: none;
  }

  .services-orb {
    width: 14rem;
  }

  .services-orb--teal {
    right: 0;
  }

  .services-hero__visual svg {
    inset: 0;
    width: 100%;
  }

  .service-area {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1.1rem;
    min-height: auto;
    padding: 5.5rem var(--gutter);
  }

  .service-area__content h2 {
    font-size: clamp(2.75rem, 12vw, 3.9rem);
  }

  .service-area__term {
    margin-bottom: 1rem;
    font-size: 0.58rem;
  }

  .service-area__intro {
    line-height: 1.7;
  }

  .service-subareas {
    margin-top: 2.8rem;
  }

  .service-subarea {
    grid-template-columns: 1.4rem minmax(0, 1fr);
    gap: 0.4rem 0.8rem;
    padding: 1.25rem 0;
  }

  .service-subarea__signal {
    grid-row: 1 / 3;
  }

  .service-subarea h3,
  .service-subarea p {
    grid-column: 2;
  }

  .service-subarea h3 {
    font-size: 1rem;
  }

  .service-area__visual {
    grid-column: 1 / -1;
    width: min(19rem, 86%);
    margin: 2.5rem auto 0;
  }

  .services-contact {
    display: block;
    min-height: auto;
  }

  .services-contact .button {
    margin-top: 3rem;
  }

  .process,
  .principles,
  .contact {
    min-height: auto;
  }

  .process-list,
  .principles-list {
    grid-template-columns: 1fr;
    margin-top: 4.5rem;
  }

  .process-step,
  .principle {
    min-height: auto;
    padding: 0 0 3.5rem;
    border-left: 0;
    border-bottom: 1px solid var(--ink-hairline);
  }

  .process-step + .process-step,
  .principle + .principle {
    padding-top: 3.5rem;
  }

  .process-step:last-child,
  .principle:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .process-step__number {
    font-size: 4.25rem;
  }

  .process-step h3 {
    font-size: 2.15rem;
  }

  .process-line {
    height: 5.5rem;
    margin-top: 4rem;
  }

  .principles::after {
    top: -6rem;
    right: -7rem;
    width: 16rem;
  }

  .principles__intro .section-title {
    max-width: 9.5ch;
  }

  .principle__rail {
    margin-bottom: 1.6rem;
  }

  .principle h3 {
    font-size: clamp(3rem, 14vw, 4rem);
  }

  .principles-wave {
    margin-top: 4rem;
  }

  .contact {
    display: block;
    min-height: 48rem;
    padding-top: 7.5rem;
    padding-bottom: 8rem;
  }

  .contact__copy .section-title {
    max-width: 8ch;
  }

  .contact__body {
    max-width: 28rem;
  }

  .contact-status {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 25rem;
  }

  .contact-status > span {
    width: fit-content;
  }

  .contact__visual {
    position: absolute;
    z-index: 1;
    inset: auto -8rem -8rem 34%;
    min-height: 23rem;
    pointer-events: none;
  }

  .contact-orb {
    width: 15rem;
  }

  .contact-orb--coral {
    left: -6rem;
  }

  .contact-orb--teal {
    right: -2rem;
  }

  .contact__visual svg {
    inset: -2rem -16% auto -10%;
    width: 125%;
  }

  .site-footer {
    min-height: 9rem;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.75rem;
  }

  .language-switch--footer {
    margin-left: -0.3rem;
  }
}

@media (max-width: 24rem) {
  .site-header__inner {
    gap: 0.35rem;
  }

  .wordmark {
    font-size: 1.24rem;
  }

  .hero__copy {
    padding-top: 9rem;
  }

  .hero__name,
  .hero__profession {
    font-size: 3rem;
  }

  .hero__title {
    font-size: 3.55rem;
  }
}

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

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

  .hero-signal path,
  .signature-path__draw,
  .process-line path {
    stroke-dashoffset: 0 !important;
  }

  .signature {
    --signature-progress: 1 !important;
    --signature-stage-one: 1 !important;
    --signature-stage-two: 1 !important;
    --signature-stage-three: 1 !important;
  }

  .is-enhanced [data-reveal] {
    clip-path: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .area-motion * {
    animation: none !important;
  }

  .intro-pending .site-intro {
    display: none !important;
  }

  body.intro-lock {
    overflow: auto;
  }
}

@media (prefers-contrast: more) {
  :root {
    --ink-soft: var(--ink);
    --ink-faint: rgba(11, 43, 45, 0.42);
    --ink-hairline: rgba(11, 43, 45, 0.65);
  }

  .button--primary {
    border: 2px solid var(--ink);
  }
}

.not-found {
  display: grid;
  min-height: 100svh;
  align-content: center;
  justify-items: start;
  gap: 1.75rem;
}

.not-found__number {
  margin: 0;
  color: var(--teal-deep);
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 8rem);
  line-height: 0.8;
}

.not-found h1 {
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 380;
  line-height: 0.94;
  letter-spacing: -0.05em;
}
