* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  --background: #080808;
  --surface: #101010;
  --text: #f2eee5;
  --secondary: #aaa7a1;
  --line: rgba(255, 255, 255, 0.16);
  --header: rgba(8, 8, 8, 0.88);
  --accent: #c5b28f;
  --accent-rgb: 197, 178, 143;
  --input-background: rgba(255, 255, 255, 0.025);

  background: var(--background);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;

  transition:
    background 420ms ease,
    color 420ms ease;
}

body[data-experience="immersive"] {
  --background: #f2f1ec;
  --surface: #ebeae4;
  --text: #111111;
  --secondary: #65645f;
  --line: rgba(0, 0, 0, 0.16);
  --header: rgba(242, 241, 236, 0.9);
  --accent: #00a3c7;
  --accent-rgb: 0, 163, 199;
  --input-background: rgba(0, 0, 0, 0.018);
}

body.send-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;

  padding: 12px 16px;
  background: var(--text);
  color: var(--background);

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;

  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* HEADER */

.contact-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;

  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;

  padding: 18px clamp(22px, 4vw, 64px);

  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(18px);
}

.contact-brand,
.contact-header__section,
.contact-back,
.contact-control {
  font-size: 0.7rem;
  letter-spacing: 0.11em;
}

.contact-brand {
  font-weight: 700;
}

.contact-header__section {
  color: var(--secondary);
}

.contact-header__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.contact-back,
.contact-control {
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: var(--secondary);
  cursor: pointer;
  white-space: nowrap;

  transition: color 220ms ease;
}

.contact-back:hover,
.contact-back:focus-visible,
.contact-control:hover,
.contact-control:focus-visible {
  color: var(--accent);
}

/* LAYOUT */

.contact-page {
  min-height: 100svh;
  padding:
    clamp(126px, 16vh, 178px)
    clamp(22px, 5vw, 84px)
    clamp(54px, 7vw, 92px);

  background:
    linear-gradient(
      115deg,
      transparent 0 68%,
      rgba(var(--accent-rgb), 0.025) 100%
    );
}

body[data-experience="immersive"] .contact-page {
  background:
    radial-gradient(
      circle at var(--pointer-x, 76%) var(--pointer-y, 18%),
      rgba(var(--accent-rgb), 0.09),
      transparent 23%
    ),
    linear-gradient(
      115deg,
      transparent 0 64%,
      rgba(var(--accent-rgb), 0.035) 100%
    );
}

.contact-layout {
  width: min(100%, 1540px);
  margin-inline: auto;

  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.76fr);
  gap: clamp(56px, 7vw, 112px);
  align-items: start;
}

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

.contact-kicker {
  margin: 0 0 28px;
  color: var(--secondary);

  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.contact-title {
  width: 100%;
  max-width: 100%;
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 5vw, 7.2rem);
  font-weight: 400;
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

body[data-experience="immersive"] .contact-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 0.83;
  letter-spacing: -0.09em;
}

.contact-lead {
  max-width: 680px;
  margin: clamp(30px, 4vw, 56px) 0 0;

  color: var(--secondary);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.45;
}

.contact-details {
  position: relative;
  isolation: isolate;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(46px, 6vw, 84px);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);

  font-style: normal;
}

.contact-details > * {
  position: relative;
  z-index: 1;

  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;

  margin: 0;
  padding: 22px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--background);

  transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  transform-origin: center;
  will-change: transform;

  transition:
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background 280ms ease,
    border-color 280ms ease,
    box-shadow 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms ease,
    color 280ms ease;
}

.contact-details > *::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-details > a:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: -1px;
}

.contact-details > *:hover::after,
.contact-details > a:focus-visible::after {
  transform: scaleX(1);
}

.contact-details span {
  color: var(--secondary);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.contact-details strong {
  font-size: clamp(0.88rem, 1.1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

/* CONTACT DETAILS — PREMIUM INTERACTIONS */

@media (hover: hover) and (pointer: fine) {
  /* CLASSIC: restrained zoom, champagne edge and depth. */
  body[data-experience="editorial"] .contact-details > *:hover,
  body[data-experience="editorial"] .contact-details > a:focus-visible {
    z-index: 6;
    border-color: rgba(var(--accent-rgb), 0.56);
    background:
      linear-gradient(
        135deg,
        rgba(var(--accent-rgb), 0.13),
        rgba(var(--accent-rgb), 0.025) 62%
      ),
      var(--background);
    box-shadow:
      0 28px 72px rgba(0, 0, 0, 0.34),
      0 0 0 1px rgba(var(--accent-rgb), 0.18);
    transform: translate3d(0, -4px, 0) scale(1.045);
  }

  body[data-experience="editorial"] .contact-details > *:hover span,
  body[data-experience="editorial"] .contact-details > a:focus-visible span {
    color: var(--accent);
  }

  /* DYNAMIC: the active module crosses the grid while the others counter-move. */
  body[data-experience="immersive"] .contact-details:hover > * {
    opacity: 0.72;
    background: rgba(242, 241, 236, 0.96);
  }

  body[data-experience="immersive"] .contact-details > *:hover,
  body[data-experience="immersive"] .contact-details > a:focus-visible {
    z-index: 7;
    opacity: 1;
    border-color: rgba(var(--accent-rgb), 0.72);
    background:
      radial-gradient(
        circle at 82% 18%,
        rgba(var(--accent-rgb), 0.22),
        transparent 44%
      ),
      #f7f6f1;
    box-shadow:
      0 34px 78px rgba(17, 17, 17, 0.16),
      0 0 0 1px rgba(var(--accent-rgb), 0.2);
  }

  body[data-experience="immersive"] .contact-details > :nth-child(1):hover {
    transform: translate3d(9%, 10%, 0) rotate(-1.1deg) scale(1.025);
  }

  body[data-experience="immersive"] .contact-details > :nth-child(2):hover {
    transform: translate3d(-9%, 10%, 0) rotate(1.1deg) scale(1.025);
  }

  body[data-experience="immersive"] .contact-details > :nth-child(3):hover {
    transform: translate3d(9%, -10%, 0) rotate(1deg) scale(1.025);
  }

  body[data-experience="immersive"] .contact-details > :nth-child(4):hover {
    transform: translate3d(-9%, -10%, 0) rotate(-1deg) scale(1.025);
  }

  body[data-experience="immersive"] .contact-details:has(> :nth-child(1):hover) > :nth-child(2),
  body[data-experience="immersive"] .contact-details:has(> :nth-child(3):hover) > :nth-child(4) {
    transform: translate3d(-4%, 0, 0) rotate(0.35deg) scale(0.985);
  }

  body[data-experience="immersive"] .contact-details:has(> :nth-child(2):hover) > :nth-child(1),
  body[data-experience="immersive"] .contact-details:has(> :nth-child(4):hover) > :nth-child(3) {
    transform: translate3d(4%, 0, 0) rotate(-0.35deg) scale(0.985);
  }

  body[data-experience="immersive"] .contact-details:has(> :nth-child(1):hover) > :nth-child(3),
  body[data-experience="immersive"] .contact-details:has(> :nth-child(2):hover) > :nth-child(4) {
    transform: translate3d(0, -4%, 0) scale(0.985);
  }

  body[data-experience="immersive"] .contact-details:has(> :nth-child(3):hover) > :nth-child(1),
  body[data-experience="immersive"] .contact-details:has(> :nth-child(4):hover) > :nth-child(2) {
    transform: translate3d(0, 4%, 0) scale(0.985);
  }
}

/* FORM */

.contact-form {
  position: sticky;
  top: 122px;

  padding: clamp(26px, 3.4vw, 48px);

  border: 1px solid var(--line);
  background: var(--input-background);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.08);

  transition:
    border-color 240ms ease,
    transform 240ms ease;
}

body[data-experience="immersive"] .contact-form {
  transform:
    perspective(1200px)
    rotateX(var(--form-tilt-x, 0deg))
    rotateY(var(--form-tilt-y, 0deg));
  transform-origin: center;
  will-change: transform;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.contact-field {
  position: relative;
  margin-bottom: 28px;
}

.contact-field label {
  display: block;
  margin-bottom: 9px;

  color: var(--secondary);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-height: 50px;

  padding: 11px 0;

  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;

  background: transparent;
  color: var(--text);
  caret-color: var(--accent);
  cursor: text;

  font-size: 1rem;
  line-height: 1.4;

  transition:
    border-color 220ms ease,
    color 220ms ease;
}

.contact-field textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 1px 0 rgba(var(--accent-rgb), 0.58);
}

.contact-field input:focus-visible,
.contact-field textarea:focus-visible {
  outline: 1px solid rgba(var(--accent-rgb), 0.62);
  outline-offset: 3px;
}

.contact-field:focus-within label {
  color: var(--accent);
}

.contact-field input:-webkit-autofill,
.contact-field input:-webkit-autofill:hover,
.contact-field input:-webkit-autofill:focus,
.contact-field textarea:-webkit-autofill,
.contact-field textarea:-webkit-autofill:hover,
.contact-field textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  caret-color: var(--accent);
  -webkit-box-shadow: 0 0 0 1000px var(--background) inset;
  box-shadow: 0 0 0 1000px var(--background) inset;
  transition: background-color 9999s ease-out 0s;
}

/* ─── CONTACT CONSENT CHECKBOX ─── */
.contact-consent {
  margin: 12px 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--secondary);
  user-select: none;
}
.contact-consent__label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0 0;
  cursor: pointer;
  accent-color: var(--accent);
}
.contact-consent__label input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.contact-consent__link {
  text-decoration: underline;
  color: var(--text);
  transition: color 180ms ease;
  font-weight: 600;
}
.contact-consent__link:hover {
  color: var(--accent);
}
.contact-consent__error {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #ff5252;
  text-transform: uppercase;
}
body[data-experience="immersive"] .contact-consent__error {
  color: #d32f2f;
}

.contact-submit {
  width: 100%;
  min-height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 0 22px;

  border: 1px solid var(--text);
  background: var(--text);
  color: var(--background);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;

  cursor: pointer;
  overflow: hidden;

  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-submit:hover,
.contact-submit:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: #080808;
}

.contact-submit:active {
  transform: scale(0.985);
}

.contact-submit__arrow {
  font-size: 1.2rem;
  transform: translate3d(0, 0, 0);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-submit:hover .contact-submit__arrow,
.contact-submit:focus-visible .contact-submit__arrow {
  transform: translate3d(5px, -5px, 0);
}

.contact-demo-note {
  margin: 14px 0 0;
  color: var(--secondary);

  font-size: 0.56rem;
  line-height: 1.4;
  letter-spacing: 0.11em;
}

/* SEND VISUAL */

.send-visual {
  position: fixed;
  inset: 0;
  z-index: 500;

  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(330px, 0.55fr);
  align-items: stretch;

  background: #080808;
  color: #f2eee5;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 360ms ease,
    visibility 360ms ease;
}

body[data-experience="editorial"] .send-visual {
  background: #e9e4da;
  color: #171512;
}

.send-visual.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.send-visual__close {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 4;

  width: 48px;
  height: 48px;

  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;

  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;
  opacity: 0.72;

  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.send-visual__close:hover,
.send-visual__close:focus-visible {
  opacity: 1;
  transform: rotate(8deg);
}

.send-visual__media {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #050505;
}

body[data-experience="editorial"] .send-visual__media {
  background:
    linear-gradient(
      145deg,
      #6e6962 0%,
      #d4cabc 46%,
      #f2ece2 100%
    );
}

.send-visual__media-controls {
  position: absolute;
  left: clamp(16px, 2vw, 30px);
  bottom: clamp(16px, 2vw, 28px);
  z-index: 3;

  display: flex;
  align-items: center;
  gap: 8px;
}

.send-visual__media-control {
  min-height: 40px;
  padding: 0 15px;

  border: 1px solid rgba(242, 238, 229, 0.5);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.58);
  color: #f2eee5;
  backdrop-filter: blur(12px);

  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;

  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

body[data-experience="editorial"] .send-visual__media-control {
  border-color: rgba(23, 21, 18, 0.42);
  background: rgba(242, 236, 226, 0.76);
  color: #171512;
}

.send-visual__media-control:hover,
.send-visual__media-control:focus-visible,
.send-visual__media-control[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: #080808;
  transform: translateY(-2px);
}

.send-visual__media-control:active {
  transform: translateY(0) scale(0.98);
}

.send-visual__video {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  will-change:
    opacity,
    transform,
    filter;
}

.send-visual__video--classic {
  object-position: 50% 50%;
  background: #d9d2c7;
}

.send-visual__video--dynamic {
  object-position: 52% 50%;
  background: #050505;
}

body[data-experience="editorial"] .send-visual__video--classic,
body[data-experience="immersive"] .send-visual__video--dynamic {
  display: block;
}

body[data-experience="editorial"] .send-visual__video--dynamic,
body[data-experience="immersive"] .send-visual__video--classic {
  display: none;
}

body[data-experience="editorial"]
.send-visual.is-open
.send-visual__video--classic {
  animation:
    classic-video-reveal
    520ms
    ease-out
    forwards;
}

body[data-experience="immersive"]
.send-visual.is-open
.send-visual__video--dynamic {
  animation:
    dynamic-video-reveal
    520ms
    ease-out
    forwards;
}

.send-visual__trail {
  position: absolute;
  left: 19%;
  bottom: 17%;

  width: 58%;
  height: 2px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(0, 163, 199, 0.92),
      transparent
    );

  opacity: 0;
  transform:
    rotate(-16deg)
    scaleX(0);
  transform-origin: left center;
}

body[data-experience="immersive"]
.send-visual__trail {
  display: none;
}

.send-visual__copy {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding:
    clamp(84px, 9vh, 128px)
    clamp(28px, 4vw, 68px)
    clamp(42px, 6vw, 76px);

  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

body[data-experience="editorial"] .send-visual__copy {
  border-left-color: rgba(0, 0, 0, 0.16);
}

.send-visual__eyebrow {
  margin: 0 0 20px;
  color: rgba(242, 238, 229, 0.64);

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

body[data-experience="editorial"] .send-visual__eyebrow {
  color: rgba(23, 21, 18, 0.6);
}

.send-visual__eyebrow--dynamic,
.send-visual__title--dynamic {
  display: none;
}

body[data-experience="immersive"] .send-visual__eyebrow--classic,
body[data-experience="immersive"] .send-visual__title--classic {
  display: none;
}

body[data-experience="immersive"] .send-visual__eyebrow--dynamic,
body[data-experience="immersive"] .send-visual__title--dynamic {
  display: block;
}

.send-visual__title {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 6.4vw, 7.6rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

body[data-experience="immersive"] .send-visual__title {
  max-width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.8rem, 4vw, 5.8rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

@media (min-width: 1081px) {
  .send-visual__title {
    max-width: 100%;
    font-size: clamp(1.9rem, 2.6vw, 3.6rem);
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  body[data-experience="immersive"] .send-visual__title {
    max-width: 100%;
    font-size: clamp(1.7rem, 2.1vw, 2.9rem);
    text-align: center;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

.send-visual__notice {
  max-width: 440px;
  margin: 30px 0 0;

  color: rgba(242, 238, 229, 0.62);
  font-size: 0.74rem;
  line-height: 1.5;
}

body[data-experience="editorial"] .send-visual__notice {
  color: rgba(23, 21, 18, 0.58);
}

.send-visual__return {
  align-self: flex-start;
  min-height: 48px;
  margin-top: 28px;
  padding: 0;

  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;

  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;

  cursor: pointer;
}

/* ANIMATION */

@keyframes classic-bird-flight {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform:
      translate3d(-7%, 9%, 0)
      scale(0.82)
      rotate(-1.4deg);
  }

  54% {
    opacity: 1;
    filter: blur(0);
    transform:
      translate3d(1%, -1%, 0)
      scale(1.035)
      rotate(0.35deg);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform:
      translate3d(0, 0, 0)
      scale(1)
      rotate(0);
  }
}


@keyframes classic-video-reveal {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.018);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes dynamic-video-reveal {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.025);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes dynamic-rocket-launch {
  0% {
    opacity: 0;
    filter: blur(16px);
    transform:
      translate3d(-12%, 18%, 0)
      rotate(-5deg)
      scale(0.74);
  }

  45% {
    opacity: 1;
    filter: blur(1px);
    transform:
      translate3d(2%, -2%, 0)
      rotate(1.2deg)
      scale(1.08);
  }

  72% {
    opacity: 1;
    filter: blur(0);
    transform:
      translate3d(-1%, 1%, 0)
      rotate(-0.4deg)
      scale(0.99);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform:
      translate3d(0, 0, 0)
      rotate(0)
      scale(1);
  }
}

@keyframes dynamic-trail {
  0% {
    opacity: 0;
    transform:
      rotate(-16deg)
      scaleX(0);
  }

  55% {
    opacity: 0.88;
    transform:
      rotate(-16deg)
      scaleX(1);
  }

  100% {
    opacity: 0;
    transform:
      rotate(-16deg)
      scaleX(1.14);
  }
}

/* RESPONSIVE */

@media (max-width: 1080px) {
  .contact-header {
    grid-template-columns: 1fr auto;
  }

  .contact-header__section {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .contact-form {
    position: relative;
    top: auto;
  }

  .send-visual {
    grid-template-columns: minmax(0, 1fr);
    overflow-y: auto;
  }

  .send-visual__media {
    min-height: 62svh;
  }

  .send-visual__copy {
    min-height: 38svh;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  body[data-experience="editorial"] .send-visual__copy {
    border-top-color: rgba(0, 0, 0, 0.16);
  }
}

@media (max-width: 720px) {
  .contact-header {
    min-height: 70px;
    padding: 14px 18px;
    gap: 12px;
  }

  .contact-brand {
    max-width: 132px;
    font-size: 0.65rem;
    line-height: 1.15;
  }

  .contact-header__controls {
    gap: 8px;
  }

  .contact-back {
    display: none;
  }

  .contact-control {
    min-height: 44px;
    font-size: 0.54rem;
  }

  .contact-page {
    padding:
      112px
      18px
      42px;
  }

  .contact-title {
    font-size: clamp(2.45rem, 10.2vw, 4.6rem);
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .contact-details > * {
    min-height: 104px;
    transform: none !important;
  }

  .contact-form {
    padding: 24px 18px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-submit {
    min-height: 58px;
  }

  .send-visual__close {
    top: 14px;
    right: 14px;
  }

  .send-visual__media-controls {
    left: 14px;
    bottom: 14px;
    gap: 6px;
  }

  .send-visual__media-control {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.54rem;
  }

  .send-visual__media {
    min-height: 54svh;
  }

  .send-visual__copy {
    min-height: 46svh;
    padding: 34px 20px 42px;
  }

  .send-visual__title {
    font-size: clamp(2.9rem, 14vw, 4.8rem);
    overflow-wrap: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .contact-form,
  .contact-details > *,
  .contact-details > *::after,
  .contact-submit,
  .contact-submit__arrow,
  .send-visual,
  .send-visual__video,
  .send-visual__trail,
  .send-visual__media-control {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  body[data-experience="editorial"]
  .send-visual.is-open
  .send-visual__video--classic,
  body[data-experience="immersive"]
  .send-visual.is-open
  .send-visual__video--dynamic {
    opacity: 1;
    filter: none;
  }

  .send-visual__trail {
    display: none;
  }
}
