:root {
  --orange: #ed6000;
  --dark-orange: #c14e00;
  --coral: #ff791f;
  --black: #000;
  --white: #fff;
  --pad: clamp(22px, 4vw, 72px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Inter Tight", Arial, sans-serif;
  cursor: none;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.skip {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 0.8rem 1rem;
}
.skip:focus {
  top: 1rem;
}
.dark {
  background: #000;
  color: #fff;
}
.light {
  background: #fff;
  color: #000;
}
.section-meta {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.15em;
  border-top: 1px solid currentColor;
  padding-top: 14px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
}
.nav {
  position: fixed;
  z-index: 80;
  top: 18px;
  left: var(--pad);
  right: var(--pad);
  height: 58px;
  padding: 0 10px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 0.68;
  font-weight: 800;
  letter-spacing: -0.07em;
}
.logo-eye {
  width: 34px;
  height: 17px;
  border: 5px solid currentColor;
  border-radius: 20px;
  display: inline-block;
  margin: 0 2px;
  position: relative;
}
.logo-eye i,
.interactive-eye i,
.loader-eye i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  top: 50%;
  left: 72%;
  transform: translate(-50%, -50%);
}
.nav nav {
  display: flex;
  gap: 34px;
  font-size: 13px;
}
.nav nav a {
  transition: 0.25s;
}
.nav nav a:hover {
  color: var(--coral);
}
.nav-cta {
  background: #fff;
  color: #000;
  padding: 12px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
}
.nav-cta span {
  color: var(--orange);
  margin-left: 12px;
}
.menu {
  display: none;
  background: none;
  border: 0;
  color: #fff;
}
.loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 200;
  display: grid;
  place-content: center;
  gap: 20px;
  transition: clip-path 1s var(--ease);
  clip-path: inset(0);
}
.loader.done {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}
.loader-eye {
  position: relative;
  width: 130px;
  height: 60px;
  border: 12px solid #fff;
  border-radius: 60px;
}
.loader-eye i {
  width: 14px;
  height: 14px;
  animation: scan 1s var(--ease) both;
}
.loader span {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-align: center;
  color: #777;
}
@keyframes scan {
  0% {
    left: 15%;
  }
  100% {
    left: 85%;
  }
}
.cursor {
  position: fixed;
  z-index: 300;
  pointer-events: none;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  margin: -6px;
  border-radius: 50%;
  background: var(--orange);
  mix-blend-mode: difference;
  transition:
    width 0.25s,
    height 0.25s,
    margin 0.25s;
  display: grid;
  place-items: center;
}
.cursor span {
  font-size: 10px;
  color: #fff;
  opacity: 0;
}
.cursor.big {
  width: 64px;
  height: 64px;
  margin: -32px;
  mix-blend-mode: normal;
}
.cursor.big span {
  opacity: 1;
}
.hero {
  height: 100svh;
  min-height: 720px;
  padding: 140px var(--pad) 32px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 65vw;
  height: 65vw;
  right: -20vw;
  top: -20vw;
  background: radial-gradient(circle, #ed6000 0, #7a2800 24%, transparent 66%);
  filter: blur(25px);
  opacity: 0.55;
}
.hero h1 {
  font-size: clamp(70px, 11vw, 190px);
  line-height: 0.76;
  letter-spacing: -0.085em;
  margin: 10vh 0 0;
  position: relative;
  z-index: 2;
}
.hero-line {
  display: block;
}
.hero-line.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  margin-left: 8vw;
}
.hero-line i,
.contact-link i {
  color: var(--orange);
  font-style: normal;
}
.hero-bottom {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 48px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 40px;
}
.hero-bottom p {
  font-size: 16px;
  line-height: 1.35;
}
.round-link {
  width: 112px;
  height: 112px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 13px;
  transition: 0.4s;
}
.round-link b {
  color: var(--orange);
  margin-left: 20px;
}
.round-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: rotate(8deg);
}
.round-link:hover b {
  color: #fff;
}
.hero-eye {
  position: absolute;
  width: 29vw;
  height: 12vw;
  border: clamp(14px, 2vw, 34px) solid white;
  border-radius: 12vw;
  right: 8vw;
  top: 26%;
  transform: rotate(-12deg);
  opacity: 0.2;
}
.hero-eye i {
  width: clamp(18px, 2vw, 36px);
  height: clamp(18px, 2vw, 36px);
}
.hero-eye small {
  position: absolute;
  right: -1rem;
  top: -3rem;
  font-size: 12px;
  letter-spacing: 0.2em;
}
.hero-orbit {
  position: absolute;
  right: 8vw;
  bottom: 10vh;
  width: 24vw;
  height: 24vw;
}
.orbit-ring {
  inset: 0;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}
.orbit-dot {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  left: calc(50% - 11px);
  top: -11px;
  box-shadow: 0 0 40px var(--orange);
  animation: orbit 12s linear infinite;
  transform-origin: 11px calc(12vw + 11px);
}
@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}
.scroll-cue {
  position: absolute;
  left: var(--pad);
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}
.scroll-cue i {
  display: block;
  width: 50px;
  height: 1px;
  background: #555;
  position: relative;
}
.scroll-cue i:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1px;
  background: var(--orange);
  animation: scroll 1.8s infinite;
}
@keyframes scroll {
  from {
    left: 0;
  }
  to {
    left: 36px;
  }
}
.statement {
  min-height: 90vh;
  padding: 35px var(--pad) 80px;
  display: flex;
  flex-direction: column;
}
.statement-copy {
  font-size: clamp(56px, 8.8vw, 150px);
  line-height: 0.93;
  letter-spacing: -0.07em;
  margin: auto 0;
}
.statement-copy strong {
  color: var(--orange);
  font-weight: 600;
}
.statement-foot {
  align-self: flex-end;
  width: min(560px, 100%);
  display: flex;
  align-items: center;
  gap: 50px;
}
.statement-foot p {
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.2;
}
.mini-eye {
  flex: 0 0 120px;
  height: 58px;
  border: 12px solid #000;
  border-radius: 60px;
  position: relative;
}
.universe {
  min-height: 110vh;
  padding: 35px var(--pad) 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 54%, #521d00, transparent 32%), #000;
}
.universe-stage {
  height: 88vh;
  position: relative;
  max-width: 1400px;
  margin: auto;
}
.universe-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 130px;
  border: 28px solid #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.universe-core > span {
  font-size: 115px;
  font-weight: 700;
  letter-spacing: -0.1em;
  position: absolute;
  left: -145px;
}
.universe-core > i {
  width: 23px;
  height: 23px;
}
.universe-core > em {
  font-size: 40px;
  font-style: normal;
  position: absolute;
  right: -64px;
  top: -55px;
}
.universe-core > small {
  position: absolute;
  top: 165px;
  width: 180px;
  text-align: center;
  color: #aaa;
  line-height: 1.4;
}
.service-orbit {
  position: absolute;
  inset: 12% 10%;
}
.service-node {
  --r: min(30vw, 400px);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r))
    rotate(calc(-1 * var(--a)));
  border: 0;
  background: none;
  color: #777;
  font-size: clamp(14px, 1.4vw, 22px);
  cursor: none;
  transition: 0.5s var(--ease);
  white-space: nowrap;
}
.service-node span {
  display: block;
  font-size: 9px;
  color: var(--orange);
  letter-spacing: 0.2em;
}
.service-node:before {
  content: "";
  display: block;
  margin: auto auto 12px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 10px rgba(237, 96, 0, 0.08);
}
.service-node.active,
.service-node:hover {
  color: #fff;
  transform: translate(-50%, -50%) rotate(var(--a)) translateX(var(--r))
    rotate(calc(-1 * var(--a))) scale(1.3);
}
.service-node.active:before {
  background: var(--orange);
  box-shadow: 0 0 30px var(--orange);
}
.service-copy {
  position: absolute;
  left: 0;
  bottom: 2%;
  width: 320px;
  font-size: 20px;
  line-height: 1.3;
  color: #aaa;
}
.work {
  padding: 35px var(--pad) 140px;
}
.section-title {
  font-size: clamp(58px, 9vw, 150px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  margin: 13vw 0 9vw;
}
.section-title em {
  font-weight: 300;
  color: var(--orange);
}
.projects {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 14vw 4vw;
}
.project-wide {
  grid-column: 1/-1;
}
.project-offset {
  margin-top: 14vw;
}
.project figure {
  margin: 0;
  height: 66vh;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  background: #111;
}
.project-wide figure {
  height: 78vh;
}
.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.35) contrast(1.08);
  transition:
    transform 1.2s var(--ease),
    filter 0.6s;
}
.project:hover img {
  transform: scale(1.04);
  filter: saturate(0.8);
}
.project-shutter {
  position: absolute;
  inset: 0;
  border: 0 solid #fff;
  border-radius: 0;
  transition:
    border-width 0.7s var(--ease),
    border-radius 0.7s;
}
.project:hover .project-shutter {
  border-width: 2.5vw;
  border-radius: 9vw;
}
.project-info {
  display: grid;
  grid-template-columns: 1fr 2.5fr auto;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid #000;
  margin-top: 12px;
}
.project-info span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.project-info h3 {
  font-size: clamp(28px, 4vw, 64px);
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 0;
}
.project-info p {
  max-width: 250px;
  margin: 6px 0 0;
}
.project-info b {
  color: var(--orange);
  font-size: 11px;
}
.pattern-break {
  height: 100vh;
  background: var(--orange);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.pattern-track {
  position: absolute;
  inset: -15%;
  background-color: #fff;
  background-image:
    radial-gradient(circle at 80% 50%, var(--orange) 0 6px, transparent 7px),
    radial-gradient(
      ellipse at center,
      transparent 0 31px,
      #000 32px 45px,
      transparent 46px
    );
  background-size: 170px 86px;
  background-position:
    0 0,
    0 0;
  transform: rotate(-8deg) scale(1.2);
  animation: pattern 18s linear infinite;
}
@keyframes pattern {
  to {
    background-position:
      340px 0,
      340px 0;
  }
}
.pattern-message {
  position: relative;
  z-index: 2;
  width: 100%;
  font-size: clamp(60px, 14vw, 220px);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.74;
  color: var(--orange);
  mix-blend-mode: multiply;
}
.pattern-message span {
  display: block;
}
.pattern-message span:last-child {
  text-align: right;
}
.method {
  min-height: 115vh;
  padding: 35px var(--pad) 100px;
}
.method-grid {
  min-height: 95vh;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.method-words {
  font-size: clamp(58px, 8vw, 130px);
  line-height: 0.78;
  letter-spacing: -0.07em;
  display: flex;
  flex-direction: column;
}
.method-words span {
  color: #222;
  transition: 0.5s;
}
.method-words .active {
  color: #fff;
}
.method-visual {
  width: 30vw;
  aspect-ratio: 1;
  position: relative;
}
.lens {
  position: absolute;
  width: 70%;
  height: 42%;
  border-radius: 50%;
  top: 30%;
  filter: blur(1px);
  mix-blend-mode: screen;
}
.lens-a {
  left: 0;
  background: radial-gradient(
    circle at 65%,
    #fff 0 4%,
    var(--orange) 5% 20%,
    rgba(237, 96, 0, 0.1) 50%,
    transparent 51%
  );
}
.lens-b {
  right: 0;
  background: radial-gradient(
    circle at 35%,
    #fff 0 4%,
    var(--dark-orange) 5% 20%,
    rgba(237, 96, 0, 0.1) 50%,
    transparent 51%
  );
}
.method-visual i {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  box-shadow: 0 0 45px var(--orange);
}
.method-copy {
  align-self: end;
  padding-bottom: 10vh;
}
.method-copy span {
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 0.18em;
}
.method-copy p {
  font-size: clamp(20px, 2.2vw, 34px);
  line-height: 1.2;
}
.capabilities {
  padding: 35px var(--pad) 130px;
}
.cap-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.cap-head .section-title {
  margin: 12vw 0 8vw;
}
.cap-head > p {
  max-width: 330px;
  font-size: 19px;
  margin-bottom: 8vw;
}
.cap-list {
  border-top: 1px solid #000;
}
.cap-list details {
  border-bottom: 1px solid #bbb;
}
.cap-list summary {
  list-style: none;
  display: grid;
  grid-template-columns: 8% 1fr auto;
  align-items: center;
  padding: 27px 0;
  cursor: none;
}
.cap-list summary::-webkit-details-marker {
  display: none;
}
.cap-list summary b {
  font-size: 11px;
  color: var(--orange);
}
.cap-list summary span {
  font-size: clamp(29px, 4vw, 62px);
  letter-spacing: -0.04em;
}
.cap-list summary i {
  font-size: 32px;
  font-style: normal;
  transition: 0.3s;
}
.cap-list details[open] summary i {
  transform: rotate(45deg);
  color: var(--orange);
}
.cap-list details > div {
  padding: 0 8% 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cap-list details p {
  max-width: 430px;
  font-size: 18px;
}
.service-art {
  width: 100px;
  height: 100px;
  position: relative;
  display: block;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff 0 15%,
    var(--orange) 16% 32%,
    rgba(237, 96, 0, 0.2) 33% 58%,
    transparent 59%
  );
  filter: drop-shadow(0 12px 14px rgba(237, 96, 0, 0.2));
}
.art-strategy {
  border-radius: 0;
  transform: rotate(45deg);
}
.art-social:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000;
  right: 0;
  top: 20px;
}
.art-growth {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.art-film {
  border-radius: 8px;
}
.proof {
  padding: 100px var(--pad);
  border-top: 1px solid #222;
}
.proof > p {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #777;
}
.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 45px;
  margin-top: 75px;
  align-items: center;
}
.logo-cloud span {
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 600;
  color: #555;
  transition: 0.3s;
}
.logo-cloud span:hover {
  color: #fff;
}
.contact {
  min-height: 105vh;
  padding: 100px var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.contact-link {
  font-size: clamp(55px, 10vw, 175px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.075em;
  display: block;
  margin: 12vh 0;
  position: relative;
  z-index: 2;
}
.contact-link span {
  display: block;
}
.contact-link span:nth-child(2) {
  margin-left: 10vw;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
}
.contact-eye {
  position: absolute;
  width: 32vw;
  height: 14vw;
  border: clamp(18px, 3vw, 50px) solid #fff;
  border-radius: 50%;
  right: 5vw;
  top: 42%;
  opacity: 0.12;
  transform: rotate(8deg);
}
.contact-eye i {
  width: 35px;
  height: 35px;
}
footer {
  border-top: 1px solid #333;
  min-height: 210px;
  display: grid;
  grid-template-columns: 2fr 2fr 1fr auto;
  gap: 30px;
  align-items: center;
  color: #aaa;
  font-size: 13px;
}
.footer-logo {
  color: #fff;
  transform: scale(1.5);
  transform-origin: left;
}
.footer-logo .logo-eye {
  width: 37px;
}
footer p {
  line-height: 1.5;
}
footer div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer a:hover {
  color: var(--orange);
}
footer small {
  align-self: end;
  padding-bottom: 25px;
}
.reveal {
  opacity: 0;
  transform: translateY(45px);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 5px;
}
@media (max-width: 800px) {
  body {
    cursor: auto;
  }
  .cursor {
    display: none;
  }
  .nav {
    top: 10px;
    left: 12px;
    right: 12px;
  }
  .nav nav,
  .nav-cta {
    display: none;
  }
  .menu {
    display: block;
    width: 40px;
  }
  .menu i {
    height: 1px;
    background: #fff;
    display: block;
    margin: 7px;
  }
  .hero {
    min-height: 650px;
    padding-top: 120px;
  }
  .hero h1 {
    font-size: 18vw;
    margin-top: 16vh;
  }
  .hero-line.outline {
    margin-left: 0;
  }
  .hero-eye {
    width: 55vw;
    height: 24vw;
    right: -10vw;
    top: 25%;
    border-width: 15px;
  }
  .hero-bottom {
    bottom: 60px;
    justify-content: space-between;
  }
  .hero-bottom p {
    font-size: 13px;
  }
  .round-link {
    width: 88px;
    height: 88px;
  }
  .scroll-cue {
    display: none;
  }
  .statement {
    min-height: 80vh;
  }
  .statement-foot {
    gap: 20px;
  }
  .statement-foot p {
    font-size: 18px;
  }
  .mini-eye {
    flex-basis: 80px;
    height: 40px;
    border-width: 8px;
  }
  .universe {
    min-height: 850px;
  }
  .universe-stage {
    height: 750px;
  }
  .universe-core {
    width: 160px;
    height: 75px;
    border-width: 16px;
  }
  .universe-core > span {
    font-size: 66px;
    left: -83px;
  }
  .universe-core > small {
    top: 110px;
  }
  .universe-core > em {
    right: -45px;
    top: -42px;
  }
  .service-orbit {
    inset: 10% 0;
  }
  .service-node {
    --r: 37vw;
    font-size: 13px;
  }
  .service-copy {
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size: 17px;
  }
  .projects {
    display: block;
  }
  .project {
    margin: 0 0 90px;
  }
  .project figure,
  .project-wide figure {
    height: 60vh;
    min-height: 420px;
  }
  .project-info {
    grid-template-columns: 1fr auto;
  }
  .project-info h3 {
    grid-row: 2;
    grid-column: 1/-1;
    margin-top: 20px;
  }
  .project-info p {
    grid-column: 1/-1;
  }
  .pattern-break {
    height: 75vh;
  }
  .pattern-track {
    background-size: 130px 66px;
  }
  .method {
    min-height: auto;
  }
  .method-grid {
    min-height: 850px;
    grid-template-columns: 1fr;
    position: relative;
  }
  .method-visual {
    position: absolute;
    right: -20vw;
    top: 20%;
    width: 70vw;
    opacity: 0.7;
  }
  .method-copy {
    width: 75%;
    justify-self: end;
  }
  .cap-head {
    display: block;
  }
  .cap-head > p {
    margin-bottom: 60px;
  }
  .cap-list summary {
    grid-template-columns: 40px 1fr auto;
  }
  .cap-list details > div {
    padding-left: 40px;
  }
  .service-art {
    width: 70px;
    height: 70px;
  }
  .logo-cloud {
    justify-content: flex-start;
  }
  .contact {
    min-height: 900px;
  }
  .contact-link {
    margin-top: 20vh;
  }
  .contact-link span:nth-child(2) {
    margin-left: 0;
  }
  .contact-eye {
    width: 60vw;
    height: 27vw;
    right: -8vw;
  }
  .contact footer {
    grid-template-columns: 1fr 1fr;
    align-content: center;
  }
  .footer-logo {
    transform: scale(1.2);
  }
  footer small {
    align-self: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .loader {
    display: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
.method {
  overflow: hidden;
}
@media (max-width: 800px) {
  .nav nav.mobile-open {
    display: flex;
    position: fixed;
    inset: 72px 12px auto;
    background: #000;
    border: 1px solid #333;
    border-radius: 24px;
    padding: 30px;
    flex-direction: column;
    gap: 22px;
    font-size: 24px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.65);
  }
}

/* Editorial layout refinement — one shared 12-column system. */
:root {
  --content-max: 1680px;
  --grid-gap: clamp(14px, 1.4vw, 28px);
  --page-gutter: max(
    clamp(22px, 4vw, 72px),
    calc((100vw - var(--content-max)) / 2)
  );
  --pad: var(--page-gutter);
  --space-xs: clamp(8px, 0.7vw, 12px);
  --space-sm: clamp(16px, 1.4vw, 24px);
  --space-md: clamp(28px, 3vw, 48px);
  --space-lg: clamp(60px, 7vw, 112px);
  --space-xl: clamp(100px, 11vw, 176px);
}
.nav {
  max-width: var(--content-max);
  margin-inline: auto;
  left: var(--page-gutter);
  right: var(--page-gutter);
  padding-inline: var(--space-sm) 10px;
}
.nav > .logo,
.nav > nav,
.nav > .nav-cta {
  align-self: center;
}
.section-meta {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}
.hero {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  column-gap: var(--grid-gap);
  padding-top: clamp(128px, 10vh, 164px);
  padding-bottom: var(--space-md);
}
.hero > .eyebrow {
  grid-column: 1/6;
  grid-row: 1;
}
.hero > h1 {
  grid-column: 1/13;
  grid-row: 2;
  align-self: center;
  width: 100%;
  margin: 0;
  max-width: var(--content-max);
}
.hero-line.outline {
  margin-left: calc((100% + var(--grid-gap) * 11) / 12);
}
.hero-bottom {
  position: static;
  grid-column: 1/13;
  grid-row: 3;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: end;
}
.hero-bottom p {
  grid-column: 9/11;
  margin: 0;
}
.hero-bottom .round-link {
  grid-column: 11/13;
  justify-self: end;
}
.scroll-cue {
  left: var(--page-gutter);
  bottom: var(--space-md);
}
.hero-eye {
  right: calc(var(--page-gutter) + 2vw);
  top: 24%;
}
.hero-orbit {
  right: calc(var(--page-gutter) + 1vw);
  bottom: 8vh;
}

.statement {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr;
  column-gap: var(--grid-gap);
  padding-block: var(--space-md) var(--space-lg);
}
.statement > .section-meta {
  grid-column: 1/13;
}
.statement-copy {
  grid-column: 1/10;
  grid-row: 2;
  align-self: center;
  margin: 0;
  padding-block: var(--space-lg);
  max-width: none;
}
.statement-foot {
  grid-column: 9/13;
  grid-row: 2;
  align-self: end;
  width: auto;
  margin: 0 0 var(--space-md);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-md);
}
.statement-foot p {
  margin: 0;
}
.mini-eye {
  align-self: end;
}

.universe {
  padding-block: var(--space-md) var(--space-lg);
}
.universe-stage {
  height: min(88vh, 900px);
  max-width: var(--content-max);
}
.service-orbit {
  inset: 8% 7%;
}
.service-node {
  --r: min(29vw, 430px);
}
.service-node:nth-child(2),
.service-node:nth-child(5) {
  --r: min(25vw, 370px);
}
.service-copy {
  left: 0;
  bottom: 3%;
  width: calc((100% - var(--grid-gap) * 11) / 4 + var(--grid-gap) * 3);
  margin: 0;
}

.work {
  padding-block: var(--space-md) var(--space-xl);
}
.work > .section-title {
  max-width: var(--content-max);
  margin: var(--space-xl) auto var(--space-lg);
}
.projects {
  max-width: var(--content-max);
  margin-inline: auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gap);
  row-gap: var(--space-xl);
}
.project-wide {
  grid-column: 1/13;
}
.project:not(.project-wide) {
  grid-column: 1/8;
}
.project.project-offset {
  grid-column: 8/13;
  margin-top: clamp(70px, 10vw, 150px);
}
.project figure {
  height: auto;
  min-height: 0;
  aspect-ratio: 4/5;
}
.project-wide figure {
  height: auto;
  aspect-ratio: 16/8;
}
.project-wide:last-child figure {
  aspect-ratio: 16/7;
}
.project-info {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gap);
  padding-top: var(--space-sm);
  margin-top: var(--space-xs);
}
.project-info span {
  grid-column: 1/4;
}
.project-info h3 {
  grid-column: 4/10;
}
.project-info p {
  grid-column: 4/10;
  grid-row: 2;
}
.project-info b {
  grid-column: 12;
  grid-row: 1;
  justify-self: end;
}
.project:not(.project-wide) .project-info {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.project:not(.project-wide) .project-info span {
  grid-column: 1/3;
}
.project:not(.project-wide) .project-info h3 {
  grid-column: 3/7;
}
.project:not(.project-wide) .project-info p {
  grid-column: 3/7;
}
.project:not(.project-wide) .project-info b {
  grid-column: 6;
  grid-row: 1;
}

.pattern-message {
  width: calc(100% - var(--page-gutter) * 2);
  max-width: var(--content-max);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gap);
  mix-blend-mode: normal;
  color: var(--orange);
  text-shadow:
    0 1px #000,
    1px 0 #000,
    -1px 0 #000,
    0 -1px #000;
}
.pattern-message span:first-child {
  grid-column: 1/11;
}
.pattern-message span:last-child {
  grid-column: 3/13;
  text-align: right;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  opacity: 0.9;
}

.method {
  padding-block: var(--space-md) var(--space-lg);
}
.method-grid {
  max-width: var(--content-max);
  margin-inline: auto;
  min-height: min(95vh, 940px);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: center;
}
.method-words {
  grid-column: 1/5;
}
.method-visual {
  grid-column: 5/9;
  width: 100%;
  max-width: 500px;
  justify-self: center;
}
.method-copy {
  grid-column: 10/13;
  align-self: center;
  padding: 0;
}
.method-copy p {
  margin-bottom: 0;
}

.capabilities {
  padding-block: var(--space-md) var(--space-xl);
}
.cap-head {
  max-width: var(--content-max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  align-items: start;
}
.cap-head .section-title {
  grid-column: 1/9;
  margin: var(--space-xl) 0 var(--space-lg);
}
.cap-head > p {
  grid-column: 10/13;
  margin: var(--space-xl) 0 var(--space-lg);
  max-width: none;
}
.cap-list {
  max-width: var(--content-max);
  margin-inline: auto;
}
.cap-list summary {
  grid-template-columns: calc((100% - var(--grid-gap) * 11) / 12) minmax(
      0,
      1fr
    ) auto;
  gap: var(--grid-gap);
  min-height: clamp(88px, 8vw, 126px);
  padding: var(--space-sm) 0;
}
.cap-list details > div {
  padding: 0 0 var(--space-md)
    calc((100% - var(--grid-gap) * 11) / 12 + var(--grid-gap));
  gap: var(--space-md);
}

.proof {
  padding-block: var(--space-lg);
  min-height: clamp(330px, 28vw, 440px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.proof > p,
.proof > .logo-cloud {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}
.logo-cloud {
  margin-top: var(--space-lg);
}
.contact {
  padding-top: var(--space-lg);
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: var(--grid-gap);
  grid-template-rows: auto 1fr auto;
}
.contact > .eyebrow {
  grid-column: 1/5;
}
.contact-link {
  grid-column: 1/13;
  align-self: center;
  margin: var(--space-lg) 0;
  max-width: var(--content-max);
}
.contact-link span:nth-child(2) {
  margin-left: calc((100% + var(--grid-gap) * 11) / 12);
}
.contact-eye {
  right: calc(var(--page-gutter) + 1vw);
  top: 38%;
}
.contact footer {
  grid-column: 1/13;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gap);
  padding-block: var(--space-md);
}
.contact footer > .footer-logo {
  grid-column: 1/4;
}
.contact footer > p {
  grid-column: 5/8;
}
.contact footer > div {
  grid-column: 9/11;
}
.contact footer > small {
  grid-column: 12;
  justify-self: end;
}

@media (min-width: 801px) and (max-width: 1100px) {
  :root {
    --page-gutter: clamp(32px, 4vw, 48px);
  }
  .hero h1 {
    font-size: 10.5vw;
  }
  .hero-bottom p {
    grid-column: 8/11;
  }
  .hero-bottom .round-link {
    grid-column: 11/13;
  }
  .statement-copy {
    grid-column: 1/11;
  }
  .statement-foot {
    grid-column: 8/13;
  }
  .service-node {
    --r: min(35vw, 350px);
  }
  .service-node:nth-child(2),
  .service-node:nth-child(5) {
    --r: min(30vw, 310px);
  }
  .method-words {
    grid-column: 1/5;
  }
  .method-visual {
    grid-column: 5/9;
  }
  .method-copy {
    grid-column: 9/13;
  }
}
@media (max-width: 800px) {
  :root {
    --page-gutter: clamp(20px, 5.6vw, 28px);
    --grid-gap: 12px;
    --space-xl: clamp(84px, 24vw, 120px);
  }
  .nav {
    left: 12px;
    right: 12px;
  }
  .hero {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto 1fr auto;
    padding-top: 120px;
    padding-bottom: var(--space-md);
  }
  .hero > .eyebrow {
    grid-column: 1/5;
  }
  .hero > h1 {
    grid-column: 1/5;
    align-self: center;
    margin: 0;
    font-size: clamp(56px, 18vw, 82px);
    max-width: 100%;
  }
  .hero-line.outline {
    margin-left: 0;
  }
  .hero-bottom {
    grid-column: 1/5;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--grid-gap);
  }
  .hero-bottom p {
    grid-column: 1/4;
  }
  .hero-bottom .round-link {
    grid-column: 4;
    justify-self: end;
  }
  .hero-eye {
    right: -12%;
    top: 23%;
  }
  .hero-orbit {
    right: -8%;
    bottom: 5vh;
  }
  .statement {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 780px;
  }
  .statement > .section-meta {
    grid-column: 1/5;
  }
  .statement-copy {
    grid-column: 1/5;
    grid-row: 2;
    align-self: start;
    padding-top: var(--space-lg);
  }
  .statement-foot {
    grid-column: 2/5;
    grid-row: 2;
    align-self: end;
    margin-bottom: var(--space-sm);
    gap: var(--space-sm);
  }
  .universe {
    min-height: 900px;
  }
  .universe-stage {
    height: 790px;
  }
  .universe-core {
    top: 31%;
  }
  .service-orbit {
    inset: auto 0 112px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
  }
  .service-node,
  .service-node.active,
  .service-node:hover {
    position: relative;
    inset: auto;
    transform: none;
    white-space: normal;
    text-align: left;
    font-size: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #333;
  }
  .service-node:before {
    display: none;
  }
  .service-node span {
    display: inline-block;
    margin-right: 8px;
  }
  .service-node.active {
    color: #fff;
    border-color: var(--orange);
  }
  .service-copy {
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: left;
    padding-right: 12%;
    font-size: 16px;
  }
  .work > .section-title {
    margin-block: var(--space-xl) var(--space-lg);
  }
  .projects {
    display: block;
  }
  .project,
  .project.project-offset {
    margin: 0 0 var(--space-lg);
  }
  .project figure,
  .project-wide figure,
  .project-wide:last-child figure {
    height: auto;
    min-height: 0;
    aspect-ratio: 4/5;
  }
  .project-wide:first-child figure {
    aspect-ratio: 4/5;
  }
  .project-info,
  .project:not(.project-wide) .project-info {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: var(--grid-gap);
  }
  .project-info span,
  .project:not(.project-wide) .project-info span {
    grid-column: 1/3;
  }
  .project-info b,
  .project:not(.project-wide) .project-info b {
    grid-column: 4;
    grid-row: 1;
  }
  .project-info h3,
  .project:not(.project-wide) .project-info h3 {
    grid-column: 1/5;
    grid-row: 2;
    margin-top: var(--space-sm);
  }
  .project-info p,
  .project:not(.project-wide) .project-info p {
    grid-column: 1/5;
    grid-row: 3;
  }
  .pattern-message {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    font-size: clamp(56px, 17vw, 100px);
    line-height: 0.82;
  }
  .pattern-message span:first-child {
    grid-column: 1/5;
  }
  .pattern-message span:last-child {
    grid-column: 1/5;
  }
  .method-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 820px;
    position: relative;
  }
  .method-words {
    grid-column: 1/5;
    align-self: start;
    margin-top: var(--space-lg);
  }
  .method-visual {
    grid-column: 2/5;
    width: 100%;
    position: relative;
    right: auto;
    top: auto;
    opacity: 0.8;
    align-self: center;
  }
  .method-copy {
    grid-column: 2/5;
    align-self: end;
    padding-bottom: var(--space-md);
    width: auto;
    justify-self: stretch;
  }
  .cap-head {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .cap-head .section-title {
    grid-column: 1/5;
    margin: var(--space-xl) 0 var(--space-md);
  }
  .cap-head > p {
    grid-column: 2/5;
    margin: 0 0 var(--space-lg);
  }
  .cap-list summary {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
    min-height: 90px;
  }
  .cap-list details > div {
    padding-left: 38px;
  }
  .proof {
    min-height: 380px;
  }
  .logo-cloud {
    margin-top: var(--space-md);
    gap: 30px;
  }
  .contact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 900px;
  }
  .contact > .eyebrow {
    grid-column: 1/5;
  }
  .contact-link {
    grid-column: 1/5;
    margin: var(--space-lg) 0;
  }
  .contact-link span:nth-child(2) {
    margin-left: 0;
  }
  .contact-eye {
    right: -10%;
    top: 37%;
  }
  .contact footer {
    grid-column: 1/5;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-content: center;
    row-gap: var(--space-md);
  }
  .contact footer > .footer-logo {
    grid-column: 1/3;
  }
  .contact footer > p {
    grid-column: 3/5;
  }
  .contact footer > div {
    grid-column: 1/3;
  }
  .contact footer > small {
    grid-column: 3/5;
    justify-self: end;
    align-self: end;
  }
}
@media (max-width: 430px) {
  .section-meta span:last-child {
    max-width: 46%;
    text-align: right;
  }
  .hero {
    min-height: 720px;
  }
  .hero-bottom p {
    font-size: 12px;
  }
  .round-link {
    width: 78px;
    height: 78px;
  }
  .statement {
    min-height: 720px;
  }
  .statement-copy {
    font-size: clamp(48px, 15.5vw, 68px);
  }
  .statement-foot {
    grid-column: 1/5;
  }
  .statement-foot p {
    font-size: 17px;
  }
  .mini-eye {
    flex-basis: auto;
    width: 72px;
  }
  .method-words {
    font-size: clamp(52px, 17vw, 72px);
  }
  .contact-link {
    font-size: clamp(49px, 14.5vw, 66px);
  }
}
@media (max-width: 350px) {
  :root {
    --page-gutter: 18px;
  }
  .nav {
    left: 8px;
    right: 8px;
  }
  .hero h1 {
    font-size: 17.2vw;
  }
  .hero-bottom p {
    grid-column: 1/4;
    font-size: 11px;
  }
  .round-link {
    width: 70px;
    height: 70px;
    font-size: 11px;
  }
  .universe-core {
    transform: translate(-50%, -50%) scale(0.88);
  }
  .service-orbit {
    gap: 10px 18px;
  }
  .service-node {
    font-size: 13px;
  }
  .statement-copy {
    font-size: 15vw;
  }
  .cap-list summary span {
    font-size: 26px;
  }
}
.statement-copy {
  font-size: clamp(56px, 7.7vw, 130px);
}
.pattern-message {
  grid-template-rows: auto auto;
  align-content: center;
  row-gap: clamp(8px, 1vw, 18px);
}
.pattern-message span:first-child {
  white-space: nowrap;
}
.pattern-message span:last-child {
  grid-column: 4/13;
  font-size: 0.6em;
  line-height: 0.86;
  white-space: nowrap;
  justify-self: end;
  align-self: start;
  text-align: right;
  transform: translateY(-0.08em);
  color: #fff;
  -webkit-text-stroke: 1.5px #000;
  text-shadow: 2px 2px 0 var(--orange);
}
@media (max-width: 800px) {
  .pattern-message span:last-child {
    grid-column: 1/5;
    font-size: 0.58em;
    white-space: normal;
    max-width: 90%;
    line-height: 0.82;
  }
}

/* Full Field: one center, one measured elliptical coordinate system. */
.universe {
  height: 190vh;
  min-height: 0;
  padding: 0 var(--page-gutter);
  overflow: clip;
  background:
    radial-gradient(
      ellipse at 50% 46%,
      #4a1900 0,
      rgba(32, 10, 0, 0.72) 22%,
      transparent 53%
    ),
    #000;
}
.universe-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  padding-block: var(--space-md);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.universe-sticky > .section-meta {
  flex: 0 0 auto;
}
.universe-stage {
  --center-y: 46%;
  position: relative;
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
}
.orbit-guide {
  position: absolute;
  left: 50%;
  top: var(--center-y);
  width: min(calc(100% - clamp(180px, 14vw, 250px)), 1500px);
  height: min(56vh, 540px);
  transform: translate(-50%, -50%);
  overflow: visible;
  pointer-events: none;
}
.orbit-guide ellipse {
  fill: none;
  stroke: rgba(255, 255, 255, 0.075);
  stroke-width: 1.2;
  stroke-dasharray: 2 7;
  vector-effect: non-scaling-stroke;
}
.universe-center {
  position: absolute;
  left: 50%;
  top: var(--center-y);
  z-index: 3;
  width: min(440px, 34vw);
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  pointer-events: none;
}
.universe-core {
  position: relative;
  inset: auto;
  transform: none;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.universe-core > span {
  position: relative;
  left: auto;
  font-size: clamp(76px, 7vw, 112px);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.11em;
  z-index: 2;
}
.core-capsule {
  position: relative;
  width: clamp(190px, 18vw, 275px);
  height: clamp(88px, 8.3vw, 126px);
  margin-left: clamp(-8px, -0.5vw, -2px);
  border: clamp(18px, 1.8vw, 27px) solid #fff;
  border-radius: 100px;
}
.core-capsule > i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(16px, 1.5vw, 23px);
  height: clamp(16px, 1.5vw, 23px);
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%) translate(var(--look-x, 0), var(--look-y, 0));
  box-shadow: 0 0 30px rgba(237, 96, 0, 0.7);
  transition: transform 0.5s var(--ease);
}
.universe-core > em {
  position: relative;
  right: auto;
  top: auto;
  align-self: flex-start;
  margin: 0 0 0 9px;
  font-size: clamp(24px, 2.5vw, 38px);
  font-style: normal;
  line-height: 1;
}
.core-kicker {
  position: static;
  width: auto;
  margin-top: 14px;
  color: #777;
  font-size: 10px;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.service-info {
  width: min(370px, 32vw);
  margin-top: clamp(20px, 2.2vh, 30px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease,
    filter 0.18s ease;
}
.service-info.is-leaving {
  opacity: 0;
  transform: translateY(-6px);
  filter: blur(3px);
}
.service-active-label {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.service-copy {
  position: static;
  width: auto;
  margin: 0;
  padding: 0;
  color: #c7c7c7;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.38;
  text-align: center;
}
.service-orbit {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: block;
  pointer-events: none;
}
.service-node,
.service-node.active,
.service-node:hover {
  position: absolute;
  left: var(--node-x, 50%);
  top: var(--node-y, 50%);
  width: max-content;
  min-width: 110px;
  padding: 0;
  border: 0;
  background: none;
  color: #606060;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  cursor: none;
  pointer-events: auto;
  transition:
    color 0.35s var(--ease),
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
}
.service-node > i {
  display: block;
  width: 11px;
  height: 11px;
  margin: 0 auto 8px;
  border-radius: 50%;
  background: #555;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.025);
  transition: 0.35s var(--ease);
}
.service-node:before {
  display: none;
  content: none;
}
.service-node > span {
  display: block;
  margin: 0 0 3px;
  color: #8a3c15;
  font-size: 9px;
  line-height: 1;
  letter-spacing: 0.18em;
}
.service-node > b {
  display: block;
  font-size: clamp(14px, 1.25vw, 19px);
  font-weight: 400;
  line-height: 1.1;
}
.service-node.active {
  z-index: 2;
  color: #fff;
  transform: translate(-50%, -50%) scale(1.12);
}
.service-node.active > i {
  background: var(--orange);
  box-shadow:
    0 0 25px rgba(237, 96, 0, 0.85),
    0 0 0 9px rgba(237, 96, 0, 0.08);
}
.service-node.active > span {
  color: var(--orange);
}
.active-ray {
  position: absolute;
  z-index: 1;
  left: var(--ray-x, 50%);
  top: var(--ray-y, 46%);
  width: var(--ray-length, 0);
  height: 1px;
  transform: rotate(var(--ray-angle, 0deg));
  transform-origin: left center;
  background: linear-gradient(
    90deg,
    rgba(237, 96, 0, 0.26),
    rgba(237, 96, 0, 0.03) 78%,
    transparent
  );
  opacity: 0.7;
  pointer-events: none;
  transition:
    width 0.5s var(--ease),
    transform 0.5s var(--ease);
}

@media (min-width: 801px) and (max-width: 1100px) {
  .universe {
    height: 175vh;
  }
  .universe-stage {
    --center-y: 45%;
  }
  .orbit-guide {
    width: calc(100% - 150px);
    height: min(50vh, 430px);
  }
  .universe-center {
    width: 390px;
  }
  .service-info {
    width: 310px;
  }
  .service-node {
    min-width: 96px;
  }
  .service-node > b {
    font-size: 14px;
  }
}
@media (max-width: 800px) {
  .universe {
    height: auto;
    min-height: 0;
    padding-inline: var(--page-gutter);
  }
  .universe-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 940px;
    padding-block: var(--space-md);
  }
  .universe-stage {
    --center-y: 30%;
    height: 860px;
    min-height: 860px;
    flex: none;
  }
  .orbit-guide,
  .active-ray {
    display: none;
  }
  .universe-center {
    top: var(--center-y);
    width: 100%;
    max-width: 360px;
  }
  .universe-core {
    transform: scale(0.82);
  }
  .core-kicker {
    margin-top: 1px;
  }
  .service-info {
    width: min(300px, 88vw);
    margin-top: 22px;
  }
  .service-copy {
    text-align: center;
    font-size: 15px;
  }
  .service-orbit {
    inset: auto 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 22px;
    pointer-events: auto;
  }
  .service-node,
  .service-node.active,
  .service-node:hover {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: 100%;
    min-width: 0;
    padding: 13px 0;
    border-bottom: 1px solid #292929;
    transform: none;
    text-align: left;
    display: grid;
    grid-template-columns: 12px 26px 1fr;
    align-items: center;
    gap: 6px;
    white-space: normal;
  }
  .service-node > i {
    width: 7px;
    height: 7px;
    margin: 0;
    box-shadow: none;
  }
  .service-node > span {
    display: block;
    margin: 0;
  }
  .service-node > b {
    font-size: 14px;
  }
  .service-node.active {
    transform: none;
    border-color: var(--orange);
  }
}
@media (max-width: 430px) {
  .universe-sticky {
    min-height: 900px;
  }
  .universe-stage {
    height: 820px;
    min-height: 820px;
  }
  .universe-center {
    top: 29%;
  }
  .universe-core {
    transform: scale(0.72);
  }
  .core-kicker {
    margin-top: -6px;
  }
  .service-info {
    margin-top: 18px;
  }
}

/* Hero refinement: a 12-column editorial composition with one right-side visual system. */
.hero {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto minmax(0, 1fr) auto;
  column-gap: var(--grid-gap);
  padding-top: clamp(126px, 13vh, 168px);
  padding-bottom: var(--space-md);
}
.hero > .eyebrow {
  grid-column: 1/7;
  grid-row: 1;
  align-self: start;
  margin: 0;
}
.hero > h1 {
  grid-column: 1/10;
  grid-row: 2;
  align-self: center;
  z-index: 2;
  max-width: min(100%, 1180px);
  padding-bottom: clamp(20px, 4vh, 58px);
  font-size: clamp(74px, 10.2vw, 184px);
  line-height: 0.77;
}
.hero-line.outline {
  margin-left: clamp(24px, 4.6vw, 88px);
  font-size: 0.87em;
  letter-spacing: -0.096em;
  -webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.9);
}
.hero-visual-system {
  grid-column: 8/13;
  grid-row: 2/4;
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 0;
}
.hero-visual-system .hero-eye {
  position: absolute;
  inset: auto;
  top: clamp(40px, 8vh, 110px);
  left: clamp(-36px, -2vw, -8px);
  width: min(35vw, 540px);
  height: min(14.5vw, 220px);
  border-width: clamp(16px, 2vw, 32px);
  border-radius: 14vw;
  transform: rotate(-10deg);
  opacity: 0.28;
}
.hero-visual-system .hero-eye small {
  right: 0;
  top: calc(-1 * clamp(26px, 3vw, 45px));
  font-size: 11px;
}
.hero-visual-system .hero-orbit {
  position: absolute;
  inset: auto;
  left: clamp(-18px, -1vw, 4px);
  top: clamp(220px, 30vh, 330px);
  width: clamp(340px, 31vw, 500px);
  height: clamp(340px, 31vw, 500px);
}
.hero-visual-system .orbit-ring {
  border-color: rgba(255, 255, 255, 0.24);
}
.hero-visual-system .orbit-dot {
  width: 18px;
  height: 18px;
  left: calc(50% - 9px);
  top: -9px;
  transform-origin: 9px calc(12.5vw + 9px);
}
.hero-visual-system .hero-bottom {
  position: absolute;
  inset: auto;
  left: clamp(-4px, -0.3vw, 0px);
  right: 0;
  bottom: clamp(116px, 17vh, 164px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 2vw, 34px);
  align-items: end;
  z-index: 3;
}
.hero-visual-system .hero-bottom p {
  grid-column: auto;
  max-width: 310px;
  margin: 0;
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.32;
}
.hero-visual-system .round-link {
  grid-column: auto;
  position: relative;
  right: 18px;
  bottom: 10px;
  justify-self: end;
  width: clamp(86px, 8vw, 112px);
  height: clamp(86px, 8vw, 112px);
}
.hero > .scroll-cue {
  position: static;
  grid-column: 1/5;
  grid-row: 3;
  align-self: end;
  display: flex;
  margin: 0;
  color: #7d7d7d;
}

@media (min-width: 801px) and (max-width: 1100px) {
  .hero {
    padding-top: clamp(118px, 13vh, 138px);
  }
  .hero > h1 {
    grid-column: 1/11;
    font-size: clamp(72px, 9.7vw, 112px);
    padding-bottom: 20px;
  }
  .hero-line.outline {
    margin-left: clamp(18px, 3.5vw, 46px);
    font-size: 0.84em;
  }
  .hero-visual-system {
    grid-column: 8/13;
  }
  .hero-visual-system .hero-eye {
    top: clamp(58px, 11vh, 100px);
    left: -44px;
    width: min(39vw, 420px);
    height: min(16vw, 164px);
  }
  .hero-visual-system .hero-orbit {
    left: -18px;
    top: clamp(225px, 37vh, 292px);
    width: clamp(230px, 27vw, 310px);
    height: clamp(230px, 27vw, 310px);
  }
  .hero-visual-system .hero-bottom {
    left: -12px;
    bottom: 96px;
  }
  .hero-visual-system .hero-bottom p {
    max-width: 225px;
    font-size: 14px;
  }
  .hero-visual-system .round-link {
    right: 8px;
    bottom: 4px;
    width: 84px;
    height: 84px;
  }
}
@media (max-width: 800px) {
  .hero {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding-top: 112px;
    padding-bottom: var(--space-sm);
    min-height: 720px;
  }
  .hero > .eyebrow {
    grid-column: 1/5;
    grid-row: 1;
    font-size: 9px;
  }
  .hero > h1 {
    grid-column: 1/5;
    grid-row: 2;
    align-self: center;
    max-width: 94%;
    padding: 0 0 7vh;
    font-size: clamp(56px, 17.2vw, 80px);
    line-height: 0.79;
  }
  .hero-line.outline {
    max-width: 88%;
    margin-left: 0;
    font-size: 0.87em;
    letter-spacing: -0.1em;
  }
  .hero-visual-system {
    grid-column: 1/5;
    grid-row: 2/4;
    min-height: 0;
  }
  .hero-visual-system .hero-eye {
    top: 18%;
    left: 54%;
    width: 64vw;
    height: 28vw;
    border-width: clamp(13px, 4vw, 18px);
    opacity: 0.22;
    transform: rotate(-10deg);
  }
  .hero-visual-system .hero-eye small {
    right: 0;
    top: -26px;
    font-size: 9px;
  }
  .hero-visual-system .hero-orbit {
    left: 58%;
    top: auto;
    bottom: clamp(42px, 8vh, 74px);
    width: 50vw;
    height: 50vw;
  }
  .hero-visual-system .orbit-dot {
    width: 14px;
    height: 14px;
    left: calc(50% - 7px);
    top: -7px;
    transform-origin: 7px calc(25vw + 7px);
  }
  .hero-visual-system .hero-bottom {
    left: 0;
    right: 0;
    bottom: clamp(42px, 6vh, 58px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }
  .hero-visual-system .hero-bottom p {
    max-width: 215px;
    font-size: 12px;
    line-height: 1.3;
  }
  .hero-visual-system .round-link {
    width: 78px;
    height: 78px;
    font-size: 11px;
  }
  .hero > .scroll-cue {
    grid-column: 1/4;
    grid-row: 3;
    display: flex;
    font-size: 8px;
    gap: 10px;
  }
  .hero > .scroll-cue i {
    width: 38px;
  }
}
@media (max-width: 350px) {
  .hero {
    min-height: 700px;
    padding-top: 104px;
  }
  .hero > h1 {
    font-size: 16.6vw;
    padding-bottom: 8vh;
  }
  .hero-line.outline {
    max-width: 92%;
    font-size: 0.84em;
  }
  .hero-visual-system .hero-eye {
    left: 56%;
    width: 66vw;
    height: 29vw;
  }
  .hero-visual-system .hero-bottom p {
    max-width: 188px;
    font-size: 11px;
  }
  .hero-visual-system .round-link {
    width: 68px;
    height: 68px;
    font-size: 10px;
  }
}

/* How we think: an evolving story of five editorial posters, distinct from the orbital system. */
.method {
  height: 500vh;
  min-height: 0;
  padding: 0 var(--page-gutter);
  overflow: clip;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(88, 29, 0, 0.2), transparent 48%),
    #000;
}
.method-grid {
  display: none;
}
.method-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  padding-block: var(--space-md);
  overflow: hidden;
}
.method-sticky > .section-meta {
  position: relative;
  z-index: 10;
}
.method-progress {
  position: absolute;
  z-index: 11;
  right: 0;
  bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #777;
  font-size: 10px;
  letter-spacing: 0.15em;
}
.method-progress-current {
  color: var(--orange);
}
.method-progress i {
  display: block;
  width: 42px;
  height: 1px;
  background: #333;
}
.method-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.method-scene {
  --scene-visibility: 0;
  --scene-drift: 1;
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, 1fr);
  column-gap: var(--grid-gap);
  opacity: var(--scene-visibility);
  will-change: opacity, transform;
}
.method-scene h2 {
  margin: 0;
  font-size: clamp(110px, 18.5vw, 345px);
  font-weight: 700;
  line-height: 0.71;
  letter-spacing: -0.115em;
  z-index: 2;
  will-change: transform;
}
.method-index {
  z-index: 3;
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 0.18em;
  align-self: end;
}
.method-scene p {
  z-index: 4;
  margin: 0;
  color: #d0d0d0;
  font-size: clamp(16px, 1.4vw, 23px);
  line-height: 1.22;
  align-self: end;
}
.scene-eye {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: min(39vw, 590px);
  height: min(16vw, 250px);
  border: clamp(18px, 2.2vw, 37px) solid #fff;
  border-radius: 50%;
  opacity: calc(0.28 + var(--scene-visibility) * 0.35);
  will-change: transform;
}
.scene-eye > i {
  position: absolute;
  top: 50%;
  width: clamp(18px, 2vw, 34px);
  height: clamp(18px, 2vw, 34px);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 40px rgba(237, 96, 0, 0.75);
  transform: translateY(-50%);
}
.scene-eye > b {
  position: absolute;
  display: block;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(237, 96, 0, 0.65);
}
.scene-see h2 {
  grid-column: 1/9;
  grid-row: 3/6;
  align-self: center;
  transform: translateX(calc(var(--scene-drift) * -8vw))
    scaleX(calc(0.94 + var(--scene-visibility) * 0.06));
}
.scene-see .method-index {
  grid-column: 1/3;
  grid-row: 7;
}
.scene-see p {
  grid-column: 10/13;
  grid-row: 6/8;
}
.see-eye {
  grid-column: 4/10;
  grid-row: 4/7;
  transform: scaleX(calc(1.25 - var(--scene-visibility) * 0.25))
    translateX(calc(var(--scene-drift) * 6vw));
}
.see-eye i:first-child {
  left: 17%;
}
.see-eye i:nth-child(2) {
  right: 17%;
}
.see-eye b {
  width: 1px;
  height: clamp(80px, 11vw, 175px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0;
  background: rgba(237, 96, 0, 0.6);
}
.scene-think h2 {
  grid-column: 3/11;
  grid-row: 3/6;
  align-self: center;
  text-align: center;
  transform: scale(calc(0.78 + var(--scene-visibility) * 0.22))
    translateY(calc(var(--scene-drift) * 7vh));
}
.think-i {
  position: relative;
  display: inline-block;
  width: 0.235em;
  height: 0.74em;
  vertical-align: baseline;
}
.think-i b {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0.105em;
  height: 0.56em;
  background: #fff;
  transform: translateX(-50%);
}
.think-i i {
  position: absolute;
  left: 50%;
  top: 0.025em;
  width: 0.145em;
  height: 0.145em;
  border-radius: 50%;
  background: #ed6000;
  transform: translateX(-50%);
  box-shadow: 0 0 0.16em rgba(237, 96, 0, 0.25);
}
.scene-think .method-index {
  grid-column: 1/3;
  grid-row: 3;
}
.scene-think p {
  grid-column: 1/4;
  grid-row: 6/8;
}
.think-eye {
  grid-column: 5/9;
  grid-row: 4/6;
  width: min(25vw, 390px);
  height: min(10vw, 160px);
  transform: scale(calc(0.65 + var(--scene-visibility) * 0.35));
}
.think-eye i:first-child {
  left: 43%;
}
.think-eye i:nth-child(2) {
  right: 43%;
}
.think-eye b {
  width: clamp(75px, 8vw, 125px);
  height: clamp(75px, 8vw, 125px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}
.scene-create h2 {
  grid-column: 1/13;
  grid-row: 3/7;
  align-self: center;
  color: transparent;
  -webkit-text-stroke: 1.5px #fff;
  transform: scale(calc(0.78 + var(--scene-visibility) * 0.22))
    translateX(calc(var(--scene-drift) * -4vw));
}
.scene-create .method-index {
  grid-column: 1/3;
  grid-row: 7;
}
.scene-create p {
  grid-column: 9/13;
  grid-row: 7/9;
}
.create-eye {
  grid-column: 4/10;
  grid-row: 4/7;
  border-color: var(--orange);
  border-radius: 20% 60% 28% 55%;
  transform: rotate(calc(var(--scene-drift) * 14deg))
    scale(calc(0.75 + var(--scene-visibility) * 0.25));
}
.create-eye i:first-child {
  left: 28%;
  background: #fff;
}
.create-eye i:nth-child(2) {
  right: 28%;
  background: #fff;
}
.create-eye b:nth-of-type(1) {
  width: 40%;
  height: 150%;
  left: 8%;
  top: -25%;
  opacity: 0.4;
}
.create-eye b:nth-of-type(2) {
  width: 24%;
  height: 94%;
  right: 3%;
  top: 10%;
  opacity: 0.75;
}
.scene-move h2 {
  grid-column: 1/13;
  grid-row: 4/6;
  align-self: center;
  white-space: nowrap;
  font-size: clamp(120px, 22vw, 410px);
  transform: translateX(calc(var(--scene-drift) * -18vw));
  letter-spacing: -0.14em;
}
.scene-move .method-index {
  grid-column: 10/13;
  grid-row: 3;
  justify-self: end;
}
.scene-move p {
  grid-column: 2/5;
  grid-row: 7/9;
}
.move-eye {
  grid-column: 6/12;
  grid-row: 5/7;
  width: min(31vw, 470px);
  height: min(9vw, 138px);
  border-color: var(--orange);
  transform: translateX(calc(var(--scene-drift) * 18vw)) rotate(-8deg);
}
.move-eye:before,
.move-eye:after {
  content: "";
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange));
  right: 100%;
  top: 36%;
  width: 28vw;
}
.move-eye:after {
  top: 65%;
  width: 16vw;
  opacity: 0.45;
}
.move-eye i:first-child {
  left: 22%;
}
.move-eye i:nth-child(2) {
  right: 22%;
}
.move-eye b {
  width: 19px;
  height: 19px;
  right: -11%;
  top: 50%;
  transform: translateY(-50%);
}
.scene-grow h2 {
  grid-column: 1/13;
  grid-row: 3/7;
  align-self: center;
  text-align: center;
  font-size: clamp(120px, 22vw, 415px);
  transform: scale(calc(0.74 + var(--scene-visibility) * 0.26));
}
.scene-grow .method-index {
  grid-column: 1/3;
  grid-row: 7;
}
.scene-grow p {
  grid-column: 8/12;
  grid-row: 7/9;
}
.grow-eye {
  grid-column: 3/11;
  grid-row: 3/8;
  width: min(57vw, 880px);
  height: min(23vw, 350px);
  opacity: calc(0.08 + var(--scene-visibility) * 0.31);
  transform: scale(calc(0.6 + var(--scene-visibility) * 0.4));
}
.grow-eye i:first-child {
  left: 16%;
}
.grow-eye i:nth-child(2) {
  right: 16%;
}
.grow-eye b {
  width: clamp(50px, 6vw, 100px);
  height: clamp(50px, 6vw, 100px);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.35;
}
@media (max-width: 800px) {
  .method {
    height: auto;
    padding: var(--space-md) var(--page-gutter) var(--space-lg);
    overflow: visible;
    background: #000;
  }
  .method-sticky {
    position: relative;
    height: auto;
    padding: 0;
    overflow: visible;
  }
  .method-sticky > .section-meta {
    margin-bottom: var(--space-lg);
  }
  .method-progress {
    display: none;
  }
  .method-stage {
    position: relative;
    inset: auto;
    display: grid;
    gap: clamp(74px, 16vw, 120px);
  }
  .method-scene {
    position: relative;
    inset: auto;
    min-height: 72vh;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto 1fr auto;
    column-gap: var(--grid-gap);
    opacity: 1;
    transform: none;
  }
  .method-scene h2 {
    grid-column: 1/5;
    grid-row: 1;
    font-size: clamp(78px, 24vw, 120px);
    line-height: 0.72;
    transform: none !important;
  }
  .method-index {
    grid-column: 1/3 !important;
    grid-row: 1 !important;
    align-self: start;
    margin-top: calc(clamp(78px, 24vw, 120px) * 0.86);
  }
  .method-scene p {
    grid-column: 1/5 !important;
    grid-row: 3 !important;
    max-width: 300px;
    align-self: end;
    font-size: 18px;
  }
  .scene-eye {
    grid-column: 1/5 !important;
    grid-row: 2 !important;
    width: min(78vw, 440px);
    height: min(32vw, 180px);
    align-self: center;
    justify-self: center;
    transform: none !important;
    opacity: 0.42;
  }
  .scene-eye > i {
    width: 16px;
    height: 16px;
  }
  .scene-eye b {
    transform: translate(-50%, -50%) !important;
  }
  .scene-create h2 {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
  }
  .scene-move h2 {
    white-space: normal;
    font-size: clamp(78px, 24vw, 120px);
    letter-spacing: -0.12em;
  }
  .scene-move .method-index {
    grid-column: 3/5 !important;
    justify-self: end;
  }
  .scene-move p {
    grid-column: 1/4 !important;
  }
  .scene-move .scene-eye {
    width: 74vw;
  }
  .move-eye:before,
  .move-eye:after {
    width: 34vw;
  }
  .scene-grow {
    min-height: 78vh;
  }
  .scene-grow .scene-eye {
    width: 92vw;
    height: 38vw;
  }
  .scene-grow p {
    grid-column: 2/5 !important;
  }
  .scene-grow h2 {
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  .method {
    height: auto;
    padding-block: var(--space-md);
  }
  .method-sticky {
    position: relative;
    height: auto;
    overflow: visible;
  }
  .method-progress {
    display: none;
  }
  .method-stage {
    position: relative;
    display: grid;
    gap: 80px;
    margin-top: var(--space-lg);
  }
  .method-scene {
    position: relative;
    min-height: 72vh;
    opacity: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: auto 1fr auto;
  }
  .method-scene h2 {
    transform: none !important;
  }
  .scene-eye {
    transform: none !important;
  }
}

/* Final CTA: one readable poster composition; the eye is its secondary character. */
.contact {
  min-height: max(860px, 100svh);
  padding: clamp(104px, 13vh, 156px) var(--page-gutter) 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto minmax(510px, 1fr) auto;
  column-gap: var(--grid-gap);
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 86% 58%,
      rgba(237, 96, 0, 0.09),
      transparent 30%
    ),
    #000;
}
.contact > .eyebrow {
  grid-column: 1/6;
  grid-row: 1;
  align-self: start;
  margin: 0;
  color: #aaa;
}
.contact-link {
  grid-column: 1/9;
  grid-row: 2;
  align-self: center;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto;
  align-content: center;
  row-gap: clamp(3px, 0.55vw, 9px);
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(74px, 9.25vw, 176px);
  font-weight: 700;
  line-height: 0.77;
  letter-spacing: -0.092em;
  cursor: none;
}
.contact-link > span {
  display: block;
  white-space: nowrap;
}
.contact-link > span:nth-child(1) {
  grid-column: 1/9;
}
.contact-link > span:nth-child(2) {
  grid-column: 2/9;
  margin: 0;
  color: transparent;
  -webkit-text-stroke: clamp(1.25px, 0.11vw, 2px) rgba(255, 255, 255, 0.94);
  letter-spacing: -0.097em;
}
.contact-link > span:nth-child(3) {
  grid-column: 1/9;
}
.contact-link i {
  color: var(--orange);
  font-style: normal;
  margin-left: 0.02em;
}
.contact-hint {
  grid-column: 1/4;
  margin-top: clamp(30px, 5vh, 62px);
  color: #aaa;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.contact-hint b {
  margin-left: 8px;
  color: var(--orange);
  font-size: 13px;
}
.contact-eye {
  position: relative;
  right: auto;
  top: auto;
  grid-column: 8/13;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  z-index: 1;
  width: min(31vw, 510px);
  height: min(13vw, 214px);
  border: clamp(17px, 2.25vw, 34px) solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  opacity: 0.48;
  transform: rotate(7deg);
  transition:
    opacity 0.45s var(--ease),
    border-color 0.45s var(--ease),
    filter 0.45s var(--ease);
}
.contact-eye i {
  left: 50%;
  top: 50%;
  width: clamp(20px, 2vw, 32px);
  height: clamp(20px, 2vw, 32px);
  background: var(--orange);
  box-shadow: 0 0 30px rgba(237, 96, 0, 0.72);
  transition: box-shadow 0.45s var(--ease);
}
.contact:hover .contact-eye {
  opacity: 0.67;
  border-color: rgba(255, 255, 255, 0.7);
  filter: drop-shadow(0 0 18px rgba(237, 96, 0, 0.12));
}
.contact:hover .contact-eye i {
  box-shadow: 0 0 42px rgba(237, 96, 0, 0.9);
}
.cursor.write {
  width: 58px;
  height: 58px;
  margin: -29px;
  background: var(--orange);
  mix-blend-mode: normal;
}
.cursor.write span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000;
}
.contact footer {
  grid-column: 1/13;
  grid-row: 3;
  align-self: end;
  position: relative;
  z-index: 4;
}
@media (min-width: 801px) and (max-width: 1100px) {
  .contact {
    min-height: 900px;
    grid-template-rows: auto minmax(520px, 1fr) auto;
  }
  .contact-link {
    grid-column: 1/10;
    font-size: clamp(72px, 9.5vw, 112px);
  }
  .contact-eye {
    grid-column: 9/13;
    width: 32vw;
    height: 13.5vw;
    opacity: 0.36;
  }
  .contact-link > span:nth-child(2) {
    grid-column: 2/10;
  }
  .contact-hint {
    margin-top: 34px;
  }
}
@media (max-width: 800px) {
  .contact {
    min-height: 900px;
    padding: 110px var(--page-gutter) 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto auto minmax(245px, 1fr) auto;
    column-gap: var(--grid-gap);
    overflow: hidden;
  }
  .contact > .eyebrow {
    grid-column: 1/5;
    grid-row: 1;
    font-size: 9px;
  }
  .contact-link {
    grid-column: 1/5;
    grid-row: 2/4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto auto auto 1fr auto;
    align-self: stretch;
    font-size: clamp(52px, 16.2vw, 76px);
    line-height: 0.78;
    row-gap: 4px;
    cursor: pointer;
  }
  .contact-link > span:nth-child(1),
  .contact-link > span:nth-child(3) {
    grid-column: 1/5;
  }
  .contact-link > span:nth-child(2) {
    grid-column: 1/5;
    margin: 0;
    -webkit-text-stroke: 1.1px rgba(255, 255, 255, 0.94);
    letter-spacing: -0.1em;
  }
  .contact-hint {
    grid-column: 1/5;
    grid-row: 5;
    align-self: end;
    margin: 0 0 30px;
    color: #fff;
    font-size: 10px;
  }
  .contact-eye {
    grid-column: 2/5;
    grid-row: 3;
    align-self: center;
    justify-self: end;
    width: 72vw;
    height: 30vw;
    max-width: 340px;
    max-height: 144px;
    border-width: clamp(13px, 3.7vw, 18px);
    opacity: 0.38;
    transform: rotate(7deg);
  }
  .contact footer {
    grid-column: 1/5;
    grid-row: 4;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-self: end;
  }
  .contact footer > .footer-logo {
    grid-column: 1/3;
  }
  .contact footer > p {
    grid-column: 3/5;
  }
  .contact footer > div {
    grid-column: 1/3;
  }
  .contact footer > small {
    grid-column: 3/5;
    justify-self: end;
    align-self: end;
  }
}
@media (max-width: 350px) {
  .contact {
    min-height: 850px;
    padding-top: 102px;
  }
  .contact-link {
    font-size: 15.6vw;
  }
  .contact-eye {
    width: 74vw;
    height: 31vw;
  }
  .contact-hint {
    font-size: 9px;
  }
}
