:root {
  --mswing-bg: #07090f;
  --mswing-ink: #f4ede3;
  --mswing-muted: #8a8478;
  --mswing-grey: #a3a3a3;
  --mswing-line: #565450;
  --mswing-red: #c8102e;
  --mswing-red-glow: #e63148;
  --mswing-title: "Fraunces", Georgia, serif;
  --mswing-mono: "JetBrains Mono", ui-monospace, monospace;
  --mswing-max: 1360px;
  --mswing-gutter: clamp(24px, 9.52vw, 160px);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--mswing-bg);
  scroll-behavior: smooth;
}

body.mswing-body {
  margin: 0;
  background: var(--mswing-bg);
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
}

body.mswing-body a {
  color: inherit;
  text-decoration: none;
}

.mswing-home {
  min-height: 100vh;
  overflow: hidden;
  background: var(--mswing-bg);
}

.mswing-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  height: 84px;
  padding: 0 38px;
  color: var(--mswing-ink);
  font-family: var(--mswing-mono);
  font-size: 11px;
  letter-spacing: 1.98px;
  text-transform: uppercase;
}

.mswing-nav__brand {
  display: inline-flex;
  align-items: center;
}

.mswing-nav__brand img {
  display: block;
}

.mswing-nav__links {
  display: flex;
  justify-content: center;
  gap: 36px;
}

.mswing-nav__cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid var(--mswing-line);
  border-radius: 999px;
  padding: 11px 19px;
}

.mswing-nav__cta span {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--mswing-red-glow);
}

.mswing-hero {
  position: relative;
  min-height: 1050px;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--mswing-gutter) 136px;
}

.mswing-hero__image,
.mswing-hero__shade {
  position: absolute;
  inset: 0;
}

.mswing-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.06);
}

.mswing-hero__shade {
  background:
    radial-gradient(circle at 30% 20%, rgba(200, 16, 46, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(7, 9, 15, 0.6) 0%, rgba(7, 9, 15, 0.1) 35%, rgba(7, 9, 15, 0.95) 100%),
    linear-gradient(90deg, rgba(7, 9, 15, 0.7) 0%, rgba(7, 9, 15, 0.2) 50%, rgba(7, 9, 15, 0.7) 100%);
}

.mswing-hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--mswing-max));
  margin: 0 auto;
}

.mswing-eyebrow {
  margin: 0;
  color: var(--mswing-red-glow);
  font-family: var(--mswing-mono);
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 3.3px;
  text-transform: uppercase;
}

.mswing-eyebrow--line {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--mswing-grey);
}

.mswing-eyebrow--line::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--mswing-red);
}

.mswing-hero h1 {
  margin: 30px 0 46px;
  max-width: 1360px;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: clamp(76px, 10.95vw, 184px);
  font-weight: 300;
  line-height: 0.864;
  letter-spacing: clamp(-4px, -0.49vw, -8.3px);
  font-variation-settings: "SOFT" 0, "WONK" 1;
}

.mswing-hero h1 em,
.mswing-booking h2 em,
.mswing-manifesto em,
.mswing-footer__brand em {
  color: var(--mswing-red-glow);
  font-style: italic;
  font-weight: 300;
}

.mswing-hero__lower {
  display: grid;
  grid-template-columns: 412px 1fr auto;
  gap: clamp(32px, 4.8vw, 80px);
  align-items: start;
}

.mswing-hero__intro {
  margin: 0;
  color: var(--mswing-ink);
  font-size: 21px;
  font-style: italic;
  font-weight: 300;
  line-height: 29.7px;
}

.mswing-hero__intro span {
  color: var(--mswing-red-glow);
}

.mswing-stats {
  display: flex;
  gap: 56px;
  align-items: center;
}

.mswing-stat {
  display: grid;
  gap: 3px;
  text-transform: uppercase;
}

.mswing-stat strong {
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: 36px;
  font-weight: 400;
  line-height: 54px;
  letter-spacing: -0.72px;
}

.mswing-stat span {
  color: var(--mswing-grey);
  font-family: var(--mswing-mono);
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 1.98px;
}

.mswing-button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--mswing-red);
  box-shadow: 0 12px 40px -10px #8b0d1f;
  color: var(--mswing-ink);
  font-family: var(--mswing-mono);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2.64px;
  min-height: 58px;
  padding: 18px 28px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mswing-home-2 {
  min-height: 100vh;
  background: var(--mswing-bg);
  overflow: hidden;
}

.mswing-home-2__stage,
.mswing-video-template {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  background: var(--mswing-bg);
  color: var(--mswing-ink);
}

.mswing-home-2__media,
.mswing-video-template__media,
.mswing-home-2__veil {
  position: absolute;
  inset: 0;
}

.mswing-home-2__media video,
.mswing-home-2__media img,
.mswing-video-template__media video,
.mswing-video-template__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mswing-video-template__media {
  overflow: hidden;
  background: #424243;
  filter: blur(0);
  transition: filter 360ms ease;
}

body.mswing-info-open .mswing-video-template__media {
  filter: blur(8px);
}

.mswing-video-template__media video,
.mswing-video-template__media>[data-mswing-hero-media] {
  position: absolute;
  inset: 0;
  width: 100%;
}

.mswing-video-template__media.is-transitioning {
  background: var(--mswing-bg);
}

.mswing-video-template__media.is-transitioning video {
  pointer-events: none;
}

.mswing-video-template__media .mswing-video--current {
  z-index: 1;
}

.mswing-video-template__media .mswing-video--incoming {
  z-index: 2;
  will-change: transform;
}

.mswing-video-template__media .mswing-video--incoming-next {
  transform: translateX(100%);
}

.mswing-video-template__media .mswing-video--incoming-prev {
  transform: translateX(-100%);
}

.mswing-video-template__media.is-transitioning .mswing-video--current,
.mswing-video-template__media.is-transitioning .mswing-video--incoming {
  transition: transform 760ms cubic-bezier(0.76, 0, 0.24, 1);
}

.mswing-video-template__media.is-transitioning-next .mswing-video--current {
  transform: translateX(-100%);
}

.mswing-video-template__media.is-transitioning-prev .mswing-video--current {
  transform: translateX(100%);
}

.mswing-video-template__media.is-transitioning-next .mswing-video--incoming,
.mswing-video-template__media.is-transitioning-prev .mswing-video--incoming {
  transform: translateX(0);
}

.mswing-home-2__veil {
  top: auto;
  height: 155px;
  background: linear-gradient(180deg, rgba(120, 120, 120, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.mswing-home-2__header {
  position: absolute;
  z-index: 10;
  top: 30px;
  left: clamp(32px, 9.52vw, 160px);
  right: clamp(32px, 9.52vw, 160px);
  display: grid;
  grid-template-columns: 1fr 54px 1fr;
  align-items: center;
  min-height: 44px;
  font-family: var(--mswing-mono);
  text-transform: uppercase;
}

.mswing-home-2__nav {
  grid-column: 1;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 43px);
  color: var(--mswing-ink);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.98px;
  line-height: 16.5px;
}

.mswing-home-2__nav a,
.mswing-home-2__modal a {
  transition: color 180ms ease, opacity 180ms ease;
}

.mswing-home-2__nav a:hover,
.mswing-home-2__modal a:hover {
  color: var(--mswing-red-glow);
}

.mswing-home-2__logo {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mswing-home-2__logo img {
  display: block;
  width: 54px;
  height: 44px;
}

.mswing-home-2__header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 43px);
}

.mswing-home-2__about-link {
  color: var(--mswing-ink);
  font-family: var(--mswing-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.98px;
  line-height: 16.5px;
  text-transform: uppercase;
  transition: color 180ms ease, opacity 180ms ease;
}

.mswing-home-2__about-link:hover {
  color: var(--mswing-red-glow);
}

.mswing-home-2__cta {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
  border-radius: 4px;
  background: var(--mswing-red);
  padding: 12px 24px;
  color: var(--mswing-ink);
  font-family: var(--mswing-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 16px;
  text-transform: uppercase;
}

.mswing-home-2__cta img {
  display: block;
  width: 14px;
  height: 14px;
}

.mswing-home-2__burger,
.mswing-home-2__close {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--mswing-ink);
  cursor: pointer;
  padding: 0;
}

.mswing-home-2__burger {
  grid-column: 1;
  grid-row: 1;
  display: none;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  width: 36px;
  height: 28px;
}

.mswing-home-2__burger img {
  display: block;
  width: 17px;
  height: 12px;
}

.mswing-home-2__modal {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 9, 15, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mswing-home-2__modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mswing-home-2__modal nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  font-family: var(--mswing-mono);
  font-size: clamp(22px, 6vw, 48px);
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.mswing-home-2__modal nav a {
  opacity: 0;
  transform: translateY(22px);
}

.mswing-home-2__modal.is-open:not(.is-closing) nav a {
  animation: mswing-menu-item-in 420ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--mswing-menu-index, 0) * 70ms + 100ms);
}

.mswing-home-2__modal.is-closing nav a {
  animation: mswing-menu-item-out 260ms ease-in forwards;
  animation-delay: calc(var(--mswing-menu-index, 0) * 45ms);
}

@keyframes mswing-menu-item-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mswing-menu-item-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(22px);
  }
}

.mswing-home-2__modal-cta {
  margin-top: 12px;
  border-radius: 4px;
  background: var(--mswing-red);
  padding: 16px 22px;
  font-size: clamp(12px, 3vw, 16px);
  letter-spacing: 0.2em;
}

.mswing-home-2__close {
  position: absolute;
  top: 30px;
  right: clamp(24px, 5vw, 56px);
  width: 36px;
  height: 36px;
}

.mswing-home-2__close span:not(.screen-reader-text) {
  position: absolute;
  top: 17px;
  left: 0;
  width: 36px;
  height: 1px;
  background: currentColor;
}

.mswing-home-2__close span:first-child {
  transform: rotate(45deg);
}

.mswing-home-2__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mswing-home-2__footer {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0;
  pointer-events: none;
  font-family: var(--mswing-mono);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 2.2px;
  line-height: 15px;
  text-transform: uppercase;
}

.mswing-home-2__footer-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 41px;
  background: var(--mswing-bg);
  pointer-events: auto;
}

.mswing-home-2__legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #b9b9b9;
  text-align: center;
  white-space: nowrap;
}

.mswing-home-2__legal-copy>* {
  margin: 0;
}

.mswing-home-2__legal-link {
  flex: none;
  border-left: 1px solid rgba(185, 185, 185, 0.45);
  padding-left: 14px;
  transition: color 180ms ease;
}

.mswing-home-2__legal-link:hover {
  color: var(--mswing-ink);
}

@keyframes mswing-home-header-in {
  from {
    opacity: 0;
    transform: translateY(-34px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mswing-home-footer-in {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mswing-home-socials-in {
  from {
    opacity: 0;
    transform: translate(-50%, 34px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.mswing-home-2 .mswing-player {
  opacity: 1;
  pointer-events: none;
  visibility: visible;
}

.mswing-home-2 .mswing-player .mswing-player__transport,
.mswing-home-2 .mswing-player .mswing-player__sound,
.mswing-home-2 .mswing-player .mswing-player__info {
  display: none !important;
}

.mswing-home-2 .mswing-player__socials {
  position: absolute;
  top: 50%;
  left: 50%;
  grid-column: auto;
  grid-row: auto;
  transform: translate(-50%, 34px);
  opacity: 0;
  pointer-events: auto;
  animation: mswing-home-socials-in 620ms cubic-bezier(0.22, 1, 0.36, 1) 11.05s forwards;
}

.mswing-home-2 .mswing-home-2__nav,
.mswing-home-2 .mswing-home-2__logo,
.mswing-home-2 .mswing-home-2__about-link,
.mswing-home-2 .mswing-home-2__cta,
.mswing-home-2 .mswing-home-2__burger {
  opacity: 0;
  transform: translateY(-34px);
  animation: mswing-home-header-in 620ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.mswing-home-2 .mswing-home-2__logo {
  animation-delay: 10s;
}

.mswing-home-2 .mswing-home-2__nav,
.mswing-home-2 .mswing-home-2__about-link,
.mswing-home-2 .mswing-home-2__burger {
  animation-delay: 10.18s;
}

.mswing-home-2 .mswing-home-2__cta {
  animation-delay: 10.36s;
}

.mswing-home-2 .mswing-home-2__footer-bottom {
  opacity: 0;
  transform: translateY(100%);
  animation: mswing-home-footer-in 620ms cubic-bezier(0.22, 1, 0.36, 1) 11.05s forwards;
}

.mswing-player {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 41px;
  height: 71px;
  background: rgba(7, 9, 15, 0);
}

.mswing-player__inner {
  position: relative;
  width: auto;
  height: 100%;
  margin-inline: clamp(32px, 9.52vw, 160px);
}

.mswing-player__socials {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 19px;
  pointer-events: auto;
}

.mswing-player__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  opacity: 0.5;
  transition: opacity 180ms ease, transform 180ms ease;
}

.mswing-player__socials a:hover {
  opacity: 1;
}

.mswing-player__socials img {
  display: block;
  width: 22px;
  height: 22px;
}

.mswing-player button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--mswing-ink);
  cursor: pointer;
  font: inherit;
  padding: 0;
}

.mswing-player .mswing-player__info {
  appearance: none;
  border: 0;
  position: absolute;
  top: 50%;
  right: 0;
  left: auto;
  transform: translateY(-50%);
  color: var(--mswing-ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 32px;
  border-radius: 4px;
  background: #ffffff2e;
  padding: 8px 12px;
  font-family: var(--mswing-mono);
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 16px;
  text-transform: uppercase;
  transition: opacity 180ms ease, visibility 180ms ease;
}

body.mswing-info-open .mswing-player .mswing-player__info {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.mswing-player__info img {
  width: 12.5px;
  height: 12.5px;
}

.mswing-player__transport {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 14px 18px 14px;
  align-items: center;
  justify-content: space-between;
  width: 145px;
}

.mswing-player__play {
  position: relative;
  width: 18px;
  height: 20px;
}

.mswing-player__icon-play {
  position: absolute;
  inset: 1px 1px 1px 3px;
  display: block;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #fff;
}

.mswing-player__icon-pause {
  position: absolute;
  inset: 1px;
  display: none;
}

.mswing-player__icon-pause::before,
.mswing-player__icon-pause::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6px;
  border-radius: 2px;
  background: #fff;
}

.mswing-player__icon-pause::before {
  left: 0;
}

.mswing-player__icon-pause::after {
  right: 0;
}

.mswing-player.is-playing .mswing-player__icon-play {
  display: none;
}

.mswing-player.is-playing .mswing-player__icon-pause {
  display: block;
}

.mswing-player__skip {
  position: relative;
  width: 14px;
  height: 14px;
}

.mswing-player__skip span::before,
.mswing-player__skip span::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.mswing-player__skip span::before {
  left: 4px;
  border-right: 7px solid #fff;
}

.mswing-player__skip span::after {
  left: 0;
  width: 2px;
  height: 10px;
  border: 0;
  background: #fff;
}

.mswing-player__skip--next {
  transform: scaleX(-1);
}

.mswing-player__sound {
  position: absolute;
  top: 50%;
  left: max(28px, calc(50% - 156px));
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
}

.mswing-player__sound img {
  position: absolute;
  inset: 0;
  display: block;
  width: 22px;
  height: 22px;
}

.mswing-player__sound-on {
  opacity: 0;
}

.mswing-player.has-sound .mswing-player__sound-mute {
  opacity: 0;
}

.mswing-player.has-sound .mswing-player__sound-on {
  opacity: 1;
}

.mswing-player.is-static-image .mswing-player__play,
.mswing-player.is-static-image .mswing-player__sound {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.mswing-info-modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: flex;
  justify-content: flex-end;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 720ms ease;
}

.mswing-info-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mswing-info-modal__panel {
  --mswing-info-panel-bottom: 112px;
  box-sizing: border-box;
  position: relative;
  width: 700px;
  max-width: calc(100vw - 48px);
  height: auto;
  margin-top: 92px;
  margin-right: 24px;
  margin-bottom: var(--mswing-info-panel-bottom);
  align-self: stretch;
  border-radius: 30px;
  background: rgba(7, 9, 15, 0.9);
  box-shadow: 0 10px 34px 0 rgba(0, 0, 0, 0.5);
  padding: 80px;
  color: var(--mswing-ink);
  text-align: left;
  overflow: hidden;
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 560ms ease-out,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.mswing-info-modal__scroll {
  width: calc(100% + 40px);
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 40px;
  scrollbar-color: rgba(128, 128, 128, 0.5) transparent;
  scrollbar-width: thin;
}

.mswing-info-modal__scroll::-webkit-scrollbar {
  width: 8px;
}

.mswing-info-modal__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.mswing-info-modal__scroll::-webkit-scrollbar-thumb {
  border: 0;
  border-radius: 999px;
  background: rgba(128, 128, 128, 0.5);
}

.mswing-info-modal.is-open .mswing-info-modal__panel {
  opacity: 1;
  transform: translate(0, 0);
}

.mswing-info-modal__panel--wedding {
  background: rgba(3, 3, 3, 0.9);
}

.mswing-info-modal__cover {
  width: 100%;
  height: calc((100vh - 92px - var(--mswing-info-panel-bottom)) / 2);
  border-radius: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mswing-info-modal__wedding-content {
  margin-top: 40px;
}

.mswing-info-modal__panel--wedding .mswing-info-modal__wedding-content h2 {
  margin: 0;
  font-family: var(--mswing-title);
  font-size: clamp(24px, 2.1vw, 30px);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.18;
  text-transform: uppercase;
}

.mswing-info-modal__intro {
  margin: 30px 0 0;
  color: #949494;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.mswing-info-modal__features {
  display: grid;
  gap: 48px;
  margin-top: 64px;
}

.mswing-info-modal__feature {
  display: block;
}

.mswing-info-modal__feature>div {
  min-width: 0;
}

.mswing-info-modal__feature h3 {
  margin: 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
}

.mswing-info-modal__feature p {
  margin: 12px 0 0;
  color: #929292;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.45;
}

.mswing-info-modal__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 68px;
  border-top: 1px solid #212121;
  padding-top: 34px;
}

.mswing-info-modal__footer-title {
  margin: 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.mswing-info-modal__footer-text {
  margin: -10px 0 0;
  color: #929292;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  line-height: 1.55;
}

.mswing-info-modal__footer .mswing-info-modal__footer-cta {
  display: inline-flex;
  position: static;
  grid-column: auto;
  justify-self: auto;
  width: auto;
  height: auto;
  min-height: 40px;
  max-width: 100%;
  justify-content: center;
  padding: 12px 24px;
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 16px;
  overflow: visible;
  white-space: normal;
}

.mswing-info-modal__footer .mswing-info-modal__footer-cta span {
  display: inline;
}

.mswing-info-modal__footer .mswing-info-modal__footer-cta img {
  width: 14px;
  height: 14px;
}

.mswing-info-modal__panel h2 {
  margin: 0 0 18px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(19px, 2.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
}

.mswing-info-modal__text {
  color: #a4a3a3;
  font-family: var(--mswing-mono);
  font-size: clamp(12px, 1vw, 15px);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.65;
}

.mswing-info-modal__text p {
  margin: 0;
}

.mswing-info-modal__text p+p {
  margin-top: 12px;
}

.mswing-info-modal__text h1,
.mswing-info-modal__text h2,
.mswing-info-modal__text h3,
.mswing-info-modal__text h4 {
  margin: 24px 0 12px;
  color: var(--mswing-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.mswing-info-modal__text h1 {
  font-size: clamp(32px, 4vw, 44px);
}

.mswing-info-modal__text h2 {
  font-size: clamp(22px, 3.2vw, 27px);
}

.mswing-info-modal__text h3 {
  font-size: clamp(19px, 2.5vw, 21px);
}

.mswing-info-modal__text h4 {
  font-size: clamp(18px, 2vw, 22px);
}

.mswing-info-modal__text hr {
  width: 100%;
  height: 1px;
  margin: 24px 0;
  border: 0;
  background: rgba(244, 237, 227, 0.28);
}

.mswing-info-modal__text img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 22px auto 0;
  border-radius: 4px;
}

.mswing-info-modal__text a {
  color: var(--mswing-ink);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.mswing-info-modal__close {
  appearance: none;
  position: absolute;
  top: 23px;
  left: 32px;
  z-index: 2;
  width: 21px;
  height: 21px;
  border: 0;
  background: transparent;
  color: var(--mswing-ink);
  cursor: pointer;
  margin: 0;
}

.mswing-info-modal__close span {
  position: absolute;
  top: 14px;
  left: 3px;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.mswing-info-modal__close span:first-child {
  transform: rotate(45deg);
}

.mswing-info-modal__close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mswing-contact-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #000;
  color: var(--mswing-ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mswing-contact-page>.mswing-home-2__footer {
  position: relative;
  height: 41px;
}

.mswing-contact-page .mswing-home-2__header {
  color: var(--mswing-ink);
}

.mswing-contact-page .mswing-home-2__nav a {
  color: var(--mswing-ink);
}

.mswing-contact-page .mswing-home-2__burger {
  color: var(--mswing-ink);
}

.mswing-contact-page .mswing-home-2__cta {
  color: var(--mswing-ink);
}

.mswing-contact-page .mswing-home-2__cta img {
  filter: none;
}

.mswing-contact-page__stage {
  position: relative;
  min-height: 100vh;
  padding: 170px clamp(24px, 7vw, 96px) 120px;
  background: #000;
}

.mswing-contact-page__content {
  width: min(100%, 1040px);
  max-width: 1040px;
  margin: 0 auto;
  opacity: 0;
  animation: mswingContentFadeIn 360ms ease forwards;
}

.mswing-contact-details {
  width: min(100%, 100%);
  margin: 0 0 90px 0;
  color: var(--mswing-ink);
}

.mswing-contact-details h1 {
  margin: 0 0 38px;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: clamp(24px, 3.1vw, 42px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.grecaptcha-badge {
  visibility: hidden;
}

.mswing-contact-form-title {
  margin: 0 0 42px;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: clamp(24px, 2.7vw, 36px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-align: left;
}

.mswing-contact-details__list {
  display: grid;
  gap: 28px;
}

.mswing-contact-details__row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.mswing-contact-details__row p {
  margin: 0;
  color: var(--mswing-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(15px, 1.65vw, 21px);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.5;
}

.mswing-contact-details__row a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

.mswing-contact-details__row a:hover {
  color: var(--mswing-red-glow);
}

.mswing-contact-details__icon {
  display: block;
  width: 28px;
  max-height: 32px;
  color: var(--mswing-red-glow);
}

.mswing-contact-details__row .mswing-contact-details__email {
  color: var(--mswing-red-glow);
}

.mswing-contact-details__production {
  display: grid;
  gap: 10px;
  margin-top: 42px;
  border-top: 1px solid rgba(244, 237, 227, 0.2);
  padding-top: 30px;
}

.mswing-contact-details__production p {
  margin: 0;
  color: var(--mswing-muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(12px, 1.15vw, 15px);
  letter-spacing: 0.015em;
  line-height: 1.65;
}

.mswing-contact-details__production strong {
  color: var(--mswing-ink);
  font-weight: 600;
}

.mswing-contact-form {
  display: grid;
  gap: 52px;
  color: var(--mswing-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.35;
}

.mswing-contact-form__required-note {
  margin: 0;
  color: var(--mswing-muted);
  font-family: var(--mswing-mono);
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.mswing-contact-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.mswing-contact-form__required-mark {
  color: var(--mswing-red-glow);
  font-weight: 600;
}

.mswing-contact-form .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

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

.mswing-contact-form__phone-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.24fr) minmax(0, 1fr);
  gap: 48px;
}

.mswing-contact-form__field {
  position: relative;
  display: block;
  min-width: 0;
}

.mswing-contact-form input[type="text"],
.mswing-contact-form input[type="email"],
.mswing-contact-form input[type="tel"],
.mswing-contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #454545;
  border-radius: 0;
  background: transparent;
  color: var(--mswing-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.3;
  outline: none;
  padding: 34px 0 10px;
  box-shadow: none;
  transition: border-color 180ms ease, color 180ms ease;
}

.mswing-contact-form input[type="text"],
.mswing-contact-form input[type="email"],
.mswing-contact-form input[type="tel"] {
  height: 92px;
}

.mswing-contact-form textarea {
  min-height: 190px;
  padding-top: 42px;
  padding-bottom: 18px;
  resize: vertical;
}

.mswing-contact-form input::placeholder,
.mswing-contact-form textarea::placeholder {
  color: transparent;
  opacity: 0;
}

.mswing-contact-form input:focus,
.mswing-contact-form textarea:focus {
  border-color: var(--mswing-ink);
  background: transparent;
  box-shadow: none;
}

.mswing-contact-form input[data-mswing-event-date]:focus::placeholder {
  color: #777;
  opacity: 1;
}

.mswing-contact-form .has-error,
.mswing-contact-form fieldset.has-error {
  border-color: var(--mswing-red);
}

.mswing-contact-form fieldset.has-error .mswing-contact-form__choices label {
  border-color: rgba(200, 16, 46, 0.72);
}

.mswing-contact-form__field-error {
  margin: 9px 0 0;
  color: var(--mswing-red-glow);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.4;
}

.mswing-contact-form__help {
  margin: 10px 0 0;
  color: var(--mswing-muted);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

.mswing-contact-form fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.mswing-contact-form legend,
.mswing-contact-form__label {
  display: block;
  margin: 0;
  color: #a7a7a7;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(14px, 1.4vw, 19px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-transform: none;
  padding: 0;
}

.mswing-contact-form__label {
  position: absolute;
  z-index: 1;
  top: 31px;
  left: 0;
  pointer-events: none;
  transform-origin: left top;
  transition: color 180ms ease, font-size 180ms ease, transform 180ms ease;
}

.mswing-contact-form__field:focus-within .mswing-contact-form__label,
.mswing-contact-form__field.is-filled .mswing-contact-form__label,
.mswing-contact-form__field:has(input:not(:placeholder-shown)) .mswing-contact-form__label,
.mswing-contact-form__field:has(textarea:not(:placeholder-shown)) .mswing-contact-form__label {
  color: var(--mswing-red-glow);
  font-size: 12px;
  transform: translateY(-22px);
}

.mswing-contact-form__choices {
  display: grid;
  gap: 12px;
}

.mswing-contact-form fieldset legend {
  margin-bottom: 18px;
  color: var(--mswing-grey);
  font-family: var(--mswing-mono);
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.mswing-contact-form__choices--inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mswing-contact-form__choices label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  border: 1px solid #343434;
  border-radius: 999px;
  background: transparent;
  color: #d8d8d8;
  padding: 14px 20px;
  font-family: var(--mswing-mono);
  font-size: 11px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.mswing-contact-form__choices label:has(input:checked) {
  border-color: var(--mswing-red);
  background: var(--mswing-red);
  color: #ffffff;
}

.mswing-contact-form input[type="radio"],
.mswing-contact-form input[type="checkbox"] {
  appearance: none;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #6a6a6a;
  background: #000;
  cursor: pointer;
}

.mswing-contact-form input[type="radio"] {
  border-radius: 50%;
}

.mswing-contact-form input[type="checkbox"] {
  border-radius: 2px;
}

.mswing-contact-form input[type="radio"]:checked,
.mswing-contact-form input[type="checkbox"]:checked {
  border-color: var(--mswing-red);
  box-shadow: inset 0 0 0 4px #000;
  background: var(--mswing-red);
}

.mswing-contact-form__submit {
  appearance: none;
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: var(--mswing-red);
  color: #ffffff;
  cursor: pointer;
  font-family: var(--mswing-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
  padding: 20px 34px;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.mswing-contact-form__submit:hover {
  background: var(--mswing-red-glow);
  transform: translateY(-1px);
}

.mswing-contact-form__submit:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.mswing-contact-form__submit-group {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.mswing-contact-form__recaptcha-notice {
  max-width: 440px;
  margin: 0;
  color: #707070;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
  text-transform: none;
}

.mswing-contact-form__recaptcha-notice a {
  color: #909090;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mswing-contact-form__recaptcha-notice a:hover {
  color: var(--mswing-ink);
}

.mswing-contact-page .grecaptcha-badge {
  visibility: hidden !important;
}

.mswing-contact-form__notice {
  margin: 0 0 32px;
  border-radius: 12px;
  padding: 18px 22px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.mswing-contact-form__notice--success {
  background: rgba(244, 237, 227, 0.08);
  color: var(--mswing-ink);
  border: 1px solid rgba(244, 237, 227, 0.24);
}

.mswing-contact-form__notice--error {
  background: rgba(200, 16, 46, 0.16);
  color: var(--mswing-ink);
  border: 1px solid rgba(200, 16, 46, 0.54);
}

.mswing-contact-form__notice p {
  margin: 0;
}

.mswing-contact-form__notice p+p {
  margin-top: 10px;
}

.mswing-contact-form__notice ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.mswing-contact-form__notice li+li {
  margin-top: 4px;
}

body.mswing-page-leaving .mswing-video-template> :not(.mswing-home-2__header):not(.mswing-home-2__modal),
body.mswing-page-leaving .mswing-contact-page__content,
body.mswing-page-leaving .mswing-about-page__stage {
  opacity: 0;
  transition: opacity 420ms ease;
}

html.mswing-ready body.mswing-body {
  opacity: 0;
}

html.mswing-ready body.mswing-body.mswing-page-entered {
  opacity: 1;
  transition: opacity 520ms ease;
}

html.mswing-ready body.mswing-body.mswing-page-leaving {
  opacity: 0;
  transition-duration: 420ms;
}

html.mswing-ready body.mswing-body:not(:has(.mswing-home-2)) .mswing-home-2__header,
html.mswing-ready body.mswing-body:not(:has(.mswing-home-2)) .mswing-home-2__footer-bottom {
  opacity: 0;
}

body.mswing-page-entered:not(:has(.mswing-home-2)) .mswing-home-2__header {
  animation: mswing-home-header-in 620ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

body.mswing-page-entered:not(:has(.mswing-home-2)) .mswing-home-2__footer-bottom {
  animation: mswing-home-footer-in 620ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
}

@keyframes mswingContentFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body.mswing-menu-open {
  overflow: hidden;
}

.mswing-page-mariage {
  min-height: 100vh;
  background: var(--mswing-bg);
  overflow-x: hidden;
}

.mswing-page-corporate {
  min-height: 100vh;
  background: var(--mswing-bg);
  overflow-x: hidden;
}

.mswing-about-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--mswing-bg);
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
}

.mswing-about-page>.mswing-home-2__footer {
  position: relative;
  height: 41px;
}

.mswing-about-team-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--mswing-bg);
  color: var(--mswing-ink);
}

.mswing-about-team-page>.mswing-home-2__footer {
  position: relative;
  height: 41px;
}

.mswing-legal-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--mswing-bg);
  color: var(--mswing-ink);
}

.mswing-legal-page>.mswing-home-2__footer {
  position: relative;
  height: 41px;
}

.mswing-legal-page__stage {
  min-height: 100vh;
  padding: 176px 24px 160px;
  opacity: 0;
  animation: mswingContentFadeIn 360ms ease forwards;
}

.mswing-legal-page__content {
  width: min(900px, 100%);
  margin: 0 auto;
}

.mswing-legal-page h1 {
  margin: 0 0 80px;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: clamp(54px, 6vw, 78px);
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-weight: 300;
  letter-spacing: -3.32px;
  line-height: 1.12;
}

.mswing-legal-page__body {
  color: #949494;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.7;
}

.mswing-legal-page__body h2 {
  margin: 58px 0 16px;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: 26px;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-weight: 300;
  line-height: 1.2;
  text-transform: uppercase;
}

.mswing-legal-page__body p {
  margin: 0;
}

.mswing-legal-page__body strong {
  color: var(--mswing-ink);
  font-weight: 600;
}

.mswing-about-team {
  padding: 136px 0 160px;
  opacity: 0;
  animation: mswingContentFadeIn 360ms ease forwards;
}

.mswing-about-team__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 676px));
  grid-template-rows: 745px 717px 695px auto;
  column-gap: 20px;
  width: min(1372px, calc(100% - 48px));
  margin: 0 auto;
}

.mswing-about-team__intro {
  padding: 41px 0 80px 41px;
}

.mswing-about-team__eyebrow {
  margin: 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.98px;
  line-height: 17.5px;
  text-transform: uppercase;
}

.mswing-about-team__intro h1 {
  margin: 57px 0 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: 78px;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-weight: 300;
  letter-spacing: -3.32px;
  line-height: 90px;
}

.mswing-about-team__intro h1 span,
.mswing-about-team__intro h1 em {
  display: block;
}

.mswing-about-team__intro h1 em {
  color: var(--mswing-red-glow);
  font-style: italic;
}

.mswing-about-team__intro-text {
  width: min(560px, 100%);
  margin-top: 57px;
  color: #949494;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.mswing-about-team__intro-text p,
.mswing-about-team__intro-text ul {
  margin-top: 0;
}

.mswing-about-team__intro-text p,
.mswing-about-team__intro-text ul {
  margin-bottom: 0;
}

.mswing-about-team__intro-text ul {
  padding-left: 21px;
}

.mswing-about-team__member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 10px;
  text-align: center;
}

.mswing-about-team-page.is-reveal-ready .mswing-about-team__intro,
.mswing-about-team-page.is-reveal-ready .mswing-about-team__member {
  opacity: 0;
  transform: translateY(36px);
}

.mswing-about-team-page.is-reveal-ready .mswing-about-team__intro.is-visible,
.mswing-about-team-page.is-reveal-ready .mswing-about-team__member.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms ease var(--mswing-reveal-delay, 0ms),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1) var(--mswing-reveal-delay, 0ms);
}

.mswing-about-team__portrait {
  display: block;
  flex: none;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  object-fit: cover;
}

.mswing-about-team__identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: min(412px, 100%);
}

.mswing-about-team__identity h2 {
  margin: 0;
  color: #fff;
  font-family: var(--mswing-title);
  font-size: 26px;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}

.mswing-about-team__divider {
  display: block;
  width: 12px;
  height: 1px;
  background: var(--mswing-red);
}

.mswing-about-team__role {
  margin: 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.98px;
  line-height: 17.5px;
  text-transform: uppercase;
}

.mswing-about-team__description {
  width: min(382px, 100%);
  margin: 0;
  color: #949494;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.mswing-about-page__stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 190px 24px;
  opacity: 0;
  animation: mswingContentFadeIn 360ms ease forwards;
}

.mswing-story__intro {
  width: min(878px, 100%);
  margin: 0 auto;
  text-align: center;
}

.mswing-story__quote-mark {
  display: block;
  width: 44px;
  height: 33px;
  margin: 0 auto;
}

.mswing-story__intro h1 {
  margin: 70px auto 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: 78px;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-weight: 300;
  letter-spacing: -3.32px;
  line-height: 90px;
}

.mswing-story__intro h1 em {
  color: var(--mswing-red-glow);
  font-style: italic;
}

.mswing-story__signature {
  margin: 125px 0 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1.98px;
  line-height: 17.5px;
  text-transform: uppercase;
}

.mswing-story__chapters {
  width: min(1140px, 100%);
  margin: 196px auto 0;
}

.mswing-story__chapter {
  text-align: center;
}

.mswing-story__chapter+.mswing-story__chapter {
  margin-top: 166px;
}

.mswing-story__chapter--3 {
  margin-top: 104px !important;
}

.mswing-story__chapter h2 {
  margin: 0;
  color: #fff;
  font-family: var(--mswing-title);
  font-size: 26px;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}

.mswing-story__divider {
  display: block;
  width: 12px;
  height: 1px;
  margin: 20px auto 0;
}

.mswing-story__chapter-body {
  position: relative;
  padding-top: 38px;
  margin-top: 42px;
}

.mswing-story__chapter-body--no-image {
  padding-top: 0;
}

.mswing-story__chapter-body--no-image .mswing-story__text {
  position: static;
  width: min(560px, 100%);
  margin: 0 auto;
  transform: none;
}

.mswing-story__text {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  width: min(560px, calc(100% - 48px));
  transform: translateX(-50%);
  color: #949494;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

.mswing-story__text p {
  margin: 0;
}

.mswing-story__text p+p {
  margin-top: 22px;
}

.mswing-story__image {
  display: block;
  width: 100%;
  height: auto;
}

.mswing-page-mariage__stage {
  position: relative;
  min-height: max(100vh, 1181px);
  min-height: max(100dvh, 1181px);
  padding: 186px clamp(24px, 5vw, 80px) 180px;
  background: var(--mswing-bg);
  color: var(--mswing-ink);
}

.mswing-page-mariage__intro {
  position: relative;
  z-index: 2;
  width: min(1360px, 100%);
  margin: 0 auto;
  text-align: center;
}

.mswing-page-mariage__eyebrow {
  margin: 0 0 17px;
  color: var(--mswing-grey);
  font-family: var(--mswing-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3.3px;
  line-height: 16.5px;
  text-transform: uppercase;
}

.mswing-page-mariage h1 {
  margin: 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-serif);
  font-size: clamp(56px, 4.65vw, 78px);
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-weight: 300;
  letter-spacing: -3.32px;
  line-height: 1.12;
}

.mswing-page-mariage h1 em {
  color: var(--mswing-red-glow);
  font-style: italic;
}

.mswing-page-mariage__text {
  width: min(949px, 100%);
  margin: 16px auto 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-serif);
  font-size: 21px;
  font-style: italic;
  font-variation-settings: "SOFT" 0, "WONK" 1;
  font-weight: 300;
  line-height: 29.7px;
}

.mswing-page-mariage__video {
  position: relative;
  z-index: 1;
  width: min(1024px, calc(100vw - 48px));
  aspect-ratio: 1024 / 600;
  margin: 67px auto 0;
  background: #282828;
}

.mswing-page-mariage__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .mswing-page-mariage__stage {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 154px;
  }

  .mswing-page-mariage h1 {
    letter-spacing: 0;
  }

  .mswing-about-page__stage {
    padding-top: 154px;
    padding-bottom: 260px;
  }

  .mswing-story__intro h1 {
    font-size: clamp(48px, 7.2vw, 68px);
    letter-spacing: -2px;
    line-height: 1.12;
  }

  .mswing-story__signature {
    margin-top: 88px;
  }

  .mswing-story__chapters {
    margin-top: 156px;
  }

  .mswing-about-team {
    padding: 130px 24px 180px;
  }

  .mswing-about-team__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    justify-content: center;
    row-gap: 24px;
    width: 100%;
    max-width: 676px;
  }

  .mswing-about-team__intro {
    padding: 44px 20px 70px;
  }

  .mswing-about-team__intro h1 {
    font-size: clamp(50px, 8vw, 68px);
    letter-spacing: -2px;
    line-height: 1.12;
  }
}

@media (max-width: 720px) {
  .mswing-page-mariage__stage {
    padding: 130px 24px 220px;
  }

  .mswing-page-mariage__eyebrow {
    margin-bottom: 14px;
    font-size: 9px;
    letter-spacing: 2.4px;
  }

  .mswing-page-mariage h1 {
    font-size: clamp(40px, 13vw, 56px);
    line-height: 1.02;
  }

  .mswing-page-mariage__text {
    margin-top: 18px;
    font-size: 17px;
    line-height: 24px;
  }

  .mswing-page-mariage__video {
    width: 100%;
    margin-top: 34px;
  }
}

@media (max-width: 1024px) {
  .mswing-home-2__header {
    top: 24px;
    left: clamp(24px, 5vw, 56px);
    right: clamp(24px, 5vw, 56px);
    grid-template-columns: minmax(36px, 1fr) 54px minmax(110px, 1fr);
    z-index: 20;
  }

  .mswing-home-2__nav {
    display: none;
  }

  .mswing-home-2__header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .mswing-home-2__about-link {
    display: none;
  }

  .mswing-home-2__cta {
    display: flex;
    position: static;
    grid-column: 3;
    justify-self: end;
    justify-content: center;
    width: 46px;
    height: 46px;
    min-height: 0;
    max-width: none;
    padding: 0;
    font-size: 8px;
    letter-spacing: 1px;
    line-height: 1;
    transform: none;
    overflow: hidden;
    white-space: nowrap;
  }

  .mswing-home-2__cta span {
    display: none;
  }

  .mswing-home-2__cta img {
    display: block;
    width: 18px;
    height: 18px;
  }

  .mswing-home-2__burger {
    display: inline-flex;
  }

  .mswing-home-2__footer {
    --mswing-mobile-footer-height: 26px;
    font-size: 8px;
    letter-spacing: 2.2px;
  }

  .mswing-about-page>.mswing-home-2__footer {
    height: 26px;
  }

  .mswing-contact-page>.mswing-home-2__footer {
    height: 26px;
  }

  .mswing-about-team-page>.mswing-home-2__footer {
    height: 26px;
  }

  .mswing-legal-page>.mswing-home-2__footer {
    height: 26px;
  }

  .mswing-home-2__footer-bottom {
    height: var(--mswing-mobile-footer-height);
    align-items: flex-end;
    padding-bottom: 6px;
  }

  .mswing-home-2__legal {
    max-width: calc(100vw - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mswing-player {
    bottom: 26px;
    height: 96px;
    z-index: 20;
  }

  .mswing-player__inner {
    position: relative;
    display: grid;
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: 58px 30px;
    align-items: center;
    column-gap: 0;
    width: auto;
    height: 100%;
    margin-inline: clamp(24px, 5vw, 56px);
    padding: 0;
  }

  .mswing-player .mswing-player__info {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    grid-column: 3;
    grid-row: 1;
    transform: none;
    justify-self: end;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 12px;
    font-size: 12px;
    letter-spacing: 3px;
    z-index: 22;
  }

  .mswing-player__info span {
    display: none;
  }

  .mswing-player__info img {
    width: 18px;
    height: 18px;
  }

  .mswing-player__transport {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    grid-column: 2;
    grid-row: 1;
    transform: none;
    justify-self: center;
    width: 122px;
    z-index: 2;
  }

  .mswing-player__play {
    width: 24px;
    height: 28px;
  }

  .mswing-player__icon-pause::before,
  .mswing-player__icon-pause::after {
    width: 8px;
  }

  .mswing-player__sound {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    width: 22px;
    height: 20px;
    transform: none;
    z-index: 4;
  }

  .mswing-player__sound img {
    display: block;
    width: 20px;
    height: auto;
    z-index: 1;
  }

  .mswing-player__socials {
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    transform: none;
    gap: 28px;
  }

  .mswing-player__socials a,
  .mswing-player__socials img {
    width: 22px;
    height: 22px;
  }

  .mswing-info-modal {
    inset: 0;
    justify-content: center;
  }

  .mswing-info-modal__panel {
    --mswing-info-panel-bottom: 122px;
    width: 90vw;
    max-width: 90vw;
    margin-top: 88px;
    margin-right: 0;
    margin-bottom: var(--mswing-info-panel-bottom);
    padding: 64px;
  }

  .mswing-info-modal__scroll {
    width: calc(100% + 32px);
    padding-right: 32px;
  }

  .mswing-info-modal__close {
    left: 50%;
    transform: translateX(-50%);
  }

  .mswing-info-modal__cover {
    height: calc((100vh - 88px - var(--mswing-info-panel-bottom)) / 2);
  }
}

@media (max-width: 720px) {
  .mswing-home-2__header {
    top: 24px;
    left: 24px;
    /* right: max(24px, calc(100vw - 366px)); */
    grid-template-columns: minmax(36px, 1fr) 54px minmax(82px, 1fr);
  }

  .mswing-home-2__cta {
    display: flex;
    position: static;
    grid-column: 3;
    justify-self: end;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-height: 0;
    max-width: none;
    padding: 0;
    font-size: 8px;
    letter-spacing: 1px;
    transform: none;
    overflow: hidden;
  }

  .mswing-home-2__cta span {
    display: none;
  }

  .mswing-home-2__cta img {
    display: block;
    width: 16px;
    height: 16px;
  }

  .mswing-contact-page .mswing-home-2__cta {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: static !important;
    width: 46px !important;
    height: 46px !important;
    background: var(--mswing-red) !important;
  }

  .mswing-about-page__stage {
    padding: 132px 20px 140px;
  }

  .mswing-story__quote-mark {
    width: 34px;
    height: 25px;
  }

  .mswing-story__intro h1 {
    margin-top: 50px;
    font-size: clamp(36px, 9vw, 46px);
    letter-spacing: -1.4px;
    line-height: 1.1;
  }

  .mswing-story__intro h1 em {
    display: block;
  }

  .mswing-story__signature {
    margin-top: 58px;
    font-size: 8px;
    letter-spacing: 1.4px;
    line-height: 15px;
  }

  .mswing-story__chapters {
    margin-top: 128px;
  }

  .mswing-story__chapter+.mswing-story__chapter,
  .mswing-story__chapter--3 {
    margin-top: 112px !important;
  }

  .mswing-story__chapter h2 {
    font-size: clamp(19px, 5.8vw, 25px);
    line-height: 1.2;
  }

  .mswing-story__divider {
    margin-top: 18px;
  }

  .mswing-story__chapter-body {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    margin-top: 34px;
  }

  .mswing-story__text {
    position: static;
    width: min(560px, 100%);
    transform: none;
    font-size: 13px;
    line-height: 21px;
  }

  .mswing-story__text p+p {
    margin-top: 18px;
  }

  .mswing-story__image {
    width: calc(100% + 40px);
    max-width: none;
    margin: 36px -20px 0;
  }

  .mswing-about-team {
    padding: 118px 20px 110px;
  }

  .mswing-about-team__grid {
    row-gap: 0;
  }

  .mswing-about-team__intro {
    padding: 32px 0 54px;
  }

  .mswing-about-team__eyebrow {
    font-size: 9px;
    letter-spacing: 1.7px;
  }

  .mswing-about-team__intro h1 {
    margin-top: 38px;
    font-size: clamp(40px, 12vw, 54px);
    letter-spacing: -1.5px;
    line-height: 1.08;
  }

  .mswing-about-team__intro-text {
    margin-top: 42px;
    font-size: 13px;
    line-height: 21px;
  }

  .mswing-about-team__member {
    gap: 30px;
    padding: 56px 0;
  }

  .mswing-about-team__portrait {
    width: min(310px, 76vw);
    height: min(310px, 76vw);
  }

  .mswing-about-team__identity {
    gap: 12px;
  }

  .mswing-about-team__identity h2 {
    font-size: clamp(21px, 6.5vw, 26px);
  }

  .mswing-about-team__role {
    font-size: 9px;
    letter-spacing: 1.6px;
  }

  .mswing-about-team__description {
    font-size: 13px;
    line-height: 21px;
  }

  .mswing-legal-page__stage {
    padding: 132px 24px 110px;
  }

  .mswing-legal-page h1 {
    margin-bottom: 54px;
    font-size: clamp(40px, 12vw, 54px);
    letter-spacing: -1.5px;
  }

  .mswing-legal-page__body {
    font-size: 13px;
    line-height: 1.65;
  }

  .mswing-legal-page__body h2 {
    margin-top: 44px;
    font-size: 21px;
  }

  .mswing-home-2__footer {
    --mswing-mobile-footer-height: 26px;
    font-size: 7px;
    letter-spacing: 1.7px;
    line-height: 13px;
  }

  .mswing-home-2__legal {
    display: block;
    white-space: nowrap;
  }

  .mswing-home-2__legal-copy {
    display: none;
  }

  .mswing-home-2__legal-link:first-of-type {
    border-left: 0;
    padding-left: 0;
  }

  .mswing-home-2__footer-bottom {
    height: var(--mswing-mobile-footer-height);
    align-items: flex-end;
    padding-bottom: 6px;
  }

  .mswing-player {
    bottom: 26px;
    height: 96px;
  }

  .mswing-player__inner {
    position: relative;
    display: grid;
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: 58px 30px;
    align-items: center;
    column-gap: 0;
    width: auto;
    height: 100%;
    margin-inline: 24px;
    padding: 0;
  }

  .mswing-player .mswing-player__info {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    grid-column: 3;
    grid-row: 1;
    transform: none;
    justify-self: end;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 12px;
    font-size: 12px;
    letter-spacing: 3px;
  }

  .mswing-player__info span {
    display: none;
  }

  .mswing-player__info img {
    width: 18px;
    height: 18px;
  }

  .mswing-player__transport {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: 14px 18px 14px;
    justify-self: center;
    width: 122px;
    z-index: 2;
  }

  .mswing-player__play {
    width: 24px;
    height: 25px;
  }

  .mswing-player__icon-pause::before,
  .mswing-player__icon-pause::after {
    width: 8px;
  }

  .mswing-player__sound {
    position: relative;
    top: -1px;
    left: auto;
    right: auto;
    grid-column: 1;
    grid-row: 1;
    justify-self: end;
    width: 20px;
    height: 16px;
    transform: none;
    z-index: 4;
  }

  .mswing-player__sound img {
    display: block;
    width: 20px;
    height: auto;
    z-index: 1;
  }

  .mswing-player__socials {
    position: static;
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
    transform: none;
    gap: 28px;
  }

  .mswing-player__socials a,
  .mswing-player__socials img {
    width: 19px;
    height: 19px;
  }

  .mswing-info-modal {
    inset: 0;
    justify-content: center;
  }

  .mswing-info-modal__panel {
    --mswing-info-panel-bottom: 122px;
    width: 90vw;
    max-width: 90vw;
    margin-top: 88px;
    margin-right: 0;
    margin-bottom: var(--mswing-info-panel-bottom);
    padding: 64px;
  }

  .mswing-info-modal__cover {
    height: calc((100vh - 88px - var(--mswing-info-panel-bottom)) / 2);
  }

  .mswing-info-modal__wedding-content {
    padding: 0;
  }

  .mswing-info-modal__panel--wedding .mswing-info-modal__wedding-content h2 {
    font-size: clamp(18px, 4.9vw, 25px);
  }

  .mswing-info-modal__intro {
    margin-top: 28px;
    font-size: 12px;
  }

  .mswing-info-modal__features {
    gap: 38px;
    margin-top: 46px;
  }

  .mswing-info-modal__feature {
    display: block;
  }

  .mswing-info-modal__feature h3 {
    font-size: 15px;
  }

  .mswing-info-modal__feature p {
    margin-top: 8px;
    font-size: 11px;
  }

  .mswing-info-modal__footer {
    gap: 18px;
    margin-top: 48px;
    padding-top: 28px;
  }

  .mswing-info-modal__footer-title {
    font-size: 10px;
  }

  .mswing-info-modal__footer-text {
    font-size: 10px;
  }

  .mswing-contact-page__stage {
    padding: 124px 20px 52px;
  }

  .mswing-contact-details {
    margin-bottom: 62px;
  }

  .mswing-contact-details h1 {
    margin-bottom: 30px;
    font-size: clamp(22px, 7vw, 30px);
  }

  .mswing-contact-form-title {
    margin-bottom: 32px;
    font-size: clamp(22px, 6.5vw, 28px);
  }

  .mswing-contact-details__list {
    gap: 24px;
  }

  .mswing-contact-details__row {
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
  }

  .mswing-contact-details__row p {
    font-size: 14px;
    letter-spacing: 0.015em;
    line-height: 1.6;
  }

  .mswing-contact-details__icon {
    width: 22px;
    max-height: 26px;
    margin-top: 1px;
  }

  .mswing-contact-details__production {
    margin-top: 34px;
    padding-top: 24px;
  }

  .mswing-contact-details__production p {
    font-size: 12px;
    line-height: 1.6;
  }

  .mswing-contact-form {
    gap: 38px;
    font-size: 16px;
  }

  .mswing-contact-form__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .mswing-contact-form__phone-row {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 20px;
  }

  .mswing-contact-form input[type="text"],
  .mswing-contact-form input[type="email"],
  .mswing-contact-form input[type="tel"] {
    height: 78px;
    padding: 29px 0 8px;
    font-size: 21px;
  }

  .mswing-contact-form textarea {
    min-height: 160px;
    padding: 38px 0 14px;
    font-size: 21px;
  }

  .mswing-contact-form__label {
    top: 25px;
    font-size: 14px;
  }

  .mswing-contact-form__field:focus-within .mswing-contact-form__label,
  .mswing-contact-form__field.is-filled .mswing-contact-form__label,
  .mswing-contact-form__field:has(input:not(:placeholder-shown)) .mswing-contact-form__label,
  .mswing-contact-form__field:has(textarea:not(:placeholder-shown)) .mswing-contact-form__label {
    font-size: 8px;
    transform: translateY(-18px);
  }

  .mswing-contact-form__help {
    margin-top: 8px;
    font-size: 11px;
    padding: 0;
  }

  .mswing-contact-form__choices,
  .mswing-contact-form__choices--inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mswing-contact-form input[type="radio"],
  .mswing-contact-form input[type="checkbox"] {
    width: 20px;
    height: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .mswing-about-team-page.is-reveal-ready .mswing-about-team__intro,
  .mswing-about-team-page.is-reveal-ready .mswing-about-team__member {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.mswing-button img {
  width: 14px;
  height: 14px;
}

.mswing-button--ghost {
  background: transparent;
  border-color: var(--mswing-line);
  box-shadow: none;
  padding-inline: 33px;
}

.mswing-showreel {
  display: grid;
  gap: 64px;
  justify-items: center;
  padding: 150px var(--mswing-gutter) 118px;
}

.mswing-section-title {
  display: grid;
  gap: 22px;
  justify-items: center;
  text-align: center;
}

.mswing-section-title h2 {
  margin: 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: clamp(48px, 4.28vw, 72px);
  font-style: italic;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -2.16px;
}

.mswing-section-title p:last-child {
  margin: 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-mono);
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2.64px;
  text-transform: uppercase;
}

.mswing-media {
  position: relative;
  display: block;
  width: min(100%, var(--mswing-max));
  aspect-ratio: 1360 / 765;
  overflow: hidden;
}

.mswing-media img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mswing-play {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: clamp(76px, 7.85vw, 132px);
  height: clamp(76px, 7.85vw, 132px);
  place-items: center;
  border-radius: 999px;
  background: rgba(200, 16, 46, 0.44);
  transform: translate(-50%, -50%);
}

.mswing-play img {
  width: 28px;
  height: 32px;
}

.mswing-manifesto {
  display: grid;
  gap: 32px;
  justify-items: center;
  padding: 255px var(--mswing-gutter) 150px;
  text-align: center;
}

.mswing-manifesto blockquote {
  width: min(100%, 1148px);
  margin: 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: clamp(38px, 4.64vw, 78px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1.95px;
}

.mswing-rule {
  width: 80px;
  height: 1px;
  background: var(--mswing-red);
}

.mswing-manifesto p {
  margin: 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-mono);
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 3.3px;
  text-transform: uppercase;
}

.mswing-booking {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 32px;
  padding: 180px var(--mswing-gutter);
  text-align: center;
}

.mswing-booking__halo {
  position: absolute;
  inset: 80px auto auto 50%;
  width: 906px;
  height: 800px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.35), transparent 65%);
  filter: blur(20px);
  transform: translateX(-50%);
}

.mswing-eyebrow--center {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--mswing-red);
}

.mswing-eyebrow--center::before,
.mswing-eyebrow--center::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--mswing-red);
}

.mswing-booking h2 {
  position: relative;
  margin: 0;
  color: var(--mswing-ink);
  font-family: var(--mswing-title);
  font-size: clamp(70px, 9vw, 151px);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: clamp(-4px, -0.4vw, -6.8px);
}

.mswing-booking__text {
  position: relative;
  width: min(100%, 640px);
  margin: 0;
  color: var(--mswing-ink);
  font-size: 23px;
  font-style: italic;
  font-weight: 300;
  line-height: 33.35px;
}

.mswing-booking__actions {
  position: relative;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 1px;
}

.mswing-footer {
  display: grid;
  grid-template-columns: 1fr 252px 252px;
  gap: 0;
  align-items: start;
  padding: 168px var(--mswing-gutter) 40px;
  color: var(--mswing-ink);
}

.mswing-footer__brand {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--mswing-red);
  font-size: 55px;
  font-weight: 300;
  line-height: 49.6px;
  letter-spacing: -2.2px;
}

.mswing-footer__brand img {
  width: 61px;
  height: 41px;
}

.mswing-footer__col {
  display: grid;
  gap: 8px;
}

.mswing-footer__col h3 {
  margin: 0 0 14px;
  color: var(--mswing-muted);
  font-family: var(--mswing-mono);
  font-size: 11px;
  font-weight: 400;
  line-height: 16.5px;
  letter-spacing: 2.42px;
  text-transform: uppercase;
}

.mswing-footer__col a {
  color: var(--mswing-ink);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 27px;
}

.mswing-footer__line {
  grid-column: 1 / -1;
  height: 1px;
  margin-top: 214px;
  background: rgba(138, 132, 120, 0.45);
}

.mswing-footer__copy,
.mswing-footer__credit {
  margin: 16px 0 0;
  color: var(--mswing-muted);
  font-family: var(--mswing-mono);
  font-size: 10px;
  line-height: 15px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.mswing-footer__credit {
  grid-column: 3;
  justify-self: end;
}

.mswing-default {
  min-height: 100vh;
  padding: 120px var(--mswing-gutter);
}

.mswing-default__inner {
  width: min(100%, 920px);
}

@media (max-width: 1100px) {
  .mswing-nav {
    grid-template-columns: auto 1fr;
    padding-inline: 24px;
  }

  .mswing-nav__links {
    display: none;
  }

  .mswing-nav__cta {
    justify-self: end;
  }

  .mswing-hero {
    min-height: 860px;
    padding-bottom: 84px;
  }

  .mswing-hero__lower {
    grid-template-columns: 1fr;
  }

  .mswing-stats {
    flex-wrap: wrap;
    gap: 28px;
  }

  .mswing-footer {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .mswing-footer__line,
  .mswing-footer__credit {
    grid-column: auto;
  }

  .mswing-footer__line {
    margin-top: 40px;
  }

  .mswing-footer__credit {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  :root {
    --mswing-gutter: 20px;
  }

  .mswing-nav {
    height: 72px;
  }

  .mswing-nav__cta {
    padding: 10px 14px;
  }

  .mswing-hero {
    min-height: 760px;
  }

  .mswing-hero h1 {
    font-size: clamp(58px, 18vw, 86px);
  }

  .mswing-hero__intro {
    font-size: 19px;
  }

  .mswing-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 12px;
  }

  .mswing-stat strong {
    font-size: 30px;
    line-height: 38px;
  }

  .mswing-stat span,
  .mswing-eyebrow,
  .mswing-section-title p:last-child {
    white-space: normal;
  }

  .mswing-showreel {
    padding-block: 90px 70px;
  }

  .mswing-media {
    aspect-ratio: 4 / 3;
  }

  .mswing-manifesto {
    padding-block: 120px 80px;
  }

  .mswing-booking {
    padding-block: 120px;
  }

  .mswing-booking__text {
    font-size: 20px;
    line-height: 30px;
  }

  .mswing-booking__actions,
  .mswing-button {
    width: 100%;
  }
}