@font-face {
  font-family: "Roboto Condensed";
  src: url("assets/fonts/roboto-condensed-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("assets/fonts/roboto-condensed-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --blue: #044879;
  --blue-deep: #052f53;
  --red: #e32c2b;
  --ink: #1c1c1c;
  --paper: #efefef;
  --cream: #f9f9f4;
  --white: #ffffff;
  --line: #cfcfcf;
  --header-height: 96px;
  --page-gutter: clamp(20px, 3.4vw, 52px);
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font-family: inherit;
}

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

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

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 11px 16px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 38px;
  padding: 7px var(--page-gutter);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid #dedede;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement__secondary::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  margin: 0 38px 2px 0;
  background: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #d9d9d9;
  backdrop-filter: blur(14px);
}

.site-header__inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-inline: var(--page-gutter);
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 42px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-link {
  position: relative;
  padding-block: 10px;
}

.desktop-nav a::after,
.header-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.header-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  padding: 5px;
}

.brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.header-actions {
  justify-content: flex-end;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 22px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 180ms ease;
}

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

.button:hover svg {
  transform: translateX(4px);
}

.button--compact {
  min-height: 44px;
  padding: 11px 17px;
  gap: 14px;
  font-size: 11px;
}

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-block: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.text-link--light {
  color: var(--white);
}

.hero {
  min-height: calc(100svh - var(--header-height) - 38px);
  display: grid;
  grid-template-columns: minmax(0, 56fr) minmax(520px, 44fr);
  border-bottom: 1px solid var(--ink);
}

.hero__copy {
  position: relative;
  min-width: 0;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(52px, 5.5vw, 86px) clamp(30px, 5.5vw, 86px) 42px;
  color: var(--white);
  background: var(--blue);
}

.hero__copy::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--red);
}

.hero__eyebrow {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(42px, 5vh, 70px);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(80px, 8.3vw, 138px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.8;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero__outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.96);
}

.hero__lede {
  position: relative;
  z-index: 2;
  max-width: 590px;
  margin: 34px 0 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.36;
}

.hero__actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.hero__proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: auto;
  padding-top: 36px;
  padding-left: 0;
  list-style: none;
}

.hero__proof li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 18px;
}

.hero__proof li + li {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.38);
}

.hero__proof strong {
  font-size: clamp(25px, 2.4vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1;
}

.hero__proof span {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__year {
  position: absolute;
  right: -16px;
  bottom: -48px;
  color: transparent;
  font-size: clamp(160px, 17vw, 280px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  opacity: 0.11;
  -webkit-text-stroke: 2px var(--white);
  pointer-events: none;
  transform: rotate(-4deg);
}

.hero__visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 1.75fr) minmax(190px, 0.9fr);
  grid-template-rows: 58% 42%;
  min-width: 0;
  min-height: 700px;
  overflow: hidden;
  background: #f0ecf1;
}

.hero__visual::after {
  content: "";
  grid-column: 2;
  grid-row: 2;
  background: var(--red);
}

.hero-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

.hero-card--main {
  grid-column: 1;
  grid-row: 1 / 3;
  border-right: 1px solid var(--ink);
}

.hero-card--side {
  grid-column: 2;
  grid-row: 1;
  border-bottom: 1px solid var(--ink);
}

.hero-card__caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(28, 28, 28, 0.22);
  backdrop-filter: blur(8px);
}

.hero-card__caption > span {
  padding: 6px 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-card__caption p {
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
}

.hero-card__index {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 9px;
  color: var(--white);
  background: var(--ink);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-stamp {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--white);
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.hero-stamp span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.45em;
}

.hero-stamp strong {
  font-size: clamp(48px, 5vw, 78px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.ticker {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 17px 0;
  animation: ticker 34s linear infinite;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ticker__track i {
  width: 7px;
  height: 7px;
  background: var(--red);
  transform: rotate(45deg);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.signal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.signal__item {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 34px var(--page-gutter) 30px;
  border-right: 1px solid var(--ink);
}

.signal__number {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.signal h2 {
  margin: 42px 0 7px;
  font-size: clamp(23px, 2vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.signal p {
  max-width: 260px;
  margin: 0;
  color: #4d4d4d;
  font-size: 14px;
}

.signal__item--accent {
  color: var(--white);
  background: var(--blue);
  border-right: 0;
}

.signal__item--accent > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.signal__item--accent strong {
  max-width: 230px;
  margin: auto 0 26px;
  font-size: clamp(34px, 3vw, 52px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  text-transform: uppercase;
}

.signal__item--accent a {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.colour-lab {
  padding: clamp(90px, 9vw, 150px) var(--page-gutter);
  background: var(--cream);
}

.section-heading {
  max-width: 1480px;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.6fr);
  align-items: end;
  gap: 52px;
  margin: 0 auto clamp(46px, 5vw, 76px);
}

.kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -26px;
}

.section-heading h2,
.line-up h2,
.confidence h2,
.faq h2,
.finale h2 {
  margin: 0;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.84;
  text-transform: uppercase;
}

.section-heading > p:last-child {
  max-width: 430px;
  margin: 0 0 7px;
  font-size: clamp(17px, 1.5vw, 22px);
}

.crew-switcher {
  max-width: 1480px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(370px, 0.6fr);
  margin: 0 auto;
  border: 1px solid var(--ink);
  box-shadow: 16px 16px 0 var(--blue);
  transition: --stage-tint 240ms ease;
}

.crew-switcher__visual {
  position: relative;
  min-width: 0;
  height: clamp(590px, 51vw, 760px);
  overflow: hidden;
  background: var(--stage-tint);
  border-right: 1px solid var(--ink);
}

.crew-switcher__visual::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 24%, transparent 80%, rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

.crew-switcher__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 180ms ease, transform 500ms ease;
}

.crew-switcher__visual img.is-changing {
  opacity: 0;
  transform: scale(1.012);
}

.crew-switcher__ghost {
  position: absolute;
  z-index: 2;
  right: -14px;
  bottom: -2.6vw;
  color: transparent;
  font-size: clamp(116px, 16vw, 260px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.8;
  opacity: 0.28;
  -webkit-text-stroke: 2px var(--white);
  pointer-events: none;
}

.crew-switcher__size {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  padding: 10px 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.crew-switcher__info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 4.3vw, 70px);
  background: var(--paper);
}

.crew-switcher__count {
  align-self: flex-end;
  margin: 0 0 auto;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.crew-switcher__info h3 {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: clamp(48px, 5vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.crew-switcher__description {
  max-width: 430px;
  margin: 0;
  font-size: clamp(17px, 1.5vw, 21px);
}

.crew-switcher__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 36px;
  padding-block: 18px;
  border-top: 1px solid #a8a8a8;
  border-bottom: 1px solid #a8a8a8;
}

.crew-switcher__meta p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
}

.crew-switcher__meta p + p {
  padding-left: 15px;
  border-left: 1px solid #a8a8a8;
}

.crew-switcher__meta span {
  color: #686868;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.crew-switcher__meta strong {
  font-size: 13px;
  text-transform: uppercase;
}

.crew-switcher__info .button {
  width: 100%;
  margin-top: auto;
}

.crew-switcher__controls {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--white);
  border-top: 1px solid var(--ink);
}

.crew-choice {
  min-width: 0;
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.crew-choice:last-child {
  border-right: 0;
}

.crew-choice:hover,
.crew-choice.is-active {
  color: var(--white);
  background: var(--blue);
}

.crew-choice__swatch {
  width: 20px;
  height: 20px;
  background: var(--swatch);
  border: 1px solid rgba(28, 28, 28, 0.45);
  box-shadow: 0 0 0 3px var(--white);
}

.crew-choice small {
  font-size: 9px;
  letter-spacing: 0.12em;
  opacity: 0.65;
}

.line-up {
  padding: clamp(82px, 8vw, 130px) 0 clamp(100px, 9vw, 150px);
  background: var(--white);
  border-top: 1px solid var(--ink);
}

.line-up__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  padding-inline: var(--page-gutter);
}

.line-up h2 {
  font-size: clamp(50px, 6vw, 94px);
}

.product-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.product-card {
  min-width: 0;
  background: var(--white);
}

.product-card__media {
  position: relative;
  aspect-ratio: 1000 / 1289;
  overflow: hidden;
  background: #f4f0f4;
}

.product-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 350ms ease, transform 550ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.product-card__secondary {
  opacity: 0;
}

.product-card__link:hover .product-card__primary:has(+ .product-card__secondary) {
  opacity: 0;
}

.product-card__link:hover .product-card__secondary {
  opacity: 1;
  transform: scale(1.025);
}

.product-card__link:hover .product-card__media img:only-of-type {
  transform: scale(1.025);
}

.product-card__badge {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--blue);
  background: var(--white);
  border: 1px solid rgba(28, 28, 28, 0.18);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-card__arrow {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-size: 18px;
  transform: translateY(56px);
  transition: transform 220ms ease;
}

.product-card__link:hover .product-card__arrow {
  transform: translateY(0);
}

.product-card__body {
  min-height: 142px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: start;
  gap: 4px 16px;
  padding: 21px 18px 24px;
}

.product-card__body p {
  grid-column: 1 / -1;
  margin: 0;
  color: #6c6c6c;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card__body strong {
  font-size: 15px;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-card__body > span {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.heritage {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
  color: var(--white);
  background: var(--ink);
}

.heritage__image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-right: 1px solid #505050;
}

.heritage__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(0, 0, 0, 0.62));
}

.heritage__image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
}

.heritage__image > span {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 30px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.heritage__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 7vw, 118px);
}

.heritage .kicker {
  color: #84b6d9;
}

.heritage h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(54px, 6.4vw, 102px);
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}

.heritage__copy > p:not(.kicker) {
  max-width: 680px;
  margin: 32px 0 42px;
  color: #d7d7d7;
  font-size: clamp(16px, 1.35vw, 21px);
}

.heritage__timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 42px;
  padding-block: 24px;
  border-top: 1px solid #505050;
  border-bottom: 1px solid #505050;
}

.heritage__timeline div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.heritage__timeline div + div {
  padding-left: 20px;
  border-left: 1px solid #505050;
}

.heritage__timeline strong {
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1;
}

.heritage__timeline span {
  max-width: 120px;
  color: #bdbdbd;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.heritage__copy .text-link {
  align-self: flex-start;
}

.confidence {
  padding: clamp(92px, 9vw, 150px) var(--page-gutter);
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}

.confidence__intro {
  max-width: 1480px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 60px;
  margin: 0 auto 68px;
}

.confidence__intro .kicker {
  grid-column: 1 / -1;
  margin-bottom: -24px;
}

.confidence h2 {
  font-size: clamp(54px, 6.2vw, 98px);
}

.confidence__intro > p:last-child {
  max-width: 460px;
  margin: 0 0 4px;
  font-size: clamp(17px, 1.4vw, 21px);
}

.confidence__grid {
  max-width: 1480px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border: 1px solid var(--ink);
}

.confidence-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--cream);
  border-right: 1px solid var(--ink);
}

.confidence-card:last-child {
  border-right: 0;
}

.confidence-card > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.confidence-card h3 {
  margin: auto 0 10px;
  font-size: clamp(25px, 2vw, 32px);
  line-height: 1;
  text-transform: uppercase;
}

.confidence-card p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.faq {
  max-width: 1480px;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 8vw, 130px);
  margin: 0 auto;
  padding: clamp(100px, 10vw, 160px) var(--page-gutter);
  background: var(--cream);
}

.faq h2 {
  margin-bottom: 44px;
  font-size: clamp(54px, 5.5vw, 88px);
}

.faq__heading .button {
  min-width: 200px;
}

.faq__list {
  align-self: center;
  border-top: 1px solid var(--ink);
}

.faq details {
  border-bottom: 1px solid var(--ink);
}

.faq summary {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-size: clamp(18px, 1.7vw, 25px);
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
}

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

.faq summary span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-size: 22px;
  font-weight: 400;
  transition: transform 220ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 720px;
  margin: -5px 0 28px;
  padding-right: 54px;
  color: #555;
  font-size: 16px;
}

.finale {
  min-height: 720px;
  display: grid;
  grid-template-columns: 29fr 42fr 29fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.finale__image {
  min-width: 0;
  overflow: hidden;
  background: #f0ecf1;
}

.finale__image img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center top;
  transition: transform 800ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.finale:hover .finale__image img {
  transform: scale(1.025);
}

.finale__image--left {
  border-right: 1px solid var(--ink);
}

.finale__image--right {
  border-left: 1px solid var(--ink);
}

.finale__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
  color: var(--white);
  background: var(--blue);
  text-align: center;
}

.finale .kicker {
  color: #abd1eb;
}

.finale h2 {
  font-size: clamp(58px, 6.4vw, 104px);
}

.finale__copy > p:not(.kicker) {
  max-width: 390px;
  margin: 27px 0 34px;
  font-size: clamp(17px, 1.4vw, 21px);
}

.site-footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  padding: 34px var(--page-gutter);
  color: var(--white);
  background: var(--ink);
}

.site-footer__brand {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  padding: 8px;
  background: var(--white);
}

.site-footer__brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.site-footer p {
  margin: 0;
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  gap: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.site-footer > span {
  color: #a9a9a9;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-shop {
  display: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 84px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-actions {
    gap: 18px;
  }

  .header-link {
    display: none;
  }

  .brand,
  .brand img {
    width: 66px;
    height: 66px;
  }

  .hero {
    grid-template-columns: minmax(0, 54fr) minmax(430px, 46fr);
  }

  .hero__copy,
  .hero__visual {
    min-height: 660px;
  }

  .hero__copy {
    padding-inline: 46px;
  }

  .hero h1 {
    font-size: clamp(70px, 8vw, 94px);
  }

  .hero__visual {
    grid-template-columns: minmax(250px, 1.6fr) minmax(150px, 0.9fr);
  }

  .hero-card__caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .hero-card__caption p {
    font-size: 10px;
  }

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

  .signal__item:nth-child(2) {
    border-right: 0;
  }

  .signal__item:nth-child(-n+2) {
    border-bottom: 1px solid var(--ink);
  }

  .crew-switcher {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  }

  .crew-choice {
    grid-template-columns: auto 1fr;
  }

  .crew-choice small {
    display: none;
  }

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

  .product-card:last-child {
    display: none;
  }

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

  .confidence-card:nth-child(2) {
    border-right: 0;
  }

  .confidence-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--ink);
  }

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

  .site-footer > span {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 72px;
    --page-gutter: 20px;
  }

  .announcement {
    min-height: 34px;
    gap: 0;
    font-size: 9px;
    letter-spacing: 0.17em;
  }

  .announcement__secondary {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: 14px;
  }

  .desktop-nav,
  .header-actions .button svg {
    display: none;
  }

  .brand,
  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand {
    grid-column: 2;
  }

  .header-actions {
    grid-column: 3;
  }

  .header-actions .button {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 9px;
  }

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

  .hero__copy {
    min-height: 560px;
    padding: 40px 22px 30px 27px;
  }

  .hero__eyebrow {
    margin-bottom: 42px;
  }

  .hero h1 {
    font-size: clamp(64px, 18.4vw, 82px);
    line-height: 0.82;
  }

  .hero__outline {
    -webkit-text-stroke-width: 1.5px;
  }

  .hero__lede {
    max-width: 540px;
    margin-top: 27px;
    font-size: 17px;
  }

  .hero__actions {
    align-items: flex-start;
    gap: 20px;
    margin-top: 28px;
  }

  .hero__actions .text-link {
    display: none;
  }

  .hero__proof {
    margin-top: 36px;
    padding-top: 24px;
  }

  .hero__proof strong {
    font-size: 25px;
  }

  .hero__proof span {
    font-size: 8px;
    letter-spacing: 0.11em;
  }

  .hero__year {
    right: -8px;
    bottom: -15px;
    font-size: 150px;
  }

  .hero__visual {
    min-height: 0;
    height: 510px;
    grid-template-columns: minmax(0, 68fr) minmax(118px, 32fr);
  }

  .hero-card__caption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 11px;
  }

  .hero-card__caption > span {
    padding: 4px 6px;
    font-size: 7px;
  }

  .hero-card__caption p {
    font-size: 9px;
  }

  .hero-stamp strong {
    font-size: 42px;
  }

  .ticker__track {
    padding-block: 14px;
    font-size: 10px;
  }

  .signal__item {
    min-height: 215px;
    padding: 24px 20px;
  }

  .signal h2 {
    margin-top: 28px;
    font-size: 23px;
  }

  .signal p {
    font-size: 13px;
  }

  .signal__item--accent strong {
    font-size: 34px;
  }

  .colour-lab {
    padding-block: 78px 92px;
  }

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

  .section-heading .kicker {
    grid-column: auto;
    margin-bottom: -5px;
  }

  .section-heading h2,
  .line-up h2,
  .confidence h2,
  .faq h2,
  .finale h2 {
    font-size: clamp(52px, 15vw, 70px);
  }

  .section-heading > p:last-child {
    font-size: 17px;
  }

  .crew-switcher {
    grid-template-columns: 1fr;
    box-shadow: 8px 8px 0 var(--blue);
  }

  .crew-switcher__visual {
    height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .crew-switcher__info {
    min-height: 475px;
    padding: 38px 24px;
  }

  .crew-switcher__count {
    margin-bottom: 54px;
  }

  .crew-switcher__info h3 {
    font-size: 54px;
  }

  .crew-switcher__description {
    font-size: 17px;
  }

  .crew-switcher__meta {
    margin-block: 32px 28px;
  }

  .crew-switcher__controls {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .crew-switcher__controls::-webkit-scrollbar {
    display: none;
  }

  .crew-choice {
    flex: 0 0 168px;
    min-height: 68px;
    scroll-snap-align: start;
  }

  .line-up {
    padding-block: 80px 100px;
  }

  .line-up__head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 34px;
  }

  .product-rail {
    display: flex;
    gap: 1px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .product-rail::-webkit-scrollbar {
    display: none;
  }

  .product-card,
  .product-card:last-child {
    display: block;
    flex: 0 0 78vw;
    scroll-snap-align: start;
  }

  .product-card__arrow {
    transform: none;
  }

  .heritage {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .heritage__image {
    min-height: 360px;
    border-right: 0;
    border-bottom: 1px solid #505050;
  }

  .heritage__image img {
    min-height: 360px;
  }

  .heritage__copy {
    padding: 74px 20px 82px;
  }

  .heritage h2 {
    font-size: clamp(52px, 14.4vw, 72px);
  }

  .heritage__copy > p:not(.kicker) {
    margin-block: 28px 38px;
    font-size: 17px;
  }

  .heritage__timeline {
    gap: 0;
  }

  .heritage__timeline div + div {
    padding-left: 12px;
  }

  .heritage__timeline strong {
    font-size: 27px;
  }

  .heritage__timeline span {
    font-size: 8px;
  }

  .confidence {
    padding-block: 78px 90px;
  }

  .confidence__intro {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 46px;
  }

  .confidence__intro .kicker {
    grid-column: auto;
    margin-bottom: -7px;
  }

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

  .confidence-card {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .confidence-card:nth-child(2) {
    border-right: 0;
  }

  .confidence-card:last-child {
    border-bottom: 0;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 66px;
    padding-block: 90px 110px;
  }

  .faq h2 {
    margin-bottom: 34px;
  }

  .faq summary {
    min-height: 74px;
    font-size: 18px;
  }

  .faq details p {
    padding-right: 18px;
    font-size: 15px;
  }

  .finale {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
  }

  .finale__copy {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 510px;
    padding: 60px 20px;
  }

  .finale__image {
    grid-row: 2;
    height: 370px;
  }

  .finale__image img {
    min-height: 370px;
  }

  .finale__image--left {
    border-right: 1px solid var(--ink);
  }

  .finale__image--right {
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding: 40px 20px 106px;
  }

  .site-footer p {
    font-size: 30px;
  }

  .site-footer nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    gap: 17px 25px;
  }

  .mobile-shop {
    position: fixed;
    z-index: 80;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 64px;
    padding: 12px 17px;
    color: var(--white);
    background: var(--blue);
    border: 1px solid rgba(255, 255, 255, 0.68);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity 220ms ease, transform 300ms ease;
  }

  .mobile-shop strong {
    white-space: nowrap;
  }

  .mobile-shop.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 420px) {
  .hero__copy {
    min-height: 575px;
  }

  .hero__proof li {
    padding-right: 9px;
  }

  .hero__proof li + li {
    padding-left: 9px;
  }

  .hero__visual {
    height: 470px;
  }

  .hero-card__caption {
    display: block;
  }

  .hero-card__caption > span {
    display: inline-block;
    margin-bottom: 7px;
  }

  .hero-card__caption p {
    text-align: left;
  }

  .signal__item {
    min-height: 230px;
  }

  .signal__item--accent strong {
    font-size: 29px;
  }

  .crew-switcher__visual {
    height: 480px;
  }

  .crew-switcher__meta strong {
    font-size: 11px;
  }

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

  .heritage__timeline div {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding-block: 12px;
  }

  .heritage__timeline div + div {
    padding-left: 0;
    border-top: 1px solid #505050;
    border-left: 0;
  }

  .heritage__timeline span {
    max-width: none;
  }

  .finale__image {
    height: 320px;
  }

  .finale__image img {
    min-height: 320px;
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
