: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-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);
  backdrop-filter: blur(4px);
  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%;
  }
}

