:root {
  --bg: #050505;
  --panel: #101111;
  --text: #f1f1ef;
  --muted: #8b918f;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #dfff68;
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(223, 255, 104, 0.08), transparent 35%),
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.06), transparent 38%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor [data-nav-link] {
  cursor: none !important;
}

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  background: #030303;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.preloader__inner {
  width: min(90vw, 620px);
}

.preloader__label {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.preloader__headline {
  margin: 0.42rem 0 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 4vw, 2.4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preloader__value {
  margin: 0.55rem 0 0.7rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.5rem, 3.1vw, 2.1rem);
  color: #c5cbca;
}

.preloader__track {
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  overflow: hidden;
}

.preloader__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #ffffff, var(--accent));
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: #020202;
  transform: scaleY(0);
  transform-origin: top;
  pointer-events: none;
}

.page-transition.is-active {
  animation: pageWipe 0.82s cubic-bezier(0.72, 0, 0.28, 1);
}

@keyframes pageWipe {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  45% {
    transform: scaleY(1);
    transform-origin: top;
  }
  55% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(5, 6, 6, 0.992);
  padding: 1.2rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay__top {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-overlay__brand {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.09em;
}

.menu-close {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  padding: 0.5rem 0.85rem;
  cursor: pointer;
}

.menu-overlay__nav {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.menu-overlay__nav a {
  font-family: "Syne", sans-serif;
  font-size: clamp(2rem, 9vw, 6rem);
  line-height: 0.95;
}

.menu-overlay__meta {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.05;
  background-image: radial-gradient(rgba(255, 255, 255, 0.8) 0.35px, transparent 0.35px);
  background-size: 3px 3px;
  animation: grainShift 16s steps(8) infinite;
}

@keyframes grainShift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(6%, 10%);
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1.6px solid rgba(18, 20, 22, 0.76);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: "Syne", sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  opacity: 0;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 42;
  transition:
    opacity 0.22s ease,
    width 0.28s ease,
    height 0.28s ease,
    transform 0.18s ease,
    background-color 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.cursor span {
  pointer-events: none;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(18, 20, 22, 0.74);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.cursor::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px dashed rgba(18, 20, 22, 0.28);
  animation: cursorOrbit 7s linear infinite;
  transition: opacity 0.26s ease;
}

.cursor.is-interactive {
  width: 48px;
  height: 48px;
  border-color: rgba(18, 20, 22, 0.86);
  background: rgba(255, 255, 255, 0.18);
}

.cursor.is-active {
  width: 98px;
  height: 98px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 1);
  color: #111315;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.cursor.is-active span {
  opacity: 1;
  transform: scale(1);
}

.cursor.is-active::before {
  opacity: 0;
  transform: scale(0);
}

.cursor.is-active::after {
  opacity: 0;
}

@keyframes cursorOrbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: fixed;
  top: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 28;
  width: calc(100% - 4rem);
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  font-family: "Manrope", sans-serif;
  font-size: 1.96rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #f5f6f6;
}

.header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2.35rem;
}

.header-nav a {
  color: #121212;
  font-size: 1.06rem;
  font-weight: 600;
  opacity: 0.96;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.lang-switch,
.menu-toggle {
  border: none;
  border-radius: 0;
  background: transparent;
  color: #121212;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.2rem 0.35rem;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.menu-toggle {
  display: none;
}

.lang-switch:hover,
.menu-toggle:hover,
.menu-close:hover {
  border-color: transparent;
  color: #ffffff;
  opacity: 0.72;
}

.header-nav a:hover,
.lang-switch:hover,
.menu-toggle:hover {
  color: #121212;
  opacity: 0.66;
}

main {
  position: relative;
  z-index: 5;
}

section {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero {
  width: 100%;
  margin: 0;
  min-height: 100svh;
  background: #e9e9eb;
  color: #f1f2f2;
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0;
}

.hero::before,
.hero::after {
  content: none;
  display: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.hero-photo::before {
  content: none;
  display: none;
}

.hero-photo::after {
  content: none;
  display: none;
}

.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: cover;
  object-position: 50% 0%;
  transform: none;
  transform-origin: center top;
  -webkit-mask-image: none;
  mask-image: none;
  filter: none;
  image-rendering: auto;
}

.hero-location {
  position: absolute;
  left: 0;
  right: auto;
  top: 51%;
  transform: translateY(-50%);
  min-width: 268px;
  padding: 1.06rem 1.14rem 1.06rem 2.3rem;
  border-radius: 0 999px 999px 0;
  background: #141821;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 7;
}

.hero-location__text p {
  margin: 0;
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.08;
  color: #f0f2f3;
}

.hero-location__icon {
  width: 101px;
  height: 101px;
  border-radius: 50%;
  background: #f2f3f4;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(8, 12, 18, 0.08), 0 4px 12px rgba(8, 12, 18, 0.14);
  flex: 0 0 auto;
}

.hero-location__globe-canvas {
  width: 72%;
  height: 72%;
  display: block;
  transform: rotate(-14deg);
  filter: none;
}

.hero-role {
  position: absolute;
  left: auto;
  right: 0;
  top: 51%;
  bottom: auto;
  transform: translateY(-50%);
  z-index: 7;
  color: #111315;
  text-shadow: none;
  display: inline-grid;
  gap: 0.1rem;
  padding-left: 5.2rem;
  padding-right: 0;
  width: max-content;
  max-width: min(78vw, 840px);
}

.hero-role__arrow {
  position: absolute;
  top: -3.7rem;
  right: auto;
  left: 0.04rem;
  margin: 0;
  width: 4.05rem;
  height: 4.05rem;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.hero-role__arrow::before {
  content: "";
  position: absolute;
  left: 0.3rem;
  top: 0.38rem;
  width: 2.95rem;
  border-top: 3.2px solid #111315;
  transform: rotate(45deg);
  transform-origin: left center;
}

.hero-role__arrow::after {
  content: "";
  position: absolute;
  right: 0.35rem;
  bottom: 0.35rem;
  width: 2.05rem;
  height: 2.05rem;
  border-right: 3.2px solid #111315;
  border-bottom: 3.2px solid #111315;
}

.hero-role p {
  margin: 0;
  font-size: clamp(2.35rem, 4.95vw, 6.25rem);
  line-height: 1.06;
  font-weight: 500;
  color: #111315;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 16%;
  transform: translateX(-50%);
  width: 3.6rem;
  height: 5.25rem;
  z-index: 9;
  display: grid;
  place-items: center;
  pointer-events: auto;
  animation: heroScrollCueBounce 1.48s ease-in-out infinite;
  opacity: 1;
  transition: opacity 0.46s ease;
  will-change: opacity;
}

.hero-scroll-cue.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-scroll-cue__line {
  width: 3px;
  height: 3.35rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.42);
}

.hero-scroll-cue__tip {
  position: absolute;
  bottom: 0.24rem;
  width: 1.08rem;
  height: 1.08rem;
  border-left: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(-45deg);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.42));
}

@keyframes heroScrollCueBounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 0.78rem);
  }
}

.hero-name {
  display: none;
}

.hero-name__dash {
  margin-left: auto;
  padding-right: 1.8rem;
}

.hero-mobile-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.74rem 1.24rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn--solid {
  background: #f2f2ed;
  color: #111211;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.14);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.24);
}

.work,
.about,
.contact {
  padding: 6rem 0;
}

.section-head {
  margin-bottom: 1.8rem;
}

.section-kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: #cfd8d4;
}

.section-head h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  max-width: 18ch;
}

.work-list {
  border-top: 1px solid var(--line);
}

.work-head {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 72px;
  gap: 1rem;
  align-items: center;
  color: #6f7674;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.7rem 0;
}

.work-head span:first-child {
  padding-left: 58px;
}

.work-row {
  position: relative;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.25s ease;
}

.work-list.is-hovering .work-row {
  opacity: 0.42;
}

.work-list.is-hovering .work-row.is-active {
  opacity: 1;
}

.work-link {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 220px 72px 40px;
  gap: 1rem;
  align-items: center;
  padding: clamp(1.45rem, 2.9vw, 2.25rem) 0;
}

.work-index {
  color: #69716f;
  font-family: "Syne", sans-serif;
}

.work-main {
  min-width: 0;
}

.work-title {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.work-meta {
  margin: 0.38rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.work-type {
  margin: 0;
  color: #bcc4c1;
  font-size: 0.88rem;
  line-height: 1.45;
}

.work-year {
  margin: 0;
  text-align: right;
  color: #bcc4c1;
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.work-arrow {
  color: #a4aaa8;
  font-size: 1.1rem;
  text-align: right;
}

.work-hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  width: min(44vw, 560px);
  aspect-ratio: 16 / 10;
  z-index: 35;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.34s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(120deg, #0f1213, #171d1f);
}

.work-hover-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.work-hover-stack {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 0%, 0);
  transition: transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.work-hover-stack-image {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.work-hover-preview.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.about {
  background: #000000;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.about .section-kicker {
  color: rgba(255, 255, 255, 0.72);
}

.about .section-head h2 {
  color: #ffffff;
}

.about-content {
  display: grid;
  gap: 0.85rem;
}

.about-intro {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: #000000;
}

.about-name {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.8;
}

.about-intro h3 {
  margin: 0.58rem 0 0.5rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.24rem, 2.1vw, 1.76rem);
  line-height: 1.15;
  max-width: 25ch;
}

.about-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  max-width: 58ch;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-card {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 1rem;
  padding: 1rem;
  background: #000000;
}

.about-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Syne", sans-serif;
  font-size: 1.2rem;
  color: #ffffff;
}

.about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.64rem;
}

.about-list li {
  border-left: 2px solid #ffffff;
  padding-left: 0.64rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.contact-inner {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: clamp(1.1rem, 2.6vw, 1.9rem);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: end;
}

.contact-left {
  min-width: 0;
}

.contact-left .section-kicker {
  margin: 0 0 0.65rem;
}

.contact-right {
  min-width: 0;
  justify-self: end;
  width: 100%;
  max-width: 520px;
}

.contact-inner h2 {
  margin: 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.45rem);
  max-width: 16ch;
}

.contact-inner p {
  margin: 0;
  max-width: 54ch;
  color: #d7ddda;
  line-height: 1.68;
}

.contact-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.72rem;
  flex-wrap: wrap;
}

.footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1.1rem 0 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.78s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.78s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (max-width: 980px) {
  .site-header {
    width: calc(100% - 2rem);
    top: 1rem;
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-location {
    left: 0;
    right: auto;
    min-width: 220px;
    padding: 0.83rem 0.96rem 0.83rem 1.3rem;
    top: auto;
    bottom: 18%;
    transform: none;
  }

  .hero-location__text p {
    font-size: 1rem;
  }

  .hero-location__icon {
    width: 81px;
    height: 81px;
  }

  .hero-role {
    top: auto;
    bottom: 20%;
    left: auto;
    right: 0;
    transform: none;
    padding-left: 3.9rem;
    padding-right: 0;
    max-width: min(86vw, 640px);
  }

  .hero-role__arrow {
    top: -2.55rem;
    right: auto;
    left: 0.06rem;
    margin: 0;
    width: 3rem;
    height: 3rem;
  }

  .hero-role__arrow::before {
    left: 0.25rem;
    top: 0.28rem;
    width: 2.18rem;
    border-top-width: 2.7px;
  }

  .hero-role__arrow::after {
    right: 0.22rem;
    bottom: 0.22rem;
    width: 1.52rem;
    height: 1.52rem;
    border-right-width: 2.7px;
    border-bottom-width: 2.7px;
  }

  .hero-role p {
    font-size: clamp(1.8rem, 5.25vw, 3.2rem);
  }

  .hero-scroll-cue {
    bottom: 13%;
    width: 3.15rem;
    height: 4.45rem;
  }

  .hero-scroll-cue__line {
    width: 2.7px;
    height: 2.85rem;
  }

  .hero-scroll-cue__tip {
    width: 0.9rem;
    height: 0.9rem;
    border-left-width: 2.7px;
    border-bottom-width: 2.7px;
  }

  .hero-name {
    left: -2vw;
    right: -2vw;
    font-size: clamp(3.2rem, 14vw, 8.6rem);
    bottom: 2%;
  }

  .hero-name__dash {
    padding-right: 0.7rem;
  }

  .hero-mobile-cta {
    position: absolute;
    left: 50%;
    bottom: 0.8rem;
    transform: translateX(-50%);
    z-index: 9;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .work-head {
    display: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

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

  .work-hover-preview {
    display: none;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    align-items: start;
  }

  .contact-right {
    justify-self: stretch;
    max-width: none;
  }

  .work-link {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 0.8rem;
  }

  .work-type,
  .work-year {
    display: none;
  }
}

@media (max-width: 740px) {
  .brand {
    font-size: 1.34rem;
  }

  .site-header {
    top: 0.7rem;
    width: calc(100% - 1.25rem);
  }

  .lang-switch,
  .menu-toggle {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-role {
    top: auto;
    bottom: 24%;
    left: auto;
    right: 0;
    transform: none;
    padding-left: 2.95rem;
    padding-right: 0;
    max-width: 88vw;
  }

  .hero-role__arrow {
    top: -2.02rem;
    right: auto;
    left: 0.04rem;
    width: 2.34rem;
    height: 2.34rem;
  }

  .hero-role__arrow::before {
    left: 0.2rem;
    top: 0.2rem;
    width: 1.67rem;
    border-top-width: 2.1px;
  }

  .hero-role__arrow::after {
    right: 0.15rem;
    bottom: 0.15rem;
    width: 1.04rem;
    height: 1.04rem;
    border-right-width: 2.1px;
    border-bottom-width: 2.1px;
  }

  .hero-role p {
    font-size: clamp(1.45rem, 6.4vw, 2.35rem);
  }

  .hero-scroll-cue {
    bottom: 11.6%;
    width: 2.75rem;
    height: 3.9rem;
  }

  .hero-scroll-cue__line {
    width: 2.4px;
    height: 2.45rem;
  }

  .hero-scroll-cue__tip {
    width: 0.78rem;
    height: 0.78rem;
    border-left-width: 2.4px;
    border-bottom-width: 2.4px;
  }

  .hero-location {
    left: 0;
    right: auto;
    bottom: 20%;
    padding-left: 1.08rem;
  }

  .hero-location__text p {
    font-size: 0.95rem;
  }

  .hero-name {
    font-size: clamp(2.8rem, 15vw, 5.4rem);
    bottom: 9.2%;
  }

  .hero-mobile-cta {
    bottom: 0.35rem;
  }

  .hero-mobile-cta .btn {
    padding: 0.56rem 0.88rem;
    font-size: 0.86rem;
  }

  .cursor {
    display: none;
  }

  .menu-overlay__meta {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-scroll-cue {
    animation: none !important;
  }
}
