:root {
  --ink: #14221f;
  --ink-deep: #0d1916;
  --cream: #f2ebdd;
  --paper: #f8f4eb;
  --sand: #d7b98a;
  --orange: #e95d32;
  --mint: #b9d4c3;
  --line: rgba(20, 34, 31, 0.18);
  --font-sans: "Avenir Next", "Segoe UI", Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  border: 8px solid var(--paper);
  content: "";
  pointer-events: none;
}

::selection {
  color: var(--paper);
  background: var(--orange);
}

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

.noise {
  position: fixed;
  z-index: 30;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: grid;
  width: min(100% - 64px, 1400px);
  height: 104px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  font-size: 17px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  gap: 27px;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a,
.header-contact {
  position: relative;
}

.desktop-nav a::after,
.header-contact::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.desktop-nav a:hover::after,
.header-contact:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: end;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(20, 34, 31, 0.4);
  font-size: 10px;
  font-weight: 700;
}

.language-button {
  padding: 5px 2px;
  border: 0;
  color: rgba(20, 34, 31, 0.42);
  background: transparent;
  cursor: pointer;
  font: inherit;
  transition: color 200ms ease;
}

.language-button:hover,
.language-button.is-active {
  color: var(--ink);
}

.section-shell {
  width: min(100% - 64px, 1400px);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 820px;
  padding-top: 182px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 55%;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(215, 185, 138, 0.19);
  content: "";
  filter: blur(2px);
  transform: translate(-50%, -27%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 68%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
}

.status-dot::after {
  position: absolute;
  inset: -5px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  content: "";
  animation: ping 2s infinite;
}

@keyframes ping {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.65);
  }
  40% {
    opacity: 0.8;
    transform: scale(1);
  }
}

h1 {
  max-width: 970px;
  margin: 0;
  font-size: clamp(64px, 7.3vw, 112px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

html[lang="en"] h1 {
  font-size: clamp(60px, 6.8vw, 104px);
}

.italic-line {
  display: block;
  color: var(--orange);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.hero-lead {
  width: min(100%, 590px);
  margin: 42px 0 0 8px;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 36px 0 0 8px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 38px;
  padding: 8px 8px 8px 25px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.button-primary {
  color: var(--paper);
  background: var(--ink);
}

.button-primary:hover {
  box-shadow: 0 14px 30px rgba(13, 25, 22, 0.18);
  transform: translateY(-2px);
}

.button-arrow {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--ink);
  background: var(--orange);
  border-radius: 50%;
  font-size: 18px;
}

.text-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  position: absolute;
  z-index: 1;
  top: 155px;
  right: -35px;
  width: clamp(390px, 38vw, 550px);
  aspect-ratio: 1;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(20, 34, 31, 0.28);
  border-radius: 50%;
}

.orbit-outer {
  inset: 0;
  animation: spin 35s linear infinite;
}

.orbit-inner {
  inset: 15%;
  border-style: dashed;
  animation: spin 24s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-point {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.point-one {
  top: 12%;
  left: 19%;
}

.point-two {
  right: 2%;
  bottom: 36%;
  width: 8px;
  height: 8px;
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.point-three {
  bottom: 6%;
  left: 28%;
}

.visual-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  width: 51%;
  aspect-ratio: 1;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 30px 70px rgba(20, 34, 31, 0.22);
  transform: translate(-50%, -50%);
}

.visual-core strong {
  font-size: clamp(45px, 5vw, 72px);
  letter-spacing: -0.08em;
}

.core-kicker {
  margin-bottom: 2px;
  color: var(--sand);
  font-size: 9px;
  letter-spacing: 0.24em;
}

.core-caption {
  margin-top: 5px;
  color: rgba(248, 244, 235, 0.58);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.visual-label {
  position: absolute;
  z-index: 2;
  padding: 8px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 100px;
  font-size: 15px;
}

.visual-label-top {
  top: 5%;
  right: 6%;
}

.visual-label-bottom {
  bottom: 8%;
  left: -2%;
}

.route-line {
  position: absolute;
  overflow: visible;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.route-line path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 5 8;
  vector-effect: non-scaling-stroke;
}

.hero-meta {
  position: absolute;
  right: 0;
  bottom: 44px;
  display: flex;
  gap: 42px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-number {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.meta-label {
  color: rgba(20, 34, 31, 0.62);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  padding: 18px 0;
  color: var(--paper);
  background: var(--orange);
  transform: rotate(-1.2deg) scale(1.02);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 24px;
  animation: marquee 28s linear infinite;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.marquee-track i {
  font-style: normal;
  opacity: 0.6;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.about,
.experience {
  padding-top: 150px;
  padding-bottom: 150px;
}

.section-number {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about-grid,
.experience-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 100px;
  padding-top: 64px;
}

.section-heading {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.01;
}

.section-heading span {
  color: var(--orange);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.about-copy {
  padding-top: 7px;
}

.about-copy p {
  margin: 0 0 24px;
  color: rgba(20, 34, 31, 0.68);
  font-size: 16px;
  line-height: 1.75;
}

.about-copy .large-copy {
  margin-bottom: 32px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.5;
}

.language-strip {
  display: grid;
  margin-top: 90px;
  padding: 37px 45px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
}

.language-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
  justify-content: center;
}

.language-word {
  font-family: var(--font-serif);
  font-size: 32px;
  font-style: italic;
}

.language-rtl .language-word {
  font-family: Arial, sans-serif;
  font-style: normal;
}

.language-name {
  color: var(--sand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.language-divider {
  width: 1px;
  height: 28px;
  background: rgba(248, 244, 235, 0.18);
}

.journey {
  position: relative;
  overflow: hidden;
  padding: 150px 0 160px;
  color: var(--ink);
  background: var(--sand);
}

.journey::before {
  position: absolute;
  top: -320px;
  right: -180px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(20, 34, 31, 0.1);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 80px rgba(20, 34, 31, 0.025),
    0 0 0 160px rgba(20, 34, 31, 0.018);
}

.journey-shell {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, 1400px);
  margin: 0 auto;
}

.journey .section-number-light {
  border-color: rgba(20, 34, 31, 0.2);
  color: rgba(20, 34, 31, 0.65);
}

.journey-header {
  display: grid;
  padding: 64px 0 80px;
  grid-template-columns: 1fr 0.62fr;
  gap: 100px;
  align-items: end;
}

.journey .section-heading-light {
  color: var(--ink);
}

.journey .section-heading-light span {
  color: var(--orange);
}

.journey-intro {
  max-width: 470px;
  margin: 0;
  color: rgba(20, 34, 31, 0.68);
  font-size: 17px;
  line-height: 1.65;
}

.timeline {
  position: relative;
  border-top: 1px solid rgba(20, 34, 31, 0.25);
}

.timeline::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: calc(20% + 22px);
  width: 1px;
  content: "";
  background: rgba(20, 34, 31, 0.24);
}

.timeline-item {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 190px;
  padding: 34px 0 38px;
  border-bottom: 1px solid rgba(20, 34, 31, 0.2);
  grid-template-columns: 20% 45px 1fr;
  transition: background 250ms ease;
}

.timeline-item:hover {
  background: rgba(248, 244, 235, 0.14);
}

.timeline-date {
  padding-top: 5px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.timeline-marker {
  display: flex;
  padding-top: 11px;
  justify-content: center;
}

.timeline-marker span {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  border: 2px solid var(--sand);
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--ink);
}

.timeline-content {
  display: grid;
  padding-left: 38px;
  grid-template-columns: minmax(160px, 0.7fr) 1fr;
  column-gap: 50px;
  align-items: start;
}

.timeline-place {
  padding-top: 8px;
  color: rgba(20, 34, 31, 0.56);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.timeline-content h3 {
  grid-row: 1;
  grid-column: 2;
  margin: 0 0 12px;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.timeline-content p {
  grid-row: 2;
  grid-column: 2;
  max-width: 660px;
  margin: 0;
  color: rgba(20, 34, 31, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.timeline-current {
  color: var(--paper);
  background: var(--ink);
}

.timeline-current:hover {
  background: var(--ink-deep);
}

.timeline-current .timeline-marker span {
  border-color: var(--ink);
  background: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}

.timeline-current .timeline-place,
.timeline-current .timeline-content p {
  color: rgba(248, 244, 235, 0.62);
}

.expertise {
  width: 100%;
  max-width: none;
  padding: 150px max(32px, calc((100vw - 1400px) / 2)) 160px;
  color: var(--paper);
  background: var(--ink);
}

.section-number-light {
  border-color: rgba(248, 244, 235, 0.2);
  color: var(--sand);
}

.expertise-header {
  display: grid;
  padding: 64px 0 70px;
  grid-template-columns: 1fr 0.65fr;
  gap: 100px;
  align-items: end;
}

.section-heading-light span {
  color: var(--sand);
}

.expertise-intro {
  max-width: 470px;
  margin: 0;
  color: rgba(248, 244, 235, 0.66);
  font-size: 17px;
  line-height: 1.65;
}

.expertise-list {
  display: grid;
  border-top: 1px solid rgba(248, 244, 235, 0.2);
  border-bottom: 1px solid rgba(248, 244, 235, 0.2);
  grid-template-columns: repeat(4, 1fr);
}

.expertise-card {
  position: relative;
  min-height: 420px;
  padding: 28px 28px 26px;
  border-right: 1px solid rgba(248, 244, 235, 0.2);
  transition:
    color 300ms ease,
    background 300ms ease;
}

.expertise-card:last-child {
  border-right: 0;
}

.expertise-card:hover {
  color: var(--ink);
  background: var(--sand);
}

.card-index {
  color: rgba(248, 244, 235, 0.42);
  font-size: 10px;
  font-weight: 700;
}

.expertise-card:hover .card-index,
.expertise-card:hover p {
  color: rgba(20, 34, 31, 0.66);
}

.card-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin-top: 54px;
  place-items: center;
  border: 1px solid rgba(248, 244, 235, 0.22);
  border-radius: 50%;
}

.expertise-card:hover .card-icon {
  border-color: rgba(20, 34, 31, 0.28);
}

.card-icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.expertise-card h3 {
  margin: 34px 0 14px;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.expertise-card p {
  margin: 0;
  color: rgba(248, 244, 235, 0.55);
  font-size: 13px;
  line-height: 1.65;
  transition: color 300ms ease;
}

.card-tag {
  position: absolute;
  bottom: 24px;
  left: 28px;
  color: var(--sand);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.expertise-card:hover .card-tag {
  color: var(--ink);
}

.experience-grid {
  align-items: start;
}

.experience-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sector-row {
  padding: 8px 0 40px;
  border-bottom: 1px solid var(--line);
}

.sector-label {
  display: block;
  margin-bottom: 23px;
  color: rgba(20, 34, 31, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sector-tags span {
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.research-card {
  position: relative;
  overflow: hidden;
  padding: 45px 42px 36px;
  color: var(--paper);
  background: var(--orange);
  border-radius: 4px;
}

.research-card::after {
  position: absolute;
  top: -90px;
  right: -70px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(248, 244, 235, 0.3);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 34px rgba(248, 244, 235, 0.07),
    0 0 0 68px rgba(248, 244, 235, 0.05);
}

.research-mark {
  height: 40px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 70px;
  line-height: 1;
}

.research-card > p {
  position: relative;
  z-index: 1;
  margin: 20px 0 60px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.52;
}

.research-footer {
  position: relative;
  z-index: 1;
  display: flex;
  padding-top: 24px;
  border-top: 1px solid rgba(248, 244, 235, 0.3);
  align-items: flex-end;
  justify-content: space-between;
}

.research-footer > span:first-child {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.research-note {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.45;
  text-align: right;
}

.contact {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: none;
  padding: 140px 32px 145px;
  color: var(--paper);
  background: var(--ink-deep);
  text-align: center;
}

.contact::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 78px;
  content: "";
  background: var(--orange);
}

.contact-kicker {
  position: relative;
  z-index: 2;
  color: var(--sand);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.contact h2 {
  position: relative;
  z-index: 2;
  margin: 35px 0 28px;
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.contact h2 span {
  color: var(--orange);
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact p {
  position: relative;
  z-index: 2;
  margin: 45px auto 38px;
  color: rgba(248, 244, 235, 0.58);
  font-size: 15px;
}

.contact-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--paper);
  font-size: 20px;
  font-weight: 600;
}

.contact-links {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 44px;
  justify-content: center;
}

.contact-handle {
  color: rgba(248, 244, 235, 0.46);
  font-size: 11px;
  font-weight: 500;
}

.contact-arrow {
  transition: transform 250ms ease;
}

.contact-link:hover .contact-arrow {
  transform: translate(4px, -4px);
}

.contact-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(80vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(248, 244, 235, 0.07);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(248, 244, 235, 0.025),
    0 0 0 160px rgba(248, 244, 235, 0.015);
  transform: translate(-50%, -50%);
}

footer {
  display: grid;
  min-height: 110px;
  padding: 0 max(32px, calc((100vw - 1400px) / 2));
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--ink);
  background: var(--paper);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand {
  text-transform: none;
}

footer p {
  opacity: 0.55;
}

footer > a:last-child {
  justify-self: end;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms cubic-bezier(0.23, 1, 0.32, 1),
    transform 700ms cubic-bezier(0.23, 1, 0.32, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 200ms;
}

.reveal-delay-3 {
  transition-delay: 300ms;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 780px;
  }

  .hero-copy {
    width: 78%;
  }

  .hero-visual {
    top: 228px;
    right: -100px;
    opacity: 0.85;
  }

  .hero-meta {
    left: 8px;
    right: auto;
  }

  .about-grid,
  .experience-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 60px;
  }

  .journey-header {
    gap: 60px;
  }

  .timeline-content {
    grid-template-columns: 0.6fr 1fr;
    column-gap: 32px;
  }

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

  .expertise-card:nth-child(2) {
    border-right: 0;
  }

  .expertise-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(248, 244, 235, 0.2);
  }
}

@media (max-width: 760px) {
  body::before {
    border-width: 5px;
  }

  .site-header,
  .section-shell {
    width: calc(100% - 36px);
  }

  .site-header {
    height: 84px;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-contact {
    font-size: 12px;
  }

  .header-tools {
    gap: 15px;
  }

  .brand-name {
    font-size: 13px;
  }

  .hero {
    display: flex;
    min-height: 850px;
    padding-top: 132px;
    flex-direction: column;
  }

  .hero::before {
    left: 85%;
    width: 380px;
    height: 380px;
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    max-width: 280px;
    margin-bottom: 26px;
    font-size: 9px;
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(54px, 15vw, 75px);
    line-height: 0.94;
  }

  html[lang="en"] .hero {
    min-height: 930px;
  }

  html[lang="en"] h1 {
    font-size: clamp(50px, 14vw, 68px);
  }

  .hero-lead {
    width: 94%;
    margin: 28px 0 0;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 18px;
    margin: 30px 0 0;
  }

  .button {
    gap: 22px;
    padding-left: 20px;
  }

  .text-link {
    display: none;
  }

  .hero-visual {
    top: auto;
    right: -110px;
    bottom: 55px;
    width: 360px;
    opacity: 0.74;
  }

  .visual-label {
    font-size: 12px;
  }

  .hero-meta {
    bottom: 31px;
    left: 0;
    z-index: 3;
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }

  .meta-item {
    display: block;
  }

  .meta-number {
    display: block;
    margin-bottom: 3px;
    font-size: 23px;
  }

  .meta-label {
    font-size: 7px;
  }

  .about,
  .experience {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .journey {
    padding: 100px 0 110px;
  }

  .journey-shell {
    width: calc(100% - 36px);
  }

  .journey-header {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px 0 58px;
  }

  .journey-intro {
    font-size: 15px;
  }

  .timeline::before {
    left: 6px;
  }

  .timeline-item {
    min-height: 0;
    padding: 30px 0 34px;
    grid-template-columns: 23px 1fr;
  }

  .timeline-date {
    grid-column: 2;
    margin-bottom: 17px;
    padding: 0 0 0 16px;
    color: rgba(20, 34, 31, 0.58);
    font-size: 18px;
  }

  .timeline-marker {
    grid-row: 1 / span 2;
    grid-column: 1;
    padding-top: 5px;
    justify-content: flex-start;
  }

  .timeline-content {
    display: block;
    grid-column: 2;
    padding-left: 16px;
  }

  .timeline-place {
    display: block;
    margin-bottom: 10px;
    padding-top: 0;
    font-size: 8px;
  }

  .timeline-content h3 {
    margin-bottom: 12px;
    font-size: 27px;
  }

  .timeline-content p {
    font-size: 13px;
  }

  .timeline-current {
    margin-right: -18px;
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .timeline-current .timeline-date {
    color: rgba(248, 244, 235, 0.58);
  }

  .about-grid,
  .experience-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 42px;
  }

  .section-heading {
    font-size: clamp(43px, 12vw, 60px);
  }

  .about-copy .large-copy {
    font-size: 19px;
  }

  .about-copy p {
    font-size: 15px;
  }

  .language-strip {
    margin-top: 55px;
    padding: 28px 22px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .language-divider {
    width: 40px;
    height: 1px;
    margin: 0 auto;
  }

  .language-word {
    font-size: 28px;
  }

  .expertise {
    padding: 100px 18px 110px;
  }

  .expertise-header {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 42px 0 55px;
  }

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

  .expertise-card {
    min-height: 370px;
    border-right: 0;
    border-bottom: 1px solid rgba(248, 244, 235, 0.2);
  }

  .expertise-card:nth-child(3) {
    border-bottom: 1px solid rgba(248, 244, 235, 0.2);
  }

  .expertise-card:last-child {
    border-bottom: 0;
  }

  .card-icon {
    margin-top: 42px;
  }

  .research-card {
    padding: 36px 27px 30px;
  }

  .research-card > p {
    margin-bottom: 45px;
    font-size: 19px;
  }

  .research-footer {
    gap: 20px;
  }

  .contact {
    padding: 120px 18px 125px;
  }

  .contact h2 {
    margin-top: 32px;
    font-size: clamp(67px, 22vw, 98px);
    line-height: 0.82;
  }

  .contact p {
    max-width: 300px;
    line-height: 1.6;
  }

  .contact-links {
    flex-direction: column;
    gap: 25px;
  }

  .contact-link {
    width: min(100%, 300px);
    justify-content: space-between;
  }

  footer {
    min-height: 150px;
    padding: 30px 18px;
    grid-template-columns: 1fr auto;
    row-gap: 25px;
  }

  footer p {
    grid-row: 2;
    grid-column: 1 / -1;
    margin: 0;
  }
}

@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;
  }
}
