:root {
  --ink: #08070a;
  --ink-soft: #17131a;
  --paper: #ffffff;
  --paper-soft: #f4f3f2;
  --royal: #4a174b;
  --royal-deep: #251026;
  --oxblood: #651422;
  --gold: #c29a45;
  --gold-light: #e2c77d;
  --line: #d9d6d2;
  --muted: #6f6b72;
  --max-width: 1440px;
  --page-pad: clamp(20px, 4vw, 68px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 10px var(--page-pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--paper);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 14px;
  font-weight: 800;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.site-nav a,
.header-cta,
.text-link,
.footer-meta a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: var(--gold-light);
}

.header-cta {
  justify-self: end;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--gold-light);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(92vh, 940px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 10, 0.24);
  box-shadow: inset 600px 0 240px rgba(8, 7, 10, 0.68);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(640px, calc(100% - 40px));
  height: 100%;
  margin-left: max(var(--page-pad), calc((100% - var(--max-width)) / 2));
  padding-top: 80px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--oxblood);
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: 76px;
  font-weight: 800;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 520px;
  margin: 28px 0 0;
  color: #ece9ef;
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.button-gold:hover,
.button-gold:focus-visible {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

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

.button-dark:hover,
.button-dark:focus-visible {
  border-color: var(--royal);
  background: var(--royal);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold-light);
}

.hero-scroll {
  position: absolute;
  right: var(--page-pad);
  bottom: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 112px var(--page-pad);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 530px);
  gap: 72px;
  align-items: end;
  margin-bottom: 52px;
}

.section-intro h2,
.performance-heading h2,
.teamwear-content h2,
.factory-panel h2,
.contact h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.section-intro > p {
  margin: 0 0 3px;
  color: #3d3940;
  font-size: 17px;
  line-height: 1.65;
}

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

.product-card {
  min-width: 0;
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--paper-soft);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.015);
}

.product-status {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-details {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 0;
}

.product-details h3,
.performance-points h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.product-details p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.swatches {
  display: flex;
  flex: 0 0 auto;
  gap: 6px;
  padding-top: 3px;
}

.swatch {
  width: 13px;
  height: 13px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
}

.swatch-purple { background: var(--royal); }
.swatch-black { background: var(--ink); }
.swatch-oxblood { background: var(--oxblood); }
.swatch-gold { background: var(--gold); }

.collection-action {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.collection-action p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.performance-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.4fr);
  gap: 84px;
  padding: 90px max(var(--page-pad), calc((100% - var(--max-width)) / 2));
  background: var(--royal-deep);
  color: var(--paper);
}

.section-number {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

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

.performance-points article {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.performance-points p {
  margin: 12px 0 0;
  color: #d4ccd5;
  font-size: 14px;
}

.line-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1fr);
  min-height: 610px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.line-mark {
  display: grid;
  place-items: center;
  min-height: 610px;
  overflow: hidden;
  background: var(--oxblood);
}

.line-mark img {
  width: min(420px, 78%);
  height: auto;
  opacity: 0.95;
}

.line-content {
  align-self: center;
  max-width: 700px;
  padding: 80px var(--page-pad);
}

.line-kicker {
  margin: 0 0 28px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.line-content h2 {
  margin: 0;
  font-size: 68px;
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.line-content h2 span {
  color: var(--gold-light);
}

.line-content p:not(.line-kicker) {
  max-width: 570px;
  margin: 28px 0;
  color: #d9d5dc;
  font-size: 17px;
  line-height: 1.7;
}

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

.teamwear {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, 0.8fr);
  gap: 72px;
  width: min(100%, 1580px);
  align-items: center;
}

.teamwear-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--paper-soft);
}

.teamwear-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teamwear-content h2 {
  max-width: 580px;
}

.teamwear-lead {
  margin: 26px 0 18px;
  font-size: 17px;
  line-height: 1.65;
}

.teamwear-content > p:not(.teamwear-lead, .legal-note) {
  color: #4d4950;
  font-size: 14px;
}

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

.capability-list li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.legal-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.5;
}

.factory {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--ink);
}

.factory > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(8, 7, 10, 0.32);
  box-shadow: inset -760px 0 360px rgba(8, 7, 10, 0.82);
}

.factory-panel {
  position: relative;
  z-index: 2;
  width: min(560px, calc(100% - 40px));
  margin-left: auto;
  margin-right: max(var(--page-pad), calc((100% - var(--max-width)) / 2));
  padding-top: 142px;
  color: var(--paper);
}

.factory-panel p:not(.eyebrow) {
  margin: 26px 0 0;
  color: #ddd9de;
  font-size: 16px;
  line-height: 1.7;
}

.factory-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.factory-metrics div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.factory-metrics strong {
  color: var(--gold-light);
  font-size: 12px;
}

.factory-metrics span {
  color: #eeeaf0;
  font-size: 12px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
  gap: 72px;
  padding: 104px max(var(--page-pad), calc((100% - var(--max-width)) / 2));
  background: var(--paper-soft);
}

.contact-copy {
  align-self: end;
}

.contact-copy p {
  margin: 0 0 24px;
  color: #464149;
  font-size: 16px;
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 38px;
  align-items: center;
  padding: 52px var(--page-pad);
  background: var(--ink);
  color: var(--paper);
}

.footer-brand,
.footer-line {
  display: flex;
  align-items: center;
  gap: 14px;
}

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

.footer-brand div,
.footer-line,
.footer-meta {
  display: flex;
  flex-direction: column;
}

.footer-brand strong,
.footer-line strong {
  font-size: 12px;
}

.footer-brand span,
.footer-line span,
.footer-meta {
  color: #aaa5ac;
  font-size: 11px;
}

.footer-meta {
  align-items: flex-end;
  gap: 8px;
}

.footer-meta a {
  color: var(--paper);
}

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

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 100px var(--page-pad) 40px;
    background: var(--ink);
    font-size: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    z-index: 18;
    opacity: 1;
    visibility: visible;
  }

  .menu-button {
    position: relative;
    z-index: 21;
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

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

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .header-cta {
    display: none;
  }

  .section-intro,
  .performance-band,
  .contact {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .performance-points {
    gap: 20px;
  }

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

  .teamwear-content {
    max-width: 680px;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 20px;
  }

  .site-header {
    min-height: 68px;
  }

  .brand-lockup img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 680px;
    height: 88svh;
    max-height: 820px;
  }

  .hero-image {
    object-position: 61% center;
  }

  .hero-scrim {
    background: rgba(8, 7, 10, 0.3);
    box-shadow: inset 320px 0 150px rgba(8, 7, 10, 0.72), inset 0 -220px 130px rgba(8, 7, 10, 0.38);
  }

  .hero-content {
    justify-content: flex-end;
    width: calc(100% - 40px);
    margin-left: 20px;
    padding: 110px 0 76px;
  }

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

  .hero-copy {
    max-width: 410px;
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .section-intro {
    gap: 24px;
    margin-bottom: 34px;
  }

  .section-intro h2,
  .performance-heading h2,
  .teamwear-content h2,
  .factory-panel h2,
  .contact h2 {
    font-size: 36px;
  }

  .section-intro > p {
    font-size: 15px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-image-wrap {
    aspect-ratio: 4 / 5;
  }

  .collection-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .performance-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .performance-points {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .line-story {
    grid-template-columns: 1fr;
  }

  .line-mark {
    min-height: 370px;
  }

  .line-mark img {
    width: 260px;
  }

  .line-content {
    padding-top: 68px;
    padding-bottom: 72px;
  }

  .line-content h2 {
    font-size: 48px;
  }

  .line-content p:not(.line-kicker) {
    font-size: 15px;
  }

  .teamwear {
    gap: 46px;
  }

  .teamwear-image {
    aspect-ratio: 4 / 3;
  }

  .factory {
    min-height: 760px;
  }

  .factory > img {
    object-position: 35% center;
  }

  .factory::after {
    background: rgba(8, 7, 10, 0.28);
    box-shadow: inset 0 -520px 260px rgba(8, 7, 10, 0.9);
  }

  .factory-panel {
    position: absolute;
    right: 20px;
    bottom: 58px;
    left: 20px;
    width: auto;
    margin: 0;
    padding: 0;
  }

  .factory-metrics {
    gap: 10px;
  }

  .factory-metrics span {
    font-size: 10px;
  }

  .contact {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .footer-meta {
    grid-column: auto;
  }
}

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

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