@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 {
  --navy: #044879;
  --navy-deep: #033a63;
  --ink: #1c1c1c;
  --white: #ffffff;
  --cream: #f9f9f4;
  --grey: #efefef;
  --line: rgba(28, 28, 28, 0.28);
  --line-light: rgba(255, 255, 255, 0.28);
  --page-gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(76px, 8vw, 128px);
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 22px);
}

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

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
figure,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
b {
  font-weight: 700;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

:focus-visible {
  outline: 3px solid #87c8f4;
  outline-offset: 4px;
}

.announcement {
  display: flex;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 5px var(--page-gutter);
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(249, 249, 244, 0.97);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 0 var(--page-gutter);
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.site-nav a,
.header-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a,
.header-link,
.site-footer nav a,
.text-link,
.video-unit__shop,
.use-grid a,
.service-grid a {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.brand {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
}

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

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 16px 24px;
  border: 1px solid currentColor;
  background: var(--navy);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

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

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

.button--small {
  min-height: 48px;
  padding: 13px 18px;
  font-size: 11px;
}

.kicker {
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.hero {
  display: grid;
  min-height: calc(100svh - 114px);
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  background: var(--navy);
  color: var(--white);
}

.hero__copy {
  position: relative;
  display: flex;
  min-height: 780px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(54px, 6vw, 96px) clamp(38px, 5vw, 76px) 48px;
  overflow: hidden;
}

.hero__copy::after {
  position: absolute;
  right: -8%;
  bottom: -5%;
  color: rgba(255, 255, 255, 0.045);
  content: "R";
  font-size: clamp(260px, 30vw, 520px);
  font-weight: 700;
  line-height: 0.75;
}

.hero__eyebrow {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(42px, 6vw, 80px);
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.36);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin-bottom: 42px;
  font-size: clamp(66px, 7.5vw, 122px);
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero__outline {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--white);
}

.hero__lede {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-bottom: 34px;
  font-size: clamp(20px, 1.5vw, 25px);
  line-height: 1.35;
}

.hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-bottom: 48px;
}

.hero__proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  list-style: none;
}

.hero__proof li {
  min-width: 0;
  padding: 20px 18px 0 0;
}

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

.hero__proof strong,
.hero__proof span {
  display: block;
}

.hero__proof strong {
  margin-bottom: 3px;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1;
}

.hero__proof span {
  font-size: 10px;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: #b3a9a0;
}

.hero__image,
.hero__image img {
  width: 100%;
  height: 100%;
}

.hero__image {
  margin: 0;
}

.hero__image img {
  object-fit: cover;
  object-position: center 25%;
}

.hero__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  background: rgba(249, 249, 244, 0.96);
  color: var(--ink);
}

.hero__caption span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__caption p {
  margin: 0;
  text-align: right;
  line-height: 1.25;
}

.hero__stamp {
  position: absolute;
  top: 30px;
  left: 30px;
  display: grid;
  width: 126px;
  height: 126px;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(4, 72, 121, 0.88);
  color: var(--white);
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.hero__stamp span {
  font-size: 10px;
  letter-spacing: 0.17em;
}

.hero__stamp strong {
  margin: 7px 0;
  font-size: 26px;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--cream);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  padding: 16px 0;
  animation: marquee 28s linear infinite;
}

.marquee span {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee i {
  width: 9px;
  height: 9px;
  background: var(--navy);
  transform: rotate(45deg);
}

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

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: end;
  gap: 50px;
  margin-bottom: clamp(46px, 5vw, 72px);
}

.section-head--stacked {
  display: block;
  max-width: 880px;
}

.section-head--stacked > p:last-child {
  max-width: 680px;
}

.section-head h2,
.fit-guide h2,
.detail-section h2,
.heritage-section h2,
.faq h2 {
  max-width: 940px;
  margin-bottom: 0;
  font-size: clamp(56px, 6vw, 96px);
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-head > p,
.section-head > div > p:last-child,
.section-head--stacked > p:last-child {
  margin-bottom: 0;
  font-size: 20px;
}

.section-head--light,
.section-head--dark {
  color: var(--white);
}

.category-section,
.product-section,
.video-section,
.use-section,
.outfit-section,
.fit-guide,
.detail-section,
.service-section,
.faq {
  padding: var(--section-space) var(--page-gutter);
}

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

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

.category-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--grey);
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 28, 28, 0.72), transparent 58%);
  content: "";
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

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

.category-card > span {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: var(--white);
}

.category-card small,
.category-card strong,
.category-card em {
  display: block;
}

.category-card small {
  margin-bottom: 16px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.category-card strong {
  margin-bottom: 10px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 0.95;
  text-transform: uppercase;
}

.category-card em {
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.product-section--cream {
  background: var(--cream);
}

.product-section--ink {
  background: var(--ink);
  color: var(--white);
}

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

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

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.product-card a,
.product-card__media,
.product-card__body {
  display: block;
}

.product-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--grey);
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

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

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card__body {
  padding: 18px;
}

.product-card__body small,
.product-card__body strong,
.product-card__body > span {
  display: block;
}

.product-card__body small {
  min-height: 17px;
  margin-bottom: 8px;
  color: #5f5f5f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.product-card__body strong {
  min-height: 50px;
  margin-bottom: 20px;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.02;
  text-transform: uppercase;
}

.product-card__body > span {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-card__body b {
  font-size: 18px;
}

.product-card__body em {
  color: var(--navy);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card--dark {
  border-color: var(--line-light);
}

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

.section-cta p {
  max-width: 680px;
  margin: 0;
  font-size: 22px;
}

.section-cta--dark {
  border-top-color: var(--line-light);
}

.video-section {
  background: var(--navy);
  color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.video-unit {
  min-width: 0;
}

.video-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.video-card__media {
  position: relative;
  display: block;
  height: min(64svh, 580px);
  min-height: 480px;
  overflow: hidden;
  background: #101010;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-card__media--contain video {
  object-fit: contain;
}

.video-card__number {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 10px;
  background: rgba(28, 28, 28, 0.82);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: rgba(4, 72, 121, 0.72);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.video-card__play i {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--white);
}

.video-card.is-playing .video-card__play {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.88);
}

.video-card:hover .video-card__play,
.video-card:focus-visible .video-card__play {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-card__body {
  display: block;
  min-height: 185px;
  padding: 22px;
}

.video-card__body small,
.video-card__body strong,
.video-card__body span {
  display: block;
}

.video-card__body small {
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.video-card__body strong {
  margin-bottom: 12px;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 0.95;
  text-transform: uppercase;
}

.video-card__body span {
  font-size: 17px;
}

.video-unit__shop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 2px;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.use-section {
  background: var(--cream);
}

.use-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.use-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 30px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.use-grid article > span,
.detail-grid article > span,
.fit-guide__grid article > span {
  margin-bottom: 56px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.use-grid h3,
.detail-grid h3,
.fit-guide__grid h3,
.service-grid h3 {
  margin-bottom: 18px;
  font-size: clamp(28px, 2.5vw, 40px);
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-transform: uppercase;
}

.use-grid p {
  margin-bottom: 30px;
}

.use-grid a {
  margin-top: auto;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.outfit-section {
  background: var(--ink);
  color: var(--white);
}

.look-card {
  border: 1px solid var(--line-light);
}

.look-card--feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(440px, 0.95fr);
  margin-bottom: 24px;
}

.look-card__media {
  position: relative;
  height: min(62svh, 560px);
  overflow: hidden;
  background: #343434;
}

.look-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.look-card__media > span {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 13px;
  background: var(--cream);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.look-card__content {
  padding: clamp(28px, 4vw, 58px);
}

.look-card__content h3 {
  margin-bottom: 24px;
  font-size: clamp(42px, 4vw, 68px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.look-card__content > p:not(.kicker) {
  margin-bottom: 30px;
}

.look-list {
  margin: 0 0 30px;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.look-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 15px;
}

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

.look-grid .look-card__media {
  height: min(54svh, 470px);
}

.look-grid .look-card__content {
  padding: 32px;
}

.look-grid .look-card__content h3 {
  font-size: clamp(36px, 3.4vw, 54px);
}

.fit-guide {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 7vw, 110px);
  background: var(--cream);
}

.fit-guide__intro > p:not(.kicker) {
  max-width: 520px;
  margin: 30px 0;
}

.fit-guide__grid {
  border-top: 1px solid var(--ink);
}

.fit-guide__grid article {
  display: grid;
  grid-template-columns: 54px minmax(180px, 0.65fr) 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}

.fit-guide__grid article > span {
  margin: 0;
}

.fit-guide__grid h3,
.fit-guide__grid p {
  margin: 0;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 7vw, 110px);
  background: var(--grey);
}

.detail-section__intro > p:not(.kicker) {
  max-width: 520px;
  margin-top: 30px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.detail-grid article {
  min-height: 310px;
  padding: 26px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.detail-grid article > span {
  display: block;
  margin-bottom: 52px;
}

.heritage-section {
  position: relative;
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(50px, 7vw, 120px);
  padding: var(--section-space) var(--page-gutter);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.heritage-section__mark {
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(180px, 25vw, 380px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.heritage-section > div:last-child {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.heritage-section h2 {
  margin-bottom: 30px;
}

.heritage-section p:not(.kicker) {
  max-width: 650px;
  margin-bottom: 34px;
  font-size: 21px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.service-grid article {
  min-height: 360px;
  padding: 28px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.service-grid article > span {
  display: block;
  margin-bottom: 44px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-grid h3 {
  font-size: clamp(26px, 2.2vw, 36px);
}

.service-grid a {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
}

.faq {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 7vw, 110px);
  background: var(--cream);
}

.faq__intro > p:last-child {
  max-width: 470px;
  margin-top: 30px;
}

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

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

.faq summary {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  line-height: 1.05;
  list-style: none;
  text-transform: uppercase;
}

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

.faq summary span {
  flex: 0 0 auto;
  font-size: 28px;
  transition: transform 160ms ease;
}

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

.faq details p {
  max-width: 720px;
  margin: 0;
  padding: 0 52px 26px 0;
  font-size: 17px;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  align-content: center;
  overflow: hidden;
  padding: 90px var(--page-gutter);
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.final-cta > *:not(.final-cta__ghost) {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  max-width: 1240px;
  margin-bottom: 30px;
  font-size: clamp(70px, 10vw, 160px);
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-transform: uppercase;
}

.final-cta > p:not(.kicker) {
  max-width: 760px;
  margin-bottom: 34px;
  font-size: clamp(20px, 2vw, 28px);
}

.final-cta__ghost {
  position: absolute;
  color: transparent;
  font-size: clamp(260px, 40vw, 600px);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.11);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 160px;
  padding: 32px var(--page-gutter);
  background: var(--ink);
  color: var(--white);
}

.brand--footer {
  width: 56px;
  height: 56px;
  background: var(--white);
}

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

.site-footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.site-footer nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-shop {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--cream);
  box-shadow: 0 10px 32px rgba(28, 28, 28, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  transition: opacity 180ms ease, transform 180ms ease;
  visibility: hidden;
}

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

.mobile-shop > span,
.mobile-shop strong,
.mobile-shop small {
  display: block;
}

.mobile-shop strong {
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.15;
  text-transform: uppercase;
}

.mobile-shop small {
  color: #5d5d5d;
  font-size: 10px;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav a:nth-child(3),
  .header-link {
    display: none;
  }

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

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

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

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

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

  .fit-guide,
  .detail-section,
  .faq {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 76px;
  }

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

  .site-nav {
    display: none;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

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

  .hero__copy,
  .hero__visual {
    min-height: auto;
  }

  .hero__copy {
    padding-top: 64px;
  }

  .hero__visual {
    height: 690px;
  }

  .section-head,
  .fit-guide,
  .detail-section,
  .faq {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    gap: 24px;
  }

  .section-head > p {
    max-width: 650px;
  }

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

  .product-grid--five .product-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 18px) / 2);
  }

  .video-section {
    padding-right: 0;
  }

  .video-section .section-head {
    padding-right: var(--page-gutter);
  }

  .video-grid {
    display: grid;
    grid-auto-columns: min(68vw, 380px);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    padding-right: var(--page-gutter);
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
  }

  .video-unit {
    scroll-snap-align: start;
  }

  .video-card__media {
    height: min(62svh, 520px);
    min-height: 430px;
  }

  .look-card--feature {
    grid-template-columns: 1fr;
  }

  .look-card--feature .look-card__media {
    height: min(62svh, 560px);
  }

  .fit-guide__intro > p:not(.kicker),
  .detail-section__intro > p:not(.kicker),
  .faq__intro > p:last-child {
    max-width: 680px;
  }

  .heritage-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .heritage-section__mark {
    position: absolute;
    right: -30px;
    bottom: 40px;
  }

  .heritage-section > div:last-child {
    max-width: 700px;
  }
}

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

  body {
    font-size: 16px;
  }

  .announcement {
    justify-content: center;
    padding-inline: 12px;
    text-align: center;
  }

  .announcement span:first-child {
    display: none;
  }

  .site-header__inner {
    gap: 16px;
  }

  .brand {
    width: 54px;
    height: 54px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .button--small {
    min-height: 44px;
    padding: 12px 14px;
  }

  .hero__copy {
    min-height: 750px;
    padding: 48px 20px 36px;
  }

  .hero__eyebrow {
    margin-bottom: 42px;
  }

  .hero__eyebrow span:last-child {
    display: none;
  }

  .hero h1 {
    margin-bottom: 32px;
    font-size: clamp(58px, 18vw, 76px);
    line-height: 0.82;
  }

  .hero__lede {
    margin-bottom: 28px;
    font-size: 19px;
  }

  .hero__actions {
    align-items: stretch;
    gap: 20px;
    margin-bottom: 38px;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof li {
    padding: 16px 8px 0 0;
  }

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

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

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

  .hero__visual {
    height: min(78svh, 650px);
  }

  .hero__caption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: block;
    padding: 14px 16px;
  }

  .hero__caption span {
    display: block;
    margin-bottom: 8px;
  }

  .hero__caption p {
    font-size: 15px;
    text-align: left;
  }

  .hero__stamp {
    top: 20px;
    left: 20px;
    width: 102px;
    height: 102px;
  }

  .hero__stamp strong {
    font-size: 21px;
  }

  .section-head h2,
  .fit-guide h2,
  .detail-section h2,
  .heritage-section h2,
  .faq h2 {
    font-size: clamp(48px, 15vw, 66px);
  }

  .section-head > p,
  .section-head > div > p:last-child,
  .section-head--stacked > p:last-child {
    font-size: 17px;
  }

  .category-grid {
    gap: 10px;
  }

  .category-card {
    min-height: 270px;
  }

  .category-card > span {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .category-card strong {
    font-size: 28px;
  }

  .category-card em {
    font-size: 10px;
  }

  .product-grid,
  .product-grid--five {
    gap: 10px;
  }

  .product-grid--five .product-card:last-child {
    width: calc((100% - 10px) / 2);
  }

  .product-card__body {
    padding: 13px;
  }

  .product-card__body small {
    min-height: 30px;
    font-size: 9px;
  }

  .product-card__body strong {
    min-height: 55px;
    margin-bottom: 14px;
    font-size: 18px;
  }

  .product-card__body > span {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-top: 10px;
  }

  .product-card__body b {
    font-size: 16px;
  }

  .product-card__body em {
    font-size: 9px;
  }

  .section-cta {
    align-items: stretch;
    flex-direction: column;
    margin-top: 38px;
  }

  .section-cta p {
    font-size: 18px;
  }

  .video-grid {
    grid-auto-columns: min(86vw, 350px);
  }

  .video-card__media {
    min-height: 0;
  }

  .video-card__body {
    min-height: 170px;
    padding: 18px;
  }

  .video-card__body strong {
    font-size: 30px;
  }

  .use-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .use-grid article,
  .service-grid article {
    min-height: 300px;
    padding: 24px;
  }

  .use-grid article > span,
  .detail-grid article > span {
    margin-bottom: 40px;
  }

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

  .look-card__media,
  .look-grid .look-card__media,
  .look-card--feature .look-card__media {
    height: min(58svh, 500px);
  }

  .look-card__content,
  .look-grid .look-card__content {
    padding: 24px 20px;
  }

  .look-card__content h3,
  .look-grid .look-card__content h3 {
    font-size: 40px;
  }

  .look-list a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .fit-guide__grid article {
    grid-template-columns: 36px 1fr;
  }

  .fit-guide__grid article p {
    grid-column: 2;
  }

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

  .detail-grid article {
    min-height: 260px;
  }

  .heritage-section {
    min-height: 660px;
  }

  .heritage-section p:not(.kicker) {
    font-size: 18px;
  }

  .faq summary {
    min-height: 74px;
    padding: 20px 0;
    font-size: 22px;
  }

  .faq details p {
    padding-right: 0;
  }

  .final-cta {
    min-height: 720px;
    padding-inline: 20px;
  }

  .final-cta h2 {
    font-size: clamp(70px, 21vw, 98px);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: 280px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .mobile-shop {
    display: flex;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .header-actions .button {
    gap: 10px;
    padding-inline: 11px;
  }

  .hero__copy {
    min-height: 730px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .category-card {
    min-height: 245px;
  }

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

  .product-card__body strong {
    font-size: 17px;
  }

  .mobile-shop strong {
    font-size: 12px;
  }
}

@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;
  }

  .marquee__track {
    animation: none;
  }
}
