:root {
  --ink: #111416;
  --ink-soft: #191d20;
  --ink-lift: #22272b;
  --paper: #f1eee7;
  --paper-deep: #e6e0d6;
  --white: #ffffff;
  --muted: #696d70;
  --silver: #b9bec1;
  --red: #cf1736;
  --red-dark: #a90d27;
  --eu-blue: #18314b;
  --eu-gold: #ffcc00;
  --line: rgba(17, 20, 22, .16);
  --line-dark: rgba(255, 255, 255, .16);
  --display: "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --body: "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shell: 1320px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

figure,
dl,
dd,
p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--eu-gold);
  outline-offset: 4px;
}

::selection {
  background: var(--red);
  color: var(--white);
}

.shell {
  width: min(var(--shell), calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 11px 16px;
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.section-code,
.section-number,
.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-code,
.section-number {
  color: var(--muted);
}

.eyebrow {
  color: var(--red);
}

.utility-bar {
  position: relative;
  z-index: 102;
  background: var(--ink);
  color: #dadddf;
}

.utility-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.utility-credential {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.utility-credential img {
  width: 24px;
  height: 16px;
  object-fit: cover;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(241, 238, 231, .96);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease, background-color .2s ease;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(17, 20, 22, .08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  width: 138px;
  flex: 0 0 auto;
}

.brand img {
  width: 138px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  color: #35393c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--red);
  transition: right .25s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--red);
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .105em;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform .25s var(--ease),
    background-color .25s var(--ease),
    border-color .25s var(--ease),
    color .25s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 9px;
}

.button-dark {
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover {
  background: var(--red);
  border-color: var(--red);
}

.button-light {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 0 7px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .105em;
  line-height: 1.15;
  text-decoration: none;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

/* Hero */

.hero-split {
  min-height: max(680px, calc(100svh - 118px));
  display: grid;
  grid-template-columns: minmax(520px, .92fr) minmax(0, 1.08fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.hero-copy {
  min-width: 0;
  display: grid;
  align-items: stretch;
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), var(--line) calc(100% - 1px)),
    linear-gradient(rgba(17, 20, 22, .045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 80px;
}

.hero-copy-inner {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding:
    clamp(46px, 6vh, 68px)
    clamp(32px, 4.2vw, 68px)
    clamp(42px, 5vh, 58px)
    max(32px, calc((100vw - var(--shell)) / 2));
}

.hero-copy .section-code {
  margin-bottom: clamp(22px, 3.5vh, 36px);
}

.hero-copy .eyebrow {
  max-width: 38ch;
}

.hero-copy h1 {
  max-width: 9.2ch;
  margin: 16px 0 22px;
  font-family: var(--display);
  font-size: clamp(72px, min(6.5vw, 10vh), 104px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: .85;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 530px;
  color: #4c5154;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 28px;
}

.hero-media {
  position: relative;
  min-width: 0;
  min-height: inherit;
  overflow: hidden;
  background: #d5d2cc;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(0, 0, 0, .56));
  pointer-events: none;
}

.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: saturate(.86) contrast(1.03);
  transition: transform 1.2s var(--ease);
}

.hero-media:hover > img {
  transform: scale(1.012);
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(25px, 4vw, 56px);
  left: clamp(24px, 4vw, 58px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .5);
  color: var(--white);
}

.hero-media figcaption span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-media figcaption strong {
  max-width: 300px;
  font-size: 11px;
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
}

.photo-index {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 28px;
  padding: 8px 11px;
  background: rgba(17, 20, 22, .86);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}

/* Credential rail */

.credential-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.credential-card {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 28px clamp(24px, 3vw, 48px);
}

.credential-card + .credential-card {
  border-left: 1px solid var(--line);
}

.credential-card > span,
.credential-card div > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.credential-card strong {
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
  letter-spacing: -.015em;
  line-height: 1.05;
  text-transform: uppercase;
}

.credential-eu {
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
}

.credential-eu img {
  width: 44px;
  height: auto;
  border: 1px solid rgba(17, 20, 22, .18);
}

.credential-eu div {
  display: grid;
  gap: 7px;
}

/* Shared sections */

.section {
  padding: clamp(92px, 9vw, 142px) 0;
}

.section-light {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 30px;
  margin-bottom: clamp(58px, 7vw, 96px);
}

.section-heading > div {
  max-width: 900px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading h2,
.motorsport-panel h2,
.partnership-copy h2,
.distributor-intro h2 {
  font-family: var(--display);
  font-size: clamp(52px, 6.1vw, 92px);
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: .92;
  text-transform: uppercase;
}

.section-lead {
  max-width: 640px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
}

/* Ranges */

.range-showcase {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
  align-items: stretch;
  margin-bottom: 64px;
  border: 1px solid var(--line);
  background: var(--white);
}

.range-photo {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.range-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: saturate(.78) contrast(1.04);
  transition: transform .8s var(--ease);
}

.range-photo:hover img {
  transform: scale(1.018);
}

.range-photo figcaption,
.partnership-collage figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: fit-content;
  padding: 8px 10px;
  background: rgba(17, 20, 22, .9);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.range-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
  padding: clamp(36px, 5vw, 72px);
}

.range-intro .large-copy {
  font-family: var(--display);
  font-size: clamp(28px, 3.1vw, 45px);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.07;
  text-transform: uppercase;
}

.range-intro > p:last-child {
  max-width: 39ch;
  color: var(--muted);
  font-size: 14px;
}

.range-list {
  border-top: 1px solid var(--line);
}

.range-link {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 130px;
  align-items: center;
  gap: 22px;
  min-height: 142px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .3s var(--ease), color .3s var(--ease);
}

.range-link:hover {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--red);
}

.range-number {
  color: var(--red);
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
}

.range-link > span:nth-child(2) {
  display: grid;
  gap: 8px;
}

.range-link strong {
  font-family: var(--display);
  font-size: clamp(29px, 3vw, 43px);
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
}

.range-link small {
  color: var(--muted);
  font-size: 12px;
}

.range-link b {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

/* Catalogue */

.products-section {
  background:
    linear-gradient(rgba(255, 255, 255, .027) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 96px;
  color: var(--white);
}

.section-heading-dark .section-number {
  color: #8d9499;
}

.section-heading-dark .section-lead {
  color: #a9afb3;
}

.catalogue-group {
  padding-top: 84px;
  scroll-margin-top: 90px;
}

.catalogue-group + .catalogue-group {
  margin-top: 42px;
  border-top: 1px solid var(--line-dark);
}

.catalogue-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.catalogue-heading > div {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.catalogue-heading span {
  color: var(--red);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 700;
}

.catalogue-heading h3 {
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 650;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
}

.catalogue-heading > p {
  color: #92989d;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-align: right;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--line-dark);
}

.product-grid-short {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: 320px 1fr;
  background: var(--ink-soft);
  transition: background-color .3s ease, transform .3s var(--ease);
}

.product-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  background: var(--ink-lift);
  box-shadow: 0 24px 46px rgba(0, 0, 0, .28);
}

.product-visual {
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(17, 20, 22, .04) 1px, transparent 1px),
    linear-gradient(rgba(17, 20, 22, .04) 1px, transparent 1px),
    #f7f5f0;
  background-size: 48px 48px;
}

.product-visual img {
  width: 100%;
  height: 100%;
  padding: 27px;
  object-fit: contain;
  transition: transform .45s var(--ease);
}

.product-card:hover .product-visual img {
  transform: scale(1.025);
}

.product-body {
  display: flex;
  flex-direction: column;
  padding: 25px 27px 30px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.product-meta span,
.product-meta b {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-meta b {
  color: #737b80;
}

.product-card h4 {
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 34px);
  font-weight: 650;
  letter-spacing: -.01em;
  line-height: 1.02;
  text-transform: uppercase;
}

.product-card p {
  max-width: 43ch;
  color: #a6acb0;
  font-size: 13px;
  line-height: 1.65;
}

/* Motorsport */

.motorsport-story {
  position: relative;
  min-height: min(800px, 86svh);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #101414;
  color: var(--white);
}

.motorsport-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 7, 8, .08), rgba(4, 7, 8, .28) 52%, rgba(4, 7, 8, .7)),
    linear-gradient(0deg, rgba(4, 7, 8, .5), transparent 45%);
  pointer-events: none;
}

.motorsport-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.08);
}

.motorsport-panel {
  position: relative;
  z-index: 2;
  width: min(550px, calc(100% - 64px));
  margin-right: max(32px, calc((100vw - var(--shell)) / 2));
  margin-left: auto;
  padding: clamp(38px, 5vw, 68px);
  background: rgba(17, 20, 22, .9);
  border-top: 4px solid var(--red);
  backdrop-filter: blur(12px);
}

.motorsport-panel .section-number {
  margin-bottom: 52px;
  color: #9fa5a9;
}

.motorsport-panel .eyebrow {
  margin-bottom: 17px;
}

.motorsport-panel h2 {
  font-size: clamp(52px, 5.4vw, 80px);
}

.motorsport-panel > p:not(.section-number):not(.eyebrow) {
  margin: 26px 0 32px;
  color: #c0c5c8;
  font-size: 15px;
}

.motorsport-caption {
  position: absolute;
  z-index: 2;
  bottom: 25px;
  left: max(32px, calc((100vw - var(--shell)) / 2));
  color: rgba(255, 255, 255, .72);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Partnership */

.partnership-section {
  background: var(--paper-deep);
}

.partnership-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(350px, 5fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.partnership-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(190px, .8fr);
  gap: 14px;
}

.partnership-collage figure {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #cac8c1;
}

.partnership-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
  transition: transform .7s var(--ease);
}

.partnership-collage figure:hover img {
  transform: scale(1.02);
}

.partnership-wide img {
  object-position: center;
}

.partnership-collage figure:last-child img {
  object-position: 67% center;
}

.partnership-copy {
  min-width: 0;
}

.sponsor-mark {
  width: 112px;
  height: 112px;
  margin-bottom: 38px;
  object-fit: cover;
}

.partnership-copy .eyebrow {
  margin-bottom: 17px;
}

.partnership-copy h2 {
  font-size: clamp(48px, 5.1vw, 76px);
}

.partnership-copy > p:not(.eyebrow) {
  margin-top: 28px;
  color: #575d60;
  font-size: 15px;
}

.partnership-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 40px 0 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.partnership-facts div {
  display: flex;
  flex-direction: column-reverse;
  gap: 8px;
  padding: 21px 18px 21px 0;
}

.partnership-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.partnership-facts dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.partnership-facts dd {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

/* Photo gallery */

.gallery-section {
  background: var(--white);
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, 180px);
  gap: 14px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #d3d1cb;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .72));
  pointer-events: none;
}

.editorial-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.84) contrast(1.03);
  transition: transform .7s var(--ease), filter .7s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.editorial-grid figcaption {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 17px;
  left: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
}

.editorial-grid figcaption span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
}

.editorial-grid figcaption strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -.01em;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.gallery-a {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}

.gallery-b {
  grid-column: 8 / span 5;
  grid-row: 1;
}

.gallery-c {
  grid-column: 8 / span 5;
  grid-row: 2;
}

.gallery-d {
  grid-column: 1 / span 4;
  grid-row: 3 / span 2;
}

.gallery-e {
  grid-column: 5 / span 3;
  grid-row: 3 / span 2;
}

.gallery-e img {
  object-position: center 52%;
}

.gallery-f {
  grid-column: 8 / span 5;
  grid-row: 3 / span 2;
}

.gallery-f img {
  object-position: center 44%;
}

.gallery-g {
  grid-column: 1 / span 3;
  grid-row: 5 / span 2;
}

.gallery-h {
  grid-column: 4 / span 5;
  grid-row: 5;
}

.gallery-i {
  grid-column: 9 / span 4;
  grid-row: 5 / span 2;
}

.gallery-i img {
  object-position: 58% center;
}

.gallery-j {
  grid-column: 4 / span 5;
  grid-row: 6;
}

.gallery-k {
  grid-column: 1 / span 6;
  grid-row: 7 / span 2;
}

.gallery-k img {
  object-position: center 34%;
}

.gallery-l {
  grid-column: 7 / span 6;
  grid-row: 7 / span 2;
}

.gallery-l img {
  object-position: center 42%;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.social-links p {
  color: var(--muted);
  font-size: 14px;
}

.social-links > div {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Distributor */

.distributor-section {
  padding: clamp(88px, 9vw, 136px) 0;
  background: var(--eu-blue);
  color: var(--white);
}

.distributor-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(380px, 6fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.distributor-intro .section-number {
  margin-bottom: 62px;
  color: #a6b5c4;
}

.distributor-intro .eyebrow {
  margin-bottom: 18px;
  color: #f28ca0;
}

.distributor-intro h2 {
  font-size: clamp(56px, 6vw, 88px);
}

.distributor-intro > p:last-of-type {
  max-width: 52ch;
  margin-top: 26px;
  color: #c2ced9;
  font-size: 15px;
}

.distributor-intro .button {
  margin-top: 34px;
}

.distributor-card {
  padding: clamp(34px, 5vw, 66px);
  background: var(--white);
  color: var(--ink);
}

.distributor-card > p,
.distributor-card > span {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.distributor-card > p {
  margin-bottom: 48px;
  color: var(--red);
}

.distributor-card > span {
  color: var(--muted);
}

.distributor-card h3 {
  margin: 10px 0 9px;
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 67px);
  font-weight: 650;
  letter-spacing: -.03em;
  line-height: .95;
  text-transform: uppercase;
}

.distributor-card small {
  color: var(--muted);
}

.distributor-credential {
  grid-column: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 4px 14px;
  margin-top: -88px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, .24);
}

.distributor-credential img {
  grid-row: 1 / span 2;
  width: 40px;
  height: auto;
}

.distributor-credential span {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.distributor-credential p {
  color: #aebdca;
  font-size: 11px;
}

/* Footer */

.site-footer {
  padding: 82px 0 28px;
  background: #0a0c0e;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(36px, 6vw, 84px);
  padding-bottom: 66px;
}

.footer-brand img {
  width: 148px;
  height: auto;
}

.footer-brand p {
  max-width: 38ch;
  margin-top: 25px;
  color: #858d92;
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: #6f777c;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  color: #c2c7ca;
  font-size: 12px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #747c81;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: #c2c7ca;
  text-decoration: none;
}

/* Responsive */

@media (max-width: 1180px) {
  .hero-split {
    grid-template-columns: minmax(440px, .9fr) minmax(0, 1.1fr);
  }

  .hero-copy h1 {
    font-size: clamp(62px, 7.4vw, 90px);
  }

  .desktop-nav {
    gap: 21px;
  }

  .product-card {
    grid-template-rows: 290px 1fr;
  }

  .partnership-collage figure {
    min-height: 500px;
  }
}

@media (max-width: 1000px) {
  .shell {
    width: min(var(--shell), calc(100% - 48px));
  }

  .header-inner {
    min-height: 76px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    display: grid;
    place-content: center;
    gap: 7px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--ink);
    transition: transform .25s ease;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    visibility: hidden;
    transform: translateY(-8px);
    padding: 12px 24px 24px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .mobile-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .menu-open .mobile-nav {
    visibility: visible;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

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

  .hero-copy-inner {
    min-height: 640px;
    padding: 72px 7vw 54px;
  }

  .hero-copy .section-code {
    margin-bottom: 62px;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(68px, 13vw, 112px);
  }

  .hero-media {
    min-height: 66svh;
  }

  .hero-media > img {
    object-position: center;
  }

  .credential-rail {
    grid-template-columns: 1fr 1fr;
  }

  .credential-card:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .credential-card:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr 5fr;
  }

  .range-showcase,
  .partnership-layout {
    grid-template-columns: 1fr;
  }

  .range-photo {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .range-intro {
    gap: 36px;
  }

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

  .partnership-copy {
    max-width: 700px;
  }

  .partnership-collage figure {
    min-height: 570px;
  }

  .editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 280px;
  }

  .gallery-item,
  .gallery-a,
  .gallery-b,
  .gallery-c,
  .gallery-d,
  .gallery-e,
  .gallery-f,
  .gallery-g,
  .gallery-h,
  .gallery-i,
  .gallery-j,
  .gallery-k,
  .gallery-l {
    grid-column: auto;
    grid-row: auto;
    min-height: 280px;
  }

  .gallery-a,
  .gallery-h {
    grid-column: 1 / -1;
    min-height: 480px;
  }

  .distributor-layout {
    grid-template-columns: 1fr;
  }

  .distributor-credential {
    grid-column: 1;
    margin-top: -30px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-column:last-child {
    display: none;
  }
}

@media (max-width: 700px) {
  .shell {
    width: calc(100% - 32px);
  }

  .utility-inner > span:first-child {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand,
  .brand img {
    width: 118px;
  }

  .hero-copy-inner {
    min-height: 620px;
    padding: 64px 20px 58px;
  }

  .hero-copy .section-code {
    margin-bottom: 48px;
  }

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

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-media figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-media figcaption strong {
    text-align: left;
  }

  .credential-rail {
    grid-template-columns: 1fr;
  }

  .credential-card,
  .credential-card:nth-child(4) {
    min-height: 110px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .credential-card:first-child {
    border-top: 0;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 52px;
  }

  .section-heading h2,
  .motorsport-panel h2,
  .partnership-copy h2,
  .distributor-intro h2 {
    font-size: clamp(47px, 14vw, 68px);
  }

  .range-photo {
    min-height: 370px;
  }

  .range-intro {
    padding: 31px 26px;
  }

  .range-link {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    min-height: 126px;
  }

  .range-link > b {
    display: none;
  }

  .range-link strong {
    font-size: 28px;
  }

  .product-grid,
  .product-grid-short {
    grid-template-columns: 1fr;
  }

  .catalogue-group {
    padding-top: 58px;
  }

  .catalogue-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalogue-heading > p {
    text-align: left;
  }

  .product-card {
    grid-template-rows: 320px 1fr;
  }

  .motorsport-story {
    min-height: auto;
    display: block;
  }

  .motorsport-story::after {
    display: none;
  }

  .motorsport-image {
    position: relative;
    height: 56svh;
    min-height: 420px;
  }

  .motorsport-panel {
    width: 100%;
    margin: 0;
    padding: 48px 20px 58px;
    background: var(--ink);
  }

  .motorsport-panel .section-number {
    margin-bottom: 42px;
  }

  .motorsport-caption {
    top: calc(56svh - 34px);
    bottom: auto;
    left: 20px;
  }

  .partnership-collage {
    grid-template-columns: 1fr;
  }

  .partnership-collage figure {
    min-height: 420px;
  }

  .partnership-collage figure:last-child {
    min-height: 300px;
  }

  .sponsor-mark {
    width: 92px;
    height: 92px;
  }

  .editorial-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .editorial-grid figure,
  .gallery-a,
  .gallery-b,
  .gallery-c,
  .gallery-d,
  .gallery-e,
  .gallery-f,
  .gallery-g,
  .gallery-h,
  .gallery-i,
  .gallery-j,
  .gallery-k,
  .gallery-l {
    grid-column: 1;
    grid-row: auto;
    min-height: 310px;
  }

  .gallery-a,
  .gallery-h {
    min-height: 430px;
  }

  .gallery-e,
  .gallery-f,
  .gallery-k,
  .gallery-l {
    min-height: 470px;
  }

  .social-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .social-links > div {
    flex-wrap: wrap;
  }

  .distributor-section {
    padding: 80px 0;
  }

  .distributor-layout {
    gap: 42px;
  }

  .distributor-intro .section-number {
    margin-bottom: 43px;
  }

  .distributor-card {
    padding: 33px 24px 38px;
  }

  .distributor-card > p {
    margin-bottom: 38px;
  }

  .distributor-credential {
    margin-top: -24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
