:root {
  --black: #000;
  --off-black: #040404;
  --white: #fff;
  --muted: #a8a8a8;
  --dim: #707070;
  --red: #c60000;
  --red-dark: #8d0000;
  --font-display: "Oswald", "Arial Narrow", Arial, sans-serif;
  --font-body: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  display: block;
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 62px;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: #000;
}

.menu-trigger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 35;
  display: flex;
  width: 112px;
  height: 62px;
  flex-direction: column;
  justify-content: center;
  padding: 0 58px 0 16px;
  border: 0;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  clip-path: polygon(0 0, 100% 0, 72% 100%, 0 100%);
}

.menu-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.menu-trigger::after {
  content: "";
  position: absolute;
  inset: 0 11px 0 0;
  z-index: -1;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transform: skewX(-28deg);
  transform-origin: right top;
}

.menu-trigger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-trigger[aria-expanded="true"] span:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 22px;
  width: 24px;
  margin: 0;
  transform: translateY(-50%) rotate(45deg);
}

.menu-trigger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-trigger[aria-expanded="true"] span:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 22px;
  width: 24px;
  margin: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.brand-mark {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: auto;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}

.brand-mark span {
  display: inline-block;
  transform: skewX(-12deg);
}

.header-tools {
  position: absolute;
  top: 11px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 0;
  pointer-events: auto;
}

.header-tools a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  opacity: 0.78;
  transition: opacity 160ms ease;
}

.header-tools a:hover {
  opacity: 1;
}

.header-tools svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.nav-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100vw;
  height: 100vh;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0 42%, rgba(0, 0, 0, 0.91) 62%, rgba(0, 0, 0, 0.72)),
    url("assets/images/hero-suv.png") center / cover;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
  visibility: hidden;
}

.nav-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.nav-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: min(56vw, 640px);
  background: #020202;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

.nav-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.96)),
    radial-gradient(circle at 70% 38%, rgba(198, 0, 0, 0.13), transparent 32%);
}

.nav-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  width: min(520px, 82vw);
  flex-direction: column;
  justify-content: center;
  padding: 96px 0 96px clamp(34px, 7vw, 118px);
}

.nav-inner p {
  margin: 0 0 34px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.nav-meta {
  position: absolute;
  z-index: 2;
  left: clamp(34px, 7vw, 118px);
  bottom: 42px;
  display: flex;
  gap: 28px;
  color: #bdbdbd;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-panel a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 700;
  line-height: 0.98;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-panel a:hover {
  color: var(--red);
  transform: translateX(8px);
}

.nav-meta a {
  display: inline;
  padding: 0;
  border: 0;
  font-size: inherit;
  line-height: inherit;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #080808;
}

.hero img,
.hero-media-stack,
.hero-media {
  display: block;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
}

.hero-media-stack {
  position: relative;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 900ms ease-in-out;
}

.hero-video.is-active {
  opacity: 1;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, 0.56) 81%, #000 100%),
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.13), transparent 35%);
}

.hero-caption {
  position: absolute;
  left: 50%;
  bottom: clamp(74px, 10vh, 118px);
  width: min(780px, calc(100% - 42px));
  transform: translateX(-50%);
  text-align: center;
}

.hero-caption h1 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-caption p {
  width: min(620px, 100%);
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 600;
}

.hero-progress,
.news-progress {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 44px;
}

.hero-progress span,
.news-progress span,
.news-progress button {
  display: block;
  width: 24px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.28);
}

.hero-progress .is-active,
.news-progress .is-active {
  background: var(--red);
}

.page-hero,
.performance-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: #000;
}

.page-hero-media,
.performance-hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #000;
}

.page-hero-media img,
.performance-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.06) brightness(0.82);
  transform: scale(1.04) translateY(1.6%);
  transform-origin: center center;
}

.page-hero-media::before,
.page-hero-media::after,
.performance-hero-media::before,
.performance-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-media::before,
.performance-hero-media::before {
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.68) 0, rgba(0, 0, 0, 0.24) 18%, rgba(0, 0, 0, 0) 38%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1), transparent 34%);
}

.page-hero-media::after,
.performance-hero-media::after {
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 51%, rgba(0, 0, 0, 0.4) 76%, #000 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.4));
}

.page-performance .page-hero-media img {
  filter: saturate(0.96) contrast(1.04) brightness(0.94);
}

.page-performance .page-hero-media::before {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.46) 0, rgba(0, 0, 0, 0.16) 18%, rgba(0, 0, 0, 0) 38%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 34%);
}

.page-performance .page-hero-media::after {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 54%, rgba(0, 0, 0, 0.26) 78%, #000 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0) 80%, rgba(0, 0, 0, 0.24));
}

.page-hero-copy,
.performance-hero-copy {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 168px;
  width: min(840px, calc(100% - 40px));
  transform: translateX(-50%);
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.page-hero-copy h1,
.performance-hero-copy h1 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.page-hero-copy p,
.performance-hero-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
}

.page-hero--about .page-hero-media img {
  object-position: center center;
  transform: scale(1.05) translateY(1.2%);
}

.page-hero--services .page-hero-media img {
  object-position: center center;
  transform: scale(1.02) translateY(0);
}

.page-hero--contact .page-hero-media img {
  object-position: center center;
  transform: scale(1.08) translateY(1.4%);
}

.page-spacer,
.performance-page-spacer {
  min-height: 60vh;
  background: #000;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(44px, 6vw, 106px);
  width: min(1180px, calc(100% - 56px));
  min-height: 430px;
  align-items: center;
  margin: 0 auto;
  padding: 84px 0 94px;
  background: #000;
}

.services-intro-copy {
  width: min(680px, 100%);
}

.service-kicker {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.services-intro h2,
.service-process h2,
.service-split h2,
.service-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.services-intro h2 {
  font-size: clamp(36px, 4.1vw, 58px);
}

.services-intro p,
.service-process p,
.service-split p,
.service-cta p,
.service-detail p {
  margin: 26px 0 0;
  color: #b8b8b8;
  font-size: 16px;
  line-height: 1.56;
}

.services-intro-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
  justify-content: flex-end;
}

.services-intro-meta span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.service-selector {
  padding: 106px 0 128px;
  background: #050505;
}

.service-selector .section-title {
  margin-bottom: 70px;
}

.service-selector .section-title p {
  font-size: 22px;
}

.service-selector-layout {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(360px, 42%);
  gap: 34px;
  width: min(91vw, 1480px);
  margin: 0 auto;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: #101010;
  background-position: center;
  background-size: cover;
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-card::before {
  background-image: inherit;
  background-position: inherit;
  background-size: inherit;
  filter: saturate(0.82) brightness(0.55);
  transform: scale(1.03);
  transition: filter 220ms ease, transform 220ms ease;
}

.service-card::after {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.86)),
    linear-gradient(132deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.16) 56%, rgba(0, 0, 0, 0.68));
  transition: background 180ms ease;
}

.service-card:hover,
.service-card.is-active {
  border-color: var(--red);
  box-shadow: 0 24px 36px rgba(198, 0, 0, 0.2);
  transform: translateY(-3px);
}

.service-card:hover::before,
.service-card.is-active::before {
  filter: saturate(0.95) brightness(0.72);
  transform: scale(1.08);
}

.service-card:hover::after,
.service-card.is-active::after {
  background:
    linear-gradient(to bottom, rgba(198, 0, 0, 0.04), rgba(0, 0, 0, 0.78)),
    linear-gradient(132deg, rgba(198, 0, 0, 0.72), rgba(0, 0, 0, 0.14) 56%, rgba(0, 0, 0, 0.68));
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-number {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.service-card strong,
.service-card em,
.service-card > span:last-child {
  display: block;
  font-style: normal;
}

.service-card strong {
  width: min(360px, 100%);
  font-family: var(--font-display);
  font-size: clamp(26px, 1.75vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
}

.service-card em {
  width: min(390px, 100%);
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.45;
}

.service-card > span:last-child {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-card--diagnostics {
  background-image: url("assets/images/blue-sedan.png");
  background-position: 70% 48%;
}

.service-card--maintenance {
  background-image: url("assets/images/configure-mechanic-shop.png");
  background-position: 48% 56%;
}

.service-card--chassis {
  background-image: url("assets/images/race-coupe.png");
  background-position: 40% 62%;
}

.service-card--drivetrain {
  background-image: url("assets/images/service-engine-builds.png?v=qmsports-engine-real-1");
  background-position: center 44%;
}

.service-card--tires {
  background-image: url("assets/images/service-cayenne-square.png?v=qmsports-cayenne-square-2");
  background-position: center;
}

.service-card--reliability {
  background-image: url("assets/images/black-suv.png");
  background-position: 58% 68%;
}

.service-detail-panel {
  align-self: start;
  position: sticky;
  top: 94px;
  scroll-margin-top: 78px;
  min-height: 620px;
  padding: clamp(34px, 3.6vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(198, 0, 0, 0.16), rgba(198, 0, 0, 0) 30%),
    #080808;
}

.service-detail[hidden] {
  display: none;
}

.service-detail h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(30px, 2.1vw, 44px);
  font-weight: 500;
  line-height: 1.18;
  text-transform: uppercase;
}

.service-detail-columns {
  display: grid;
  gap: 28px;
  margin: 34px 0;
}

.service-detail-columns strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: #c8c8c8;
  font-size: 15px;
  line-height: 1.46;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 17px;
}

.service-detail li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: translateY(-50%);
}

.service-process {
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  gap: clamp(44px, 6vw, 104px);
  width: min(1180px, calc(100% - 56px));
  align-items: center;
  margin: 0 auto;
  padding: 112px 0 118px;
  background: #000;
}

.service-process h2,
.service-split h2,
.service-cta h2 {
  font-size: clamp(28px, 2.25vw, 40px);
}

.service-process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-process-steps li {
  min-height: 170px;
  padding: 24px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.service-process-steps li:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.service-process-steps span,
.service-process-steps strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.service-process-steps span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 15px;
  font-weight: 700;
}

.service-process-steps strong {
  margin-top: 42px;
  font-size: clamp(20px, 1.25vw, 28px);
  font-weight: 500;
  line-height: 1.15;
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(320px, 42%);
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  background: #050505;
}

.service-split-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.service-split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #050505 0, rgba(5, 5, 5, 0) 16%, rgba(5, 5, 5, 0) 73%, #050505 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.04) 54%, #050505 100%);
  pointer-events: none;
}

.service-split-media img {
  height: 720px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(0.78);
}

.service-split-copy {
  width: min(540px, calc(100% - 58px));
  margin: 0 auto;
  padding: 76px 0;
}

.service-split-grid {
  display: grid;
  gap: 24px;
  margin: 34px 0;
}

.service-split-grid article {
  padding-left: 22px;
  border-left: 2px solid rgba(198, 0, 0, 0.82);
}

.service-split-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-split-grid p {
  margin-top: 10px;
}

.service-cta {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 88px 24px 110px;
  background: #050505;
  text-align: center;
}

.service-cta-inner {
  width: min(720px, 100%);
}

.service-cta p {
  margin-right: auto;
  margin-left: auto;
}

.service-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(44px, 6vw, 104px);
  width: min(1180px, calc(100% - 56px));
  align-items: center;
  margin: 0 auto;
  padding: 96px 0 108px;
  background: #e9ecef;
  color: #050505;
}

.about-intro-copy {
  width: min(720px, 100%);
}

.about-intro h2,
.about-shop-copy h2,
.about-platforms h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-intro h2 {
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: 0.98;
}

.about-intro p,
.about-values p,
.about-shop-copy p,
.about-platforms p {
  margin: 24px 0 0;
  color: #343434;
  font-size: 16px;
  line-height: 1.56;
}

.about-intro .service-kicker {
  color: #777;
}

.about-intro-panel {
  align-self: stretch;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3vw, 44px);
  background:
    linear-gradient(145deg, rgba(198, 0, 0, 0.2), rgba(198, 0, 0, 0) 34%),
    #050505;
  color: #fff;
  text-transform: uppercase;
}

.about-intro-panel span,
.about-intro-panel strong {
  display: block;
  font-family: var(--font-display);
}

.about-intro-panel span {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
  font-weight: 700;
}

.about-intro-panel strong {
  font-size: clamp(30px, 2.2vw, 44px);
  font-weight: 500;
  line-height: 1.12;
}

.about-intro-panel p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.56;
  text-transform: none;
}

.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  margin: 0;
  background: #000;
}

.about-proof-strip span {
  min-height: 116px;
  display: grid;
  place-items: center;
  padding: 24px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(21px, 1.45vw, 30px);
  font-weight: 500;
  line-height: 1.12;
  text-align: center;
  text-transform: uppercase;
}

.about-proof-strip span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.about-values {
  padding: 108px 0 116px;
  background: #f5f5f5;
  color: #050505;
}

.about-values .section-title {
  margin-bottom: 74px;
}

.about-values .section-title h2,
.about-values .section-title p,
.about-platforms .section-title h2,
.about-platforms .section-title p {
  color: #050505;
}

.about-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(1240px, calc(100% - 56px));
  margin: 0 auto;
}

.about-value-grid article {
  position: relative;
  min-height: 360px;
  padding: 38px 34px;
  border-left: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
}

.about-value-grid article:last-child {
  border-right: 1px solid rgba(0, 0, 0, 0.16);
}

.about-value-grid article::before {
  content: "";
  position: absolute;
  top: 34px;
  right: 34px;
  width: 54px;
  height: 4px;
  background: var(--red);
}

.about-value-grid span,
.about-value-grid strong,
.about-platform-grid strong,
.about-shop-list strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.about-value-grid span {
  color: rgba(0, 0, 0, 0.48);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.about-value-grid strong {
  margin-top: 96px;
  font-size: clamp(28px, 2vw, 40px);
  font-weight: 500;
  line-height: 1.14;
}

.about-value-grid p {
  font-size: 15px;
}

.about-statement {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #000;
}

.about-statement-media {
  position: absolute;
  inset: 0;
}

.about-statement-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 70%, #000 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.72) 100%);
  pointer-events: none;
}

.about-statement-media img {
  height: 640px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) brightness(0.92);
}

.about-statement-label {
  position: absolute;
  right: clamp(28px, 10vw, 190px);
  bottom: clamp(70px, 8vw, 134px);
  z-index: 1;
  width: min(500px, calc(100% - 56px));
  padding: 30px 34px 34px;
  background: #000;
  color: #fff;
  text-transform: uppercase;
}

.about-statement-label span,
.about-statement-label h2 {
  font-family: var(--font-display);
}

.about-statement-label span {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  font-weight: 700;
}

.about-statement-label h2 {
  margin: 0;
  font-size: clamp(36px, 3.2vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

.about-statement-label p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.55;
  text-transform: none;
}

.about-shop-split {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(320px, 42%);
  align-items: center;
  min-height: 700px;
  overflow: hidden;
  background: #050505;
}

.about-shop-media {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.about-shop-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #050505 0, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 74%, #050505 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02) 58%, #050505 100%);
  pointer-events: none;
}

.about-shop-media img {
  height: 700px;
  object-fit: cover;
  object-position: center 44%;
  filter: saturate(0.95) brightness(0.9);
}

.about-shop-copy {
  width: min(560px, calc(100% - 58px));
  margin: 0 auto;
  padding: 78px 0;
}

.about-shop-copy p,
.about-shop-list p {
  color: #b8b8b8;
}

.about-shop-copy h2 {
  font-size: clamp(30px, 2.65vw, 48px);
}

.about-shop-list {
  display: grid;
  gap: 24px;
  margin-top: 34px;
}

.about-shop-list article {
  padding-left: 22px;
  border-left: 2px solid rgba(198, 0, 0, 0.82);
}

.about-shop-list strong,
.about-platform-grid strong {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.about-shop-list p,
.about-platform-grid p {
  margin-top: 10px;
  font-size: 15px;
}

.about-platforms {
  padding: 112px 0 120px;
  background: #e9ecef;
  color: #050505;
}

.about-platforms .section-title {
  margin-bottom: 74px;
}

.about-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.about-platform-grid article {
  min-height: 250px;
  padding: 34px;
  border-top: 4px solid var(--red);
  background: #fff;
}

.about-cta {
  background: #000;
}

.about-page main {
  background: #000;
}

.about-cinema-intro {
  padding: clamp(92px, 8vw, 146px) 24px clamp(76px, 7vw, 122px);
  background:
    radial-gradient(circle at 50% 0, rgba(88, 88, 88, 0.28), rgba(0, 0, 0, 0) 42%),
    linear-gradient(to bottom, #000 0, #050505 100%);
  text-align: center;
}

.about-cinema-intro-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.about-cinema-intro h2,
.about-hero-panel-copy h2,
.about-process-copy h2,
.about-platform-band h2,
.about-final-cta-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-cinema-intro h2 {
  margin-top: 18px;
  font-size: clamp(58px, 7.3vw, 122px);
}

.about-cinema-intro p {
  width: min(760px, 100%);
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.58;
}

.about-cinema-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(980px, 100%);
  margin: clamp(48px, 5vw, 78px) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-cinema-metrics span {
  position: relative;
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 20px 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.55vw, 31px);
  font-weight: 500;
  line-height: 1.12;
  text-transform: uppercase;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.about-cinema-metrics span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--red);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.about-cinema-metrics span:hover {
  z-index: 1;
  background: var(--red);
  border-color: rgba(198, 0, 0, 0.7);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.36);
}

.about-cinema-metrics span:hover::before {
  opacity: 1;
}

.about-cinema-metrics span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.about-hero-panel {
  position: relative;
  min-height: clamp(640px, 55vw, 860px);
  overflow: hidden;
  background: #000;
}

.about-hero-panel-media,
.about-final-cta-media {
  position: absolute;
  inset: 0;
}

.about-hero-panel-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0.05) 16%, rgba(0, 0, 0, 0.02) 62%, #000 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.76) 100%);
}

.about-hero-panel-media img,
.about-final-cta-media img {
  height: 100%;
  object-fit: cover;
}

.about-hero-panel-media img {
  object-position: center;
  filter: saturate(0.9) contrast(1.04) brightness(0.84);
}

.about-hero-panel-copy {
  position: absolute;
  right: clamp(28px, 9vw, 164px);
  bottom: clamp(86px, 8vw, 144px);
  z-index: 1;
  width: min(520px, calc(100% - 56px));
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.88);
}

.about-hero-panel-copy h2 {
  margin-top: 18px;
  font-size: clamp(38px, 3.5vw, 66px);
}

.about-hero-panel-copy p,
.about-process-copy p,
.about-platform-band p,
.about-final-cta-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.56;
}

.about-process-split {
  display: grid;
  grid-template-columns: minmax(360px, 42%) minmax(0, 58%);
  min-height: 720px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(198, 0, 0, 0.12), rgba(198, 0, 0, 0) 26%),
    #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-process-copy {
  align-self: center;
  width: min(590px, calc(100% - 72px));
  margin: 0 auto;
  padding: 88px 0;
}

.about-process-copy h2 {
  margin-top: 18px;
  font-size: clamp(38px, 3.4vw, 64px);
}

.about-process-list {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-process-list div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 26px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-process-list strong,
.about-image-duo strong,
.about-platform-rows strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-process-list strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
}

.about-process-list span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.about-process-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
}

.about-process-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, #050505 0, rgba(0, 0, 0, 0.18) 20%, rgba(0, 0, 0, 0.04) 74%, #050505 100%),
    linear-gradient(to bottom, #050505 0, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 75%, #050505 100%);
}

.about-process-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.05) brightness(0.8);
}

.about-image-duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(600px, 52vw, 820px);
  background: #000;
}

.about-image-duo article {
  position: relative;
  min-height: inherit;
  overflow: hidden;
}

.about-image-duo article::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02) 46%, rgba(0, 0, 0, 0.66) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02));
}

.about-image-duo img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.03) brightness(0.9);
  transition: transform 700ms ease;
}

.about-image-duo article:first-child img {
  object-position: center;
}

.about-image-duo article:last-child img {
  object-position: center;
}

.about-image-duo article:hover img {
  transform: scale(1.035);
}

.about-image-duo div {
  position: absolute;
  left: clamp(28px, 8vw, 150px);
  bottom: clamp(52px, 6vw, 96px);
  z-index: 1;
  width: min(500px, calc(100% - 56px));
  padding: 24px 28px 27px;
  background: #000;
  text-transform: uppercase;
}

.about-image-duo article:last-child div {
  left: clamp(28px, 8vw, 120px);
}

.about-image-duo strong {
  color: #fff;
  font-size: clamp(30px, 2.4vw, 48px);
  line-height: 1.08;
}

.about-image-duo span {
  display: block;
  margin-top: 11px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.25;
}

.about-platform-band {
  padding: clamp(92px, 8vw, 134px) 24px clamp(98px, 8vw, 142px);
  background:
    radial-gradient(circle at 50% 0, rgba(78, 78, 78, 0.18), rgba(0, 0, 0, 0) 42%),
    #050505;
  text-align: center;
}

.about-platform-band-heading {
  width: min(900px, 100%);
  margin: 0 auto;
}

.about-platform-band h2 {
  margin-top: 18px;
  font-size: clamp(42px, 4.2vw, 76px);
}

.about-platform-band-heading p {
  width: min(680px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.about-platform-rows {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1160px, 100%);
  margin: clamp(52px, 5vw, 78px) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.about-platform-rows article {
  min-height: 236px;
  padding: 38px 34px 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.about-platform-rows article:hover {
  z-index: 1;
  background: var(--red);
  border-color: rgba(198, 0, 0, 0.7);
  transform: translateY(-6px);
  box-shadow: 0 28px 42px rgba(0, 0, 0, 0.38);
}

.about-platform-rows article:hover strong {
  color: #fff;
}

.about-platform-rows article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.about-platform-rows strong {
  color: #fff;
  font-size: clamp(26px, 1.85vw, 38px);
  line-height: 1.12;
}

.about-platform-rows p {
  font-size: 15px;
}

.about-final-cta {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
  text-align: center;
}

.about-final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0.68) 28%, rgba(0, 0, 0, 0.7) 66%, #000 100%),
    radial-gradient(circle at 50% 48%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.82) 74%);
}

.about-final-cta-media img {
  object-position: center;
  filter: saturate(0.8) contrast(1.06) brightness(0.62);
}

.about-final-cta-copy {
  position: relative;
  z-index: 1;
  width: min(780px, calc(100% - 56px));
  padding: 96px 0;
}

.about-final-cta-copy h2 {
  margin-top: 18px;
  font-size: clamp(42px, 4.8vw, 82px);
}

.about-final-cta-copy p {
  width: min(620px, 100%);
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 980px) {
  .about-cinema-metrics,
  .about-platform-rows {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-cinema-metrics span:nth-child(2),
  .about-platform-rows article:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .about-hero-panel {
    min-height: 620px;
  }

  .about-hero-panel-copy {
    right: 32px;
    bottom: 78px;
  }

  .about-process-split {
    grid-template-columns: 1fr;
  }

  .about-process-copy {
    width: min(720px, calc(100% - 56px));
    padding: 80px 0 70px;
  }

  .about-process-media {
    min-height: 560px;
  }

  .about-image-duo {
    grid-template-columns: 1fr;
  }

  .about-image-duo article {
    min-height: 560px;
  }

  .about-image-duo div,
  .about-image-duo article:last-child div {
    left: 32px;
  }
}

@media (max-width: 700px) {
  .about-cinema-intro {
    padding: 70px 22px 62px;
  }

  .about-cinema-intro h2 {
    font-size: 49px;
  }

  .about-cinema-intro p,
  .about-hero-panel-copy p,
  .about-process-copy p,
  .about-platform-band p,
  .about-final-cta-copy p {
    font-size: 13px;
    line-height: 1.62;
  }

  .about-cinema-metrics,
  .about-platform-rows {
    grid-template-columns: 1fr;
  }

  .about-cinema-metrics span,
  .about-cinema-metrics span:nth-child(2),
  .about-cinema-metrics span:last-child,
  .about-platform-rows article,
  .about-platform-rows article:nth-child(2),
  .about-platform-rows article:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .about-cinema-metrics span {
    min-height: 74px;
    font-size: 21px;
  }

  .about-hero-panel {
    min-height: 560px;
  }

  .about-hero-panel-media::after {
    background:
      linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0.06) 16%, rgba(0, 0, 0, 0.04) 54%, #000 100%),
      linear-gradient(to right, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.62) 100%);
  }

  .about-hero-panel-media img {
    object-position: 42% center;
  }

  .about-hero-panel-copy {
    right: 22px;
    bottom: 58px;
    width: calc(100% - 44px);
  }

  .about-hero-panel-copy h2,
  .about-process-copy h2 {
    font-size: 36px;
    line-height: 1.05;
  }

  .about-process-copy {
    width: min(100%, calc(100% - 44px));
    padding: 62px 0 54px;
  }

  .about-process-list {
    margin-top: 30px;
  }

  .about-process-list div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  .about-process-list strong {
    font-size: 22px;
  }

  .about-process-list span {
    font-size: 13px;
  }

  .about-process-media,
  .about-image-duo article {
    min-height: 430px;
  }

  .about-image-duo div,
  .about-image-duo article:last-child div {
    left: 22px;
    bottom: 34px;
    width: calc(100% - 44px);
    padding: 21px 20px 23px;
  }

  .about-image-duo strong {
    font-size: 28px;
  }

  .about-image-duo span {
    font-size: 15px;
  }

  .about-platform-band {
    padding: 68px 22px 76px;
  }

  .about-platform-band h2,
  .about-final-cta-copy h2 {
    font-size: 38px;
    line-height: 1.04;
  }

  .about-platform-rows {
    margin-top: 42px;
  }

  .about-platform-rows article {
    min-height: 0;
    padding: 26px 22px 30px;
  }

  .about-platform-rows strong {
    font-size: 25px;
  }

  .about-final-cta {
    min-height: 500px;
  }

  .about-final-cta-copy {
    width: calc(100% - 44px);
    padding: 78px 0;
  }

  .about-final-cta .outline-link,
  .about-final-cta .performance-phone-link {
    width: min(100%, 300px);
    justify-content: center;
  }
}

.services-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(44px, 6vw, 104px);
  width: min(1180px, calc(100% - 56px));
  align-items: center;
  margin: 0 auto;
  padding: 86px 0 96px;
  background: #000;
}

.services-overview-copy {
  width: min(690px, 100%);
}

.services-overview h2,
.service-method h2,
.service-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.services-overview h2 {
  font-size: clamp(36px, 4.1vw, 58px);
}

.services-overview p,
.service-method p,
.service-menu-card p,
.service-cta p {
  margin: 24px 0 0;
  color: #b8b8b8;
  font-size: 16px;
  line-height: 1.56;
}

.services-overview-points {
  display: grid;
  gap: 22px;
}

.services-overview-points article {
  padding-left: 22px;
  border-left: 2px solid rgba(198, 0, 0, 0.82);
}

.services-overview-points strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.services-overview-points p {
  margin-top: 8px;
  font-size: 15px;
}

.service-menu {
  padding: 98px 0 118px;
  background: #050505;
}

.service-menu .section-title {
  margin-bottom: 64px;
}

.service-menu .section-title p {
  font-size: 22px;
}

.service-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  width: min(91vw, 1320px);
  margin: 0 auto;
}

.service-menu-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #070707;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-menu-card:hover {
  border-color: var(--red);
  box-shadow: 0 24px 38px rgba(198, 0, 0, 0.2);
  transform: translateY(-4px);
}

.service-menu-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.service-menu-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 56%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(135deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0) 48%);
  pointer-events: none;
}

.service-menu-card-media img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.78);
  transform: scale(1.02);
  transition: filter 220ms ease, transform 220ms ease;
}

.service-menu-card:hover .service-menu-card-media img {
  filter: saturate(1) brightness(0.88);
  transform: scale(1.06);
}

.service-menu-card-body {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: clamp(24px, 2.15vw, 34px);
  transition: background-color 180ms ease;
}

.service-menu-card:hover .service-menu-card-body {
  background:
    linear-gradient(145deg, rgba(198, 0, 0, 0.18), rgba(198, 0, 0, 0) 46%),
    #070707;
}

.service-menu-card-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.service-menu-card-heading span,
.service-menu-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.service-menu-card-heading span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.service-menu-card h3 {
  margin: 0;
  font-size: clamp(26px, 1.8vw, 36px);
  font-weight: 500;
  line-height: 1.16;
}

.service-menu-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.service-menu-card ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.45;
  list-style: none;
}

.service-menu-card li {
  position: relative;
  padding-left: 17px;
}

.service-menu-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
  transform: translateY(-50%);
}

.service-menu-card-note {
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.service-menu-card-note strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-menu-card--diagnostics .service-menu-card-media img {
  object-position: center 54%;
}

.service-menu-card--maintenance .service-menu-card-media img {
  object-position: center 54%;
}

.service-menu-card--chassis .service-menu-card-media img {
  object-position: center 52%;
}

.service-menu-card--drivetrain .service-menu-card-media img {
  object-position: center 46%;
}

.service-menu-card--tires .service-menu-card-media img {
  object-position: center 55%;
}

.service-menu-card--reliability .service-menu-card-media img {
  object-position: center 54%;
}

.service-method {
  display: grid;
  grid-template-columns: minmax(0, 50%) minmax(420px, 50%);
  align-items: center;
  min-height: 660px;
  overflow: hidden;
  background: #000;
}

.service-method-image {
  position: relative;
  min-height: 660px;
  overflow: hidden;
}

.service-method-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0) 73%, #000 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.05) 54%, #000 100%);
  pointer-events: none;
}

.service-method-image img {
  width: 100%;
  max-width: 100%;
  height: 660px;
  object-fit: contain;
  object-position: right center;
  filter: saturate(0.9) brightness(0.78);
}

.service-method-copy {
  justify-self: start;
  width: min(640px, calc(100% - 72px));
  margin: 0 0 0 clamp(28px, 3vw, 56px);
  padding: 76px 0;
}

.service-method h2,
.service-cta h2 {
  font-size: clamp(28px, 2.25vw, 40px);
}

.service-method-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.service-method-steps li {
  min-height: 116px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.18);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-method-steps li:hover {
  border-color: rgba(198, 0, 0, 0.78);
  background:
    linear-gradient(145deg, rgba(198, 0, 0, 0.24), rgba(198, 0, 0, 0) 52%),
    rgba(10, 10, 10, 0.96);
  box-shadow: 0 18px 32px rgba(198, 0, 0, 0.18);
  transform: translateY(-3px);
}

.service-method-steps span,
.service-method-steps strong {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.service-method-steps span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.service-method-steps strong {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.service-guidance {
  padding: 30px 24px;
  background: #020202;
}

.service-guidance-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 58px);
  width: min(1180px, 100%);
  align-items: center;
  margin: 0 auto;
}

.service-guidance h2 {
  margin: 0;
  font-family: var(--font-display);
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.service-guidance p {
  margin: 0;
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.5;
}

.service-guidance ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-guidance li {
  position: relative;
  padding-left: 14px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.service-guidance li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--red);
  transform: translateY(-50%);
}

.performance-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(44px, 6vw, 106px);
  width: min(1180px, calc(100% - 56px));
  min-height: 460px;
  align-items: center;
  margin: 0 auto;
  padding: 88px 0 98px;
  background: #000;
  text-align: left;
}

.performance-intro-copy {
  width: min(680px, 100%);
}

.performance-intro h2,
.upgrade-presence h2,
.performance-options h2,
.built-goal h2,
.street-track h2,
.performance-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.performance-intro h2 {
  font-size: clamp(36px, 4.1vw, 58px);
}

.performance-kicker {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.performance-intro p,
.upgrade-presence p,
.built-goal p,
.street-track p,
.performance-cta p {
  margin: 26px 0 0;
  color: #b8b8b8;
  font-size: 16px;
  line-height: 1.56;
}

.performance-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
  justify-content: flex-end;
}

.performance-intro-tags span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  padding: 0 17px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

.upgrade-presence {
  display: grid;
  grid-template-columns: minmax(0, 62%) minmax(320px, 38%);
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  background: #050505;
}

.upgrade-presence-media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.upgrade-presence-media::after,
.performance-option::before,
.performance-option::after,
.street-track::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.upgrade-presence-media::after {
  background:
    linear-gradient(to bottom, rgba(5, 5, 5, 0.72) 0, rgba(5, 5, 5, 0) 15%, rgba(5, 5, 5, 0) 76%, rgba(5, 5, 5, 0.74) 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0) 56%, rgba(5, 5, 5, 0.72) 100%);
}

.upgrade-presence-media img {
  height: 760px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) brightness(0.94);
}

.upgrade-presence-copy {
  width: min(520px, calc(100% - 58px));
  margin: 0 auto;
  padding: 78px 0;
}

.upgrade-presence h2,
.built-goal h2,
.street-track h2,
.performance-cta h2 {
  font-size: clamp(28px, 2.25vw, 40px);
}

.performance-options {
  padding: 110px 0 132px;
  background: #000;
}

.performance-options .section-title {
  margin-bottom: 76px;
}

.performance-options .section-title p {
  font-size: 22px;
}

.performance-option-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 1.65vw, 34px);
  width: min(92vw, 1720px);
  margin: 0 auto;
}

.performance-option {
  position: relative;
  display: grid;
  min-height: clamp(500px, 29vw, 610px);
  place-items: end start;
  overflow: hidden;
  background-color: #111;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.performance-option::before {
  background-image: inherit;
  background-position: inherit;
  background-repeat: inherit;
  background-size: inherit;
  filter: saturate(0.98) brightness(0.88);
  transform: scale(1.01);
  transition: filter 240ms ease, transform 240ms ease;
}

.performance-option::after {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.46)),
    linear-gradient(128deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.02) 58%, rgba(0, 0, 0, 0.22));
  transition: background 180ms ease;
}

.performance-option:hover::before {
  filter: saturate(1.03) brightness(0.96);
  transform: scale(1.08);
}

.performance-option:hover::after {
  background:
    linear-gradient(to bottom, rgba(198, 0, 0, 0.02), rgba(0, 0, 0, 0.52)),
    linear-gradient(128deg, rgba(198, 0, 0, 0.5), rgba(0, 0, 0, 0.06) 54%, rgba(0, 0, 0, 0.38));
}

.performance-option div {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100% - 48px));
  margin: 0 24px 30px;
  padding: 22px 24px 25px;
  background: rgba(0, 0, 0, 0.82);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.performance-option:hover div {
  background: var(--red);
  box-shadow: 0 20px 34px rgba(198, 0, 0, 0.3);
  transform: translateY(-3px);
}

.performance-option span,
.performance-option h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.performance-option span {
  display: block;
  margin-bottom: 11px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.performance-option h3 {
  margin: 0;
  font-size: clamp(26px, 2vw, 42px);
  font-weight: 500;
  line-height: 1.18;
}

.performance-option p {
  width: min(360px, 100%);
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.46;
}

.performance-option--aero,
.performance-option--power {
  grid-column: span 7;
}

.performance-option--stance,
.performance-option--sound {
  grid-column: span 5;
}

.performance-option--aero {
  background-image: url("assets/images/performance-gwagon-hero.png?v=qmsports-performance-gwagon-hero-1");
  background-position: center 54%;
  background-size: cover;
}

.performance-option--stance {
  background-image: url("assets/images/performance-m3-square.png?v=qmsports-performance-m3-square-2");
  background-position: 70% 55%;
  background-size: 126%;
}

.performance-option--sound {
  background-image: url("assets/images/testimonial-panamera-shop.png?v=qmsports-testimonial-panamera-1");
  background-position: center 52%;
  background-size: cover;
}

.performance-option--power {
  background-image: url("assets/images/service-engine-builds.png?v=qmsports-engine-real-1");
  background-position: center 48%;
  background-size: cover;
}

.built-goal {
  display: grid;
  grid-template-columns: minmax(0, 48%) minmax(320px, 52%);
  gap: clamp(46px, 6vw, 110px);
  width: min(1180px, calc(100% - 56px));
  align-items: start;
  margin: 0 auto;
  padding: 116px 0 122px;
  background: #000;
}

.built-goal-copy {
  width: min(520px, 100%);
}

.built-goal-list {
  display: grid;
  gap: 24px;
}

.built-goal-list article {
  padding: 0 0 0 25px;
  border-left: 2px solid rgba(198, 0, 0, 0.82);
}

.built-goal-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.built-goal-list p {
  margin-top: 10px;
}

.street-track {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #000;
}

.street-track > img {
  height: 720px;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(0.98) brightness(0.9);
}

.street-track::after {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.72) 0, rgba(0, 0, 0, 0.06) 22%, rgba(0, 0, 0, 0.12) 70%, #000 100%),
    linear-gradient(to right, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.04) 46%, rgba(0, 0, 0, 0.42));
}

.street-track-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(28px, 8vw, 148px);
  width: min(620px, calc(100% - 56px));
  transform: translateY(-50%);
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.platform-list span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.performance-cta {
  display: grid;
  min-height: 430px;
  place-items: center;
  padding: 88px 24px 110px;
  background: #000;
  text-align: center;
}

.performance-cta-inner {
  width: min(720px, 100%);
}

.performance-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 34px;
}

.performance-phone-link {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.intro {
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 58px 22px 66px;
  background: var(--black);
  text-align: center;
}

.narrow {
  width: min(645px, 100%);
}

.intro h2,
.configure h2,
.section-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
}

.intro h2 {
  width: min(720px, 100%);
  margin: 0 auto;
  font-size: clamp(34px, 3.55vw, 42px);
}

.intro p {
  width: min(560px, 100%);
  margin: 24px auto 0;
  color: #b8b8b8;
  font-size: 16px;
  line-height: 1.5;
}

.feature-image {
  position: relative;
  min-height: 605px;
  overflow: hidden;
  background: #050505;
}

.feature-image::before,
.feature-image::after,
.model-card::after,
.product-card::after,
.news-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.feature-image::before,
.model-card::after {
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.02) 45%, rgba(0, 0, 0, 0.64));
}

.feature-image::after {
  inset: 0;
  background: linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0) 19%, rgba(0, 0, 0, 0) 73%, #000 100%);
}

.feature-image img {
  height: 605px;
  object-fit: cover;
  object-position: center;
}

.black-label {
  position: absolute;
  z-index: 2;
  display: inline-block;
  min-width: 315px;
  padding: 20px 20px 19px;
  background: #000;
  color: #fff;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-image > .black-label {
  right: 20%;
  bottom: 90px;
}

.black-label strong,
.black-label span,
.black-label em {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  line-height: 1;
}

.black-label strong {
  margin-bottom: 5px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
}

.black-label span,
.black-label em {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.configure {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 61%) minmax(320px, 39%);
  align-items: center;
  min-height: clamp(760px, 88svh, 1030px);
  padding: clamp(62px, 7vh, 86px) 0 clamp(82px, 12vh, 138px);
  overflow: hidden;
  background: #000;
}

.configure-image {
  align-self: center;
  justify-self: stretch;
  margin-left: clamp(0px, 4vw, 72px);
  transform: translateY(5%);
}

.configure-image img {
  width: min(100%, 1240px);
  max-height: min(760px, 78svh);
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.75));
}

.configure-image .configure-bmw-image {
  width: min(114%, 1415px);
  max-width: none;
  max-height: min(790px, 80svh);
  margin-left: clamp(-72px, -3.6vw, -32px);
}

.configure-copy {
  width: min(560px, calc(100% - 56px));
  padding: 0 clamp(44px, 6vw, 118px) 0 0;
  transform: translateY(-5%);
}

.configure h2 {
  margin-bottom: 28px;
  font-size: 32px;
}

.configure p {
  margin: 0 0 31px;
  color: #b8b8b8;
  font-size: 16px;
  line-height: 1.55;
}

.outline-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.outline-link:hover,
.outline-link:focus-visible,
.performance-phone-link:hover,
.performance-phone-link:focus-visible {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(198, 0, 0, 0.28);
}

.feature-image > .black-label:hover,
.feature-image > .black-label:focus-visible,
.model-card:hover .black-label,
.model-card:focus-visible .black-label {
  background: var(--red);
  box-shadow: 0 20px 34px rgba(198, 0, 0, 0.32);
  transform: translateY(-3px);
}

.model-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0f1112;
}

.model-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.model-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.model-card .black-label {
  left: 20.3%;
  bottom: clamp(78px, 7vw, 145px);
}

.products {
  padding: clamp(250px, 15.8vw, 545px) 0 112px;
  background: #000;
}

.section-title {
  margin: 0 auto 96px;
  text-align: center;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 32px;
}

.section-title p {
  margin: 19px 0 0;
  color: #b8b8b8;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.products .section-title {
  margin-bottom: clamp(150px, 9vw, 310px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(56px, 4.4vw, 152px);
  width: min(90.2vw, 3116px);
  margin: 0 auto;
}

.product-card {
  position: relative;
  display: grid;
  min-height: 0;
  aspect-ratio: 1.15 / 1;
  place-items: center;
  overflow: hidden;
  background-color: #141414;
  background-size: cover;
  background-position: center;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: inherit;
  background-position: inherit;
  filter: saturate(0.94) brightness(0.86);
  transform: scale(1.03);
  transition: transform 260ms ease, filter 260ms ease;
}

.product-card::after {
  inset: 0;
  background: linear-gradient(125deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.42));
  transition: background 180ms ease;
}

.product-card:hover::before {
  filter: saturate(1) brightness(0.98);
  transform: scale(1.08);
}

.product-card:hover::after,
.product-card:focus-visible::after {
  background:
    linear-gradient(125deg, rgba(198, 0, 0, 0.48), rgba(0, 0, 0, 0.12) 46%, rgba(0, 0, 0, 0.48));
}

.product-card span {
  position: relative;
  z-index: 1;
  width: min(340px, 86%);
  padding: 18px 20px 20px;
  background: rgba(0, 0, 0, 0.72);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.22;
  text-align: center;
  text-transform: uppercase;
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-card:hover span,
.product-card:focus-visible span {
  background: var(--red);
  box-shadow: 0 18px 30px rgba(198, 0, 0, 0.3);
  transform: translateY(-3px);
}

.product-card strong,
.product-card em {
  display: block;
  font-style: normal;
}

.product-card strong {
  font-size: clamp(30px, 1.55vw, 54px);
  font-weight: 500;
}

.product-card em {
  width: min(300px, 100%);
  margin: 12px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 0.95vw, 32px);
  line-height: 1.3;
}

.product-power {
  background-image: url("assets/images/service-engine-builds.png?v=qmsports-engine-real-1");
  background-position: center 46%;
}

.product-wheels {
  background-image: url("assets/images/performance-gwagon-square.png?v=qmsports-performance-gwagon-1");
  background-position: center 54%;
}

.product-interior {
  background-image: url("assets/images/vehicle-diagnostics-rs5-card.png?v=qmsports-diagnostics-rs5-card-1");
  background-position: center 54%;
}

.product-aero {
  background-image: url("assets/images/home-brakes-chassis-card.png?v=qmsports-brakes-card-1");
  background-position: center 52%;
}

.product-suspension {
  background-image: url("assets/images/home-maintenance-gti-card.png?v=qmsports-maintenance-gti-card-1");
  background-position: center 54%;
}

.product-exhaust {
  background-image: url("assets/images/home-tire-service-audi-card.png?v=qmsports-tire-service-audi-card-2");
  background-position: center 55%;
}

.news {
  position: relative;
  padding: clamp(118px, 6.85vw, 237px) 0 clamp(140px, 8vw, 276px);
  background: #000;
}

.news .section-title {
  margin-bottom: clamp(62px, 2.85vw, 98px);
}

.news-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 1.55vw, 54px);
  align-items: start;
  width: min(96.9vw, 3348px);
  margin: 0 auto;
}

.news-card {
  position: relative;
  min-width: 0;
}

.news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
  object-position: center;
}

.news-card h3 {
  margin: clamp(28px, 1.3vw, 45px) 0 clamp(16px, 0.9vw, 31px);
  font-family: var(--font-display);
  font-size: clamp(24px, 1.35vw, 46px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.news-card p {
  margin: 0 0 clamp(24px, 1.5vw, 52px);
  color: #d0d0d0;
  font-size: clamp(18px, 1.05vw, 34px);
  line-height: 1.42;
}

.news-card a {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(18px, 0.95vw, 32px);
  font-weight: 700;
  text-transform: lowercase;
}

.testimonial-card {
  transition: opacity 180ms ease;
}

.testimonial-card.is-changing {
  opacity: 0.28;
}

.testimonial-card blockquote {
  margin: clamp(28px, 1.3vw, 45px) 0 clamp(16px, 0.9vw, 31px);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(24px, 1.24vw, 42px);
  font-weight: 500;
  line-height: 1.22;
  text-transform: uppercase;
}

.testimonial-card footer {
  color: #d0d0d0;
  font-size: clamp(18px, 1.05vw, 34px);
  line-height: 1.42;
}

.news-arrow {
  position: absolute;
  z-index: 2;
  top: clamp(560px, 31vw, 1060px);
  display: grid;
  width: clamp(42px, 2.6vw, 90px);
  height: clamp(42px, 2.6vw, 90px);
  margin-top: 0;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.news-arrow.previous {
  left: 0;
}

.news-arrow.next {
  right: 0;
}

.news-arrow svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.news-progress {
  gap: clamp(9px, 0.55vw, 18px);
  margin-top: clamp(62px, 3.1vw, 108px);
}

.news-progress span {
  width: clamp(34px, 1.55vw, 54px);
}

.news-progress button {
  width: clamp(34px, 1.55vw, 54px);
  appearance: none;
  cursor: pointer;
}

.news-progress button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 8px;
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(42px, 6vw, 110px);
  width: min(1180px, calc(100% - 56px));
  align-items: center;
  margin: 0 auto;
  padding: 116px 0 98px;
  background: #000;
}

.contact-intro h2,
.contact-form-heading h2,
.contact-details h2,
.contact-faq h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.contact-intro p,
.contact-form-heading p,
.contact-details p,
.contact-faq p,
.contact-prep li {
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.68;
}

.contact-intro p {
  width: min(680px, 100%);
  margin: 24px 0 0;
}

.contact-intro-actions {
  display: grid;
  gap: 18px;
}

.contact-intro-actions a,
.contact-detail-list a {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-intro-actions a:last-child,
.contact-detail-list a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-intro-actions span,
.contact-detail-list span,
.form-field span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.contact-intro-actions strong,
.contact-detail-list strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16;
  text-transform: uppercase;
}

.contact-intake {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(44px, 5vw, 96px);
  width: min(1280px, calc(100% - 56px));
  align-items: start;
  margin: 0 auto;
  padding: 46px 0 132px;
  background: #000;
}

.contact-form-panel {
  padding: clamp(30px, 3vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #050505;
}

.contact-form-heading {
  margin-bottom: 34px;
}

.contact-form-heading p {
  width: min(640px, 100%);
  margin: 18px 0 0;
}

.contact-form {
  display: grid;
  gap: 24px;
}

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

.form-field {
  display: grid;
  min-width: 0;
  gap: 10px;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: #0d0d0d;
  color: #fff;
  font: inherit;
  line-height: 1.3;
  outline: 0;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.form-field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 19px) 23px, calc(100% - 13px) 23px;
  background-repeat: no-repeat;
  background-size: 6px 6px;
  padding-right: 42px;
}

.form-field textarea {
  min-height: 170px;
  padding-top: 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  background: #101010;
  box-shadow: 0 0 0 1px rgba(198, 0, 0, 0.45);
}

.contact-submit {
  display: inline-flex;
  width: fit-content;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

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

.form-status {
  min-height: 24px;
  margin: -6px 0 0;
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.55;
}

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

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

.contact-details {
  padding-top: 10px;
}

.contact-details h2 {
  margin-bottom: 36px;
}

.contact-detail-list {
  display: grid;
  margin-bottom: 40px;
}

.contact-prep {
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-prep strong {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
}

.contact-prep ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-prep li {
  position: relative;
  padding-left: 20px;
}

.contact-prep li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
}

.contact-faq {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 112px);
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  padding: 0 0 132px;
  background: #000;
}

.contact-faq-heading {
  position: sticky;
  top: 96px;
  align-self: start;
}

.contact-faq-list {
  display: grid;
}

.contact-faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-faq details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-faq summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 27px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(22px, 1.6vw, 32px);
  font-weight: 600;
  line-height: 1.18;
  text-transform: uppercase;
}

.contact-faq summary::-webkit-details-marker {
  display: none;
}

.contact-faq summary::after {
  content: "+";
  color: var(--red);
  font-size: 28px;
  line-height: 1;
}

.contact-faq details[open] summary::after {
  content: "-";
}

.contact-faq p {
  width: min(720px, 100%);
  margin: -6px 0 28px;
}

.footer {
  display: flex;
  width: min(calc(100% - 54px), 1140px);
  flex-direction: column;
  gap: 48px;
  margin: 0 auto;
  padding: 112px 0;
  background: #000;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.footer .tagline {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.footer-main,
.footer-legal,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 40px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-main a,
.footer-contact a,
.footer-legal a {
  color: #fff;
  text-transform: uppercase;
}

.footer-contact,
.footer-main {
  letter-spacing: 1.2px;
}

.footer-legal {
  color: #a5a5a5;
  font-weight: 500;
}

.footer-legal a {
  color: #a5a5a5;
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0;
}

.socials a {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  opacity: 0.95;
}

.socials svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (min-width: 1920px) {
  .footer {
    width: min(calc(100% - 54px), 1860px);
  }
}

@media (max-width: 980px) {
  .hero,
  .hero img,
  .hero-media-stack,
  .hero-media {
    min-height: 620px;
    height: 100svh;
  }

  .page-hero-media img,
  .performance-hero-media img {
    object-position: center center;
    transform: none;
  }

  .intro {
    min-height: 340px;
    padding: 46px 22px 56px;
    place-items: start center;
  }

  .narrow {
    width: min(645px, 100%);
  }

  .intro h2 {
    width: min(720px, 100%);
    font-size: clamp(34px, 5.35vw, 42px);
    line-height: 1.3;
  }

  .intro p {
    width: min(645px, 100%);
    margin-top: 28px;
  }

  .feature-image {
    min-height: 465px;
  }

  .feature-image img {
    height: 465px;
  }

  .configure {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 56px 7vw 96px;
  }

  .configure-image {
    justify-self: center;
    margin-left: 0;
    transform: none;
  }

  .configure-image img {
    max-height: 560px;
    margin: 0 auto;
  }

  .configure-image .configure-bmw-image {
    width: min(110%, 710px);
    margin-left: -5%;
  }

  .configure-copy {
    width: min(430px, 100%);
    justify-self: center;
    margin-top: 20px;
    padding: 0;
    text-align: left;
    transform: none;
  }

  .contact-intro,
  .contact-intake,
  .contact-faq {
    width: min(100%, calc(100% - 44px));
    grid-template-columns: 1fr;
  }

  .contact-intro {
    gap: 34px;
    padding: 78px 0 72px;
  }

  .contact-intake {
    gap: 52px;
    padding: 28px 0 96px;
  }

  .contact-details {
    padding-top: 0;
  }

  .contact-faq {
    gap: 30px;
    padding-bottom: 96px;
  }

  .contact-faq-heading {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .news-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: min(90.2vw, 860px);
  }

  .news-arrow {
    display: none;
  }

  .news-card h3 {
    font-size: 18px;
    line-height: 1.28;
  }

  .testimonial-card blockquote {
    font-size: 18px;
    line-height: 1.28;
  }

  .news-card p {
    font-size: 13px;
  }

  .testimonial-card footer {
    font-size: 13px;
  }

  .news-card a {
    font-size: 16px;
  }

  .page-hero-copy,
  .performance-hero-copy {
    bottom: 128px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 76px 0 84px;
  }

  .about-intro-panel {
    min-height: 260px;
  }

  .about-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-proof-strip span:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .about-values {
    padding: 86px 0 94px;
  }

  .about-value-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-value-grid article,
  .about-value-grid article:last-child {
    min-height: 280px;
    border-right: 1px solid rgba(0, 0, 0, 0.16);
  }

  .about-value-grid strong {
    margin-top: 68px;
  }

  .about-statement {
    min-height: 560px;
  }

  .about-statement-media img {
    height: 560px;
  }

  .about-statement-label {
    right: 28px;
    bottom: 64px;
  }

  .about-shop-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-shop-media {
    min-height: 520px;
  }

  .about-shop-media img {
    height: 520px;
  }

  .about-shop-copy {
    width: min(100%, calc(100% - 56px));
    padding: 54px 0 86px;
  }

  .about-platforms {
    padding: 88px 0 96px;
  }

  .about-platform-grid {
    grid-template-columns: 1fr;
  }

  .services-intro {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 72px 0 78px;
  }

  .services-intro-meta {
    justify-content: flex-start;
  }

  .service-selector {
    padding: 84px 0 96px;
  }

  .service-selector .section-title {
    margin-bottom: 56px;
  }

  .service-selector-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-detail-panel {
    position: static;
    min-height: auto;
  }

  .service-process {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 82px 0 92px;
  }

  .service-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-split-media,
  .service-split-media img {
    min-height: 620px;
    height: 620px;
  }

  .service-split-media::after {
    background:
      linear-gradient(to bottom, #050505 0, rgba(5, 5, 5, 0) 18%, rgba(5, 5, 5, 0) 68%, #050505 100%),
      linear-gradient(to right, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.04) 60%, rgba(0, 0, 0, 0.36));
  }

  .service-split-copy {
    width: min(620px, calc(100% - 48px));
    padding: 46px 0 88px;
    text-align: center;
  }

  .service-split-grid {
    text-align: left;
  }

  .services-overview {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 72px 0 78px;
  }

  .service-menu {
    padding: 78px 0 90px;
  }

  .service-menu .section-title {
    margin-bottom: 50px;
  }

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

  .service-guidance {
    padding: 32px 24px 36px;
  }

  .service-guidance-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-guidance ul {
    justify-content: flex-start;
  }

  .service-method {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-method-image,
  .service-method-image img {
    min-height: 560px;
    height: 560px;
  }

  .service-method-image img {
    width: 100%;
    max-width: 100%;
    object-position: center;
    transform: none;
  }

  .service-method-image::after {
    background:
      linear-gradient(to bottom, #000 0, rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 68%, #000 100%),
      linear-gradient(to right, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.04) 60%, rgba(0, 0, 0, 0.36));
  }

  .service-method-copy {
    width: min(620px, calc(100% - 48px));
    padding: 46px 0 88px;
    text-align: center;
  }

  .service-method-steps {
    text-align: left;
  }

  .performance-intro {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 72px 0 78px;
  }

  .performance-intro-tags {
    justify-content: flex-start;
  }

  .upgrade-presence {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .upgrade-presence-media,
  .upgrade-presence-media img {
    min-height: 620px;
    height: 620px;
  }

  .upgrade-presence-media::after {
    background:
      linear-gradient(to bottom, rgba(5, 5, 5, 0.72) 0, rgba(5, 5, 5, 0) 18%, rgba(5, 5, 5, 0) 70%, rgba(5, 5, 5, 0.74) 100%),
      linear-gradient(to right, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02) 60%, rgba(0, 0, 0, 0.18));
  }

  .upgrade-presence-copy {
    width: min(620px, calc(100% - 48px));
    padding: 46px 0 88px;
    text-align: center;
  }

  .performance-options {
    padding: 84px 0 96px;
  }

  .performance-options .section-title {
    margin-bottom: 56px;
  }

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

  .performance-option--aero,
  .performance-option--stance,
  .performance-option--sound,
  .performance-option--power {
    grid-column: auto;
  }

  .built-goal {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 82px 0 92px;
  }

  .street-track-copy {
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .platform-list {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .brand-mark {
    top: 11px;
    font-size: 20px;
  }

  .header-tools {
    top: 3px;
    gap: 0;
    right: 8px;
  }

  .header-tools a {
    width: 40px;
    height: 40px;
  }

  .header-tools svg {
    width: 21px;
    height: 21px;
  }

  .menu-trigger {
    width: 96px;
    height: 45px;
    padding: 0 50px 0 16px;
  }

  .menu-trigger span {
    width: 18px;
  }

  .hero {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(86px, 15svh, 128px) 0 clamp(58px, 9svh, 86px);
  }

  .hero img,
  .hero-media-stack {
    height: auto;
    min-height: 0;
  }

  .hero-media-stack {
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
  }

  .hero-media {
    height: 100%;
    min-height: 0;
  }

  .hero img,
  .hero-media {
    object-fit: contain;
    object-position: center 34%;
    background: #000;
  }

  .hero-caption h1 {
    font-size: clamp(21px, 6.4vw, 24px);
    line-height: 1.22;
    overflow-wrap: anywhere;
  }

  .hero-caption h1 span {
    display: block;
    width: min(288px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .hero-caption p {
    width: min(300px, 100%);
    font-size: 12px;
    line-height: 1.42;
    overflow-wrap: anywhere;
  }

  .hero-caption p br {
    display: none;
  }

  .hero-caption {
    position: relative;
    z-index: 2;
    left: auto;
    bottom: auto;
    width: min(350px, calc(100% - 32px));
    margin: clamp(34px, 6svh, 52px) auto 0;
    transform: none;
  }

  .hero-progress {
    margin-top: 36px;
  }

  .page-hero,
  .performance-hero {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    justify-content: flex-start;
    padding: clamp(86px, 15svh, 128px) 0 clamp(62px, 9svh, 92px);
  }

  .page-hero-media,
  .performance-hero-media {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .page-hero-media img,
  .performance-hero-media img {
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center 34%;
    transform: none;
    background: #000;
  }

  .page-hero--about .page-hero-media img {
    object-position: center 34%;
    transform: none;
  }

  .page-hero--services .page-hero-media img {
    object-position: center 34%;
    transform: none;
  }

  .page-hero--contact .page-hero-media img {
    object-position: center 34%;
    transform: none;
  }

  .page-hero-copy,
  .performance-hero-copy {
    position: relative;
    z-index: 3;
    left: auto;
    bottom: auto;
    width: min(340px, calc(100% - 32px));
    margin: clamp(34px, 6svh, 54px) auto 0;
    transform: none;
  }

  .page-hero-copy h1,
  .performance-hero-copy h1 {
    margin-bottom: 16px;
    font-size: clamp(32px, 9.5vw, 38px);
    line-height: 1.08;
  }

  .page-hero-copy p,
  .performance-hero-copy p {
    max-width: 310px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(14px, 4.1vw, 16px);
    line-height: 1.3;
    text-wrap: balance;
  }

  .about-intro {
    width: min(100%, calc(100% - 44px));
    padding: 58px 0 66px;
  }

  .about-intro h2 {
    font-size: 44px;
    line-height: 0.98;
  }

  .about-shop-copy h2 {
    font-size: 30px;
    line-height: 1.18;
  }

  .about-intro p,
  .about-values p,
  .about-shop-copy p,
  .about-platforms p {
    font-size: 13px;
    line-height: 1.62;
  }

  .about-intro-panel {
    min-height: 250px;
    padding: 26px 22px 28px;
  }

  .about-intro-panel strong {
    font-size: 28px;
  }

  .about-intro-panel p {
    font-size: 13px;
  }

  .about-proof-strip {
    width: 100%;
  }

  .about-proof-strip span {
    min-height: 84px;
    padding: 18px 12px;
    font-size: 19px;
  }

  .about-values {
    padding: 72px 0 78px;
  }

  .about-values .section-title,
  .about-platforms .section-title {
    width: min(100%, calc(100% - 44px));
    margin-bottom: 48px;
  }

  .about-value-grid,
  .about-platform-grid {
    width: min(100%, calc(100% - 44px));
  }

  .about-value-grid article {
    min-height: 244px;
    padding: 26px 22px 28px;
  }

  .about-value-grid strong {
    margin-top: 48px;
    font-size: 28px;
  }

  .about-statement {
    min-height: 470px;
  }

  .about-statement-media img {
    height: 470px;
    object-position: 45% center;
  }

  .about-statement-label {
    right: 22px;
    bottom: 48px;
    width: calc(100% - 44px);
    padding: 24px 22px 26px;
  }

  .about-statement-label h2 {
    font-size: 34px;
  }

  .about-statement-label p {
    font-size: 13px;
  }

  .about-shop-media {
    min-height: 430px;
  }

  .about-shop-media img {
    height: 430px;
  }

  .about-shop-copy {
    width: min(100%, calc(100% - 44px));
    padding: 44px 0 72px;
  }

  .about-shop-list strong,
  .about-platform-grid strong {
    font-size: 22px;
  }

  .about-platforms {
    padding: 74px 0 82px;
  }

  .about-platform-grid {
    gap: 18px;
  }

  .about-platform-grid article {
    min-height: 0;
    padding: 26px 22px;
  }

  .about-cta .outline-link,
  .about-cta .performance-phone-link {
    width: min(100%, 300px);
    justify-content: center;
  }

  .contact-intro {
    gap: 30px;
    padding: 54px 0 58px;
  }

  .contact-intro h2,
  .contact-form-heading h2,
  .contact-details h2,
  .contact-faq h2 {
    font-size: 28px;
    line-height: 1.16;
  }

  .contact-intro p,
  .contact-form-heading p,
  .contact-details p,
  .contact-faq p,
  .contact-prep li {
    font-size: 13px;
    line-height: 1.62;
  }

  .contact-intro-actions {
    gap: 0;
  }

  .contact-intro-actions a,
  .contact-detail-list a {
    padding: 19px 0;
  }

  .contact-intro-actions strong,
  .contact-detail-list strong {
    font-size: 20px;
  }

  .contact-intake {
    gap: 42px;
    padding: 24px 0 76px;
  }

  .contact-form-panel {
    padding: 26px 20px 30px;
  }

  .contact-form-heading {
    margin-bottom: 28px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-field--wide {
    grid-column: auto;
  }

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

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

  .contact-details h2 {
    margin-bottom: 26px;
  }

  .contact-prep {
    padding-top: 28px;
  }

  .contact-prep strong {
    font-size: 22px;
  }

  .contact-faq {
    gap: 24px;
    padding-bottom: 82px;
  }

  .contact-faq summary {
    padding: 22px 0;
    font-size: 20px;
  }

  .contact-faq p {
    margin-bottom: 24px;
  }

  .services-intro {
    width: min(100%, calc(100% - 44px));
    gap: 28px;
    padding: 54px 0 64px;
  }

  .services-intro h2 {
    font-size: 28px;
  }

  .service-kicker {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .services-intro p,
  .service-process p,
  .service-split p,
  .service-cta p,
  .service-detail p {
    font-size: 13px;
  }

  .services-intro-meta {
    gap: 9px;
  }

  .services-intro-meta span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }

  .service-selector {
    padding: 72px 20px 88px;
  }

  .service-selector .section-title {
    margin-bottom: 44px;
  }

  .service-selector .section-title p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.4;
  }

  .service-selector-layout {
    width: min(100%, 520px);
  }

  .service-card-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: 345px;
    padding: 22px;
  }

  .service-card strong {
    font-size: 25px;
  }

  .service-card em,
  .service-card > span:last-child,
  .service-detail ul {
    font-size: 14px;
  }

  .service-detail-panel {
    padding: 28px 22px 32px;
  }

  .service-detail h3 {
    font-size: 25px;
  }

  .service-detail-columns {
    gap: 24px;
    margin: 28px 0;
  }

  .service-detail-columns strong {
    font-size: 20px;
  }

  .service-detail .outline-link,
  .service-cta-actions .outline-link,
  .service-cta-actions .performance-phone-link {
    width: min(100%, 300px);
    justify-content: center;
  }

  .service-process {
    width: min(100%, calc(100% - 44px));
    gap: 34px;
    padding: 68px 0 78px;
  }

  .service-process h2,
  .service-split h2,
  .service-cta h2 {
    font-size: 24px;
  }

  .service-process-steps {
    grid-template-columns: 1fr;
  }

  .service-process-steps li {
    display: grid;
    grid-template-columns: 44px 1fr;
    min-height: 74px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .service-process-steps li:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .service-process-steps strong {
    margin-top: 0;
    font-size: 22px;
  }

  .service-split-media,
  .service-split-media img {
    min-height: 545px;
    height: 545px;
  }

  .service-split-copy {
    width: min(100%, calc(100% - 44px));
    padding: 34px 0 72px;
  }

  .service-split-grid {
    gap: 22px;
    margin: 28px 0;
  }

  .service-split-grid strong {
    font-size: 22px;
  }

  .service-cta {
    min-height: 340px;
    padding: 64px 22px 88px;
  }

  .service-cta-actions {
    gap: 12px;
  }

  .services-overview {
    width: min(100%, calc(100% - 44px));
    gap: 28px;
    padding: 54px 0 64px;
  }

  .services-overview h2 {
    font-size: 28px;
  }

  .services-overview p,
  .service-method p,
  .service-menu-card p,
  .service-guidance p {
    font-size: 13px;
  }

  .services-overview-points {
    gap: 20px;
  }

  .services-overview-points article {
    padding-left: 18px;
  }

  .services-overview-points strong {
    font-size: 22px;
  }

  .service-menu {
    padding: 64px 20px 78px;
  }

  .service-menu .section-title {
    margin-bottom: 38px;
  }

  .service-menu .section-title p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.4;
  }

  .service-menu-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 520px);
  }

  .service-menu-card {
    padding: 0;
  }

  .service-menu-card-media {
    aspect-ratio: 16 / 10;
  }

  .service-menu-card-body {
    min-height: auto;
    padding: 24px 22px 26px;
  }

  .service-menu-card-heading {
    display: block;
  }

  .service-menu-card-heading span {
    display: block;
    margin-bottom: 12px;
    font-size: 14px;
  }

  .service-menu-card h3 {
    font-size: 26px;
    line-height: 1.12;
  }

  .service-menu-card ul {
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
  }

  .service-menu-card-note {
    padding-top: 22px;
  }

  .service-method-image,
  .service-method-image img {
    min-height: 430px;
    height: 430px;
  }

  .service-method-image img {
    width: 100%;
    max-width: 100%;
    object-position: center;
    transform: none;
  }

  .service-method-copy {
    width: min(100%, calc(100% - 44px));
    padding: 38px 0 68px;
  }

  .service-method h2 {
    font-size: 24px;
  }

  .service-method-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-method-steps li {
    min-height: 86px;
    padding: 17px 18px;
  }

  .service-method-steps strong {
    margin-top: 18px;
    font-size: 22px;
  }

  .service-guidance {
    padding: 30px 20px 34px;
  }

  .service-guidance-inner {
    gap: 12px;
  }

  .service-guidance h2 {
    font-size: 15px;
  }

  .service-guidance li {
    font-size: 15px;
  }

  .performance-intro {
    width: min(100%, calc(100% - 44px));
    gap: 28px;
    padding: 54px 0 64px;
  }

  .performance-intro h2 {
    font-size: 28px;
  }

  .performance-kicker {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .performance-intro p,
  .upgrade-presence p,
  .built-goal p,
  .street-track p,
  .performance-cta p {
    font-size: 13px;
  }

  .performance-intro-tags {
    gap: 9px;
  }

  .performance-intro-tags span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }

  .upgrade-presence-media,
  .upgrade-presence-media img {
    min-height: 545px;
    height: 545px;
  }

  .upgrade-presence-media img {
    object-position: 50% center;
  }

  .upgrade-presence-copy {
    width: min(100%, calc(100% - 44px));
    padding: 34px 0 72px;
  }

  .upgrade-presence h2,
  .built-goal h2,
  .street-track h2,
  .performance-cta h2 {
    font-size: 24px;
  }

  .performance-options {
    padding: 72px 20px 88px;
  }

  .performance-options .section-title {
    margin-bottom: 44px;
  }

  .performance-options .section-title p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.4;
  }

  .performance-option-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: min(100%, 520px);
  }

  .performance-option {
    min-height: 390px;
  }

  .performance-option div {
    width: min(320px, calc(100% - 40px));
    margin: 0 20px 24px;
  }

  .performance-option h3 {
    font-size: 25px;
  }

  .performance-option p {
    font-size: 14px;
  }

  .built-goal {
    width: min(100%, calc(100% - 44px));
    gap: 34px;
    padding: 68px 0 78px;
  }

  .built-goal-list {
    gap: 22px;
  }

  .built-goal-list article {
    padding-left: 18px;
  }

  .built-goal-list strong {
    font-size: 22px;
  }

  .street-track,
  .street-track > img {
    min-height: 640px;
    height: 640px;
  }

  .street-track > img {
    object-position: 46% center;
  }

  .street-track-copy {
    width: min(100%, calc(100% - 44px));
  }

  .platform-list {
    gap: 9px;
    margin-top: 26px;
  }

  .platform-list span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 14px;
  }

  .performance-cta {
    min-height: 340px;
    padding: 64px 22px 88px;
  }

  .performance-cta-actions {
    gap: 12px;
  }

  .performance-cta-actions .outline-link,
  .performance-phone-link {
    width: min(100%, 300px);
    justify-content: center;
  }

  .intro {
    min-height: 252px;
    padding: 42px 22px 46px;
  }

  .intro h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 500;
  }

  .intro p,
  .configure p {
    font-size: 13px;
  }

  .feature-image,
  .feature-image img {
    min-height: 515px;
    height: 515px;
  }

  .feature-image > .black-label {
    right: 24px;
    bottom: 45px;
  }

  .configure {
    min-height: 520px;
    padding: 38px 22px 74px;
  }

  .model-cards {
    grid-template-columns: 1fr;
  }

  .model-card,
  .model-card img {
    min-height: 0;
  }

  .model-card {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .model-card img {
    width: 100%;
    height: 100%;
  }

  .model-card .black-label {
    left: 24px;
    bottom: 40px;
  }

  .black-label {
    min-width: 235px;
  }

  .black-label strong {
    font-size: 24px;
  }

  .black-label span,
  .black-label em {
    font-size: 16px;
  }

  .products {
    padding: 96px 20px 82px;
  }

  .products .section-title {
    margin-bottom: 58px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 520px);
  }

  .product-card {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .section-title h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .product-card span {
    width: min(275px, 86%);
  }

  .product-card strong {
    font-size: 24px;
  }

  .product-card em {
    font-size: 15px;
  }

  .news-card h3 {
    font-size: 16px;
    line-height: 1.3;
  }

  .testimonial-card blockquote {
    font-size: 18px;
    line-height: 1.28;
  }

  .testimonial-card footer {
    font-size: 14px;
  }

  .nav-inner {
    width: 100%;
    padding: 86px 28px 116px;
  }

  .nav-panel::before {
    width: 100%;
    clip-path: none;
  }

  .nav-panel a {
    font-size: clamp(38px, 12vw, 58px);
  }

  .nav-meta {
    right: 28px;
    bottom: 32px;
    left: 28px;
    flex-direction: column;
    gap: 7px;
  }

  .nav-meta a {
    font-size: inherit;
    line-height: inherit;
  }

  .news {
    padding: 70px 18px 100px;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100%, 520px);
  }

  .news-progress {
    margin-top: 36px;
  }

  .footer {
    width: min(100%, calc(100% - 32px));
    gap: 40px;
    padding: 86px 0;
  }

  .footer-main,
  .footer-contact,
  .footer-legal {
    gap: 16px 28px;
  }

  .socials {
    gap: 32px;
  }
}

@media (max-width: 360px) {
  .brand-mark {
    top: 13px;
    font-size: 18px;
  }

  .header-tools {
    top: 5px;
    right: 7px;
  }

  .header-tools a:first-child {
    display: none;
  }

  .header-tools a {
    width: 32px;
    height: 36px;
  }

  .header-tools svg {
    width: 19px;
    height: 19px;
  }
}
