:root {
  --contact-border: rgba(255, 255, 255, 0.08);
  --contact-border-soft: rgba(255, 255, 255, 0.045);
  --contact-surface: rgba(255, 255, 255, 0.03);
  --contact-surface-strong: rgba(255, 255, 255, 0.055);
  --contact-logo-scale: 1;
  --contact-logo-offset-x: 15px;
  --contact-logo-offset-y: 50px;
  --contact-logo-animation-duration: 18s;
}

body.contact-page {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.035), transparent 36%),
    #080808;
  color: #f5f5f2;
  overflow-x: hidden;
}

.contact-shell {
  min-height: 100vh;
  opacity: 1;
  transition: opacity 320ms ease;
}

body.contact-page.is-poster-mode {
  background: #ffffff;
  --contact-poster-gap: 20px;
  --contact-poster-footer-height: 54px;
  min-height: 100vh;
  padding-top: var(--contact-poster-gap);
  padding-bottom: var(--contact-poster-gap);
  box-sizing: border-box;
}

body.contact-page.is-poster-mode .contact-shell {
  width: min(75vw, 2000px);
  max-width: calc(100vw - 56px);
  height: calc(100vh - (var(--contact-poster-gap) * 2) - var(--contact-poster-footer-height));
  min-height: calc(100vh - (var(--contact-poster-gap) * 2) - var(--contact-poster-footer-height));
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.035), transparent 36%),
    #080808;
  box-shadow: 0 28px 80px rgba(18, 14, 8, 0.18);
  border: 1px solid rgba(18, 14, 8, 0.08);
}

body.contact-page.is-poster-mode .contact-topbar {
  position: sticky;
  top: 0;
  inset: auto;
  width: 100%;
  z-index: 24;
  flex: 0 0 auto;
}

body.contact-page.is-poster-mode .contact-topnav {
  display: flex;
}

body.contact-page.is-poster-mode.has-collapsed-nav .contact-topnav {
  position: static;
  display: flex;
  gap: 1.2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.contact-page.is-poster-mode.has-collapsed-nav .contact-topnav a {
  width: auto;
  padding: 0;
  border-top: 0;
  text-align: left;
}

body.contact-page.is-poster-mode .topbar-menu-toggle {
  display: none;
}

body.contact-page.is-poster-mode .contact-hero {
  flex: 1 1 auto;
  display: grid;
  align-items: center;
  min-height: calc(100vh - (var(--contact-poster-gap) * 2) - var(--contact-poster-footer-height) - var(--topbar-height));
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

body.contact-page.is-poster-mode .contact-stage {
  position: relative;
  left: auto;
  top: auto;
  width: min(1320px, calc(100% - 3rem));
  --contact-panel-width: min(620px, calc((100% - var(--contact-panel-gap)) / 2));
  margin: 0 auto;
  transform: none;
}

body.contact-page.is-poster-mode .site-legal-footer-contact {
  width: min(75vw, 2000px);
  max-width: calc(100vw - 56px);
  min-height: var(--contact-poster-footer-height);
  margin: 0 auto 0;
  padding-left: 24px;
  padding-right: 24px;
  padding-top: 12px;
  padding-bottom: 18px;
  box-sizing: border-box;
  background: #080808;
  border: 1px solid rgba(18, 14, 8, 0.08);
  border-top: 0;
  box-shadow: 0 28px 80px rgba(18, 14, 8, 0.18);
}

body.contact-page.is-loading .contact-shell {
  opacity: 0;
}

.contact-topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.78), rgba(8, 8, 8, 0));
}

.contact-topnav a[aria-current="page"] {
  opacity: 1;
}

.contact-hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--topbar-height) + 2rem) clamp(1.25rem, 3vw, 2.5rem) 2.5rem;
  overflow: hidden;
  isolation: isolate;
}

.contact-noise {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 34%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 56% 72%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.2) 0 1px, transparent 1px),
    radial-gradient(circle at 12% 82%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px);
  background-size: 280px 280px, 320px 320px, 360px 360px, 300px 300px, 420px 420px;
  pointer-events: none;
}

.contact-orbit,
.contact-line {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 900ms ease,
    transform 1500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-orbit {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

.contact-orbit-a {
  width: min(70vw, 900px);
  height: min(70vw, 900px);
  left: 12%;
  top: 19%;
  transform: scale(0.94) rotate(-8deg);
}

.contact-orbit-b {
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  right: 14%;
  top: 27%;
  transform: scale(0.92) rotate(10deg);
}

.contact-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.contact-line-a {
  width: 58vw;
  left: 4%;
  top: 61%;
  transform: rotate(14deg) scaleX(0.92);
}

.contact-line-b {
  width: 46vw;
  right: -4%;
  top: 34%;
  transform: rotate(-23deg) scaleX(0.9);
}

.contact-line-c {
  width: 38vw;
  right: 12%;
  bottom: 26%;
  transform: rotate(8deg) scaleX(0.92);
}

.contact-background-logo {
  position: absolute;
  left: var(--contact-logo-offset-x);
  top: var(--contact-logo-offset-y);
  z-index: 0;
  width: clamp(
    calc(702px * var(--contact-logo-scale)),
    calc(66.6vw * var(--contact-logo-scale)),
    calc(1350px * var(--contact-logo-scale))
  );
  aspect-ratio: 1357 / 350;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 880ms ease,
    transform 1450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-background-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.94;
}

.contact-background-logo.is-animated img {
  animation: contact-background-logo-drift var(--contact-logo-animation-duration) ease-in-out infinite alternate;
  transform-origin: 50% 50%;
}

.contact-float {
  position: absolute;
  margin: 0;
  overflow: visible;
  opacity: 0;
  transform:
    translate3d(var(--enter-x, 0), var(--enter-y, 0), 0)
    scale(var(--enter-scale, 3.4))
    rotate(var(--tilt, 0deg));
  transition:
    opacity 720ms ease,
    transform 1450ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
  transform-origin: 50% 50%;
  contain: layout style;
  backface-visibility: hidden;
}

.contact-float-shell,
.contact-float-drift {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-float-shell {
  --float-pointer-x: 0px;
  --float-pointer-y: 0px;
  transform: translate3d(var(--float-pointer-x), var(--float-pointer-y), 0);
  will-change: transform;
  backface-visibility: hidden;
}

.contact-float-drift {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backface-visibility: hidden;
}

.contact-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(0.9) contrast(1.02);
  transform: translateZ(0);
  transition: filter 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-float.is-hovered img,
.contact-float:hover img {
  filter: grayscale(0) saturate(1) contrast(1.02);
}

.contact-float-a {
  --enter-x: -36px;
  --enter-y: min(1180px, 115svh);
  --enter-scale: 5.8;
  --tilt: -2deg;
  --drift-name: contact-drift-a;
  --drift-duration: 9.2s;
  --drift-delay: 2.2s;
  width: clamp(260px, 23vw, 420px);
  aspect-ratio: 0.82;
  left: 7%;
  bottom: 12%;
}

.contact-float-b {
  --enter-x: -20px;
  --enter-y: min(1080px, 108svh);
  --enter-scale: 5.2;
  --tilt: 1deg;
  --drift-name: contact-drift-b;
  --drift-duration: 8.4s;
  --drift-delay: 2.5s;
  width: clamp(210px, 18vw, 320px);
  aspect-ratio: 0.74;
  left: 19%;
  top: 24%;
}

.contact-float-c {
  --enter-x: 12px;
  --enter-y: min(1120px, 111svh);
  --enter-scale: 5.4;
  --tilt: -1deg;
  --drift-name: contact-drift-c;
  --drift-duration: 10.1s;
  --drift-delay: 2.1s;
  width: clamp(250px, 22vw, 390px);
  aspect-ratio: 0.9;
  left: 41%;
  top: 13%;
}

.contact-float-d {
  --enter-x: 28px;
  --enter-y: min(1240px, 120svh);
  --enter-scale: 6.1;
  --tilt: -1.5deg;
  --drift-name: contact-drift-d;
  --drift-duration: 9.6s;
  --drift-delay: 2.4s;
  width: clamp(310px, 28vw, 500px);
  aspect-ratio: 0.82;
  right: 13%;
  top: 28%;
}

.contact-float-e {
  --enter-x: 8px;
  --enter-y: min(1100px, 110svh);
  --enter-scale: 5.1;
  --tilt: 1.2deg;
  --drift-name: contact-drift-e;
  --drift-duration: 8.1s;
  --drift-delay: 2.3s;
  width: clamp(220px, 19vw, 340px);
  aspect-ratio: 0.84;
  left: 37%;
  bottom: 15%;
}

.contact-float-f {
  --enter-x: 16px;
  --enter-y: min(1160px, 114svh);
  --enter-scale: 5.6;
  --tilt: -0.8deg;
  --drift-name: contact-drift-f;
  --drift-duration: 9.1s;
  --drift-delay: 2.6s;
  width: clamp(250px, 21vw, 360px);
  aspect-ratio: 1.05;
  right: 14%;
  bottom: 11%;
}

.contact-float-g {
  --enter-x: -18px;
  --enter-y: min(1080px, 108svh);
  --enter-scale: 5.2;
  --tilt: 2.2deg;
  --drift-name: contact-drift-a;
  --drift-duration: 9.2s;
  --drift-delay: 2.2s;
  width: clamp(190px, 16vw, 280px);
  aspect-ratio: 0.72;
  left: -5%;
  top: 8%;
}

.contact-float-h {
  --enter-x: 18px;
  --enter-y: min(1190px, 116svh);
  --enter-scale: 5.8;
  --tilt: -2.1deg;
  --drift-name: contact-drift-b;
  --drift-duration: 8.4s;
  --drift-delay: 2.5s;
  width: clamp(230px, 20vw, 340px);
  aspect-ratio: 0.82;
  right: -7%;
  top: 12%;
}

.contact-float-i {
  --enter-x: -10px;
  --enter-y: min(1040px, 104svh);
  --enter-scale: 4.9;
  --tilt: 1.4deg;
  --drift-name: contact-drift-c;
  --drift-duration: 10.1s;
  --drift-delay: 2.1s;
  width: clamp(170px, 14vw, 250px);
  aspect-ratio: 0.82;
  left: 28%;
  top: -4%;
}

.contact-float-j {
  --enter-x: 12px;
  --enter-y: min(1100px, 109svh);
  --enter-scale: 5.3;
  --tilt: -1.3deg;
  --drift-name: contact-drift-d;
  --drift-duration: 9.6s;
  --drift-delay: 2.4s;
  width: clamp(185px, 15vw, 270px);
  aspect-ratio: 0.84;
  right: 28%;
  bottom: -6%;
}

.contact-float-k {
  --enter-x: -14px;
  --enter-y: min(1170px, 115svh);
  --enter-scale: 5.7;
  --tilt: 1.1deg;
  --drift-name: contact-drift-e;
  --drift-duration: 8.1s;
  --drift-delay: 2.3s;
  width: clamp(200px, 17vw, 300px);
  aspect-ratio: 0.92;
  left: 57%;
  top: 4%;
}

.contact-float-l {
  --enter-x: 20px;
  --enter-y: min(1130px, 111svh);
  --enter-scale: 5.1;
  --tilt: -2.4deg;
  --drift-name: contact-drift-f;
  --drift-duration: 9.1s;
  --drift-delay: 2.6s;
  width: clamp(180px, 15vw, 260px);
  aspect-ratio: 1.02;
  left: -4%;
  bottom: 23%;
}

.contact-stage {
  --contact-panel-width: min(620px, calc((100vw - 3rem - var(--contact-panel-gap)) / 2));
  --contact-panel-gap: 30px;
  --contact-panel-height: 840px;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(1310px, calc(100vw - 3rem));
  min-height: var(--contact-panel-height);
  transform: translate(-50%, -50%);
  isolation: isolate;
  opacity: 0;
  transition: opacity 640ms ease;
}

.contact-stage::before {
  content: none;
}

.contact-stage-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 760ms ease,
    transform 1180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-stage-panel-intro {
  left: 50%;
  width: var(--contact-panel-width);
  min-height: var(--contact-panel-height);
  padding: calc(clamp(2rem, 3.4vw, 2.9rem) + 20px) clamp(1.9rem, 3.2vw, 2.8rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  transform: translate3d(-50%, 0, 0);
  isolation: isolate;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(34px) saturate(1.05);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.contact-stage-panel-form {
  left: 50%;
  width: var(--contact-panel-width);
  min-height: var(--contact-panel-height);
  padding: calc(clamp(2rem, 3.4vw, 2.9rem) + 20px) clamp(1.9rem, 3.2vw, 2.8rem);
  justify-items: stretch;
  transform: translate3d(calc((var(--contact-panel-gap) / 2) + 100% + 160px), 0, 0);
  isolation: isolate;
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.62), rgba(8, 8, 8, 0.46));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(34px) saturate(1.05);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

body.contact-page.is-contact-stage-intro .contact-stage-panel-intro {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

body.contact-page.is-contact-stage-form .contact-stage-panel-intro {
  opacity: 1;
  left: 50%;
  transform: translate3d(calc(-100% - (var(--contact-panel-gap) / 2)), 0, 0);
}

body.contact-page.is-contact-stage-form .contact-stage-panel-form {
  opacity: 1;
  transform: translate3d(calc(var(--contact-panel-gap) / 2), 0, 0);
  pointer-events: auto;
}

.contact-kicker-mark {
  margin: 0;
  font-size: 1.8rem;
  line-height: 0.84;
  opacity: 0.96;
}

.contact-intro-copy {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0;
  width: 100%;
  flex: 1 1 auto;
}

.contact-stage-panel-intro h1 {
  margin: 0;
  max-width: 8.2ch;
  font-size: clamp(3.3rem, 6.35vw, 5.7rem);
  line-height: 0.93;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.contact-hero-copy {
  width: min(29ch, 100%);
  margin: 1.7rem auto 0;
  color: rgba(245, 245, 242, 0.7);
  font-size: 1.02rem;
  line-height: 1.82;
  letter-spacing: -0.01em;
}

.contact-stage-caption {
  margin: 0;
  color: rgba(245, 245, 242, 0.48);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.contact-page.is-contact-ready .contact-orbit,
body.contact-page.is-contact-ready .contact-line,
.contact-page.is-contact-ready .contact-background-logo,
body.contact-page.is-contact-ready .contact-float,
body.contact-page.is-contact-ready .contact-stage {
  opacity: 1;
}

body.contact-page.is-contact-ready .contact-orbit,
body.contact-page.is-contact-ready .contact-line {
  transform: none;
}

body.contact-page.is-contact-ready .contact-background-logo {
  transform: translate3d(0, 0, 0);
}

body.contact-page.is-contact-ready .contact-float {
  transform: translate3d(0, 0, 0) scale(1) rotate(var(--tilt, 0deg));
}

body.contact-page.is-contact-ready .contact-float-a {
  transition-delay: 90ms;
}

body.contact-page.is-contact-ready .contact-float-b {
  transition-delay: 180ms;
}

body.contact-page.is-contact-ready .contact-float-c {
  transition-delay: 260ms;
}

body.contact-page.is-contact-ready .contact-float-d {
  transition-delay: 340ms;
}

body.contact-page.is-contact-ready .contact-float-e {
  transition-delay: 420ms;
}

body.contact-page.is-contact-ready .contact-float-f {
  transition-delay: 500ms;
}

body.contact-page.is-contact-ready .contact-float-g {
  transition-delay: 130ms;
}

body.contact-page.is-contact-ready .contact-float-h {
  transition-delay: 220ms;
}

body.contact-page.is-contact-ready .contact-float-i {
  transition-delay: 310ms;
}

body.contact-page.is-contact-ready .contact-float-j {
  transition-delay: 390ms;
}

body.contact-page.is-contact-ready .contact-float-k {
  transition-delay: 470ms;
}

body.contact-page.is-contact-ready .contact-float-l {
  transition-delay: 560ms;
}

@media (prefers-reduced-motion: no-preference) {
  .contact-float .contact-float-drift {
    animation: var(--drift-name) var(--drift-duration) ease-in-out var(--drift-delay) infinite alternate;
  }
}

.contact-copy-block {
  max-width: 38ch;
  margin: 0;
  color: rgba(245, 245, 242, 0.68);
  line-height: 1.7;
}

.contact-form-card {
  display: grid;
  gap: 1.45rem;
  width: 100%;
  max-width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  align-content: center;
  min-height: 100%;
}

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

.contact-field {
  display: grid;
  gap: 0.6rem;
}

.contact-field-wide {
  grid-column: 1 / -1;
}

.contact-field span {
  color: rgba(245, 245, 242, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.018));
  color: #f5f5f2;
  font: inherit;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.contact-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.8rem;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(245, 245, 242, 0.82) 50%),
    linear-gradient(135deg, rgba(245, 245, 242, 0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 3px),
    calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  color-scheme: dark;
}

.contact-field select option {
  background: #111111;
  color: #f5f5f2;
}

.contact-field textarea {
  min-height: 188px;
  resize: vertical;
  line-height: 1.65;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.026));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.018),
    0 0 0 1px rgba(255, 255, 255, 0.04);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(245, 245, 242, 0.24);
}

.contact-phone-row {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 0.85rem;
}

.contact-phone-code,
.contact-phone-number {
  display: block;
}

.contact-form-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form-status {
  margin: 0;
  max-width: 24ch;
  color: rgba(245, 245, 242, 0.64);
  font-size: 0.98rem;
  line-height: 1.55;
  letter-spacing: -0.01em;
}

.contact-form-status.is-error {
  color: #ffb7b7;
}

.contact-form-status.is-success {
  color: #d6f0d2;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.95rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: #f5f5f2;
  color: #080808;
  font: inherit;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(245, 245, 242, 0.12);
}

.contact-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes contact-drift-a {
  from { transform: translate3d(0, 0, 0) rotate(-2deg); }
  to { transform: translate3d(-30px, 38px, 0) rotate(-0.9deg); }
}

@keyframes contact-drift-b {
  from { transform: translate3d(0, 0, 0) rotate(1deg); }
  to { transform: translate3d(34px, -30px, 0) rotate(1.9deg); }
}

@keyframes contact-drift-c {
  from { transform: translate3d(0, 0, 0) rotate(-1deg); }
  to { transform: translate3d(-24px, -38px, 0) rotate(0deg); }
}

@keyframes contact-drift-d {
  from { transform: translate3d(0, 0, 0) rotate(-1.5deg); }
  to { transform: translate3d(29px, 31px, 0) rotate(-0.5deg); }
}

@keyframes contact-drift-e {
  from { transform: translate3d(0, 0, 0) rotate(1.2deg); }
  to { transform: translate3d(22px, -28px, 0) rotate(2.1deg); }
}

@keyframes contact-drift-f {
  from { transform: translate3d(0, 0, 0) rotate(-0.8deg); }
  to { transform: translate3d(-34px, 27px, 0) rotate(0.2deg); }
}

@keyframes contact-background-logo-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, 16px, 0); }
}

@media (max-width: 1100px) {
  .contact-hero {
    min-height: 100svh;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-stage {
    --contact-panel-gap: 18px;
    --contact-panel-width: min(540px, calc((100vw - 2rem - var(--contact-panel-gap)) / 2));
    --contact-panel-height: 780px;
    width: min(1120px, calc(100vw - 2rem));
  }

  .contact-stage-panel-intro h1 {
    font-size: clamp(3rem, 6.7vw, 5rem);
  }
}

@media (max-width: 720px) {
  .contact-topbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-hero {
    min-height: 100svh;
    padding: calc(var(--topbar-height) + 1rem) 0.5rem 4.5rem;
  }

  .contact-stage {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    z-index: 2;
    display: grid;
    gap: 1rem;
    width: min(calc(100vw - 1rem), 36rem);
    min-height: 0;
    margin: 0 auto;
    transform: none;
  }

  .contact-stage::before {
    content: none;
  }

  .contact-stage-panel {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    min-height: auto;
    align-content: start;
    justify-items: center;
    padding: 1.35rem 1.2rem;
    border-radius: 28px;
    opacity: 1;
    pointer-events: auto;
    transition: none;
  }

  .contact-stage-panel-intro,
  body.contact-page.is-contact-stage-intro .contact-stage-panel-intro,
  body.contact-page.is-contact-stage-form .contact-stage-panel-intro {
    transform: translate3d(0, 0, 0);
  }

  .contact-stage-panel-intro {
    min-height: auto;
    gap: 1.4rem;
  }

  .contact-stage-panel-form,
  body.contact-page.is-contact-stage-form .contact-stage-panel-form {
    width: 100%;
    transform: translate3d(0, 0, 0);
  }

  body.contact-page.is-contact-stage-intro .contact-stage-panel-form,
  body.contact-page.is-contact-stage-form .contact-stage-panel-form,
  body.contact-page.is-contact-stage-form .contact-stage-panel-intro {
    opacity: 1;
    pointer-events: auto;
  }

  .contact-kicker-mark {
    font-size: 1.5rem;
  }

  .contact-stage-panel-intro h1 {
    max-width: 9.2ch;
    font-size: clamp(2.7rem, 14vw, 4.5rem);
  }

  .contact-hero-copy {
    width: min(27ch, 100%);
    margin-top: 1rem;
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .contact-stage-caption {
    font-size: 0.72rem;
    letter-spacing: 0.11em;
  }

  .contact-background-logo {
    left: var(--contact-logo-offset-x);
    top: var(--contact-logo-offset-y);
    width: min(calc(92vw * var(--contact-logo-scale)), calc(560px * var(--contact-logo-scale)));
    opacity: 0.72;
    transform: translate3d(0, 0, 0);
  }

  .contact-float-a {
    left: -6%;
    bottom: 6%;
  }

  .contact-float-b {
    left: -4%;
    top: 22rem;
  }

  .contact-float-c {
    left: auto;
    right: -4%;
    top: 12rem;
  }

  .contact-float-d {
    right: -8%;
    top: 29rem;
  }

  .contact-float-e {
    left: 8%;
    bottom: 14%;
  }

  .contact-float-f {
    right: 2%;
    bottom: 0;
  }

  .contact-float-f,
  .contact-float-g,
  .contact-float-h,
  .contact-float-i,
  .contact-float-j,
  .contact-float-k,
  .contact-float-l {
    display: none;
  }

  .contact-form-grid,
  .contact-phone-row,
  .contact-form-footer {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    gap: 1rem;
  }

  .contact-field input,
  .contact-field select,
  .contact-field textarea {
    min-height: 52px;
  }

  .contact-field textarea {
    min-height: 164px;
  }

  .contact-form-status {
    max-width: none;
    font-size: 0.92rem;
  }

  .contact-submit {
    width: 100%;
  }
}
