@font-face {
  font-family: "Great Vibes";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/great-vibes.woff2") format("woff2");
}

:root {
  --ink: #11100f;
  --ink-deep: #11100f;
  --cream: #f1eee7;
  --mist: #b9b5ad;
  --muted: #c8c4bb;
  --line-light: rgba(241, 238, 231, 0.28);
  --line-dark: rgba(37, 37, 34, 0.25);
  --header-h: 52px;
  --shell-max: 1600px;
  --shell-pad: 30px;
  --globe-size: clamp(900px, 120vw, 1600px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html:has(.page-home) {
  scroll-behavior: auto;
  background: #fff;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

html:has(.page-home)::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

html:has(.page-home)::-webkit-scrollbar-track,
html:has(.page-home)::-webkit-scrollbar-thumb,
html:has(.page-home)::-webkit-scrollbar-corner {
  background: transparent;
}

html.globe-scroll-running {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body.page-home {
  --header-h: 0px;
  background: #fff;
}

/* Home top bar */

.home-bar {
  position: fixed;
  top: max(22px, calc(env(safe-area-inset-top, 0px) + 16px));
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 max(28px, env(safe-area-inset-right, 0px), var(--shell-pad)) 0 max(28px, env(safe-area-inset-left, 0px), var(--shell-pad));
  color: rgba(241, 238, 231, 0.88);
  font: 500 10px/1 "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  pointer-events: none;
  transition: color 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-bar > * {
  pointer-events: auto;
}

.home-bar.is-on-light {
  color: rgba(17, 16, 15, 0.82);
}

.home-bar__menu {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
}

.home-bar__icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 18px;
  transform: translateY(-2px);
}

.home-bar__icon span {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.home-bar__label {
  position: relative;
  padding-bottom: 4px;
}

.home-bar__label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-bar__menu:hover .home-bar__label::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-bar__lang {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
}

.home-bar__lang > span {
  opacity: 0.28;
  letter-spacing: 0;
}

.home-bar__lang button {
  position: relative;
  color: inherit;
  opacity: 0.34;
  padding-bottom: 4px;
  transition: opacity 0.35s ease;
}

.home-bar__lang button[aria-pressed="true"] {
  opacity: 1;
}

.home-bar__lang button[aria-pressed="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.65;
}

.home-bar__lang button:hover {
  opacity: 1;
}

body.menu-open .home-bar,
body.menu-open .home-bar.is-on-light {
  color: rgba(241, 238, 231, 0.88);
}

body.menu-open .brand-lockup.is-on-light .brand-lockup__word,
body.menu-open .brand-lockup.is-on-light .brand-lockup__mark {
  filter: none;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open.page-home {
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.home-menu {
  position: fixed;
  inset: 0;
  z-index: 28;
  display: grid;
  place-items: center;
  padding: max(96px, calc(env(safe-area-inset-top, 0px) + 88px)) 24px max(40px, env(safe-area-inset-bottom, 0px));
  background: linear-gradient(
    180deg,
    #06101f 0%,
    #081628 12%,
    #0b1f38 24%,
    #123352 38%,
    #1d4f78 52%,
    #2f6fa3 66%,
    #5a9dce 80%,
    #8ec8ea 92%,
    #b5dff5 100%
  );
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: none;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s linear;
}

.home-menu::before,
.home-menu::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(46vh, 420px);
  pointer-events: none;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 48%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 48%, transparent 100%);
}

.home-menu::before {
  opacity: 0.55;
  background-image:
    radial-gradient(1px 1px at 7% 16%, rgba(255, 255, 255, 0.82) 99%, transparent 100%),
    radial-gradient(1.5px 1.5px at 14% 8%, rgba(255, 255, 255, 0.72) 99%, transparent 100%),
    radial-gradient(1px 1px at 22% 21%, rgba(255, 255, 255, 0.58) 99%, transparent 100%),
    radial-gradient(2px 2px at 31% 6%, rgba(255, 255, 255, 0.8) 99%, transparent 100%),
    radial-gradient(1px 1px at 41% 13%, rgba(255, 255, 255, 0.55) 99%, transparent 100%),
    radial-gradient(1px 1px at 52% 4%, rgba(255, 255, 255, 0.7) 99%, transparent 100%),
    radial-gradient(1.5px 1.5px at 68% 10%, rgba(255, 255, 255, 0.74) 99%, transparent 100%);
}

.home-menu::after {
  opacity: 0.45;
  background-image:
    radial-gradient(1.5px 1.5px at 11% 12%, rgba(255, 255, 255, 0.78) 99%, transparent 100%),
    radial-gradient(1px 1px at 27% 19%, rgba(255, 255, 255, 0.6) 99%, transparent 100%),
    radial-gradient(1px 1px at 61% 6%, rgba(255, 255, 255, 0.58) 99%, transparent 100%),
    radial-gradient(1.5px 1.5px at 73% 14%, rgba(255, 255, 255, 0.74) 99%, transparent 100%),
    radial-gradient(1px 1px at 93% 9%, rgba(255, 255, 255, 0.62) 99%, transparent 100%);
}

body.menu-open .home-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.home-menu__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3.6vh, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.home-menu__list a {
  display: block;
  color: #fff;
  font-family: "Playfair Display", Didot, "Bodoni 72", "Bodoni Moda", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(40px, 8.4vw, 108px);
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 0.62em, 0);
  filter: blur(8px);
}

@keyframes home-menu-word-in {
  from {
    opacity: 0;
    transform: translate3d(0, 0.62em, 0);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

body.menu-open .home-menu.is-entering .home-menu__list a {
  animation: home-menu-word-in 0.95s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: color 0.55s cubic-bezier(0.33, 1, 0.32, 1);
}

body.menu-open .home-menu.is-entering .home-menu__list li:nth-child(1) a { animation-delay: 0.1s; }
body.menu-open .home-menu.is-entering .home-menu__list li:nth-child(2) a { animation-delay: 0.2s; }
body.menu-open .home-menu.is-entering .home-menu__list li:nth-child(3) a { animation-delay: 0.3s; }
body.menu-open .home-menu.is-entering .home-menu__list li:nth-child(4) a { animation-delay: 0.4s; }

@media (hover: hover) and (pointer: fine) {
  body.menu-open .home-menu__list:hover a {
    color: rgba(255, 255, 255, 0.34);
  }

  body.menu-open .home-menu__list a:hover {
    color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-menu,
  .home-menu__list a {
    transition: none;
    animation: none;
  }

  .home-menu__list a {
    transform: none;
  }

  body.menu-open .home-menu__list a {
    opacity: 1;
  }
}

/* Home brand lockup */

.brand-lockup {
  justify-self: center;
  display: grid;
  place-items: center;
  width: max-content;
  text-decoration: none;
  color: inherit;
}

.brand-lockup__word,
.brand-lockup__mark {
  grid-area: 1 / 1;
  transition:
    opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.9s cubic-bezier(0.4, 0, 0.2, 1),
    filter 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-lockup.is-on-light .brand-lockup__word,
.brand-lockup.is-on-light .brand-lockup__mark {
  filter: brightness(0);
}

.brand-lockup__word {
  display: block;
  width: clamp(132px, 16vw, 180px);
  height: auto;
  opacity: 1;
  transform: translateY(0);
}

.brand-lockup__mark {
  display: block;
  width: clamp(36px, 4.8vw, 48px);
  height: auto;
  opacity: 0;
  transform: translateY(10px) scale(0.82);
  pointer-events: none;
}

.brand-lockup.is-scrolled .brand-lockup__word {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
}

.brand-lockup.is-scrolled .brand-lockup__mark {
  opacity: 1;
  transform: translateY(-6px) scale(1);
  pointer-events: auto;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  touch-action: manipulation;
}

.shell {
  max-width: var(--shell-max);
  margin: auto;
  padding: 0 var(--shell-pad);
}

/* Header */

.site-header {
  height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0;
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 20;
  background: #06101f;
  overflow: visible;
  padding-top: env(safe-area-inset-top, 0px);
}

.site-header.is-scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(17, 16, 15, 0.46);
  box-shadow: 0 1px 0 rgba(241, 238, 231, 0.06);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 130px;
  height: auto;
  padding: 0 16px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0;
  text-transform: none;
}

.logo img {
  display: block;
  height: 28px;
  width: auto;
  max-width: none;
}

body.page-contact .logo img {
  filter: brightness(0);
}

.nav {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav a {
  position: relative;
  color: #c9c8c3;
  opacity: 1;
  transition: color 0.2s;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

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

.nav a:hover,
.nav a.active {
  color: #fff;
}

.nav-arrow {
  display: inline-grid;
  width: 12px;
  height: 12px;
  overflow: hidden;
  margin-left: 0.4em;
  vertical-align: -0.05em;
  color: inherit;
}

.nav-arrow span {
  grid-area: 1 / 1;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.nav-arrow span::before {
  content: "";
  position: absolute;
  left: 2px;
  bottom: 2px;
  width: 1.5px;
  height: 10px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: center bottom;
}

.nav-arrow span::after {
  content: "";
  position: absolute;
  top: 1px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.nav-arrow span:last-child {
  transform: translateY(110%);
}

@media (hover: hover) and (pointer: fine) {
  a:hover .nav-arrow span:first-child {
    animation: nav-arrow-out 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  a:hover .nav-arrow span:last-child {
    animation: nav-arrow-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
}

@keyframes nav-arrow-out {
  from { transform: translateY(0); }
  to { transform: translateY(-110%); }
}

@keyframes nav-arrow-in {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

body.nav-open {
  overflow: hidden;
}

.menu {
  display: none;
  width: 33px;
  height: 33px;
  border: 1px solid rgba(241, 238, 231, 0.6);
  border-radius: 50%;
  place-items: center;
  position: relative;
  z-index: 6;
}

.menu span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 1.5px;
  margin: -0.75px 0 0 -6.5px;
  background: currentColor;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.menu span:first-child {
  transform: translateY(-3.5px);
}

.menu span:last-child {
  transform: translateY(3.5px);
}

body.nav-open .menu span:first-child {
  transform: rotate(45deg);
}

body.nav-open .menu span:last-child {
  transform: rotate(-45deg);
}

/* Home hero */

.globe-journey {
  --hero-lift: 0px;
  position: sticky;
  top: 0;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  height: calc(100vh - var(--header-h) - env(safe-area-inset-top, 0px));
  height: calc(100svh - var(--header-h) - env(safe-area-inset-top, 0px));
  background: linear-gradient(
    180deg,
    #06101f 0%,
    #081628 12%,
    #0b1f38 24%,
    #123352 38%,
    #1d4f78 52%,
    #2f6fa3 66%,
    #5a9dce 80%,
    #8ec8ea 92%,
    #b5dff5 100%
  );
}

.hero {
  min-height: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: transparent;
  transform: translate3d(0, var(--hero-lift), 0);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(46vh, 420px);
  z-index: 1;
  pointer-events: none;
  background-repeat: no-repeat;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 48%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 48%, transparent 100%);
}

.hero::before {
  opacity: 0.55;
  background-image:
    radial-gradient(1px 1px at 7% 16%, rgba(255, 255, 255, 0.82) 99%, transparent 100%),
    radial-gradient(1.5px 1.5px at 14% 8%, rgba(255, 255, 255, 0.72) 99%, transparent 100%),
    radial-gradient(1px 1px at 22% 21%, rgba(255, 255, 255, 0.58) 99%, transparent 100%),
    radial-gradient(2px 2px at 31% 6%, rgba(255, 255, 255, 0.8) 99%, transparent 100%),
    radial-gradient(1px 1px at 41% 13%, rgba(255, 255, 255, 0.55) 99%, transparent 100%),
    radial-gradient(1px 1px at 52% 4%, rgba(255, 255, 255, 0.7) 99%, transparent 100%),
    radial-gradient(1.5px 1.5px at 68% 10%, rgba(255, 255, 255, 0.74) 99%, transparent 100%),
    radial-gradient(1px 1px at 76% 18%, rgba(255, 255, 255, 0.58) 99%, transparent 100%),
    radial-gradient(2px 2px at 84% 7%, rgba(255, 255, 255, 0.78) 99%, transparent 100%),
    radial-gradient(1px 1px at 91% 15%, rgba(255, 255, 255, 0.66) 99%, transparent 100%),
    radial-gradient(1px 1px at 96% 24%, rgba(255, 255, 255, 0.5) 99%, transparent 100%),
    radial-gradient(1px 1px at 4% 27%, rgba(255, 255, 255, 0.48) 99%, transparent 100%),
    radial-gradient(1px 1px at 18% 32%, rgba(255, 255, 255, 0.42) 99%, transparent 100%),
    radial-gradient(1px 1px at 87% 30%, rgba(255, 255, 255, 0.45) 99%, transparent 100%);
}

.hero::after {
  opacity: 0.45;
  background-image:
    radial-gradient(1.5px 1.5px at 11% 12%, rgba(255, 255, 255, 0.78) 99%, transparent 100%),
    radial-gradient(1px 1px at 27% 19%, rgba(255, 255, 255, 0.6) 99%, transparent 100%),
    radial-gradient(1px 1px at 61% 6%, rgba(255, 255, 255, 0.58) 99%, transparent 100%),
    radial-gradient(1.5px 1.5px at 73% 14%, rgba(255, 255, 255, 0.74) 99%, transparent 100%),
    radial-gradient(1px 1px at 93% 9%, rgba(255, 255, 255, 0.62) 99%, transparent 100%);
  animation: hero-stars-twinkle 7.5s ease-in-out infinite;
}

@keyframes hero-stars-twinkle {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.52;
  }
}

.hero-title {
  position: relative;
  z-index: 4;
  max-width: min(96vw, 1360px);
  padding: 0 20px;
  margin-top: -26vh;
  text-align: center;
  color: #fff;
  animation: hero-title-in 1.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title h1 {
  margin: 0;
  font-family: "Playfair Display", Didot, "Bodoni 72", "Bodoni Moda", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(26px, 8vw, 118px);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
  text-indent: 0;
  font-kerning: normal;
  white-space: nowrap;
}

.hero-title p {
  margin: clamp(8px, 1.2vw, 18px) auto 0;
  width: max-content;
  max-width: 100%;
  padding: 0.15em 0.45em 0.25em;
  font-family: "Great Vibes", "Snell Roundhand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(20px, 3.4vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #fff;
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  left: max(28px, env(safe-area-inset-left, 0px), var(--shell-pad));
  bottom: max(28px, env(safe-area-inset-bottom, 0px));
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  pointer-events: auto;
  overflow: hidden;
  animation: hero-title-in 1.15s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero-scroll__arrow {
  display: block;
  width: 22px;
  height: 22px;
  animation: hero-scroll-fall 1.7s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes hero-scroll-fall {
  0% {
    transform: translateY(-6px);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  78% {
    opacity: 1;
  }
  100% {
    transform: translateY(8px);
    opacity: 0;
  }
}

.globe-journey.is-after-overlay .hero-scroll {
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.world-globe {
  position: absolute;
  z-index: 3;
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  width: var(--globe-size);
  aspect-ratio: 1;
  margin: 0;
  --globe-y: 74%;
  transform: translate(-50%, calc(var(--globe-y) + var(--hero-lift)));
  transform-origin: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: auto;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
  opacity: var(--globe-opacity, 1);
  transition: opacity 0ms linear;
  filter: drop-shadow(
    0 26px 48px rgba(0, 0, 0, var(--globe-shadow-alpha, 0.28))
  );
}

.world-globe.is-traveling {
  cursor: default;
  filter: none;
  pointer-events: none;
  will-change: transform, opacity;
}

.world-globe:active {
  cursor: grabbing;
}

.world-globe.is-locked {
  cursor: default;
}

.world-globe.is-swapped {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.world-globe.is-locked.is-country-hovered {
  cursor: pointer;
}

.world-globe:focus-visible {
  outline: 1px solid rgba(241, 238, 231, 0.65);
  outline-offset: -30px;
  border-radius: 50%;
}

@media (hover: hover) and (pointer: fine) {
  .world-globe {
    touch-action: none;
  }
}

@media (pointer: coarse) {
  .world-globe {
    filter: none;
    cursor: grab;
  }
}

.world-globe__canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.globe-journey.is-after-overlay .world-globe {
  top: 0;
  bottom: auto;
  pointer-events: auto;
  touch-action: none;
}

.globe-journey.is-after-overlay .hero-title {
  animation: none;
  opacity: 0;
  pointer-events: none;
}

.globe-journey.is-after-overlay .hero::before,
.globe-journey.is-after-overlay .hero::after {
  opacity: 0;
  animation: none;
}

/* Next section overlays the pinned hero */

.home-overlay {
  position: relative;
  z-index: 8;
  background: #fff;
  box-shadow: 0 -28px 80px rgba(6, 16, 31, 0.22);
}

.sky-hold {
  height: 18svh;
  pointer-events: none;
  background: #fff;
}

.page-rise {
  position: relative;
  z-index: 9;
  height: 440svh;
  pointer-events: none;
}

.page-rise__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.page-rise__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 84px 28px 48px;
  background: #fff;
  color: var(--ink-deep);
  box-shadow: 0 28px 80px rgba(6, 16, 31, calc(0.2 * (1 - var(--rise-lift, 0))));
  transform: translate3d(0, var(--rise-y, 100vh), 0) scale(var(--rise-s, 0.4));
  transform-origin: center center;
  will-change: transform, box-shadow;
  pointer-events: auto;
}

.page-rise.is-filled .page-rise__card {
  box-shadow: none;
}

.page-rise__intro {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(28px, 5.5%, 64px) 24px 0;
  text-align: center;
}

.page-rise__title {
  margin: 0;
  font-family: "Playfair Display", Didot, "Bodoni 72", "Bodoni Moda", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(28px, 7.2vw, 96px);
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  font-kerning: normal;
}

.page-rise__dek {
  margin: 10px auto 0;
  padding: 0.12em 0.35em 0.28em;
  width: max-content;
  max-width: 100%;
  font-family: "Great Vibes", "Snell Roundhand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(22px, 3.2vw, 44px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--ink-deep);
}

.page-rise__work {
  position: absolute;
  left: 50%;
  top: calc(
    (1 - var(--rise-lift, 0)) * 54%
    + var(--rise-lift, 0) * (90% - min(52vh, 620px))
  );
  bottom: auto;
  z-index: 2;
  display: block;
  overflow: visible;
  width: min(56%, 720px);
  color: inherit;
  text-decoration: none;
  transform-origin: center center;
  will-change: transform, opacity;
}

.page-rise__work--lago {
  opacity: var(--work-in, 0);
  transform: translate3d(
    calc(-50% + var(--work-shift, 0px) + var(--work-out, 0) * -118vw),
    calc((1 - var(--rise-lift, 0)) * -50%),
    0
  ) scale(calc(0.82 + var(--rise-lift, 0) * 0.18));
}

.page-rise__work--pcs {
  z-index: 3;
  transform: translate3d(
    calc(-50% + var(--work2-shift, 0px) + (1 - var(--work2-in, 0)) * 118vw),
    0,
    0
  );
  pointer-events: none;
}

.page-rise.is-on-pcs .page-rise__work--lago {
  pointer-events: none;
}

.page-rise.is-on-pcs .page-rise__work--pcs {
  pointer-events: auto;
}

.page-rise__work img {
  display: block;
  width: 100%;
  height: calc(
    (1 - var(--rise-lift, 0)) * min(38vh, 400px)
    + var(--rise-lift, 0) * min(52vh, 620px)
  );
  object-fit: cover;
  object-position: center 62%;
}

.page-rise__work-name {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  margin: 0;
  padding: 0.12em 0.35em 0.22em;
  transform: translate(-54%, 42%);
  font-family: "Great Vibes", "Snell Roundhand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--mist);
  pointer-events: none;
  white-space: nowrap;
  opacity: var(--rise-lift, 0);
}

.page-rise__copy {
  position: absolute;
  right: max(48px, 8%);
  top: calc(90% - min(52vh, 620px));
  bottom: 10%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(34%, 400px);
  pointer-events: none;
  will-change: transform, opacity;
}

.page-rise__copy--lago {
  opacity: var(--copy-in, 0);
  transform: translate3d(
    calc((1 - var(--copy-in, 0)) * 24px + var(--work-out, 0) * -118vw),
    0,
    0
  );
}

.page-rise__copy--pcs {
  opacity: var(--copy2-in, 0);
  transform: translate3d(calc((1 - var(--work2-in, 0)) * 118vw), 0, 0);
}

.page-rise__copy-lead,
.page-rise__copy-body {
  margin: 0;
  text-align: left;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.022em;
  color: var(--ink-deep);
}

.page-rise__copy-lead {
  font-size: clamp(20px, 2.15vw, 30px);
  line-height: 1.2;
  text-transform: uppercase;
}

.page-rise__copy-body {
  margin-top: 18px;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
}

.page-rise__copy-body + .page-rise__copy-body {
  margin-top: 14px;
}

.home-dark {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100svh;
  padding: 12vh clamp(24px, 6vw, 80px) 10vh;
  overflow: hidden;
  background: #000000;
  color: #f7f4ee;
}

.partners__title {
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", Didot, "Bodoni 72", "Bodoni Moda", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(26px, 4.8vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  font-kerning: normal;
  color: #f7f4ee;
}

.partners__dek {
  margin: 10px 0 0;
  text-align: center;
  font-family: "Great Vibes", "Snell Roundhand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(22px, 3.2vw, 42px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #f7f4ee;
}

.partners__notes {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vh, 56px);
  margin-top: clamp(48px, 10vh, 96px);
  max-width: min(34em, 100%);
}

.partners__note-lead {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 0 0.4em;
  padding-bottom: 0.38em;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.15vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.022em;
  text-transform: uppercase;
  color: #f7f4ee;
}

.partners__note-lead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #f7f4ee;
}

.partners__note-copy {
  margin: 18px 0 0;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.022em;
  color: #f7f4ee;
}

.partners__aside {
  align-self: flex-end;
  margin: auto 0 0;
  padding: 0.12em 0.35em 0.28em 0.12em;
  width: max-content;
  max-width: 100%;
  text-align: right;
  font-family: "Great Vibes", "Snell Roundhand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(20px, 3.4vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--mist);
}

.home-presence {
  align-items: flex-start;
  justify-content: flex-start;
  padding: 92px clamp(24px, 6vw, 80px) 96px;
}

.home-presence__title {
  margin: 14px 0 0 16px;
  text-align: left;
  font-family: "Playfair Display", Didot, "Bodoni 72", "Bodoni Moda", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(26px, 4.8vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  font-kerning: normal;
  color: #f7f4ee;
}

.home-presence__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  margin: auto 0 12vh;
  padding: 0 16px;
}

.home-presence__aside {
  margin: 0;
  flex: 0 1 auto;
  padding: 0.12em 0.35em 0.28em 0.12em;
  width: max-content;
  max-width: 100%;
  font-family: "Great Vibes", "Snell Roundhand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(20px, 3.4vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--mist);
  transform: translate(4vw, 14vh);
}

.home-presence__copy {
  margin: 0;
  flex: 0 1 min(22em, 100%);
  max-width: min(22em, 100%);
  text-align: left;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.15vw, 32px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: #f7f4ee;
  transform: translateY(-3vh);
}

.home-light {
  position: relative;
  z-index: 1;
  background: #fff;
  color: var(--ink-deep);
}

.studio-zoom {
  height: 300svh;
}

.studio-zoom__stage {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100svh;
  padding: 12vh clamp(24px, 6vw, 80px) 0;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #06101f 0%,
    #081628 12%,
    #0b1f38 24%,
    #123352 38%,
    #1d4f78 52%,
    #2f6fa3 66%,
    #5a9dce 80%,
    #8ec8ea 92%,
    #b5dff5 100%
  );
}

.studio-zoom__veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: #fff;
  opacity: var(--studio-veil, 1);
  pointer-events: none;
}

.world-globe--sky {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  z-index: 1;
  width: clamp(340px, 50vw, 760px);
  --globe-y: 0;
  transform: translate(50%, -50%);
  opacity: 1;
  pointer-events: none;
  cursor: grab;
  touch-action: none;
  filter: drop-shadow(-12px 0 22px rgba(255, 255, 255, 0.28))
    drop-shadow(-8px 10px 22px rgba(0, 0, 0, 0.22));
}

.studio-zoom.is-sky .world-globe--sky {
  pointer-events: auto;
}

.studio-zoom.is-sky .studio__zoom {
  pointer-events: none;
}

.studio-zoom.is-sky .studio__title,
.studio-zoom.is-sky .studio__copy {
  pointer-events: none;
}

.studio-sky__intro {
  position: absolute;
  top: clamp(88px, 18vh, 160px);
  left: clamp(24px, 6vw, 80px);
  z-index: 1;
  width: min(48vw, 34em);
  max-width: calc(100% - 12vw);
  opacity: calc(1 - var(--studio-veil, 1));
  pointer-events: none;
}

.studio-zoom.is-sky .studio-sky__intro {
  z-index: 6;
}

.studio-zoom.is-sky .studio-sky__contact {
  pointer-events: auto;
}

.studio-sky__title {
  margin: 0;
  width: max-content;
  max-width: none;
  text-align: left;
  font-family: "Playfair Display", Didot, "Bodoni 72", "Bodoni Moda", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(24px, 3.8vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
  font-kerning: normal;
  white-space: nowrap;
  color: #fff;
}

.studio-sky__dek {
  margin: clamp(20px, 3.2vh, 36px) 0 0;
  max-width: none;
  text-align: left;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.7vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.88);
}

.studio-sky__dek--lead {
  white-space: nowrap;
}

.studio-sky__dek + .studio-sky__dek {
  margin-top: 0.35em;
}

.world-globe--sky:active {
  cursor: grabbing;
}

.studio__title,
.studio__copy {
  position: relative;
  z-index: 5;
}

.studio__title {
  margin: 0;
  text-align: center;
  font-family: "Playfair Display", Didot, "Bodoni 72", "Bodoni Moda", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(26px, 4.8vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  font-kerning: normal;
  color: var(--ink-deep);
  opacity: var(--studio-fade, 1);
}

.studio__copy {
  margin: clamp(48px, 14vh, 140px) 0 0;
  max-width: 38em;
  text-align: justify;
  text-align-last: center;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(20px, 2.15vw, 32px);
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  opacity: var(--studio-fade, 1);
}

.studio__zoom {
  position: relative;
  z-index: 4;
  margin: auto calc(50% - 50vw) 16vh;
  width: 100vw;
  display: flex;
  justify-content: center;
}

.studio__zoom.is-off {
  opacity: 0;
  pointer-events: none;
}

.studio__sharp {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
}

.studio__sharp.is-on {
  opacity: var(--studio-veil, 1);
}

.studio__sharp text {
  fill: var(--ink-deep);
  font-family: "Playfair Display", Didot, "Bodoni 72", "Bodoni Moda", Georgia, serif;
  font-optical-sizing: none;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  text-rendering: geometricPrecision;
  font-kerning: none;
}

.studio__mark {
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Playfair Display", Didot, "Bodoni 72", "Bodoni Moda", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(48px, 10vw, 176px);
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
  font-kerning: normal;
  white-space: nowrap;
  color: var(--ink-deep);
  user-select: none;
}

.studio__letter {
  position: relative;
  display: inline-block;
  padding: 0;
  margin: 0 -0.01em;
  line-height: 1;
  cursor: default;
}

.studio__letter::after {
  content: "";
  position: absolute;
  inset: -0.16em -0.05em -0.22em;
}

.studio__letter--space {
  width: 0.32em;
  pointer-events: none;
}

.studio__letter--space::after {
  content: none;
}

@media (prefers-reduced-motion: reduce) {
  .studio-zoom {
    height: auto;
  }

  .studio-zoom__stage {
    position: relative;
    height: auto;
    min-height: 100svh;
  }

  .studio__letter {
    transform: none;
  }
}

/* Contact */

.studio-sky__contact {
  margin-top: clamp(18px, 3vh, 32px);
}

.home-contact__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.home-contact__form {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-contact__form.is-sending .home-contact__send {
  opacity: 0.55;
  pointer-events: none;
}

.home-contact__form.is-sent .home-contact__field,
.home-contact__form.is-sent .home-contact__send {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.home-contact__field,
.home-contact__send {
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    border-bottom-color 0.35s ease;
}

.home-contact__status {
  position: absolute;
  left: 0;
  top: 0.2em;
  display: flex;
  align-items: center;
  gap: 0.55em;
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 22px);
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s,
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.home-contact__form.is-sent .home-contact__status,
.home-contact__form.is-error .home-contact__status {
  opacity: 1;
  transform: translateY(0);
}

.home-contact__form.is-error .home-contact__status {
  position: relative;
  top: auto;
  margin-top: 18px;
  max-width: 28em;
  transition-delay: 0s;
}

.home-contact__form.is-error .home-contact__check {
  display: none;
}

.home-contact__check {
  width: 1.05em;
  height: 1.05em;
  flex: none;
}

.home-contact__check path {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
}

.home-contact__form.is-sent .home-contact__check path {
  animation: home-contact-check 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

@keyframes home-contact-check {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-contact__field,
  .home-contact__send,
  .home-contact__status {
    transition: none;
  }

  .home-contact__form.is-sent .home-contact__check path {
    animation: none;
    stroke-dashoffset: 0;
  }
}

.home-contact__field {
  display: block;
  padding: 16px 0 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  cursor: text;
}

.home-contact__field:first-of-type {
  padding-top: 4px;
}

.home-contact__field span {
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.35vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
}

.home-contact__field input,
.home-contact__field textarea {
  display: block;
  width: 100%;
  min-height: 1.5em;
  margin: 8px 0 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: text;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.35vw, 20px);
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: #fff;
  outline: none;
  resize: none;
  caret-color: #fff;
}

.home-contact__field textarea {
  min-height: 1.4em;
  overflow: hidden;
}

.home-contact__field input:focus,
.home-contact__field textarea:focus {
  outline: none;
}

.home-contact__field:focus-within {
  border-bottom-color: #fff;
}

.home-contact__send {
  align-self: flex-start;
  margin: 22px 0 0;
  padding: 0 0 5px;
  border: 0;
  background: none;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: -0.02em;
  color: #fff;
  cursor: pointer;
  box-shadow: inset 0 -1px 0 #fff;
}

.home-contact__send:hover {
  opacity: 0.7;
}

.home-end {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 50svh;
  background: #fff;
  color: var(--ink-deep);
  padding: 64px 0 max(18px, env(safe-area-inset-bottom, 0px));
}

.home-end .shell {
  width: 100%;
  max-width: 1200px;
}

.home-end a {
  color: inherit;
  text-decoration: none;
}

.home-end__brand {
  padding-bottom: 68px;
}

.home-end__logo {
  display: flex;
  align-items: center;
  margin-left: -4px;
  width: fit-content;
}

.home-end__logo img {
  display: block;
  height: 52px;
  width: auto;
  filter: brightness(0);
}

.home-end__links {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 30px;
  padding: 33px 0 50px;
}

.home-end__links > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
}

.home-end__label {
  margin-bottom: 8px;
  font: 12px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(17, 16, 15, 0.42);
}

.home-end__links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  transition: transform 0.3s ease;
}

.home-end__links a:hover {
  transform: scale(1.05);
}

.home-end__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.home-end__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.home-end__bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px 24px;
  color: rgba(17, 16, 15, 0.42);
  font: 10px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.home-end__bottom a {
  color: var(--ink-deep);
}

@media (max-width: 720px) {
  .home-end {
    padding-top: 36px;
    padding-bottom: max(22px, env(safe-area-inset-bottom, 0px));
  }

  .home-end__brand {
    padding-bottom: 36px;
  }

  .home-end__logo img {
    height: 34px;
    max-width: 100%;
  }

  .home-end__links {
    grid-template-columns: 1fr;
    padding: 28px 0 40px;
    row-gap: 26px;
    font-size: 16px;
  }

  .home-end__links a {
    white-space: nowrap;
  }

  .home-end__links a[href^="mailto:"],
  .home-end__links a[href^="tel:"] {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .home-end__bottom {
    flex-wrap: wrap;
    gap: 10px 16px;
  }
}

/* Panel */

.panel {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--ink-deep);
  min-height: 100svh;
  padding: 92px 0 96px;
}

.panel .shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

.panel-lead {
  margin: 14px 0 0 16px;
  font-family: "Playfair Display", Didot, "Bodoni 72", "Bodoni Moda", Georgia, serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(26px, 4.8vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-transform: uppercase;
  font-kerning: normal;
  color: var(--ink-deep);
  transform: translate3d(0, var(--panel-copy-y, 36px), 0) scale(var(--panel-copy-scale, 0.9));
  transform-origin: left top;
}

.panel-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

.panel-aside {
  margin: 0 0 -72px calc(16px + 5%);
  padding: 0.12em 0.35em 0.28em 0.12em;
  width: max-content;
  font-family: "Great Vibes", "Snell Roundhand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(20px, 3.4vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--mist);
  transform: translate3d(0, var(--panel-copy-y, 36px), 0) scale(var(--panel-copy-scale, 0.9));
  transform-origin: left bottom;
}

.script-hand {
  clip-path: inset(-0.3em 100% -0.4em -0.2em);
}

.script-hand.is-written {
  animation: panel-aside-write 1.85s 0.04s cubic-bezier(0.22, 0.7, 0.28, 1) both;
}

@keyframes panel-aside-write {
  from {
    clip-path: inset(-0.3em 100% -0.4em -0.2em);
  }
  to {
    clip-path: inset(-0.3em -0.25em -0.4em -0.2em);
  }
}

.panel-belief {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  margin: 0 clamp(28px, 7vw, 110px) clamp(12px, 4vh, 48px) 0;
  transform: translate3d(0, var(--panel-copy-y, 36px), 0) scale(var(--panel-copy-scale, 0.9));
  transform-origin: left bottom;
}

.panel-belief__label {
  position: relative;
  width: max-content;
  margin: 0 0 0.9em;
  padding-bottom: 0.42em;
  font: 700 clamp(15px, 1.4vw, 20px)/1 "DM Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-deep);
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.8s ease 0.08s,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.panel-belief__label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.15s cubic-bezier(0.33, 0.05, 0.2, 1) 0.18s;
}

#philosophy .shell {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.philosophy-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 56px);
  width: 100%;
  flex: 1;
}

#philosophy .panel-aside {
  transform: none;
  align-self: flex-start;
}

.panel-philosophy {
  align-self: flex-start;
  flex: 0 1 auto;
  margin: clamp(52px, 8vh, 80px) 0 0 32px;
}

.panel-points {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 34px);
  width: min(100%, 560px);
  margin: clamp(32px, 5vh, 56px) 8px 0 0;
}

.panel-point__title {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 0 0.4em;
  padding-bottom: 0.38em;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(15px, 1.45vw, 20px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink-deep);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.85s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel-point__title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ink-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.15s cubic-bezier(0.33, 0.05, 0.2, 1);
}

.panel-point__copy {
  margin: 0;
  max-width: 30em;
  text-align: left;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 2.05vw, 28px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.85s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.panel-points.is-lined .panel-point__title,
.panel-points.is-lined .panel-point__copy {
  opacity: 1;
  transform: translateY(0);
}

.panel-points.is-lined .panel-point__title::after {
  transform: scaleX(1);
}

.panel-point:nth-child(1) .panel-point__title { transition-delay: 0.08s; }
.panel-point:nth-child(1) .panel-point__title::after { transition-delay: 0.18s; }
.panel-point:nth-child(1) .panel-point__copy { transition-delay: 0.26s; }
.panel-point:nth-child(2) .panel-point__title { transition-delay: 0.26s; }
.panel-point:nth-child(2) .panel-point__title::after { transition-delay: 0.36s; }
.panel-point:nth-child(2) .panel-point__copy { transition-delay: 0.44s; }
.panel-point:nth-child(3) .panel-point__title { transition-delay: 0.44s; }
.panel-point:nth-child(3) .panel-point__title::after { transition-delay: 0.54s; }
.panel-point:nth-child(3) .panel-point__copy { transition-delay: 0.62s; }
.panel-point:nth-child(4) .panel-point__title { transition-delay: 0.62s; }
.panel-point:nth-child(4) .panel-point__title::after { transition-delay: 0.72s; }
.panel-point:nth-child(4) .panel-point__copy { transition-delay: 0.8s; }

@media (max-width: 680px) {
  .philosophy-main {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .panel-points {
    width: 100%;
    margin: 28px 0 0 32px;
  }
}

.panel-philosophy .panel-belief__label {
  margin-bottom: 0.85em;
  opacity: 1;
  transform: none;
  transition: none;
}

.panel-philosophy .panel-belief__label::after {
  transform: scaleX(1);
  transition: none;
}

.panel-philosophy .panel-lead {
  margin: 0;
  transform: none;
}

.panel-belief.is-lined .panel-belief__label {
  opacity: 1;
  transform: translateY(0);
}

.panel-belief.is-lined .panel-belief__label::after {
  transform: scaleX(1);
}

.panel-echo {
  margin: 0;
  text-align: left;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink-deep);
}

/* Home footer */

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 64px 0 18px;
}

.site-footer .shell {
  max-width: 1200px;
}

body.page-about .site-footer,
body.page-legal .site-footer {
  padding-top: 0;
}

body.page-about .footer-top,
body.page-legal .footer-top {
  border-top: 1px solid var(--line-light);
  padding-top: 28px;
}

.footer-top {
  padding-bottom: 68px;
}

.footer-logo {
  margin-left: -4px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  height: 52px;
  width: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  padding: 33px 0 50px;
  gap: 30px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 17px;
}

.footer-label {
  margin-bottom: 8px;
  font: 12px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #8d8a83;
}

.footer-links a {
  position: relative;
  display: inline-block;
  width: fit-content;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  transform: scale(1.05);
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  color: #a4a19a;
  font: 10px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.footer-bottom a {
  color: var(--cream);
}

/* Inner pages */

.page-hero {
  min-height: calc(100svh - var(--header-h));
  padding: 15vh 0 13vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-hero h1 {
  margin: 46px 0 0;
  max-width: 1150px;
  font-size: clamp(60px, 9.7vw, 149px);
  letter-spacing: -0.11em;
  line-height: 0.84;
}

.page-hero h1 em {
  font: italic 400 1.03em "Libre Baskerville", serif;
}

.label {
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b6b2a9;
}

.copy {
  max-width: 450px;
  margin: 65px 0 0;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.03em;
  color: #d4d0c7;
}

.text-link {
  display: inline-block;
  position: relative;
  margin-top: 38px;
  padding-bottom: 7px;
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.3s ease;
}

.text-link:hover {
  transform: scale(1.05);
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
}

@media (hover: hover) and (pointer: fine) {
  .text-link:hover::after {
    animation: link-line-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
}

@keyframes link-line-in {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.inner-footer {
  border-top: 1px solid var(--line-light);
  padding: 18px 0 25px;
  display: flex;
  justify-content: space-between;
  color: #aaa69e;
  font: 10px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.inner-footer a {
  color: inherit;
  display: inline-block;
  transition: transform 0.3s ease;
}

.inner-footer a:hover {
  transform: scale(1.05);
}

/* About */

.process {
  border-top: 1px solid var(--line-light);
  padding: 92px 0;
}

.process-intro {
  margin: 42px 0 78px;
  max-width: 760px;
  font: clamp(34px, 4.6vw, 67px) / 0.98 "Libre Baskerville", serif;
  letter-spacing: -0.06em;
}

.steps {
  border-top: 1px solid var(--line-light);
}

.steps article {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.steps span {
  font: 10px "DM Mono", monospace;
  color: #b6b2a9;
}

.steps h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.07em;
}

.steps p {
  margin: 0;
  max-width: 290px;
  color: #c7c3ba;
  font-size: 13px;
  line-height: 1.55;
}

/* Legal */

.legal-hero {
  padding: 72px 0 48px;
}

.legal-hero .text-link {
  margin-top: 32px;
}

.legal {
  max-width: 720px;
  padding: 0 0 90px;
}

.legal article {
  padding: 28px 0;
  border-top: 1px solid var(--line-light);
}

.legal h2 {
  margin: 0 0 14px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.legal p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: #c8c4bb;
}

.legal p:last-child {
  margin-bottom: 0;
}

.legal ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

.legal li {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.55;
  color: #c8c4bb;
}

.legal a {
  border-bottom: 1px solid rgba(241, 238, 231, 0.4);
  padding-bottom: 1px;
}

.legal-stand {
  margin-top: 22px;
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8d8a83;
}

html:has(.page-legal) {
  background: #b5dff5;
}

body.page-legal {
  background: #b5dff5;
  color: var(--ink-deep);
}

body.page-legal .site-header {
  display: none;
}

body.page-legal .legal-hero {
  padding-top: max(56px, calc(env(safe-area-inset-top, 0px) + 36px));
}

body.page-legal .label {
  color: rgba(17, 16, 15, 0.48);
}

body.page-legal .legal article {
  border-top-color: rgba(17, 16, 15, 0.16);
}

body.page-legal .legal h2 {
  color: var(--ink-deep);
}

body.page-legal .legal p,
body.page-legal .legal li {
  color: rgba(17, 16, 15, 0.78);
}

body.page-legal .legal a {
  color: inherit;
  border-bottom-color: rgba(17, 16, 15, 0.35);
}

body.page-legal .legal-stand {
  color: rgba(17, 16, 15, 0.45);
}

/* Contact */

body.page-contact {
  background: var(--cream);
  color: var(--ink);
}

body.page-contact .site-header.is-scrolled::before {
  background: rgba(241, 238, 231, 0.58);
  box-shadow: 0 1px 0 rgba(37, 37, 34, 0.08);
}

body.page-contact .nav a {
  color: #8d8a83;
  opacity: 1;
}

body.page-contact .nav a:hover,
body.page-contact .nav a.active {
  color: var(--ink);
}

body.page-contact .menu {
  border-color: rgba(37, 37, 34, 0.45);
}

body.page-contact .label {
  color: #77746e;
}

body.page-contact .page-hero {
  min-height: 0;
  padding: 52px 0 48px;
}

body.page-contact .page-hero h1 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(48px, 7vw, 108px);
}

.contact-mail {
  margin-top: 65px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

.contact-mail a {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-size: clamp(25px, 4vw, 59px);
  letter-spacing: -0.075em;
  padding-bottom: 8px;
  transition: transform 0.3s ease;
}

.contact-mail a:hover {
  transform: scale(1.05);
}

.contact-mail .nav-arrow {
  width: 0.62em;
  height: 0.62em;
  margin-left: 0.2em;
  vertical-align: 0.02em;
}

.contact-mail .nav-arrow span::before,
.contact-mail .nav-arrow span::after {
  content: none;
}

.contact-mail .nav-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-mail a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
}

@media (hover: hover) and (pointer: fine) {
  .contact-mail a::after {
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s ease;
  }

  .contact-mail a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.contact-mail p {
  margin: 10px 0 0;
  font-size: 15px;
  color: #5e5c56;
}

.project-start {
  border-top: 1px solid var(--line-dark);
  padding: 92px 0;
}

.project-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  margin-top: 43px;
}

.project-grid h2 {
  margin: 0;
  font-size: clamp(40px, 5.3vw, 76px);
  line-height: 0.91;
  letter-spacing: -0.09em;
}

.project-grid h2 em {
  font: italic 400 1.03em "Libre Baskerville", serif;
}

.questions {
  border-top: 1px solid var(--line-dark);
}

.questions div {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 10px;
  transform-origin: right center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.questions span {
  font: 10px "DM Mono", monospace;
  color: #77746e;
  transition: color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .questions div:hover {
    transform: scale(1.12) translateX(-16px);
  }

  .questions div:hover span {
    color: var(--ink-deep);
  }
}

.questions p {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.process,

.steps,

.steps article,

.project-start,

.questions,

.questions div {
  position: relative;
}

.process,

.steps,

.project-start,

.questions {
  border-top: 0;
}

.steps article,

.questions div {
  border-bottom: 0;
}

.questions::before,

.questions div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  transform: scaleX(0);
  transition: transform 2.4s cubic-bezier(0.33, 0.05, 0.2, 1);
}

.questions::before {
  top: 0;
}

.questions div::after {
  bottom: 0;
}

.questions::before,
.questions div::after {
  background: var(--line-dark);
}

.questions::before,

.questions div::after {
  transform-origin: right;
}

.process::before,
.process::after,
.steps::before,
.steps::after,
.steps article::before,
.steps article::after,
.project-start::before,
.project-start::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  pointer-events: none;
  transform: scaleX(0);
  transition: transform 2.6s cubic-bezier(0.33, 0.05, 0.2, 1);
}

.process::before,
.process::after,
.steps::before,
.steps::after,
.project-start::before,
.project-start::after {
  top: 0;
}

.steps article::before,
.steps article::after {
  bottom: 0;
}

.process::before,
.steps::before,
.steps article::before,
.project-start::before {
  left: 0;
  transform-origin: left;
}

.process::after,
.steps::after,
.steps article::after,
.project-start::after {
  right: 0;
  transform-origin: right;
}

.process::before,
.process::after,
.steps::before,
.steps::after,
.steps article::before,
.steps article::after {
  background: var(--line-light);
}

.project-start::before,
.project-start::after {
  background: var(--line-dark);
}

.process.is-lined::before,

.process.is-lined::after,

.steps.is-lined::before,

.steps.is-lined::after,

.steps.is-lined article::before,

.steps.is-lined article::after,

.project-start.is-lined::before,

.project-start.is-lined::after,

.project-start.is-lined .questions::before,

.project-start.is-lined .questions div::after {
  transform: scaleX(1);
}

.steps::before,
.steps::after {
  transition-delay: 0s;
  transition-duration: 2.5s;
}

.steps article:nth-child(1)::before,
.steps article:nth-child(1)::after {
  transition-delay: 0.22s;
  transition-duration: 2.4s;
}

.steps article:nth-child(2)::before,
.steps article:nth-child(2)::after {
  transition-delay: 0.44s;
  transition-duration: 2.3s;
}

.steps article:nth-child(3)::before,
.steps article:nth-child(3)::after {
  transition-delay: 0.66s;
  transition-duration: 2.2s;
}

.project-start .questions::before {
  transition-delay: 0.22s;
  transition-duration: 2.5s;
}

.project-start .questions div:nth-child(1)::after {
  transition-delay: 0.44s;
  transition-duration: 2.4s;
}

.project-start .questions div:nth-child(2)::after {
  transition-delay: 0.66s;
  transition-duration: 2.3s;
}

.project-start .questions div:nth-child(3)::after {
  transition-delay: 0.88s;
  transition-duration: 2.2s;
}

.mail-cta {
  display: inline-block;
  margin-top: 68px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 6px;
  font: 11px "DM Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.page-contact .inner-footer {
  border-top-color: var(--line-dark);
  color: #77746e;
}

body.page-contact .process {
  border-top-color: var(--line-dark);
}

body.page-contact .steps,
body.page-contact .steps article {
  border-color: var(--line-dark);
}

body.page-contact .steps span {
  color: #77746e;
}

body.page-contact .steps p {
  color: #5e5c56;
}

/* Tablet and small desktop */

@media (max-width: 1024px) {
  :root {
    --globe-size: clamp(640px, 130vw, 1100px);
  }

  .site-header.is-scrolled::before {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(17, 16, 15, 0.94);
  }

  .hero {
    background: transparent;
    z-index: auto;
    pointer-events: none;
  }

  .hero-scroll {
    pointer-events: auto;
  }

  .world-globe {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, calc(var(--globe-y) + var(--hero-lift)));
    filter: none;
  }

  .world-globe--sky {
    top: 50%;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 5;
    transform: translate(50%, -50%);
    filter: drop-shadow(-10px 0 18px rgba(255, 255, 255, 0.26))
      drop-shadow(-6px 8px 18px rgba(0, 0, 0, 0.2));
  }

  .world-globe.is-traveling {
    z-index: 2;
  }
}

/* Mobile */

@media (max-width: 680px) {
  :root {
    --header-h: 52px;
    --shell-pad: 22px;
    --globe-size: min(160vw, 780px);
  }

  .hero-scroll {
    width: 38px;
    height: 38px;
    left: max(22px, env(safe-area-inset-left, 0px));
    bottom: max(22px, env(safe-area-inset-bottom, 0px));
  }

  .hero-scroll__arrow {
    width: 19px;
    height: 19px;
  }

  html {
    overflow-x: hidden;
    overflow-x: clip;
  }

  .shell {
    padding: 0 var(--shell-pad);
  }

  .site-header {
    height: calc(var(--header-h) + env(safe-area-inset-top, 0px));
    justify-content: space-between;
  }

  .header-bar {
    justify-content: space-between;
    gap: 16px;
  }

  .header-inner {
    height: auto;
    padding: 0;
    gap: 0;
    border-bottom: 0;
    flex: 1;
    min-width: 0;
  }

  .logo {
    margin-left: 0;
  }

  .logo img {
    height: 20px;
    max-width: min(100%, 210px);
  }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    height: -webkit-fill-available;
    -webkit-overflow-scrolling: touch;
    z-index: 25;
    background: var(--ink);
    color: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: env(safe-area-inset-top, 0px) max(28px, env(safe-area-inset-right, 0px)) env(safe-area-inset-bottom, 0px) max(28px, env(safe-area-inset-left, 0px));
    font-size: clamp(34px, 9vw, 48px);
    letter-spacing: -0.06em;
    text-transform: none;
    font-family: Inter, sans-serif;
    font-weight: 600;
  }

  body.page-contact .nav {
    background: var(--cream);
    color: var(--ink);
  }

  body.nav-open .nav {
    display: flex;
  }

  .nav a {
    display: block;
    color: #9a968e;
  }

  .nav .nav-arrow {
    width: 0.5em;
    height: 0.5em;
    margin-left: 0.22em;
    vertical-align: 0.1em;
  }

  .nav .nav-arrow span::before {
    left: 18%;
    bottom: 16%;
    width: 12%;
    height: 78%;
  }

  .nav .nav-arrow span::after {
    top: 10%;
    right: 12%;
    width: 42%;
    height: 42%;
    border-width: 2px;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a.active {
    color: #fff;
  }

  body.page-contact .nav a {
    color: #8d8a83;
  }

  body.page-contact .nav a:hover,
  body.page-contact .nav a.active {
    color: var(--ink);
  }

  .menu {
    display: grid;
    z-index: 26;
  }

  body.nav-open {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    overflow: hidden;
  }

  body.nav-open .menu {
    position: fixed;
    top: calc(10px + env(safe-area-inset-top, 0px));
    right: max(22px, env(safe-area-inset-right, 0px));
    z-index: 30;
  }

  .world-globe {
    top: auto;
    right: auto;
    bottom: 0;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, calc(var(--globe-y) + var(--hero-lift)));
  }

  .world-globe--sky {
    top: 52%;
    right: 0;
    bottom: auto;
    left: auto;
    z-index: 5;
    width: clamp(300px, 90vw, 480px);
    transform: translate(50%, -50%);
  }

  .questions div:hover,

  .footer-links a:hover,

  .text-link:hover,

  .contact-mail a:hover {
    transform: none;
  }

  .closing {
    padding: 64px 0;
  }

  .site-footer {
    padding-top: 36px;
    padding-bottom: 22px;
  }

  .footer-top {
    padding-bottom: 36px;
    display: block;
  }

  .footer-logo img {
    height: 34px;
    max-width: 100%;
  }

  .footer-top p {
    margin-top: 30px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    padding: 28px 0 40px;
    row-gap: 26px;
    font-size: 16px;
  }

  .footer-links a {
    white-space: nowrap;
  }

  .footer-links a[href^="mailto:"],
  .footer-links a[href^="tel:"] {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .footer-links div:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    margin-top: 0;
    gap: 10px 16px;
    flex-wrap: wrap;
  }

  .page-hero {
    min-height: 0;
    padding: 36px 0 52px;
  }

  body.page-contact .page-hero {
    min-height: 0;
    padding: 28px 0 36px;
  }

  .page-hero h1 {
    margin-top: 18px;
    font-size: clamp(42px, 12vw, 68px);
    letter-spacing: -0.08em;
  }

  body.page-contact .page-hero h1 {
    font-size: clamp(40px, 11.5vw, 62px);
  }

  .copy {
    font-size: 15px;
    margin-top: 28px;
    max-width: none;
  }

  .text-link {
    margin-top: 28px;
  }

  .inner-footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .process {
    padding: 56px 0 64px;
  }

  .process-intro {
    margin: 22px 0 40px;
    font-size: clamp(28px, 8.4vw, 44px);
    line-height: 1.12;
  }

  .steps article {
    grid-template-columns: 35px 1fr;
    gap: 10px;
    padding: 18px 0;
    align-items: start;
  }

  .steps p {
    grid-column: 2;
    max-width: none;
  }

  .steps h2 {
    font-size: 22px;
  }

  .contact-mail {
    margin-top: 40px;
  }

  .contact-mail a {
    font-size: clamp(18px, 6.2vw, 28px);
    max-width: 100%;
    overflow-wrap: anywhere;
    padding-bottom: 6px;
  }

  .project-start {
    padding: 52px 0 64px;
  }

  .project-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 22px;
  }

  .project-grid h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .mail-cta {
    margin-top: 50px;
  }
}

@media (max-width: 820px) {
  html:has(.page-home),
  body.page-home {
    overflow-x: hidden;
    overflow-x: clip;
  }

  body.page-home {
    --shell-pad: 20px;
    --globe-size: min(148vw, 620px);
  }

  .home-bar {
    top: max(14px, calc(env(safe-area-inset-top, 0px) + 10px));
    padding: 0 max(16px, env(safe-area-inset-right, 0px)) 0 max(16px, env(safe-area-inset-left, 0px));
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .home-bar__menu {
    min-height: 44px;
    gap: 8px;
  }

  .home-bar__lang button {
    min-height: 44px;
    min-width: 28px;
  }

  .brand-lockup__word {
    width: 120px;
  }

  .brand-lockup__mark {
    width: 34px;
  }

  .home-menu {
    padding: max(88px, calc(env(safe-area-inset-top, 0px) + 72px)) 16px max(28px, env(safe-area-inset-bottom, 0px));
  }

  .home-menu__list {
    gap: clamp(12px, 3.2vh, 28px);
  }

  .home-menu__list a {
    font-size: clamp(34px, 12vw, 64px);
  }

  .hero-title {
    margin-top: -10vh;
    padding: 0 16px;
    max-width: 100%;
  }

  .hero-title h1 {
    white-space: normal;
    font-size: clamp(34px, 11.5vw, 54px);
    line-height: 0.96;
  }

  .hero-title p {
    width: auto;
    max-width: 18em;
    font-size: clamp(18px, 5.4vw, 26px);
  }

  .panel {
    min-height: auto;
    padding: 92px 0 56px;
  }

  .panel-lead {
    margin: 0;
    font-size: clamp(28px, 8.6vw, 44px);
  }

  .panel-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-top: 48px;
  }

  .panel-aside {
    margin: 0;
    font-size: clamp(22px, 6.2vw, 32px);
  }

  .panel-belief {
    margin: 0;
    width: 100%;
  }

  .panel-echo {
    font-size: clamp(16px, 4.4vw, 22px);
  }

  .panel-philosophy {
    margin: 28px 0 0;
  }

  .philosophy-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .panel-points {
    width: 100%;
    margin: 8px 0 0;
  }

  .panel-point__title {
    font-size: 15px;
  }

  .panel-point__copy {
    font-size: clamp(16px, 4.3vw, 20px);
    max-width: none;
  }

  #philosophy .panel-aside {
    margin-top: 20px;
  }

  .sky-hold {
    height: 8svh;
  }

  .page-rise {
    height: 360svh;
  }

  .page-rise__card {
    padding: 88px 18px 28px;
  }

  .page-rise__intro {
    padding: 72px 12px 0;
  }

  .page-rise__title {
    font-size: clamp(28px, 9vw, 48px);
  }

  .page-rise__dek {
    font-size: clamp(20px, 5.4vw, 28px);
  }

  .panel .shell {
    flex: none;
    justify-content: flex-start;
    gap: 36px;
  }

  .page-rise__work {
    width: min(88%, 420px);
    top: 38%;
  }

  .page-rise__work--lago {
    opacity: calc(var(--work-in, 0) * (1 - var(--work-out, 0)));
    transform: translate3d(-50%, calc((1 - var(--rise-lift, 0)) * -50%), 0)
      scale(calc(0.82 + var(--rise-lift, 0) * 0.18));
  }

  .page-rise__work--pcs {
    transform: translate3d(-50%, 0, 0);
    opacity: var(--work2-in, 0);
  }

  .page-rise__work img {
    height: calc(
      (1 - var(--rise-lift, 0)) * min(26vh, 200px)
      + var(--rise-lift, 0) * min(32vh, 260px)
    );
  }

  .page-rise__work-name {
    font-size: clamp(24px, 7vw, 36px);
    transform: translate(-18%, 38%);
  }

  .page-rise__copy {
    right: auto;
    left: 18px;
    top: auto;
    bottom: max(18px, env(safe-area-inset-bottom, 0px));
    width: calc(100% - 36px);
    justify-content: flex-end;
  }

  .page-rise__copy--lago {
    opacity: calc(var(--copy-in, 0) * (1 - var(--work-out, 0)));
    transform: none;
  }

  .page-rise.is-on-pcs .page-rise__copy--lago {
    opacity: 0;
    visibility: hidden;
  }

  .page-rise__copy--pcs {
    transform: none;
  }

  .page-rise__copy-lead {
    font-size: clamp(16px, 4.4vw, 22px);
  }

  .page-rise__copy-body {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.45;
  }

  .home-dark {
    min-height: auto;
    padding: 72px 20px 56px;
  }

  .partners__title,
  .home-presence__title {
    font-size: clamp(28px, 8.6vw, 44px);
  }

  .partners__dek {
    font-size: clamp(20px, 5.6vw, 28px);
  }

  .partners__notes {
    margin-top: 36px;
    max-width: none;
  }

  .partners__note-lead {
    font-size: clamp(16px, 4.6vw, 22px);
  }

  .partners__aside {
    align-self: flex-start;
    text-align: left;
    margin-top: 40px;
    font-size: clamp(22px, 6.2vw, 32px);
  }

  .home-presence {
    padding: 72px 20px 64px;
  }

  .home-presence__title {
    margin: 0;
  }

  .home-presence__foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin: 40px 0 0;
    padding: 0;
  }

  .home-presence__aside,
  .home-presence__copy {
    transform: none;
    max-width: none;
    width: auto;
    flex: none;
  }

  .home-presence__copy {
    font-size: clamp(16px, 4.4vw, 22px);
  }

  .studio-zoom {
    height: auto;
  }

  .studio-zoom__stage {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 96px 20px 0;
    background: #fff;
  }

  .studio__title { order: 1; }
  .studio__copy { order: 2; }
  .studio__zoom { order: 3; }
  .studio-sky__intro { order: 4; }
  .world-globe--sky { order: 5; }

  .studio-zoom__veil {
    display: none;
  }

  .studio__title,
  .studio__copy {
    opacity: 1;
  }

  .studio-sky__intro {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 2;
    width: auto;
    max-width: none;
    margin: 56px -20px 0;
    padding: 64px 20px 80px;
    opacity: 1;
    background: linear-gradient(
      180deg,
      #06101f 0%,
      #081628 12%,
      #0b1f38 24%,
      #123352 38%,
      #1d4f78 52%,
      #2f6fa3 66%,
      #5a9dce 80%,
      #8ec8ea 92%,
      #b5dff5 100%
    );
  }

  .studio-sky__title,
  .studio-sky__dek--lead {
    white-space: normal;
    width: auto;
    max-width: 100%;
  }

  .studio-sky__title {
    font-size: clamp(26px, 8vw, 40px);
  }

  .studio-sky__dek {
    font-size: clamp(15px, 4.1vw, 20px);
    margin-top: 16px;
  }

  .studio-sky__contact {
    pointer-events: auto;
  }

  .world-globe--sky {
    display: none;
  }

  .studio__title {
    font-size: clamp(28px, 8.6vw, 44px);
  }

  .studio__copy {
    margin-top: 20px;
    padding: 0 4px;
    font-size: clamp(16px, 4.3vw, 20px);
    text-align: left;
    text-align-last: auto;
  }

  .studio__zoom {
    margin: 28px 0 12px;
  }

  .studio__mark {
    white-space: normal;
    font-size: clamp(32px, 11vw, 56px);
    line-height: 0.95;
  }

  .home-contact__field input,
  .home-contact__field textarea {
    font-size: 16px;
  }

  .home-contact__send {
    min-height: 44px;
    font-size: 16px;
  }

  .home-end {
    min-height: 0;
    padding-top: 40px;
  }
}

@media (max-width: 430px) {
  .home-bar__label {
    letter-spacing: 0.12em;
  }

  .hero-title {
    margin-top: -6vh;
  }

  .page-rise__work-name {
    transform: translate(-8%, 32%);
  }
}

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

  .nav-arrow span,

  .text-link::after,

  .hero-title,
  .hero-scroll,
  .hero-scroll__arrow {
    animation: none;
  }

  .globe-journey {
    --hero-lift: 0px;
  }

  .page-rise__card {
    --rise-y: 0vh;
    --rise-s: 1;
    --rise-lift: 1;
    --work-in: 1;
    --work-shift: -12vw;
    --copy-in: 0;
    --work-out: 1;
    --work2-in: 1;
    --work2-shift: -12vw;
    --copy2-in: 1;
    box-shadow: none;
    transform: none;
  }

  .hero {
    transform: none;
  }

  .panel {
    --panel-copy-scale: 1;
    --panel-copy-y: 0px;
  }

  .panel-lead,
  .panel-aside,
  .panel-belief {
    transform: none;
  }

  .panel-aside,
  .script-hand {
    clip-path: none;
    animation: none;
  }

  .panel-belief__label,
  .panel-belief__label::after,
  .panel-point__title,
  .panel-point__title::after,
  .panel-point__copy {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero::after {
    animation: none;
    opacity: 0.45;
  }

  .text-link::after,

  .contact-mail a::after {
    transition: none;
    transform: scaleX(1);
  }

  .nav a::after {
    transition: none;
  }

  .questions::before,

  .questions div::after,

  .process::before,

  .process::after,

  .steps::before,

  .steps::after,

  .steps article::before,

  .steps article::after,

  .project-start::before,

  .project-start::after {
    transform: scaleX(1);
    transition: none;
  }
}
